/* ===========================================================
   Zeki Kuloğlu - Doğal Süt Ürünleri  (çok sayfalı sürüm)
   Krem zemin, doğal yeşil ve tereyağı sarısı
   =========================================================== */

:root {
  --cream: #faf4e8;
  --cream-2: #f3ead7;
  --paper: #fffdf8;
  --white: #ffffff;
  --green: #3d6b3f;
  --green-deep: #2f5531;
  --green-soft: #6f9a64;
  --butter: #e7b54a;
  --butter-soft: #f4d585;
  --amber-ink: #8a6410;
  --ink: #2c2823;
  --ink-soft: #5d564c;
  --line: #e7dcc7;
  --shadow-sm: 0 6px 18px rgba(61, 56, 42, 0.07);
  --shadow-md: 0 18px 40px rgba(61, 56, 42, 0.12);
  --shadow-lg: 0 30px 70px rgba(47, 56, 36, 0.18);
  --radius: 18px;
  --radius-lg: 28px;
  --maxw: 1200px;
  --header-h: 86px;
  --serif: "Fraunces", "Georgia", "Times New Roman", serif;
  --sans: "Mulish", system-ui, -apple-system, "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; font-family: var(--sans); color: var(--ink); background: var(--cream);
  line-height: 1.65; font-size: 17px; overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.12; margin: 0 0 0.5em; color: var(--ink); letter-spacing: -0.01em; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(60px, 8vw, 110px) 0; }
.alt-bg { background: var(--cream); }
.muted { color: var(--ink-soft); }

.kicker {
  display: inline-block; font-family: var(--sans); font-weight: 700; font-size: 0.78rem;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--green); margin: 0 0 14px;
  padding: 6px 14px; background: rgba(61, 107, 63, 0.09); border-radius: 100px;
}
.section-head { max-width: 680px; margin: 0 auto clamp(36px, 5vw, 56px); text-align: center; }
.section-head h2 { font-size: clamp(2rem, 4.4vw, 3rem); }
.section-lead { color: var(--ink-soft); font-size: 1.08rem; margin: 0; }
.center-cta { text-align: center; margin-top: clamp(34px, 4vw, 50px); }

.link-arrow { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--green); transition: gap 0.25s; }
.link-arrow:hover { gap: 12px; color: var(--green-deep); }

/* ---------- Ikonlar (inline SVG) ---------- */
.icon { width: 20px; height: 20px; display: inline-block; vertical-align: middle; flex-shrink: 0; }
.icon-sm { width: 17px; height: 17px; }
.link-arrow .icon, .category-meta .icon { transition: transform 0.25s var(--ease); }
.link-arrow:hover .icon { transform: translateX(4px); }
.category-card:hover .category-meta .icon { transform: translateX(4px); }
.category-meta { display: inline-flex; align-items: center; gap: 6px; }

