/* ---------- Tokens ---------- */
:root {
  --bg: #0a0a0a;
  --bg-2: #050505;
  --ink: #f3ece1;
  --ink-soft: #cfc6b8;
  --ink-mute: #8a8275;
  --gold: #c9a86a;
  --gold-2: #e7d3a3;
  --line: rgba(243, 236, 225, 0.14);
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Inter", system-ui, -apple-system, sans-serif;
  --ease: cubic-bezier(.2, .7, .15, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

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

html, body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  min-height: 100vh;
  cursor: none;
}

body {
  background:
    radial-gradient(1200px 700px at 80% -10%, rgba(201, 168, 106, 0.10), transparent 60%),
    radial-gradient(900px 600px at -10% 110%, rgba(201, 168, 106, 0.07), transparent 55%),
    var(--bg);
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; color: inherit; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ---------- Curtain rise intro ---------- */
.curtain {
  position: fixed; inset: 0;
  z-index: 9000;
  background: #0a0a0a;
  display: grid;
  place-items: center;
  pointer-events: none;
  animation: curtainOut 1.1s cubic-bezier(.65, .04, .35, 1) 0.95s forwards;
}
.curtain__mark {
  font-family: "Pinyon Script", "Times New Roman", serif;
  font-size: clamp(4rem, 8vw, 7rem);
  line-height: 1;
  background: linear-gradient(180deg, #fff5dc 0%, #e7d3a3 50%, #c9a86a 90%, #8c6f3a 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 24px rgba(201,168,106,0.25));
  opacity: 0;
  transform: translateY(10px) scale(0.96);
  animation: monogram 2.05s cubic-bezier(.16, 1, .3, 1) 0.05s forwards;
}
@keyframes monogram {
  0%   { opacity: 0; transform: translateY(10px) scale(0.96); filter: drop-shadow(0 4px 16px rgba(201,168,106,0)); }
  18%  { opacity: 1; transform: translateY(0)   scale(1);    filter: drop-shadow(0 4px 24px rgba(201,168,106,0.3)); }
  60%  { opacity: 1; transform: translateY(0)   scale(1); }
  100% { opacity: 0; transform: translateY(-14px) scale(1.02); filter: drop-shadow(0 4px 16px rgba(201,168,106,0.05)); }
}
@keyframes curtainOut {
  0%   { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(-100%); visibility: hidden; }
}
@media (prefers-reduced-motion: reduce) {
  .curtain { animation: curtainOut 0.4s linear 0.1s forwards; }
  .curtain__mark { animation: none; opacity: 1; transform: none; }
}

/* ---------- Background canvas ---------- */
#silk {
  position: fixed; inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
  opacity: 0.55;
  mix-blend-mode: screen;
  pointer-events: none;
}

.grain {
  position: fixed; inset: -50%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.85'/></svg>");
  /* Slow breathing instead of staccato flicker — calmer, more luxurious */
  animation: grainBreath 28s ease-in-out infinite;
}
@keyframes grainBreath {
  0%, 100% { opacity: 0.04; transform: translate(0, 0); }
  50%      { opacity: 0.08; transform: translate(-1.5%, 1%); }
}

.vignette {
  position: fixed; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(ellipse at center, transparent 55%, rgba(0,0,0,0.6) 100%);
}

/* Cursor-tracking warm spotlight — sells the 'atelier light' mood */
.spotlight {
  position: fixed; inset: 0; z-index: 2; pointer-events: none;
  background: radial-gradient(
    520px circle at var(--sx, 50%) var(--sy, 35%),
    rgba(231, 211, 163, 0.10) 0%,
    rgba(201, 168, 106, 0.05) 30%,
    transparent 65%
  );
  mix-blend-mode: screen;
  transition: background 0.18s linear;
}
@media (hover: none) { .spotlight { display: none; } }

/* ---------- Custom cursor ---------- */
.cursor {
  position: fixed; top: 0; left: 0; pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
}
.cursor__dot, .cursor__ring {
  position: absolute; left: 0; top: 0;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.cursor__dot {
  width: 6px; height: 6px;
  background: var(--ink);
  transition: width .25s var(--ease), height .25s var(--ease);
}
.cursor__ring {
  width: 38px; height: 38px;
  border: 1px solid var(--ink-soft);
  transition: transform .35s var(--ease-out), width .35s var(--ease-out), height .35s var(--ease-out), opacity .3s;
  opacity: 0.8;
}
.cursor.is-hover .cursor__ring { width: 70px; height: 70px; opacity: 1; }
.cursor.is-hover .cursor__dot { width: 0; height: 0; }

@media (hover: none) {
  html, body { cursor: auto; }
  .cursor { display: none; }
}

/* ---------- Side rails ---------- */
.rail {
  position: fixed;
  top: 0; bottom: 0;
  width: 38px;
  z-index: 6;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
.rail--left { left: 0; border-right: 1px solid var(--line); }
.rail--right { right: 0; border-left: 1px solid var(--line); }
.rail__label {
  font-family: var(--sans);
  letter-spacing: 0.45em;
  font-size: 10px;
  text-transform: uppercase;
  color: var(--ink-mute);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  animation: fadeUp 1.4s var(--ease-out) .8s both;
}
.rail--right .rail__label { transform: none; }

/* ---------- Marquee ---------- */
.marquee {
  position: fixed;
  bottom: 0; left: 38px; right: 38px;
  border-top: 1px solid var(--line);
  height: 44px;
  overflow: hidden;
  z-index: 5;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  backdrop-filter: blur(4px);
}
.marquee__track {
  display: inline-flex;
  align-items: center;
  gap: 2.5rem;
  height: 100%;
  white-space: nowrap;
  padding-left: 2.5rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink-soft);
  opacity: 0.78;
  animation: marquee 72s linear infinite;
}
.marquee__track .dot { color: var(--gold); font-size: 0.7em; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- Stage layout ---------- */
.stage {
  position: relative;
  z-index: 4;
  min-height: 100vh;
  height: 100vh;
  padding: 20px 80px 70px;
  display: flex; flex-direction: column;
  /* Slow cinematic push-in after the curtain lifts */
  transform-origin: 50% 38%;
  animation: pushIn 6s cubic-bezier(.16, 1, .3, 1) 1.0s both;
}
@keyframes pushIn {
  0%   { transform: scale(1.05); opacity: 0.0; }
  20%  { opacity: 1; }
  100% { transform: scale(1);    opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .stage { animation: none; transform: none; opacity: 1; }
}
.topbar__spacer { flex: 0 0 1px; }

.topbar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem;
}
.topbar__mark img {
  width: 86px; height: auto;
  filter: drop-shadow(0 4px 24px rgba(0,0,0,0.6));
}
.pill {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .45rem .9rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(6px);
}
.topbar__meta { display: inline-flex; align-items: center; gap: 1rem; }

.lang {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--ink-mute);
}
.lang__btn {
  background: transparent;
  border: 0;
  padding: .25rem .15rem;
  color: var(--ink-mute);
  letter-spacing: inherit;
  cursor: none;
  position: relative;
  transition: color .3s;
}
.lang__btn::after {
  content: ""; position: absolute; left: 4px; right: 4px; bottom: -2px;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: center;
  transition: transform .35s var(--ease-out);
}
.lang__btn:hover { color: var(--ink-soft); }
.lang__btn.is-active { color: var(--ink); }
.lang__btn.is-active::after { transform: scaleX(1); }
.lang__sep { opacity: 0.5; }

.audio-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-mute);
  cursor: none;
  transition: color .3s, border-color .3s, transform .3s;
}
.audio-toggle:hover { color: var(--ink); border-color: rgba(231,211,163,.4); }
.audio-toggle__icon--on { display: none; }
.audio-toggle[aria-pressed="true"] {
  color: var(--gold-2);
  border-color: rgba(231,211,163,.45);
}
.audio-toggle[aria-pressed="true"] .audio-toggle__icon--off { display: none; }
.audio-toggle[aria-pressed="true"] .audio-toggle__icon--on { display: inline-block; }

.pulse {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(201, 168, 106, 0.6);
  animation: pulse 2.2s ease-out infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(201, 168, 106, 0.55); }
  70%  { box-shadow: 0 0 0 12px rgba(201, 168, 106, 0); }
  100% { box-shadow: 0 0 0 0 rgba(201, 168, 106, 0); }
}

