/* ========================================================================
   KONDITER — design system
   Warm, cream, artisan bakery
   ======================================================================== */
:root {
  --bg: #fbf8f3;
  --bg-2: #ffffff;
  --bg-3: #f4ede0;
  --bg-warm: #faeede;
  --line: #ebe2cf;
  --line-2: #d8c9ac;
  --ink: #2b1810;
  --ink-mute: #6e5847;
  --ink-dim: #9a836f;
  --accent: #8b3a13;
  --accent-2: #6b2a08;
  --accent-soft: #f5e3d2;
  --berry: #b04545;
  --ok: #6a8e4e;

  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-script: "Caveat", cursive;

  --maxw: 1280px;
  --pad-x: clamp(20px, 4vw, 56px);
  --radius: 8px;
  --radius-lg: 14px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--accent); }
img, svg { display: block; max-width: 100%; }
button { background: none; border: none; color: inherit; cursor: pointer; font-family: inherit; }
::selection { background: var(--accent); color: var(--bg); }

/* ========================================================================
   NAV
   ======================================================================== */
.nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; gap: clamp(20px, 4vw, 40px);
  padding: 16px var(--pad-x);
  background: rgba(251, 248, 243, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.logo {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--ink);
}
.logo:hover { color: var(--accent); }
.logo-mark {
  width: 40px; height: 40px;
  background: var(--accent);
  color: var(--bg-warm);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.02em;
}
.logo-text {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1;
}
.logo-sub {
  display: block;
  font-family: var(--font-script);
  font-size: 14px;
  color: var(--accent);
  margin-top: 2px;
  font-weight: 500;
}

.nav-links {
  display: flex; gap: 30px; margin-left: auto;
  font-size: 14px;
  font-weight: 500;
}
.nav-links a { color: var(--ink-mute); }
.nav-links a:hover { color: var(--accent); }

.lang-switch {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-body); font-size: 12px;
  border: 1px solid var(--line-2);
  padding: 6px 12px; border-radius: 999px;
  color: var(--ink-mute);
  font-weight: 500;
}
.lang-switch button { font-family: inherit; font-size: inherit; color: inherit; }
.lang-switch button.active { color: var(--accent); font-weight: 700; }
.lang-switch button:hover { color: var(--ink); }

.burger { display: none; flex-direction: column; gap: 4px; padding: 6px; }
.burger span {
  width: 22px; height: 2px; background: var(--ink); border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}

/* ========================================================================
   BUTTONS
   ======================================================================== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 24px;
  font-size: 14px; font-weight: 500;
  border-radius: 999px;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-primary {
  background: var(--accent);
  color: var(--bg-warm);
}
.btn-primary:hover {
  background: var(--accent-2);
  transform: translateY(-1px);
}
.btn-ghost {
  border-color: var(--line-2);
  color: var(--ink);
  background: transparent;
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--bg-2);
}
.btn-lg { padding: 16px 32px; font-size: 15px; }

/* ========================================================================
   HERO
   ======================================================================== */
.hero {
  padding: clamp(50px, 8vw, 90px) var(--pad-x) clamp(40px, 6vw, 70px);
  max-width: var(--maxw); margin: 0 auto;
  position: relative;
}
.hero-meta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 14px;
  background: var(--bg-warm);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--font-script);
  font-size: 17px;
  color: var(--accent);
  margin-bottom: 28px;
}
.hero-meta::before {
  content: "✦";
  color: var(--accent);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 6.5vw, 76px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}
.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  font-variation-settings: "opsz" 144;
}
.hero-sub {
  font-size: clamp(16px, 1.3vw, 19px);
  color: var(--ink-mute);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.65;
}
.hero-cta {
  display: flex; flex-wrap: wrap; gap: 14px;
}