.skip-link { position: absolute; left: 12px; top: -60px; z-index: 200; background: var(--green); color: #fff; padding: 10px 18px; border-radius: 10px; transition: top 0.2s; }
.skip-link:focus { top: 12px; }

:focus-visible { outline: 3px solid var(--green); outline-offset: 2px; border-radius: 4px; }
.hero :focus-visible, .btn-ghost:focus-visible, .stats :focus-visible, .cta-band :focus-visible { outline-color: var(--butter); }
.field input:focus-visible, .field textarea:focus-visible { outline: 3px solid var(--green); outline-offset: 1px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--sans); font-weight: 700; font-size: 0.98rem; padding: 14px 28px;
  border-radius: 100px; border: 2px solid transparent; cursor: pointer; line-height: 1; text-align: center;
  transition: transform 0.25s var(--ease), background 0.25s, box-shadow 0.25s, color 0.25s, border-color 0.25s;
}
.btn-primary { background: var(--green); color: #fff; box-shadow: 0 10px 22px rgba(61, 107, 63, 0.28); }
.btn-primary:hover { background: var(--green-deep); transform: translateY(-3px); box-shadow: 0 16px 30px rgba(61, 107, 63, 0.34); }
.btn-ghost { background: rgba(255, 253, 248, 0.12); color: #fff; border-color: rgba(255, 255, 255, 0.7); backdrop-filter: blur(4px); }
.btn-ghost:hover { background: #fff; color: var(--green-deep); transform: translateY(-3px); }
.btn-outline { background: transparent; color: var(--green-deep); border-color: var(--green); }
.btn-outline:hover { background: var(--green); color: #fff; transform: translateY(-3px); }
.btn-incele { background: transparent; color: var(--green-deep); border-color: var(--green); padding: 11px 24px; font-size: 0.92rem; margin-top: auto; width: 100%; }
.btn-incele:hover { background: var(--green); color: #fff; transform: translateY(-2px); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 14px 0;
  background: rgba(250, 244, 232, 0.72);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  backdrop-filter: blur(12px) saturate(140%);
  border-bottom: 1px solid rgba(61, 56, 42, 0.08);
  box-shadow: var(--shadow-sm);
  transition: background 0.45s var(--ease), backdrop-filter 0.45s, border-color 0.45s, box-shadow 0.45s, padding 0.3s;
}
/* Ic sayfalar: kaydirinca cam biraz yogunlasir */
.header-solid.scrolled { background: rgba(250, 244, 232, 0.9); }
/* Ana sayfa hero uzerinde: dusuk opakliklı buzlu cam, kaydirinca yogunlasir (camlasir) */
.header-over {
  background: rgba(18, 28, 16, 0.16);
  border-bottom-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
  -webkit-backdrop-filter: blur(9px) saturate(125%);
  backdrop-filter: blur(9px) saturate(125%);
}
.header-over.scrolled {
  background: rgba(250, 244, 232, 0.85);
  border-bottom-color: rgba(61, 56, 42, 0.08);
  box-shadow: var(--shadow-sm);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  backdrop-filter: blur(16px) saturate(150%);
}
.site-header.scrolled { padding: 8px 0; }
.header-inner { display: flex; align-items: center; gap: 24px; position: relative; }
.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand img { height: 56px; width: auto; transition: height 0.3s; filter: drop-shadow(0 2px 6px rgba(0,0,0,0.12)); }
.site-header.scrolled .brand img { height: 46px; }

.main-nav { display: flex; gap: 6px; margin-left: auto; }
.main-nav a { position: relative; font-weight: 600; font-size: 0.98rem; color: var(--ink); padding: 10px 16px; border-radius: 100px; transition: color 0.2s, background 0.2s; }
.main-nav a::after { content: ""; position: absolute; left: 16px; right: 16px; bottom: 6px; height: 2px; background: var(--butter); transform: scaleX(0); transform-origin: left; transition: transform 0.25s var(--ease); }
.main-nav a:hover, .main-nav a.active { color: var(--green); }
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); }
.main-nav a:focus-visible { outline-offset: 2px; background: rgba(61,107,63,0.1); }

.header-phone { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 0.95rem; color: var(--green-deep); white-space: nowrap; }
.header-phone .phone-ico { display: inline-grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: var(--green); color: #fff; }
.header-phone .phone-ico .icon { width: 16px; height: 16px; }
.hero-on-top .header-phone .phone-ico { background: rgba(255,255,255,0.18); }

/* Hero ustunde acik renkler (yalniz home, tepe) */
.hero-on-top .main-nav a, .hero-on-top .header-phone { color: #fff; }
.hero-on-top .main-nav a:hover { color: var(--butter-soft); }
.hero-on-top .nav-toggle span { background: #fff; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; margin-left: auto; z-index: 120; }
.nav-toggle span { width: 26px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); background: var(--ink) !important; }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); background: var(--ink) !important; }

/* ---------- Hero (video) ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; color: #fff; overflow: hidden; padding-top: var(--header-h); }
.hero-media { position: absolute; inset: 0; z-index: -2; background: linear-gradient(160deg, #3a5a3c, #27401f); }
.hero-video { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(28,40,22,0.46) 0%, rgba(28,40,22,0.28) 40%, rgba(24,36,20,0.74) 100%); }
.hero > .container { width: 100%; }
.hero-content { position: relative; max-width: 720px; }
.hero-eyebrow { font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; font-size: 0.82rem; color: var(--butter-soft); margin: 0 0 18px; }
.hero-title { font-size: clamp(2.7rem, 6.6vw, 5.2rem); font-weight: 600; line-height: 1.04; margin: 0 0 22px; color: #fff; text-shadow: 0 4px 34px rgba(0,0,0,0.32); }
.hero-sub { font-size: clamp(1.05rem, 2vw, 1.32rem); max-width: 560px; margin: 0 0 34px; color: rgba(255,255,255,0.93); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }
.hero-scroll { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); width: 26px; height: 42px; border: 2px solid rgba(255,255,255,0.6); border-radius: 100px; }
.hero-scroll span { position: absolute; top: 8px; left: 50%; width: 4px; height: 8px; background: #fff; border-radius: 4px; transform: translateX(-50%); animation: scrolldot 1.6s infinite; }
@keyframes scrolldot { 0% { opacity: 0; top: 8px; } 40% { opacity: 1; } 80% { opacity: 0; top: 22px; } 100% { opacity: 0; } }

/* ---------- Page hero (alt sayfalar) ---------- */
.page-hero { padding: calc(var(--header-h) + 46px) 0 clamp(30px, 4vw, 50px); background: linear-gradient(180deg, var(--cream-2), var(--cream)); }
.page-hero.compact { padding-bottom: 0; background: var(--paper); }
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); margin: 0 0 14px; }
.page-hero-lead { color: var(--ink-soft); font-size: 1.1rem; max-width: 620px; margin: 0; }
.breadcrumb { font-size: 0.9rem; color: var(--ink-soft); margin-bottom: 20px; }
.breadcrumb a:hover { color: var(--green); }
.breadcrumb span[aria-hidden] { margin: 0 8px; opacity: 0.5; }

