@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@400;500;600&display=swap');

:root {
  --ink: #10151c;
  --paper: #f4f1e8;
  --panel: #171d26;
  --amber: #e8a13d;
  --amber-soft: #f0c07a;
  --line: rgba(244, 241, 232, 0.14);
  --muted: rgba(244, 241, 232, 0.62);
  --radius: 14px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .display {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0;
}

a { color: inherit; }

.wrap {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Nav ---- */
nav {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(16, 21, 28, 0.88);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.brand {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
}

.brand span { color: var(--amber); }

nav .links {
  display: flex;
  gap: 28px;
  font-size: 0.92rem;
}

nav .links a {
  text-decoration: none;
  color: var(--muted);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}

nav .links a:hover,
nav .links a[aria-current="page"] {
  color: var(--paper);
  border-color: var(--amber);
}

/* ---- Hero ---- */
.hero {
  padding: 96px 0 64px;
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  color: var(--amber);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 1.02;
}

.hero p.lede {
  margin-top: 20px;
  max-width: 54ch;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-links {
  margin-top: 32px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.pill {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid var(--line);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--paper);
  transition: border-color 0.15s ease, background 0.15s ease;
}

.pill:hover { border-color: var(--amber); background: rgba(232, 161, 61, 0.08); }

.pill.primary {
  background: var(--amber);
  color: var(--ink);
  border-color: var(--amber);
  font-weight: 600;
}

.pill.primary:hover { background: var(--amber-soft); }

/* ---- Section shell ---- */
section.block {
  padding: 64px 0;
  border-bottom: 1px solid var(--line);
}

section.block:last-of-type { border-bottom: none; }

.section-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 32px;
}

.section-head .num {
  font-family: 'Space Grotesk', sans-serif;
  color: var(--amber);
  font-size: 0.85rem;
  font-weight: 600;
}

.section-head h2 { font-size: 1.7rem; }

/* ---- Bio ---- */
.bio-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: start;
}

.bio-grid p { color: var(--muted); margin: 0 0 14px; }
.bio-grid p:last-child { margin-bottom: 0; }

.placeholder-note {
  font-size: 0.85rem;
  color: var(--amber-soft);
  border-left: 2px solid var(--amber);
  padding-left: 12px;
  margin-top: 18px;
}

/* ---- Photo grid ---- */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.photo-slot {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  border: 1px dashed var(--line);
  background: var(--panel);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.82rem;
  text-align: center;
  padding: 12px;
}

/* ---- Fun facts ---- */
.facts-list {
  display: grid;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.facts-list li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  padding: 18px 20px;
  background: var(--panel);
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.facts-list .mark {
  font-family: 'Space Grotesk', sans-serif;
  color: var(--amber);
  font-weight: 700;
  font-size: 1.1rem;
}

/* ---- Schedule table ---- */
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.schedule-table th {
  text-align: left;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0 16px 12px;
  border-bottom: 1px solid var(--line);
}

.schedule-table td {
  padding: 18px 16px;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}

.schedule-table tr:last-child td { border-bottom: none; }

.platform-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.platform-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--amber);
  flex: none;
}

.schedule-table a.watch-link {
  color: var(--amber);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.88rem;
}

.schedule-table a.watch-link:hover { color: var(--amber-soft); }

.tz-note {
  margin-top: 20px;
  font-size: 0.85rem;
  color: var(--muted);
}

/* ---- Footer ---- */
footer {
  padding: 40px 0 60px;
  color: var(--muted);
  font-size: 0.85rem;
}

@media (max-width: 640px) {
  .bio-grid { grid-template-columns: 1fr; }
  .photo-grid { grid-template-columns: repeat(2, 1fr); }
  nav .links { gap: 16px; font-size: 0.85rem; }
  .schedule-table { display: block; overflow-x: auto; }
}
