/* =====================================================================
   ZAHID RESTAURANT — NIHARI  |  Global Stylesheet
   Palette pulled from the brand's own artwork: deep maroon, gold,
   mustard and cream.
   ===================================================================== */

/* ---------- 1. TOKENS ---------- */
:root {
  --ink:         #0c0607;
  --ink-2:       #150a0c;
  --ink-3:       #1e0f12;
  --maroon:      #4e0b14;
  --maroon-2:    #6b0f1c;
  --maroon-soft: #7d1a24;
  --gold:        #d4a537;
  --gold-2:      #f0d089;
  --gold-3:      #a67c1e;
  --mustard:     #f7c42a;
  --chili:       #c2321f;
  --cream:       #f6eee3;
  --cream-dim:   #cbb9a5;
  --muted:       rgba(246, 238, 227, .62);
  --muted-2:     rgba(246, 238, 227, .40);
  --line:        rgba(212, 165, 55, .22);
  --line-soft:   rgba(246, 238, 227, .10);

  --grad-gold: linear-gradient(100deg, #a67c1e 0%, #f0d089 32%, #d4a537 54%, #fbeab6 74%, #a67c1e 100%);
  --grad-maroon: linear-gradient(160deg, #4e0b14 0%, #24080d 60%, #0c0607 100%);

  --f-display: "Playfair Display", "Times New Roman", serif;
  --f-body: "Jost", "Segoe UI", system-ui, sans-serif;
  --f-urdu: "Noto Nastaliq Urdu", serif;

  --shell: min(1280px, 92vw);
  --r-sm: 6px;
  --r-md: 14px;
  --r-lg: 26px;

  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --header-h: 92px;
}

/* ---------- 2. RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--f-body);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.is-locked { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 700;
  line-height: 1.08;
  margin: 0;
  letter-spacing: -.01em;
}
p { margin: 0 0 1em; }
::selection { background: var(--gold); color: var(--ink); }

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

/* ---------- 3. SHARED ATOMS ---------- */
.shell { width: var(--shell); margin-inline: auto; }
.gold-text {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 220% auto;
  animation: shimmer 7s linear infinite;
}
@keyframes shimmer { to { background-position: 220% center; } }

.urdu { font-family: var(--f-urdu); line-height: 2.2; direction: rtl; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.eyebrow::before {
  content: "";
  width: 34px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.eyebrow.is-center::after {
  content: "";
  width: 34px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.section {
  position: relative;
  padding: clamp(76px, 9vw, 132px) 0;
}
.section-head { max-width: 700px; margin-bottom: 60px; }
.section-head.is-center { margin-inline: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(2.15rem, 4.6vw, 3.9rem);
  margin-bottom: 18px;
}
.section-head p { color: var(--muted); font-size: 1.03rem; }

.divider-orn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 26px 0;
}
.divider-orn span { height: 1px; width: 70px; background: linear-gradient(90deg, transparent, var(--gold)); }
.divider-orn span:last-child { background: linear-gradient(90deg, var(--gold), transparent); }
.divider-orn i {
  width: 7px; height: 7px;
  background: var(--gold);
  transform: rotate(45deg);
}

/* buttons */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 16px 34px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  border-radius: 100px;
  overflow: hidden;
  isolation: isolate;
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out), color .35s;
  will-change: transform;
}
.btn svg { width: 15px; height: 15px; transition: transform .4s var(--ease-out); }
.btn:hover svg { transform: translateX(4px); }

.btn-gold { background: var(--grad-gold); color: #2a1405; box-shadow: 0 12px 34px -14px rgba(212,165,55,.85); }
.btn-gold::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 20%, rgba(255,255,255,.7) 50%, transparent 80%);
  transform: translateX(-130%);
  transition: transform .85s var(--ease-out);
  z-index: -1;
}
.btn-gold:hover::after { transform: translateX(130%); }
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 20px 42px -14px rgba(212,165,55,.95); }

