:root {
  /* ── WARM CHARCOAL BASE ── */
  --bg:         #131716;
  --s1:         #1A1F1E;
  --s2:         #232928;
  --s3:         #2D3433;
  --s4:         #373F3D;
  --s5:         #424B49;

  /* ── TEAL — THE SINGLE HERO COLOR ── */
  --teal:       #2A9D9D;
  --teal-lt:    #4FB8B8;
  --teal-dk:    #1F7979;
  --teal-glow:  #6FD0D0;
  --teal-dim:   rgba(42,157,157,.12);
  --teal-brd:   rgba(42,157,157,.3);

  /* ── SUPPORTING COLORS ── */
  --sage:       #8BA888;
  --sage-dim:   rgba(139,168,136,.12);
  --sage-brd:   rgba(139,168,136,.28);

  --honey:      #E8A947;
  --honey-dim:  rgba(232,169,71,.12);
  --honey-brd:  rgba(232,169,71,.3);

  --clay:       #B8654A;
  --clay-lt:    #D0816A;
  --clay-dim:   rgba(184,101,74,.12);
  --clay-brd:   rgba(184,101,74,.28);

  /* ── WARM CREAM TEXT ── */
  --tx:         #F4EEE1;
  --t2:         #B5ACA0;
  --t3:         #7D7770;
  --t4:         #55514C;

  --border:     rgba(244,238,225,.06);
  --border-2:   rgba(244,238,225,.1);

  --logo:  'Syne', sans-serif;
  --serif: 'Fraunces', Georgia, serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--tx);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

::selection { background: var(--teal); color: var(--tx); }

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

/* ══════════════════════════════════════
   REUSABLE — TEAL AMBIENT GLOW
══════════════════════════════════════ */
.glow-bg {
  position: relative;
  overflow: hidden;
}
.glow-bg::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(42,157,157,.07) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.glow-bg > * { position: relative; z-index: 1; }

.glow-bg-left::before {
  right: auto;
  left: -80px;
  top: 40%;
}

/* ══════════════════════════════════════
   LAYOUT
══════════════════════════════════════ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
}

/* ══════════════════════════════════════
   NAV
══════════════════════════════════════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(19,23,22,.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
}
.nav-links a {
  font-family: var(--sans);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--t2);
  transition: color .2s ease;
}
.nav-links a:hover { color: var(--tx); }
section[id] { scroll-margin-top: 88px; }
.nav-burger {
  display: none;
  width: 42px;
  height: 42px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: transparent;
  border: 1px solid var(--border-2);
  border-radius: 11px;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}
.nav-burger span {
  width: 18px;
  height: 2px;
  background: var(--tx);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.m-scrim {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .3s ease, visibility .3s;
}
.m-scrim.open { opacity: 1; visibility: visible; pointer-events: auto; }
.mobile-menu {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(65% 40% at 92% 6%, rgba(42,157,157,.18) 0%, transparent 60%),
    linear-gradient(165deg, #1B201F 0%, #131716 52%, #0E1312 100%);
  padding: 20px 26px 34px;
  z-index: 201;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform .34s cubic-bezier(.4,0,.2,1), visibility .34s;
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); visibility: visible; }
.m-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 26px;
}
.m-close {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--s2);
  border: 1px solid var(--border-2);
  color: var(--t2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: all .2s ease;
}
.m-close:hover { color: var(--tx); border-color: var(--teal-brd); }
.m-close svg { width: 17px; height: 17px; }
.m-links { display: flex; flex-direction: column; }
.m-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 19px 2px;
  border-top: 1px solid var(--border);
  font-family: var(--logo);
  font-size: 25px;
  font-weight: 700;
  letter-spacing: -.5px;
  color: var(--tx);
  transition: color .2s ease;
}
.m-links a:last-child { border-bottom: 1px solid var(--border); }
.m-links a:hover { color: var(--teal-glow); }
.m-links a svg { width: 17px; height: 17px; color: var(--t3); flex-shrink: 0; }
.m-cta {
  margin-top: 24px;
  background: var(--teal);
  color: var(--bg);
  text-align: center;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 700;
  padding: 17px;
  border-radius: 100px;
  box-shadow: 0 12px 30px -8px rgba(42,157,157,.5);
}
.m-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 18px;
  font-family: var(--sans);
  font-size: 13.5px;
  color: var(--t2);
}
.m-trust-stars { color: var(--honey); letter-spacing: 1.5px; font-size: 12.5px; }
.m-review {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.m-review-stars {
  color: var(--honey);
  letter-spacing: 3px;
  font-size: 14px;
  margin-bottom: 11px;
}
.m-review-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16.5px;
  line-height: 1.5;
  color: var(--tx);
  margin-bottom: 11px;
}
.m-review-author {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--t2);
}
@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-inner { gap: 12px; }
  .nav-cta { margin-left: auto; }
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-n {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--s2);
  border: 1px solid var(--teal-brd);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  padding: 6px;
}
.logo-n svg { display: block; width: 100%; height: 100%; }
.logo-wm {
  font-family: var(--logo);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -1px;
  color: var(--tx);
  line-height: 1;
}
.logo-wm .dot { color: var(--teal-glow); }
.logo-lockup { display: flex; flex-direction: column; }
.logo-pron {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--t3);
  line-height: 1;
  margin-top: 4px;
}

.nav-cta {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  color: var(--bg);
  background: var(--teal);
  border: none;
  border-radius: 10px;
  padding: 11px 20px;
  cursor: pointer;
  transition: all .2s ease;
  box-shadow: 0 6px 20px -6px rgba(42,157,157,.5);
}
.nav-cta:hover {
  background: var(--teal-lt);
  transform: translateY(-1px);
  box-shadow: 0 10px 26px -6px rgba(42,157,157,.6);
}

/* ══════════════════════════════════════
   BUTTON SYSTEM
══════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 14px;
  padding: 18px 30px;
  cursor: pointer;
  transition: all .25s cubic-bezier(.2,.9,.25,1.1);
  text-decoration: none;
  letter-spacing: -.1px;
}
.btn-primary {
  background: var(--teal);
  color: var(--bg);
  box-shadow: 0 14px 34px -10px rgba(42,157,157,.7);
}
.btn-primary:hover {
  background: var(--teal-lt);
  transform: translateY(-2px);
  box-shadow: 0 20px 42px -10px rgba(42,157,157,.8);
}
.btn-primary:active {
  transform: translateY(0);
  background: var(--teal-dk);
}
.btn-ghost {
  background: transparent;
  color: var(--tx);
  border: 1px solid var(--border-2);
}
.btn-ghost:hover {
  background: var(--s2);
  border-color: var(--teal-brd);
}
.btn-lg {
  font-size: 18px;
  padding: 22px 38px;
}

/* ══════════════════════════════════════
   ───────── SECTION 1 ─────────
   HERO
══════════════════════════════════════ */
.hero {
  position: relative;
  padding: 80px 0 120px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(42,157,157,.1) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -150px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232,169,71,.04) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--teal-glow);
  background: var(--teal-dim);
  border: 1px solid var(--teal-brd);
  border-radius: 100px;
  padding: 7px 16px;
  margin-bottom: 28px;
}
.eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal-glow);
  box-shadow: 0 0 10px var(--teal-glow);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.3); }
}

