@font-face {
  font-family: 'Quicksand';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('fonts/quicksand-latin-300-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Quicksand';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/quicksand-latin-400-normal.woff2') format('woff2');
}
:root {
  --ground: #020202;
  --gold-hi: #fff0c0;
  --gold-1: #f6d97c;
  --gold-2: #d9a83f;
  --gold-3: #8f5f1a;
  --glow: 255, 183, 77;
}

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

html, body { background: var(--ground); }

body {
  min-height: 100dvh;
  display: flex;
  justify-content: center;
  font-family: 'Quicksand', system-ui, sans-serif;
  font-weight: 300;
  color: var(--gold-1);
  overflow-x: hidden;
}

.stage {
  position: relative;
  width: min(100%, 680px);
  min-height: 100dvh;
  padding: clamp(2rem, 5vh, 3.5rem) 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  gap: clamp(0.75rem, 2vh, 1.5rem);
  text-align: center;
}

/* ambient light: beam from above, ember reflection below */
.beam {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 42% at 50% -6%, rgba(var(--glow), 0.16), transparent 70%),
    radial-gradient(ellipse 80% 26% at 50% 103%, rgba(var(--glow), 0.18), transparent 70%);
}

.gold-text {
  background: linear-gradient(180deg,
    var(--gold-hi) 0%, var(--gold-1) 38%, var(--gold-2) 66%, var(--gold-3) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 16px rgba(var(--glow), 0.28));
}

.logo     { width: clamp(150px, 44vw, 235px); height: auto; }
.monogram { width: clamp(115px, 33vw, 180px); height: auto; }

.monogram text {
  font-family: 'Quicksand', system-ui, sans-serif;
  font-weight: 400;
  font-size: 38px;
  fill: url(#gold);
  text-anchor: middle;
}

.wordmark {
  font-size: clamp(2.3rem, 9vw, 4.5rem);
  font-weight: 300;
  letter-spacing: 0.015em;
  line-height: 1.1;
}

.tagline { font-size: clamp(1.05rem, 4vw, 1.65rem); letter-spacing: 0.04em; }

.coming {
  font-size: clamp(2.7rem, 11.5vw, 6rem);
  font-weight: 300;
  line-height: 1.05;
}

.stay { font-size: clamp(1rem, 3.6vw, 1.4rem); letter-spacing: 0.03em; }

.home-link {
  color: var(--gold-1);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.home-link:focus-visible { outline: 2px solid var(--gold-1); outline-offset: 4px; }

/* divider rules with lens-flare highlight */
.rule {
  position: relative;
  width: min(78%, 540px);
  height: 2px;
  background: linear-gradient(90deg,
    transparent, rgba(217, 168, 63, 0.85) 18%, rgba(217, 168, 63, 0.85) 82%, transparent);
}
.rule::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 120px;
  height: 26px;
  transform: translate(-50%, -50%);
  background: radial-gradient(closest-side,
    rgba(255, 246, 216, 0.95), rgba(var(--glow), 0.35) 45%, transparent 75%);
}

/* single orchestrated load sequence; opacity/transform only
   (must not touch `filter` — it would clobber .gold-text's glow) */
@media (prefers-reduced-motion: no-preference) {
  .stage > :not(.beam) {
    opacity: 0;
    animation: rise 0.9s ease forwards;
  }
  .stage > :nth-child(2) { animation-delay: 0.1s; }
  .stage > :nth-child(3) { animation-delay: 0.25s; }
  .stage > :nth-child(4) { animation-delay: 0.4s; }
  .stage > :nth-child(5) { animation-delay: 0.55s; }
  .stage > :nth-child(6) { animation-delay: 0.7s; }
  .stage > :nth-child(7) { animation-delay: 0.85s; }
  .stage > :nth-child(8) { animation-delay: 1.0s; }
  .stage > :nth-child(9) { animation-delay: 1.15s; }
}
@keyframes rise {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: none; }
}
