/* ============================================================
   HOUSTON SPICE LIBRARY — cinematic scroll journey
   Night navy → spice amber → chili copper → black marble → candle gold
   ============================================================ */

/* ---------- 0. Tokens ---------- */
:root {
  --navy: #0a1220;
  --navy-deep: #060b14;
  --amber: #b8791f;
  --saffron: #e8b64c;
  --chili: #d24a2e;
  --copper: #b05c2a;
  --turmeric: #e9a820;
  --emerald: #2f7d4f;
  --royal: #5b3d8f;
  --marble: #0d0c0e;
  --charcoal: #141114;
  --ivory: #f4ead8;
  --ivory-soft: #e7dbc4;
  --gold: #c9a35c;
  --gold-bright: #ecd18e;
  --muted: #a49a86;

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", -apple-system, sans-serif;

  --radius: 16px;
  --radius-lg: 24px;
  --shadow-card: 0 20px 60px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 10px 30px rgba(201, 163, 92, 0.35);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --z-stage: 1;
  --z-panel: 5;
  --z-meter: 60;
  --z-nav: 70;
  --z-float: 65;

  --s2: 1rem; --s3: 1.5rem; --s4: 2.5rem; --s5: 4rem; --s6: 6rem;
}

/* ---------- 1. Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; }
body {
  font-family: var(--font-body); font-weight: 300; line-height: 1.7;
  color: var(--ivory); background: var(--navy-deep);
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
  transition: background 1.2s ease;
}
/* page color grade by zone */
body[data-zone="0"] { background: var(--navy-deep); }
body[data-zone="1"] { background: #17100a; }
body[data-zone="2"] { background: #180c07; }
body[data-zone="3"] { background: var(--marble); }
body[data-zone="4"] { background: #131009; }

img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
.container { width: min(1180px, 92%); margin-inline: auto; }
.visually-hidden { position: absolute; width: 1px; height: 1px; clip-path: inset(50%); overflow: hidden; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.08; }
h2 { font-size: clamp(2.1rem, 4.6vw, 3.5rem); letter-spacing: 0.005em; }
h2 em { font-style: italic; color: var(--gold-bright); }

.eyebrow {
  display: inline-block;
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.34em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 0.9rem;
}

/* ---------- 2. Buttons ---------- */
.btn {
  display: inline-block;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 0.95em 2.1em; border-radius: 100px;
  border: 1px solid transparent; cursor: pointer;
  white-space: nowrap; min-width: max-content; text-align: center;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s, color 0.35s, border-color 0.35s;
}
.btn--lg { padding: 1.1em 2.5em; }
.btn--gold {
  position: relative; overflow: hidden;
  background: linear-gradient(120deg, var(--gold-bright), var(--gold) 55%, #9a7838);
  color: #241a08;
  box-shadow: var(--shadow-gold);
}
.btn--gold::before {
  content: ""; position: absolute; top: 0; bottom: 0; left: -80%;
  width: 45%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,0.55), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s var(--ease);
}
.btn--gold:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(201,163,92,0.5); }
.btn--gold:hover::before { left: 130%; }
.btn--pulse { animation: pulse 3s var(--ease) infinite; }
@keyframes pulse {
  0%,100% { box-shadow: var(--shadow-gold); }
  50% { box-shadow: var(--shadow-gold), 0 0 0 10px rgba(201,163,92,0.08); }
}
.btn--ghost {
  border-color: rgba(244,234,216,0.4); color: var(--ivory);
  background: rgba(244,234,216,0.05); backdrop-filter: blur(8px);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-bright); transform: translateY(-3px); }

/* ---------- 3. Glass ---------- */
.glass {
  background: linear-gradient(150deg, rgba(10,10,14,0.55), rgba(10,10,14,0.35));
  border: 1px solid rgba(201,163,92,0.28);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

/* ---------- 4. Nav ---------- */
.nav { position: fixed; inset: 0 0 auto 0; z-index: var(--z-nav); padding: 1rem 0; transition: background 0.4s var(--ease), padding 0.4s, box-shadow 0.4s; }
.nav.is-scrolled {
  background: rgba(8, 8, 12, 0.85);
  backdrop-filter: blur(16px);
  padding: 0.6rem 0;
  box-shadow: 0 6px 28px rgba(0,0,0,0.45);
  border-bottom: 1px solid rgba(201,163,92,0.15);
}
.nav__inner { display: flex; align-items: center; gap: var(--s3); }
.nav__logo { display: flex; align-items: center; gap: 0.65rem; }
.nav__logo-mark {
  display: grid; place-items: center; width: 40px; height: 40px;
  border: 1px solid var(--gold); border-radius: 50%;
  font-family: var(--font-display); font-size: 0.78rem; font-weight: 700;
  color: var(--gold); letter-spacing: 0.04em;
}
.nav__logo-text { font-family: var(--font-body); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.3em; color: var(--ivory); }
.nav__logo-text em { font-style: normal; color: var(--gold); }
.nav__menu { display: flex; gap: 1.25rem; margin-left: auto; }
.nav__menu a {
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); position: relative; padding: 0.3rem 0; transition: color 0.3s;
}
.nav__menu a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1px;
  background: var(--gold); transition: width 0.35s var(--ease);
}
.nav__menu a:hover { color: var(--ivory); }
.nav__menu a:hover::after { width: 100%; }
.nav__cta { margin-left: 0.4rem; flex-shrink: 0; }
.nav__cta-mobile { display: none; }
.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; margin-left: auto; }
.nav__burger span { width: 24px; height: 2px; background: var(--ivory); transition: transform 0.3s var(--ease), opacity 0.3s; }
.nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- 5. Journey stage ---------- */
.journey { position: relative; height: 560vh; }
.journey__stage { position: sticky; top: 0; height: 100vh; overflow: hidden; z-index: var(--z-stage); }
.journey__clip, .journey__still {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0; transition: opacity 0.35s ease;
}
.journey__clip.is-active { opacity: 1; }
.journey__still { background-size: cover; background-position: center; }
.journey__grade {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to top, rgba(6,11,20,0.72), rgba(6,11,20,0.15) 45%, rgba(6,11,20,0.35));
  transition: background 1.2s ease;
}
body[data-zone="1"] .journey__grade { background: linear-gradient(to top, rgba(23,16,10,0.72), rgba(120,70,15,0.10) 45%, rgba(23,16,10,0.3)); }
body[data-zone="2"] .journey__grade { background: linear-gradient(to top, rgba(24,12,7,0.75), rgba(140,50,20,0.12) 45%, rgba(24,12,7,0.3)); }
body[data-zone="3"] .journey__grade { background: linear-gradient(to top, rgba(13,12,14,0.8), rgba(13,12,14,0.1) 45%, rgba(13,12,14,0.35)); }
body[data-zone="4"] .journey__grade { background: linear-gradient(to top, rgba(19,16,9,0.8), rgba(90,65,20,0.12) 45%, rgba(19,16,9,0.35)); }