.hero-headline {
  font-family: var(--logo);
  font-size: 72px;
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: -2.4px;
  color: var(--tx);
  margin-bottom: 28px;
}
.hero-headline .accent {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-variation-settings: "opsz" 144;
  color: var(--teal-glow);
  letter-spacing: -1.8px;
}

.hero-sub {
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--t2);
  max-width: 560px;
  margin-bottom: 40px;
}
.hero-sub strong { color: var(--tx); font-weight: 600; }
.pronounce {
  font-size: .72em;
  font-style: italic;
  font-weight: 400;
  color: var(--t3);
  letter-spacing: .02em;
  white-space: nowrap;
}

.hero-cta-row {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.hero-trust {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--t3);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.hero-trust .dot { color: var(--t4); }

/* Hero Phone Mockup — iPhone 15 Pro styling */
.phone-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  perspective: 1200px;
}
/* ── Subtle directional glow — soft blue light shining in from the right ── */
.phone-wrap::before {
  content: '';
  position: absolute;
  inset: -45% -55% -45% -25%;
  /* Centered well inside the box and fully faded to transparent long before any edge,
     so the glow never shows a hard rectangular cut-off — at any screen width. */
  background: radial-gradient(ellipse 46% 52% at 66% 44%,
    rgba(78, 162, 216, .16) 0%,
    rgba(54, 148, 182, .08) 34%,
    rgba(42, 157, 157, .03) 52%,
    transparent 66%);
  pointer-events: none;
  z-index: 0;
}
.phone {
  width: 340px;
  height: 700px;
  background: linear-gradient(145deg, #4a4845 0%, #2a2826 35%, #1c1a18 100%);
  border-radius: 52px;
  padding: 6px;
  box-shadow:
    0 60px 120px -30px rgba(0,0,0,.75),
    0 30px 60px -30px rgba(42,157,157,.22),
    inset 0 0 0 1.5px rgba(244,238,225,.08),
    inset 0 -2px 0 0 rgba(0,0,0,.4);
  animation: float 6.5s ease-in-out infinite;
  transform: rotate(-2.5deg);
  position: relative;
  z-index: 1;
}
/* Titanium side rail hint */
.phone::before {
  content: '';
  position: absolute;
  left: -3px;
  top: 120px;
  width: 3px;
  height: 50px;
  background: linear-gradient(90deg, rgba(0,0,0,.4), rgba(244,238,225,.1));
  border-radius: 2px;
}
.phone::after {
  content: '';
  position: absolute;
  left: -3px;
  top: 200px;
  width: 3px;
  height: 90px;
  background: linear-gradient(90deg, rgba(0,0,0,.4), rgba(244,238,225,.1));
  border-radius: 2px;
}
@keyframes float {
  0%, 100% { transform: rotate(-2.5deg) translateY(0); }
  50% { transform: rotate(-2.5deg) translateY(-14px); }
}
/* Dynamic Island */
.phone-island {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 118px;
  height: 34px;
  background: #000;
  border-radius: 20px;
  z-index: 3;
  box-shadow: inset 0 0 0 1px rgba(244,238,225,.05);
}
.phone-screen {
  width: 100%;
  height: 100%;
  background: var(--bg);
  border-radius: 46px;
  overflow: hidden;
  position: relative;
}
/* Subtle screen reflection */
.phone-screen::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(244,238,225,.04) 0%, transparent 30%, transparent 70%, rgba(244,238,225,.02) 100%);
  pointer-events: none;
  z-index: 5;
  border-radius: 46px;
}
/* Home indicator */
.phone-home {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 134px;
  height: 5px;
  background: rgba(244,238,225,.5);
  border-radius: 10px;
  z-index: 4;
}

.p-statusbar {
  padding: 18px 28px 6px;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 700;
  color: var(--tx);
  letter-spacing: -.3px;
}
.p-statusbar-icons {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: var(--tx);
}

.p-topbar {
  padding: 28px 18px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
}
.p-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}
.p-logo-n {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  background: var(--s2);
  border: 1px solid var(--teal-brd);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  padding: 5px;
}
.p-logo-n svg { width: 100%; height: 100%; display: block; }
.p-logo-wm {
  font-family: var(--logo);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -.7px;
  color: var(--tx);
}
.p-logo-wm .dot { color: var(--teal-glow); }

.p-content {
  position: relative;
  height: 588px;
  overflow: hidden;
}
.p-screen {
  position: absolute;
  inset: 0;
  padding: 12px 16px 84px;
  opacity: 0;
  transform: translateY(12px) scale(.985);
  transition: opacity .7s ease, transform .7s ease;
  pointer-events: none;
}
.p-screen.is-active {
  opacity: 1;
  transform: none;
}

