/* ════════════════════════════════════════════════════════════════
   Yummy Bites: marketing homepage (redesign 2026-08)
   World: the category standard, one committed green. seed 30f8da16
   Loaded ONLY by the EN homepage; locale pages keep css/style.css
   until they are migrated.
   ════════════════════════════════════════════════════════════════ */

/* ── Fonts (Supreme, Fontshare/ITF, self-hosted per FFL) ───────── */
@font-face {
  font-family: 'Supreme';
  src: url('/fonts/Supreme-Regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Supreme';
  src: url('/fonts/Supreme-Italic.woff2') format('woff2');
  font-weight: 400; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'Supreme';
  src: url('/fonts/Supreme-Medium.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Supreme';
  src: url('/fonts/Supreme-Bold.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Supreme';
  src: url('/fonts/Supreme-Extrabold.woff2') format('woff2');
  font-weight: 800; font-style: normal; font-display: swap;
}

/* ── Tokens (sampled from approved comp canon-green-a) ─────────── */
:root {
  --g: #567F4B;          /* action green, AA on white */
  --g-deep: #46693D;     /* hover / pressed */
  --g-ink: #2E4527;      /* green-dark text on tints  */
  --g-soft: #EEF3E9;     /* tinted band ground        */
  --g-line: #D9E4D2;     /* hairlines on tinted ground*/
  --sage-ink: #55604F;     /* secondary text on sage ground */
  --ink: #22262A;
  --ink-2: #4C564E;      /* secondary, green-tinted   */
  --line: #E6E9E4;
  --bg: #FEFEFE;
  --font: 'Supreme', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --container: 1180px;
  --r: 16px;
  --shadow: 0 12px 32px rgba(34, 38, 42, 0.10);
}

/* ── Reset & base ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
section[id] { scroll-margin-top: 84px; }
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p, figure, blockquote { margin: 0; }
button { font-family: inherit; }

::selection { background: var(--g-soft); color: var(--g-ink); }
:focus-visible { outline: 2px solid var(--g); outline-offset: 3px; border-radius: 4px; }
html { caret-color: var(--g); scrollbar-color: #B9C6B1 transparent; }

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

/* ── Type scale ────────────────────────────────────────────────── */
.h1 {
  font-size: clamp(40px, 5.9vw, 84px);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: -0.02em;
}
.h2 {
  font-size: clamp(30px, 3.4vw, 44px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.015em;
  text-wrap: balance;
}
.h3 { font-size: 19px; font-weight: 700; letter-spacing: -0.01em; }
.lead { font-size: clamp(17px, 1.6vw, 19px); color: var(--ink-2); max-width: 62ch; }

/* ── Buttons ───────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 10px;
  border: 0;
  cursor: pointer;
  transition: background-color 160ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 160ms cubic-bezier(0.22, 1, 0.36, 1);
}
.btn:active { transform: translateY(1px); }
.btn-green { background: var(--g); color: #fff; }
.btn-green:hover { background: var(--g-deep); }
.btn-white { background: #fff; color: var(--g-ink); }
.btn-white:hover { background: var(--g-soft); }
.btn-hero {
  font-size: 18px;
  padding: 18px 40px;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(86, 127, 75, 0.35);
  transition: background-color 180ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 180ms cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 180ms cubic-bezier(0.22, 1, 0.36, 1);
}
.btn-hero svg { width: 18px; height: 13px; transition: transform 180ms cubic-bezier(0.22, 1, 0.36, 1); }
.btn-hero:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(86, 127, 75, 0.42); }
.btn-hero:hover svg { transform: translateX(3px); }
.btn-hero:active { transform: translateY(0); }

/* ── Nav ───────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(254, 254, 254, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 68px;
}
.nav-logo img { height: 36px; width: auto; }
.nav-links {
  display: flex;
  gap: 26px;
  margin-left: auto;
  font-size: 15.5px;
  font-weight: 500;
  color: var(--ink-2);
}
.nav-links a { position: relative; padding: 6px 0; transition: color 140ms ease-out; }
.nav-links a:hover { color: var(--ink); }
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%; bottom: 0;
  height: 2px;
  background: var(--g);
  transition: right 180ms cubic-bezier(0.22, 1, 0.36, 1);
}
.nav-links a:hover::after { right: 0; }

.lang-picker { position: relative; font-size: 14px; font-weight: 700; color: var(--ink-2); }
.lang-picker summary {
  list-style: none;
  cursor: pointer;
  padding: 9px 16px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.lang-picker .flag, .lang-mobile .flag { font-size: 15px; line-height: 1; }
.lang-picker summary::-webkit-details-marker { display: none; }
.lang-picker summary::after { content: ''; width: 8px; height: 8px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg) translateY(-2px); }
.lang-picker summary:hover { background: var(--g-soft); color: var(--g-ink); }
.lang-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 8px;
  min-width: 200px;
  max-height: 60vh;
  overflow: auto;
  display: grid;
}
.lang-menu a { padding: 8px 12px; border-radius: 8px; font-size: 14.5px; }
.lang-menu a:hover { background: var(--g-soft); color: var(--g-ink); }
.lang-menu a.current { color: var(--g-ink); font-weight: 700; }

.nav-cta { margin-left: 4px; }
.nav-cta .btn { padding: 11px 24px; font-size: 15px; border-radius: 999px; }

.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: none; border: 0; cursor: pointer;
  padding: 10px;
}
.nav-burger span { display: block; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 200ms cubic-bezier(0.22, 1, 0.36, 1), opacity 150ms ease-out; }
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 24px 24px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.nav-mobile.open { display: flex; }
.nav-mobile > a { padding: 12px 4px; font-weight: 500; color: var(--ink-2); border-bottom: 1px solid var(--line); }
.nav-mobile .btn { margin-top: 14px; }
.lang-mobile { display: flex; flex-wrap: wrap; gap: 6px; padding-top: 16px; }
.lang-mobile a { font-size: 13px; font-weight: 700; padding: 7px 11px; border: 1px solid var(--line); border-radius: 999px; color: var(--ink-2); }
.lang-mobile a.current { background: var(--g-soft); border-color: var(--g-line); color: var(--g-ink); }

/* ── Hero ──────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: min(86vh, 780px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--g-soft);
  padding: 0;
}
.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(254, 254, 254, 0.9) 0%,
    rgba(254, 254, 254, 0.78) 32%,
    rgba(254, 254, 254, 0.4) 56%,
    rgba(254, 254, 254, 0) 74%);
}
.hero-inner { position: relative; width: 100%; padding-top: 96px; padding-bottom: 96px; }
.hero-copy { max-width: 880px; }
.hero-copy .lead { margin-top: 22px; max-width: 54ch; }
.hero-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 20px; margin-top: 34px; }

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 30px;
  margin-top: 30px;
  font-size: 16px;
  color: var(--ink-2);
}
.hero-stats span { display: inline-flex; align-items: baseline; gap: 7px; }
.hero-stats b {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--g);
  font-variant-numeric: tabular-nums;
}

/* single authored motion moment: the hero settles in once */
.hero-copy > * { opacity: 0; transform: translateY(14px); }
.hero.is-ready .hero-copy > * {
  animation: hero-rise 700ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero.is-ready .hero-copy > *:nth-child(2) { animation-delay: 90ms; }
.hero.is-ready .hero-copy > *:nth-child(3) { animation-delay: 180ms; }
@keyframes hero-rise { to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  .hero-copy > * { opacity: 1; transform: none; animation: none !important; }
  html { scroll-behavior: auto; }
}

/* ── Trust band: experts + stats ───────────────────────────────── */
.trust { border-bottom: 1px solid var(--line); }
.trust-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  padding-top: 34px;
  padding-bottom: 34px;
}
.experts { display: flex; flex-wrap: wrap; gap: 16px 26px; }
.expert {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  width: 122px;
}
.expert img {
  width: 92px; height: 92px;
  border-radius: 50%;
  background: var(--g-soft);
  object-fit: cover;
}
.expert b { display: block; font-size: 13.5px; font-weight: 700; line-height: 1.25; }
.expert small { display: block; font-size: 11.5px; color: var(--ink-2); line-height: 1.35; }

.trust .trust-inner { grid-template-columns: 1fr; justify-items: center; }
.quiz-card {
  display: flex;
  align-items: center;
  gap: 22px;
  background: var(--g-soft);
  border: 1px solid var(--g-line);
  border-radius: 18px;
  padding: 22px 26px;
  max-width: 560px;
  width: 100%;
  transition: transform 180ms cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 180ms cubic-bezier(0.22, 1, 0.36, 1);
}
.quiz-card:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(86, 127, 75, 0.18); }
.quiz-copy b { display: block; font-size: 17px; font-weight: 800; letter-spacing: -0.01em; color: var(--g-ink); line-height: 1.25; }
.quiz-copy small { display: block; margin-top: 6px; font-size: 13px; line-height: 1.45; color: var(--sage-ink); }
.quiz-arrow {
  flex: none;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--g);
  color: #fff;
  display: grid;
  place-items: center;
  transition: background-color 160ms ease-out, transform 180ms cubic-bezier(0.22, 1, 0.36, 1);
}
.quiz-arrow svg { width: 18px; height: 13px; }
.quiz-card:hover .quiz-arrow { background: var(--g-deep); transform: translateX(3px); }

/* ── Sections ──────────────────────────────────────────────────── */
section { padding: clamp(72px, 8vw, 112px) 0; }
.section-head { max-width: 640px; margin-bottom: 52px; }
.section-head .lead { margin-top: 16px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* Everything you need: bento of equal boxes + photo tile */
.everything { background: var(--g-soft); }
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
.split-img img { border-radius: var(--r); box-shadow: var(--shadow); }
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: 20px;
}
.bento-photo {
  grid-column: 3;
  grid-row: 1 / span 3;
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.bento-photo img { width: 100%; height: 100%; object-fit: cover; }
.f-card {
  background: #fff;
  border: 1px solid var(--g-line);
  border-radius: var(--r);
  padding: 24px;
}
.f-card .f-ico {
  display: inline-grid;
  place-items: center;
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--g-soft);
  margin-bottom: 14px;
}
.f-card .icn { width: 22px; height: 22px; color: var(--g); stroke: currentColor; fill: none; }
.f-card b { display: block; font-size: 16px; font-weight: 700; }
.f-card > span:last-child { display: block; margin-top: 6px; font-size: 14.5px; color: var(--ink-2); line-height: 1.5; }

/* one hover grammar for every box on the page */
.f-card, .age-pill, .t-card, .phone, .bento-photo {
  transition: transform 200ms cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 200ms cubic-bezier(0.22, 1, 0.36, 1);
}
.f-card:hover, .age-pill:hover, .t-card:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(34, 38, 42, 0.10); }
.phone:hover, .bento-photo:hover { transform: translateY(-4px); box-shadow: 0 18px 38px rgba(34, 38, 42, 0.14); }

/* How it works: three steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4vw, 56px);
  text-align: center;
}
.step p { margin-top: 10px; font-size: 15.5px; color: var(--ink-2); line-height: 1.55; }
.step-num {
  display: inline-grid;
  place-items: center;
  width: 52px; height: 52px;
  border-radius: 16px;
  background: var(--g-soft);
  color: var(--g-ink);
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 18px;
}

/* First bites to family meals */
.age-pills { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.age-pill {
  display: block;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 18px;
  box-shadow: 0 4px 14px rgba(34, 38, 42, 0.05);
}
.age-pill b { display: block; font-size: 16px; font-weight: 800; color: var(--g-ink); }
.age-pill small { font-size: 13px; color: var(--ink-2); }

/* How-to-serve gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.gallery a {
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 200ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 200ms ease-out;
}
.gallery a:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.gallery-note { margin-top: 22px; font-size: 14.5px; color: var(--ink-2); }
.gallery-note a { color: var(--g-ink); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

/* Allergens split */
.allergens .check-list { margin-top: 30px; display: grid; gap: 16px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; }
.check-list .icn { width: 20px; height: 20px; flex: none; margin-top: 4px; color: var(--g); stroke: currentColor; fill: none; }
.check-list b { font-weight: 700; }
.check-list span { color: var(--ink-2); }
.allergens .btn { margin-top: 34px; }

/* App peek */
.peek { background: var(--g-soft); }
.screens-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  align-items: start;
}
.phone {
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid var(--g-line);
  box-shadow: var(--shadow);
  background: #fff;
}
.screen-caption { text-align: center; margin-top: 14px; font-size: 14.5px; font-weight: 500; color: var(--sage-ink); }

/* Testimonials */
.testimonials { background: var(--g-soft); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.6vw, 36px);
}
.t-card {
  background: #fff;
  border-radius: var(--r);
  padding: 30px 28px;
  box-shadow: 0 10px 28px rgba(34, 38, 42, 0.07);
  display: flex;
  flex-direction: column;
}
.t-card .stars { display: flex; gap: 4px; margin-bottom: 18px; }
.t-card .stars svg { width: 18px; height: 18px; fill: #E9A13B; }
.t-card p { font-size: 16.5px; line-height: 1.6; font-weight: 500; flex: 1; }
.t-card footer { display: flex; align-items: center; gap: 10px; margin-top: 22px; font-size: 14px; color: var(--ink-2); }
.t-card footer b { color: var(--ink); font-weight: 700; }
.t-card .ava {
  display: inline-grid;
  place-items: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--g);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  flex: none;
}