/* floating spice particles */
.journey__particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.journey__particles span {
  position: absolute; bottom: -8px;
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--gold-bright);
  opacity: 0;
  animation: rise linear infinite;
  box-shadow: 0 0 8px rgba(236,209,142,0.8);
}
@keyframes rise {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  12% { opacity: 0.7; }
  100% { transform: translateY(-108vh) translateX(var(--drift, 24px)); opacity: 0; }
}

/* ---------- 6. Panels ---------- */
.panel {
  position: absolute; inset: 0; z-index: var(--z-panel);
  display: flex; align-items: center;
  padding: 0 6vw;
  opacity: 0; visibility: hidden;
  transition: opacity 0.6s var(--ease), visibility 0.6s;
  pointer-events: none;
}
.panel.is-active { opacity: 1; visibility: visible; pointer-events: auto; }
.panel__inner { max-width: 620px; padding: 2.4rem 2.6rem; }
.panel__inner--left { margin-right: auto; }
.panel__inner--right { margin-left: auto; }
.panel__inner--center { margin-inline: auto; text-align: center; }
.panel--arrival { text-align: left; }
.panel--arrival .panel__inner { max-width: 760px; padding: 0; background: none; border: 0; box-shadow: none; backdrop-filter: none; }
.panel__title {
  font-size: clamp(3rem, 8.5vw, 6.4rem); font-weight: 700; letter-spacing: 0.04em;
  color: var(--ivory); text-shadow: 0 6px 50px rgba(0,0,0,0.65);
}
.panel__title em { font-style: italic; color: var(--gold-bright); }
.panel__sub { max-width: 520px; margin-top: var(--s3); font-size: clamp(1rem, 1.6vw, 1.15rem); color: var(--ivory-soft); }
.panel__actions { display: flex; flex-wrap: wrap; gap: var(--s2); margin-top: var(--s4); }
.panel__micro { margin-top: var(--s3); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
.panel__copy { color: var(--ivory-soft); font-size: 0.98rem; }
.panel__scrollhint {
  display: flex; align-items: center; gap: 0.7rem;
  margin-top: var(--s5);
  font-size: 0.68rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold);
}
.panel__scrollhint span {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: hintline 2.2s var(--ease) infinite;
}
@keyframes hintline { 0% { transform: scaleY(0); transform-origin: top; } 60% { transform: scaleY(1); } 100% { transform: scaleY(0); transform-origin: bottom; } }