/* ── Rich food visualization — crispy gnocchi with brown butter & sage ── */
.p-hero-img {
  width: 100%;
  height: 120px;
  border-radius: 14px;
  margin-bottom: 12px;
  position: relative;
  overflow: hidden;
  background-image:
    linear-gradient(180deg, transparent 58%, rgba(19,23,22,.5) 100%),
    url('/images/dishes/spaghetti-pomodoro.webp');
  background-size: cover;
  background-position: center;
  filter: contrast(1.05) saturate(1.08) brightness(1.03) sepia(.04);
}
/* Individual gnocchi pieces — small golden pillows */
.p-hero-img::before {
  content: none;
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 14px 11px at 22% 45%, rgba(240,185,110,.9) 0%, rgba(200,140,75,.6) 60%, transparent 100%),
    radial-gradient(ellipse 15px 11px at 38% 52%, rgba(245,195,120,.95) 0%, rgba(210,150,80,.65) 60%, transparent 100%),
    radial-gradient(ellipse 13px 10px at 55% 42%, rgba(235,180,105,.85) 0%, rgba(195,135,70,.55) 60%, transparent 100%),
    radial-gradient(ellipse 14px 11px at 70% 55%, rgba(245,195,115,.9) 0%, rgba(205,145,75,.6) 60%, transparent 100%),
    radial-gradient(ellipse 13px 10px at 48% 68%, rgba(230,175,100,.8) 0%, rgba(190,130,65,.5) 60%, transparent 100%),
    radial-gradient(ellipse 12px 9px at 30% 72%, rgba(225,170,95,.8) 0%, rgba(185,125,60,.5) 60%, transparent 100%),
    radial-gradient(ellipse 14px 11px at 80% 40%, rgba(240,185,110,.85) 0%, rgba(200,140,75,.55) 60%, transparent 100%),
    radial-gradient(ellipse 11px 9px at 15% 60%, rgba(220,165,90,.75) 0%, rgba(180,120,55,.45) 60%, transparent 100%),
    /* Crispy sage leaf hints (green) */
    radial-gradient(ellipse 5px 9px at 42% 35%, rgba(120,145,85,.8) 0%, rgba(80,100,55,.5) 60%, transparent 100%),
    radial-gradient(ellipse 5px 8px at 65% 65%, rgba(130,155,90,.8) 0%, rgba(85,105,60,.5) 60%, transparent 100%),
    /* Parmesan dusting — cream specks */
    radial-gradient(circle 1.5px at 25% 50%, rgba(248,240,220,.95) 0%, transparent 100%),
    radial-gradient(circle 1.5px at 44% 60%, rgba(248,240,220,.9) 0%, transparent 100%),
    radial-gradient(circle 1px at 60% 48%, rgba(248,240,220,.85) 0%, transparent 100%),
    radial-gradient(circle 1.5px at 72% 62%, rgba(248,240,220,.9) 0%, transparent 100%),
    radial-gradient(circle 1px at 35% 38%, rgba(248,240,220,.8) 0%, transparent 100%),
    radial-gradient(circle 1.5px at 52% 72%, rgba(248,240,220,.85) 0%, transparent 100%);
  pointer-events: none;
}
/* Noise/grain overlay for realistic texture */
.p-hero-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><filter id='n'><feTurbulence baseFrequency='0.9' numOctaves='3'/><feColorMatrix values='0 0 0 0 0.15 0 0 0 0 0.05 0 0 0 0 0.02 0 0 0 0.3 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
  opacity: .35;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.p-tags {
  display: flex;
  gap: 6px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.p-tag {
  font-size: 10px;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: 100px;
}
.p-tag.tl {
  background: var(--teal-dim);
  color: var(--teal-glow);
  border: 1px solid var(--teal-brd);
}
.p-tag.sub {
  background: transparent;
  color: var(--t2);
  border: 1px solid var(--border-2);
}

.p-recipe-title {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  font-style: italic;
  font-variation-settings: "opsz" 72;
  color: var(--tx);
  line-height: 1.18;
  letter-spacing: -.3px;
  margin-bottom: 6px;
}

.p-meta {
  font-size: 11px;
  color: var(--t2);
  margin-bottom: 12px;
  display: flex;
  gap: 5px;
  align-items: center;
}

/* Ingredients panel inside phone */
.p-ing {
  background: var(--s1);
  border: 1px solid var(--border);
  border-radius: 11px;
  padding: 10px 12px;
  margin-bottom: 10px;
}
.p-ing-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--t3);
  margin-bottom: 8px;
}
.p-ing-head .pantry-pill {
  color: var(--teal-glow);
  background: var(--teal-dim);
  border: 1px solid var(--teal-brd);
  padding: 2px 7px;
  border-radius: 8px;
  font-size: 9px;
  letter-spacing: 1px;
}
.p-ing-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.p-ing-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11.5px;
  color: var(--t2);
  padding: 3px 0;
}
.p-ing-list li .name {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}
.p-ing-list li.have .name { color: var(--tx); }
.p-ing-list li .amt {
  color: var(--t3);
  font-size: 10.5px;
  font-weight: 600;
}
.p-ing-list li .check {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-ing-list li.have .check {
  background: var(--teal-dim);
  border: 1px solid var(--teal-brd);
  color: var(--teal-glow);
}
.p-ing-list li.need .check {
  background: var(--honey-dim);
  border: 1px solid var(--honey-brd);
  color: var(--honey);
}
.p-ing-list li .check svg { width: 8px; height: 8px; display: block; }

/* Kitchen gear row */
.p-gear {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.p-gear-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 9px;
  border-radius: 100px;
  background: var(--s1);
  border: 1px solid var(--border-2);
  font-size: 10.5px;
  font-weight: 600;
  color: var(--t2);
}
.p-gear-chip svg { width: 11px; height: 11px; color: var(--teal-glow); }

.p-cta {
  width: 100%;
  background: var(--teal);
  color: var(--bg);
  border: none;
  border-radius: 12px;
  padding: 12px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  box-shadow: 0 8px 20px -6px rgba(42,157,157,.55);
}

.p-toui-fab {
  position: absolute;
  bottom: 78px;
  right: 14px;
  padding: 9px 14px;
  border-radius: 100px;
  background: var(--teal);
  color: var(--bg);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 10px 24px -6px rgba(42,157,157,.65);
  z-index: 2;
}
.p-toui-fab::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bg);
  animation: pulse 1.8s ease-in-out infinite;
}

.p-bottom-nav {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(19,23,22,.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  padding: 8px 8px 20px;
  display: flex;
  justify-content: space-around;
}
.p-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  flex: 1;
  padding: 3px;
  font-size: 9px;
  font-weight: 600;
  color: var(--t3);
}
.p-nav-item .ic { font-size: 15px; }
.p-nav-item.on { color: var(--teal-glow); font-weight: 700; }