/* ---------- Hero ---------- */
.hero {
  flex: 1;
  display: flex; flex-direction: column; justify-content: center;
  align-items: center; text-align: center;
  padding: 2vh 0 2vh;
}

.fleuron {
  display: block;
  width: clamp(100px, 10vw, 140px);
  height: auto;
  margin: 0 auto 1rem;
  color: var(--gold);
  opacity: 0.75;
  filter: drop-shadow(0 0 4px rgba(201, 168, 106, 0.2));
}
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.55em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 1.2rem;
  position: relative;
}
/* (Flanking lines removed — the fleuron above provides the only ornament) */

.display {
  margin: 0 auto;
  user-select: none;
}

/* Hand-written signature */
.signature {
  position: relative;
  display: inline-block;
  font-family: "Pinyon Script", "Italianno", cursive;
  font-weight: 400;
  font-size: clamp(4.5rem, 14vw, 13.5rem);
  line-height: 1.25;
  letter-spacing: 0.005em;
  padding: 0.45em 0.12em 0.4em;
  color: #f3e7c8;
  transition: transform .4s cubic-bezier(.16,1,.3,1);
  will-change: transform;
}

/* Wrapper carries the clip-path animation only.
   Keeping clip-path off the gradient element avoids an iOS Safari bug
   where clip-path + -webkit-background-clip: text breaks rendering. */