.btn-ghost { border: 1px solid var(--line); color: var(--cream); }
.btn-ghost::after {
  content: "";
  position: absolute; inset: 0;
  background: var(--grad-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .55s var(--ease-out);
  z-index: -1;
}
.btn-ghost:hover { color: #2a1405; border-color: transparent; transform: translateY(-3px); }
.btn-ghost:hover::after { transform: scaleX(1); }

.btn-sm { padding: 12px 24px; font-size: 11.5px; }

/* film grain + vignette */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 900;
  opacity: .045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

/* ---------- 4. PRELOADER ---------- */
.loader {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  background: var(--grad-maroon);
  transition: opacity .7s var(--ease), visibility .7s;
}
.loader.is-done { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; }
.loader-inner img { width: 118px; margin: 0 auto 22px; animation: floaty 2.6s ease-in-out infinite; }
.loader-word {
  font-family: var(--f-display);
  font-size: 13px;
  letter-spacing: .48em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 16px;
}
.loader-bar { width: 190px; height: 2px; background: rgba(246,238,227,.14); margin-inline: auto; overflow: hidden; }
.loader-bar i { display: block; height: 100%; width: 40%; background: var(--grad-gold); animation: loaderRun 1.1s var(--ease) infinite; }
@keyframes loaderRun { 0% { transform: translateX(-110%); } 100% { transform: translateX(360%); } }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ---------- 5. SCROLL PROGRESS ---------- */
.progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0;
  background: var(--grad-gold);
  z-index: 1100;
  transition: width .1s linear;
}

/* ---------- 6. HEADER / NAV ---------- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background .5s var(--ease), backdrop-filter .5s, border-color .5s, transform .5s var(--ease);
  border-bottom: 1px solid transparent;
}
.header::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(12,6,7,.82), transparent);
  opacity: 1;
  transition: opacity .5s;
}
.header.is-stuck {
  background: rgba(12, 6, 7, .86);
  backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: var(--line);
}
.header.is-stuck::before { opacity: 0; }
.header.is-hidden { transform: translateY(-104%); }

.header-inner {
  position: relative;
  width: var(--shell);
  margin-inline: auto;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  transition: height .45s var(--ease);
}
.header.is-stuck .header-inner { height: 74px; }

.brand { display: flex; align-items: center; gap: 13px; flex-shrink: 0; }
.brand img { width: 46px; transition: width .45s var(--ease); filter: drop-shadow(0 3px 10px rgba(0,0,0,.55)); }
.header.is-stuck .brand img { width: 38px; }
.brand-txt { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--f-display);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: .02em;
}
.brand-sub {
  font-size: 9px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 5px;
}

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  position: relative;
  padding: 10px 15px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .35s;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 15px; right: 15px; bottom: 2px;
  height: 1px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .45s var(--ease-out);
}
.nav a:hover, .nav a.is-active { color: var(--cream); }
.nav a:hover::after, .nav a.is-active::after { transform: scaleX(1); transform-origin: left; }
.nav a.is-active { color: var(--gold-2); }

.header-cta { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

/* burger */
.burger {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  position: relative;
}
.burger span {
  position: absolute;
  left: 14px;
  width: 18px; height: 1.5px;
  background: var(--cream);
  transition: transform .4s var(--ease-out), opacity .25s, width .4s;
}
.burger span:nth-child(1) { top: 17px; }
.burger span:nth-child(2) { top: 22px; width: 12px; }
.burger span:nth-child(3) { top: 27px; }
.burger.is-open span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

/* drawer */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--grad-maroon);
  padding: calc(var(--header-h) + 30px) 8vw 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  clip-path: circle(0% at calc(100% - 52px) 46px);
  transition: clip-path .8s var(--ease-out);
  overflow-y: auto;
}
.drawer.is-open { clip-path: circle(150% at calc(100% - 52px) 46px); }
.drawer a.d-link {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 14px 0;
  font-family: var(--f-display);
  font-size: clamp(1.9rem, 8vw, 2.9rem);
  border-bottom: 1px solid var(--line-soft);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .5s var(--ease), transform .6s var(--ease-out), color .3s;
}
.drawer.is-open a.d-link { opacity: 1; transform: none; }
.drawer a.d-link:hover { color: var(--gold-2); }
.drawer a.d-link i {
  font-style: normal;
  font-family: var(--f-body);
  font-size: 11px;
  letter-spacing: .2em;
  color: var(--gold);
}
.drawer-foot { margin-top: 34px; display: grid; gap: 12px; color: var(--muted); font-size: 14px; }
.drawer-foot a:hover { color: var(--gold-2); }

