/* =========================================================
   8TH WONDER ELITE TRAVEL — "Golden Hour" design system
   Palette pulled directly from the advisor photograph:
   night water, ember cloud, candle gold, lagoon, warm sand.
   ========================================================= */

:root {
  --ink: #06080d;
  --night: #0a1018;
  --panel: #101923;
  --panel-2: #16212d;

  --ember: #e2853c;
  --ember-soft: rgba(226, 133, 60, 0.5);
  --gold: #e9c583;
  --gold-deep: #b07f33;
  --gold-bright: #fff1cf;
  --gold-foil: linear-gradient(100deg, #fff1cf 0%, #e9c583 18%, #b07f33 34%, #f4d79c 50%, #e9c583 68%, #fff1cf 86%, #e9c583 100%);
  --lagoon: #3e9aa3;

  --sand: #f3ece2;
  --muted: rgba(243, 236, 226, 0.6);
  --faint: rgba(243, 236, 226, 0.38);
  --line: rgba(233, 197, 131, 0.26);
  --line-strong: rgba(233, 197, 131, 0.52);
  --glow: 0 0 40px -8px rgba(233, 197, 131, 0.45);

  --display: "Bodoni Moda", "Times New Roman", serif;
  --body: "Jost", "Helvetica Neue", Arial, sans-serif;
  --data: "Azeret Mono", ui-monospace, "SFMono-Regular", monospace;

  --gutter: clamp(20px, 5.5vw, 96px);
  --radius: 18px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --topbar-h: 76px;
}

/* ---------- reset ---------- */
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--sand);
  font-family: var(--body);
  font-size: 16.5px;
  line-height: 1.65;
  font-weight: 300;
  letter-spacing: 0.01em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: ""; position: fixed; inset: 0; z-index: -5; pointer-events: none;
  background:
    radial-gradient(60vw 50vw at 8% 12%, rgba(233, 197, 131, 0.075), transparent 62%),
    radial-gradient(52vw 46vw at 96% 68%, rgba(226, 133, 60, 0.07), transparent 60%),
    radial-gradient(70vw 55vw at 50% 108%, rgba(233, 197, 131, 0.06), transparent 64%);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3 { margin: 0; font-weight: 400; }
p { margin: 0 0 1em; }

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

.skip-link {
  position: fixed; top: -60px; left: 16px; z-index: 999;
  background: var(--gold); color: #1a1206; padding: 10px 16px;
  border-radius: 0 0 10px 10px; font-family: var(--data); font-size: 12px;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* ---------- type primitives ---------- */
.eyebrow {
  font-family: var(--data);
  font-size: 10.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 14px;
  display: flex; align-items: center; gap: 10px;
}
.eyebrow::before {
  content: ""; width: 26px; height: 1px; background: var(--line-strong);
  flex: none;
}
.centered .eyebrow { justify-content: center; }

h2.title {
  font-family: var(--display);
  font-size: clamp(31px, 5.2vw, 62px);
  line-height: 1.03;
  letter-spacing: -0.015em;
  font-weight: 500;
  background: var(--gold-foil);
  background-size: 260% 100%;
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  animation: foil 11s linear infinite;
}
h2.title em { font-style: italic; font-weight: 400; }
@keyframes foil { to { background-position: -260% 0; } }

.lede { color: var(--muted); max-width: 46ch; font-size: 17px; }
.small-note {
  font-family: var(--data); font-size: 11px; letter-spacing: 0.06em;
  color: var(--faint); line-height: 1.6;
}

/* ---------- buttons ---------- */
.btn {
  --btn-bg: transparent;
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 26px;
  border-radius: 100px;
  border: 1px solid var(--line-strong);
  background: var(--btn-bg);
  font-family: var(--data);
  font-size: 11.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.3s, color 0.3s, box-shadow 0.4s;
}
.btn span { position: relative; z-index: 2; }
.btn-gold {
  border-color: transparent;
  color: #180f04;
  background: linear-gradient(100deg, #fff1cf, var(--gold) 38%, #c08c36 70%, var(--ember) 128%);
  box-shadow: 0 12px 40px -12px rgba(233, 197, 131, 0.75), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}
.btn-gold::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(100deg, transparent 20%, rgba(255, 255, 255, 0.55), transparent 62%);
  transform: translateX(-130%);
  transition: transform 0.8s var(--ease);
}
.btn-gold:hover::after { transform: translateX(130%); }
.btn-ghost { color: var(--sand); backdrop-filter: blur(8px); background: rgba(255, 255, 255, 0.04); }
.btn:hover { transform: translateY(-2px); }
.btn-ghost:hover {
  border-color: var(--gold); color: var(--gold-bright);
  box-shadow: 0 0 30px -6px rgba(233, 197, 131, 0.4);
}

/* =========================================================
   INTRO SEQUENCE — gold horizon, emblem assembly, curtain split
   ========================================================= */
.curtain {
  position: fixed; inset: 0; z-index: 400; overflow: hidden;
  pointer-events: none;
}
.cur-panel {
  position: absolute; left: 0; right: 0; height: 50%;
  background: #04060a;
  transition: transform 1.15s cubic-bezier(0.76, 0, 0.24, 1);
}
.cur-panel.top { top: 0; box-shadow: 0 1px 0 rgba(233, 197, 131, 0.5); }
.cur-panel.bot { bottom: 0; box-shadow: 0 -1px 0 rgba(233, 197, 131, 0.5); }
.cur-stage {
  position: absolute; inset: 0; display: grid; place-items: center;
  transition: opacity 0.5s ease;
}
.cur-inner { display: grid; place-items: center; gap: 20px; }

/* the horizon line that draws across, then splits */
.cur-horizon {
  position: absolute; left: 50%; top: 50%; width: 0; height: 1px;
  transform: translate(-50%, -50%);
  background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
  box-shadow: 0 0 18px 1px rgba(233, 197, 131, 0.6);
  animation: horizonDraw 1s var(--ease) 0.1s forwards;
}
@keyframes horizonDraw { to { width: min(78vw, 900px); } }

.cur-badge { position: relative; width: 150px; height: 150px; display: grid; place-items: center; }
.cur-badge::before {
  content: ""; position: absolute; inset: -18%; border-radius: 50%;
  background: radial-gradient(circle, rgba(233, 197, 131, 0.3), rgba(226, 133, 60, 0.1) 46%, transparent 70%);
  opacity: 0; animation: fadeUp 1.2s var(--ease) 0.8s forwards;
}
.cur-badge img {
  width: 96px; height: 96px; opacity: 0;
  filter: drop-shadow(0 0 26px rgba(233, 197, 131, 0.65));
  animation: badgePop 1.1s var(--ease) 0.75s forwards;
}
@keyframes badgePop {
  from { opacity: 0; transform: scale(0.6) rotate(-14deg); }
  to { opacity: 1; transform: none; }
}
.cur-ring { position: absolute; inset: 0; }
.cur-ring circle {
  fill: none; stroke: var(--gold); stroke-width: 1;
  stroke-dasharray: 440; stroke-dashoffset: 440;
  animation: ringDraw 1.5s var(--ease) 0.5s forwards;
}
.cur-ring circle.b {
  stroke: rgba(233, 197, 131, 0.4); stroke-dasharray: 6 10;
  animation: ringDraw 1.5s var(--ease) 0.7s forwards, spin 22s linear 2s infinite;
  transform-origin: 50% 50%;
}
@keyframes ringDraw { to { stroke-dashoffset: 0; } }
@keyframes spin { to { transform: rotate(360deg); } }

.cur-word {
  font-family: var(--data); font-size: 11px; text-transform: uppercase;
  color: var(--gold); opacity: 0; letter-spacing: 0.1em;
  animation: wordOut 1.3s var(--ease) 1.25s forwards;
}
@keyframes wordOut { to { opacity: 1; letter-spacing: 0.52em; } }
.cur-sub {
  font-family: var(--display); font-style: italic; font-size: 15px;
  color: var(--faint); opacity: 0;
  animation: fadeUp 1s var(--ease) 1.75s forwards;
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(8px); } to { opacity: 0.85; transform: none; } }