.signature__reveal {
  display: inline-block;
  -webkit-clip-path: polygon(-2% -60%, -2% -60%, -2% 160%, -2% 160%);
  clip-path: polygon(-2% -60%, -2% -60%, -2% 160%, -2% 160%);
  animation: writeReveal 3.6s cubic-bezier(.65, .04, .35, 1) 1.4s forwards;
  animation-play-state: paused;
  will-change: clip-path;
}
/* Only start the writing once the script font is ready (no FOUT in the title) */
body.fonts-ready .signature__reveal,
body.fonts-ready .signature__nib,
body.fonts-ready .signature__flourish path { animation-play-state: running; }
.signature__nib,
.signature__flourish path { animation-play-state: paused; }

.signature__text {
  display: inline-block;
  position: relative;
  background:
    /* Idle satin sweep — moves L→R across the gold gradient */
    linear-gradient(105deg,
      transparent 30%,
      rgba(255, 245, 220, 0.55) 47%,
      rgba(255, 250, 235, 0.85) 50%,
      rgba(255, 245, 220, 0.55) 53%,
      transparent 70%) 200% 0 / 200% 100% no-repeat,
    /* Base gold gradient */
    linear-gradient(180deg, #fff5dc 0%, #e7d3a3 45%, #c9a86a 80%, #8c6f3a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 6px 28px rgba(201, 168, 106, 0.22));
}
body.fonts-ready .signature__text {
  /* Long pause then a slow sweep every cycle; starts after the writing finishes */
  animation: satinSweep 12s cubic-bezier(.65, .04, .35, 1) 7.2s infinite;
}
@keyframes satinSweep {
  0%, 70% { background-position: 200% 0, 0 0; }
  100%    { background-position: -100% 0, 0 0; }
}
@media (prefers-reduced-motion: reduce) {
  body.fonts-ready .signature__text { animation: none; }
}

/* Press easter-egg: pearl-white re-signing */
body.pearl-mode .signature__text {
  background: linear-gradient(180deg, #ffffff 0%, #f6efe2 60%, #d8cfb6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 6px 32px rgba(255, 255, 255, 0.35));
  animation: none;
}


/* Pen nib travelling along the baseline */
.signature__nib {
  position: absolute;
  left: 0.14em;
  bottom: 0.34em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: radial-gradient(circle, #fff7df 0%, #e7d3a3 45%, rgba(201, 168, 106, 0) 70%);
  box-shadow: 0 0 18px 4px rgba(231, 211, 163, 0.55);
  opacity: 0;
  animation: nibTrack 3.6s cubic-bezier(.65, .04, .35, 1) 1.4s forwards;
}

/* Underline flourish drawn after the name */
.signature__flourish {
  position: absolute;
  left: 50%;
  bottom: 0.05em;
  width: 56%;
  height: 0.18em;
  transform: translateX(-50%);
  color: #e7d3a3;
  opacity: 0.85;
  overflow: visible;
}
.signature__flourish path {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: drawFlourish 1.4s cubic-bezier(.65,.04,.35,1) 5.1s forwards;
  filter: drop-shadow(0 0 6px rgba(201, 168, 106, 0.35));
}

@keyframes writeReveal {
  0% {
    -webkit-clip-path: polygon(-2% -60%, -2% -60%, -2% 160%, -2% 160%);
    clip-path: polygon(-2% -60%, -2% -60%, -2% 160%, -2% 160%);
  }
  82% {
    -webkit-clip-path: polygon(-2% -60%, 95% -60%, 95% 160%, -2% 160%);
    clip-path: polygon(-2% -60%, 95% -60%, 95% 160%, -2% 160%);
  }
  90% {
    -webkit-clip-path: polygon(-2% -60%, 95% -60%, 95% 160%, -2% 160%);
    clip-path: polygon(-2% -60%, 95% -60%, 95% 160%, -2% 160%);
  }
  100% {
    -webkit-clip-path: polygon(-2% -60%, 110% -60%, 110% 160%, -2% 160%);
    clip-path: polygon(-2% -60%, 110% -60%, 110% 160%, -2% 160%);
  }
}
@keyframes nibTrack {
  0%   { left: 0.14em;  opacity: 0; }
  6%   { opacity: 1; }
  92%  { left: calc(100% - 0.18em); opacity: 1; }
  100% { left: calc(100% - 0.05em); opacity: 0; }
}
@keyframes drawFlourish {
  0%   { stroke-dashoffset: 600; }
  100% { stroke-dashoffset: 0; }
}


.lede {
  max-width: 36rem;
  margin: 1.4rem auto 2rem;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1rem, 1.35vw, 1.25rem);
  line-height: 1.5;
  color: var(--ink-soft);
}

/* ---------- Coming Soon ---------- */
.coming {
  display: inline-flex;
  align-items: center;
  gap: 1.4rem;
  padding: 0.4rem 0;
}
.coming__text {
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(0.78rem, 1vw, 0.95rem);
  letter-spacing: 0.55em;
  text-transform: uppercase;
  color: var(--gold-2);
  text-indent: 0.55em; /* compensate for trailing letter-spacing */
  background: linear-gradient(180deg, #fff5dc 0%, #e7d3a3 50%, #c9a86a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}
.coming__text::after {
  content: "";
  display: inline-block;
  width: 6px; height: 6px;
  margin-left: 0.4em;
  border-radius: 50%;
  background: var(--gold);
  vertical-align: middle;
  animation: pulse 2.2s ease-out infinite;
}
.coming__line {
  display: inline-block;
  width: clamp(40px, 6vw, 90px);
  height: 1px;
  color: var(--ink-mute);
  overflow: visible;
}
.coming__line line {
  stroke-dasharray: 90;
  stroke-dashoffset: 90;
  animation: drawHairline 1.4s cubic-bezier(.65,.04,.35,1) 5.9s forwards;
  transform-origin: 100% 0;
}
.coming__line--right line {
  transform: scaleX(-1);
  transform-origin: 50% 0;
}
@keyframes drawHairline {
  to { stroke-dashoffset: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .coming__line line { animation: none; stroke-dashoffset: 0; }
}

/* ---------- Countdown ---------- */
.countdown {
  list-style: none;
  display: inline-flex; align-items: flex-end; gap: 1rem;
  padding: 1rem 1.6rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0));
  backdrop-filter: blur(8px);
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
}
.countdown::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(231, 211, 163, 0.12) 50%, transparent 70%);
  transform: translateX(-100%);
  animation: shimmer 5s ease-in-out infinite;
}
@keyframes shimmer {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}
.countdown li {
  display: flex; flex-direction: column; align-items: center;
  min-width: 64px;
}
.countdown .num {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.countdown .lbl {
  margin-top: 0.45rem;
  font-size: 9.5px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.countdown .sep {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  color: var(--gold);
  padding-bottom: 1.4rem;
  opacity: 0.6;
}

/* ---------- Signup ---------- */
.signup {
  display: flex; align-items: stretch;
  width: min(560px, 90vw);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px;
  background: rgba(255,255,255,0.025);
  backdrop-filter: blur(8px);
  transition: border-color .3s, box-shadow .3s, transform .3s;
  position: relative;
}
.signup:focus-within {
  border-color: rgba(231, 211, 163, 0.5);
  box-shadow: 0 0 0 6px rgba(201, 168, 106, 0.07);
  transform: translateY(-2px);
}
.signup input {
  flex: 1;
  background: transparent;
  border: 0; outline: 0;
  padding: 0 1.2rem;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: var(--ink);
  cursor: none;
}
.signup input::placeholder { color: var(--ink-mute); }
.signup button {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .9rem 1.5rem;
  border-radius: 999px;
  border: 0;
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  color: #1a1408;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: none;
  transition: transform .3s var(--ease-out), box-shadow .3s;
  position: relative;
  overflow: hidden;
}
.signup button:hover {
  transform: translateX(3px);
  box-shadow: 0 10px 30px -10px rgba(201, 168, 106, 0.45);
}
.signup button svg { transition: transform .3s var(--ease-out); }
.signup button:hover svg { transform: translateX(4px); }
.signup__msg {
  position: absolute;
  bottom: -1.8rem; left: 0; right: 0;
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-2);
  opacity: 0; transform: translateY(-4px);
  transition: opacity .4s, transform .4s;
}
.signup__msg.show { opacity: 1; transform: translateY(0); }

/* ---------- Footer ---------- */
.footer {
  padding-top: 1.2rem;
}
.footer__row {
  display: flex; align-items: center; justify-content: center;
  gap: 1.4rem;
  font-size: 10.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-mute);
  flex-wrap: wrap;
}
.footer__mark {
  width: 38px; height: auto;
  opacity: 0.55;
  transition: opacity .4s;
}
.footer__mark:hover { opacity: 0.9; }
.footer__meta {
  color: var(--ink-soft);
  letter-spacing: 0.36em;
}
.footer__dotline {
  display: inline-block; width: 28px; height: 1px;
  background: var(--ink-mute); opacity: 0.5;
}
.footer .link { position: relative; transition: color .3s; }
.footer .link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -4px;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease-out);
}
.footer .link:hover { color: var(--ink); }
.footer .link:hover::after { transform: scaleX(1); }
.dotline {
  display: inline-block; width: 28px; height: 1px;
  background: var(--ink-mute); opacity: 0.5;
}

/* ---------- Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  filter: blur(8px);
  animation: fadeUp 1.2s var(--ease-out) forwards;
  animation-delay: calc(var(--d, 0) * 1ms);
}
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

/* ---------- Responsive ---------- */
@media (max-width: 820px) {
  .stage { padding: 24px 28px 80px; }
  .rail { display: none; }
  .marquee { left: 0; right: 0; }
  .countdown { gap: .5rem; padding: 1rem 1.2rem; }
  .countdown li { min-width: 48px; }
  .footer__row { gap: .8rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .display i { transform: none; opacity: 1; }
}