/* ---------- 7. HERO ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 46px) 0 70px;
  overflow: hidden;
  background: radial-gradient(120% 90% at 82% 12%, #5c1019 0%, #2a0a10 42%, #0c0607 78%);
}
.hero-glow {
  position: absolute;
  width: 60vw; height: 60vw;
  right: -12vw; top: -18vw;
  background: radial-gradient(circle, rgba(212,165,55,.20), transparent 62%);
  filter: blur(20px);
  pointer-events: none;
  animation: pulseGlow 9s ease-in-out infinite;
}
@keyframes pulseGlow { 0%,100% { opacity: .75; transform: scale(1); } 50% { opacity: 1; transform: scale(1.09); } }

.hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: clamp(30px, 5vw, 74px);
}
.hero-title {
  font-size: clamp(3rem, 8.2vw, 6.6rem);
  line-height: .95;
  letter-spacing: -.025em;
  margin-bottom: 12px;
}
.hero-title em { font-style: italic; font-weight: 400; }
.hero-urdu {
  font-family: var(--f-urdu);
  font-size: clamp(1.1rem, 2.4vw, 1.6rem);
  color: var(--gold-2);
  direction: rtl;
  margin: 6px 0 20px;
  line-height: 2.4;
}
.hero-lead {
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  max-width: 50ch;
  margin-bottom: 34px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 42px; }
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 34px;
  padding-top: 26px;
  border-top: 1px solid var(--line-soft);
}
.hero-meta div span {
  display: block;
  font-family: var(--f-display);
  font-size: 1.65rem;
  color: var(--gold-2);
}
.hero-meta div small {
  font-size: 10.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted-2);
}

/* hero visual */
.hero-visual { position: relative; }
.hero-plate {
  position: relative;
  border-radius: 50% 50% 46% 54% / 52% 48% 52% 48%;
  overflow: hidden;
  box-shadow: 0 50px 90px -30px rgba(0,0,0,.85), 0 0 0 1px rgba(212,165,55,.2);
  transform: translateZ(0);
}
.hero-plate img { width: 100%; height: auto; transform: scale(1.06); transition: transform 1.2s var(--ease-out); }
.hero-plate:hover img { transform: scale(1.12); }
.hero-ring {
  position: absolute;
  inset: -5.5%;
  border: 1px dashed rgba(212,165,55,.36);
  border-radius: 50%;
  animation: spin 46s linear infinite;
  pointer-events: none;
}
.hero-ring::after {
  content: "";
  position: absolute;
  top: 50%; left: -6px;
  width: 11px; height: 11px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 20px 4px rgba(212,165,55,.75);
}
@keyframes spin { to { transform: rotate(360deg); } }

.hero-badge {
  position: absolute;
  background: rgba(20,9,11,.82);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 11px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 16px 34px -16px rgba(0,0,0,.9);
}
.hero-badge b { font-family: var(--f-display); color: var(--gold-2); font-size: 15px; }
.hero-badge-1 { top: 6%; left: -6%; animation: floaty 5s ease-in-out infinite; }
.hero-badge-2 { bottom: 12%; right: -5%; animation: floaty 6.4s ease-in-out infinite .8s; }

/* steam */
.steam { position: absolute; top: 6%; left: 50%; transform: translateX(-50%); width: 150px; height: 190px; pointer-events: none; z-index: 4; }
.steam i {
  position: absolute;
  bottom: 0;
  width: 26px; height: 26px;
  background: radial-gradient(circle, rgba(255,255,255,.5), transparent 68%);
  border-radius: 50%;
  filter: blur(7px);
  animation: rise 6s ease-in infinite;
  opacity: 0;
}
.steam i:nth-child(1) { left: 16%; animation-delay: 0s; }
.steam i:nth-child(2) { left: 44%; animation-delay: 1.5s; }
.steam i:nth-child(3) { left: 70%; animation-delay: 2.9s; }
.steam i:nth-child(4) { left: 30%; animation-delay: 4.1s; }
@keyframes rise {
  0%   { transform: translateY(0) scale(.5); opacity: 0; }
  18%  { opacity: .75; }
  100% { transform: translateY(-170px) scale(2.4) translateX(22px); opacity: 0; }
}

/* embers */
.embers { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 2; }
.embers i {
  position: absolute;
  bottom: -12px;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 9px 2px rgba(212,165,55,.7);
  animation: ember linear infinite;
  opacity: 0;
}
@keyframes ember {
  0%   { transform: translateY(0) translateX(0) scale(.6); opacity: 0; }
  12%  { opacity: .9; }
  100% { transform: translateY(-104vh) translateX(60px) scale(1.25); opacity: 0; }
}