body.opening .cur-panel.top { transform: translateY(-101%); }
body.opening .cur-panel.bot { transform: translateY(101%); }
body.opening .cur-stage { opacity: 0; }
body.ready .curtain { visibility: hidden; }

/* =========================================================
   TOP BAR
   ========================================================= */
.progress {
  position: fixed; top: 0; left: 0; height: 2px; z-index: 120;
  width: 100%; transform: scaleX(0); transform-origin: 0 50%;
  background: linear-gradient(90deg, var(--ember), var(--gold-bright));
}
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 110;
  height: var(--topbar-h);
  display: flex; align-items: center; gap: 18px;
  padding: 0 var(--gutter);
  transition: background 0.45s, backdrop-filter 0.45s, border-color 0.45s, height 0.45s;
  border-bottom: 1px solid transparent;
}
.topbar.scrolled {
  height: 64px;
  background: rgba(6, 8, 13, 0.76);
  backdrop-filter: blur(18px) saturate(150%);
  border-bottom-color: var(--line);
  box-shadow: 0 12px 40px -28px rgba(233, 197, 131, 0.7);
}
.brand { display: flex; align-items: center; gap: 12px; margin-right: auto; }
.brand img {
  width: 40px; height: 40px; border-radius: 50%;
  filter: drop-shadow(0 0 12px rgba(233, 197, 131, 0.5));
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong {
  font-family: var(--display); font-weight: 500; font-size: 19px; letter-spacing: 0.01em;
  background: var(--gold-foil); background-size: 260% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: foil 13s linear infinite;
}
.brand-text em {
  font-style: normal; font-family: var(--data); font-size: 8.5px;
  letter-spacing: 0.34em; text-transform: uppercase; color: var(--gold); margin-top: 3px;
}
.nav { display: flex; gap: 30px; }
.nav a {
  font-family: var(--data); font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--muted); position: relative; padding: 6px 0;
  transition: color 0.3s;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%;
  background: var(--gold); transform: scaleX(0); transform-origin: 100% 50%;
  transition: transform 0.4s var(--ease);
}
.nav a:hover { color: var(--sand); }
.nav a:hover::after { transform: scaleX(1); transform-origin: 0 50%; }
.topbar .btn { padding: 11px 20px; }

.menu-btn {
  display: none; align-items: center; gap: 8px;
  background: none; border: 1px solid var(--line-strong); border-radius: 100px;
  padding: 9px 15px; font-family: var(--data); font-size: 10px;
  letter-spacing: 0.2em; text-transform: uppercase; cursor: pointer;
}
.menu-btn svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 1.6; }