.factcards {
  position: absolute; right: 6vw; bottom: 10vh;
  display: grid; gap: 0.9rem; max-width: 320px;
}
.fact { padding: 1.1rem 1.3rem; }
.fact b { font-family: var(--font-display); font-size: 1.4rem; color: var(--gold-bright); }
.fact p { font-size: 0.82rem; color: var(--ivory-soft); }

.callouts { margin-top: var(--s3); display: grid; gap: 0.55rem; }
.callouts li {
  display: flex; align-items: center; gap: 0.7rem;
  font-size: 0.85rem; letter-spacing: 0.04em; color: var(--ivory-soft);
}
.callouts li::before { content: "◆"; font-size: 0.5rem; color: var(--chili); }

.sauce-line { margin-top: var(--s3); }
.sauce-line svg { width: min(300px, 60vw); height: 40px; margin-inline: auto; }
.sauce-path { stroke-dasharray: 400; stroke-dashoffset: 400; }
.panel.is-active .sauce-path { animation: sauce 2.2s var(--ease) 0.4s forwards; }
@keyframes sauce { to { stroke-dashoffset: 0; } }

/* ---------- 7. Journey meter ---------- */
.meter {
  position: fixed; right: 1.6rem; top: 50%; transform: translateY(-50%);
  z-index: var(--z-meter);
  display: flex; gap: 0.9rem; align-items: stretch;
}
.meter__line { position: relative; width: 2px; border-radius: 2px; background: rgba(244,234,216,0.15); }
.meter__progress {
  position: absolute; top: 0; left: 0; width: 100%; height: 0%;
  border-radius: 2px;
  background: linear-gradient(to bottom, var(--gold-bright), var(--gold));
  box-shadow: 0 0 12px rgba(236,209,142,0.6);
  transition: height 0.2s linear;
}
.meter__labels { display: flex; flex-direction: column; justify-content: space-between; padding: 0.1rem 0; }
.meter__labels li {
  font-size: 0.6rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(244,234,216,0.35);
  transition: color 0.4s, text-shadow 0.4s;
  writing-mode: horizontal-tb;
  padding: 0.35rem 0;
}
.meter__labels li.is-active { color: var(--gold-bright); text-shadow: 0 0 14px rgba(236,209,142,0.5); }
.meter__particles { position: absolute; inset: -10px; pointer-events: none; }
.meter__particles span {
  position: absolute; width: 3px; height: 3px; border-radius: 50%;
  background: var(--gold-bright); opacity: 0;
  animation: meterspark 4s ease-in-out infinite;
}
.meter__particles span:nth-child(1) { left: -6px; top: 12%; animation-delay: 0s; }
.meter__particles span:nth-child(2) { left: 8px;  top: 30%; animation-delay: 0.9s; }
.meter__particles span:nth-child(3) { left: -4px; top: 48%; animation-delay: 1.6s; }
.meter__particles span:nth-child(4) { left: 10px; top: 62%; animation-delay: 2.3s; }
.meter__particles span:nth-child(5) { left: -7px; top: 78%; animation-delay: 3s; }
.meter__particles span:nth-child(6) { left: 6px;  top: 92%; animation-delay: 3.5s; }
@keyframes meterspark { 0%,100% { opacity: 0; transform: translateY(0); } 50% { opacity: 0.8; transform: translateY(-8px); } }

/* ---------- 8. Floating reserve ---------- */
.float-reserve {
  position: fixed; left: 1.6rem; bottom: 1.6rem; z-index: var(--z-float);
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: #241a08;
  background: linear-gradient(120deg, var(--gold-bright), var(--gold));
  padding: 0.85em 1.7em; border-radius: 100px;
  box-shadow: var(--shadow-gold);
  opacity: 0; transform: translateY(12px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), box-shadow 0.35s;
  animation: pulse 3.4s var(--ease) infinite;
}
.float-reserve.is-visible { opacity: 1; transform: none; }
.float-reserve:hover { box-shadow: 0 14px 40px rgba(201,163,92,0.55); }