/* ── Animated app showcase: mode picker · macros · meal plan ── */
.p-screen-h {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  color: var(--t2);
  margin: 4px 2px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.p-prep {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .3px;
  color: var(--honey);
  background: var(--honey-dim);
  border: 1px solid var(--honey-brd);
  padding: 2px 8px;
  border-radius: 100px;
}
.p-macros {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
}
.p-macro {
  flex: 1;
  background: var(--s1);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px 3px;
  text-align: center;
}
.p-macro b {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--tx);
  letter-spacing: -.3px;
}
.p-macro:first-child b { color: var(--teal-glow); }
.p-macro span {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--t3);
}
.p-modes {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.p-mode {
  background: var(--s1);
  border: 1px solid var(--border);
  border-radius: 13px;
  padding: 13px 14px;
}
.p-mode b {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--tx);
  margin-bottom: 2px;
}
.p-mode span { font-size: 11px; color: var(--t3); }
.p-mode.is-on {
  border-color: var(--teal-brd);
  background: var(--teal-dim);
}
.p-mode.is-on b { color: var(--teal-glow); }
.p-week {
  display: flex;
  gap: 4px;
  margin-bottom: 14px;
}
.p-week span {
  flex: 1;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--t3);
  padding: 8px 0;
  border-radius: 8px;
  background: var(--s1);
  border: 1px solid var(--border);
}
.p-week span.on {
  color: var(--bg);
  background: var(--teal);
  border-color: var(--teal);
}
.p-meal {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--s1);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 11px 12px;
  margin-bottom: 8px;
}
.p-meal-ic { font-size: 17px; flex-shrink: 0; }
.p-meal-txt {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.p-meal-txt b {
  font-size: 8.5px;
  font-weight: 700;
  color: var(--t3);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.p-meal-txt span {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--tx);
}
.p-meal-cal { font-size: 11px; font-weight: 700; color: var(--t3); }
.p-meal.on { border-color: var(--teal-brd); }
.p-plan-note {
  text-align: center;
  font-size: 10.5px;
  color: var(--teal-glow);
  margin-top: 12px;
  font-weight: 600;
}
@media (prefers-reduced-motion: reduce) {
  .phone { animation: none; }
  .p-screen { transition: none; }
}
.p-nav-item.on .ic { color: var(--teal); }

/* Hero mobile */
@media (max-width: 900px) {
  .hero { padding: 48px 0 56px; }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  /* Center the stacked hero so it's symmetric with the centered phone */
  .hero-grid > div:first-child { text-align: center; }
  .hero-headline {
    font-size: 46px;
    letter-spacing: -1.2px;
  }
  .hero-sub {
    font-size: 17px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-cta-row { justify-content: center; }
  .hero-trust { justify-content: center; flex-wrap: wrap; }
  /* Stacked phone: straighten it, calm the float, and scale the whole
     device down via transform so the internal UI never clips. The wrap
     height is set to the scaled height so there's no dead space. */
  .phone-wrap { height: 596px; }
  .phone {
    animation: none;
    transform: scale(.85);
    transform-origin: top center;
    position: relative;
    z-index: 1;
  }
}
@media (max-width: 640px) {
  .phone-wrap { height: 506px; }
  .phone { transform: scale(.72); }
}
@media (max-width: 420px) {
  .hero-headline { font-size: 40px; }
  .phone-wrap { height: 472px; }
  .phone { transform: scale(.67); }
}

/* ══════════════════════════════════════
   ───────── SECTION: MINI PROOF BAR ─────────
══════════════════════════════════════ */
.proof-bar {
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--s1);
}
.proof-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  text-align: center;
}
.proof-star {
  color: var(--honey);
  letter-spacing: 1px;
  font-size: 14px;
}
.proof-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--t2);
  line-height: 1.5;
}
.proof-text strong { color: var(--tx); font-weight: 500; }
.proof-divider {
  width: 1px;
  height: 24px;
  background: var(--border-2);
}
@media (max-width: 700px) {
  .proof-divider { display: none; }
  .proof-bar-inner { gap: 16px; flex-direction: column; }
}

/* ══════════════════════════════════════
   ───────── SECTION: AGITATION ─────────
══════════════════════════════════════ */
.agitation {
  text-align: center;
  padding: 120px 0 6px;
  position: relative;
}
.agitation::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(42,157,157,.06) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}
.agitation-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}
.agitation h2 {
  font-family: var(--logo);
  font-size: 60px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--tx);
  margin-bottom: 32px;
}
.agitation p {
  font-family: var(--sans);
  font-size: 20px;
  line-height: 1.65;
  color: var(--t2);
  margin-bottom: 0;
}
.agitation p strong {
  color: var(--teal-glow);
  font-weight: 500;
  font-style: italic;
  font-family: var(--serif);
}
@media (max-width: 768px) {
  .agitation { padding: 80px 0 6px; }
  .agitation h2 { font-size: 40px; letter-spacing: -1px; }
  .agitation p { font-size: 17px; }
}

/* ══════════════════════════════════════
   ───────── SECTION HEADERS ─────────
══════════════════════════════════════ */
.section-header {
  text-align: center;
  margin-bottom: 56px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 24px;
}
.section-eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal-glow);
  margin-bottom: 20px;
}
/* Section titles use Syne 700 for scannability (like "Let's Cook" page titles per brand kit).
   Fraunces italic is reserved for the signature moments: hero, agitation, testimonial quotes, close. */
.section-title {
  font-family: var(--logo);
  font-size: 46px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -1.6px;
  color: var(--tx);
}
.section-title em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "opsz" 96;
  letter-spacing: -1.2px;
  color: var(--teal-glow);
}
.section-sub {
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.6;
  color: var(--t2);
  margin-top: 16px;
}
@media (max-width: 768px) {
  .section-title { font-size: 32px; letter-spacing: -1px; }
  .section-header { margin-bottom: 40px; }
}

/* ══════════════════════════════════════
   ───────── SECTION: HOW IT WORKS ─────────
══════════════════════════════════════ */
.how {
  padding: 26px 0 96px;
  position: relative;
}
/* soft teal "stage" glow lighting the How-it-works header — extends up behind the
   connector so the transition reads as one lit gradient, not a dark valley */
.how::before {
  content: '';
  position: absolute;
  top: -90px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  max-width: 96vw;
  height: 470px;
  background: radial-gradient(ellipse 56% 58% at 50% 42%, rgba(42,157,157,.11) 0%, rgba(42,157,157,.035) 44%, transparent 72%);
  pointer-events: none;
  z-index: 0;
}
.how > * { position: relative; z-index: 1; }
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.step {
  background: var(--s1);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: all .3s ease;
}
.step:hover {
  border-color: var(--teal-brd);
  transform: translateY(-3px);
  background: var(--s2);
}
.step::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(42,157,157,.06) 0%, transparent 60%);
  pointer-events: none;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--teal-dim);
  border: 1px solid var(--teal-brd);
  color: var(--teal-glow);
  font-family: var(--logo);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
}
.step-visual {
  width: 100%;
  height: 212px;
  margin-bottom: 24px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--s2);
  border: 1px solid var(--border);
}

.step-visual .sv-pantry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  width: 80%;
}
.step-visual .sv-pantry .chip {
  background: var(--s3);
  border: 1px solid var(--border-2);
  border-radius: 8px;
  padding: 8px 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--t2);
  text-align: center;
}
.step-visual .sv-pantry .chip.on {
  background: var(--teal-dim);
  border-color: var(--teal-brd);
  color: var(--teal-glow);
}

.step-visual .sv-gear {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 80%;
}
.step-visual .sv-gear .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  background: var(--s3);
  border-radius: 8px;
  font-size: 11px;
  font-weight: 600;
  color: var(--t2);
  border: 1px solid var(--border-2);
}
.step-visual .sv-gear .row.on {
  background: var(--teal-dim);
  border-color: var(--teal-brd);
  color: var(--teal-glow);
}
.step-visual .sv-gear .row .val {
  color: var(--tx);
  font-weight: 700;
}

.step-visual .sv-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 84%;
}
.step-visual .sv-stack .sv-pantry { width: 100%; }
.step-visual .sv-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  background: var(--s1);
  border: 1px solid var(--border-2);
  border-radius: 9px;
  padding: 8px 10px;
  font-size: 11px;
  font-weight: 500;
  color: var(--t2);
}
.step-visual .sv-mic {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--teal-dim);
  border: 1px solid var(--teal-brd);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}