.scroll-cue {
  position: absolute;
  bottom: 26px; left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.scroll-cue i { width: 1px; height: 46px; background: linear-gradient(180deg, var(--gold), transparent); }

/* ---------- 8. MARQUEE ---------- */
.marquee {
  position: relative;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: linear-gradient(90deg, #1a080c, #350d14 50%, #1a080c);
  padding: 17px 0;
}
.marquee-track { display: flex; width: max-content; animation: slide 34s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee span {
  display: inline-flex;
  align-items: center;
  gap: 26px;
  padding-inline: 26px;
  font-family: var(--f-display);
  font-size: clamp(1rem, 1.6vw, 1.4rem);
  letter-spacing: .06em;
  white-space: nowrap;
  color: var(--cream-dim);
}
.marquee span b { color: var(--gold-2); font-weight: 700; }
.marquee span::after { content: "◆"; font-size: 8px; color: var(--gold); }
@keyframes slide { to { transform: translateX(-50%); } }

/* ---------- 9. DISH CARDS ---------- */
.dish-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.dish {
  position: relative;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: linear-gradient(170deg, #1b0b0f, #100708);
  transition: border-color .5s, transform .6s var(--ease-out), box-shadow .6s var(--ease-out);
  transform-style: preserve-3d;
}
.dish:hover { border-color: var(--line); box-shadow: 0 34px 60px -30px rgba(0,0,0,.9); }
.dish-media { position: relative; aspect-ratio: 1 / 1; overflow: hidden; }
.dish-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease-out), filter .6s;
  filter: saturate(1.02);
}
.dish:hover .dish-media img { transform: scale(1.09); filter: saturate(1.15); }
.dish-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(12,6,7,.9));
}
.dish-tag {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 2;
  padding: 6px 14px;
  border-radius: 100px;
  background: rgba(12,6,7,.72);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-2);
}
.dish-body { padding: 24px 26px 28px; position: relative; z-index: 2; }
.dish-body h3 { font-size: 1.42rem; margin-bottom: 8px; }
.dish-body p { color: var(--muted); font-size: .93rem; margin-bottom: 18px; }
.dish-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
}
.dish-price { font-family: var(--f-display); font-size: 1.3rem; color: var(--gold-2); }
.dish-price small { font-size: .72rem; color: var(--muted-2); letter-spacing: .12em; }

/* ---------- 10. STATS ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  overflow: hidden;
}
.stat { background: var(--ink-2); padding: 38px 26px; text-align: center; transition: background .5s; }
.stat:hover { background: var(--ink-3); }
.stat b {
  display: block;
  font-family: var(--f-display);
  font-size: clamp(2.1rem, 3.6vw, 3.1rem);
  color: var(--gold-2);
  line-height: 1;
}
.stat span {
  display: block;
  margin-top: 12px;
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--muted-2);
}

/* ---------- 11. SPLIT / STORY ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(34px, 5.4vw, 82px);
}
.split.is-flip .split-media { order: 2; }
.split-media { position: relative; }
.split-media img { border-radius: var(--r-lg); width: 100%; }
.split-media::before {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  z-index: -1;
}
.split-note {
  position: absolute;
  bottom: -26px; right: -18px;
  background: var(--grad-gold);
  color: #2a1405;
  padding: 18px 24px;
  border-radius: var(--r-md);
  max-width: 210px;
  box-shadow: 0 24px 44px -20px rgba(0,0,0,.9);
}
.split-note b { display: block; font-family: var(--f-display); font-size: 1.7rem; line-height: 1; }
.split-note span { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; }

.check-list { display: grid; gap: 14px; margin: 26px 0 34px; }
.check-list li { display: flex; gap: 14px; align-items: flex-start; color: var(--muted); }
.check-list li b { color: var(--cream); font-weight: 500; }
.check-list svg { width: 19px; height: 19px; flex-shrink: 0; margin-top: 4px; color: var(--gold); }

/* ---------- 12. PROCESS STEPS ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 26px; }
.step {
  position: relative;
  padding: 34px 28px;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  background: linear-gradient(170deg, #180a0d, #0e0607);
  transition: transform .55s var(--ease-out), border-color .5s;
  overflow: hidden;
}
.step::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .6s var(--ease-out);
}
.step:hover { transform: translateY(-8px); border-color: var(--line); }
.step:hover::before { transform: scaleX(1); }
.step i {
  display: block;
  font-family: var(--f-display);
  font-style: normal;
  font-size: 3.2rem;
  line-height: 1;
  color: rgba(212,165,55,.24);
  margin-bottom: 16px;
}
.step h3 { font-size: 1.22rem; margin-bottom: 10px; }
.step p { color: var(--muted); font-size: .93rem; margin: 0; }

/* ---------- 12b. TIMELINE ---------- */
.timeline { position: relative; max-width: 880px; margin-inline: auto; padding-left: 30px; }
.timeline::before {
  content: "";
  position: absolute;
  left: 5px; top: 8px; bottom: 8px;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
}
.tl-row { position: relative; padding: 0 0 46px 34px; }
.tl-row::before {
  content: "";
  position: absolute;
  left: -25px; top: 9px;
  width: 11px; height: 11px;
  border-radius: 50%;
  background: var(--ink);
  border: 2px solid var(--gold);
  box-shadow: 0 0 0 5px rgba(212,165,55,.12);
}
.tl-row:last-child { padding-bottom: 0; }
.tl-year {
  font-family: var(--f-display);
  font-size: 1.05rem;
  letter-spacing: .18em;
  color: var(--gold);
  margin-bottom: 8px;
}
.tl-row h3 { font-size: 1.44rem; margin-bottom: 10px; }
.tl-row p { color: var(--muted); margin: 0; font-size: .97rem; }

