/* Savora — landing page concept
   Original design. Inspired by the editorial split-composition layout pattern. */

@import url('https://api.fontshare.com/v2/css?f[]=general-sans@400,500,600,700&f[]=satoshi@400,500,700&display=swap');

:root {
  --bone: #f3efe8;
  --bone-2: #ece7dd;
  --card: #ffffff;
  --ink: #14110d;
  --ink-soft: #2a251d;
  --muted: #6b6357;
  --hair: rgba(20, 17, 13, 0.08);
  --accent: #b04a2f;             /* terracotta — only used for the small label */
  --shape: #0e0c08;              /* deep matte black for the organic shape */
  --shadow-card: 0 1px 0 rgba(255,255,255,0.6) inset,
                 0 30px 60px -20px rgba(20, 17, 13, 0.22),
                 0 60px 120px -40px rgba(20, 17, 13, 0.18);
  --display: 'General Sans', ui-sans-serif, system-ui, sans-serif;
  --body: 'Satoshi', ui-sans-serif, system-ui, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--bone);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* warm linen-like noise on outer canvas */
.canvas {
  position: relative;
  min-height: 100vh;
  width: 100%;
  padding: 20px clamp(24px, 6vw, 96px) 96px;
  background:
    radial-gradient(1100px 600px at 12% -10%, #efe9df 0%, transparent 60%),
    radial-gradient(900px 500px at 90% 110%, #e7e0d3 0%, transparent 55%),
    var(--bone);
  isolation: isolate;
}
.canvas::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.12  0 0 0 0 0.10  0 0 0 0 0.06  0 0 0 0.08 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: 0.55;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 0;
}

/* ───── nav ───── */
.nav {
  position: sticky;
  top: 16px;
  z-index: 50;
  max-width: 1400px;
  margin: 0 auto 36px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(12px, 2vw, 40px);
  padding: 10px 14px 10px 18px;
  background: rgba(243, 239, 232, 0.72);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid rgba(20, 17, 13, 0.06);
  border-radius: 999px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.7) inset,
    0 14px 32px -14px rgba(20, 17, 13, 0.18),
    0 30px 60px -30px rgba(20, 17, 13, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
  padding: 4px 8px 4px 4px;
}
.brand-mark {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--ink);
  display: grid; place-items: center;
  color: var(--bone);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.08) inset,
    0 8px 18px -6px rgba(20,17,13,0.45);
}
.brand-mark svg { display: block; }
.brand-word {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 3px;
}
.brand-name {
  font-family: var(--display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.brand-sub {
  font-family: var(--body);
  font-weight: 500;
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
@media (max-width: 640px) {
  .brand-sub { display: none; }
  .brand-name { font-size: 16px; }
  .brand-mark { width: 30px !important; height: 30px !important; }
}

/* menu — sits inside its own glass dock so it reads as a separate UI region */
.menu-wrap {
  display: flex;
  justify-content: center;
}
.menu {
  display: flex;
  align-items: center;
  gap: clamp(4px, 0.8vw, 10px);
  padding: 4px;
  border-radius: 999px;
  border: 1px solid rgba(20,17,13,0.06);
  background: rgba(255,255,255,0.55);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}
.menu a {
  position: relative;
  font-family: var(--body);
  font-weight: 500;
  font-size: 13.5px;
  letter-spacing: -0.005em;
  color: var(--ink-soft);
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 999px;
  transition: color .25s ease, background .25s ease;
  white-space: nowrap;
}
.menu a:hover {
  color: var(--ink);
  background: rgba(255,255,255,0.7);
}
.menu a.active {
  color: var(--bone);
  background: var(--ink);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.1) inset,
    0 6px 14px -6px rgba(20,17,13,0.5);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-self: end;
}

.icon-btn {
  width: 38px; height: 38px; border-radius: 999px;
  display: grid; place-items: center;
  border: 1px solid transparent;
  background: transparent;
  cursor: default;
  color: var(--ink);
  transition: background .25s, border-color .25s, transform .2s;
}
.icon-btn:hover {
  background: rgba(255,255,255,0.7);
  border-color: rgba(20,17,13,0.08);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px 11px 18px;
  margin-left: 4px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--bone);
  text-decoration: none;
  font-family: var(--body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: -0.005em;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.08) inset,
    0 8px 18px -8px rgba(20,17,13,0.5);
  transition: transform .3s cubic-bezier(.2,.7,.2,1), background .25s;
}
.nav-cta:hover { background: #1f1a13; transform: translateY(-1px); }
.nav-cta-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(176, 74, 47, 0.18);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(176, 74, 47, 0.18); }
  50%      { box-shadow: 0 0 0 5px rgba(176, 74, 47, 0.10); }
}

