/* =========================================================================
   Tazizi office landing page — shared stylesheet (v2, editorial redesign)
   Poppins (UI/body) + Fraunces (display serif). Mobile-first 360 -> 1440.
   Form-first hero, marquee menu, photo band, footer with watermark.
   ========================================================================= */

/* Metric-matched fallback: sized to Poppins so the swap causes ~zero reflow. */
@font-face {
  font-family: "Poppins Fallback";
  src: local("Arial");
  ascent-override: 92%;
  descent-override: 31%;
  line-gap-override: 9%;
  size-adjust: 112%;
}
/* Serif fallback while Fraunces loads (Georgia is metric-close enough for headings). */
@font-face {
  font-family: "Fraunces Fallback";
  src: local("Georgia");
  size-adjust: 103%;
}

:root {
  /* Palette (brand book) */
  --jungle-green: #099358;   /* brand green: decorative accents, icons */
  --green-cta:    #08834D;   /* interactive green: buttons, small green text (AA-safe) */
  --green-ink:    #056a3d;   /* link hover / active green */
  --deep-forest:  #1C382C;   /* headings, dark sections, body text */
  --lemon-tint:   #F8FEC2;   /* accent chips, ticks on dark */
  --white:        #FFFFFF;
  --black:        #000000;

  /* Derived washes (green-cream family only) */
  --off-white:    #F4F8F5;
  --cream:        #FBFDF2;   /* form card */
  --cream-line:   #E9EFD2;
  --mint-wash:    #EAF4EC;
  --line:         #E2ECE5;
  --hairline:     rgba(28, 56, 44, 0.12);

  --ink:          var(--deep-forest);
  --muted:        #4A5B52;

  /* Shape + depth: soft, single-direction, restrained */
  --r-sm: 12px;
  --r:    16px;
  --r-lg: 24px;
  --shadow-sm: 0 4px 14px rgba(28, 56, 44, 0.07);
  --shadow-md: 0 16px 40px rgba(28, 56, 44, 0.13);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --container: 1160px;
  --pad: 20px;

  --font: "Poppins", "Poppins Fallback", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: "Fraunces", "Fraunces Fallback", Georgia, "Times New Roman", serif;
}

/* --------------------------- reset / base --------------------------- */
*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, picture, svg { max-width: 100%; display: block; }
h1, h2, h3 { color: var(--deep-forest); line-height: 1.12; margin: 0 0 .5em; }
h1, h2 { font-family: var(--font-display); font-weight: 560; letter-spacing: -0.015em; }
h3 { font-weight: 600; }
p { margin: 0 0 1rem; }
a { color: var(--green-ink); }
ul, ol { margin: 0; padding: 0; }
li { list-style: none; }
button { font-family: inherit; }

:focus-visible { outline: 3px solid var(--jungle-green); outline-offset: 2px; border-radius: 4px; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--deep-forest); color: #fff; padding: 10px 16px; border-radius: 0 0 var(--r-sm) 0;
  z-index: 100; font-weight: 600;
}
.skip-link:focus { left: 0; }

/* --------------------------- layout --------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--pad); }
.container-narrow { max-width: 840px; }

section { padding-block: clamp(56px, 8vw, 104px); }
section[id] { scroll-margin-top: 84px; }

.section-title {
  font-size: clamp(1.85rem, 4.5vw, 2.5rem);   /* ~30 -> 40, serif */
  max-width: 24ch;
}
.section-lead { font-size: clamp(1.0625rem, 2vw, 1.1875rem); color: var(--muted); max-width: 62ch; }