/* mobile sheet */
.sheet {
  position: fixed; inset: 0; z-index: 130; background: var(--ink);
  padding: 22px var(--gutter) 40px;
  display: flex; flex-direction: column;
  transform: translateY(-100%); visibility: hidden;
  transition: transform 0.6s var(--ease), visibility 0.6s;
}
.sheet.open { transform: none; visibility: visible; }
.sheet-head { display: flex; align-items: center; justify-content: space-between; }
.sheet-close {
  background: none; border: 1px solid var(--line-strong); border-radius: 50%;
  width: 40px; height: 40px; display: grid; place-items: center; cursor: pointer;
}
.sheet-close svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.6; }
.sheet nav { margin-top: auto; margin-bottom: auto; display: flex; flex-direction: column; }
.sheet nav a {
  font-family: var(--display); font-size: clamp(28px, 9vw, 44px); padding: 12px 0;
  border-bottom: 1px solid var(--line); display: flex; align-items: baseline; gap: 16px;
}
.sheet nav a i {
  font-style: normal; font-family: var(--data); font-size: 10px;
  letter-spacing: 0.2em; color: var(--gold); }
.sheet-foot {
  display: flex; gap: 22px; font-family: var(--data); font-size: 10px;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--faint);
}

/* =========================================================
   HERO — centered emblem, orbits, gold type
   ========================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: clamp(18px, 3.4vh, 38px);
  text-align: center;
  padding: calc(var(--topbar-h) + 14px) var(--gutter) clamp(28px, 5vh, 52px);
  isolation: isolate;
  overflow: hidden;
}
.hero-media { position: absolute; inset: -10% 0; z-index: -3; overflow: hidden; will-change: transform; }
.hero-media img {
  width: 100%; height: 100%; object-fit: cover; object-position: 50% 42%;
  transform: scale(1.16); opacity: 0;
  filter: saturate(1.08) contrast(1.05);
  will-change: transform;
}
body.opening .hero-media img { animation: heroIn 2.6s var(--ease) forwards; }
@keyframes heroIn { to { opacity: 1; transform: scale(1.03); } }

.hero-grade {
  position: absolute; inset: 0; z-index: -2; pointer-events: none;
  background:
    radial-gradient(46vw 46vw at 50% 40%, rgba(6, 8, 13, 0.62), transparent 70%),
    linear-gradient(to top, var(--ink) 2%, rgba(6, 8, 13, 0.88) 20%, rgba(6, 8, 13, 0.34) 56%, rgba(6, 8, 13, 0.62) 100%);
}
.sun-bloom {
  position: absolute; z-index: -2; left: 21%; top: 50%;
  width: 60vw; height: 60vw; max-width: 780px; max-height: 780px;
  transform: translate(-50%, -50%); pointer-events: none;
  background: radial-gradient(circle, rgba(255, 186, 96, 0.44), rgba(226, 133, 60, 0.16) 38%, transparent 66%);
  animation: bloom 7s ease-in-out infinite alternate;
  mix-blend-mode: screen;
}
@keyframes bloom { from { opacity: 0.55; } to { opacity: 1; } }

.grain {
  position: absolute; inset: -120%; z-index: -1; pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grainShift 0.8s steps(4) infinite;
}
@keyframes grainShift {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-2%, 1%); }
  50% { transform: translate(1%, -2%); }
  75% { transform: translate(-1%, -1%); }
  100% { transform: translate(0, 0); }
}

.embers { position: absolute; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }
.embers i {
  position: absolute; bottom: -12px; width: 3px; height: 3px; border-radius: 50%;
  background: var(--gold-bright); opacity: 0; filter: blur(0.4px);
  box-shadow: 0 0 10px 1px rgba(233, 197, 131, 0.85);
  animation: rise linear infinite;
}
@keyframes rise {
  0% { opacity: 0; transform: translateY(0) translateX(0) scale(0.5); }
  12% { opacity: 0.95; }
  75% { opacity: 0.6; }
  100% { opacity: 0; transform: translateY(-92vh) translateX(var(--drift, 30px)) scale(1.1); }
}

/* ---- the emblem ---- */
.emblem {
  position: relative;
  width: clamp(132px, 14vw, 176px);
  height: clamp(132px, 14vw, 176px);
  display: grid; place-items: center;
  opacity: 0; transform: scale(0.82);
}
body.ready .emblem { animation: emblemIn 1.4s var(--ease) 0.15s forwards; }
@keyframes emblemIn { to { opacity: 1; transform: none; } }

.emblem-core {
  position: relative; z-index: 3;
  width: 62%; height: 62%;
  border-radius: 50%;
  animation: bob 6.5s ease-in-out infinite;
}
.emblem-core img {
  width: 100%; height: 100%; border-radius: 50%;
  filter: drop-shadow(0 0 34px rgba(233, 197, 131, 0.55));
}
@keyframes bob { 0%, 100% { transform: translateY(-5px); } 50% { transform: translateY(5px); } }

.emblem-halo {
  position: absolute; inset: -12%; z-index: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(233, 197, 131, 0.34), rgba(226, 133, 60, 0.12) 46%, transparent 70%);
  animation: halo 5s ease-in-out infinite alternate;
}
@keyframes halo { from { opacity: 0.5; transform: scale(0.94); } to { opacity: 1; transform: scale(1.06); } }