.step-visual .sv-result {
  width: 84%;
  background: var(--s1);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.step-visual .sv-result-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.step-visual .sv-result-title {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  font-weight: 500;
  font-variation-settings: "opsz" 72;
  color: var(--tx);
  line-height: 1.1;
}
.step-visual .sv-result-badge {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .5px;
  color: var(--teal-glow);
  background: var(--teal-dim);
  border: 1px solid var(--teal-brd);
  border-radius: 100px;
  padding: 3px 8px;
  white-space: nowrap;
}
.step-visual .sv-macros { display: flex; gap: 6px; }
.step-visual .sv-macros span {
  flex: 1;
  text-align: center;
  background: var(--s3);
  border-radius: 7px;
  padding: 6px 2px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .3px;
  text-transform: uppercase;
  color: var(--t3);
}
.step-visual .sv-macros b {
  display: block;
  font-size: 13px;
  color: var(--tx);
  letter-spacing: -.3px;
}
.step-visual .sv-macros span:first-child b { color: var(--teal-glow); }
.step-visual .sv-cta {
  background: var(--teal);
  color: var(--bg);
  border-radius: 8px;
  padding: 7px;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
}

.step h3 {
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 800;
  color: var(--tx);
  line-height: 1.25;
  letter-spacing: -.4px;
  margin-bottom: 10px;
}
.step p {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.6;
  color: var(--t2);
}

@media (max-width: 860px) {
  .how-grid { grid-template-columns: 1fr; gap: 16px; }
  .how { padding: 26px 0 72px; }
}

/* ══════════════════════════════════════
   ───────── SECTION: BEFORE / AFTER ─────────
══════════════════════════════════════ */
.compare {
  padding: 96px 0;
  background: var(--s1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}
.compare-col {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
}
.compare-col.bad {
  border-left: 3px solid var(--clay);
}
.compare-col.good {
  border-left: 3px solid var(--teal);
}
.compare-col.good::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(42,157,157,.08) 0%, transparent 60%);
  pointer-events: none;
}

.compare-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 22px;
}
.compare-label.bad {
  color: var(--clay-lt);
  background: var(--clay-dim);
  border: 1px solid var(--clay-brd);
}
.compare-label.good {
  color: var(--teal-glow);
  background: var(--teal-dim);
  border: 1px solid var(--teal-brd);
}

.compare-h {
  font-family: var(--logo);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.6px;
  color: var(--tx);
  margin-bottom: 24px;
}

.compare-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.compare-list li {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.5;
  color: var(--t2);
  position: relative;
  padding-left: 30px;
}
.compare-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
}
.compare-list.bad li::before {
  background: var(--clay-dim);
  border: 1px solid var(--clay-brd);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23D0816A' stroke-width='3' stroke-linecap='round'><path d='M6 6l12 12M18 6L6 18'/></svg>");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}
.compare-list.good li::before {
  background: var(--teal-dim);
  border: 1px solid var(--teal-brd);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236FD0D0' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><path d='M5 12l5 5L20 7'/></svg>");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}
.compare-list strong {
  color: var(--tx);
  font-weight: 600;
}

@media (max-width: 820px) {
  .compare-grid { grid-template-columns: 1fr; }
  .compare { padding: 72px 0; }
  .compare-h { font-size: 22px; }
}

/* ══════════════════════════════════════
   ───────── SECTION: DIFFERENTIATORS ─────────
══════════════════════════════════════ */
.diff {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.diff::before {
  content: '';
  position: absolute;
  top: 40%;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(42,157,157,.06) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}
.diff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
.diff-card {
  background: var(--s1);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}
.diff-card:hover {
  background: var(--s2);
  border-color: var(--teal-brd);
  transform: translateY(-3px);
}
.diff-card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(42,157,157,.05) 0%, transparent 60%);
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s ease;
}
.diff-card:hover::before { opacity: 1; }

.diff-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--teal-dim);
  border: 1px solid var(--teal-brd);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-glow);
}

.diff-card h3 {
  font-family: var(--logo);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.6px;
  color: var(--tx);
}
.diff-card p {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--t2);
}
.diff-card p strong {
  color: var(--tx);
  font-weight: 600;
}

@media (max-width: 820px) {
  .diff-grid { grid-template-columns: 1fr; }
  .diff { padding: 80px 0; }
}

/* ══════════════════════════════════════
   ───────── SECTION: DISHES GALLERY ─────────
══════════════════════════════════════ */
.dishes {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.dishes::before {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(42,157,157,.06) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}
.dishes::after {
  content: '';
  position: absolute;
  top: 10%;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232,169,71,.03) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}
.dish-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
.dish-card {
  background: var(--s1);
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
  transition: all .35s cubic-bezier(.2,.9,.25,1.1);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.dish-card:hover {
  transform: translateY(-4px);
  border-color: var(--teal-brd);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.5), 0 0 0 1px var(--teal-brd);
}
.dish-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
  /* Apply brand food-photo treatment */
  filter: contrast(1.05) saturate(1.08) brightness(1.03) sepia(.04);
}
.dish-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><filter id='n'><feTurbulence baseFrequency='0.9' numOctaves='3'/><feColorMatrix values='0 0 0 0 0.15 0 0 0 0 0.05 0 0 0 0 0.02 0 0 0 0.3 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
  opacity: .35;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.dish-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(19,23,22,.5) 100%);
  pointer-events: none;
  z-index: 1;
}

/* When Daniel adds real images, replace each below with `background-image: url('/images/dishes/<filename>.jpg'); background-size: cover; background-position: center;` */

/* Dish 1 — Spaghetti Pomodoro with Garlic Bread &amp; Caesar */
.dish-1 {
  background-image: url('/images/dishes/spaghetti-pomodoro.webp');
  background-size: cover;
  background-position: center;
}
/* Dish 2 — Crispy-Skin Salmon with Lemon Butter (pink-orange + herbs) */
.dish-2 {
  background-image: url('/images/dishes/crispy-skin-salmon.webp');
  background-size: cover;
  background-position: center;
}
/* Dish 3 — Sheet-Pan Harissa Chicken Thighs with Honey Carrots (deep orange/rust) */
.dish-3 {
  background-image: url('/images/dishes/harissa-chicken.webp');
  background-size: cover;
  background-position: center;
}
/* Dish 4 — Creamy Lemon-Parmesan Chicken Pasta (cream/pale gold) */
.dish-4 {
  background-image: url('/images/dishes/lemon-parmesan-chicken-pasta.webp');
  background-size: cover;
  background-position: center;
}
/* Dish 5 — Cast-Iron Ribeye with Charred Broccolini (deep red/char) */
.dish-5 {
  background-image: url('/images/dishes/cast-iron-ribeye.webp');
  background-size: cover;
  background-position: center;
}
/* Dish 6 — Korean Beef Bowls with Crispy Rice & Quick Pickles (amber, sesame, green onion) */
.dish-6 {
  background-image: url('/images/dishes/korean-beef-bowls.webp');
  background-size: cover;
  background-position: center;
}