.hero-visual {
  position: relative;
  aspect-ratio: 1/1;
  max-width: 480px;
  margin: 0 auto;
}
.hero-visual-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 50% 50%, var(--bg-warm) 0%, transparent 70%),
    var(--accent-soft);
  border-radius: 50%;
  z-index: 0;
}
.hero-visual-bg::before {
  content: "";
  position: absolute;
  inset: 12%;
  border: 2px dashed var(--line-2);
  border-radius: 50%;
  opacity: 0.4;
}
.hero-cake {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  z-index: 1;
}
.hero-cake svg {
  width: 75%; height: 75%;
  color: var(--accent);
  filter: drop-shadow(0 8px 16px rgba(139, 58, 19, 0.15));
}
.hero-sprinkle {
  position: absolute;
  font-family: var(--font-script);
  font-size: 16px;
  color: var(--berry);
  z-index: 2;
}
.hero-sprinkle.s1 { top: 8%; right: 5%; transform: rotate(-12deg); }
.hero-sprinkle.s2 { bottom: 12%; left: 0%; transform: rotate(8deg); }
.hero-sprinkle.s3 { top: 50%; right: -2%; transform: rotate(-5deg); }

/* ========================================================================
   DAILY STATS (with units of bakery)
   ======================================================================== */
.daily {
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(40px, 6vw, 70px) var(--pad-x);
}
.daily-head {
  text-align: center;
  margin-bottom: 50px;
}
.daily-head .kicker {
  font-family: var(--font-script);
  font-size: 22px;
  color: var(--accent);
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}
.daily-head h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 4.5vw, 50px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 800px;
  margin: 0 auto 14px;
}
.daily-head h2 em { font-style: italic; color: var(--accent); }
.daily-head p {
  color: var(--ink-mute);
  font-size: 16px;
  max-width: 580px;
  margin: 0 auto;
}
.daily-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.daily-card {
  text-align: center;
  padding: 36px 24px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.daily-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-2);
  box-shadow: 0 12px 30px rgba(139, 58, 19, 0.06);
}
.daily-ico {
  width: 60px; height: 60px;
  margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
}
.daily-ico svg { width: 100%; height: 100%; }
.daily-num {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(34px, 4.5vw, 52px);
  line-height: 1;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.daily-card h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.daily-card p {
  font-size: 13px;
  color: var(--ink-mute);
  line-height: 1.5;
}

/* ========================================================================
   CATALOG ON HOME (3 categories)
   ======================================================================== */
.catalog-home {
  background: var(--bg-3);
  padding: clamp(60px, 9vw, 110px) 0;
}
.section-head {
  max-width: var(--maxw); margin: 0 auto;
  padding: 0 var(--pad-x) 50px;
  text-align: center;
}
.section-head .kicker {
  font-family: var(--font-script);
  font-size: 22px;
  color: var(--accent);
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
}
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 4.5vw, 50px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 800px;
  margin: 0 auto 14px;
}
.section-head h2 em { font-style: italic; color: var(--accent); }
.section-head p {
  color: var(--ink-mute);
  max-width: 600px;
  margin: 0 auto;
}
.cat-grid-3 {
  max-width: var(--maxw); margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.cat-card {
  background: var(--bg-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
  display: block;
  position: relative;
  border: 1px solid var(--line);
}
.cat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(139, 58, 19, 0.1);
}
.cat-card-img {
  aspect-ratio: 4/3;
  background: var(--bg-warm);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.cat-card-img::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 70%, rgba(139, 58, 19, 0.06), transparent 60%),
    radial-gradient(circle at 70% 30%, rgba(176, 69, 69, 0.04), transparent 60%);
}
.cat-card-img svg {
  width: 50%; height: 50%;
  color: var(--accent);
  position: relative;
  z-index: 1;
}
.cat-card-content {
  padding: 28px 28px 32px;
}
.cat-card-badge {
  font-family: var(--font-script);
  font-size: 18px;
  color: var(--accent);
  margin-bottom: 6px;
}
.cat-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: var(--ink);
}
.cat-card p {
  font-size: 14px;
  color: var(--ink-mute);
  line-height: 1.6;
  margin-bottom: 18px;
}
.cat-card-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.02em;
}