/* FAQ */
.faq-list { max-width: 760px; margin: 0 auto; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 22px 4px;
  font-size: 17.5px;
  font-weight: 700;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '';
  flex: none;
  width: 10px; height: 10px;
  border-right: 2px solid var(--g);
  border-bottom: 2px solid var(--g);
  transform: rotate(45deg);
  transition: transform 200ms cubic-bezier(0.22, 1, 0.36, 1);
}
.faq-item[open] summary::after { transform: rotate(225deg) translate(-2px, -2px); }
.faq-body { padding: 0 4px 24px; color: var(--ink-2); max-width: 68ch; }

.peek-cta { text-align: center; margin-top: 44px; }

/* Final CTA: the committed green moment */
.cta-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: var(--g);
  color: #fff;
  padding: clamp(64px, 7vw, 96px) 24px;
}
.cta-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
  opacity: 0.16;
  filter: saturate(0.6);
  mix-blend-mode: luminosity;
}
.cta-box { position: relative; max-width: 640px; margin: 0 auto; text-align: center; }
.cta-box .h2 { color: #fff; }
.cta-box .lead { color: #DCE8D5; margin: 18px auto 0; }
.cta-box .btn { margin-top: 34px; }
.cta-box .app-icon {
  width: 68px; height: 68px;
  border-radius: 17px;
  margin: 0 auto 26px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22);
}

/* ── Footer ────────────────────────────────────────────────────── */
.footer { border-top: 1px solid var(--line); padding: 64px 0 40px; font-size: 14.5px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
}
.footer-brand img { height: 34px; width: auto; margin-bottom: 16px; }
.footer-brand p { color: var(--ink-2); max-width: 40ch; }
.footer h3 { font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-2); margin-bottom: 16px; }
.footer ul { display: grid; gap: 10px; }
.footer ul a { color: var(--ink-2); }
.footer ul a:hover { color: var(--g-ink); text-decoration: underline; text-underline-offset: 3px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--ink-2);
  font-size: 13.5px;
}
.footer-bottom .icn { width: 13px; height: 13px; color: var(--g); fill: currentColor; stroke: none; vertical-align: -2px; }