/* ---------- Stats ---------- */
.stats { background: var(--green); color: #fff; padding: clamp(40px, 5vw, 60px) 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat { position: relative; padding: 8px; }
.stat:not(:last-child)::after { content: ""; position: absolute; right: -12px; top: 14%; height: 72%; width: 1px; background: rgba(255,255,255,0.22); }
.stat-num { display: block; font-family: var(--serif); font-size: clamp(2.2rem, 4.4vw, 3.2rem); font-weight: 600; color: var(--butter-soft); line-height: 1; }
.stat-label { display: block; margin-top: 10px; font-size: 0.96rem; color: rgba(255,255,255,0.9); }

/* ---------- Intro (home) ---------- */
.intro-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.intro-figure { position: relative; max-width: 360px; margin: 0 auto; }
.intro-figure > img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 50%; box-shadow: var(--shadow-lg); }
.intro-figure::before { content: ""; position: absolute; inset: -14px; border: 2px solid var(--butter); border-radius: 50%; z-index: -1; }
.intro-figure-badge { position: absolute; bottom: 6px; left: 50%; transform: translateX(-50%); background: var(--green); color: #fff; padding: 12px 24px; border-radius: 100px; box-shadow: var(--shadow-md); text-align: center; white-space: nowrap; }
.intro-text h2 { font-size: clamp(1.9rem, 3.8vw, 2.7rem); }
.intro-text p { color: var(--ink-soft); margin: 0 0 16px; }
.founder-name { display: block; font-family: var(--serif); font-size: 1.15rem; font-weight: 600; line-height: 1.1; }
.founder-role { display: block; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--butter-soft); }

