/* ════════════════════════════════════════════════════════════════
   Yummy Starts — Marketing Website
   Design system: "The Nurturing Atelier" (mirrors src/theme/variables.css)
   ════════════════════════════════════════════════════════════════ */

:root {
  /* Brand palette */
  --ys-green: #8EC37E;
  --ys-green-deep: #7DB36D;
  --ys-green-soft: #DCEDD5;
  --ys-peach: #FFA08B;
  --ys-peach-deep: #E08A76;
  --ys-peach-soft: #FFE3DB;
  --ys-blue: #96BAE8;
  --ys-blue-soft: #DFE9F8;
  --ys-purple: #7F61A7;
  --ys-purple-soft: #E9E1F4;
  --ys-yellow: #F7C873;
  --ys-yellow-soft: #FCEBC9;

  /* Surfaces */
  --ys-cream: #FCF6ED;
  --ys-card: #FFFFFF;
  --ys-surface: #FFF8F0;
  --ys-surface-2: #F5EDE3;
  --ys-chip: #EDE5DB;

  /* Text */
  --ys-ink: #49454C;
  --ys-ink-2: #6B6570;
  --ys-ink-3: #9E9A9F;

  /* Shape & shadow */
  --r-card: 24px;
  --r-hero: 32px;
  --r-pill: 9999px;
  --shadow-sm: 0 2px 8px rgba(73, 69, 76, 0.06);
  --shadow-md: 0 10px 30px rgba(73, 69, 76, 0.10);
  --shadow-lg: 0 24px 60px rgba(73, 69, 76, 0.14);

  --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --container: 1180px;

  /* Food category pastels (mirrors the app) */
  --ys-food-fruit: #FFE4B5;
  --ys-food-vegetable: #C8E6C9;
  --ys-food-grain: #E8E0D5;
  --ys-food-protein: #FFD5CC;
  --ys-food-dairy: #FFF3DC;
  --ys-food-nuts: #F0E6D8;
  --ys-food-herbs: #D4ECD5;
  --ys-food-fungi: #E8DDD0;
  --ys-food-other: #DFE9F8;
}