/* footer-bar scroll hint */
.scroll-hint {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
  padding: 6px 0;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color .2s, transform .35s cubic-bezier(.2,.7,.2,1);
}
.scroll-hint:hover { color: var(--ink); }
.scroll-hint svg { transition: transform .35s cubic-bezier(.2,.7,.2,1); }
.scroll-hint:hover svg { transform: translateY(4px); }
.footer-bar.on-dark .scroll-hint:hover { color: var(--bone); }

/* ───── hero card ───── */
.stage {
  position: relative;
  z-index: 4;
  max-width: 1400px;
  margin: 0 auto;
}

.card {
  position: relative;
  border-radius: 36px;
  background: var(--card);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  isolation: isolate;
  min-height: 640px;
}
.card.dark { background: #fbf8f2; }

/* organic shape (right side by default) — abstract, not hand-drawn imagery */
.shape {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.shape svg { width: 100%; height: 100%; display: block; }

/* hero grid */
.hero {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
  padding: clamp(48px, 7vw, 96px) clamp(40px, 6vw, 80px);
  min-height: 640px;
}
.hero.flip { grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); }
.hero.flip .copy { order: 2; padding-left: clamp(8px, 2vw, 28px); padding-right: 0; }
.hero.flip .stage-bowl { order: 1; }
.hero.flip .stage-bowl .bowl-wrap { margin-right: 0; margin-left: -8%; }

/* copy column */
.copy { max-width: 520px; position: relative; z-index: 3; }
.copy::before {
  content: '';
  position: absolute;
  inset: -32px -48px;
  background: radial-gradient(ellipse 80% 85% at 30% 50%, rgba(255,255,255,0.55) 0%, transparent 80%);
  pointer-events: none;
  z-index: -1;
}
.hero.flip .copy::before {
  background: radial-gradient(ellipse 80% 85% at 70% 50%, rgba(255,255,255,0.55) 0%, transparent 80%);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--body);
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 22px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 1px;
  background: currentColor;
  opacity: .8;
}
h1.headline {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(48px, 6.4vw, 92px);
  line-height: 0.96;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin: 0 0 22px;
  text-wrap: balance;
}
h1.headline em {
  font-style: normal;
  font-family: 'General Sans', serif;
  font-weight: 500;
  font-style: italic;
  letter-spacing: -0.02em;
  color: var(--ink-soft);
}
.lede {
  font-family: var(--body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 440px;
  margin: 0 0 36px;
  text-wrap: pretty;
}

.cta-row {
  display: flex;
  align-items: center;
  gap: 22px;
}
.cta {
  appearance: none;
  border: 0;
  cursor: default;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 26px 18px 30px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--bone);
  font-family: var(--body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.08) inset,
    0 14px 28px -10px rgba(20,17,13,0.55),
    0 30px 60px -20px rgba(20,17,13,0.35);
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s, background .25s;
}
.cta:hover {
  transform: translateY(-2px);
  background: #1a1610;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.08) inset,
    0 22px 40px -12px rgba(20,17,13,0.55),
    0 40px 80px -24px rgba(20,17,13,0.45);
}
.cta .arrow {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--bone);
  color: var(--ink);
  display: grid; place-items: center;
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
}
.cta:hover .arrow { transform: translateX(3px) rotate(-8deg); }

.ghost {
  font-family: var(--body);
  font-weight: 500;
  font-size: 14.5px;
  color: var(--ink-soft);
  text-decoration: none;
  border-bottom: 1px solid var(--hair);
  padding-bottom: 4px;
  transition: color .25s, border-color .25s;
}
.ghost:hover { color: var(--ink); border-color: var(--ink); }

/* meta row at bottom of copy */
.meta {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 40px;
  align-items: end;
  max-width: 460px;
}
.meta .num {
  font-family: var(--display);
  font-weight: 600;
  font-size: 28px;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
}
.meta .lbl {
  display: block;
  margin-top: 6px;
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ───── bowl / right column ───── */
.stage-bowl {
  position: relative;
  height: 100%;
  min-height: 480px;
  display: grid;
  place-items: center;
  overflow: visible;
}
.bowl-wrap {
  position: relative;
  width: min(720px, 115%);
  aspect-ratio: 1408 / 768;
  filter: drop-shadow(0 60px 70px rgba(0,0,0,0.35))
          drop-shadow(0 25px 35px rgba(0,0,0,0.22));
  margin-right: -8%;  /* let the bowl spill toward the card edge, like the reference */
}
.bowl-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}