.emblem-sweep {
  position: absolute; inset: -4%; z-index: 2; border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 0 66%, rgba(255, 241, 207, 0.55) 80%, transparent 90%);
  -webkit-mask: radial-gradient(circle, transparent 61%, #000 63%, #000 68%, transparent 70%);
  mask: radial-gradient(circle, transparent 61%, #000 63%, #000 68%, transparent 70%);
  animation: spin 6s linear infinite;
}

.ring {
  position: absolute; border-radius: 50%; z-index: 2;
  border: 1px solid transparent;
  border-top-color: var(--gold-bright);
  border-right-color: rgba(233, 197, 131, 0.45);
}
.ring.r1 { inset: 2%; animation: orbitA 9s linear infinite; }
.ring.r2 { inset: -6%; border-top-color: rgba(233, 197, 131, 0.75); border-left-color: rgba(226, 133, 60, 0.5); animation: orbitB 14s linear infinite; }
.ring.r3 {
  inset: -15%; border: 1px dashed rgba(233, 197, 131, 0.32);
  animation: spin 40s linear infinite reverse;
}
@keyframes orbitA {
  from { transform: rotateX(68deg) rotateZ(0deg); }
  to { transform: rotateX(68deg) rotateZ(360deg); }
}
@keyframes orbitB {
  from { transform: rotateY(72deg) rotateZ(360deg); }
  to { transform: rotateY(72deg) rotateZ(0deg); }
}

.orbit { position: absolute; inset: -15%; z-index: 3; animation: spin linear infinite; }
.orbit i {
  position: absolute; top: 0; left: 50%; width: 4px; height: 4px; margin-left: -2px;
  border-radius: 50%; background: var(--gold-bright);
  box-shadow: 0 0 10px 2px rgba(233, 197, 131, 0.8);
}
.orbit.o1 { animation-duration: 17s; }
.orbit.o2 { animation-duration: 25s; animation-direction: reverse; inset: -24%; }
.orbit.o2 i { width: 3px; height: 3px; opacity: 0.8; }
.orbit.o3 { animation-duration: 33s; inset: -32%; }
.orbit.o3 i { width: 2px; height: 2px; opacity: 0.6; }

/* ---- hero copy ---- */
.hero-content { max-width: 900px; display: grid; justify-items: center; }
.live-pill {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid var(--line-strong); border-radius: 100px;
  padding: 8px 18px; margin: 0 0 22px;
  background: rgba(6, 8, 13, 0.45); backdrop-filter: blur(10px);
  box-shadow: 0 0 26px -8px rgba(233, 197, 131, 0.5);
  font-family: var(--data); font-size: 10.5px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted); max-width: 100%;
}
.live-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--gold-bright);
  box-shadow: 0 0 0 0 rgba(233, 197, 131, 0.7); animation: ping 2.4s infinite;
}
@keyframes ping {
  70% { box-shadow: 0 0 0 9px rgba(233, 197, 131, 0); }
  100% { box-shadow: 0 0 0 0 rgba(233, 197, 131, 0); }
}
#live-dest { color: var(--gold-bright); transition: opacity 0.3s; }

.hero h1 {
  font-family: var(--display);
  font-size: clamp(40px, 7vw, 94px);
  line-height: 0.94;
  letter-spacing: -0.028em;
  font-weight: 500;
  margin: 0 0 20px;
}
.hero h1 .g {
  background: var(--gold-foil); background-size: 260% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: foil 9s linear infinite;
  filter: drop-shadow(0 10px 40px rgba(0, 0, 0, 0.6));
}
.hero h1 em { display: block; font-style: italic; font-weight: 400; }
.line-mask { display: block; overflow: hidden; padding-bottom: 0.06em; }
.line-mask > span { display: block; transform: translateY(105%); }
body.ready .line-mask > span { animation: lineUp 1.15s var(--ease) forwards; }
body.ready .line-mask:nth-of-type(1) > span { animation-delay: 0.6s; }
body.ready .line-mask:nth-of-type(2) > span { animation-delay: 0.74s; }
@keyframes lineUp { to { transform: none; } }

.hero .lede { margin: 0 auto; max-width: 52ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; justify-content: center; }