/* ── Reset ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  background: var(--ys-cream);
  color: var(--ys-ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }
button { font-family: inherit; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: clamp(64px, 9vw, 110px) 0; position: relative; }

/* ── Typography ────────────────────────────────────────────────── */
.display {
  font-size: clamp(38px, 5.4vw, 64px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
}
.h2 {
  font-size: clamp(28px, 3.6vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.h3 { font-size: 20px; font-weight: 700; letter-spacing: -0.01em; }
.lead {
  font-size: clamp(17px, 1.8vw, 20px);
  color: var(--ys-ink-2);
  line-height: 1.65;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ys-green-deep);
  background: var(--ys-green-soft);
  padding: 8px 16px;
  border-radius: var(--r-pill);
}
.eyebrow.peach { color: var(--ys-peach-deep); background: var(--ys-peach-soft); }
.eyebrow.blue { color: #5B82BC; background: var(--ys-blue-soft); }
.eyebrow.purple { color: var(--ys-purple); background: var(--ys-purple-soft); }
.eyebrow.yellow { color: #B8862F; background: var(--ys-yellow-soft); }

.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head .eyebrow { margin-bottom: 18px; }
.section-head .h2 { margin-bottom: 16px; }

/* Word highlight (hand-drawn underline feel) */
.hl { position: relative; white-space: nowrap; }
.hl::after {
  content: '';
  position: absolute;
  left: -2%;
  bottom: 0.04em;
  width: 104%;
  height: 0.32em;
  background: var(--ys-peach-soft);
  border-radius: 8px;
  z-index: -1;
}
.hl.green::after { background: var(--ys-green-soft); }
.hl.yellow::after { background: var(--ys-yellow-soft); }
.hl.blue::after { background: var(--ys-blue-soft); }

/* ── Buttons ───────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: var(--r-pill);
  border: none;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.btn-primary {
  background: var(--ys-peach);
  color: #fff;
  box-shadow: 0 10px 24px rgba(255, 160, 139, 0.45);
}
.btn-primary:hover { background: var(--ys-peach-deep); transform: translateY(-2px); }
.btn-secondary {
  background: transparent;
  color: var(--ys-ink);
  border: 2px solid var(--ys-surface-2);
}
.btn-secondary:hover { border-color: var(--ys-green); color: var(--ys-green-deep); transform: translateY(-2px); }
.btn-green {
  background: var(--ys-green);
  color: #fff;
  box-shadow: 0 10px 24px rgba(142, 195, 126, 0.4);
}
.btn-green:hover { background: var(--ys-green-deep); transform: translateY(-2px); }

/* Apple App Store badge */
.appstore-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #1D1B20;
  color: #fff;
  border-radius: 14px;
  padding: 10px 22px 10px 18px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  box-shadow: 0 8px 20px rgba(29, 27, 32, 0.25);
}
.appstore-badge:hover { transform: translateY(-2px); box-shadow: 0 14px 28px rgba(29, 27, 32, 0.3); }
.appstore-badge svg { width: 26px; height: 31px; flex-shrink: 0; }
.appstore-badge .txt { display: flex; flex-direction: column; line-height: 1.15; text-align: left; }
.appstore-badge .txt small { font-size: 11px; font-weight: 500; opacity: 0.85; }
.appstore-badge .txt strong { font-size: 19px; font-weight: 600; letter-spacing: -0.01em; }

/* ── Nav ───────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(252, 246, 237, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(141, 170, 145, 0.15);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 76px;
}
.nav-logo img { height: 34px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ys-ink-2);
}
.nav-links a { transition: color 0.15s ease; }
.nav-links a:hover, .nav-links a.active { color: var(--ys-green-deep); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-cta .btn { padding: 12px 24px; font-size: 15px; }

.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}
.nav-burger span {
  display: block;
  height: 2.5px;
  border-radius: 2px;
  background: var(--ys-ink);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav.open .nav-burger span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav.open .nav-burger span:nth-child(2) { opacity: 0; }
.nav.open .nav-burger span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 24px 28px;
  border-top: 1px solid rgba(141, 170, 145, 0.15);
}
.nav-mobile a {
  padding: 14px 4px;
  font-size: 17px;
  font-weight: 600;
  color: var(--ys-ink);
  border-bottom: 1px solid rgba(141, 170, 145, 0.12);
}
.nav-mobile .btn { margin-top: 18px; }
.nav.open .nav-mobile { display: flex; }

/* ── Hero ──────────────────────────────────────────────────────── */
.hero { padding: clamp(48px, 7vw, 96px) 0 clamp(56px, 8vw, 104px); overflow: visible; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
.hero-copy .eyebrow { margin-bottom: 22px; }
.hero-copy .display { margin-bottom: 22px; }
.hero-copy .lead { margin-bottom: 34px; max-width: 520px; }
.hero-ctas { display: flex; align-items: center; flex-wrap: wrap; gap: 18px; margin-bottom: 30px; }
.hero-proof { display: flex; align-items: center; gap: 14px; color: var(--ys-ink-2); font-size: 14px; font-weight: 600; }
.hero-proof .stars { color: #F2B33D; font-size: 16px; letter-spacing: 2px; }
.hero-proof .avatars { display: flex; }
.hero-proof .avatars span {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 2.5px solid var(--ys-cream);
  margin-left: -10px;
  background-size: cover;
  background-position: top center;
  background-color: var(--ys-surface-2);
}
.hero-proof .avatars span:first-child { margin-left: 0; }

.hero-visual { position: relative; }
.hero-img-card {
  border-radius: var(--r-hero);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: rotate(1.2deg);
}
.hero-img-card img { width: 100%; height: 100%; object-fit: cover; }

.float-chip {
  position: absolute;
  background: var(--ys-card);
  border-radius: 18px;
  box-shadow: var(--shadow-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13.5px;
  font-weight: 700;
  animation: floaty 5.2s ease-in-out infinite;
}
.float-chip small { display: block; font-size: 11.5px; font-weight: 600; color: var(--ys-ink-3); }
.float-chip .dot {
  width: 38px; height: 38px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 19px;
  flex-shrink: 0;
}
.chip-foods { top: -22px; left: -18px; animation-delay: 0.6s; }
.chip-foods .dot { background: var(--ys-green-soft); }
.chip-allergen { bottom: 38px; left: -34px; }
.chip-allergen .dot { background: var(--ys-yellow-soft); }
.chip-recipe { bottom: -20px; right: 22px; animation-delay: 1.4s; }
.chip-recipe .dot { background: var(--ys-peach-soft); }

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}
@media (prefers-reduced-motion: reduce) {
  .float-chip { animation: none; }
  html { scroll-behavior: auto; }
}

/* Decorative blobs */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.55;
  pointer-events: none;
  z-index: -1;
}
.blob-green { background: var(--ys-green-soft); width: 420px; height: 420px; top: -120px; right: -120px; }
.blob-peach { background: var(--ys-peach-soft); width: 380px; height: 380px; bottom: -100px; left: -140px; }

/* ── Trust badges strip ────────────────────────────────────────── */
.badges-strip { padding: 0 0 clamp(56px, 7vw, 88px); }
.badges-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.badge-card {
  background: var(--ys-card);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  padding: 22px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.badge-card .ico {
  width: 46px; height: 46px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.badge-card p { font-size: 14px; font-weight: 700; line-height: 1.35; }
.badge-card p small { display: block; font-weight: 600; color: var(--ys-ink-3); font-size: 12.5px; }

/* ── Feature cards ─────────────────────────────────────────────── */
.features { background: var(--ys-card); border-radius: 56px 56px 0 0; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--ys-surface);
  border-radius: var(--r-card);
  padding: 30px 28px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.feature-card .ico {
  width: 56px; height: 56px;
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
}
.feature-card .h3 { margin-bottom: 10px; }
.feature-card p { font-size: 15px; color: var(--ys-ink-2); }
.ico.green { background: var(--ys-green-soft); }
.ico.peach { background: var(--ys-peach-soft); }
.ico.blue { background: var(--ys-blue-soft); }
.ico.purple { background: var(--ys-purple-soft); }
.ico.yellow { background: var(--ys-yellow-soft); }
.ico.chip { background: var(--ys-chip); }

/* ── Phone screenshots ─────────────────────────────────────────── */
.screens { background: var(--ys-card); padding-top: 0; }
.screens-row {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: clamp(16px, 2.4vw, 34px);
  flex-wrap: wrap;
}
.phone {
  width: clamp(196px, 17.5vw, 246px);
  border-radius: 40px;
  border: 9px solid #2E2A30;
  background: #2E2A30;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
  transition: transform 0.25s ease;
}
.phone::before {
  content: '';
  position: absolute;
  top: 9px; left: 50%;
  transform: translateX(-50%);
  width: 38%; height: 19px;
  background: #2E2A30;
  border-radius: 0 0 14px 14px;
  z-index: 2;
}
.phone img { width: 100%; display: block; border-radius: 30px; }
.phone-tilt-l { transform: rotate(-4deg) translateY(16px); }
.phone-tilt-r { transform: rotate(4deg) translateY(16px); }
.phone:hover { transform: translateY(-8px) rotate(0); }
.screen-caption {
  text-align: center;
  margin-top: 22px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ys-ink-2);
}

/* ── How it works ──────────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  counter-reset: step;
}
.step-card { text-align: center; padding: 0 12px; }
.step-card .num {
  width: 64px; height: 64px;
  margin: 0 auto 20px;
  border-radius: 22px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  box-shadow: var(--shadow-md);
}
.step-card:nth-child(1) .num { background: var(--ys-green); transform: rotate(-4deg); }
.step-card:nth-child(2) .num { background: var(--ys-peach); transform: rotate(3deg); }
.step-card:nth-child(3) .num { background: var(--ys-blue); transform: rotate(-3deg); }
.step-card .h3 { margin-bottom: 10px; }
.step-card p { font-size: 15px; color: var(--ys-ink-2); }

/* ── Split sections (image + copy) ─────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}
.split-img {
  border-radius: var(--r-hero);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.split-img img { width: 100%; height: 100%; object-fit: cover; }
.split-copy .eyebrow { margin-bottom: 18px; }
.split-copy .h2 { margin-bottom: 18px; }
.split-copy .lead { margin-bottom: 26px; font-size: 17px; }
.split.flip .split-img { order: 2; }
.split.flip .split-copy { order: 1; }

.check-list li {
  display: flex;
  gap: 14px;
  padding: 10px 0;
  font-size: 16px;
  font-weight: 600;
  align-items: flex-start;
}
.check-list li::before {
  content: '✓';
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 9px;
  background: var(--ys-green-soft);
  color: var(--ys-green-deep);
  font-weight: 800;
  font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.check-list li span { color: var(--ys-ink-2); font-weight: 500; }
.check-list li b { color: var(--ys-ink); }

/* Age pills row */
.age-pills { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
.age-pill {
  background: var(--ys-card);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 700;
}
.age-pill small { display: block; color: var(--ys-ink-3); font-weight: 600; font-size: 12px; }

/* ── Infographic gallery ───────────────────────────────────────── */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.gallery a {
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.gallery a:hover { transform: translateY(-6px) scale(1.01); box-shadow: var(--shadow-md); }

/* ── Experts ───────────────────────────────────────────────────── */
.experts { background: var(--ys-card); }
.experts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.expert-card {
  background: var(--ys-surface);
  border-radius: var(--r-card);
  overflow: hidden;
  text-align: center;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.expert-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.expert-photo {
  height: 290px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.expert-photo::before {
  content: '';
  position: absolute;
  bottom: -130px;
  width: 320px; height: 320px;
  border-radius: 50%;
}
.expert-card:nth-child(3n+1) .expert-photo::before { background: var(--ys-green-soft); }
.expert-card:nth-child(3n+2) .expert-photo::before { background: var(--ys-peach-soft); }
.expert-card:nth-child(3n+3) .expert-photo::before { background: var(--ys-blue-soft); }
.expert-photo img {
  position: relative;
  height: 256px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(73, 69, 76, 0.18));
}
.expert-meta { padding: 22px 24px 28px; }
.expert-meta .h3 { margin-bottom: 4px; }
.expert-meta .creds {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ys-green-deep);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.expert-meta p { font-size: 14.5px; color: var(--ys-ink-2); }

/* Expert detail rows (experts.html) */
.expert-row {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  background: var(--ys-card);
  border-radius: var(--r-hero);
  box-shadow: var(--shadow-sm);
  padding: clamp(24px, 3vw, 44px);
  margin-bottom: 28px;
}
.expert-row .expert-photo { height: 320px; border-radius: var(--r-card); }
.expert-row .expert-photo::before { width: 300px; height: 300px; bottom: -110px; }
.expert-row:nth-child(odd) .expert-photo::before { background: var(--ys-green-soft); }
.expert-row:nth-child(even) .expert-photo::before { background: var(--ys-peach-soft); }
.expert-row .quote {
  font-size: 16.5px;
  color: var(--ys-ink-2);
  border-left: 4px solid var(--ys-peach-soft);
  padding-left: 18px;
  margin-top: 18px;
  font-style: italic;
}
.expert-row .creds-line {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ys-green-deep);
  margin: 6px 0 14px;
}
.expert-row p.bio { font-size: 16px; color: var(--ys-ink-2); }

/* ── Testimonials ──────────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.t-card {
  background: var(--ys-card);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-sm);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.t-card .stars { color: #F2B33D; font-size: 17px; letter-spacing: 3px; }
.t-card p { font-size: 15.5px; color: var(--ys-ink-2); flex: 1; }
.t-card .who { display: flex; align-items: center; gap: 12px; font-size: 14px; font-weight: 700; }
.t-card .who span {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px;
  font-weight: 800;
  color: #fff;
}
.t-card .who small { display: block; color: var(--ys-ink-3); font-weight: 600; }

/* ── FAQ ───────────────────────────────────────────────────────── */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  background: var(--ys-card);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 14px;
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  font-size: 16.5px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 24px;
  font-weight: 600;
  color: var(--ys-peach-deep);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 26px 24px; font-size: 15.5px; color: var(--ys-ink-2); }

/* ── Final CTA ─────────────────────────────────────────────────── */
.cta-final { padding-bottom: clamp(80px, 10vw, 130px); }
.cta-box {
  background: linear-gradient(135deg, var(--ys-green) 0%, var(--ys-green-deep) 100%);
  border-radius: 40px;
  padding: clamp(48px, 7vw, 84px) clamp(28px, 6vw, 80px);
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-box::before, .cta-box::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}
.cta-box::before { width: 320px; height: 320px; top: -160px; left: -100px; }
.cta-box::after { width: 260px; height: 260px; bottom: -130px; right: -70px; }
.cta-box .app-icon {
  width: 88px; height: 88px;
  border-radius: 24px;
  margin: 0 auto 26px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}
.cta-box .h2 { color: #fff; margin-bottom: 14px; }
.cta-box .lead { color: rgba(255, 255, 255, 0.92); max-width: 540px; margin: 0 auto 34px; }
.cta-box .hero-ctas { justify-content: center; margin-bottom: 0; }

/* ── Footer ────────────────────────────────────────────────────── */
.footer {
  background: #FFF;
  border-top: 1px solid rgba(141, 170, 145, 0.16);
  padding: 56px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 44px;
}
.footer-brand img { height: 30px; width: auto; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; color: var(--ys-ink-2); max-width: 280px; }
.footer h4 {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ys-ink-3);
  margin-bottom: 16px;
}
.footer ul li { margin-bottom: 10px; }
.footer ul a { font-size: 14.5px; font-weight: 600; color: var(--ys-ink-2); transition: color 0.15s; }
.footer ul a:hover { color: var(--ys-green-deep); }
.footer-bottom {
  border-top: 1px solid rgba(141, 170, 145, 0.14);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--ys-ink-3);
}
.footer-bottom .made { display: flex; align-items: center; gap: 6px; }

/* ── Page hero (subpages) ──────────────────────────────────────── */
.page-hero { padding: clamp(48px, 6vw, 84px) 0 clamp(40px, 5vw, 64px); text-align: center; }
.page-hero .eyebrow { margin-bottom: 20px; }
.page-hero .display { font-size: clamp(34px, 4.6vw, 56px); margin-bottom: 18px; }
.page-hero .lead { max-width: 680px; margin: 0 auto; }

.banner-img {
  border-radius: var(--r-hero);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-top: 48px;
}
.banner-img img { width: 100%; max-height: 460px; object-fit: cover; }

/* Stats row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 52px;
}
.stat-card {
  background: var(--ys-card);
  border-radius: 22px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  padding: 28px 16px;
}
.stat-card .num {
  font-size: clamp(30px, 3.4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.02em;
  display: block;
  margin-bottom: 4px;
}
.stat-card:nth-child(1) .num { color: var(--ys-green-deep); }
.stat-card:nth-child(2) .num { color: var(--ys-peach-deep); }
.stat-card:nth-child(3) .num { color: #5B82BC; }
.stat-card:nth-child(4) .num { color: var(--ys-purple); }
.stat-card p { font-size: 14px; font-weight: 600; color: var(--ys-ink-2); }

/* Category chips cloud */
.cat-cloud { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.cat-chip {
  padding: 12px 22px;
  border-radius: var(--r-pill);
  font-size: 15px;
  font-weight: 700;
  background: var(--ys-card);
  box-shadow: var(--shadow-sm);
}
.cat-chip span { margin-right: 8px; }

/* Recipe cards */
.recipes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.recipe-card {
  background: var(--ys-card);
  border-radius: var(--r-card);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.recipe-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.recipe-card img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.recipe-card .meta { padding: 16px 18px 20px; }
.recipe-card .meta .age {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--ys-green-deep);
  background: var(--ys-green-soft);
  border-radius: var(--r-pill);
  padding: 4px 10px;
  margin-bottom: 10px;
}
.recipe-card .meta .h3 { font-size: 16px; line-height: 1.3; }

/* Tag cloud for recipe filters */
.tag-row { display: flex; flex-wrap: wrap; gap: 10px; }
.tag {
  font-size: 13.5px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: var(--r-pill);
  background: var(--ys-chip);
  color: var(--ys-ink-2);
}
.tag.on { background: var(--ys-green); color: #fff; }

/* ── Icons ─────────────────────────────────────────────────────── */
.icn { width: 24px; height: 24px; display: block; }
.ico.green { color: var(--ys-green-deep); }
.ico.peach { color: var(--ys-peach-deep); }
.ico.blue { color: #5B82BC; }
.ico.purple { color: var(--ys-purple); }
.ico.yellow { color: #B8862F; }
.ico.chip { color: var(--ys-ink-2); }
.badge-card .ico .icn { width: 22px; height: 22px; }
.float-chip .dot .icn { width: 19px; height: 19px; }
.chip-foods .dot { color: var(--ys-green-deep); }
.chip-allergen .dot { color: #B8862F; }
.chip-recipe .dot { color: var(--ys-peach-deep); }
.callout .ico { margin-top: 2px; }
.callout .ico .icn { width: 22px; height: 22px; }
.reviewed-badge .icn { width: 14px; height: 14px; }
.made .icn { width: 15px; height: 15px; display: inline-block; vertical-align: -2px; color: var(--ys-peach-deep); }
.cat-chip .cdot {
  width: 12px; height: 12px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 10px;
  vertical-align: -1px;
  border: 1px solid rgba(73, 69, 76, 0.08);
}

/* ── Blog ──────────────────────────────────────────────────────── */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.post-card {
  background: var(--ys-card);
  border-radius: var(--r-card);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.post-card .thumb { aspect-ratio: 16 / 10; overflow: hidden; }
.post-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.post-card:hover .thumb img { transform: scale(1.04); }
.post-card .body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.post-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--r-pill);
  background: var(--ys-green-soft);
  color: var(--ys-green-deep);
}
.post-tag.peach { background: var(--ys-peach-soft); color: var(--ys-peach-deep); }
.post-tag.blue { background: var(--ys-blue-soft); color: #5B82BC; }
.post-tag.yellow { background: var(--ys-yellow-soft); color: #B8862F; }
.post-tag.purple { background: var(--ys-purple-soft); color: var(--ys-purple); }
.post-card h3 { font-size: 19px; font-weight: 700; line-height: 1.3; letter-spacing: -0.01em; }
.post-card .excerpt { font-size: 14.5px; color: var(--ys-ink-2); flex: 1; }
.post-byline { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 700; }
.post-byline .ava {
  width: 36px; height: 36px;
  border-radius: 50%;
  background-size: 220%;
  background-position: top center;
  background-color: var(--ys-surface-2);
  flex-shrink: 0;
}
.post-byline small { display: block; color: var(--ys-ink-3); font-weight: 600; }

/* Featured post (blog index) */
.post-featured {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  background: var(--ys-card);
  border-radius: var(--r-hero);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 48px;
}
.post-featured .thumb { min-height: 340px; }
.post-featured .thumb img { width: 100%; height: 100%; object-fit: cover; }
.post-featured .body { padding: clamp(26px, 3.4vw, 48px); display: flex; flex-direction: column; gap: 16px; justify-content: center; }
.post-featured h2 { font-size: clamp(24px, 2.6vw, 34px); font-weight: 800; line-height: 1.2; letter-spacing: -0.02em; }
.post-featured .excerpt { font-size: 16px; color: var(--ys-ink-2); }

/* Article page */
.article-head { max-width: 760px; margin: 0 auto; text-align: center; padding: clamp(40px, 5vw, 64px) 0 36px; }
.article-head .post-tag { align-self: center; margin-bottom: 18px; }
.article-head h1 { font-size: clamp(30px, 4.2vw, 48px); font-weight: 800; line-height: 1.12; letter-spacing: -0.025em; margin-bottom: 18px; }
.article-head .standfirst { font-size: clamp(16px, 1.7vw, 19px); color: var(--ys-ink-2); line-height: 1.6; }
.article-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
  font-size: 13.5px;
  color: var(--ys-ink-3);
  font-weight: 600;
}
.article-meta .post-byline { font-size: 14px; }
.article-hero {
  max-width: 920px;
  margin: 0 auto;
  border-radius: var(--r-hero);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.article-hero img { width: 100%; display: block; }

.prose { max-width: 720px; margin: 0 auto; padding: clamp(40px, 5vw, 56px) 0 24px; }
.prose p { margin: 0 0 22px; font-size: 17px; line-height: 1.75; color: #56515B; }
.prose h2 { font-size: 26px; font-weight: 800; letter-spacing: -0.015em; margin: 42px 0 16px; }
.prose h3 { font-size: 20px; font-weight: 700; margin: 32px 0 12px; }
.prose ul, .prose ol { margin: 0 0 22px; padding-left: 24px; }
.prose ul { list-style: disc; }
.prose li { margin-bottom: 10px; font-size: 17px; line-height: 1.7; color: #56515B; }
.prose li::marker { color: var(--ys-green); }
.prose strong { color: var(--ys-ink); }
.prose a { color: var(--ys-green-deep); font-weight: 700; }
.prose img { border-radius: 20px; box-shadow: var(--shadow-sm); margin: 8px 0 26px; }
.prose blockquote {
  margin: 30px 0;
  padding: 22px 26px;
  background: var(--ys-surface);
  border-left: 4px solid var(--ys-peach);
  border-radius: 0 18px 18px 0;
  font-size: 16.5px;
  font-style: italic;
  color: var(--ys-ink-2);
}
.prose blockquote p { margin: 0; }
.callout {
  display: flex;
  gap: 14px;
  background: var(--ys-green-soft);
  border-radius: 18px;
  padding: 20px 22px;
  margin: 0 0 26px;
  font-size: 15.5px;
  line-height: 1.6;
  color: #4A5B47;
}
.callout.peach { background: var(--ys-peach-soft); color: #6E4A40; }
.callout .ico { font-size: 22px; flex-shrink: 0; }
.disclaimer {
  max-width: 720px;
  margin: 12px auto 0;
  padding: 18px 22px;
  border: 1.5px dashed rgba(141, 170, 145, 0.45);
  border-radius: 16px;
  font-size: 13.5px;
  color: var(--ys-ink-3);
  line-height: 1.6;
}
.article-cta {
  max-width: 720px;
  margin: 40px auto 0;
  background: linear-gradient(135deg, var(--ys-green) 0%, var(--ys-green-deep) 100%);
  border-radius: 26px;
  padding: 30px 32px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.article-cta .app-icon { width: 60px; height: 60px; border-radius: 16px; flex-shrink: 0; }
.article-cta .txt { flex: 1; min-width: 220px; }
.article-cta .txt strong { display: block; font-size: 18px; margin-bottom: 4px; }
.article-cta .txt span { font-size: 14.5px; opacity: 0.92; }
.article-cta .btn { background: #fff; color: var(--ys-green-deep); padding: 13px 26px; font-size: 15px; }
.reviewed-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ys-blue-soft);
  color: #5B82BC;
  font-size: 12.5px;
  font-weight: 700;
  border-radius: var(--r-pill);
  padding: 6px 14px;
}

/* ── Reveal animations ─────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ── Responsive ────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .features-grid, .experts-grid, .testimonials-grid, .posts-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery, .recipes-grid { grid-template-columns: repeat(2, 1fr); }
  .badges-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 880px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-copy .lead { margin-left: auto; margin-right: auto; }
  .hero-ctas, .hero-proof { justify-content: center; }
  .hero-visual { max-width: 560px; margin: 0 auto; }
  .chip-allergen { left: -10px; }
  .chip-foods { left: -6px; }
  .split, .split.flip { grid-template-columns: 1fr; }
  .split.flip .split-img { order: 0; }
  .post-featured { grid-template-columns: 1fr; }
  .post-featured .thumb { min-height: 240px; }
  .steps-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; gap: 40px; }
  .expert-row { grid-template-columns: 1fr; }
  .expert-row .expert-photo { max-width: 360px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .features-grid, .experts-grid, .testimonials-grid, .recipes-grid, .posts-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; gap: 14px; }
  .badges-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .badge-card { flex-direction: column; text-align: center; gap: 10px; padding: 18px 12px; }
  .phone { width: min(68vw, 240px); }
  .phone-tilt-l, .phone-tilt-r { transform: none; }
  .float-chip { padding: 9px 12px; font-size: 12px; border-radius: 14px; }
  .float-chip .dot { width: 30px; height: 30px; font-size: 15px; border-radius: 9px; }
  .chip-allergen { bottom: 18px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .stats-row { gap: 12px; }
}
