
:root {
  --bg: #0b0b0b;
  --ink: #f4f1ea;
  --muted: rgba(244,241,234,0.72);
  --gold: #c4a574;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "DM Sans", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.5;
  overflow-x: hidden;
}

img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.ai-pill {
  position: fixed;
  top: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 40;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 0.85rem;
  border: 1px solid rgba(196,165,116,0.45);
  background: rgba(11,11,11,0.72);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  white-space: nowrap;
}

.topbar {
  position: fixed;
  inset: 2.4rem 0 auto;
  z-index: 30;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 clamp(1rem, 4vw, 3rem);
  pointer-events: none;
}
.topbar a { pointer-events: auto; }
.brand {
  font-family: var(--serif);
  letter-spacing: 0.28em;
  font-size: 0.95rem;
}
.topnav {
  display: flex;
  gap: 1.25rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.topnav a:hover { color: var(--ink); }
@media (max-width: 720px) {
  .topnav { display: none; }
}

.stage {
  position: relative;
  min-height: 160vh;
  display: grid;
  place-items: center;
  overflow: clip;
}
.stage--hero { min-height: 180vh; }
.stage--tall { min-height: 170vh; }

.stage-media {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  will-change: transform;
  transform-origin: center center;
}
.stage-media img,
.stage-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.stage-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,11,11,0.35), rgba(11,11,11,0.55) 55%, rgba(11,11,11,0.82));
  pointer-events: none;
}
.stage-veil--soft {
  background: linear-gradient(90deg, rgba(11,11,11,0.55), rgba(11,11,11,0.15) 45%, rgba(11,11,11,0.55));
}

.stage-copy {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -42%);
  width: min(34rem, calc(100% - 2.5rem));
  text-align: center;
  text-shadow: 0 8px 40px rgba(0,0,0,0.45);
}
.stage-copy--left {
  left: clamp(1.25rem, 8vw, 6rem);
  transform: translate(0, -40%);
  text-align: left;
}
.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
h1, h2 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.05;
  margin: 0 0 1rem;
}
h1 { font-size: clamp(3.2rem, 10vw, 6.5rem); letter-spacing: 0.04em; }
h2 { font-size: clamp(2.2rem, 6vw, 4rem); }
.lede, .stage-copy p {
  color: var(--muted);
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  max-width: 28rem;
}
.stage-copy--left .lede,
.stage-copy--left p { margin-right: auto; }
.stage-copy { display: flex; flex-direction: column; align-items: center; }
.stage-copy--left { align-items: flex-start; }
.text-link {
  margin-top: 1.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 0.2rem;
  color: var(--ink);
}
.scroll-hint {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
}

.chapter {
  padding: clamp(4rem, 12vh, 8rem) clamp(1.25rem, 5vw, 4rem);
  background: #111;
}
.chapter--dark { background: #070707; border-top: 1px solid rgba(196,165,116,0.18); }
.chapter-inner { max-width: 40rem; margin: 0 auto; text-align: center; }
.chapter-inner p { color: var(--muted); font-size: 1.05rem; }
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 2rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.4rem;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: #111;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.btn--ghost { background: transparent; color: var(--ink); }
.btn:hover { filter: brightness(1.05); }

.foot {
  padding: 2rem 1.25rem 3rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.8rem;
}
.foot a { color: var(--gold); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .stage-media { transform: none !important; }
}
