:root {
  --ink: #0d120e;
  --cream: #f7f1e3;
  --cream-dim: rgba(247, 241, 227, 0.72);
  --gold: #ffd215;
  --gold-deep: #f5b93d;
  --line: rgba(247, 241, 227, 0.28);
  --field: rgba(247, 241, 227, 0.08);
  --scrim-top: rgba(8, 12, 10, 0.55);
  --scrim-mid: rgba(8, 12, 10, 0.22);
  --scrim-bottom: rgba(6, 9, 7, 0.82);
  --font: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  --max-w: 36rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  font-family: var(--font);
  color: var(--cream);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

.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;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 20;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: var(--ink);
  color: var(--cream);
  text-decoration: none;
  transform: translateY(-200%);
  transition: transform 0.2s ease;
}
.skip-link:focus {
  transform: translateY(0);
}

.hero-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
}

.hero-bg__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.scrim {
  position: fixed;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    180deg,
    var(--scrim-top) 0%,
    var(--scrim-mid) 34%,
    rgba(10, 14, 11, 0.38) 62%,
    var(--scrim-bottom) 100%
  );
}

.stage {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2.5rem, 9vh, 5rem) 1.5rem 5rem;
  overflow-x: hidden;
}

.hero {
  width: min(100%, var(--max-w));
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.eyebrow {
  margin: 0 0 0.6rem;
  font-size: clamp(0.7rem, 1.6vw, 0.85rem);
  font-weight: 700;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  animation: rise 0.7s ease 0.1s both;
}

.wordmark {
  margin: 0;
  font-size: clamp(3.2rem, 12vw, 5.6rem);
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1;
  background: linear-gradient(180deg, #fff7dc 0%, var(--gold) 55%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 2px 18px rgba(255, 210, 21, 0.22));
  animation: rise 0.7s ease 0.18s both;
}

.tagline {
  margin: 0.9rem 0 0;
  font-size: clamp(0.95rem, 2.6vw, 1.15rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--cream-dim);
  animation: rise 0.7s ease 0.26s both;
}

.home-link {
  margin-top: 1.25rem;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 210, 21, 0.4);
  animation: rise 0.7s ease 0.34s both;
}

.footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 0.7rem 1.5rem calc(0.7rem + env(safe-area-inset-bottom));
  text-align: center;
  font-size: 0.78rem;
  color: var(--cream-dim);
  pointer-events: none;
}
.footer p {
  margin: 0;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
  }
}
