@font-face {
  font-family: Geist;
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url("/fonts/4cf2300e9c8272f7-s.p.woff2") format("woff2");
}
@font-face {
  font-family: "Geist Mono";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("/fonts/93f479601ee12b01-s.p.woff2") format("woff2");
}
@font-face {
  font-family: Fraunces;
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("/fonts/e0f4b1ebfdbd83f9-s.p.woff2") format("woff2");
}

:root {
  --bg: #f7f4ea;
  --ink: #1a1812;
  --ink-dim: #5a544a;
  --ink-faint: #8c8678;
  --line: #dfd7c1;
  --paper: #fffdf6;
  --accent: #3d2f1f;
  --font-sans: Geist, ui-sans-serif, system-ui, sans-serif;
  --font-mono: "Geist Mono", ui-monospace, monospace;
  --font-display: Fraunces, ui-serif, Georgia, serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; height: auto; }

.wrap {
  width: min(1280px, calc(100% - 2.5rem));
  margin-inline: auto;
}
@media (min-width: 768px) {
  .wrap { width: min(1280px, calc(100% - 5rem)); }
}

.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(10px);
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 64px;
}
.brand {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}
.nav-links {
  display: none;
  gap: 1.25rem;
  font-size: 0.8rem;
  color: var(--ink-dim);
}
.nav-links a:hover { color: var(--ink); }
@media (min-width: 900px) {
  .nav-links { display: flex; }
}

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-weight: 500;
}
.h-hero {
  font-family: var(--font-display);
  font-size: clamp(42px, 7vw, 84px);
  line-height: 0.96;
  letter-spacing: -0.03em;
  font-weight: 400;
  margin: 0.4rem 0 0;
}
.h-section {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  font-weight: 400;
  margin: 0;
}
.lead {
  margin-top: 1.25rem;
  max-width: 40rem;
  color: var(--ink-dim);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.65;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid var(--ink);
  padding: 0.75rem 1.1rem;
  font-size: 0.9rem;
  border-radius: 0;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--ink); color: var(--bg); }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.75rem; }

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(247,244,234,0.15) 0%, rgba(247,244,234,0.55) 45%, rgba(247,244,234,0.96) 78%, var(--bg) 100%),
    radial-gradient(ellipse at 70% 20%, rgba(26,24,18,0.18), transparent 55%);
}
.hero-copy {
  position: relative;
  z-index: 1;
  padding: 7rem 0 3.5rem;
  max-width: 44rem;
  animation: rise 900ms ease both;
}
.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-dim);
  letter-spacing: 0.04em;
}
.live-pill::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2f6b3a;
  box-shadow: 0 0 0 0 rgba(47,107,58,0.5);
  animation: pulse 2.2s ease infinite;
}

section {
  border-top: 1px solid var(--line);
  padding: 5.5rem 0;
}
@media (min-width: 768px) {
  section { padding: 7.5rem 0; }
}
.section-head { max-width: 48rem; margin-bottom: 2.75rem; }

.split {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 900px) {
  .split-2 { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .split-3 { grid-template-columns: repeat(3, 1fr); }
}

.panel {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 1.4rem 1.5rem;
}
.panel h3 {
  margin: 0 0 0.6rem;
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: -0.02em;
  font-weight: 400;
}
.panel p { margin: 0; color: var(--ink-dim); }

.quote {
  border-left: 2px solid var(--ink);
  padding: 0.2rem 0 0.2rem 1.1rem;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.4vw, 1.8rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.timeline {
  display: grid;
  gap: 0;
  border: 1px solid var(--line);
}
.tl-row {
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border-top: 1px solid var(--line);
}
.tl-row:first-child { border-top: 0; }
.tl-time {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-faint);
}
.tl-body { color: var(--ink-dim); font-size: 0.95rem; }

.table-wrap { overflow-x: auto; border: 1px solid var(--line); }
table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
  background: var(--paper);
}
th, td {
  text-align: left;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  vertical-align: top;
  font-size: 0.92rem;
}
th:last-child, td:last-child { border-right: 0; }
tr:last-child td { border-bottom: 0; }
th {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-weight: 500;
  background: color-mix(in srgb, var(--bg) 70%, var(--paper));
}

.cast-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 800px) {
  .cast-grid { grid-template-columns: 1.1fr 1fr; align-items: start; }
}
.cast-art {
  border: 1px solid var(--line);
  background: #0d0c0a;
  overflow: hidden;
}
.cast-art img {
  width: 100%;
  mix-blend-mode: normal;
  transform: scale(1.01);
  animation: drift 12s ease-in-out infinite alternate;
}
.pose-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 1rem;
}
.pose {
  border: 1px solid var(--line);
  background: #111;
  overflow: hidden;
}
.pose img { width: 100%; }
.pose figcaption {
  padding: 0.55rem 0.65rem;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.mode {
  display: grid;
  gap: 0.35rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--line);
}
.mode:first-child { border-top: 0; }
.mode-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-faint);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.mode h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: -0.02em;
}
.mode p { margin: 0.2rem 0 0; color: var(--ink-dim); max-width: 42rem; }

.axiom {
  margin-top: 2rem;
  padding: 1.25rem 1.4rem;
  border: 1px solid var(--line);
  background: var(--ink);
  color: var(--bg);
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 2rem 0 3rem;
  color: var(--ink-faint);
  font-size: 0.85rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
}

.source-list {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.25rem;
}
.source-list a {
  display: block;
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 0.85rem 1rem;
  font-size: 0.9rem;
  color: var(--ink-dim);
  transition: border-color 160ms ease, color 160ms ease;
}
.source-list a:hover {
  border-color: var(--ink);
  color: var(--ink);
}
.source-list span {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 0.25rem;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(47,107,58,0.45); }
  70% { box-shadow: 0 0 0 10px rgba(47,107,58,0); }
  100% { box-shadow: 0 0 0 0 rgba(47,107,58,0); }
}
@keyframes drift {
  from { transform: scale(1.02) translateY(0); }
  to { transform: scale(1.05) translateY(-1.5%); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}