/* ---------- 9. Sections after the journey ---------- */
.section { position: relative; padding: var(--s6) 0; z-index: 2; }
.section--marble {
  background:
    radial-gradient(1000px 400px at 85% -5%, rgba(201,163,92,0.08), transparent),
    linear-gradient(160deg, #121014, var(--marble) 70%);
}
.section--charcoal {
  background:
    radial-gradient(900px 420px at 12% -10%, rgba(201,163,92,0.09), transparent),
    linear-gradient(160deg, #191419, var(--charcoal) 75%);
}
.section__head { max-width: 700px; margin-bottom: var(--s5); }
.section__lede { margin-top: var(--s2); color: var(--muted); font-size: 1rem; }

.grid { display: grid; gap: 1.5rem; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--5 { grid-template-columns: repeat(5, 1fr); }

/* ---------- 10. Dish showcase ---------- */
.dishes {
  display: flex; gap: 1.6rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0.5rem 6vw 1.6rem;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
}
.dishes::-webkit-scrollbar { height: 6px; }
.dishes::-webkit-scrollbar-thumb { background: rgba(201,163,92,0.5); border-radius: 3px; }
.dish {
  flex: 0 0 min(360px, 82vw);
  scroll-snap-align: center;
  background: linear-gradient(160deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015));
  border: 1px solid rgba(201,163,92,0.25);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.5s var(--ease), border-color 0.5s, box-shadow 0.5s;
}
.dish:hover { transform: translateY(-10px); border-color: rgba(236,209,142,0.6); box-shadow: var(--shadow-card), 0 0 34px rgba(201,163,92,0.2); }
.dish__media { position: relative; aspect-ratio: 3/2; overflow: hidden; }
.dish__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.dish:hover .dish__media img { transform: scale(1.07); }
.dish__course {
  position: absolute; top: 0.9rem; left: 0.9rem;
  font-family: var(--font-display); font-style: italic; font-size: 0.95rem;
  color: var(--gold-bright);
  background: rgba(10,10,14,0.6); backdrop-filter: blur(6px);
  border: 1px solid rgba(201,163,92,0.35);
  padding: 0.2em 0.9em; border-radius: 100px;
}
.dish__body { padding: 1.4rem 1.5rem 1.6rem; }
.dish__body h3 { font-size: 1.5rem; color: var(--ivory); margin-bottom: 0.35rem; }
.dish__body p { font-size: 0.86rem; color: var(--muted); }
.dish__notes {
  margin-top: 0.9rem; display: flex; flex-wrap: wrap; gap: 0.4rem;
}
.dish__notes span {
  font-size: 0.62rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold); border: 1px solid rgba(201,163,92,0.35);
  padding: 0.3em 0.85em; border-radius: 100px;
}
.dish__pair { margin-top: 0.8rem; font-size: 0.76rem; font-style: italic; color: var(--ivory-soft); }
.dishes__hint { text-align: center; font-size: 0.68rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--muted); margin-top: 0.5rem; }

/* ---------- 11. Experience / growth cards ---------- */
.xcard, .gcard {
  background: linear-gradient(160deg, rgba(255,255,255,0.045), rgba(255,255,255,0.012));
  border: 1px solid rgba(201,163,92,0.2);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem;
  transition: transform 0.4s var(--ease), border-color 0.4s, background 0.4s;
}
.xcard:hover, .gcard:hover { transform: translateY(-6px); border-color: rgba(236,209,142,0.55); background: rgba(201,163,92,0.06); }
.xcard__icon, .gcard__icon { font-size: 1.4rem; margin-bottom: 0.7rem; }
.xcard h3, .gcard h3 { font-family: var(--font-body); font-size: 0.95rem; font-weight: 600; color: var(--ivory); margin-bottom: 0.35rem; }
.xcard p, .gcard p { font-size: 0.8rem; color: var(--muted); line-height: 1.55; }

.feature-img { margin-bottom: var(--s5); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); position: relative; border: 1px solid rgba(201,163,92,0.2); }
.feature-img img { width: 100%; aspect-ratio: 16/7.5; object-fit: cover; }
.feature-img figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 2.2rem 2rem 1.2rem;
  background: linear-gradient(to top, rgba(10,10,14,0.85), transparent);
  font-size: 0.84rem; letter-spacing: 0.05em; color: var(--ivory-soft);
}

/* ---------- 12. Private dining ---------- */
.private { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s5); align-items: center; }
.private__img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); border: 1px solid rgba(201,163,92,0.25); }
.private__img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.private__options { margin: var(--s3) 0 var(--s4); display: grid; gap: 0.6rem; }
.private__options li { display: flex; align-items: center; gap: 0.7rem; font-size: 0.9rem; color: var(--ivory-soft); }
.private__options li::before { content: "—"; color: var(--gold); }