/* --------------------------- buttons --------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 600; font-size: 1.0313rem; line-height: 1; text-decoration: none; white-space: nowrap;
  padding: 15px 26px; border-radius: 999px; border: 1.5px solid transparent; cursor: pointer;
  transition: transform .2s var(--ease-out), box-shadow .2s var(--ease-out), background-color .2s, border-color .2s, color .2s;
}
.btn-ic { flex-shrink: 0; }
.btn-primary { background: var(--green-cta); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); background: var(--green-ink); }
.btn-primary:active { transform: scale(.98); }
.btn-outline { background: transparent; color: var(--deep-forest); border-color: rgba(28, 56, 44, 0.35); }
.btn-outline:hover { border-color: var(--deep-forest); background: var(--off-white); transform: translateY(-2px); }
.btn-light { background: #fff; color: var(--deep-forest); box-shadow: var(--shadow-sm); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.45); }
.btn-outline-light:hover { border-color: #fff; background: rgba(255, 255, 255, 0.08); transform: translateY(-2px); }
.btn-sm { padding: 11px 18px; font-size: .97rem; }
.btn-block { width: 100%; padding-block: 17px; font-size: 1.0938rem; }

.link-ghost {
  color: var(--deep-forest); font-weight: 600; text-decoration: none; font-size: .99rem;
  padding: 11px 18px; border: 1.5px solid transparent; border-radius: 999px;
  transition: border-color .2s ease, background-color .2s ease, transform .2s var(--ease-out);
}
.link-ghost:hover { border-color: rgba(28, 56, 44, 0.35); background: var(--off-white); transform: translateY(-1px); }

/* --------------------------- header --------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: transparent;
  transition: background-color .25s ease, box-shadow .25s ease;
}
.site-header.scrolled { background: rgba(255, 255, 255, 0.96); box-shadow: var(--shadow-sm); backdrop-filter: blur(6px); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-block: 10px; }
.brand { display: inline-flex; }
.brand-logo { width: auto; height: 30px; }
.header-nav { display: flex; align-items: center; gap: 14px; }
@media (max-width: 600px) {
  .header-nav .link-ghost { display: none; }
}

/* --------------------------- hero: copy left, form right --------------------------- */
.hero {
  padding-top: clamp(12px, 2vw, 26px);
  padding-bottom: clamp(36px, 5vw, 64px);
  background:
    radial-gradient(1100px 640px at 88% -12%, var(--mint-wash), transparent 60%),
    radial-gradient(900px 560px at -12% 34%, #FAFCEF, transparent 55%),
    var(--white);
}
.hero-inner { display: grid; gap: clamp(28px, 4vw, 52px); align-items: start; }

.hero-pill {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .78rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase;
  color: var(--green-ink); background: rgba(9, 147, 88, 0.09);
  border: 1px solid rgba(9, 147, 88, 0.22);
  padding: 6px 13px; border-radius: 999px; margin: 0 0 16px;
}
.hero-title {
  font-size: clamp(2.1rem, 4.5vw, 3.05rem);
  margin: 0 0 14px;
  max-width: 16ch;
}
.hero-sub { font-size: clamp(1.03rem, 1.9vw, 1.125rem); color: var(--muted); max-width: 48ch; margin: 0 0 26px; }

.hero-stats { display: flex; flex-wrap: wrap; gap: clamp(20px, 3.4vw, 44px); padding-top: 24px; border-top: 1px solid var(--hairline); }
@media (max-width: 600px) {
  .hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .h-stat-num { font-size: 1.55rem; }
  .h-stat-label { font-size: .8rem; }
}
.h-stat { display: grid; gap: 3px; }
.h-stat-num {
  font-family: var(--font-display); font-weight: 600; letter-spacing: -0.01em;
  font-size: clamp(1.7rem, 3.4vw, 2.3rem); line-height: 1; color: var(--deep-forest);
}
.h-stat-label { font-size: .875rem; color: var(--muted); font-weight: 500; max-width: 15ch; }

.press { margin: 26px 0 0; display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px 14px; }
.press-label { font-size: .72rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: #7A8A80; }
.press-names { font-size: .9rem; font-weight: 500; color: #5C6C63; }

/* form card (right column) */
.form-card {
  position: relative;
  background: var(--cream);
  border: 1px solid var(--cream-line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  padding: clamp(20px, 2.4vw, 28px);
}
.form-tag {
  display: inline-block; font-size: .72rem; font-weight: 600; letter-spacing: .07em; text-transform: uppercase;
  color: var(--green-ink); background: var(--lemon-tint); border-radius: 999px; padding: 5px 11px; margin: 0 0 10px;
}
.form-title { font-family: var(--font); font-size: clamp(1.35rem, 2.2vw, 1.55rem); font-weight: 600; margin-bottom: 5px; }
.form-sub { color: #45564C; font-size: .93rem; max-width: 52ch; margin-bottom: 2px; }

.lead-form { margin-top: 14px; display: grid; gap: 11px; }
.field { display: grid; gap: 5px; }
.field label { font-size: .9rem; font-weight: 600; color: var(--deep-forest); }
.field .optional { font-weight: 400; color: #5c6c63; }
.field input, .field select {
  font: inherit; font-size: 1rem; color: var(--deep-forest); background: var(--white);
  border: 1.5px solid #D9E2D6; border-radius: var(--r-sm); padding: 11px 14px; width: 100%;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input::placeholder { color: #97A59B; }
.field input:focus, .field select:focus { outline: none; border-color: var(--green-cta); box-shadow: 0 0 0 3px rgba(8, 131, 77, 0.16); }
.field input.invalid, .field select.invalid { border-color: #b4291f; }
.field-err { color: #9c221a; font-size: .85rem; font-weight: 500; }

/* select styled to match the text inputs exactly (custom chevron, no native arrow) */
.select-wrap { position: relative; }
.select-wrap select {
  appearance: none; -webkit-appearance: none; -moz-appearance: none;
  padding-right: 44px; cursor: pointer;
}
.select-wrap select:required:invalid { color: #97A59B; }  /* placeholder state matches input placeholders */
.select-wrap select option { color: var(--deep-forest); }
.select-chevron {
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  color: #6B7A71; pointer-events: none;
}

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.privacy-note { font-size: .83rem; color: #46564c; margin: 2px 0 0; }
.privacy-note a { color: var(--green-ink); }

.next-steps { counter-reset: ns; display: grid; gap: 8px; margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--hairline); }
.next-steps li { counter-increment: ns; display: grid; grid-template-columns: auto 1fr; gap: 11px; align-items: center; font-size: .92rem; color: var(--deep-forest); }
.next-steps li::before {
  content: counter(ns); display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; border-radius: 50%; background: var(--green-cta); color: #fff; font-size: .8rem; font-weight: 700;
}

.form-status { margin-top: 20px; padding: 22px 20px; border-radius: var(--r); text-align: center; }
.form-status h3 { font-size: 1.2rem; }
.form-success { background: #fff; border: 1px solid var(--line); }
.status-icon { display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px; border-radius: 50%; background: var(--jungle-green); color: #fff; margin-bottom: 8px; }
.form-success a { color: var(--green-ink); font-weight: 600; }
.form-failure { background: #FBEDEB; border: 1px solid #F1C9C3; }
.form-failure h3 { color: #8f231b; }
.form-failure a { color: #8f231b; font-weight: 600; }

@media (min-width: 980px) {
  .hero-inner { grid-template-columns: 1.04fr 0.96fr; }
  .hero-copy { padding-top: 14px; }
}

/* --------------------------- how it works --------------------------- */
.how { background: var(--white); }
.how-grid { display: grid; gap: clamp(28px, 4vw, 56px); margin-top: 40px; align-items: stretch; }
.steps { display: grid; gap: 26px; align-content: space-between; }
.step { display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: start; }
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--off-white); border: 1px solid var(--line);
  color: var(--green-ink); font-weight: 600; font-size: 1.02rem;
  font-family: var(--font-display);
  flex-shrink: 0;
}
.step h3 { font-size: 1.1875rem; margin: 8px 0 4px; }
.step p { margin: 0; color: var(--muted); font-size: 1rem; }
.how-media { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.how-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }
@media (min-width: 900px) {
  .how-grid { grid-template-columns: 1.1fr 0.9fr; }
  .how-media { height: 100%; position: relative; }
  .how-media picture { position: absolute; inset: 0; }
  .how-media img { width: 100%; height: 100%; aspect-ratio: auto; }
}

/* --------------------------- menu: marquee --------------------------- */
.menu { background: var(--off-white); overflow: hidden; }
.menu .section-lead { margin-top: 12px; }

.marquee-wrap {
  margin-top: 36px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.marquee { display: flex; gap: 18px; overflow: hidden; }
.marquee-track {
  display: flex; gap: 18px; min-width: max-content; flex-shrink: 0;
  animation: marquee-ltr 48s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee-ltr {
  from { transform: translateX(calc(-100% - 18px)); }
  to   { transform: translateX(0); }
}

.dish {
  width: clamp(200px, 24vw, 250px); flex-shrink: 0;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease-out), box-shadow .2s var(--ease-out);
}
.dish:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.dish img { width: 100%; height: auto; aspect-ratio: 1 / 1; object-fit: cover; }
.dish-meta { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; padding: 12px 14px 14px; }
.dish-name { font-size: .92rem; font-weight: 600; color: var(--deep-forest); }
.dish-price { font-size: .88rem; font-weight: 700; color: var(--green-cta); white-space: nowrap; }
.menu-note { margin-top: 26px; font-size: .95rem; color: var(--muted); max-width: 62ch; }

/* --------------------------- why cards --------------------------- */
.why { background: var(--white); }
.why-grid { display: grid; gap: 18px; margin-top: 40px; grid-template-columns: 1fr; }
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 28px 26px;
  display: flex; flex-direction: column; align-items: flex-start;
  min-height: 240px;
  transition: transform .2s var(--ease-out), box-shadow .2s var(--ease-out), border-color .2s;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: #D3E2D7; }
.card-ic {
  display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px;
  border-radius: 14px; background: var(--mint-wash); color: var(--green-ink); margin-bottom: 16px;
}
.card h3 { font-size: 1.22rem; margin: 0 0 14px; }
.card p { margin: auto 0 0; color: var(--muted); font-size: .99rem; }
@media (min-width: 680px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .why-grid { grid-template-columns: repeat(4, 1fr); } }

/* --------------------------- photo band (horizontal scroll, 3 images) --------------------------- */
.band { background: var(--white); padding-top: 0; }
.band-scroller {
  display: flex; gap: 18px; overflow-x: auto;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
  scrollbar-width: none; padding-bottom: 8px;
}
.band-scroller::-webkit-scrollbar { display: none; }
.band-item {
  position: relative; margin: 0; flex: 0 0 88%; scroll-snap-align: center;
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md);
}
.band-item img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }
.band-item:nth-child(1) img { object-position: 50% 72%; }
.band-item:nth-child(2) img { object-position: 50% 52%; }
.band-item:nth-child(3) img { object-position: 50% 38%; }
.band-item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 76px 20px 18px; text-align: center;
  color: #fff; font-size: .95rem; font-weight: 500;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.85));
}
@media (min-width: 760px) {
  .band-item { flex-basis: 74%; }
  .band-item img { aspect-ratio: 16 / 9; }
  .band-item figcaption { font-size: 1.02rem; padding-bottom: 22px; }
}

/* --------------------------- catch (dark) --------------------------- */
.catch { background: var(--deep-forest); color: #fff; }
.catch .section-title { color: #fff; max-width: 26ch; }
.catch-body { color: rgba(255, 255, 255, 0.86); max-width: 60ch; font-size: 1.125rem; margin-top: 14px; }
.catch-list { display: grid; gap: 12px; margin: 30px 0 36px; grid-template-columns: 1fr; }
.catch-list li { display: flex; align-items: flex-start; gap: 12px; color: #fff; font-weight: 500; }
.catch-list .tick { color: var(--lemon-tint); flex-shrink: 0; margin-top: 2px; }
.catch-cta { display: flex; flex-wrap: wrap; gap: 14px; }
@media (min-width: 680px) { .catch-list { grid-template-columns: repeat(2, 1fr); } }

/* --------------------------- faq --------------------------- */
.faq { background: var(--white); }
.faq-list { margin-top: 28px; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: none; border: 0; padding: 21px 2px; text-align: left; cursor: pointer;
  font-size: 1.0625rem; font-weight: 600; color: var(--deep-forest);
}
.faq-chevron { flex-shrink: 0; color: var(--green-cta); transition: transform .25s ease; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .25s ease; }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a-inner { overflow: hidden; min-height: 0; }
.faq-a p { margin: 0; padding: 0 2px 21px; color: var(--muted); max-width: 68ch; }

/* --------------------------- footer --------------------------- */
.site-footer {
  position: relative; overflow: hidden;
  background: var(--deep-forest); color: rgba(255, 255, 255, 0.82);
  padding-top: clamp(56px, 7vw, 88px);
}
.footer-cta { text-align: center; max-width: 720px; margin-inline: auto; }
.footer-cta-title {
  color: #fff; font-size: clamp(1.9rem, 4.6vw, 2.75rem); margin-bottom: 26px;
}
.footer-cta-btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }

.footer-grid {
  display: grid; gap: 36px; grid-template-columns: 1fr;
  margin-top: clamp(48px, 6vw, 72px);
  padding-top: clamp(36px, 5vw, 52px);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.footer-logo { width: auto; height: 32px; margin-bottom: 16px; }
.footer-about p { max-width: 36ch; font-size: .97rem; color: rgba(255, 255, 255, 0.72); }
.footer-heading { color: #fff; font-size: .82rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; margin: 0 0 14px; }
.footer-links-stack { display: grid; gap: 30px; align-content: start; }
.footer-links { display: flex; flex-wrap: wrap; gap: 12px 28px; }
.footer-links a {
  display: inline-flex; align-items: center; gap: 11px;
  color: rgba(255, 255, 255, 0.82); text-decoration: none; transition: color .15s ease;
  font-size: .97rem;
}
.footer-links a:hover { color: var(--lemon-tint); }
.flink-ic { flex-shrink: 0; opacity: .6; }
.footer-links a:hover .flink-ic { opacity: 1; }

.footer-bottom {
  position: relative; z-index: 1;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 8px 20px;
  margin-top: clamp(36px, 5vw, 56px); padding-block: 22px clamp(28px, 8vw, 96px);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: .85rem; color: rgba(255, 255, 255, 0.6);
}
.footer-bottom p { margin: 0; }

.footer-watermark {
  position: absolute; left: 50%; bottom: -0.34em; transform: translateX(-50%);
  font-family: var(--font-display); font-weight: 600; line-height: 1;
  font-size: clamp(7rem, 24vw, 19rem); letter-spacing: -0.02em;
  color: rgba(248, 254, 194, 0.055);
  pointer-events: none; user-select: none; white-space: nowrap;
}
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.1fr 2fr; gap: 48px; } }

/* --------------------------- floating WhatsApp (mobile) --------------------------- */
.wa-bubble {
  position: fixed; right: 16px; bottom: 16px; width: 56px; height: 56px; border-radius: 50%;
  background: var(--green-cta); color: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md); z-index: 60;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .3s ease, transform .3s ease, visibility .3s ease;
}
.wa-bubble.show { opacity: 1; visibility: visible; transform: none; }
@media (min-width: 721px) { .wa-bubble { display: none; } }

/* --------------------------- motion: reveals (below the fold only) --------------------------- */
.js .reveal { opacity: 0; transform: translateY(16px); transition: opacity .45s var(--ease-out), transform .45s var(--ease-out); }
.js .reveal.is-visible { opacity: 1; transform: none; }
.js .reveal-group > * { opacity: 0; transform: translateY(16px); transition: opacity .45s var(--ease-out), transform .45s var(--ease-out); }
.js .reveal-group.is-visible > * { opacity: 1; transform: none; }
.js .reveal-group.is-visible > *:nth-child(1) { transition-delay: 0ms; }
.js .reveal-group.is-visible > *:nth-child(2) { transition-delay: 60ms; }
.js .reveal-group.is-visible > *:nth-child(3) { transition-delay: 120ms; }
.js .reveal-group.is-visible > *:nth-child(4) { transition-delay: 180ms; }
.js .reveal-group.is-visible > *:nth-child(5) { transition-delay: 240ms; }
.js .reveal-group.is-visible > *:nth-child(6) { transition-delay: 300ms; }
.js .reveal-group.is-visible > *:nth-child(7) { transition-delay: 360ms; }
.js .reveal-group.is-visible > *:nth-child(8) { transition-delay: 420ms; }

/* Reduced motion: render everything instantly; marquee becomes a static scrollable row. */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal, .js .reveal-group > * { opacity: 1 !important; transform: none !important; transition: none !important; }
  .btn, .dish, .card, .faq-a, .faq-chevron, .wa-bubble, .site-header, .link-ghost { transition: none !important; }
  .marquee { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .marquee-track { animation: none !important; }
  .marquee-track[aria-hidden="true"] { display: none; }
  .marquee-wrap { -webkit-mask-image: none; mask-image: none; }
}