/* ---------- Category cards ---------- */
.category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.category-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; transition: transform 0.4s var(--ease), box-shadow 0.4s; }
.category-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.category-thumb { background: var(--white); aspect-ratio: 1; display: grid; place-items: center; padding: 22px; border-bottom: 1px solid var(--line); }
.category-thumb img { width: 100%; height: 100%; object-fit: contain; transition: transform 0.5s var(--ease); }
.category-card:hover .category-thumb img { transform: scale(1.06); }
.category-body { padding: 22px 22px 26px; display: flex; flex-direction: column; flex: 1; }
.category-body h3 { font-size: 1.3rem; margin: 0 0 8px; }
.category-body p { color: var(--ink-soft); font-size: 0.94rem; margin: 0 0 16px; flex: 1; }
.category-meta { font-weight: 700; color: var(--green); font-size: 0.9rem; }

/* ---------- Product cards ---------- */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.product-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.3s; }
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: transparent; }
.product-card.is-hidden { display: none; }
.product-thumb { position: relative; display: block; aspect-ratio: 4 / 3.4; background: var(--white); overflow: hidden; }
.product-thumb img { width: 100%; height: 100%; object-fit: contain; padding: 24px; transition: transform 0.5s var(--ease); }
.product-card:hover .product-thumb img { transform: scale(1.05); }
.product-cat-tag { position: absolute; top: 14px; left: 14px; background: rgba(61,107,63,0.92); color: #fff; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase; padding: 6px 12px; border-radius: 100px; }
.product-body { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.product-name { font-size: 1.3rem; margin: 0 0 6px; }
.product-name a:hover { color: var(--green); }
.product-gram { display: inline-block; font-weight: 700; font-size: 0.84rem; color: var(--amber-ink); background: rgba(231,181,74,0.18); padding: 3px 12px; border-radius: 100px; align-self: flex-start; margin-bottom: 12px; }
.product-desc { color: var(--ink-soft); font-size: 0.96rem; margin: 0 0 22px; }

/* ---------- Filtre ---------- */
.filter-bar { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: clamp(34px, 4vw, 48px); }
.filter-btn { font-family: var(--sans); font-weight: 700; font-size: 0.95rem; color: var(--ink-soft); background: var(--paper); border: 1.5px solid var(--line); padding: 11px 24px; border-radius: 100px; cursor: pointer; transition: all 0.22s var(--ease); }
.filter-btn:hover { border-color: var(--green-soft); color: var(--green); transform: translateY(-2px); }
.filter-btn.is-active { background: var(--green); border-color: var(--green); color: #fff; box-shadow: 0 8px 18px rgba(61,107,63,0.25); }
.filter-btn:focus-visible { outline-offset: 3px; }
.no-result { text-align: center; color: var(--ink-soft); font-size: 1.1rem; padding: 40px 0; }

/* ---------- Product detail ---------- */
.detail-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.detail-media { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 40px; position: sticky; top: calc(var(--header-h) + 16px); box-shadow: var(--shadow-sm); }
.detail-media img { width: 100%; max-width: 460px; margin: 0 auto; object-fit: contain; }
.detail-cat { display: inline-block; font-size: 0.74rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--green); background: rgba(61,107,63,0.1); padding: 5px 14px; border-radius: 100px; margin-bottom: 14px; }
.detail-info h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin: 0 0 8px; }
.detail-gram { display: inline-block; font-weight: 700; color: var(--amber-ink); background: rgba(231,181,74,0.18); padding: 4px 14px; border-radius: 100px; margin-bottom: 20px; }
.detail-lead { color: var(--ink-soft); font-size: 1.05rem; margin: 0 0 26px; }
.spec-table { width: 100%; border-collapse: collapse; margin-bottom: 28px; font-size: 0.95rem; }
.spec-table th { text-align: left; vertical-align: top; padding: 13px 16px 13px 0; color: var(--green-deep); font-weight: 700; width: 40%; border-bottom: 1px solid var(--line); }
.spec-table td { padding: 13px 0; color: var(--ink-soft); border-bottom: 1px solid var(--line); }
.nutri h2 { font-size: 1.15rem; margin: 0 0 14px; }
.nutri-base { font-family: var(--sans); font-size: 0.8rem; font-weight: 600; color: var(--ink-soft); letter-spacing: 0; }
.nutri-grid { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 30px; }
.nutri-item { background: var(--cream); border: 1px solid var(--line); border-radius: 14px; padding: 12px 18px; text-align: center; min-width: 90px; }
.nutri-item .nv { display: block; font-family: var(--serif); font-weight: 600; font-size: 1.2rem; color: var(--green-deep); }
.nutri-item .nl { display: block; font-size: 0.78rem; color: var(--ink-soft); }
.detail-cta { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Process steps ---------- */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.process-step { position: relative; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px 26px 28px; }
.process-no { font-family: var(--serif); font-size: 2.6rem; font-weight: 600; color: var(--butter); line-height: 1; display: block; margin-bottom: 14px; }
.process-step h3 { font-size: 1.2rem; margin: 0 0 10px; }
.process-step p { color: var(--ink-soft); font-size: 0.95rem; margin: 0; }

/* ---------- Values ---------- */
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.value-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px 26px; text-align: center; transition: transform 0.35s var(--ease), box-shadow 0.35s; }
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.value-icon { display: inline-grid; place-items: center; width: 78px; height: 78px; border-radius: 50%; background: linear-gradient(150deg, var(--green), var(--green-soft)); margin-bottom: 20px; box-shadow: 0 12px 26px rgba(61,107,63,0.25); }
.value-icon img { width: 42px; height: 42px; }
.value-card h3 { font-size: 1.18rem; margin: 0 0 10px; }
.value-card p { color: var(--ink-soft); font-size: 0.94rem; margin: 0; }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.about-portrait { position: relative; max-width: 420px; margin: 0 auto; }
.about-portrait > img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 50%; box-shadow: var(--shadow-lg); }
.about-portrait::before { content: ""; position: absolute; inset: -16px; border: 2px solid var(--butter); border-radius: 50%; z-index: -1; }
.about-portrait-badge { position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%); background: var(--green); color: #fff; padding: 12px 26px; border-radius: 100px; box-shadow: var(--shadow-md); text-align: center; white-space: nowrap; }
.about-text p { color: var(--ink-soft); margin: 0 0 18px; }