/* pull-quote */
.pullquote {
  max-width: 880px;
  margin-inline: auto;
  text-align: center;
  padding: clamp(38px, 5vw, 64px);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: linear-gradient(160deg, rgba(110,16,28,.36), rgba(12,6,7,.4));
}
.pullquote p {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(1.25rem, 2.6vw, 1.95rem);
  line-height: 1.5;
  margin-bottom: 18px;
}
.pullquote span { font-size: 11px; letter-spacing: .26em; text-transform: uppercase; color: var(--gold); }

/* ---------- 13. TESTIMONIALS ---------- */
.quotes { position: relative; max-width: 860px; margin-inline: auto; text-align: center; }
.quote-view { position: relative; min-height: 250px; }
.quote {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s var(--ease), transform .7s var(--ease-out);
  pointer-events: none;
}
.quote.is-on { opacity: 1; transform: none; pointer-events: auto; position: relative; }
.quote p {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(1.25rem, 2.5vw, 1.85rem);
  line-height: 1.55;
  color: var(--cream);
  margin-bottom: 24px;
}
.quote cite { font-style: normal; font-size: 12px; letter-spacing: .24em; text-transform: uppercase; color: var(--gold); }
.stars { display: flex; justify-content: center; gap: 5px; margin-bottom: 22px; color: var(--gold); }
.stars svg { width: 17px; height: 17px; }
.quote-nav { display: flex; justify-content: center; gap: 10px; margin-top: 34px; }
.quote-nav button {
  width: 34px; height: 5px;
  border-radius: 100px;
  background: rgba(246,238,227,.16);
  transition: background .4s, width .4s var(--ease-out);
}
.quote-nav button.is-on { background: var(--grad-gold); width: 54px; }

/* ---------- 14. CTA BAND ---------- */
.cta-band {
  position: relative;
  padding: clamp(64px, 8vw, 108px) 0;
  background:
    linear-gradient(90deg, rgba(12,6,7,.94) 8%, rgba(12,6,7,.62) 55%, rgba(12,6,7,.9)),
    url("../img/banner-wide.jpg") center/cover fixed;
  border-block: 1px solid var(--line);
  text-align: center;
}
.cta-band h2 { font-size: clamp(2rem, 4.6vw, 3.4rem); margin-bottom: 16px; }
.cta-band p { color: var(--muted); max-width: 56ch; margin: 0 auto 30px; }
.cta-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }

/* ---------- 15. PAGE HERO (inner pages) ---------- */
.page-hero {
  position: relative;
  padding: calc(var(--header-h) + 74px) 0 78px;
  text-align: center;
  overflow: hidden;
  background: radial-gradient(90% 120% at 50% -10%, #5c1019 0%, #26080d 46%, #0c0607 82%);
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.page-hero h1 { font-size: clamp(2.5rem, 6.4vw, 4.6rem); margin-bottom: 16px; }
.page-hero p { color: var(--muted); max-width: 58ch; margin-inline: auto; }
.crumbs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.crumbs a:hover { color: var(--gold-2); }
.crumbs span { color: var(--gold); }

/* ---------- 16. MENU PAGE ---------- */
.filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 52px;
}
.filters button {
  padding: 11px 22px;
  border: 1px solid var(--line-soft);
  border-radius: 100px;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .35s, border-color .35s, background .35s, transform .35s var(--ease-out);
}
.filters button:hover { color: var(--cream); border-color: var(--line); transform: translateY(-2px); }
.filters button.is-on { background: var(--grad-gold); color: #2a1405; border-color: transparent; }

.menu-block {
  margin-bottom: 70px;
  transition: opacity .5s var(--ease), transform .5s var(--ease-out);
}
.menu-block.is-hidden { display: none; }
.menu-block-head { display: flex; align-items: center; gap: 20px; margin-bottom: 34px; }
.menu-block-head h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); white-space: nowrap; }
.menu-block-head i { flex: 1; height: 1px; background: linear-gradient(90deg, var(--line), transparent); }
.menu-block-head span {
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
}