/* floating decorative ingredients */
.flora { position: absolute; pointer-events: none; z-index: 6; }
.flora.behind { z-index: 1; }

.leaf {
  --w: 180px;
  width: var(--w);
  aspect-ratio: 5 / 12;
  display: block;
  filter: drop-shadow(0 18px 22px rgba(0,0,0,0.22))
          drop-shadow(0 6px 8px rgba(0,0,0,0.15));
}

.berry {
  width: 64px; height: 64px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, #5a4233 0%, #2a1c14 35%, #0a0604 80%);
  box-shadow:
    inset -8px -10px 14px rgba(0,0,0,0.5),
    inset 6px 8px 16px rgba(255,255,255,0.08),
    0 18px 24px rgba(0,0,0,0.4),
    0 6px 10px rgba(0,0,0,0.25);
}

.seed {
  position: absolute;
  width: 8px; height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d9c79a, #a88a55);
  box-shadow: 0 2px 3px rgba(0,0,0,0.3);
}

/* ───── footer bar inside card ───── */
.footer-bar {
  position: absolute;
  left: clamp(40px, 6vw, 80px);
  right: clamp(40px, 6vw, 80px);
  bottom: clamp(24px, 3vw, 36px);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-family: var(--body);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.footer-bar .left, .footer-bar .right { display: flex; align-items: center; gap: 18px; }
.footer-bar .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.footer-bar.on-dark { color: rgba(243, 239, 232, 0.65); }
.footer-bar.on-dark .dot { background: var(--bone); }

/* tag chip */
.chip {
  position: absolute;
  z-index: 7;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: 0 14px 28px -10px rgba(20,17,13,0.25);
  font-family: var(--body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.chip .swatch {
  width: 18px; height: 18px; border-radius: 50%;
  background: linear-gradient(135deg, #c9d68a, #6f8a3a);
  box-shadow: 0 2px 6px rgba(0,0,0,0.18);
}
.chip .meta-num {
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* image-slot styling override — make it feel ambient */
image-slot {
  --is-bg: transparent;
  --is-border: transparent;
}

/* ════════════════════════════════════════════════════════════
   SECTION SCAFFOLDING
   ════════════════════════════════════════════════════════════ */

.section {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: clamp(80px, 10vw, 160px) clamp(24px, 4vw, 56px);
}
.section.full {
  max-width: none;
  margin: clamp(96px, 12vw, 160px) 0 0;
  padding: clamp(96px, 11vw, 160px) clamp(40px, 6vw, 96px);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: end;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.section-head .eyebrow { margin-bottom: 18px; }
.section-head h2 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(36px, 4.6vw, 64px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin: 0;
  text-wrap: balance;
}
.section-head h2 em {
  font-style: italic;
  font-weight: 500;
  color: var(--muted);
}
.section-head .sub {
  font-size: 16px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 380px;
  margin: 0;
}
.section-head .right-link {
  font-family: var(--body);
  font-weight: 500;
  font-size: 14px;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
  align-self: end;
  justify-self: end;
  white-space: nowrap;
}

/* ────────── Featured Recipes ────────── */
.recipes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 36px);
}
.recipe-card {
  position: relative;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--ink);
}
.recipe-card .img {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 20px;
  overflow: hidden;
  background: #ece5d6;
  isolation: isolate;
}
.recipe-card image-slot {
  width: 100%;
  height: 100%;
  display: block;
}
.recipe-card .img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.25), transparent 40%);
  pointer-events: none;
}
.recipe-card .num-pill {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 2;
  font-family: var(--display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: #fff;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(20,17,13,0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.recipe-card .time-pill {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 2;
  font-family: var(--body);
  font-weight: 600;
  font-size: 12px;
  color: var(--ink);
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.recipe-card .meta-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin: 22px 4px 6px;
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.recipe-card h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 4px 8px;
  text-wrap: balance;
}
.recipe-card .desc {
  margin: 0 4px;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--muted);
}
.recipe-card .img-placeholder {
  position: absolute; inset: 0; z-index: -1;
  display: grid; place-items: center;
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: rgba(20,17,13,0.4);
  background:
    repeating-linear-gradient(
      135deg,
      rgba(20,17,13,0.04) 0 1px,
      transparent 1px 14px
    ),
    #e3dccc;
}