/* ========================================================================
   CATALOG PAGE
   ======================================================================== */
.cat-page-head {
  padding: clamp(40px, 7vw, 80px) var(--pad-x) clamp(30px, 4vw, 50px);
  max-width: var(--maxw); margin: 0 auto;
  text-align: center;
}
.cat-page-head h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(36px, 5.5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}
.cat-page-head h1 em { font-style: italic; color: var(--accent); }
.cat-page-head p {
  color: var(--ink-mute);
  max-width: 620px;
  margin: 0 auto;
  font-size: 16px;
}

.breadcrumb {
  font-size: 13px;
  color: var(--ink-dim);
  margin-bottom: 18px;
  font-family: var(--font-script);
}
.breadcrumb a { color: var(--ink-mute); }
.breadcrumb a:hover { color: var(--accent); }

.filter-bar {
  max-width: var(--maxw); margin: 0 auto;
  padding: 0 var(--pad-x) 36px;
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center;
}
.filter-btn {
  font-size: 14px;
  font-weight: 500;
  padding: 9px 20px;
  border: 1px solid var(--line-2);
  background: var(--bg-2);
  border-radius: 999px;
  color: var(--ink-mute);
  transition: all .15s ease;
}
.filter-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.filter-btn.active {
  background: var(--accent);
  color: var(--bg-warm);
  border-color: var(--accent);
}