/* ---- hero strip ---- */
.hero-strip {
  display: flex; align-items: stretch; gap: 14px; width: 100%;
  max-width: 940px; opacity: 0;
}
body.ready .hero-strip { animation: fadeUp 1.1s var(--ease) 1.35s forwards; }
.route-card {
  flex: 1.35; border: 1px solid var(--line); border-radius: 14px; padding: 16px 18px;
  background: rgba(10, 16, 24, 0.5); backdrop-filter: blur(16px);
  box-shadow: inset 0 1px 0 rgba(233, 197, 131, 0.12);
}
.route-row { display: flex; align-items: center; gap: 14px; }
.route-code {
  display: block; font-family: var(--data); font-size: 16px;
  letter-spacing: 0.06em; color: var(--gold-bright);
}
.route-city {
  display: block; font-family: var(--data); font-size: 9px;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--faint); margin-top: 3px;
}
.route-line { flex: 1; position: relative; height: 16px; }
.route-line svg { width: 100%; height: 16px; fill: none; stroke: var(--line-strong); stroke-dasharray: 3 4; }
.route-plane { position: absolute; top: 0; left: 0; fill: var(--gold-bright); stroke: none; animation: fly 5.5s var(--ease) infinite; }
@keyframes fly {
  0% { transform: translate(0, 4px) rotate(-8deg); opacity: 0; }
  15% { opacity: 1; }
  85% { opacity: 1; }
  100% { transform: translate(calc(100% + 100px), -2px) rotate(6deg); opacity: 0; }
}
.route-sub {
  display: flex; justify-content: space-between; margin-top: 12px; padding-top: 10px;
  border-top: 1px dashed var(--line);
  font-family: var(--data); font-size: 9px; letter-spacing: 0.16em; color: var(--faint);
}
.stat-strip {
  flex: 1.65; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
  border: 1px solid var(--line); border-radius: 14px; padding: 14px 12px;
  background: rgba(10, 16, 24, 0.5); backdrop-filter: blur(16px);
  box-shadow: inset 0 1px 0 rgba(233, 197, 131, 0.12);
}
.flap-stat { text-align: center; }
.flap-digits { display: flex; justify-content: center; gap: 2px; height: 34px; }
.flap-col { display: block; height: 34px; overflow: hidden; }
.flap-strip { display: block; transition: transform 1.4s var(--ease); }
.flap-strip span, .flap-suffix {
  display: block; height: 34px; line-height: 34px;
  font-family: var(--data); font-size: 22px; color: var(--gold-bright);
  text-shadow: 0 0 18px rgba(233, 197, 131, 0.45);
}
.flap-suffix { display: inline-block; }
.flap-label {
  font-family: var(--data); font-size: 8.5px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--faint); margin: 6px 0 0;
}

/* =========================================================
   SECTIONS
   ========================================================= */
.sec { padding: clamp(70px, 11vh, 130px) 0; position: relative; }
.wrap { padding: 0 var(--gutter); }
.sec-head {
  padding: 0 var(--gutter);
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 26px; flex-wrap: wrap; margin-bottom: 40px;
}
.sec-head.centered { flex-direction: column; align-items: center; text-align: center; }
.head-actions { display: flex; align-items: center; gap: 18px; }

.rule {
  height: 1px; border: 0; margin: 0 var(--gutter);
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.55;
  box-shadow: 0 0 22px 0 rgba(233, 197, 131, 0.35);
}

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

/* =========================================================
   MARQUEE
   ========================================================= */
.marquee {
  padding: 26px 0; border-block: 1px solid var(--line); overflow: hidden;
  background:
    linear-gradient(180deg, rgba(233, 197, 131, 0.05), transparent 40%, rgba(226, 133, 60, 0.05)),
    var(--night);
}
.chip-row { overflow: hidden; padding: 5px 0; }
.chip-track { display: flex; gap: 12px; width: max-content; animation: slide 46s linear infinite; }
.chip-track.rev { animation-direction: reverse; }
.marquee:hover .chip-track { animation-play-state: paused; }
@keyframes slide { to { transform: translateX(-50%); } }
.chip {
  flex: none; border: 1px solid var(--line); border-radius: 100px;
  padding: 9px 20px; font-family: var(--data); font-size: 10.5px;
  letter-spacing: 0.16em; text-transform: uppercase; color: rgba(243, 236, 226, 0.75);
  background: linear-gradient(140deg, rgba(233, 197, 131, 0.09), rgba(233, 197, 131, 0.02));
  box-shadow: inset 0 1px 0 rgba(233, 197, 131, 0.16);
}

/* =========================================================
   EXPERIENCES
   ========================================================= */
.exp-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1px; background: var(--line); border-block: 1px solid var(--line);
}
.exp-card {
  background: var(--ink); padding: 38px clamp(20px, 2.6vw, 34px) 34px;
  position: relative; transition: background 0.5s;
}
.exp-card:hover {
  background:
    radial-gradient(120% 100% at 50% 120%, rgba(233, 197, 131, 0.12), transparent 62%),
    var(--panel);
}
.exp-card:first-child { padding-left: var(--gutter); }
.exp-card:last-child { padding-right: var(--gutter); }
.exp-card .num {
  font-family: var(--data); font-size: 10px; letter-spacing: 0.24em;
  color: var(--gold-bright); opacity: 0.85;
  text-shadow: 0 0 14px rgba(233, 197, 131, 0.55);
}
.exp-card h3 {
  font-family: var(--display); font-size: 25px; margin: 22px 0 10px; font-weight: 500;
}
.exp-card p { color: var(--muted); font-size: 15px; margin: 0; }
.exp-card::after {
  content: ""; position: absolute; left: 0; bottom: -1px; height: 2px; width: 100%;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright), var(--ember));
  box-shadow: 0 0 22px 0 rgba(233, 197, 131, 0.6);
  transform: scaleX(0); transform-origin: 0 50%; transition: transform 0.6s var(--ease);
}
.exp-card:hover::after { transform: scaleX(1); }

/* =========================================================
   RAILS (destinations + deals)
   ========================================================= */
.rail-wrap { position: relative; }
.rail {
  display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 6px var(--gutter) 26px; scrollbar-width: none;
  cursor: grab;
}
.rail::-webkit-scrollbar { display: none; }
.rail.dragging { cursor: grabbing; scroll-snap-type: none; }
.rail > * { scroll-snap-align: center; flex: none; }