.menu-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(360px, 1fr)); gap: 6px 46px; }
.menu-item {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  padding: 17px 14px;
  border-radius: var(--r-sm);
  transition: background .4s, transform .4s var(--ease-out);
}
.menu-item:hover { background: rgba(212,165,55,.06); transform: translateX(5px); }
.menu-item-main { flex: 1; }
.menu-item h3 { font-size: 1.08rem; font-family: var(--f-body); font-weight: 500; letter-spacing: .01em; }
.menu-item h3 em {
  font-style: normal;
  font-size: 9.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--gold);
  padding: 3px 8px;
  border-radius: 100px;
  margin-left: 9px;
  vertical-align: middle;
}
.menu-item p { color: var(--muted-2); font-size: .86rem; margin: 4px 0 0; }
.menu-dots { flex: 1; border-bottom: 1px dotted rgba(212,165,55,.32); min-width: 24px; margin-bottom: 6px; }
.menu-price { font-family: var(--f-display); font-size: 1.15rem; color: var(--gold-2); white-space: nowrap; }

.price-note {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  max-width: 620px;
  margin: 0 auto 46px;
  padding: 16px 22px;
  border: 1px dashed var(--line);
  border-radius: var(--r-md);
  color: var(--muted-2);
  font-size: .85rem;
  text-align: left;
}
.price-note svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; margin-top: 3px; }

/* ---------- 17. GALLERY ---------- */
.gal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.gal-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-md);
  cursor: zoom-in;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--line-soft);
  transition: opacity .5s var(--ease), transform .5s var(--ease-out), border-color .5s;
}
.gal-item.is-tall { aspect-ratio: 1 / 1.32; }
.gal-item.is-wide { aspect-ratio: 1.62 / 1; grid-column: span 2; }
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease-out); }
.gal-item:hover img { transform: scale(1.08); }
.gal-item:hover { border-color: var(--line); }
.gal-item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(12,6,7,.86));
  opacity: 0;
  transition: opacity .5s;
}
.gal-item:hover::after { opacity: 1; }
.gal-cap {
  position: absolute;
  left: 22px; bottom: 20px; right: 22px;
  z-index: 2;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .45s var(--ease), transform .55s var(--ease-out);
}
.gal-item:hover .gal-cap { opacity: 1; transform: none; }
.gal-cap b { display: block; font-family: var(--f-display); font-size: 1.14rem; }
.gal-cap span { font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }
.gal-item.is-hidden { display: none; }

/* lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1150;
  display: grid;
  place-items: center;
  padding: 5vh 5vw;
  background: rgba(6,3,4,.94);
  backdrop-filter: blur(14px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .45s var(--ease), visibility .45s;
}
.lightbox.is-on { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: 100%;
  max-height: 82vh;
  border-radius: var(--r-md);
  box-shadow: 0 50px 100px -30px #000;
  transform: scale(.92);
  transition: transform .55s var(--ease-out);
}
.lightbox.is-on img { transform: scale(1); }
.lb-cap { text-align: center; margin-top: 18px; color: var(--muted); font-size: 13px; letter-spacing: .12em; text-transform: uppercase; }
.lb-btn {
  position: absolute;
  width: 52px; height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--cream);
  transition: background .35s, color .35s, transform .35s var(--ease-out);
}
.lb-btn:hover { background: var(--gold); color: var(--ink); transform: scale(1.08); }
.lb-btn svg { width: 18px; height: 18px; }
.lb-close { top: 4vh; right: 5vw; }
.lb-prev { left: 3vw; top: 50%; transform: translateY(-50%); }
.lb-next { right: 3vw; top: 50%; transform: translateY(-50%); }
.lb-prev:hover, .lb-next:hover { transform: translateY(-50%) scale(1.08); }

/* ---------- 18. LOCATIONS ---------- */
.loc-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(30px, 4vw, 60px); align-items: stretch; }
.loc-card {
  padding: 40px;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  background: linear-gradient(170deg, #1a0a0e, #0e0607);
}
.loc-card h2 { font-size: 1.9rem; margin-bottom: 6px; }
.loc-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.loc-rows { display: grid; gap: 20px; margin: 28px 0; }
.loc-row { display: flex; gap: 16px; }
.loc-row svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; margin-top: 4px; }
.loc-row small { display: block; font-size: 10.5px; letter-spacing: .22em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 4px; }
.loc-row b { font-weight: 400; color: var(--cream); font-size: 1.02rem; }
.loc-row a:hover { color: var(--gold-2); }
.map-frame {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  min-height: 460px;
}
.map-frame iframe { width: 100%; height: 100%; min-height: 460px; border: 0; filter: grayscale(.35) contrast(1.05) brightness(.86); }

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 13px 0; border-bottom: 1px solid var(--line-soft); font-size: .95rem; }
.hours-table td:last-child { text-align: right; color: var(--gold-2); font-family: var(--f-display); }
.hours-table tr:last-child td { border-bottom: 0; }