.dish-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.dish-tags {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.dish-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}
.dish-tag.tl {
  background: var(--teal-dim);
  color: var(--teal-glow);
  border: 1px solid var(--teal-brd);
}
.dish-tag.sub {
  background: transparent;
  color: var(--t3);
  border: 1px solid var(--border-2);
}
.dish-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  font-style: italic;
  font-variation-settings: "opsz" 72;
  line-height: 1.2;
  letter-spacing: -.4px;
  color: var(--tx);
  margin-bottom: 10px;
}
.dish-hook {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.5;
  color: var(--t2);
  margin-bottom: 16px;
  flex: 1;
}
.dish-hook em {
  color: var(--teal-glow);
  font-style: normal;
  font-weight: 600;
}
.dish-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--t3);
}
.dish-meta .sep { color: var(--t4); }

@media (max-width: 900px) {
  .dish-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .dishes { padding: 80px 0; }
}
@media (max-width: 600px) {
  .dish-grid { grid-template-columns: 1fr; }
  .dish-title { font-size: 20px; }
}

/* ══════════════════════════════════════
   ───────── SECTION: TESTIMONIALS ─────────
══════════════════════════════════════ */
.testimonials {
  padding: 96px 0;
  background: var(--s1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(42,157,157,.05) 0%, transparent 60%);
  pointer-events: none;
}

.testim-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
.testim {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.testim-stars {
  color: var(--honey);
  font-size: 16px;
  letter-spacing: 2px;
}

.testim-quote {
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.55;
  color: var(--tx);
  letter-spacing: -.2px;
}

.testim-person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.testim-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--logo);
  font-size: 16px;
  font-weight: 700;
  color: var(--bg);
}
.testim-avatar.a1 { background: linear-gradient(135deg, var(--teal), var(--teal-lt)); }
.testim-avatar.a2 { background: linear-gradient(135deg, var(--honey), #D48A2F); color: var(--bg); }
.testim-avatar.a3 { background: linear-gradient(135deg, var(--clay), var(--clay-lt)); color: var(--tx); }

.testim-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.testim-name {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  color: var(--tx);
}
.testim-meta {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--t3);
}

@media (max-width: 900px) {
  .testim-grid { grid-template-columns: 1fr; }
  .testimonials { padding: 72px 0; }
}

/* ══════════════════════════════════════
   ───────── SECTION: FAQ ─────────
══════════════════════════════════════ */
.faq {
  padding: 120px 0;
}
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: var(--s1);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all .25s ease;
}
.faq-item.open {
  background: var(--s2);
  border-color: var(--teal-brd);
}
.faq-q {
  width: 100%;
  padding: 22px 26px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 600;
  color: var(--tx);
  transition: color .2s ease;
}
.faq-q:hover { color: var(--teal-glow); }
.faq-chev {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--teal);
  transition: transform .25s ease;
}
.faq-item.open .faq-chev {
  transform: rotate(180deg);
  color: var(--teal-glow);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  padding: 0 26px;
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.65;
  color: var(--t2);
  transition: max-height .3s ease, padding .3s ease;
}
.faq-item.open .faq-a {
  padding: 0 26px 22px;
  max-height: 300px;
}

@media (max-width: 768px) {
  .faq { padding: 80px 0; }
  .faq-q { font-size: 15px; padding: 18px 22px; }
  .faq-a { font-size: 14px; }
}

/* ══════════════════════════════════════
   ───────── SECTION: PRICING ─────────
══════════════════════════════════════ */
.pricing {
  padding: 96px 0 120px;
  background: var(--s1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 1100px) {
  .price-grid { grid-template-columns: repeat(2, 1fr); max-width: 640px; }
}
.price-note {
  text-align: center;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--t3);
  margin: 34px auto 0;
  max-width: 1200px;
  padding: 0 24px;
}
.price-note a { color: var(--teal-glow); font-weight: 600; }
.price-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  transition: all .3s ease;
}
.price-card.featured {
  border-color: var(--teal);
  background: var(--s2);
  transform: translateY(-8px);
  box-shadow:
    0 30px 60px -20px rgba(0,0,0,.5),
    0 0 0 1px var(--teal-brd),
    0 20px 40px -10px rgba(42,157,157,.2);
}
.price-ribbon {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: var(--bg);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 8px 20px -4px rgba(42,157,157,.5);
}

.price-name {
  font-family: var(--logo);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -.5px;
  color: var(--tx);
}
.price-desc {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--t2);
  line-height: 1.5;
}

.price-amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.price-num {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 400;
  font-style: italic;
  color: var(--tx);
  line-height: 1;
  letter-spacing: -1.5px;
}
.price-suffix {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--t3);
  font-weight: 500;
}

.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  flex: 1;
}
.price-features li {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.45;
  color: var(--t2);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.price-features li::before {
  content: '';
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 3px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232A9D9D' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><path d='M5 12l5 5L20 7'/></svg>");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.price-cta {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  padding: 14px 20px;
  border-radius: 12px;
  border: 1px solid var(--border-2);
  background: transparent;
  color: var(--tx);
  cursor: pointer;
  transition: all .2s ease;
  text-align: center;
  display: block;
}
.price-cta:hover {
  background: var(--s2);
  border-color: var(--teal-brd);
}
.price-card.featured .price-cta {
  background: var(--teal);
  color: var(--bg);
  border-color: var(--teal);
  box-shadow: 0 12px 28px -8px rgba(42,157,157,.6);
}
.price-card.featured .price-cta:hover {
  background: var(--teal-lt);
  border-color: var(--teal-lt);
  transform: translateY(-1px);
}

@media (max-width: 900px) {
  .price-grid { grid-template-columns: 1fr; gap: 14px; }
  .price-card.featured { transform: none; }
}

/* ══════════════════════════════════════
   ───────── SECTION: FINAL CLOSE ─────────
══════════════════════════════════════ */
.close {
  padding: 140px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.close::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(42,157,157,.09) 0%, transparent 55%);
  pointer-events: none;
}
.close-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
.close h2 {
  font-family: var(--serif);
  font-size: 68px;
  font-weight: 500;
  font-style: italic;
  font-variation-settings: "opsz" 144;
  line-height: 1.05;
  letter-spacing: -1.8px;
  color: var(--tx);
  margin-bottom: 28px;
}
.close h2 .accent { color: var(--teal-glow); }
.close p {
  font-family: var(--sans);
  font-size: 19px;
  line-height: 1.55;
  color: var(--t2);
  margin-bottom: 40px;
}
.close-cta {
  margin-bottom: 20px;
}
.close-micro {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--t3);
}
.close-marquee {
  margin-top: 64px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.close-marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marquee 48s linear infinite;
}
.close-marquee img {
  width: 232px;
  height: 155px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--border);
  filter: contrast(1.05) saturate(1.08) brightness(1.03) sepia(.04);
  flex-shrink: 0;
}
.close-marquee:hover .close-marquee-track { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .close-marquee-track { animation: none; }
}
@media (max-width: 768px) {
  .close { padding: 96px 0; }
  .close h2 { font-size: 42px; letter-spacing: -1px; }
  .close p { font-size: 17px; }
}