.products {
  max-width: var(--maxw); margin: 0 auto;
  padding: 0 var(--pad-x) clamp(50px, 8vw, 90px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.product {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color .2s ease, transform .25s ease, box-shadow .25s ease;
}
.product:hover {
  border-color: var(--line-2);
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(139, 58, 19, 0.08);
}
.product-img {
  aspect-ratio: 4/3;
  background: var(--bg-warm);
  position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.product-img::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 70%, rgba(139, 58, 19, 0.05), transparent 60%);
}
.product-img svg {
  width: 60%; height: 60%;
  color: var(--accent);
  opacity: 0.75;
  position: relative;
  z-index: 1;
}
.product-badge {
  position: absolute; top: 14px; left: 14px;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  z-index: 2;
  background: var(--bg-warm);
  color: var(--accent);
  border: 1px solid var(--line-2);
}
.product-info {
  padding: 22px 24px 26px;
  display: flex; flex-direction: column;
  flex: 1;
}
.product-cat {
  font-family: var(--font-script);
  font-size: 16px;
  color: var(--accent);
  margin-bottom: 6px;
}
.product-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  color: var(--ink);
}
.product-desc {
  font-size: 14px;
  color: var(--ink-mute);
  line-height: 1.55;
  margin-bottom: 14px;
  flex: 1;
}
.product-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
  padding-top: 14px;
  margin-bottom: 16px;
  border-top: 1px dashed var(--line);
  font-size: 12px;
  color: var(--ink-mute);
}
.product-meta strong {
  display: block;
  color: var(--ink-dim);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.product-foot {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
}
.product-price {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
}
.product-order {
  font-size: 13px;
  font-weight: 600;
  color: var(--bg-warm);
  background: var(--accent);
  padding: 8px 16px;
  border-radius: 999px;
  transition: background .2s ease;
}
.product-order:hover { background: var(--accent-2); color: var(--bg-warm); }
.product-allerg {
  font-size: 11px;
  color: var(--ink-dim);
  margin-top: 10px;
  font-style: italic;
  line-height: 1.4;
}

/* ========================================================================
   STORY / ABOUT
   ======================================================================== */
.story {
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(60px, 9vw, 110px) var(--pad-x);
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.story-text .kicker {
  font-family: var(--font-script);
  font-size: 22px;
  color: var(--accent);
  display: block;
  margin-bottom: 10px;
}
.story-text h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 4.5vw, 50px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.story-text h2 em { font-style: italic; color: var(--accent); }
.story-text p {
  color: var(--ink-mute);
  margin-bottom: 16px;
  font-size: 16px;
  max-width: 540px;
  line-height: 1.7;
}
.story-visual {
  aspect-ratio: 4/5;
  background: var(--bg-warm);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.story-visual::before {
  content: "";
  position: absolute; inset: 12%;
  border: 2px dashed var(--line-2);
  border-radius: var(--radius-lg);
  opacity: 0.5;
}
.story-visual svg {
  width: 50%; height: 50%;
  color: var(--accent);
  position: relative;
  z-index: 1;
}
.story-quote {
  position: absolute;
  bottom: 24px; left: 24px; right: 24px;
  text-align: center;
  font-family: var(--font-script);
  font-size: 22px;
  color: var(--accent);
  z-index: 2;
}
.story-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}
.story-feat {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 16px;
  background: var(--bg-warm);
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.story-feat-ico {
  flex-shrink: 0;
  width: 36px; height: 36px;
  color: var(--accent);
}
.story-feat-ico svg { width: 100%; height: 100%; }
.story-feat h5 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 4px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.story-feat p {
  font-size: 12px;
  color: var(--ink-mute);
  line-height: 1.5;
  margin: 0;
}

/* ========================================================================
   PROCESS (4 steps)
   ======================================================================== */
.process {
  background: var(--bg-3);
  padding: clamp(60px, 9vw, 110px) 0;
}
.process-grid {
  max-width: var(--maxw); margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.process-step {
  text-align: center;
  position: relative;
}
.process-num {
  width: 64px; height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--bg-2);
  border: 2px solid var(--accent);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 24px;
}
.process-step h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.process-step p {
  font-size: 14px;
  color: var(--ink-mute);
  line-height: 1.6;
  max-width: 240px;
  margin: 0 auto;
}

/* ========================================================================
   ABOUT VERIFY (legal info card)
   ======================================================================== */
.verify {
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(50px, 8vw, 90px) var(--pad-x);
}
.verify-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(30px, 5vw, 60px);
  align-items: start;
}
.verify-text h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.verify-text p {
  color: var(--ink-mute);
  font-size: 16px;
  margin-bottom: 14px;
  line-height: 1.65;
}
.verify-note {
  margin-top: 22px;
  padding: 16px 20px;
  background: var(--bg-warm);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 14px;
}
.verify-note a {
  color: var(--accent);
  font-weight: 600;
  margin-left: 6px;
}
.verify-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.verify-card dl { display: grid; gap: 18px; }
.verify-card dt {
  font-size: 11px;
  font-weight: 700;
  color: var(--ink-dim);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.verify-card dd {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
}
.verify-card dd:last-child { border-bottom: 0; padding-bottom: 0; }

/* ========================================================================
   CTA BLOCK
   ======================================================================== */
.cta-block {
  background: var(--accent);
  color: var(--bg-warm);
  padding: clamp(60px, 9vw, 110px) var(--pad-x);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content: "";
  position: absolute;
  top: -50px; right: -50px;
  width: 200px; height: 200px;
  background: var(--accent-2);
  border-radius: 50%;
  opacity: 0.3;
}
.cta-block::after {
  content: "";
  position: absolute;
  bottom: -80px; left: -50px;
  width: 240px; height: 240px;
  background: var(--accent-2);
  border-radius: 50%;
  opacity: 0.2;
}
.cta-block > * { position: relative; z-index: 1; }
.cta-block .kicker {
  font-family: var(--font-script);
  font-size: 22px;
  color: var(--bg-warm);
  opacity: 0.9;
  display: block;
  margin-bottom: 10px;
}
.cta-block h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 4.5vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 720px;
  margin: 0 auto 18px;
  color: var(--bg-warm);
}
.cta-block h2 em { font-style: italic; }
.cta-block p {
  color: rgba(251, 248, 243, 0.85);
  font-size: 16px;
  max-width: 540px;
  margin: 0 auto 32px;
}
.cta-block .btn-primary {
  background: var(--bg-warm);
  color: var(--accent);
}
.cta-block .btn-primary:hover {
  background: var(--bg-2);
  color: var(--accent-2);
}

/* ========================================================================
   FOOTER
   ======================================================================== */
.footer {
  background: var(--ink);
  color: var(--bg-warm);
  padding: 70px var(--pad-x) 30px;
}
.footer .logo-text { color: var(--bg-warm); }
.footer .logo-sub { color: var(--accent-soft); }
.footer-grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(245, 227, 210, 0.15);
}
.footer-brand p {
  color: rgba(251, 248, 243, 0.7);
  font-size: 14px;
  margin-top: 16px;
  max-width: 260px;
  line-height: 1.6;
}
.footer-col h5 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-soft);
  margin-bottom: 18px;
  font-family: var(--font-body);
}
.footer-col p,
.footer-col address {
  color: rgba(251, 248, 243, 0.7);
  font-size: 14px;
  font-style: normal;
  line-height: 1.7;
  margin-bottom: 6px;
}
.footer-col p b {
  color: var(--bg-warm);
  font-weight: 600;
  font-size: 13px;
}
.footer-col a { color: rgba(251, 248, 243, 0.7); }
.footer-col a:hover { color: var(--bg-warm); }
.footer-links {
  list-style: none;
}
.footer-links li { margin-bottom: 8px; }
.footer-links a {
  font-size: 14px;
}
.footer-bottom {
  max-width: var(--maxw); margin: 0 auto;
  padding-top: 22px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 12px;
  color: rgba(251, 248, 243, 0.5);
}
.footer-bottom .script {
  font-family: var(--font-script);
  font-size: 18px;
  color: var(--accent-soft);
}

