/* ============================================================
   LUNCH TEA™ — "After the Arvo" (LIGHT, motion-driven)
   After Dark Tour layout/motion on a warm-paper palette.
   Cream base · amber/gold accents · Helvetica (wordmark condensed only)
   ============================================================ */

:root {
  --bg:      #ffffff;   /* white */
  --bg-2:    #F4F2ED;   /* subtle panel on white */
  --bg-3:    #ECE9E2;   /* deeper panel */
  --ink:     #1a1a1a;   /* text */
  --muted:   #6E675A;   /* muted body */
  --line:    rgba(26,26,26,0.14);
  --amber:   #F4680A;
  --amber-2: #F2862E;
  --gold:    #BE7C16;   /* deepened so it reads on cream */
  --energy:  #F7B500;   /* bright yellow — the energy curve on the function chart */

  /* one family — Helvetica. Only the LUNCH TEA wordmark uses the condensed cut. */
  --f-body: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --f-disp: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --f-cond: "Helvetica Neue", "Helvetica Neue Condensed", "HelveticaNeue-CondensedBold", Helvetica, "Arial Narrow", Arial, sans-serif;
  --f-mono: var(--f-body);
  --f-serif: var(--f-body);

  --pad: clamp(1.1rem, 4vw, 4rem);
}

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