/* ══════════════════════════════════════
   ───────── FOOTER ─────────
══════════════════════════════════════ */
.footer {
  padding: 56px 0 40px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-links {
  display: flex;
  gap: 28px;
  list-style: none;
  flex-wrap: wrap;
}
.footer-links a {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--t2);
  transition: color .2s ease;
}
.footer-links a:hover { color: var(--teal-glow); }
.footer-inner { display: block; }
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 56px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--border);
}
.footer-brand { max-width: 360px; }
.footer-brand .logo { margin-bottom: 18px; }
.footer-tag {
  font-family: var(--sans);
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--t2);
  margin-bottom: 22px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid var(--border-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--t2);
  transition: all .2s ease;
}
.footer-social a:hover {
  color: var(--teal-glow);
  border-color: var(--teal-brd);
  background: var(--teal-dim);
}
.footer-social svg { width: 18px; height: 18px; }
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-col h4 {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--t3);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-family: var(--sans);
  font-size: 14.5px;
  color: var(--t2);
  margin-bottom: 12px;
  transition: color .2s ease;
}
.footer-col a:hover { color: var(--teal-glow); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 26px;
  flex-wrap: wrap;
}
.footer-bottom .footer-copy {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--t3);
}
.footer-made { font-family: var(--sans); font-size: 13px; color: var(--t3); }
.footer-made a { color: var(--t2); }
.footer-made a:hover { color: var(--teal-glow); }
@media (max-width: 820px) {
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 520px) {
  .footer-cols { grid-template-columns: 1fr 1fr; }
}
.footer-copy {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--t3);
  width: 100%;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  text-align: center;
}

/* ══════════════════════════════════════
   ───────── STICKY MOBILE CTA ─────────
══════════════════════════════════════ */
.mcta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px 16px calc(14px + env(safe-area-inset-bottom));
  background: rgba(19,23,22,.92);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-top: 1px solid var(--border-2);
  z-index: 99;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity .3s ease, transform .3s ease;
}
.mcta.show {
  opacity: 1;
  transform: translateY(0);
}
.mcta .btn {
  width: 100%;
  font-size: 15px;
  padding: 16px;
}
@media (max-width: 900px) {
  .mcta { display: block; }
}

/* ══════════════════════════════════════
   ───────── SCROLL REVEAL ─────────
══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2,.9,.25,1.1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }
.reveal-delay-4 { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.in {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .phone { animation: none; }
}

/* ══════════════════════════════════════
   SUB-PAGES — shared hero, CTA band, helpers
   (used by /pricing, /how-it-works, /faq)
══════════════════════════════════════ */
.page-hero {
  position: relative;
  padding: 84px 0 52px;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 860px;
  height: 600px;
  background: radial-gradient(ellipse 50% 55% at 50% 50%, rgba(42,157,157,.16) 0%, rgba(42,157,157,.045) 46%, transparent 72%);
  pointer-events: none;
  z-index: 0;
}
.page-hero > * { position: relative; z-index: 1; }
.page-hero .section-header { margin-bottom: 0; }
.page-hero-cta { margin-top: 34px; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.page-hero-micro { font-size: 13px; letter-spacing: .3px; color: var(--t3); }
@media (max-width: 768px) { .page-hero { padding: 44px 0 36px; } }

/* active nav link */
.nav-links a[aria-current="page"] { color: var(--tx); }
.m-links a[aria-current="page"] span { color: var(--teal-glow); }

/* generic sub-page content section */
.page-section { padding: 72px 0; }
.page-section.tight { padding: 44px 0; }
@media (max-width: 768px) { .page-section { padding: 52px 0; } }

/* lead paragraph */
.page-lead {
  max-width: 620px;
  margin: 0 auto 44px;
  text-align: center;
  font-size: 17px;
  line-height: 1.65;
  color: var(--t2);
  padding: 0 24px;
}

/* ── "what's included" checklist (pricing) ── */
.included {
  max-width: 920px;
  margin: 0 auto;
  padding: 38px 34px;
  background: var(--s1);
  border: 1px solid var(--border);
  border-radius: 22px;
}
.included-h {
  text-align: center;
  font-family: var(--logo);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -.4px;
  color: var(--tx);
  margin-bottom: 26px;
}
.included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px 30px;
}
.included-item {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 15px;
  line-height: 1.45;
  color: var(--t2);
}
.included-item .ic {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  border-radius: 50%;
  background: var(--teal-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-glow);
}
.included-item .ic svg { width: 12px; height: 12px; }
.included-item strong { color: var(--tx); font-weight: 600; }
@media (max-width: 760px) { .included-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .included { padding: 28px 22px; } .included-grid { grid-template-columns: 1fr; } }

/* ── bottom CTA band (sub-pages) ── */
.page-cta {
  position: relative;
  text-align: center;
  padding: 92px 24px 104px;
  margin-top: 28px;
  border-top: 1px solid var(--border);
  overflow: hidden;
}
.page-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 80% at 50% 118%, rgba(42,157,157,.14), transparent 70%);
  pointer-events: none;
}
.page-cta-inner { position: relative; z-index: 1; max-width: 660px; margin: 0 auto; }
.page-cta h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(30px, 4.6vw, 48px);
  line-height: 1.08;
  letter-spacing: -1px;
  color: var(--tx);
}
.page-cta h2 .accent { color: var(--teal-glow); font-style: italic; }
.page-cta p { color: var(--t2); font-size: 17px; line-height: 1.6; margin: 18px auto 30px; max-width: 500px; }
.page-cta-micro { margin-top: 20px; font-size: 13px; letter-spacing: .3px; color: var(--t3); }

/* ── FAQ page: category label ── */
.faq-group-label {
  max-width: 780px;
  margin: 52px auto 16px;
  padding: 0 24px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--teal-glow);
}
.faq-group-label.first { margin-top: 0; }

/* ── how-it-works: mode tag ── */
.mode-tag {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--teal-glow);
  margin-bottom: 10px;
}

/* ══════════════════════════════════════
   FOOD IMAGERY — step-3 recipe card, food marquees, more dish cards
══════════════════════════════════════ */

/* Step 3 (homepage + how-it-works): a real recipe card over a real food photo */
.step-visual.has-photo {
  background-size: cover;
  background-position: center;
  overflow: hidden;
  align-items: flex-end;
  padding: 12px;
}
.step-visual.has-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(19,23,22,0) 0%, rgba(19,23,22,.1) 36%, rgba(19,23,22,.7) 100%);
  pointer-events: none;
}
.step-visual.has-photo .sv-result {
  position: relative;
  z-index: 1;
  width: 100%;
  background: rgba(16,19,18,.58);
  backdrop-filter: blur(12px) saturate(1.3);
  -webkit-backdrop-filter: blur(12px) saturate(1.3);
  border-color: rgba(244,238,225,.14);
}