.facility-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 14px; }
.facility {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  font-size: .92rem;
  transition: border-color .4s, transform .4s var(--ease-out);
}
.facility:hover { border-color: var(--line); transform: translateY(-4px); }
.facility svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; }

/* ---------- 19. FORMS ---------- */
.form-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 4vw, 62px); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.is-full { grid-column: 1 / -1; }
.field label { font-size: 10.5px; letter-spacing: .22em; text-transform: uppercase; color: var(--muted-2); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 15px 17px;
  background: rgba(246,238,227,.035);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-sm);
  color: var(--cream);
  font: inherit;
  font-size: .96rem;
  transition: border-color .35s, background .35s, box-shadow .35s;
}
.field textarea { resize: vertical; min-height: 128px; }
.field select { appearance: none; cursor: pointer; }
.field select option { background: #1a0a0e; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(212,165,55,.06);
  box-shadow: 0 0 0 3px rgba(212,165,55,.1);
}
.field input::placeholder, .field textarea::placeholder { color: rgba(246,238,227,.28); }
.field .err { font-size: 11.5px; color: #ff8a7a; letter-spacing: .04em; min-height: 14px; }
.field.has-err input, .field.has-err select, .field.has-err textarea { border-color: #ff8a7a; }

.toast {
  position: fixed;
  left: 50%;
  bottom: 34px;
  transform: translate(-50%, 130%);
  z-index: 1160;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 26px;
  border-radius: 100px;
  background: var(--grad-gold);
  color: #2a1405;
  font-size: .92rem;
  font-weight: 500;
  box-shadow: 0 24px 50px -18px rgba(0,0,0,.9);
  transition: transform .6s var(--ease-out);
}
.toast.is-on { transform: translate(-50%, 0); }
.toast svg { width: 19px; height: 19px; }

.contact-tiles { display: grid; gap: 16px; }
.c-tile {
  display: flex;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  background: linear-gradient(170deg, #180a0d, #0e0607);
  transition: border-color .45s, transform .45s var(--ease-out);
}
.c-tile:hover { border-color: var(--line); transform: translateX(6px); }
.c-tile-ic {
  width: 46px; height: 46px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--gold);
}
.c-tile-ic svg { width: 19px; height: 19px; }
.c-tile small { display: block; font-size: 10.5px; letter-spacing: .22em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 5px; }
.c-tile b { font-weight: 400; font-size: 1.05rem; }
.c-tile p { margin: 4px 0 0; font-size: .86rem; color: var(--muted-2); }

/* FAQ */
.faq { max-width: 820px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line-soft); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  text-align: left;
  font-family: var(--f-display);
  font-size: 1.16rem;
  transition: color .35s;
}
.faq-q:hover { color: var(--gold-2); }
.faq-q i {
  position: relative;
  width: 20px; height: 20px;
  flex-shrink: 0;
}
.faq-q i::before, .faq-q i::after {
  content: "";
  position: absolute;
  top: 50%; left: 0;
  width: 100%; height: 1.5px;
  background: var(--gold);
  transition: transform .45s var(--ease-out);
}
.faq-q i::after { transform: rotate(90deg); }
.faq-item.is-open .faq-q i::after { transform: rotate(0); }
.faq-a { overflow: hidden; height: 0; transition: height .5s var(--ease-out); }
.faq-a p { color: var(--muted); padding-bottom: 24px; margin: 0; font-size: .96rem; }

/* ---------- 20. FOOTER ---------- */
.footer {
  position: relative;
  padding: 84px 0 0;
  background: linear-gradient(180deg, #12070a, #0c0607);
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 44px;
  padding-bottom: 60px;
}
.footer h4 {
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.footer-brand img { width: 82px; margin-bottom: 18px; }
.footer p { color: var(--muted); font-size: .92rem; }
.footer-links { display: grid; gap: 12px; }
.footer-links a { color: var(--muted); font-size: .94rem; transition: color .3s, padding-left .35s var(--ease-out); }
.footer-links a:hover { color: var(--gold-2); padding-left: 7px; }
.socials { display: flex; gap: 10px; margin-top: 22px; }
.socials a {
  width: 42px; height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-soft);
  border-radius: 50%;
  color: var(--muted);
  transition: color .35s, border-color .35s, transform .35s var(--ease-out), background .35s;
}
.socials a:hover { color: var(--ink); background: var(--gold); border-color: transparent; transform: translateY(-4px); }
.socials svg { width: 17px; height: 17px; }
.footer-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0 30px;
  border-top: 1px solid var(--line-soft);
  font-size: 12px;
  color: var(--muted-2);
  letter-spacing: .06em;
}

/* ---------- 21. FLOATING BITS ---------- */
.to-top {
  position: fixed;
  right: 24px; bottom: 26px;
  z-index: 950;
  width: 50px; height: 50px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(20,9,11,.86);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  color: var(--gold);
  opacity: 0;
  transform: translateY(20px) scale(.85);
  pointer-events: none;
  transition: opacity .45s var(--ease), transform .5s var(--ease-out), background .35s, color .35s;
}
.to-top.is-on { opacity: 1; transform: none; pointer-events: auto; }
.to-top:hover { background: var(--gold); color: var(--ink); }
.to-top svg { width: 17px; height: 17px; }

.call-fab { display: none; }

/* page transition curtain */
.curtain {
  position: fixed;
  inset: 0;
  z-index: 1180;
  background: var(--grad-maroon);
  transform: translateY(100%);
  pointer-events: none;
  transition: transform .62s var(--ease-out);
}
.curtain.is-on { transform: translateY(0); }

/* ---------- 22. REVEAL ---------- */
[data-reveal] {
  opacity: 0;
  transition: opacity .85s var(--ease), transform .95s var(--ease-out), filter .85s var(--ease);
  transition-delay: var(--d, 0ms);
  will-change: transform, opacity;
}
[data-reveal="up"]    { transform: translateY(38px); }
[data-reveal="down"]  { transform: translateY(-30px); }
[data-reveal="left"]  { transform: translateX(-46px); }
[data-reveal="right"] { transform: translateX(46px); }
[data-reveal="zoom"]  { transform: scale(.93); filter: blur(4px); }
[data-reveal].is-in { opacity: 1; transform: none; filter: none; }

.split-word { display: inline-block; white-space: nowrap; }
.split-char { display: inline-block; opacity: 0; transform: translateY(90%) rotate(6deg); }
.split-ready .split-char {
  animation: charIn .85s var(--ease-out) forwards;
  animation-delay: calc(var(--i) * 34ms);
}
@keyframes charIn { to { opacity: 1; transform: none; } }

/* ---------- 23. RESPONSIVE ---------- */
@media (max-width: 1080px) {
  .nav { display: none; }
  .burger { display: block; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .loc-grid { grid-template-columns: 1fr; }
  .form-wrap { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  :root { --header-h: 76px; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { order: -1; max-width: 420px; margin-inline: auto; }
  .hero-lead { margin-inline: auto; }
  .hero-actions, .hero-meta { justify-content: center; }
  .eyebrow { justify-content: center; }
  .eyebrow::after { content: ""; width: 34px; height: 1px; background: linear-gradient(90deg, var(--gold), transparent); }
  .split { grid-template-columns: 1fr; }
  .split.is-flip .split-media { order: 0; }
  .split-media::before { display: none; }
  .split-note { position: static; margin-top: 18px; max-width: none; }
  .section-head { margin-inline: auto; text-align: center; }
  .cta-band { background-attachment: scroll; }
  .gal-item.is-wide { grid-column: span 1; aspect-ratio: 1 / 1; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .menu-list { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .loc-card { padding: 28px 22px; }
  .header-cta .btn { display: none; }
  .hero-badge-1 { left: -3%; }
  .hero-badge-2 { right: -2%; }
  .to-top { bottom: 88px; }
  .call-fab {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 940;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: rgba(12,6,7,.92);
    backdrop-filter: blur(14px);
    border-top: 1px solid var(--line);
  }
  .call-fab a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 16px 8px;
    font-size: 12px;
    letter-spacing: .16em;
    text-transform: uppercase;
  }
  .call-fab a:first-child { border-right: 1px solid var(--line-soft); color: var(--gold-2); }
  .call-fab svg { width: 15px; height: 15px; }
  .footer { padding-bottom: 56px; }
}

/* ---------- 24. MOTION SAFETY ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1 !important; transform: none !important; filter: none !important; }
  .split-char { opacity: 1 !important; transform: none !important; }
  .cta-band { background-attachment: scroll; }
}
