:root {
  --ink: #18181b;
  --ink-muted: #52525b;
  --gold: #a16207;
  --wash-base: #faf7f0;
  --font-display: "Newsreader", "Iowan Old Style", "Palatino Linotype", Palatino,
    Georgia, serif;
}

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

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  min-height: 100dvh;
  color: var(--ink);
  font-family: var(--font-display);
  background: var(--wash-base);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.wash {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background:
    radial-gradient(
      155% 118% at 0% 0%,
      rgb(161 98 7 / 0.34) 0%,
      rgb(161 98 7 / 0.16) 42%,
      transparent 78%
    ),
    radial-gradient(
      100% 80% at 100% 100%,
      rgb(161 98 7 / 0.15) 0%,
      transparent 64%
    ),
    var(--wash-base);
}

.stage {
  position: relative;
  z-index: 1;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(1.15rem, 3.5vw, 2.25rem) clamp(1rem, 3.2vw, 1.6rem);
  max-width: 46rem;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin: 0 0 1.35rem;
}

.brand-mark {
  width: clamp(3.25rem, 8.5vw, 4.25rem);
  height: clamp(3.25rem, 8.5vw, 4.25rem);
  object-fit: contain;
  flex-shrink: 0;
}

.brand-wordmark {
  margin: 0;
  font-size: clamp(2.35rem, 7vw, 3.5rem);
  font-weight: 600;
  letter-spacing: 0.045em;
  line-height: 0.95;
  color: var(--ink);
}

.headline {
  margin: 0 0 0.65rem;
  font-size: clamp(1.3rem, 3.2vw, 1.65rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.lead {
  margin: 0 0 1.6rem;
  max-width: 32rem;
  font-size: clamp(1.15rem, 2.8vw, 1.4rem);
  line-height: 1.5;
  color: var(--ink-muted);
  font-weight: 400;
}

.seal {
  margin: 0;
  width: min(80vw, 28rem);
  animation: seal-breathe 7s ease-in-out infinite;
}

.seal-img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1444 / 1078;
  object-fit: contain;
}

@keyframes seal-breathe {
  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.96;
  }
  50% {
    transform: translateY(-7px) scale(1.015);
    opacity: 1;
  }
}

.status {
  margin: 1.6rem 0 0;
  font-size: clamp(0.95rem, 2.3vw, 1.15rem);
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  animation: rise-in 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

[data-reveal="1"] {
  animation-delay: 0.06s;
}
[data-reveal="2"] {
  animation-delay: 0.2s;
}
[data-reveal="3"] {
  animation-delay: 0.34s;
}
[data-reveal="4"] {
  animation-delay: 0.48s;
}
[data-reveal="5"] {
  animation-delay: 0.62s;
}

@keyframes rise-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .seal,
  [data-reveal] {
    animation: none !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (min-width: 768px) {
  .stage {
    max-width: 52rem;
  }

  .seal {
    width: min(100%, 30rem);
  }
}