/* Full-width auto-scrolling food strip (sub-page CTAs) */
.food-marquee {
  overflow: hidden;
  position: relative;
  margin: 6px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.food-marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marquee 64s linear infinite;
}
.food-marquee img {
  width: 216px;
  height: 144px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--border);
  filter: contrast(1.05) saturate(1.08) brightness(1.03) sepia(.04);
  flex-shrink: 0;
}
.food-marquee:hover .food-marquee-track { animation-play-state: paused; }
.page-cta.with-marquee { border-top: none; padding-top: 56px; }
@media (prefers-reduced-motion: reduce) { .food-marquee-track { animation: none; } }
@media (max-width: 768px) {
  .food-marquee img { width: 168px; height: 112px; }
}

/* Additional dish-card photos (homepage gallery, dishes 7–9) */
.dish-7 { background-image: url('/images/dishes/margherita-pizza.webp'); background-size: cover; background-position: center; }
.dish-8 { background-image: url('/images/dishes/smash-burger.webp'); background-size: cover; background-position: center; }
.dish-9 { background-image: url('/images/dishes/butter-chicken.webp'); background-size: cover; background-position: center; }

/* close-marquee when used as a top divider inside .close */
.close .close-marquee { margin-top: 0; margin-bottom: 60px; }

/* ══════════════════════════════════════
   SHOWCASE — alternating image + text feature rows
   (food photos w/ floating app-UI chips; used across pages)
══════════════════════════════════════ */
.showcase { padding: 24px 0; }
.showcase-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
  padding: 46px 24px;
}
.showcase-row.reverse .showcase-media { order: 2; }
.showcase-media { position: relative; }
.showcase-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid var(--border-2);
  box-shadow: 0 50px 90px -40px rgba(0,0,0,.7);
  filter: contrast(1.05) saturate(1.08) brightness(1.03) sepia(.04);
  display: block;
}
.showcase-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 9px;
  background: rgba(16,19,18,.72);
  backdrop-filter: blur(14px) saturate(1.3);
  -webkit-backdrop-filter: blur(14px) saturate(1.3);
  border: 1px solid rgba(244,238,225,.14);
  border-radius: 14px;
  padding: 9px 13px;
  font-size: 13px;
  font-weight: 600;
  color: var(--tx);
  box-shadow: 0 16px 30px -12px rgba(0,0,0,.55);
  white-space: nowrap;
}
.showcase-chip.tl { top: 16px; left: 16px; color: var(--teal-glow); }
.showcase-chip.br { bottom: 16px; right: 16px; gap: 15px; }
.showcase-chip.bl { bottom: 16px; left: 16px; }
.showcase-chip b { color: var(--teal-glow); font-family: var(--logo); font-weight: 700; }
.showcase-chip .stars { color: var(--honey); letter-spacing: 1px; }
.showcase-eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal-glow);
  margin-bottom: 16px;
}
.showcase-text h3 {
  font-family: var(--logo);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -1px;
  color: var(--tx);
  margin-bottom: 15px;
}
.showcase-text h3 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "opsz" 72;
  color: var(--teal-glow);
}
.showcase-text p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--t2);
  margin-bottom: 20px;
}
.showcase-list { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.showcase-list li {
  position: relative;
  padding-left: 30px;
  font-size: 15.5px;
  line-height: 1.45;
  color: var(--t2);
}
.showcase-list li strong { color: var(--tx); font-weight: 600; }
.showcase-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 1px;
  width: 19px; height: 19px;
  border-radius: 50%;
  background-color: var(--teal-dim);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236FD0D0' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='5 12 10 17 20 7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}
@media (max-width: 880px) {
  .showcase-row { grid-template-columns: 1fr; gap: 30px; padding: 34px 24px; }
  .showcase-row.reverse .showcase-media { order: 0; }
  .showcase-text h3 { font-size: 27px; }
}

/* ══════════════════════════════════════
   AGITATION — "mental spiral" of rejected dinner ideas
══════════════════════════════════════ */
.spiral {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin: 42px auto 38px;
  min-height: 196px;
}
.spiral-line {
  position: relative;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(19px, 2.6vw, 27px);
  line-height: 1.2;
  letter-spacing: -.3px;
  color: var(--t3);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .45s ease, transform .55s cubic-bezier(.2,.9,.25,1.1), color .4s ease;
}
.spiral-line.show { opacity: 1; transform: translateY(0); color: var(--tx); }
.spiral-line.struck { color: var(--t4); }
.spiral-line.struck::after {
  content: '';
  position: absolute;
  left: -4%;
  top: 56%;
  width: 108%;
  height: 2px;
  background: var(--clay-lt);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  animation: spiral-strike .34s cubic-bezier(.5,0,.2,1) forwards;
}
@keyframes spiral-strike { to { transform: scaleX(1); } }
.spiral-line.is-takeout {
  font-family: var(--sans);
  font-style: normal;
  font-weight: 600;
  font-size: clamp(18px, 2.4vw, 25px);
}
.spiral-line.is-takeout.show { color: var(--clay-lt); }
@media (prefers-reduced-motion: reduce) {
  .spiral-line { transition: none; }
  .spiral-line.struck::after { animation: none; transform: scaleX(1); }
}
@media (max-width: 600px) {
  .spiral { gap: 12px; min-height: 172px; }
}

/* ══════════════════════════════════════
   SECTION PIVOT — connector from the pain into the "how it works" stage
══════════════════════════════════════ */
.pivot {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 18px;
}
.pivot-line {
  position: relative;
  width: 2px;
  height: 156px;
  border-radius: 2px;
  background: linear-gradient(to bottom, rgba(42,157,157,.32) 0%, rgba(42,157,157,.46) 55%, rgba(111,208,208,.62) 100%);
  overflow: hidden;
}
.pivot-line::after {
  content: '';
  position: absolute;
  left: -1px;
  right: -1px;
  top: 0;
  height: 44px;
  background: linear-gradient(to bottom, transparent, var(--teal-glow));
  transform: translateY(-44px);
  animation: pivot-flow 2.6s cubic-bezier(.45,0,.55,1) infinite;
}
@keyframes pivot-flow {
  0%   { transform: translateY(-44px); opacity: 0; }
  20%  { opacity: 1; }
  85%  { opacity: 1; }
  100% { transform: translateY(156px); opacity: 0; }
}
.pivot-dot {
  width: 8px;
  height: 8px;
  margin-top: 5px;
  border-radius: 50%;
  background: var(--teal-glow);
  box-shadow: 0 0 12px 2px rgba(111,208,208,.5);
  animation: pivot-pulse 2.4s ease-in-out infinite;
}
@keyframes pivot-pulse {
  0%,100% { transform: scale(1); opacity: .85; box-shadow: 0 0 10px 1px rgba(111,208,208,.4); }
  50%     { transform: scale(1.3); opacity: 1; box-shadow: 0 0 16px 3px rgba(111,208,208,.6); }
}
@media (prefers-reduced-motion: reduce) {
  .pivot-line::after { animation: none; opacity: 0; }
  .pivot-dot { animation: none; }
}