.rail-arrows { display: flex; gap: 8px; }
.rail-arrow {
  width: 42px; height: 42px; border-radius: 50%; cursor: pointer;
  border: 1px solid var(--line-strong); background: transparent;
  display: grid; place-items: center; transition: background 0.3s, color 0.3s, transform 0.3s;
}
.rail-arrow svg { width: 17px; height: 17px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.rail-arrow:hover {
  background: linear-gradient(140deg, var(--gold-bright), var(--gold));
  color: #180f04; transform: scale(1.06); border-color: transparent;
  box-shadow: 0 0 26px -4px rgba(233, 197, 131, 0.7);
}

.rail-dots { display: flex; gap: 6px; justify-content: center; }
.rail-dots span {
  width: 5px; height: 5px; border-radius: 50%; background: var(--line-strong);
  transition: width 0.4s var(--ease), background 0.4s;
}
.rail-dots span.active {
  width: 24px; border-radius: 3px;
  background: linear-gradient(90deg, var(--gold-bright), var(--ember));
  box-shadow: 0 0 14px 0 rgba(233, 197, 131, 0.7);
}

/* destination cards */
.dest {
  width: clamp(230px, 27vw, 330px); height: clamp(330px, 44vh, 440px);
  border-radius: var(--radius); overflow: hidden; position: relative;
  border: 1px solid var(--line);
}
.dest .bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  background-color: var(--panel);
  background-image: linear-gradient(150deg, #1b2733, #0d141d);
  transform: scale(1.05); transition: transform 1.2s var(--ease), filter 0.8s;
  filter: saturate(0.8) brightness(0.78);
}
.dest:hover .bg { transform: scale(1.15); filter: saturate(1.1) brightness(0.95); }
.dest::before {
  content: ""; position: absolute; inset: 9px; z-index: 3; border-radius: 10px;
  border: 1px solid rgba(233, 197, 131, 0.75); opacity: 0;
  transform: scale(1.03); pointer-events: none;
  transition: opacity 0.5s var(--ease), transform 0.6s var(--ease);
}
.dest:hover::before, .dest:focus-within::before { opacity: 1; transform: none; }
.dest:hover { box-shadow: 0 26px 60px -30px rgba(233, 197, 131, 0.5); }
.dest::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6, 8, 13, 0.95) 6%, rgba(6, 8, 13, 0.15) 58%, rgba(6, 8, 13, 0.4));
}
.dest-body { position: absolute; inset: auto 0 0 0; padding: 24px; z-index: 2; }
.dest-body .region {
  font-family: var(--data); font-size: 9.5px; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--gold-bright); margin: 0 0 8px;
  text-shadow: 0 0 14px rgba(233, 197, 131, 0.5);
}
.dest-body h3 { font-family: var(--display); font-size: 31px; font-weight: 500; }
.dest-body .blurb {
  display: block; color: var(--muted); font-size: 13px; margin-top: 8px;
  max-height: 0; opacity: 0; overflow: hidden;
  transition: max-height 0.6s var(--ease), opacity 0.5s;
}
.dest:hover .blurb, .dest:focus-within .blurb { max-height: 70px; opacity: 1; }

/* boarding pass deal cards */
.pass {
  width: clamp(280px, 31vw, 372px);
  display: flex; flex-direction: column;
  background: linear-gradient(170deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; position: relative;
  transition: transform 0.6s var(--ease), border-color 0.4s, box-shadow 0.6s;
}
.pass::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px; z-index: 4;
  background: linear-gradient(90deg, transparent, var(--gold-bright), var(--ember), transparent);
}
.pass::after {
  content: ""; position: absolute; inset: 0; z-index: 3; pointer-events: none;
  background: linear-gradient(112deg, transparent 34%, rgba(255, 241, 207, 0.16) 47%, transparent 60%);
  transform: translateX(-130%); transition: transform 1s var(--ease);
}
.pass:hover::after { transform: translateX(130%); }
.pass:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.95), 0 0 44px -18px rgba(233, 197, 131, 0.55);
}
.pass-photo {
  width: 100%; height: 178px; object-fit: cover; filter: saturate(0.92);
  background: linear-gradient(150deg, #1b2733, #0d141d);
}
.pass-photo.missing { display: none; }
.pass-route {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 20px; border-bottom: 1px solid var(--line);
}
.pass-body { padding: 20px; flex: 1; }
.pass-body h3 { font-family: var(--display); font-size: 24px; font-weight: 500; margin-bottom: 8px; }
.pass-body p { color: var(--muted); font-size: 14px; margin: 0; }
.pass-meta {
  display: flex; gap: 26px; margin-top: 18px; padding-top: 16px;
  border-top: 1px solid var(--line);
}
.pass-meta span {
  display: block; font-family: var(--data); font-size: 8.5px;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--faint);
}
.pass-meta strong {
  display: block; font-family: var(--data); font-size: 13px;
  color: var(--gold-bright); font-weight: 500; margin-top: 4px;
}
.perf { position: relative; height: 20px; }
.perf::before {
  content: ""; position: absolute; left: 14px; right: 14px; top: 50%;
  border-top: 1px dashed var(--line-strong);
}
.perf i {
  position: absolute; top: 50%; width: 20px; height: 20px; border-radius: 50%;
  background: var(--ink); transform: translateY(-50%);
}
.perf i:first-child { left: -10px; }
.perf i:last-child { right: -10px; }
.pass-stub {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 0 20px 20px;
}
.barcode {
  height: 30px; flex: 1;
  background: repeating-linear-gradient(90deg,
    var(--faint) 0 1px, transparent 1px 3px,
    var(--faint) 3px 5px, transparent 5px 6px,
    var(--faint) 6px 7px, transparent 7px 10px);
  opacity: 0.55;
}
.pass-ask {
  font-family: var(--data); font-size: 10px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold);
  border-bottom: 1px solid var(--line-strong); padding-bottom: 3px; white-space: nowrap;
  transition: color 0.3s, border-color 0.3s;
}
.pass-ask:hover { color: var(--gold-bright); border-color: var(--gold); }