/* ========================================================================
   PAGE HERO (inner pages)
   ======================================================================== */
.page-hero {
  padding: clamp(50px, 7vw, 80px) var(--pad-x) clamp(30px, 5vw, 50px);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
  text-align: center;
}
.page-hero-inner { max-width: var(--maxw); margin: 0 auto; }
.page-hero .kicker {
  font-family: var(--font-script);
  font-size: 22px;
  color: var(--accent);
  display: block;
  margin-bottom: 6px;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(36px, 5.5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}
.page-hero h1 em { font-style: italic; color: var(--accent); }
.page-hero p {
  font-size: 17px;
  color: var(--ink-mute);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ========================================================================
   TEAM PAGE
   ======================================================================== */
.team-section {
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(50px, 8vw, 90px) var(--pad-x);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.team-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 22px;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.team-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(139, 58, 19, 0.08);
}
.team-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--berry) 100%);
  color: var(--bg-warm);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
}
.team-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
  grid-column: 2 / 3;
}
.team-card .team-role {
  font-family: var(--font-script);
  font-size: 17px;
  color: var(--accent);
  margin-bottom: 12px;
  grid-column: 2 / 3;
}
.team-card p {
  font-size: 14px;
  color: var(--ink-mute);
  line-height: 1.6;
  grid-column: 2 / 3;
}

/* ========================================================================
   INFO PAGE (delivery/payment/order)
   ======================================================================== */
.info-section {
  max-width: 920px; margin: 0 auto;
  padding: clamp(40px, 6vw, 70px) var(--pad-x);
}
.info-block {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin-bottom: 24px;
}
.info-block h2 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 22px;
  display: flex; align-items: center; gap: 16px;
}
.info-block-num {
  width: 44px; height: 44px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
}
.info-block ul {
  list-style: none;
  padding-left: 0;
}
.info-block ul li {
  padding: 12px 0 12px 28px;
  position: relative;
  font-size: 15px;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  line-height: 1.55;
}
.info-block ul li:last-child { border-bottom: 0; }
.info-block ul li::before {
  content: "✦";
  position: absolute; left: 0;
  color: var(--accent);
  font-size: 14px;
  top: 14px;
}
.info-block p {
  color: var(--ink-mute);
  font-size: 15px;
  line-height: 1.7;
}