/* ---------- Principles ---------- */
.principles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.principle-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 36px 30px; transition: transform 0.35s var(--ease), box-shadow 0.35s; }
.principle-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.principle-icon { display: inline-grid; place-items: center; width: 84px; height: 84px; border-radius: 22px; background: var(--cream); margin-bottom: 20px; }
.principle-icon img { width: 56px; height: 56px; object-fit: contain; }
.principle-card h3 { font-size: 1.3rem; margin: 0 0 10px; }
.principle-card p { color: var(--ink-soft); font-size: 0.96rem; margin: 0; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--green); color: #fff; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: clamp(44px, 6vw, 72px) 24px; flex-wrap: wrap; }
.cta-inner h2 { color: #fff; font-size: clamp(1.7rem, 3.4vw, 2.5rem); margin: 0 0 8px; }
.cta-inner p { color: rgba(255,255,255,0.9); margin: 0; max-width: 560px; }
.cta-inner .btn-primary { background: var(--butter); color: var(--green-deep); box-shadow: 0 10px 22px rgba(0,0,0,0.18); }
.cta-inner .btn-primary:hover { background: var(--butter-soft); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 48px); align-items: start; }
.branches { display: grid; gap: 18px; }
.branch-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 24px; transition: box-shadow 0.3s, transform 0.3s; }
.branch-card:hover { box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.branch-card h3 { font-size: 1.12rem; margin: 0 0 12px; color: var(--green-deep); }
.branch-line { display: flex; align-items: flex-start; gap: 11px; margin: 0 0 10px; color: var(--ink-soft); font-size: 0.96rem; }
.branch-line a:hover { color: var(--green); text-decoration: underline; }
.b-ico { flex-shrink: 0; display: inline-flex; color: var(--green); margin-top: 1px; }
.b-ico .icon { width: 19px; height: 19px; }
.branch-hours { margin: 6px 0 0; font-size: 0.86rem; color: var(--ink-soft); line-height: 1.5; }
.branch-hours .b-ico { color: var(--butter); }
.branch-phone-cta { display: flex; flex-direction: column; gap: 2px; background: var(--green); color: #fff; border-radius: var(--radius); padding: 18px 24px; }
.branch-phone-cta span { font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--butter-soft); }
.branch-phone-cta a { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; }
.contact-form-wrap { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(26px, 4vw, 40px); box-shadow: var(--shadow-sm); }
.contact-form h2 { font-size: 1.5rem; margin: 0 0 22px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 700; font-size: 0.88rem; margin-bottom: 7px; color: var(--ink); }
.field input, .field textarea { width: 100%; font-family: var(--sans); font-size: 1rem; color: var(--ink); padding: 13px 16px; border: 1.5px solid var(--line); border-radius: 12px; background: var(--paper); transition: border-color 0.2s, box-shadow 0.2s; resize: vertical; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--green-soft); box-shadow: 0 0 0 4px rgba(61,107,63,0.12); }
.contact-form .btn { width: 100%; margin-top: 4px; }
.form-status { margin: 16px 0 0; font-size: 0.95rem; font-weight: 600; min-height: 1.2em; }
.form-status.ok { color: var(--green); }
.form-status.err { color: #b4452f; }

/* ---------- 404 ---------- */
.notfound { padding-top: calc(var(--header-h) + 60px); text-align: center; }
.notfound-inner { max-width: 520px; margin: 0 auto; }
.notfound h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
.notfound p { color: var(--ink-soft); margin: 0 0 24px; }
.notfound .hero-actions { justify-content: center; }

/* ---------- Footer ---------- */
.site-footer { background: #2a2620; color: #d9d0c1; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 40px; padding: clamp(48px, 6vw, 76px) 24px; }
.footer-brand img { height: 60px; width: auto; margin-bottom: 18px; filter: brightness(0) invert(1) opacity(0.92); }
.footer-brand p { color: #b3a994; font-size: 0.96rem; max-width: 320px; margin: 0 0 14px; }
.footer-phone { display: inline-flex; align-items: center; gap: 9px; color: var(--butter-soft); font-weight: 700; font-size: 1.1rem; }
.footer-phone .icon { width: 17px; height: 17px; }
.footer-col h4 { color: #fff; font-family: var(--sans); font-weight: 800; font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; margin: 0 0 18px; }
.footer-col a, .footer-contact p { display: block; color: #b3a994; font-size: 0.95rem; margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: var(--butter-soft); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); }
.footer-bottom .container { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px; padding-top: 22px; padding-bottom: 22px; }
.footer-bottom p { margin: 0; font-size: 0.86rem; color: #a89e88; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .principles-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .intro-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-grid { grid-template-columns: 1fr; gap: 56px; }
  .detail-grid { grid-template-columns: 1fr; gap: 36px; }
  .detail-media { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 860px) {
  .header-phone { display: none; }
  .nav-toggle { display: flex; }
  .main-nav { position: fixed; inset: 0 0 0 auto; width: min(320px, 82vw); flex-direction: column; gap: 4px; background: var(--paper); padding: 100px 24px 40px; box-shadow: var(--shadow-lg); transform: translateX(100%); transition: transform 0.38s var(--ease); margin: 0; align-items: stretch; }
  body.nav-open .main-nav { transform: none; }
  .main-nav a { color: var(--ink) !important; font-size: 1.1rem; padding: 14px 18px; border-radius: 12px; }
  .main-nav a::after { display: none; }
  .main-nav a:hover, .main-nav a.active { background: var(--cream); color: var(--green) !important; }
}
@media (max-width: 680px) {
  body { font-size: 16px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px 16px; }
  .stat:nth-child(2)::after { display: none; }
  .product-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .category-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .values-grid, .process-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { min-height: 90svh; }
  .hero-actions .btn { flex: 1; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .product-card:hover .product-thumb img, .category-card:hover .category-thumb img { transform: none; }
  .hero-scroll { display: none; }
  .hero-video { display: none; }
}
