:root {
  color-scheme: light;
  --bg: #f6f7f2;
  --paper: #fffdf7;
  --ink: #1e2a28;
  --muted: #65706c;
  --line: #d8ded5;
  --accent: #2c6b63;
  --accent-2: #b85f35;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font: 16px/1.55 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

img, video { display: block; max-width: 100%; }

a { color: var(--accent); text-decoration-thickness: 1px; text-underline-offset: 3px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(30, 42, 40, .12);
  background: rgba(246, 247, 242, .92);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

.brand img { border-radius: 8px; }

nav { display: flex; gap: 20px; font-size: 14px; }
nav a { color: var(--muted); text-decoration: none; }
nav a:hover { color: var(--ink); }

.hero {
  position: relative;
  min-height: min(720px, calc(100vh - 32px));
  display: grid;
  align-items: end;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13, 28, 30, .78), rgba(13, 28, 30, .38) 48%, rgba(13, 28, 30, .08));
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 36px));
  margin: 0 0 clamp(48px, 9vh, 96px) clamp(18px, 6vw, 76px);
  color: #fffdf7;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero .eyebrow { color: #f1b58c; }

h1, h2, h3, p { overflow-wrap: anywhere; }
h1 { margin: 0; font-size: clamp(42px, 7vw, 88px); line-height: 1.03; letter-spacing: 0; }
h2 { margin: 0; font-size: clamp(28px, 4vw, 48px); line-height: 1.08; letter-spacing: 0; }
h3 { margin: 0 0 10px; font-size: 20px; letter-spacing: 0; }

.hero-copy p:last-child {
  width: min(620px, 100%);
  margin: 18px 0 0;
  color: rgba(255, 253, 247, .88);
  font-size: 18px;
}

.band, .split, .media-row {
  padding: clamp(48px, 8vw, 96px) clamp(18px, 5vw, 72px);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
  gap: 32px;
  align-items: end;
  margin-bottom: 28px;
}

.section-head .eyebrow { grid-column: 1; }
.section-head h2 { grid-column: 1 / -1; max-width: 920px; }

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.cards article {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.cards p, .split p, figcaption, footer small { color: var(--muted); }

.split {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(340px, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  background: #eef2ea;
}

.split figure, .media-row figure {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--paper);
}

.split figcaption, .media-row figcaption { padding: 14px 16px 16px; }

.facts {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.facts li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  color: var(--muted);
}

.facts span {
  min-width: 58px;
  color: var(--accent);
  font-size: 30px;
  font-weight: 800;
}

.live-panel {
  background: var(--paper);
}

.status-list {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
}

.status-list div {
  display: grid;
  grid-template-columns: minmax(120px, .55fr) minmax(0, 1fr);
  gap: 16px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
}

.status-list dt {
  color: var(--muted);
  font-size: 14px;
}

.status-list dd {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
}

.live-side {
  align-self: stretch;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8faf4;
}

.live-side h3 + .dynamic-list { margin-top: 12px; }
.live-side h3:not(:first-child) { margin-top: 28px; }

.dynamic-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.dynamic-list li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.dynamic-list strong {
  color: var(--ink);
  text-align: right;
}

.media-row {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  gap: 18px;
}

.media-row video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #11201f;
}

.notes ol {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.notes li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.notes time { color: var(--muted); white-space: nowrap; }

footer {
  padding: 28px clamp(18px, 5vw, 72px) 40px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

footer p { margin: 0 0 4px; color: var(--ink); font-weight: 700; }

.error-page {
  min-height: 62vh;
  padding: 80px clamp(18px, 5vw, 72px);
}

.error-page h1 {
  color: var(--accent);
  font-size: clamp(72px, 15vw, 168px);
}

@media (max-width: 820px) {
  .site-header { position: static; align-items: flex-start; flex-direction: column; }
  nav { flex-wrap: wrap; }
  .hero { min-height: 680px; }
  .hero-copy { margin: 0 18px 48px; }
  .cards, .split, .media-row { grid-template-columns: 1fr; }
  .section-head { grid-template-columns: 1fr; }
  .notes li { flex-direction: column; gap: 4px; }
}
