:root {
  --black: #030303;
  --ash: #8d8880;
  --bone: #e8e0d0;
  --gold: #b79a57;
  --serif: "Cormorant Garamond", Garamond, Georgia, "Times New Roman", serif;
  --sans: Inter, Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  width: 100%;
}

body {
  background: var(--black);
  color: var(--bone);
  font-family: var(--serif);
}

.stage {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* ── Hero ─────────────────────────────────────────────── */

.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 100vh;
  min-height: 100svh;
  padding: clamp(32px, 7vw, 96px);
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 45%, rgba(183, 154, 87, 0.03), transparent 28rem),
    var(--black);
}

.light-slit {
  position: absolute;
  top: 10vh;
  left: 50%;
  width: 1px;
  height: 72vh;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(183, 154, 87, 0.18) 12%,
    rgba(232, 224, 208, 0.9) 48%,
    rgba(183, 154, 87, 0.22) 86%,
    transparent
  );
  box-shadow:
    0 0 12px rgba(183, 154, 87, 0.2),
    0 0 72px rgba(183, 154, 87, 0.12);
  transform: translateX(-50%) rotate(2deg);
  animation: slit 26s ease-in-out infinite alternate;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 680px;
  animation: arrive 1800ms ease both;
}

.kicker {
  margin: 0;
  color: var(--ash);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h1 {
  margin: 12px 0 0;
  font-size: clamp(72px, 18vw, 190px);
  font-weight: 300;
  line-height: 0.82;
  letter-spacing: -0.01em;
}

.claim {
  margin: clamp(28px, 4vh, 52px) 0 0;
  color: var(--ash);
  font-family: var(--serif);
  font-size: clamp(18px, 2.4vw, 28px);
  font-style: italic;
  font-weight: 300;
  line-height: 1.4;
}

/* ── About ────────────────────────────────────────────── */

.about {
  padding: clamp(64px, 14vw, 160px) clamp(32px, 7vw, 96px);
  border-top: 1px solid rgba(141, 136, 128, 0.14);
}

.about-inner {
  max-width: 560px;
}

.about-text {
  margin: 0 0 clamp(24px, 3vh, 40px);
  color: var(--ash);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.85;
  letter-spacing: 0.02em;
}

.status {
  margin: clamp(40px, 6vh, 72px) 0 0;
  color: var(--bone);
  font-family: var(--serif);
  font-size: clamp(20px, 2.8vw, 32px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.3;
}

/* ── Legal placeholder pages ──────────────────────────── */

.legal-page {
  display: flex;
  align-items: flex-start;
  min-height: 100vh;
  padding: clamp(48px, 10vw, 120px) clamp(32px, 7vw, 96px);
}

.legal-inner {
  max-width: 560px;
}

.back {
  display: inline-block;
  margin-bottom: 48px;
  color: var(--ash);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 400ms ease;
}

.back:hover {
  color: var(--bone);
}

.legal-page h2 {
  margin: 0 0 32px;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 300;
  letter-spacing: 0;
}

.legal-notice {
  margin: 0;
  color: var(--ash);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.85;
  letter-spacing: 0.02em;
}

/* ── Footer ───────────────────────────────────────────── */

.footer {
  margin-top: auto;
  padding: clamp(32px, 5vh, 56px) clamp(32px, 7vw, 96px);
  border-top: 1px solid rgba(141, 136, 128, 0.14);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-contact,
.footer-links a {
  color: var(--ash);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 400ms ease;
}

.footer-contact:hover,
.footer-links a:hover {
  color: var(--bone);
}

.footer-links {
  display: flex;
  gap: clamp(20px, 3vw, 40px);
}

/* ── Animations ───────────────────────────────────────── */

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

@keyframes slit {
  from {
    opacity: 0.5;
    transform: translateX(-50%) rotate(2deg) scaleY(0.94);
  }
  to {
    opacity: 0.86;
    transform: translateX(calc(-50% + 16px)) rotate(-1deg) scaleY(1.02);
  }
}

/* ── Responsive ───────────────────────────────────────── */

@media (max-width: 600px) {
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-copy,
  .light-slit {
    animation: none;
  }
}