/* ── Responsive ────────────────────────────────────────────────── */
@media (max-width: 1020px) {
  .nav-links, .nav-cta, .nav .lang-picker { display: none; }
  .nav-burger { display: flex; }
  .trust .trust-inner { grid-template-columns: 1fr; gap: 24px; }
  .quiz-card { max-width: none; }
  .gallery, .screens-row { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: 36px; }
  .bento { grid-template-columns: 1fr 1fr; grid-auto-rows: auto; }
  .bento-photo { grid-column: 1 / -1; grid-row: auto; aspect-ratio: 16 / 7; }
}
@media (max-width: 760px) {
  .hero { min-height: 0; display: block; background: var(--bg); }
  .hero-media, .hero-scrim { position: static; }
  .hero-scrim { display: none; }
  .hero-media {
    aspect-ratio: 4 / 3.4;
    height: auto;
    object-position: center;
    -webkit-mask-image: linear-gradient(180deg, #000 48%, rgba(0,0,0,0.55) 72%, transparent 94%);
    mask-image: linear-gradient(180deg, #000 48%, rgba(0,0,0,0.55) 72%, transparent 94%);
  }
  .hero-inner { position: relative; margin-top: -64px; padding-top: 0; padding-bottom: 8px; }
  .experts { justify-content: center; }

  /* centered mobile register */
  .hero-copy { text-align: center; }
  .hero-actions { align-items: center; }
  .hero-stats { gap: 8px 22px; justify-content: center; }
  .section-head { text-align: center; margin-left: auto; margin-right: auto; }
  .section-head .lead { margin-left: auto; margin-right: auto; }
  .allergens h2, .family h2 { text-align: center; }
  .allergens .lead, .family .lead { text-align: center; margin-left: auto; margin-right: auto; }
  .check-list { max-width: 420px; margin-left: auto; margin-right: auto; text-align: left; }
  .age-pills { justify-content: center; }
  .f-card { text-align: center; }
  .f-card .f-ico { margin-left: auto; margin-right: auto; }
  .gallery-note { text-align: center; }
  section .btn-green { display: flex; width: max-content; margin-left: auto; margin-right: auto; }
  .quiz-card { justify-content: center; text-align: left; }
  .hero-copy { max-width: none; }
  .split { grid-template-columns: 1fr; }
  .feature-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .stats { flex-wrap: wrap; gap: 18px 0; }
}
@media (max-width: 480px) {
  .gallery, .screens-row { grid-template-columns: 1fr; }
  .bento { grid-template-columns: 1fr; }
  .bento-photo { aspect-ratio: 4 / 3; }
  .hero-actions { gap: 14px; }
}