html { -webkit-text-size-adjust: 100%; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

body {
  font-family: var(--f-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.25;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;   /* prevent h-scroll without breaking position: sticky */
}

a { color: inherit; text-decoration: none; }
sup { font-size: 0.45em; vertical-align: super; }
em { font-family: var(--f-serif); font-style: italic; }
mark { background: none; color: inherit; }

/* paragraphs: Helvetica Bold, larger, tight leading */
p { font-weight: 700; line-height: 1.2; }

.disp { font-family: var(--f-disp); font-weight: 700; }

/* the ONLY condensed type on the site: the LUNCH TEA wordmark (nav, hero, loader, footer) */
.nav__brand .wordmark, .hero__type, .loader__word span, .foot__big {
  font-family: var(--f-cond); font-stretch: condensed;
}

/* ---- preloader ---- */
.loader {
  position: fixed; inset: 0; z-index: 1000; background: var(--bg);
  display: flex; align-items: flex-end; justify-content: space-between;
  padding: var(--pad);
}
.loader__count { font-family: var(--f-mono); font-size: clamp(2rem, 8vw, 5rem); line-height: 1; }
.loader__count i { font-style: normal; color: var(--amber); font-size: 0.4em; }
.loader__word { display: flex; flex-direction: column; text-align: right; }
.loader__word span {
  font-family: var(--f-disp); font-weight: 700;
  font-size: clamp(2.5rem, 10vw, 7rem); line-height: 0.82; letter-spacing: -0.01em;
}
.loader__word span:last-child { color: var(--amber); }

/* ---- nav (After Dark Tour header: floating translucent pill) ---- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 0.85rem var(--pad);
}
.nav__inner {
  max-width: 1460px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 0.5rem 0.55rem 0.5rem 1.4rem;
  border-radius: 100px;
  background: linear-gradient(90deg, rgba(255,252,246,0.78), rgba(255,252,246,0.42));
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(20,17,13,0.12);
}
/* header text: Helvetica Neue Bold, small, uppercase, amber (like Nike's red) */
.nav__brand {
  display: inline-flex; align-items: baseline; gap: 0.5em;
  font-family: var(--f-body); font-weight: 700; font-size: 0.82rem;
  letter-spacing: 0.02em; text-transform: uppercase; color: var(--amber); line-height: 1;
}
.nav__brand i { font-style: normal; opacity: 0.55; }
.nav__brand .wordmark { font-size: 1rem; font-weight: 700; letter-spacing: 0.01em; } /* condensed via wordmark rule */

/* MENU pill button with hamburger */
.nav__menu {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-family: var(--f-body); font-weight: 700; font-size: 0.8rem;
  letter-spacing: 0.02em; text-transform: uppercase; color: var(--amber); line-height: 1;
  background: none; border: 1px solid rgba(255,90,31,0.55); border-radius: 100px;
  padding: 0.6rem 1.1rem; transition: background .2s;
}
.nav__menu:hover { background: rgba(255,90,31,0.12); }
.nav__menu [data-close] { display: none; }
body.menu-open .nav__menu [data-open] { display: none; }
body.menu-open .nav__menu [data-close] { display: inline; }
.nav__burger { display: inline-flex; flex-direction: column; justify-content: center; gap: 3.5px; width: 17px; }
.nav__burger i { display: block; height: 1.6px; width: 100%; background: currentColor; transition: transform .3s ease, opacity .2s; }
body.menu-open .nav__burger i:nth-child(1) { transform: translateY(5px) rotate(45deg); }
body.menu-open .nav__burger i:nth-child(2) { opacity: 0; }
body.menu-open .nav__burger i:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

/* ---- fullscreen menu overlay ---- */
.menu {
  position: fixed; inset: 0; z-index: 150; background: transparent;
  display: flex; flex-direction: column; justify-content: center;
  padding: 5rem var(--pad) 2rem; overflow: hidden;
  visibility: hidden; pointer-events: none;
  transition: visibility 0s linear .55s;   /* stay visible while the liquid drains on close */
}
body.menu-open .menu { visibility: visible; pointer-events: auto; transition-delay: 0s; }

/* liquid layer — orange fill rising from the bottom with a smooth wavy surface */
.menu__liquid { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.menu__wave { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.menu__wave path { fill: var(--amber); }
.menu__bubbles { position: absolute; inset: 0; }
.menu__bubble { position: absolute; bottom: -6%; border-radius: 50%; background: var(--amber); will-change: transform; }

/* content sits above the liquid, in white over the orange fill */
.menu__links, .menu__foot { position: relative; z-index: 1; }
.menu__links { list-style: none; }
.menu__links li { overflow: hidden; border-top: 1px solid rgba(255,255,255,0.28); }
.menu__links li:last-child { border-bottom: 1px solid rgba(255,255,255,0.28); }
.menu__links a {
  display: flex; align-items: baseline; gap: 1.2rem; color: #ffffff;
  font-family: var(--f-disp); font-weight: 700;
  font-size: clamp(1.8rem, 6vw, 4.2rem); line-height: 1; letter-spacing: -0.01em;
  padding: 0.28em 0; transition: color .25s, padding-left .25s;
}
.menu__links a i { font-family: var(--f-mono); font-style: normal; font-weight: 400; font-size: 0.85rem; color: rgba(255,255,255,0.65); }
.menu__links a:hover { color: rgba(255,255,255,0.72); padding-left: 1rem; }
.menu__foot {
  display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  margin-top: 2.5rem; font-family: var(--f-mono); font-size: 0.75rem; color: rgba(255,255,255,0.72);
}
.menu__cta { font-family: var(--f-body); font-weight: 700; text-transform: uppercase; color: #ffffff; font-size: 0.9rem; }

/* reduced motion / no JS: skip the liquid, show a solid orange panel */
@media (prefers-reduced-motion: reduce) {
  .menu { background: var(--amber); transition: none; }
  .menu__liquid { display: none; }
}

/* ---- HERO ---- */
.hero {
  position: sticky; top: 0; z-index: 0;
  height: 100svh; padding: 4.5rem var(--pad) 2rem;
  display: flex; flex-direction: column; justify-content: center; overflow: hidden;
}
/* everything below the hero rides up over it on scroll.
   No z-index (stays positioned so it still paints over the sticky hero via DOM order) — this lets
   the lunch photo's own z-index outrank the fixed can so the can passes behind it. */
.after { position: relative; background: var(--bg); }
/* dynamic solid background — the colour cycles through the warm orange range.
   Kept in oranges/ambers (no pale yellow) so the always-white type stays readable */
.hero__glow { display: none; }
.hero {
  --hero-fg: #ffffff;                 /* white hero type across the whole warm-colour cycle */
  background-color: #f4680a;
  animation: heroColor 7s ease-in-out infinite;
}
@keyframes heroColor {
  0%, 100% { background-color: #f4680a; }
  20%      { background-color: #ff8f00; }
  40%      { background-color: #ffa000; }
  60%      { background-color: #ffb300; }
  80%      { background-color: #ffc107; }
}
@media (prefers-reduced-motion: reduce) { .hero { animation: none; } }
/* light type so it reads across the shifting colour */
.hero .kicker,
.hero .hero__type,
.hero .hero__type .line--accent,
.hero .hero__type sup,
.hero .hero__lede, .hero .hero__lede em,
.hero .hero__scroll,
.hero .stat i, .hero .stat span,
.hero .stat i small { color: var(--hero-fg, var(--ink)); transition: color 1.2s ease-in-out; }
.hero .stat i small { opacity: 0.6; }
.hero__foot { border-top-color: color-mix(in srgb, var(--hero-fg, #1a1a1a) 22%, transparent); }
.hero__inner { position: relative; z-index: 2; }
.kicker {
  font-family: var(--f-mono); font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.2rem;
}
.hero__type {
  font-family: var(--f-disp); font-weight: 700; color: var(--amber);
  line-height: 0.82; letter-spacing: -0.015em; font-size: clamp(3.75rem, 16.5vw, 15rem);
}
.hero__type .line { display: block; overflow: hidden; }
.hero__type .line > span { display: inline-block; }
.hero__type .line--accent { color: var(--amber); }
.hero__type sup { color: var(--amber); }

.hero__foot {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem;
  margin-top: 1.25rem; border-top: 1px solid var(--line); padding-top: 1.1rem;
}
.hero__lede { font-size: clamp(1.15rem, 2.1vw, 1.85rem); line-height: 1.15; max-width: 44ch; color: var(--ink); }
.hero__lede em { font-style: normal; }
.hero__scroll { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; font-family: var(--f-mono); font-size: 0.7rem; letter-spacing: 0.1em; color: var(--muted); flex: none; }
.hero__scroll svg { animation: bob 1.6s ease-in-out infinite; }
@keyframes bob { 0%,100%{transform:translateY(0)} 50%{transform:translateY(5px)} }

.hero__stats {
  position: relative; z-index: 2; display: flex; gap: clamp(1.5rem, 5vw, 5rem);
  margin-top: 1.5rem;
}
.stat i { display: block; font-family: var(--f-disp); font-weight: 700; font-style: normal; font-size: clamp(2rem, 3.6vw, 3.2rem); line-height: 1; }
.stat i small { font-size: 0.5em; color: var(--muted); }
.stat span { font-family: var(--f-mono); font-size: 0.82rem; letter-spacing: 0.04em; color: var(--muted); text-transform: uppercase; }
@media (max-width: 640px) { .hero__foot { flex-direction: column; align-items: flex-start; } .hero__scroll { display: none; } }


/* ---- section tag ---- */
.sec-tag { display: flex; align-items: baseline; gap: 0.8rem; font-family: var(--f-mono); font-size: 0.9rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 2.5rem; }
.sec-tag i { font-style: normal; color: var(--amber); font-weight: 700; }
.sec-tag--light { color: rgba(11,11,12,0.5); }
.sec-tag--light i { color: var(--amber); }

/* ---- 01 occasion (pinned word highlight) ---- */
.occ { padding: clamp(5rem, 12vh, 9rem) var(--pad); }
.bigstate {
  font-family: var(--f-disp); font-weight: 700;
  font-size: clamp(2rem, 5vw, 4.2rem); line-height: 1.0; letter-spacing: -0.01em;
  max-width: 24ch;
}
.bigstate .w { color: rgba(26,26,26,0.18); transition: color .1s; }
.bigstate .w.on { color: var(--ink); }
.bigstate mark .w.on { color: var(--amber); }

/* ---- product shot: static high-res can. Fixed on desktop; JS translates it down the
       page as you scroll, so it starts in the hero and descends to the footer ---- */
.pvid {
  position: fixed; top: 0; right: clamp(1.5rem, 4vw, 5rem);
  /* square PNG (1630×1630) with the can centred in transparent padding — size up to compensate */
  width: min(37vw, 540px); z-index: 40; pointer-events: none; will-change: transform;
}
.pvid__img { display: block; width: 100%; height: auto; }
@media (max-width: 760px) {
  /* inline, centred, in normal flow — no travelling overlay on small screens */
  .pvid {
    position: static; transform: none !important; width: min(84vw, 460px); margin: 0 auto; padding: 1.25rem 0 0;
  }
}

/* ---- blend : ingredient list ---- */
.blend { padding: clamp(5rem, 12vh, 9rem) var(--pad); }
.blend__h { font-family: var(--f-disp); font-weight: 700; font-size: clamp(1.9rem, 4.2vw, 3.6rem); line-height: 1.0; letter-spacing: -0.01em; max-width: 20ch; }
.blend__lead { margin-top: 1.2rem; max-width: 54ch; color: var(--muted); font-size: clamp(1.05rem, 1.4vw, 1.25rem); }
.ingredients { list-style: none; margin-top: clamp(2.5rem, 5vw, 4rem); border-top: 1px solid var(--line); }
.ing {
  position: relative;
  display: grid; grid-template-columns: 130px 1fr; gap: 2rem; align-items: baseline;
  padding: 2.2rem 0; border-bottom: 1px solid var(--line);
}
.ing__pct {
  font-family: var(--f-disp); font-weight: 700; font-size: clamp(2.4rem, 4.6vw, 4rem);
  line-height: 1; color: var(--amber); letter-spacing: -0.02em;
}
.ing__body h3 {
  font-family: var(--f-disp); font-weight: 700; font-size: clamp(1.4rem, 2.2vw, 2.1rem);
  text-transform: uppercase; letter-spacing: -0.005em; line-height: 1;
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 0.9rem;
}
.ing__role {
  font-family: var(--f-body); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold);
}
.ing__body p { margin-top: 0.7rem; max-width: 60ch; color: var(--muted); font-size: 1.05rem; }
.ing__bar {
  position: absolute; left: 0; bottom: -1px; height: 4px; width: 0; background: var(--amber);
  transition: width 1.1s cubic-bezier(.2,.7,.2,1);
}
.ing.in .ing__bar { width: var(--w); }
@media (max-width: 680px) { .ing { grid-template-columns: 66px 1fr; gap: 1rem; } }

/* ---- full-bleed lunch photograph ---- */
/* position + z-index above the descending can (z 40) so the can passes behind this image */
.shot { position: relative; z-index: 41; width: 100%; overflow: hidden; line-height: 0; }
.shot__img { display: block; width: 100%; height: auto; }

/* ---- route (function) : caffeine-release timeline over a column grid ---- */
.route { position: relative; overflow: hidden; background: var(--bg); color: var(--ink); padding: clamp(5rem, 12vh, 9rem) var(--pad); }
.route > * { position: relative; z-index: 1; }
.route .sec-tag { color: var(--muted); }
/* faint blueprint column grid behind everything */
.route__h { font-family: var(--f-disp); font-weight: 700; font-size: clamp(2rem, 5vw, 4.2rem); line-height: 1.0; letter-spacing: -0.01em; max-width: 24ch; }
/* statement reveal (reuses the .w / .on word mechanism) */
.fn-statement .w { color: rgba(26,26,26,0.16); transition: color .1s; }
.fn-statement .w.on { color: var(--ink); }
.fn-statement mark { background: none; }
.fn-statement mark .w.on { color: var(--amber); }

/* the chart */
.fn-chart { display: block; width: 100%; max-width: 1040px; margin: clamp(2.5rem, 6vw, 4rem) auto 0; overflow: visible; }
.fn-chart text { font-family: var(--f-mono); }
.fn-base { stroke: var(--line); stroke-width: 1.5; }
.fn-curve { stroke: var(--amber); stroke-width: 3.5; stroke-linecap: round; stroke-linejoin: round; }
.fn-energy { stroke: var(--energy); stroke-width: 3.5; stroke-linecap: round; stroke-linejoin: round; fill: none; }
.fn-area { fill: url(#fnFill); }
.fn-area-energy { fill: url(#fnFillEnergy); }
/* legend: colour swatch + label for each curve */
.fn-leg { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; fill: var(--muted); }
.fn-leg-sw.energy { fill: var(--energy); }
.fn-leg-sw.caffeine { fill: var(--amber); }
.fn-dot { fill: var(--amber); stroke: var(--bg); stroke-width: 3; }
.fn-conn { stroke: var(--gold); stroke-width: 1.5; stroke-dasharray: 1.5 5; stroke-linecap: round; opacity: 0.8; }
/* circular pill tags — orange fill, white text */
.fn-bubble { fill: var(--amber); }
.fn-pk { font-family: var(--f-cond); font-stretch: condensed; font-weight: 700; font-size: 15px; letter-spacing: 0.04em; fill: #ffffff; }
.fn-ps { font-family: var(--f-body); font-weight: 700; font-size: 12px; letter-spacing: 0.01em; fill: rgba(255,255,255,0.9); }
.fn-axis { font-weight: 700; font-size: 12.5px; letter-spacing: 0.1em; fill: var(--ink); }
.fn-time { font-size: 12px; letter-spacing: 0.02em; fill: var(--gold); }
.fn-yaxis { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; fill: var(--muted); }

.fn-caption { margin: clamp(1.5rem, 4vw, 2.5rem) auto 0; max-width: 44ch; text-align: center; }
.fn-caption em { font-style: italic; font-size: clamp(1.1rem, 1.6vw, 1.4rem); color: var(--amber); }

/* function section copy (below the statement, above the chart) */
.fn-copy { margin: clamp(1.5rem, 3vw, 2.5rem) 0 clamp(2rem, 4vw, 3rem); }
.fn-lead { font-size: clamp(1.15rem, 1.9vw, 1.6rem); color: var(--amber); max-width: 44ch; }
.fn-body { margin-top: 0.9rem; font-size: clamp(1.05rem, 1.5vw, 1.3rem); color: var(--ink); max-width: 62ch; }

/* faq numbered list */
.faq__ol { margin: -0.8rem 0 1.6rem 1.4rem; color: var(--muted); font-weight: 700; font-size: 1.15rem; line-height: 1.5; max-width: 58ch; }
.faq__ol li { padding-bottom: 0.35rem; }

@media (max-width: 760px) { .route__h { max-width: none; } }

/* ---- build a cuppa ---- */
.build { padding: clamp(5rem, 12vh, 9rem) var(--pad); }
.build__grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.build__glassWrap { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
.glass { position: relative; width: clamp(150px, 40vw, 200px); height: clamp(240px, 55vw, 320px); border: 2px solid var(--ink); border-top: none; border-radius: 5px 5px 16px 16px; overflow: hidden; background: rgba(20,17,13,0.04); }
.glass__liquid { position: absolute; left: 0; right: 0; bottom: 0; top: 12%; display: flex; flex-direction: column-reverse; }
.layer { width: 100%; flex: 0 0 auto; transition: height .5s cubic-bezier(.65,0,.35,1), opacity .3s; background: var(--lc, var(--amber)); }
.build__read { display: flex; gap: 2rem; }
.build__read span { display: block; font-family: var(--f-mono); font-size: 0.68rem; text-transform: uppercase; color: var(--muted); }
.build__read strong { font-family: var(--f-disp); font-weight: 700; font-size: 1.5rem; }
.build__read strong small { font-size: 0.55em; color: var(--muted); }
.build__h { font-family: var(--f-disp); font-weight: 700; font-size: clamp(2rem, 5vw, 3.6rem); }
.build__p { color: var(--muted); margin: 0.8rem 0 2rem; max-width: 38ch; font-size: 1.2rem; }
/* lift the controls column above the descending can (z 40) so it passes behind the toggles */
.build__controls { position: relative; z-index: 41; }
.build__toggles { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.tog { display: flex; align-items: center; gap: 1rem; width: 100%; padding: 0.9rem 1.2rem; border: 1px solid var(--line); border-radius: 100px; background: transparent; color: var(--ink); font: inherit; transition: all .2s; }
.tog:hover { border-color: var(--ink); }
.tog[aria-pressed="true"] { background: var(--ink); color: var(--bg); }
.tog[aria-pressed="false"] { opacity: 0.5; }
.tog__dot { width: 11px; height: 11px; border-radius: 50%; background: var(--sw); flex: none; }
.tog[aria-pressed="false"] .tog__dot { background: var(--line); }
.tog__name { flex: 1; font-weight: 600; }
.tog__pct { font-family: var(--f-mono); font-size: 0.82rem; opacity: 0.7; }
@media (max-width: 760px) { .build__grid { grid-template-columns: 1fr; } .build__glassWrap { order: -1; } }

/* ---- faq ---- */
.faq { padding: clamp(5rem, 12vh, 9rem) var(--pad); }
.faq__list { list-style: none; 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: 1rem; padding: 1.5rem 0; background: none; border: 0; color: var(--ink); font-family: var(--f-disp); font-weight: 700; font-size: clamp(1.2rem, 2.6vw, 2rem); text-align: left; }
.faq__q i { font-style: normal; color: var(--amber); font-family: var(--f-mono); font-weight: 400; font-size: 1.4rem; transition: transform .3s; flex: none; }
.faq__item.open .faq__q i { transform: rotate(45deg); }
.faq__a { overflow: hidden; height: 0; }
.faq__a p { padding: 0 0 1.6rem; color: var(--muted); max-width: 58ch; font-size: 1.15rem; }

/* ---- find / cta : brand-orange block, inverted cream-on-orange scheme ---- */
.find { position: relative; padding: clamp(6rem, 18vh, 14rem) var(--pad); text-align: center; overflow: hidden; background: var(--amber); }
.find__glow { display: none; } /* redundant on a solid orange field */
/* gradient globe — travels an invisible arch, echoing the sun-path on the can */
.find__suns { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; }
.find__globe { will-change: transform; }
.find__type { position: relative; z-index: 1; font-family: var(--f-disp); font-weight: 700; font-size: clamp(3.5rem, 15vw, 13rem); line-height: 0.82; letter-spacing: -0.015em; color: #FFF3E0; }
.find__type .line { display: block; overflow: hidden; }
.find__type .line > span { display: inline-block; }
.find__type .line--accent { color: #ffffff; }
.find__form { position: relative; z-index: 1; display: flex; gap: 0.5rem; max-width: 460px; margin: 2.5rem auto 1rem; flex-wrap: wrap; justify-content: center; }
.find__form input { flex: 1; min-width: 220px; font: inherit; padding: 0.9rem 1.3rem; border: 1px solid rgba(255,243,224,0.55); border-radius: 100px; background: transparent; color: #FFF3E0; }
.find__form input::placeholder { color: rgba(255,243,224,0.7); }
.find__form input:focus { outline: none; border-color: #FFF3E0; }
.find__form button { font: inherit; font-weight: 700; padding: 0.9rem 1.7rem; border: 0; border-radius: 100px; background: #FFF3E0; color: var(--amber); }
.find__note { position: relative; z-index: 1; font-family: var(--f-mono); font-size: 0.78rem; color: rgba(255,243,224,0.75); }

/* ---- footer ---- */
.foot { border-top: 1px solid var(--line); padding: clamp(3rem, 8vw, 6rem) var(--pad) 2rem; }
.foot__big { font-family: var(--f-disp); font-weight: 700; font-size: clamp(1.6rem, 4vw, 2.6rem); line-height: 0.9; letter-spacing: -0.01em; }
.foot__row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-top: 1.5rem; font-family: var(--f-mono); font-size: 0.72rem; color: var(--muted); }
.foot__nav { display: flex; gap: 1.2rem; }
.foot__nav a:hover { color: var(--amber); }

/* ---- reveal defaults (JS drives them; fallback visible) ---- */
.reveal-up { will-change: transform, opacity; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .loader { display: none; }
  .hero__type .line > span, .find__type .line > span { transform: none !important; }
  .hero { background-color: #F9A826; }  /* static warm hero (no dark reveal / cycle) */
}