/* ────────── Seasonal (full-bleed dark) ────────── */
.seasonal {
  background: #0e0c08;
  color: #f3efe8;
  position: relative;
  overflow: hidden;
}
.seasonal::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.05 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: 0.5;
  mix-blend-mode: screen;
  pointer-events: none;
}
.seasonal-inner {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
.seasonal .eyebrow { color: #d9cdb6; }
.seasonal h2 { color: #f3efe8; }
.seasonal h2 em { color: #a89c84; }
.seasonal .sub { color: rgba(243,239,232,0.65); }
.seasonal-list {
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.seasonal-list li {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  gap: 24px;
  align-items: baseline;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: padding-left .35s cubic-bezier(.2,.7,.2,1);
  cursor: default;
}
.seasonal-list li:hover { padding-left: 12px; }
.seasonal-list .num {
  font-family: var(--display);
  font-weight: 500;
  font-size: 13px;
  color: rgba(243,239,232,0.5);
  letter-spacing: 0.04em;
}
.seasonal-list .name {
  font-family: var(--display);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.01em;
}
.seasonal-list .name em {
  font-style: italic;
  font-weight: 400;
  color: rgba(243,239,232,0.55);
  margin-left: 8px;
}
.seasonal-list .peak {
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(243,239,232,0.55);
}
.seasonal-img {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 28px;
  overflow: hidden;
  background: #2a251d;
  isolation: isolate;
}
.seasonal-img image-slot { width: 100%; height: 100%; }
.seasonal-img-placeholder {
  position: absolute; inset: 0; z-index: -1;
  display: grid; place-items: center;
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: rgba(243,239,232,0.4);
  background:
    repeating-linear-gradient(
      135deg,
      rgba(255,255,255,0.04) 0 1px,
      transparent 1px 14px
    ),
    #1a1610;
}
.seasonal-tag {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(243,239,232,0.92);
  color: var(--ink);
  font-family: var(--body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.02em;
}

/* ────────── Collections (asymmetric tile grid) ────────── */
.collections-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 140px;
  gap: clamp(16px, 2vw, 28px);
}
.col-tile {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  color: #fff;
  isolation: isolate;
  text-decoration: none;
  transition: transform .5s cubic-bezier(.2,.7,.2,1);
}
.col-tile:hover { transform: translateY(-4px); }
.col-tile image-slot {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: -1;
}
.col-tile::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0.15) 50%, rgba(0,0,0,0) 100%);
  z-index: 0;
}
.col-tile > * { position: relative; z-index: 1; }
.col-tile .col-eyebrow {
  font-family: var(--body);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 12px;
}
.col-tile h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  text-wrap: balance;
}
.col-tile .count {
  font-family: var(--body);
  font-size: 13px;
  color: rgba(255,255,255,0.75);
}
.col-tile-placeholder {
  position: absolute; inset: 0; z-index: -2;
  display: grid; place-items: center;
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.45);
  background: linear-gradient(135deg, #3a2f1f, #1a1410);
}

.col-tile.t1 { grid-column: span 7; grid-row: span 3; }
.col-tile.t2 { grid-column: span 5; grid-row: span 2; }
.col-tile.t3 { grid-column: span 5; grid-row: span 2; }
.col-tile.t4 { grid-column: span 4; grid-row: span 2; }
.col-tile.t5 { grid-column: span 8; grid-row: span 2; }

/* ────────── Journal ────────── */
.journal {
  background: var(--card);
  border-radius: 36px;
  margin: clamp(48px, 6vw, 80px) auto 0;
  max-width: 1400px;
  padding: clamp(80px, 9vw, 120px) clamp(40px, 6vw, 80px);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}
.journal-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}
.featured-article {
  display: block;
  text-decoration: none;
  color: inherit;
}
.featured-article .img {
  position: relative;
  aspect-ratio: 5/4;
  border-radius: 24px;
  overflow: hidden;
  background: #ece5d6;
  margin-bottom: 28px;
}
.featured-article image-slot { width: 100%; height: 100%; }
.featured-article .meta-row {
  display: flex;
  gap: 16px;
  align-items: center;
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.featured-article .meta-row .dot {
  width: 3px; height: 3px; border-radius: 50%; background: var(--muted);
}
.featured-article h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 14px;
  text-wrap: balance;
}
.featured-article p {
  font-size: 16px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
  max-width: 540px;
}