/* =========================================================
   ADVISOR / ABOUT
   ========================================================= */
.advisor {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(30px, 5vw, 76px);
  align-items: center; padding: 0 var(--gutter);
}
.advisor-copy h2 { margin-bottom: 18px; font-size: clamp(28px, 3.7vw, 47px); }
.advisor-copy p { color: var(--muted); max-width: 50ch; }
.signature {
  font-family: var(--display); font-style: italic; font-size: 25px;
  margin: 26px 0 24px;
  background: var(--gold-foil); background-size: 260% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: foil 8s linear infinite;
}
.badges { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0 0; }
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--line); border-radius: 100px; padding: 8px 15px;
  background: linear-gradient(140deg, rgba(233, 197, 131, 0.08), transparent);
  font-family: var(--data); font-size: 10px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--muted);
}
.badge svg { width: 13px; height: 13px; stroke: var(--gold); fill: none; stroke-width: 1.6; }

.frame { position: relative; }
.frame img {
  width: 100%; border-radius: var(--radius);
  filter: saturate(1.05) contrast(1.04);
  box-shadow: 0 30px 70px -34px rgba(0, 0, 0, 0.95), 0 0 60px -26px rgba(233, 197, 131, 0.55);
}
.frame::before, .frame::after {
  content: ""; position: absolute; width: 58px; height: 58px; pointer-events: none;
}
.frame::before { top: -10px; left: -10px; border-top: 1px solid var(--gold-bright); border-left: 1px solid var(--gold-bright); }
.frame::after { bottom: -10px; right: -10px; border-bottom: 1px solid var(--gold-bright); border-right: 1px solid var(--gold-bright); }
.stamp {
  position: absolute; right: -14px; bottom: 26px;
  background: rgba(6, 8, 13, 0.82); backdrop-filter: blur(12px);
  border: 1px solid var(--line-strong); border-radius: 12px;
  padding: 12px 18px; text-align: right;
  box-shadow: 0 0 34px -10px rgba(233, 197, 131, 0.5);
}
.stamp b {
  display: block; font-family: var(--display); font-size: 19px; font-weight: 500;
  color: var(--gold-bright);
}
.stamp span {
  display: block; font-family: var(--data); font-size: 8.5px;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-top: 4px;
}

/* =========================================================
   PLANNER
   ========================================================= */
.planner { position: relative; padding: clamp(70px, 11vh, 130px) 0; overflow: hidden; }
.planner-bg {
  position: absolute; inset: 0; z-index: -2;
  background: url("../img/hero-1280.jpg") 82% 42% / cover no-repeat;
  filter: blur(2px) saturate(0.7) brightness(0.42);
  transform: scale(1.06);
}
.planner-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to bottom, var(--ink), rgba(6, 8, 13, 0.72) 40%, var(--ink));
}
.planner-inner {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(30px, 5vw, 70px);
  align-items: start; padding: 0 var(--gutter);
}
.wizard {
  border: 1px solid var(--line-strong); border-radius: var(--radius);
  background: rgba(10, 16, 24, 0.78); backdrop-filter: blur(20px);
  padding: clamp(24px, 3vw, 36px);
  box-shadow: inset 0 1px 0 rgba(233, 197, 131, 0.2), 0 40px 90px -50px rgba(233, 197, 131, 0.5);
}
.wizard-progress { display: flex; gap: 8px; margin-bottom: 26px; }
.wizard-progress div {
  height: 2px; flex: 1; background: var(--line); overflow: hidden;
}
.wizard-progress div span {
  display: block; height: 100%; width: 100%; transform: scaleX(0); transform-origin: 0 50%;
  background: linear-gradient(90deg, var(--ember), var(--gold));
  transition: transform 0.6s var(--ease);
}
.wizard-progress div.on span { transform: scaleX(1); }
.step { display: none; }
.step.active { display: block; animation: stepIn 0.5s var(--ease); }
@keyframes stepIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.step h3 {
  font-family: var(--data); font-size: 10.5px; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 22px;
}
.field { margin-bottom: 18px; }
.field label {
  display: block; font-family: var(--data); font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--faint); margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%; background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line); border-radius: 10px;
  padding: 13px 15px; font-size: 15px; font-weight: 300;
  transition: border-color 0.3s, background 0.3s;
}
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); background: rgba(255, 255, 255, 0.055);
}
.field select option { background: var(--panel); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.wizard-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 26px; gap: 12px; }
.privacy-note { font-family: var(--data); font-size: 10px; line-height: 1.7; color: var(--faint); }
.wizard-done { display: none; text-align: center; padding: 20px 0; }
.wizard-done.active { display: block; animation: stepIn 0.5s var(--ease); }
.wizard-done svg { width: 46px; height: 46px; stroke: var(--gold); fill: none; stroke-width: 1.4; margin-bottom: 14px; }
.wizard-done h3 {
  font-family: var(--display); font-size: 25px; letter-spacing: 0; text-transform: none;
  color: var(--sand); margin-bottom: 8px;
}

/* =========================================================
   CONTACT + FOOTER
   ========================================================= */