/* ---------- 13. Reservation CTA ---------- */
.cta { position: relative; padding: calc(var(--s6) * 1.4) 0; overflow: hidden; z-index: 2; }
.cta__bg { position: absolute; inset: 0; }
.cta__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta__overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(10,10,14,0.75), rgba(10,10,14,0.55) 50%, rgba(10,10,14,0.85)); }
.cta__content { position: relative; z-index: 2; text-align: center; }
.cta__content h2 { font-size: clamp(2.4rem, 6vw, 4.6rem); text-shadow: 0 6px 44px rgba(0,0,0,0.6); }
.cta__content > p { max-width: 520px; margin: var(--s3) auto var(--s4); color: var(--ivory-soft); }
.cta__actions { display: flex; flex-wrap: wrap; gap: var(--s2); justify-content: center; margin-bottom: var(--s3); }

/* ---------- 14. Footer ---------- */
.footer { position: relative; z-index: 2; background: #08070a; color: var(--muted); padding: var(--s5) 0 var(--s3); border-top: 1px solid rgba(201,163,92,0.15); }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 0.9fr 0.9fr 1.2fr; gap: var(--s4); }
.footer h4 { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.8rem; }
.footer p, .footer a { font-size: 0.84rem; line-height: 2; }
.footer a:hover { color: var(--gold-bright); }
.footer__tag { margin-top: 0.8rem; max-width: 38ch; }
.footer__social { display: flex; gap: 0.7rem; margin-top: 1.1rem; }
.footer__social a {
  display: grid; place-items: center; width: 38px; height: 38px;
  border: 1px solid rgba(244,234,216,0.16); border-radius: 50%;
  transition: border-color 0.3s, color 0.3s, transform 0.3s var(--ease);
}
.footer__social a:hover { border-color: var(--gold); color: var(--gold-bright); transform: translateY(-3px); }
.footer__form { display: flex; gap: 0.6rem; margin-top: 0.9rem; }
.footer__form input {
  flex: 1; min-width: 0; padding: 0.75em 1.1em;
  border-radius: 100px; border: 1px solid rgba(244,234,216,0.18);
  background: rgba(244,234,216,0.05); color: var(--ivory);
  font-family: var(--font-body); font-size: 0.85rem;
}
.footer__form input:focus { outline: none; border-color: var(--gold); }
.footer__legal { margin-top: var(--s4); padding-top: var(--s3); border-top: 1px solid rgba(244,234,216,0.08); display: grid; gap: 0.4rem; }
.footer__legal p { font-size: 0.72rem; color: #6d655a; line-height: 1.7; }

/* ---------- 15. Reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.85s var(--ease), transform 0.85s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn--pulse, .float-reserve, .meter__particles span, .journey__particles span, .panel__scrollhint span { animation: none; }
}

/* ---------- 16. Responsive ---------- */
@media (max-width: 1220px) {
  .nav__menu { gap: 0.85rem; }
  .nav__menu a { font-size: 0.66rem; }
  .nav__cta { padding: 0.8em 1.5em; font-size: 0.74rem; }
}
@media (max-width: 1080px) {
  .grid--5 { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .factcards { position: static; margin: 1.2rem 6vw 0 auto; max-width: 420px; }
  .panel { flex-direction: column; justify-content: center; align-items: flex-start; }
}
@media (max-width: 880px) {
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .private { grid-template-columns: 1fr; }
  .meter { right: 0.7rem; }
  .meter__labels li { font-size: 0.52rem; letter-spacing: 0.16em; }
  .nav__menu {
    position: fixed; inset: 0 0 0 auto; width: min(320px, 84vw);
    flex-direction: column; gap: 0.3rem;
    background: rgba(8, 7, 10, 0.97); backdrop-filter: blur(18px);
    padding: 5.5rem 2rem 2rem;
    transform: translateX(100%);
    transition: transform 0.45s var(--ease);
    border-left: 1px solid rgba(201,163,92,0.25);
  }
  .nav__menu.is-open { transform: none; }
  .nav__menu a { font-size: 0.92rem; padding: 0.65rem 0; }
  .nav__cta { display: none; }
  .nav__cta-mobile { display: inline-block; margin-top: 1rem; }
  .nav__burger { display: flex; z-index: 110; }
  .journey { height: 400vh; }
  .panel__inner { padding: 1.8rem 1.6rem; max-width: 92vw; }
}
@media (max-width: 600px) {
  .grid--3, .grid--5 { grid-template-columns: 1fr; }
  .panel__actions .btn, .cta__actions .btn { width: 100%; }
  .footer__grid { grid-template-columns: 1fr; gap: var(--s3); }
  .float-reserve { left: 50%; transform: translateX(-50%) translateY(12px); }
  .float-reserve.is-visible { transform: translateX(-50%); }
}