.article-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 8px;
}
.article-row {
  display: flex;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  color: inherit;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--hair);
}
.article-row:last-child { border-bottom: 0; padding-bottom: 0; }
.article-row .thumb {
  width: 110px;
  height: 110px;
  flex: 0 0 110px;
  border-radius: 16px;
  overflow: hidden;
  background: #ece5d6;
}
.article-row .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.article-row > div:not(.thumb) {
  flex: 1;
}
.article-row .meta {
  font-family: var(--body);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0;
  margin-bottom: 8px;
}
.article-row h4 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin: 0 0 6px;
  text-wrap: balance;
}
.article-row .by {
  font-size: 13px;
  color: var(--muted);
}

/* ────────── Pull quote ────────── */
.pull-quote {
  max-width: 1100px;
  margin: clamp(96px, 12vw, 160px) auto;
  padding: 0 clamp(24px, 4vw, 56px);
  text-align: center;
}
.pull-quote q {
  font-family: var(--display);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  display: block;
  text-wrap: balance;
}
.pull-quote q::before, .pull-quote q::after { content: none; }
.pull-quote .attr {
  margin-top: 36px;
  font-family: var(--body);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.pull-quote .attr strong {
  color: var(--ink);
  font-weight: 600;
}

/* ────────── Newsletter ────────── */
.newsletter {
  background: #ece7dd;
  border-radius: 36px;
  margin: clamp(48px, 6vw, 80px) auto 0;
  max-width: 1400px;
  padding: clamp(72px, 9vw, 120px) clamp(40px, 6vw, 80px);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.newsletter::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 360px at 10% 0%, rgba(255,255,255,0.7), transparent 60%),
    radial-gradient(600px 320px at 100% 100%, rgba(20,17,13,0.06), transparent 60%);
  pointer-events: none;
}
.newsletter > * { position: relative; }
.newsletter .eyebrow { justify-content: center; }
.newsletter h2 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin: 0 auto 18px;
  max-width: 14ch;
  text-wrap: balance;
}
.newsletter h2 em { font-style: italic; font-weight: 500; color: var(--muted); }
.newsletter .sub {
  max-width: 480px;
  margin: 0 auto 36px;
  font-size: 17px;
  line-height: 1.55;
  color: var(--muted);
  text-wrap: pretty;
}
.nl-form {
  max-width: 460px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0;
  align-items: stretch;
  background: #fff;
  border-radius: 999px;
  padding: 6px;
  box-shadow: 0 14px 28px -10px rgba(20,17,13,0.16), inset 0 1px 0 rgba(255,255,255,0.9);
  border: 1px solid var(--hair);
  transition: box-shadow .25s;
}
.nl-form:focus-within {
  box-shadow: 0 20px 40px -10px rgba(20,17,13,0.22), inset 0 1px 0 rgba(255,255,255,0.9);
}
.nl-form input {
  appearance: none;
  background: transparent;
  border: 0;
  outline: 0;
  padding: 0 18px;
  font-family: var(--body);
  font-size: 15px;
  color: var(--ink);
  min-width: 0;
}
.nl-form button {
  appearance: none;
  border: 0;
  background: var(--ink);
  color: var(--bone);
  font-family: var(--body);
  font-weight: 600;
  font-size: 14px;
  padding: 14px 22px;
  border-radius: 999px;
  cursor: default;
  white-space: nowrap;
  transition: background .25s, transform .25s;
}
.nl-form button:hover { background: #1f1a13; transform: translateX(2px); }
.nl-fine {
  margin-top: 18px;
  font-family: var(--body);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: var(--muted);
}

/* ────────── Footer ────────── */
.footer {
  max-width: 1400px;
  margin: clamp(80px, 10vw, 140px) auto 40px;
  padding: 0 clamp(24px, 4vw, 56px);
  display: grid;
  grid-template-columns: minmax(280px, 1.4fr) repeat(4, 1fr);
  gap: clamp(32px, 4vw, 64px);
  align-items: start;
}
.footer .brand-block .brand-mark { width: 40px; height: 40px; font-size: 16px; }
.footer .brand-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 320px;
}
.footer .brand-block .tag {
  font-family: var(--display);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.footer .brand-block .tag em { font-style: italic; color: var(--muted); }
.footer .brand-row {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 18px;
}
.footer h5 {
  font-family: var(--body);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 18px;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer ul a {
  font-family: var(--body);
  font-size: 14.5px;
  color: var(--ink);
  text-decoration: none;
  transition: color .2s;
}
.footer ul a:hover { color: var(--accent); }
.footer-bottom {
  max-width: 1400px;
  margin: 40px auto 56px;
  padding: 28px clamp(24px, 4vw, 56px) 0;
  border-top: 1px solid var(--hair);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--body);
  font-size: 12px;
  color: var(--muted);
}
.footer-bottom .legal { display: flex; gap: 24px; }
.footer-bottom .legal a { color: var(--muted); text-decoration: none; }
.footer-bottom .legal a:hover { color: var(--ink); }

/* ─── hamburger / mobile nav ─── */
.nav-ham {
  display: none;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--ink); border: none;
  cursor: pointer; flex-shrink: 0;
}
.nav-ham span {
  display: block; width: 16px; height: 1.5px;
  background: var(--bone); border-radius: 999px;
  transition: transform .25s, opacity .25s;
}
.nav-ham.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-ham.open span:nth-child(2) { opacity: 0; }
.nav-ham.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 200;
  background: rgba(243,239,232,0.97);
  backdrop-filter: blur(20px);
  flex-direction: column; align-items: center; justify-content: center; gap: 6px;
}
.mobile-nav-overlay.open { display: flex; }
.mobile-nav-overlay a {
  font-family: var(--display);
  font-size: 28px; font-weight: 600; letter-spacing: -0.02em;
  color: var(--ink-soft); padding: 10px 24px; border-radius: 12px;
  text-decoration: none;
  transition: color .2s, background .2s;
}
.mobile-nav-overlay a:hover { color: var(--ink); background: rgba(20,17,13,0.06); }
.mobile-nav-overlay .mob-close {
  position: absolute; top: 24px; right: 20px;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--ink); border: none; color: var(--bone);
  display: grid; place-items: center; cursor: pointer; font-size: 18px;
}
.mobile-nav-overlay .mob-cta { margin-top: 24px; }