.contact { text-align: center; padding: clamp(70px, 11vh, 130px) var(--gutter); }
.contact .eyebrow { justify-content: center; }
.email-link {
  display: inline-block; margin: 26px 0 10px;
  font-family: var(--display); font-size: clamp(23px, 4.4vw, 48px);
  position: relative; padding-bottom: 6px; word-break: break-word;
  background: var(--gold-foil); background-size: 260% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: foil 7s linear infinite;
}
.email-link::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%;
  background: var(--gold); opacity: 0.3;
  transition: opacity 0.5s var(--ease);
}
.email-link:hover::after { opacity: 1; }
.contact-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 26px; }

footer {
  border-top: 1px solid var(--line); padding: 44px var(--gutter) 120px;
  background: linear-gradient(180deg, rgba(233, 197, 131, 0.05), transparent 40%), var(--night);
}
.foot-top {
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px; flex-wrap: wrap;
}
.foot-top strong {
  font-family: var(--display); font-size: 21px; font-weight: 500;
  background: var(--gold-foil); background-size: 260% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: foil 14s linear infinite;
}
.foot-top p { margin: 3px 0 0; font-family: var(--data); font-size: 9.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.foot-links { display: flex; gap: 24px; font-family: var(--data); font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.foot-links a:hover { color: var(--gold); }
.legal { margin-top: 30px; border-top: 1px solid var(--line); padding-top: 20px; }
.legal summary {
  cursor: pointer; font-family: var(--data); font-size: 10px;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--faint);
}
.legal p { font-size: 12.5px; color: var(--faint); line-height: 1.75; margin: 14px 0 0; max-width: 92ch; }

/* mobile tab bar */
.tabbar {
  position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 100;
  display: none; align-items: center; justify-content: space-around;
  background: rgba(10, 16, 24, 0.86); backdrop-filter: blur(20px);
  border: 1px solid var(--line); border-radius: 100px; padding: 8px 6px;
}
.tab {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  font-family: var(--data); font-size: 8px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--faint); padding: 5px 10px; transition: color 0.3s;
}
.tab svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.tab.active { color: var(--gold); }
.tab-fab {
  width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center;
  background: linear-gradient(140deg, var(--gold-bright), var(--gold) 50%, var(--ember));
  color: #180f04; animation: fabPulse 3.2s ease-in-out infinite;
}
@keyframes fabPulse {
  0%, 100% { box-shadow: 0 10px 26px -10px rgba(226, 133, 60, 0.9), 0 0 0 0 rgba(233, 197, 131, 0.45); }
  55% { box-shadow: 0 10px 30px -8px rgba(226, 133, 60, 0.95), 0 0 0 12px rgba(233, 197, 131, 0); }
}
.tab-fab svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2; }

/* =========================================================
   LEGAL PAGES
   ========================================================= */
.doc { max-width: 760px; margin: 0 auto; padding: calc(var(--topbar-h) + 70px) var(--gutter) 90px; }
.doc h1 { font-family: var(--display); font-size: clamp(34px, 6vw, 58px); font-weight: 500; margin-bottom: 26px; }
.doc p { color: var(--muted); }
.doc a.back { display: inline-block; margin-top: 26px; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-height: 780px) {
  .hero-strip { display: none; }
}
@media (max-width: 1080px) {
  .advisor { grid-template-columns: 1fr; }
  .planner-inner { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .nav, .topbar .btn { display: none; }
  .menu-btn { display: inline-flex; }
  .tabbar { display: flex; }
  .hero { min-height: 96svh; padding-bottom: 96px; gap: 22px; }
  .hero-media img { object-position: 34% 40%; }
  .hero h1 { font-size: clamp(38px, 10.6vw, 64px); margin-bottom: 16px; }
  .hero .lede { font-size: 15.5px; }
  .live-pill { font-size: 9.5px; padding: 7px 14px; margin-bottom: 18px; }
  .sun-bloom { left: 30%; opacity: 0.7; }
  .hero-grade {
    background:
      radial-gradient(70vw 44vh at 50% 34%, rgba(6, 8, 13, 0.6), transparent 72%),
      linear-gradient(to top, var(--ink) 4%, rgba(6, 8, 13, 0.92) 26%, rgba(6, 8, 13, 0.3) 62%, rgba(6, 8, 13, 0.6) 100%);
  }
  .hero-strip { flex-direction: column; max-width: 460px; }
  .route-card { display: none; }
  .exp-grid { grid-template-columns: 1fr 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .stamp { right: 10px; bottom: 12px; }
  .cur-badge { width: 120px; height: 120px; }
  .cur-badge img { width: 76px; height: 76px; }
}
@media (max-width: 700px) {
  .hero-media img { object-position: 50% 44%; }
  .sun-bloom { left: 34%; top: 42%; opacity: 0.55; }
  .emblem { width: clamp(126px, 34vw, 170px); height: clamp(126px, 34vw, 170px); }
  .orbit.o3 { display: none; }
}
@media (max-width: 520px) {
  .exp-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; width: 100%; }
  .hero-actions .btn { width: 100%; }
  .foot-top { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .hero-media img { opacity: 1; transform: scale(1.03); }
  .line-mask > span { transform: none; }
  .reveal, .hero-strip, .emblem { opacity: 1; transform: none; }
  .grain, .embers, .orbit, .emblem-sweep { display: none; }
  .curtain { display: none; }
}