/* ========================================================================
   CONTACT PAGE
   ======================================================================== */
.contact-page {
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(40px, 6vw, 70px) var(--pad-x);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.contact-info-block {
  margin-bottom: 30px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.contact-info-block:last-child { border-bottom: 0; }
.contact-info-block h4 {
  font-family: var(--font-script);
  font-size: 19px;
  color: var(--accent);
  margin-bottom: 10px;
  font-weight: 500;
}
.contact-info-block .big {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  color: var(--ink);
  display: block;
  letter-spacing: -0.01em;
}
.contact-info-block .big:hover { color: var(--accent); }
.contact-info-block address {
  color: var(--ink-mute);
  font-style: normal;
  line-height: 1.7;
  font-size: 15px;
}
.contact-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  align-self: start;
}
.contact-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 26px;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.contact-card p {
  color: var(--ink-mute);
  margin-bottom: 26px;
  font-size: 14px;
}
.form-row { margin-bottom: 16px; }
.form-row label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 6px;
}
.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line-2);
  color: var(--ink);
  font-family: inherit;
  font-size: 15px;
  padding: 12px 16px;
  border-radius: var(--radius);
  transition: border-color .2s ease;
}
.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  outline: none;
  border-color: var(--accent);
}
.form-row textarea {
  resize: vertical;
  min-height: 110px;
}
.form-note {
  font-size: 11px;
  color: var(--ink-dim);
  margin-top: 14px;
  letter-spacing: 0.02em;
}

/* ========================================================================
   LEGAL PAGES
   ======================================================================== */
.legal-page {
  max-width: 820px; margin: 0 auto;
  padding: clamp(40px, 6vw, 70px) var(--pad-x);
}
.legal-page h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(32px, 5vw, 50px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.legal-page .updated {
  font-size: 13px;
  color: var(--ink-dim);
  margin-bottom: 40px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.legal-page h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(20px, 2.6vw, 26px);
  margin-top: 40px;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.legal-page h3 {
  font-family: var(--font-script);
  font-size: 19px;
  color: var(--accent);
  margin-top: 24px;
  margin-bottom: 10px;
  font-weight: 500;
}
.legal-page p {
  color: var(--ink-mute);
  margin-bottom: 14px;
  line-height: 1.7;
}
.legal-page ul, .legal-page ol {
  color: var(--ink-mute);
  margin: 10px 0 18px 24px;
  line-height: 1.75;
}
.legal-page li { margin-bottom: 6px; }
.legal-page strong { color: var(--ink); font-weight: 600; }
.legal-page a { color: var(--accent); }

/* ========================================================================
   RESPONSIVE
   ======================================================================== */
@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 400px; }
  .daily-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-grid-3 { grid-template-columns: 1fr; max-width: 540px; margin: 0 auto; padding: 0 var(--pad-x); }
  .products { grid-template-columns: repeat(2, 1fr); }
  .story-grid { grid-template-columns: 1fr; gap: 30px; }
  .story-visual { max-width: 400px; margin: 0 auto; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .verify-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-brand { grid-column: 1 / -1; }
  .team-grid { grid-template-columns: 1fr; }
  .contact-page { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 700px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: var(--bg-2);
    padding: 22px var(--pad-x);
    border-bottom: 1px solid var(--line);
    gap: 16px;
  }
  .nav-links.open { display: flex; }
  .burger { display: flex; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { justify-content: center; }
  .daily-grid { grid-template-columns: 1fr; }
  .products { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .story-features { grid-template-columns: 1fr; }
  .team-card { padding: 24px; grid-template-columns: 56px 1fr; gap: 18px; }
  .team-avatar { width: 56px; height: 56px; font-size: 21px; }
  .info-block { padding: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