/* ─── scroll reveal ─── */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1);
}
[data-reveal].is-in {
  opacity: 1;
  transform: none;
}
[data-reveal][data-delay="1"] { transition-delay: .1s; }
[data-reveal][data-delay="2"] { transition-delay: .2s; }
[data-reveal][data-delay="3"] { transition-delay: .3s; }
[data-reveal][data-delay="4"] { transition-delay: .4s; }

/* responsive */
@media (max-width: 1100px) {
  .recipes { grid-template-columns: repeat(2, 1fr); }
  .recipes .recipe-card:last-child { grid-column: span 2; }
  .collections-grid { grid-auto-rows: 120px; }
  .footer { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 960px) {
  .hero, .hero.flip { grid-template-columns: 1fr; padding: 48px 28px 60px; }
  .hero.flip .copy, .copy { order: 2; padding: 0; }
  .hero.flip .stage-bowl, .stage-bowl { order: 1; min-height: 260px; }
  .stage-bowl .bowl-wrap { width: min(460px, 88%); margin: 0 auto; }
  .shape { display: none; }
  .copy::before { display: none; }
  .menu-wrap, .nav-cta { display: none; }
  .nav-ham { display: flex; }
  .footer-bar { display: none; }
  .section-head { grid-template-columns: 1fr; }
  .section-head .right-link { justify-self: start; }
  .recipes { grid-template-columns: 1fr; }
  .recipes .recipe-card:last-child { grid-column: span 1; }
  .seasonal-inner { grid-template-columns: 1fr; }
  .collections-grid { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 160px; }
  .col-tile.t1, .col-tile.t2, .col-tile.t3, .col-tile.t4, .col-tile.t5 {
    grid-column: span 6; grid-row: span 2;
  }
  .journal-grid { grid-template-columns: 1fr; }
  .footer { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; }
  .flora, .chip { display: none; }
  .meta { margin-top: 32px; gap: 24px; }
  .cta-row { flex-wrap: wrap; gap: 14px; }
}

@media (max-width: 640px) {
  .canvas { padding: 20px 12px 60px; }
  .nav { margin-bottom: 20px; padding: 8px 10px 8px 14px; }
  .card { border-radius: 20px; min-height: unset; }
  h1.headline { font-size: clamp(34px, 9vw, 52px); }
  .lede { font-size: 15px; }
  .cta { width: 100%; justify-content: center; }
  .ghost { display: none; }
  .meta { gap: 16px; }
  .meta .num { font-size: 22px; }
  .section { padding: clamp(48px, 8vw, 80px) 16px; }
  .section.full { padding: clamp(48px, 8vw, 80px) 16px; }
  .press { gap: 12px; font-size: 13px; }
  .footer-bottom .legal { flex-wrap: wrap; justify-content: center; gap: 12px; }
}
