
/* ══════════════════════════════════════════════════════
   01 — TOKENS
══════════════════════════════════════════════════════ */
:root {
  /* Color */
  --base:        #0B1410;
  --surface:     #0E1A14;
  --atmo:        #1E4D30;
  --brand:       #3D8F5A;
  --highlight:   #4D9968;
  --gold:        #C9A84C;
  --si-red:      #D21113;
  --text:        #E8EDE9;
  --muted:       #7A9485;
  --border:      rgba(61,143,90,0.18);
  --gold-border: rgba(201,168,76,0.28);

  /* Typography */
  --font-head:  'Oswald', sans-serif;
  --font-body:  'Montserrat', sans-serif;
  --font-mono:  'Courier Prime', monospace;

  /* Spacing */
  --s1: 8px;  --s2: 16px; --s3: 24px; --s4: 32px;
  --s5: 48px; --s6: 64px; --s7: 80px; --s8: 96px;
}

/* ══════════════════════════════════════════════════════
   02 — RESET
══════════════════════════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--base);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { cursor: pointer; }

/* ══════════════════════════════════════════════════════
   03 — GLOBAL PRIMITIVES
══════════════════════════════════════════════════════ */

/* Layout */
.section        { padding: var(--s6) var(--s7); }
.section--tight { padding-top: var(--s4); padding-bottom: var(--s4); }
.section-full   { padding: 0; }
.inner        { max-width: 1400px; margin: 0 auto; padding: 0 var(--s7); }

/* Dividers */
hr.rule      { border: none; border-top: 1px solid var(--border); }
hr.rule-gold { border: none; border-top: 1px solid var(--gold-border); }

/* Section labels */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: var(--s1);
}
.eyebrow-gold { color: var(--gold); }

.section-title {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: var(--s4);
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: var(--s4);
}

.section-more {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
  transition: opacity 0.15s;
  white-space: nowrap;
}
.section-more:hover { opacity: 0.7; }

/* CTAs */
.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: var(--s1);
  background: var(--brand);
  color: #fff;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 12px 24px;
  border-radius: 2px;
  transition: background 0.15s, transform 0.15s;
}
.cta-primary:hover { background: var(--highlight); transform: translateY(-1px); }

.cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: var(--s1);
  background: transparent;
  color: var(--text);
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 12px 24px;
  border-radius: 2px;
  border: 1px solid rgba(232,237,233,0.25);
  transition: border-color 0.15s;
}
.cta-secondary:hover { border-color: rgba(232,237,233,0.5); }

/* ══════════════════════════════════════════════════════
   04 — NAV
══════════════════════════════════════════════════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--s7);
  transition: background 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}
nav.scrolled {
  background: rgba(11,20,16,0.97);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
}

.nav-logo {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1;
}
.nav-logo-sub {
  font-size: 11px;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.12em;
  margin-left: 10px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-link {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  padding: 0 14px;
  height: 64px;
  display: flex;
  align-items: center;
  border-bottom: 3px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.nav-link:hover, .nav-link.active { color: var(--text); }
.nav-link.active { border-bottom-color: #5a9e6f; }

.nav-search {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  cursor: pointer;
  transition: color 0.15s;
  margin-left: 4px;
}
.nav-search:hover { color: var(--text); }

.nav-cta {
  background: var(--brand);
  color: #fff;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 9px 18px;
  border-radius: 2px;
  margin-left: 8px;
  transition: background 0.15s;
}
.nav-cta:hover { background: var(--highlight); }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: transform 0.2s, opacity 0.2s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════════════════════════
   05 — MOBILE MENU
══════════════════════════════════════════════════════ */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 190;
  background: var(--base);
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 80px 40px 48px;
}
.mobile-menu.open {
  display: flex;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: var(--s6);
  width: 100%;
}
.mobile-menu-link {
  font-family: var(--font-head);
  font-size: 40px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--muted);
  padding: 8px 0;
  border-bottom: 1px solid rgba(61,143,90,0.08);
  transition: color 0.15s;
  line-height: 1.1;
}
.mobile-menu-link:hover, .mobile-menu-link.active { color: var(--text); }
.mobile-menu-link.active { color: var(--brand); }

/* ══════════════════════════════════════════════════════
   06 — STORE (MOCK FRONTEND)
══════════════════════════════════════════════════════ */

/* ── Hero ── */
.store-hero {
  border-bottom: 1px solid var(--border);
}
.store-hero-copy { max-width: 720px; }
.store-hero-title {
  font-family: var(--font-head);
  font-size: clamp(40px, 5.5vw, 76px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.025em;
  line-height: 0.95;
  color: var(--text);
  margin: var(--s1) 0 0;
}
.store-hero-sub {
  color: var(--muted);
  font-size: 15px;
  max-width: 520px;
  line-height: 1.7;
  margin-top: var(--s2);
}
.store-hero-ctas {
  display: flex;
  gap: var(--s2);
  margin-top: var(--s3);
  flex-wrap: wrap;
}
.store-hero-note {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(122,148,133,0.45);
  margin-top: var(--s2);
}

/* ── Cart toggle button ── */
.store-cart-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 16px;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  white-space: nowrap;
}
.store-cart-toggle:hover {
  color: var(--text);
  border-color: rgba(61,143,90,0.6);
}
.store-cart-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
}
.store-cart-badge:empty,
.store-cart-badge[data-store-cart-count="0"] {
  display: none;
}

/* ── Collection filter row / store toolbar ── */
.store-collections-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: var(--s4);
  padding-top: var(--s4);
  border-top: 1px solid rgba(61,143,90,0.1);
}
.store-toolbar-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(122,148,133,0.4);
  padding-right: 4px;
  white-space: nowrap;
}
.store-collections-row .store-cart-toggle { margin-left: auto; }
.store-collection-chip {
  border-radius: 3px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: rgba(122,148,133,0.65);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 14px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.store-collection-chip:hover:not(.is-disabled) {
  background: rgba(61,143,90,0.08);
  border-color: rgba(61,143,90,0.45);
  color: var(--brand);
}
.store-collection-chip.is-active {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  font-weight: 700;
}
.store-collection-chip.is-disabled {
  opacity: 0.35;
  cursor: default;
  font-style: italic;
}

/* ── Product grid ── */
.store-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--s4);
}
.store-card {
  background: var(--surface);
  border-radius: 3px;
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
}
.store-card:hover {
  border-color: rgba(61,143,90,0.45);
  transform: translateY(-2px);
}
.store-card-image {
  position: relative;
  padding-bottom: 110%;
  overflow: hidden;
  background: #0e1a15;
}
.store-card-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 0.3s ease;
}
.store-card:hover .store-card-image img {
  transform: scale(1.02);
}
.store-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,16,12,0.78);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: var(--s3);
  text-align: center;
  opacity: 0;
  transition: opacity 0.28s ease;
  pointer-events: none;
}
.store-card:hover .store-card-overlay { opacity: 1; }
.store-card-overlay-title {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #fff;
  line-height: 1.2;
}
.store-card-overlay-sub {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(122,148,133,0.85);
}
.store-card-body {
  padding: var(--s3) var(--s3) var(--s4);
  display: flex;
  flex-direction: column;
  flex: 1;
}
.store-card-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 6px;
}
.store-card-badge {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--brand);
  opacity: 0.75;
  margin-bottom: 4px;
}
.store-card-price {
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--text);
  font-weight: 700;
  margin-top: var(--s1);
}
.store-card-name {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.25;
  color: var(--text);
}
.store-card-meta {
  font-size: 12px;
  color: rgba(122,148,133,0.65);
  margin-top: 3px;
}
.store-card-actions {
  display: flex;
  gap: var(--s2);
  margin-top: auto;
  padding-top: var(--s3);
  flex-wrap: wrap;
  align-items: center;
}
.store-card-link {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: none;
  border: none;
  color: rgba(122,148,133,0.55);
  cursor: pointer;
  padding: 0;
  transition: color 0.15s;
}
.store-card-link:hover { color: var(--text); }

/* ── Cart drawer ── */
.store-cart {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 360px;
  max-width: 100%;
  background: var(--base);
  border-left: 1px solid var(--border);
  transform: translateX(100%);
  transition: transform 0.25s ease;
  z-index: 220;
}
.store-cart.open {
  transform: translateX(0);
}
.store-cart-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.store-cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--s3) var(--s3) var(--s2);
  border-bottom: 1px solid var(--border);
}
.store-cart-close {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 20px;
  cursor: pointer;
  line-height: 1;
}
.store-cart-body {
  flex: 1;
  overflow-y: auto;
  padding: var(--s3);
}
.store-cart-empty {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  padding: var(--s3) 0;
}
.store-cart-items {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}
.store-cart-item {
  display: flex;
  gap: var(--s2);
  align-items: flex-start;
  padding-bottom: var(--s3);
  border-bottom: 1px solid var(--border);
}
.store-cart-item:last-child {
  border-bottom: none;
}
.store-cart-item-thumb {
  width: 64px;
  height: 64px;
  border-radius: 3px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--surface);
}
.store-cart-item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.store-cart-item-body { flex: 1; }
.store-cart-item-name {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.3;
}
.store-cart-item-meta {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}
.store-cart-item-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: var(--s1);
}
.store-cart-qty {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
}
.store-cart-qty button {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 12px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.store-cart-qty button:hover {
  border-color: rgba(61,143,90,0.6);
  color: var(--text);
}
.store-cart-price {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
}
.store-cart-footer {
  border-top: 1px solid var(--border);
  padding: var(--s3);
  display: flex;
  flex-direction: column;
  gap: var(--s2);
}
.store-cart-total {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  padding-bottom: var(--s2);
}
.store-cart-checkout {
  width: 100%;
  justify-content: center;
}
.store-cart-note {
  font-size: 12px;
  color: rgba(122,148,133,0.5);
  line-height: 1.5;
  text-align: center;
}

/* ── Product detail modal ── */
.store-product-modal {
  position: fixed;
  inset: 0;
  z-index: 230;
  display: none;
  overflow-y: auto;
}
.store-product-modal[hidden] { display: none; }
.store-product-modal:not([hidden]) { display: block; }
.store-product-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
}
.store-product-modal-inner {
  position: relative;
  max-width: 860px;
  margin: 60px auto;
  background: var(--base);
  border-radius: 3px;
  border: 1px solid var(--border);
  overflow: hidden;
}
.store-product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
}
.store-product-media {
  position: relative;
  padding-bottom: 100%;
  background: #0e1a15;
}
.store-product-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: var(--s4);
}
.store-product-details {
  padding: var(--s5) var(--s4);
  display: flex;
  flex-direction: column;
}
.store-product-badge {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: var(--s1);
}
.store-product-title {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.store-product-meta {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}
.store-product-price {
  font-family: var(--font-mono);
  font-size: 16px;
  letter-spacing: 0.06em;
  font-weight: 700;
  margin-top: var(--s2);
}
.store-product-copy {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-top: var(--s3);
}
.store-product-meta-list {
  font-size: 13px;
  color: var(--muted);
  margin-top: var(--s3);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.store-product-meta-list dt {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(122,148,133,0.55);
}
.store-product-meta-list dd { margin: 0; }
.store-product-actions {
  margin-top: auto;
  padding-top: var(--s4);
  display: flex;
  gap: var(--s2);
  flex-wrap: wrap;
}
.store-product-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
  width: 28px;
  height: 28px;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.store-product-close:hover { color: var(--text); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .store-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .store-cart { width: 100%; }
  .store-product-layout { grid-template-columns: 1fr; }
  .store-product-modal-inner { margin: 0; border-radius: 0; }
  .store-product-media { padding-bottom: 75%; }
}
@media (max-width: 600px) {
  .store-grid { grid-template-columns: 1fr; }
}

.mobile-menu-cta {
  display: block;
  width: 100%;
  background: var(--brand);
  color: #fff;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 16px 28px;
  border-radius: 2px;
  text-align: center;
  margin-bottom: var(--s3);
}
.mobile-menu-platforms {
  display: flex;
  gap: var(--s1);
  width: 100%;
}
.mobile-menu-platform {
  flex: 1;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid rgba(122,148,133,0.2);
  padding: 10px;
  border-radius: 2px;
}

/* ══════════════════════════════════════════════════════
   06 — HERO
══════════════════════════════════════════════════════ */
.hero {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  min-height: 58vh;
  position: relative;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px var(--s7) var(--s7);
  gap: var(--s3);
  position: relative;
  z-index: 2;
}

.si-credential {
  display: inline-flex;
  align-items: center;
  gap: var(--s1);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.si-dot {
  width: 6px; height: 6px;
  background: var(--si-red);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(72px, 8vw, 108px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.025em;
  line-height: 0.92;
}
.hero-tagline {
  font-family: var(--font-head);
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--brand);
  line-height: 1;
}

.hero-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 440px;
}

.hero-credential-strip {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(122,148,133,0.45);
}
.hero-credential-strip .cred-dot {
  width: 5px; height: 5px;
  background: var(--brand);
  border-radius: 50%;
  opacity: 0.7;
  flex-shrink: 0;
}

.hero-ctas {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Portrait */
.hero-portrait {
  position: relative;
  overflow: hidden;
}
.hero-portrait::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,
      rgba(11,20,16,0.72) 0%,
      rgba(11,20,16,0.52) 14%,
      rgba(11,20,16,0.28) 30%,
      rgba(11,20,16,0.10) 48%,
      rgba(11,20,16,0.02) 65%,
      rgba(11,20,16,0)    80%
    ),
    linear-gradient(to bottom,
      rgba(6,12,10,0.25) 0%,
      rgba(6,12,10,0.08) 30%,
      rgba(6,12,10,0)    55%
    ),
    linear-gradient(to top,
      rgba(11,20,16,0.25) 0%,
      rgba(11,20,16,0)    14%
    );
  z-index: 1;
}
.hero-portrait::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(11,20,16,0.06);
  z-index: 0;
}
.portrait-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, #0d1f16 0%, #0B1410 60%, #111d15 100%);
}
.portrait-accent {
  display: none;
}
.portrait-figure {
  position: absolute;
  inset: 0;
  display: block;
}
.portrait-silhouette {
  width: 100%;
  height: 100%;
  background: linear-gradient(170deg, #1a3326 0%, #0f2018 40%, #0B1410 100%);
  clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);
  opacity: 0.85;
}
.portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% bottom;
  display: block;
  filter: brightness(0.97) contrast(1.04);
}

/* ── Hero major countdown badge ── */
.hero-major {
  position: absolute;
  bottom: 88px;
  right: 66px;
  z-index: 10;
  background: rgba(6,12,10,0.92);
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: 4px;
  padding: 14px 18px 16px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  min-width: 156px;
  box-shadow: 0 14px 44px rgba(0,0,0,0.60), 0 2px 8px rgba(0,0,0,0.35), 0 0 0 1px rgba(201,168,76,0.10), inset 0 1px 0 rgba(255,255,255,0.04);
  animation: heroBadgeFadeIn 0.7s ease 0.5s both;
}
@keyframes heroBadgeFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-major-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.50;
  margin-bottom: 4px;
}
.hero-major-event {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.80);
  line-height: 1.1;
  margin-bottom: 2px;
}
.hero-major-venue {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.06em;
  color: var(--muted);
  opacity: 0.60;
  margin-bottom: 7px;
}
.hero-major-countdown {
  display: flex;
  align-items: baseline;
  gap: 5px;
  border-top: 1px solid rgba(201,168,76,0.2);
  padding-top: 8px;
}
.hero-major-days {
  font-family: var(--font-head);
  font-size: 54px;
  font-weight: 700;
  line-height: 1;
  color: var(--gold);
  letter-spacing: -0.03em;
}
.hero-major-unit {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.50;
}


/* ── Hero major countdown — mobile strip ── */
.hero-major-strip { display: none; }
.hero-major-strip-meta { display: flex; flex-direction: column; gap: 2px; }
.hero-major-strip-label {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.50;
}
.hero-major-strip-event {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--text);
  line-height: 1.1;
}
.hero-major-strip-right { display: flex; align-items: baseline; gap: 4px; }
.hero-major-strip-days {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  color: var(--gold);
  letter-spacing: -0.02em;
}
.hero-major-strip-unit {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.50;
}

/* ══════════════════════════════════════════════════════
   08 — UTILITY CLASSES
══════════════════════════════════════════════════════ */
.section-title--flush { margin-bottom: 0; }
.eyebrow--tight { margin-bottom: var(--s1); }

.essential-conversations-sub {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  margin: -4px 0 var(--s4);
}

.cta-sm { font-size: 13px; padding: 11px 22px; }

.hub-show-card--live {
  border-color: rgba(61,143,90,0.4);
  background: rgba(61,143,90,0.06);
}
.hub-show-day--live  { color: var(--si-red); }
.hub-show-meta--live { color: rgba(210,17,19,0.55); }


/* ══════════════════════════════════════════════════════
   09 — TICKER BAND
══════════════════════════════════════════════════════ */
.band {
  height: 40px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.band-track {
  display: flex;
  gap: 0;
  animation: band-scroll 38s linear infinite;
  will-change: transform;
}
.band:hover .band-track { animation-play-state: paused; }
@keyframes band-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.band-item {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 20px;
}
.band-dot {
  width: 4px; height: 4px;
  background: var(--brand);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════
   10 — EPISODE CARDS  [video-led family]
══════════════════════════════════════════════════════ */
.ep-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s2);
}

.ep-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.ep-card:hover {
  border-color: var(--brand);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.ep-thumb {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #1E4D30 0%, #0B1410 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
/* Thumb color variations */
.ep-thumb-1 { background: linear-gradient(135deg, #1a3d26 0%, #0d1f16 100%); }
.ep-thumb-2 { background: linear-gradient(145deg, #163322 0%, #0B1410 100%); }
.ep-thumb-3 { background: linear-gradient(125deg, #1E4D30 0%, #102018 100%); }

.ep-play {
  width: 44px; height: 44px;
  background: rgba(61,143,90,0.85);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.2s, transform 0.2s;
  opacity: 0.35;
  transform: scale(0.9);
}
.ep-card:hover .ep-play { opacity: 1; transform: scale(1); }

.ep-body { padding: 12px 14px 14px; }
.ep-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--brand);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.ep-title {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.3;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ep-excerpt {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0 0 8px;
}
.ep-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 4px 0 8px;
  opacity: 0.8;
}
.ep-meta {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin-top: 6px;
}
.ep-runtime {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
}
.ep-tags { display: flex; gap: 4px; flex-wrap: wrap; }
.ep-tag {
  font-size: 11px;
  font-family: var(--font-mono);
  color: var(--muted);
  border: 1px solid rgba(61,143,90,0.2);
  padding: 2px 7px;
  border-radius: 2px;
}

/* ══════════════════════════════════════════════════════
   11 — LATEST EPISODE MODULE
══════════════════════════════════════════════════════ */
.latest, .latest-empty {
  display: grid;
  grid-template-columns: 480px 1fr;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: var(--s4);
}
/* ── Empty state thumb ── */
.latest-empty-thumb {
  position: relative;
  background: var(--surface-2, rgba(255,255,255,0.03));
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}

/* ── Episode frame system ── */
.latest-thumb {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  cursor: pointer;
  background: #0a1812;
}

/* Layer 1: Base image / thumbnail area */
.latest-thumb-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.latest-thumb-img--empty {
  background: linear-gradient(145deg, #0d2018 0%, #091510 60%, #0d1a12 100%);
}

/* Layer 2: Cinematic grade — dark vignette + brand tint */
.latest-thumb-grade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(10,24,18,0.55) 0%,
      rgba(10,24,18,0.15) 40%,
      rgba(10,24,18,0.15) 60%,
      rgba(10,24,18,0.72) 100%),
    radial-gradient(ellipse 120% 100% at 50% 50%,
      transparent 40%,
      rgba(10,24,18,0.5) 100%);
  z-index: 1;
}

/* Layer 3: Hover brighten */
.latest-thumb:hover .latest-thumb-grade {
  background:
    linear-gradient(to bottom,
      rgba(10,24,18,0.4) 0%,
      rgba(10,24,18,0.05) 40%,
      rgba(10,24,18,0.05) 60%,
      rgba(10,24,18,0.6) 100%),
    radial-gradient(ellipse 120% 100% at 50% 50%,
      transparent 50%,
      rgba(10,24,18,0.35) 100%);
}

/* Layer 4: Show bug (top-left) */
.latest-thumb-bug {
  position: absolute;
  top: var(--s2); left: var(--s2);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(10,24,18,0.82);
  border: 1px solid rgba(61,143,90,0.2);
  border-radius: 2px;
  padding: 5px 8px 5px 6px;
  backdrop-filter: blur(4px);
}
.latest-thumb-bug-dot {
  width: 5px; height: 5px;
  background: var(--brand);
  border-radius: 50%;
  flex-shrink: 0;
}
.latest-thumb-bug-text {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(232,237,233,0.7);
  line-height: 1;
}

/* Layer 5: Episode number chip (top-right) */
.latest-ep-num {
  position: absolute;
  top: var(--s2); right: var(--s2);
  z-index: 3;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: rgba(232,237,233,0.65);
  text-transform: uppercase;
  background: rgba(10,24,18,0.78);
  border: 1px solid rgba(61,143,90,0.15);
  padding: 4px 8px;
  border-radius: 2px;
  backdrop-filter: blur(4px);
}

/* Layer 6: Play button (center) */
.latest-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(1);
  z-index: 4;
  width: 60px; height: 60px;
  background: rgba(61,143,90,0.85);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.18s, transform 0.18s, box-shadow 0.18s;
  box-shadow: 0 4px 24px rgba(0,0,0,0.45);
  cursor: pointer;
}
.latest-thumb:hover .latest-play {
  background: var(--brand);
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 6px 32px rgba(61,143,90,0.4);
}

/* Layer 7: Bottom title-safe bar */
.latest-thumb-footer {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  padding: 18px var(--s3) var(--s2);
  background: linear-gradient(to top, rgba(10,24,18,0.92) 0%, transparent 100%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.latest-thumb-guests {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text);
  line-height: 1.2;
}
.latest-runtime {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(232,237,233,0.55);
  background: rgba(10,24,18,0.65);
  padding: 3px 7px;
  border-radius: 2px;
  white-space: nowrap;
  flex-shrink: 0;
  margin-left: var(--s2);
}

.latest-content {
  padding: var(--s5) var(--s5);
  display: flex;
  flex-direction: column;
  gap: var(--s2);
  justify-content: center;
}
.latest-date {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--muted);
  text-transform: uppercase;
}
.latest-title {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.latest-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 460px;
}
.latest-guests { display: flex; flex-wrap: wrap; gap: 6px; }
.guest-tag {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--muted);
  border: 1px solid rgba(61,143,90,0.25);
  padding: 3px 10px;
  border-radius: 2px;
}
.latest-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ══════════════════════════════════════════════════════
   12 — EVENT HUB MODULE  (Active state — toggle via Ghost setting)
══════════════════════════════════════════════════════ */
.event-hub {
  background: var(--surface);
  border: 1px solid rgba(61,143,90,0.4);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 0 60px rgba(61,143,90,0.1), inset 0 1px 0 rgba(61,143,90,0.15);
}
.event-hub::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(30,77,48,0.45) 0%, transparent 70%);
  pointer-events: none;
}

.hub-live-bar {
  display: flex;
  align-items: center;
  gap: var(--s2);
  padding: 12px var(--s4);
  background: rgba(61,143,90,0.14);
  border-bottom: 1px solid rgba(61,143,90,0.25);
  position: relative;
  z-index: 2;
}
.hub-live-indicator {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--brand);
  text-transform: uppercase;
  flex-shrink: 0;
}
.live-pulse {
  width: 8px; height: 8px;
  background: var(--brand);
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.8); }
}
.hub-live-main {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.hub-live-sub {
  font-size: 12px;
  color: var(--muted);
  margin-left: auto;
}
.hub-live-next {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
  flex-shrink: 0;
  border-left: 1px solid var(--gold-border);
  padding-left: var(--s2);
}

.hub-body {
  padding: var(--s5) var(--s4);
  position: relative;
  z-index: 2;
}
.hub-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: var(--s4);
  gap: var(--s4);
}
.hub-event-name {
  font-family: var(--font-head);
  font-size: 64px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 0.88;
  margin-bottom: 10px;
}
.hub-event-sub {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 400;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.hub-stats {
  display: flex;
  gap: var(--s4);
  flex-shrink: 0;
}
.hub-stat {
  text-align: center;
  border-left: 1px solid var(--border);
  padding-left: var(--s3);
}
.hub-stat-val {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 900;
  color: var(--brand);
  line-height: 1;
}
.hub-stat-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 3px;
}

.hub-shows {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s2);
  margin-bottom: var(--s4);
}
.hub-shows--coverage .hub-show-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 18px 20px;
  min-height: 160px;
  position: relative;
  overflow: hidden;
}
.hub-shows--coverage .hub-show-card::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.12;
}
.hub-show-card--masters::before {
  background: radial-gradient(ellipse 120% 80% at 50% 100%, rgba(0,82,33,0.6) 0%, transparent 60%);
}
.hub-show-card--pga::before {
  background: radial-gradient(ellipse 100% 70% at 80% 20%, rgba(30,60,80,0.5) 0%, transparent 55%);
}
.hub-show-card--usopen::before {
  background: radial-gradient(ellipse 90% 60% at 20% 80%, rgba(40,55,50,0.5) 0%, transparent 60%);
}
.hub-show-card--open::before {
  background: radial-gradient(ellipse 110% 70% at 60% 0%, rgba(60,50,35,0.4) 0%, transparent 55%);
}

.hub-status {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.hub-status--full { color: var(--brand); }
.hub-status--upcoming { color: var(--muted); }
.hub-status--live { color: var(--si-red); }

.hub-coverage-count {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-top: auto;
  padding-top: 10px;
  position: relative;
  z-index: 1;
}

.hub-show-cta {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
  margin-top: 8px;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.2s, transform 0.2s, color 0.2s;
  position: relative;
  z-index: 1;
}
a.hub-show-card--link:hover .hub-show-cta {
  opacity: 1;
  transform: translateY(0);
}
a.hub-show-card--link:hover .hub-show-cta { color: var(--highlight); }

.hub-show-card {
  background: rgba(11,20,16,0.5);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 16px 18px;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}
.hub-show-card:hover { border-color: rgba(61,143,90,0.4); }
a.hub-show-card--link { display: block; text-decoration: none; color: inherit; }
a.hub-show-card--link:hover { border-color: rgba(61,143,90,0.5); background: rgba(61,143,90,0.05); }
.hub-show-day {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 5px;
}
.hub-shows--coverage .hub-show-title { margin-bottom: 2px; }
.hub-shows--coverage .hub-show-day { margin-bottom: 2px; }
.hub-shows--coverage .hub-show-meta { margin-bottom: 0; }
.hub-show-title {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.25;
  margin-bottom: 5px;
}
.hub-show-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.08em;
}

.hub-enter {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand);
  border: 1px solid rgba(61,143,90,0.3);
  padding: 11px 22px;
  border-radius: 2px;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.hub-enter:hover {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

/* ══════════════════════════════════════════════════════
   12b — EVENT HUB PAGE  (pre-event + live states)
══════════════════════════════════════════════════════ */

/* ── Hub page hero ── */
.hub-page-hero { padding: var(--s7) var(--s7) var(--s5); }
.hub-page-title {
  font-family: var(--font-head);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.95;
  margin: var(--s2) 0 var(--s2);
}
.hub-page-meta {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--brand);
  margin-bottom: var(--s2);
}
.hub-page-status {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 2px;
  margin-bottom: var(--s3);
}
.hub-page-status--upcoming { background: rgba(61,143,90,0.1);   color: var(--brand);  border: 1px solid var(--border); }
.hub-page-status--live     { background: rgba(210,17,19,0.12);  color: var(--si-red); border: 1px solid rgba(210,17,19,0.3); }
.hub-page-status--past     { background: rgba(122,148,133,0.1); color: var(--muted);  border: 1px solid rgba(122,148,133,0.2); }
.hub-page-desc { color: var(--muted); font-size: 16px; line-height: 1.6; max-width: 560px; margin-top: var(--s1); }

/* ── Pre-event block (no posts yet) ── */
.hub-pre { display: flex; gap: var(--s7); align-items: flex-start; }
.hub-pre-countdown { flex-shrink: 0; text-align: center; }
.hub-pre-days {
  font-family: var(--font-head);
  font-size: clamp(72px, 10vw, 120px);
  font-weight: 900;
  line-height: 1;
  color: var(--gold);
}
.hub-pre-days-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.4);
  margin-top: 4px;
}
.hub-pre-note {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-top: var(--s2);
  max-width: 140px;
  text-align: center;
}
.hub-pre-coming { flex: 1; padding-top: var(--s2); }
.hub-pre-coming-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: var(--s3);
}
.hub-pre-coming-item {
  display: flex;
  align-items: center;
  gap: var(--s2);
  font-size: 15px;
  color: var(--text);
  padding: var(--s2) 0;
  border-bottom: 1px solid var(--border);
}
.hub-pre-coming-item:last-child { border-bottom: none; }
.hub-pre-dot { width: 5px; height: 5px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }

/* ── What We're Tracking ── */
.hub-tracking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s4);
  margin-top: var(--s4);
}
.hub-tracking-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: var(--s4);
}
.hub-tracking-num { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; color: var(--gold); margin-bottom: var(--s1); }
.hub-tracking-title {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: var(--s2);
  line-height: 1.2;
}
.hub-tracking-desc { color: var(--muted); font-size: 13px; line-height: 1.6; }

/* ── Event Week Timeline ── */
.hub-timeline {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  margin-top: var(--s4);
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
}
.hub-timeline-item {
  padding: var(--s3) var(--s3) var(--s4);
  border-right: 1px solid var(--border);
}
.hub-timeline-item:last-child { border-right: none; }
.hub-timeline-day { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: var(--s2); }
.hub-timeline-dot { width: 6px; height: 6px; background: var(--brand); border-radius: 50%; margin-bottom: var(--s2); }
.hub-timeline-focus { color: var(--muted); font-size: 12px; line-height: 1.5; }

/* ── Related Majors ── */
.hub-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s3);
  margin-top: var(--s4);
}
.hub-related-card {
  display: block;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: var(--s4);
  text-decoration: none;
  transition: border-color 0.2s;
}
.hub-related-card:hover { border-color: var(--brand); }
.hub-related-event { font-family: var(--font-head); font-size: 18px; font-weight: 800; text-transform: uppercase; color: var(--text); margin-bottom: 4px; }
.hub-related-meta { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; color: var(--muted); margin-bottom: var(--s3); }
.hub-related-cta { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; color: var(--brand); }
.hub-related-card:hover .hub-related-cta { color: var(--highlight); }

@media (max-width: 1100px) {
  .hub-timeline { grid-template-columns: repeat(3, 1fr); }
  .hub-timeline-item { border-bottom: 1px solid var(--border); }
  .hub-timeline-item:nth-child(3) { border-right: none; }
  .hub-timeline-item:nth-child(4) { border-right: 1px solid var(--border); }
  .hub-timeline-item:nth-child(5),
  .hub-timeline-item:nth-child(6) { border-bottom: none; }
}
@media (max-width: 900px) {
  .hub-page-hero { padding: var(--s5) var(--s4); }
  .hub-pre { flex-direction: column; gap: var(--s4); }
  .hub-pre-countdown { text-align: left; }
  .hub-pre-note { text-align: left; }
  .hub-tracking-grid { grid-template-columns: 1fr; }
  .hub-timeline { grid-template-columns: 1fr 1fr; }
  .hub-timeline-item:nth-child(3) { border-right: none; }
  .hub-timeline-item:nth-child(5) { border-right: 1px solid var(--border); }
  .hub-timeline-item:nth-child(6) { border-right: none; border-bottom: none; }
  .hub-related-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .hub-timeline { grid-template-columns: 1fr; }
  .hub-timeline-item { border-right: none !important; border-bottom: 1px solid var(--border); }
  .hub-timeline-item:last-child { border-bottom: none; }
}

/* ══════════════════════════════════════════════════════
   13 — EDITORIAL CARDS  [text-led family]
══════════════════════════════════════════════════════ */
.editorial-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--s2);
}

.ed-featured {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.ed-featured:hover {
  border-color: rgba(201,168,76,0.5);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}
.ed-img {
  height: 200px;
  background: linear-gradient(135deg, #1a3d26 0%, #0d1f16 100%);
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.ed-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 60%, rgba(201,168,76,0.12) 0%, transparent 60%);
}
.ed-body { padding: 20px 24px 24px; }
.ed-category {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.ed-title {
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.ed-excerpt {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.ed-small {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 20px 22px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 140px;
}
.ed-small:hover {
  border-color: rgba(201,168,76,0.4);
  background: rgba(14,26,20,0.9);
}
.ed-small-title {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.35;
  letter-spacing: -0.005em;
  margin-bottom: 10px;
}
.ed-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(122,148,133,0.5);
  letter-spacing: 0.08em;
}

/* ══════════════════════════════════════════════════════
   13b — SI GOLF PUBLICATION FEED
   "Published on SI Golf" — editorial list, not thumbnail shelf.
   Update copy in editorial-grid.hbs.
══════════════════════════════════════════════════════ */

/* ── 2-column editorial layout: aside left, feed right ── */
.si-feed {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--s6);
  align-items: start;
}

.si-feed-aside {
  position: sticky;
  top: 120px;
}
.si-feed-aside .section-more {
  margin-top: var(--s3);
  display: inline-block;
}
.si-feed-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
  margin: var(--s1) 0 0;
}

/* ── Editorial list ── */
.si-feed-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.si-feed-item {
  border-top: 1px solid var(--border);
}

.si-feed-link {
  display: grid;
  grid-template-columns: 192px 1fr;
  gap: var(--s4);
  align-items: center;
  padding: var(--s4) 0;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.15s;
}
.si-feed-link:hover { opacity: 0.9; }
.si-feed-link:hover .si-feed-cta { color: var(--si-red); }

/* ── Thumbnail ── */
.si-feed-thumb {
  position: relative;
  width: 192px;
  height: 120px;
  border-radius: 3px;
  overflow: hidden;
  background: linear-gradient(145deg, #1a1313 0%, #0d0d0d 100%);
  flex-shrink: 0;
}
.si-feed-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  opacity: 0.92;
  position: relative;
  z-index: 1;
}
.si-feed-thumb-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 800;
  color: rgba(210,17,19,0.12);
  letter-spacing: -0.02em;
}
.si-feed-thumb-fallback::before { content: 'SI'; }

/* ── Text block ── */
.si-feed-body {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.si-feed-meta {
  display: flex;
  align-items: center;
}
.si-feed-source {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--si-red);
}
.si-feed-date {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(122,148,133,0.55);
  letter-spacing: 0.06em;
}
.si-feed-date::before {
  content: '·';
  margin: 0 7px;
  color: rgba(122,148,133,0.35);
}

.si-feed-title {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--text);
  margin: 8px 0 0;
}

.si-feed-dek,
.si-feed-excerpt {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.55;
  margin: 6px 0 0;
  max-width: 48ch;
}

/* Outbound editorial link */
.si-feed-cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--si-red);
  opacity: 0.72;
  margin-top: 14px;
  transition: opacity 0.15s;
}
.si-feed-link:hover .si-feed-cta { opacity: 1; }

/* Card (legacy — kept if referenced elsewhere) */
.si-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto;
  gap: var(--s2);
}
.si-article-card:first-child {
  grid-row: span 2;
}
.si-article-card:first-child .si-article-thumb {
  height: auto;
  aspect-ratio: 16 / 8;
}
.si-article-card:first-child .si-article-body {
  padding-top: 14px;
  padding-bottom: 14px;
}
.si-article-card:first-child .si-article-title {
  font-size: 22px;
  max-width: 72%;
}
.si-article-card:not(:first-child) .si-article-thumb {
  height: 148px;
}
.si-article-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.si-article-card:hover {
  border-color: rgba(210,17,19,0.35);
  box-shadow: 0 4px 24px rgba(0,0,0,0.35);
}
.si-article-thumb {
  height: 172px;
  background: linear-gradient(145deg, #1a1313 0%, #0d0d0d 100%);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.si-article-thumb::after {
  content: 'SI';
  position: absolute;
  bottom: 10px;
  right: 14px;
  font-family: var(--font-head);
  font-size: 52px;
  font-weight: 900;
  color: rgba(210,17,19,0.09);
  letter-spacing: -0.03em;
  line-height: 1;
  pointer-events: none;
}
.si-article-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
  transition: transform 0.25s ease;
}
.si-article-card:hover .si-article-thumb img {
  transform: scale(1.03);
}
.si-article-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.si-source-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--si-red);
  margin-bottom: 10px;
}
.si-badge-dot {
  width: 5px;
  height: 5px;
  background: var(--si-red);
  border-radius: 50%;
  flex-shrink: 0;
}
.si-article-title {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.3;
  letter-spacing: -0.01em;
  flex: 1;
  margin-bottom: 12px;
}
.si-article-date {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(122,148,133,0.5);
  letter-spacing: 0.08em;
}
.si-article-card:first-child .si-article-date {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 10px;
  margin-top: auto;
}

/* ══════════════════════════════════════════════════════
   14 — CLIP CARDS  [utility/dense family]
══════════════════════════════════════════════════════ */
.clips-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s2);
}
.clips-grid--page {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.clip-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.15s;
}
.clip-card:hover { border-color: rgba(61,143,90,0.35); }
.clip-thumb {
  aspect-ratio: 16/9;
  background: linear-gradient(145deg, #1a3d26 0%, #0d1f16 100%);
  position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.clip-thumb-2 { background: linear-gradient(135deg, #163322 0%, #0B1410 100%); }
.clip-thumb-3 { background: linear-gradient(155deg, #1E4D30 0%, #0B1410 100%); }
.clip-thumb-4 { background: linear-gradient(125deg, #122a1c 0%, #0e1c14 100%); }
.clip-thumb--empty { background: var(--surface); opacity: 0.6; }
.clip-thumb-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.clip-card--placeholder .clip-title { color: var(--muted); }
.clip-play {
  width: 36px; height: 36px;
  background: rgba(61,143,90,0.8);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.clip-duration {
  position: absolute;
  bottom: 6px; right: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(232,237,233,0.8);
  background: rgba(11,20,16,0.75);
  padding: 2px 5px;
  border-radius: 2px;
}
.clip-body { padding: 10px 12px 12px; }
.clip-title {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  text-transform: none;
  line-height: 1.35;
  margin-bottom: 3px;
}
.clip-desc {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 4px;
  line-height: 1.3;
}
.clip-views {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(122,148,133,0.55);
  letter-spacing: 0.06em;
}
.clips-destination {
  display: grid;
  gap: var(--s4);
}
.clips-page-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: var(--s3);
}
.clips-page-head--split {
  margin-top: var(--s1);
}
.clip-featured {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 3px;
  overflow: hidden;
}
.clip-featured-link {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.9fr);
  color: inherit;
  text-decoration: none;
}
.clip-featured-link:hover .clip-featured-title,
.clip-featured-link:hover .clip-title {
  color: var(--brand);
}
.clip-featured-media {
  min-height: 100%;
}
.clip-featured-body {
  padding: var(--s4);
  display: grid;
  align-content: center;
  gap: var(--s2);
}
.clip-kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
}
.clip-featured-title {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 0.98;
  text-transform: uppercase;
}
.clip-featured-copy {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  max-width: 34rem;
}
.clip-featured-meta {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(122,148,133,0.75);
}
.clip-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.clip-chip {
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  padding: 8px 12px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}
.clip-chip:hover,
.clip-chip.is-active {
  border-color: rgba(61,143,90,0.5);
  color: var(--text);
}
.clips-empty {
  grid-column: 1 / -1;
  border: 1px dashed var(--border);
  background: rgba(16, 28, 22, 0.45);
  padding: var(--s4);
  border-radius: 3px;
}
.clips-empty p {
  color: var(--muted);
  margin: 0;
}
.clip-load-more {
  justify-self: start;
}
.clips-cta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s4);
  padding-top: var(--s2);
}
.clips-cta-title {
  font-family: var(--font-head);
  font-size: 24px;
  line-height: 1.1;
  text-transform: uppercase;
}

/* ══════════════════════════════════════════════════════
   15 — NEWSLETTER
══════════════════════════════════════════════════════ */
.newsletter-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s7);
  padding: var(--s7) var(--s7);
  align-items: center;
}
.nl-overline {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: var(--s2);
}
.nl-headline {
  font-family: var(--font-head);
  font-size: 42px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1;
}
.nl-copy {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: var(--s3);
}
.nl-copy strong { color: var(--text); }
.nl-form {
  display: flex;
  gap: 8px;
  margin-bottom: var(--s2);
}
.nl-input {
  flex: 1;
  background: rgba(14,26,20,0.8);
  border: 1px solid rgba(61,143,90,0.25);
  border-radius: 2px;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
  outline: none;
  transition: border-color 0.15s;
}
.nl-input:focus { border-color: var(--brand); }
.nl-input::placeholder { color: rgba(122,148,133,0.4); }
.nl-submit {
  background: var(--brand);
  color: #fff;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 12px 22px;
  border: none;
  border-radius: 2px;
  transition: background 0.15s;
  white-space: nowrap;
}
.nl-submit:hover { background: var(--highlight); }
.nl-fine {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(122,148,133,0.35);
  letter-spacing: 0.06em;
}
/* Ghost Members: success/error feedback */
.nl-form.success .nl-input { border-color: var(--brand); }
.nl-form.error .nl-input { border-color: var(--si-red); }
.nl-form .response { margin-top: var(--s2); font-size: 13px; }
.nl-form.success .response { color: var(--brand); }
.nl-form.error .response { color: var(--si-red); }

/* ══════════════════════════════════════════════════════
   16 — HOMEPAGE PROOF
══════════════════════════════════════════════════════ */
.hp-proof {
  background: linear-gradient(135deg, rgba(30,77,48,0.12) 0%, transparent 60%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--s7) var(--s7);
}
.hp-proof-inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--s3);
}
.hp-proof-headline {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.hp-proof-body {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 600px;
}
.hp-proof-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s4);
  width: 100%;
  padding-top: var(--s3);
  border-top: 1px solid var(--gold-border);
}
.hp-proof-metric { text-align: center; }
.hp-proof-metric-val {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 900;
  color: var(--brand);
  line-height: 1;
  margin-bottom: 4px;
}
.hp-proof-metric-val--si { color: var(--si-red); }
.hp-proof-metric-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.hp-proof-guests {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(122,148,133,0.55);
  line-height: 1.6;
}
.hp-proof-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ══════════════════════════════════════════════════════
   18 — FOOTER
══════════════════════════════════════════════════════ */
footer {
  padding: var(--s7) var(--s7) var(--s5);
  border-top: 1px solid var(--border);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--s6);
  margin-bottom: var(--s7);
}
.footer-logo {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: var(--s2);
}
.footer-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 300px;
  margin-bottom: var(--s3);
}
.footer-socials { display: flex; gap: 12px; flex-wrap: wrap; }
.footer-social {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(122,148,133,0.55);
  transition: color 0.15s;
}
.footer-social:hover { color: var(--text); }
.footer-col-title {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: var(--s2);
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link {
  font-size: 13px;
  color: rgba(122,148,133,0.65);
  transition: color 0.15s;
}
.footer-link:hover { color: var(--text); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--s3);
  border-top: 1px solid rgba(61,143,90,0.08);
}
.footer-copy {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(122,148,133,0.35);
  letter-spacing: 0.06em;
}
.footer-si {
  display: flex;
  align-items: center;
  gap: 8px;
}
.si-badge {
  background: var(--si-red);
  color: #fff;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 900;
  padding: 3px 7px;
  border-radius: 2px;
  letter-spacing: 0.04em;
}
.si-badge-text {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(122,148,133,0.45);
  letter-spacing: 0.08em;
}

/* ══════════════════════════════════════════════════════
   19 — RESPONSIVE
══════════════════════════════════════════════════════ */

/* ── Tablet: 900px ── */
@media (max-width: 900px) {
  .section { padding-left: var(--s4); padding-right: var(--s4); }
  .inner { padding-left: var(--s4); padding-right: var(--s4); }

  nav { padding: 0 var(--s4); }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .hero { grid-template-columns: 1fr; min-height: auto; row-gap: 0; }
  .hero-content { padding: 80px var(--s5) var(--s2); order: 1; gap: var(--s2); }
  .hero-portrait { order: 2; height: 300px; }
  .portrait-img { object-position: 58% 10%; }
  .hero-major { display: none; }
  .latest { grid-template-columns: 1fr; }
  .latest-thumb { min-height: 260px; }
  .latest-thumb-guests { font-size: 12px; }
  .latest-content { padding: var(--s4); }

  .ep-grid { grid-template-columns: 1fr 1fr; }
  .hub-shows { grid-template-columns: 1fr 1fr; }
  .hub-header { flex-direction: column; gap: var(--s3); }
  /* Countdown: force single-column stack on tablet */
  .majors-countdown { display: flex; flex-direction: column; gap: var(--s2); }
  .countdown-featured { width: 100%; max-width: 100%; }
  .countdown-featured-inner { padding: 28px 32px; min-height: 0; }
  .countdown-schedule { width: 100%; flex-direction: column; }
  .countdown-schedule-header { display: block; }
  .countdown-schedule-item { flex: auto; flex-direction: row; align-items: center; gap: var(--s2); border-bottom: 1px solid var(--border); border-right: none; padding: 12px 20px; }
  .countdown-schedule-item:last-child { border-bottom: none; border-right: none; }
  .countdown-schedule-arrow { display: flex; }
  .editorial-grid { grid-template-columns: 1fr 1fr; }
  .ed-featured { grid-column: 1 / -1; }
  .si-grid { grid-template-columns: 1.5fr 1fr; }
  .clips-grid { grid-template-columns: 1fr 1fr; }
  .clips-grid--page { grid-template-columns: 1fr 1fr; }
  .clip-featured-link { grid-template-columns: 1fr; }
  .clips-cta-bar { flex-direction: column; align-items: flex-start; }

  .newsletter-wrap { grid-template-columns: 1fr; gap: var(--s5); padding: var(--s5) var(--s4); }

  .hp-proof { padding: var(--s5) var(--s4); }
  .hp-proof-metrics { grid-template-columns: repeat(2, 1fr); }

  .footer-top { grid-template-columns: 1fr 1fr; gap: var(--s4); }
  .footer-brand-col { grid-column: 1 / -1; }
}

/* ── Mobile: 600px ── */
@media (max-width: 600px) {
  .section { padding-left: var(--s3); padding-right: var(--s3); }
  nav { padding: 0 var(--s3); }

  .hero-content { padding: 60px var(--s3) var(--s2); gap: var(--s2); }
  .hero-desc { display: none; }
  .si-credential { display: none; }
  .hero-headline { font-size: clamp(40px, 11vw, 56px); }
  .hero-tagline { font-size: clamp(17px, 5vw, 22px); }
  .hero-ctas { flex-direction: row; gap: 8px; flex-wrap: nowrap; margin-top: var(--s1); }
  .hero-ctas .cta-primary { flex: 1; justify-content: center; font-size: 13px; padding: 10px 14px; }
  .hero-portrait { order: 2; height: 260px; }
  .hero-major-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    order: 3;
    background: rgba(6,12,10,0.95);
    border-top: 1px solid rgba(201,168,76,0.20);
    padding: 10px var(--s3) 12px;
  }
  .hero-portrait::before {
    background:
      linear-gradient(to top,
        rgba(11,20,16,0.98) 0%,
        rgba(11,20,16,0.6)  22%,
        rgba(11,20,16,0)    48%
      ),
      linear-gradient(to bottom,
        rgba(6,12,10,0.5) 0%,
        rgba(6,12,10,0)   30%
      );
  }
  .band { display: none; }

  .section-header { flex-direction: column; align-items: flex-start; gap: var(--s1); }
  .section-title { font-size: 20px; }

  .latest-title { font-size: 22px; }
  .latest-actions { flex-wrap: wrap; }
  .latest-actions .cta-primary { width: 100%; flex-basis: 100%; justify-content: center; }
  .latest-actions .cta-secondary { flex: 1; justify-content: center; border-color: transparent; color: var(--muted); font-size: 12px; padding: 8px 10px; }

  .ep-grid { grid-template-columns: 1fr; }

  .hub-live-bar { flex-wrap: wrap; padding: 10px var(--s3); }
  .hub-live-sub { display: none; }
  .hub-live-next { border-left: none; padding-left: 0; width: 100%; }
  .hub-body { padding: var(--s3); }
  .hub-event-name { font-size: 40px; }
  .hub-shows { grid-template-columns: 1fr; }
  .hub-stats { flex-wrap: wrap; gap: var(--s2); }
  /* Countdown: mobile — explicit single-column, strip desktop glam */
  .countdown-section { padding-top: var(--s3); padding-bottom: var(--s3); }
  .countdown-section .section-header { display: none; }
  .majors-countdown-sub { display: none; }
  /* Nuclear parent reset: force flex column regardless of inherited grid */
  .majors-countdown { display: flex !important; flex-direction: column !important; gap: var(--s1); width: 100%; }
  .countdown-featured { width: 100% !important; max-width: 100% !important; box-shadow: none; }
  .countdown-schedule { width: 100% !important; flex-direction: column; }
  /* Remove desktop glam */
  .countdown-featured::before { display: none; }
  /* Featured inner: tight single column */
  .countdown-featured-inner { display: flex !important; flex-direction: column !important; align-items: flex-start; padding: 14px 16px; min-height: 0 !important; gap: 0; }
  .countdown-featured-content { width: 100%; }
  .countdown-next-label { font-size: 8px; letter-spacing: 0.16em; margin-bottom: 4px; }
  .countdown-tournament { font-size: 19px; line-height: 1.0; margin-bottom: 4px; }
  .countdown-location { font-size: 11px; margin-bottom: 0; }
  .countdown-desc { display: none; }
  .countdown-cta { display: none; }
  /* Day number: below text, no side-panel treatment */
  .countdown-day-stat { width: 100%; text-align: left; flex-shrink: 0; border-left: none !important; border-top: none; padding-left: 0 !important; padding-top: 10px; margin-top: 10px; }
  .countdown-day-number { font-size: 40px; line-height: 1; }
  .countdown-day-label { font-size: 9px; margin-top: 2px; letter-spacing: 0.16em; }
  /* Schedule list: compact rows */
  .countdown-schedule-header { padding: 10px 14px 8px; font-size: 8px; }
  .countdown-schedule-item { padding: 6px 14px; gap: var(--s2); }
  .countdown-schedule-days { font-size: 18px; min-width: 32px; }
  .countdown-schedule-name { font-size: 12px; }
  .countdown-schedule-meta { font-size: 9px; }
  .countdown-schedule-arrow { opacity: 0.35; font-size: 12px; }

  .editorial-grid { grid-template-columns: 1fr; }
  .si-grid { grid-template-columns: 1fr; }
  .si-article-card:first-child { grid-row: span 1; }
  .si-article-card:first-child .si-article-thumb { height: 200px; }
  .si-feed { grid-template-columns: 1fr; gap: 0; }
  .si-feed-aside { position: static; padding-bottom: var(--s2); }
  .si-feed-desc { display: none; }
  .si-feed-list { display: flex; flex-direction: row; flex-wrap: nowrap; overflow-x: auto; scroll-snap-type: x mandatory; gap: var(--s3); padding-bottom: var(--s2); padding-right: var(--s3); scrollbar-width: none; -webkit-overflow-scrolling: touch; }
  .si-feed-list::-webkit-scrollbar { display: none; }
  .si-feed-item { flex: 0 0 78vw; max-width: 290px; scroll-snap-align: start; border-top: none; }
  .si-feed-title { font-size: 14px; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; overflow: hidden; }
  .si-feed-link { display: flex; flex-direction: column; gap: var(--s2); padding: 0; border: 1px solid var(--border); border-radius: 3px; overflow: hidden; }
  .si-feed-thumb { width: 100%; height: 150px; flex-shrink: 0; }
  .si-feed-body { padding: var(--s2); }
  .si-feed-dek { display: none; }
  .clips-grid { display: flex; flex-direction: row; flex-wrap: nowrap; overflow-x: auto; scroll-snap-type: x mandatory; gap: var(--s3); padding-bottom: var(--s3); padding-right: var(--s3); scrollbar-width: none; -webkit-overflow-scrolling: touch; }
  .clips-grid::-webkit-scrollbar { display: none; }
  .clip-card { flex: 0 0 72vw; scroll-snap-align: start; }
  .clips-grid--page { grid-template-columns: 1fr; }
  .clips-page-head { flex-direction: column; align-items: flex-start; }
  .clip-featured-title { font-size: 30px; }
  .clip-featured-body { padding: var(--s3); }
  .clip-chips { gap: 8px; }

  .nl-headline { font-size: 32px; }
  .nl-form { flex-direction: column; }
  .nl-submit { width: 100%; padding: 14px; }

  .hp-proof { display: none; }
  .essential-conversations { display: none; }
  .recent-episodes-section { display: none; }

  .footer-top { grid-template-columns: 1fr 1fr 1fr; gap: var(--s3); margin-bottom: var(--s3); }
  .footer-brand-col { grid-column: 1 / -1; padding-bottom: var(--s2); border-bottom: 1px solid rgba(61,143,90,0.08); }
  .footer-desc { display: none; }
  .footer-links { gap: 7px; }
  .footer-link { font-size: 12px; }
  footer { padding: var(--s4) var(--s3) var(--s3); }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: var(--s2); }
}

/* ── Small mobile: 400px ── */
@media (max-width: 400px) {
  .hero-headline { font-size: 40px; }
  .hub-event-name { font-size: 34px; }
  .clip-card { flex: 0 0 80vw; }
  .si-feed-item { flex: 0 0 88vw; }
}



/* ═══════════════════════════════════════════════════
   20 Post / Article Pages
   ═══════════════════════════════════════════════════ */

.post-container { max-width: 760px; margin: 0 auto; }
.post-header { margin-bottom: 40px; }
.post-header--center { text-align: center; }
.post-title--center { max-width: 600px; margin-left: auto; margin-right: auto; }
.post-title { font-family: 'Oswald', sans-serif; font-size: clamp(22px, 4vw, 38px); font-weight: 800; color: var(--text); line-height: 1.1; margin: 12px 0; text-transform: uppercase; letter-spacing: -0.02em; }
.post-meta { color: var(--muted); font-family: 'Courier Prime', monospace; font-size: 12px; letter-spacing: 0.04em; display: flex; gap: 8px; }
.post-feature-image { width: 100%; max-width: 920px; display: block; margin: 24px auto 40px; aspect-ratio: 16/9; object-fit: cover; border-radius: 4px; }
.ep-listen-btns { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 32px; }
.ep-listen-btn { display: inline-flex; align-items: center; padding: 8px 16px; background: var(--surface); border: 1px solid var(--border); border-radius: 4px; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text); text-decoration: none; transition: border-color 0.2s, background 0.2s, color 0.2s; }
.ep-listen-btn:hover { border-color: var(--brand); color: var(--brand); }
.ep-listen-btn--primary { background: var(--brand); border-color: var(--brand); color: #fff; }
.ep-listen-btn--primary:hover { background: var(--highlight); border-color: var(--highlight); color: #000; }
.ep-listen-btn--muted { color: var(--muted); }
[data-episode] .post-content .kg-embed-card { background: #111; border-radius: 12px; padding: 24px; margin-bottom: 48px; }
.ep-video-hero { margin: 0 auto 32px; max-width: 920px; }
.ep-video-hero .kg-embed-card { background: none; border-radius: 8px; padding: 0; margin: 0; overflow: hidden; }
.ep-video-hero iframe { width: 100%; aspect-ratio: 16/9; display: block; border: none; border-radius: 8px; height: auto; }
.post-content { color: var(--muted); font-family: 'Montserrat', sans-serif; font-size: 16px; line-height: 1.75; }
.post-content h2 { font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 24px; color: var(--text); text-transform: uppercase; margin: 40px 0 16px; }
.post-content h3 { font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 20px; color: var(--text); margin: 32px 0 12px; }
.post-content p { margin-bottom: 20px; }
[data-episode] .post-content p { line-height: 1.8; margin-top: 16px; }
.post-content a { color: var(--brand); text-decoration: underline; }
.post-content blockquote { border-left: 3px solid var(--gold); padding-left: 20px; margin: 32px 0; color: var(--text); font-style: italic; }
.post-footer { margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--border); }
.post-newsletter-cta { margin-top: 32px; padding: 24px; background: var(--surface); border: 1px solid var(--border); border-radius: 4px; }
.post-newsletter-cta p { color: var(--muted); margin-bottom: 16px; }
.post-yt-embed { position: relative; width: 100%; aspect-ratio: 16/9; margin-top: 24px; border-radius: 4px; overflow: hidden; background: #000; }
.post-yt-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ═══════════════════════════════════════════════════
   20b Listen Page
   ═══════════════════════════════════════════════════ */

.listen-subhead {
  font-size: 16px;
  color: var(--muted);
  max-width: 460px;
  line-height: 1.6;
  margin-top: var(--s2);
}
.listen-hub { padding-top: var(--s5); padding-bottom: var(--s5); }

.listen-group { margin-bottom: var(--s6); }
.listen-group:last-child { margin-bottom: 0; }
.listen-group-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
  padding-bottom: var(--s2);
  margin-bottom: var(--s3);
  border-bottom: 1px solid var(--border);
}
.listen-group-cards--3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s3); }
.listen-group-cards--2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s3); }

.listen-card {
  display: flex;
  flex-direction: column;
  gap: var(--s2);
  padding: var(--s4);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 3px;
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  min-height: 190px;
}
.listen-card:hover {
  border-color: rgba(61,143,90,0.5);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}
.listen-card-platform {
  font-family: var(--font-head);
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--text);
}
.listen-card-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
  margin: 0;
}
.listen-card-cta {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
}
.listen-card:hover .listen-card-cta { color: var(--highlight); }

/* Latest episode strip */
.listen-latest-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: var(--s3);
}
.listen-latest-card {
  display: grid;
  grid-template-columns: 260px 1fr;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.listen-latest-card:hover { border-color: rgba(61,143,90,0.5); }
.listen-latest-thumb {
  position: relative;
  background: #0d1f16;
  min-height: 160px;
}
.listen-latest-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.listen-latest-body {
  padding: var(--s4);
  display: flex;
  flex-direction: column;
  gap: var(--s1);
  justify-content: center;
}
.listen-latest-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
}
.listen-latest-title {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  margin-top: var(--s1);
}
.listen-latest-excerpt {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin: var(--s1) 0 0;
}
.listen-latest-cta {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
  margin-top: var(--s2);
}
.listen-note-line {
  font-size: 15px;
  color: var(--muted);
  max-width: 540px;
}

@media (max-width: 900px) {
  .listen-group-cards--3 { grid-template-columns: 1fr 1fr; }
  .listen-latest-card { grid-template-columns: 200px 1fr; }
}
@media (max-width: 600px) {
  .listen-group-cards--3 { grid-template-columns: 1fr; }
  .listen-group-cards--2 { grid-template-columns: 1fr; }
  .listen-latest-card { grid-template-columns: 1fr; }
  .listen-latest-thumb { min-height: 200px; }
}

/* ═══════════════════════════════════════════════════
   21 Pagination
   ═══════════════════════════════════════════════════ */

.pagination { display: flex; align-items: center; justify-content: center; gap: 16px; padding: 40px 0; color: var(--muted); font-family: 'Courier Prime', monospace; font-size: 12px; }

/* ═══════════════════════════════════════════════════
   22 Episode / Tag Grid
   ═══════════════════════════════════════════════════ */

.ep-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ep-card { display: block; text-decoration: none; background: var(--surface); border: 1px solid var(--border); border-radius: 4px; overflow: hidden; transition: border-color 0.2s, transform 0.2s; }
.ep-card:hover { border-color: var(--brand); transform: translateY(-3px); }
.ep-thumb { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }
.ep-thumb-placeholder { background: var(--atmo); aspect-ratio: 16/9; }
.ep-body { padding: 16px; }
.ep-title { font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 15px; color: var(--text); text-transform: uppercase; line-height: 1.2; margin-bottom: 8px; }
.ep-meta { font-family: 'Courier Prime', monospace; font-size: 12px; color: var(--muted); letter-spacing: 0.04em; }

@media (max-width: 900px) {
  .ep-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .ep-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════
   23 — EVENT HUB STANDARD MODIFIER
══════════════════════════════════════════════════════ */
/* Tones down the glow/shadow for the off-season state */
.event-hub--standard {
  border-color: var(--border);
  box-shadow: none;
}
.event-hub--standard::before {
  opacity: 0.4;
}

/* ══════════════════════════════════════════════════════
   23b — MAJORS COUNTDOWN MODULE
   Standard-state replacement for Event Hub (non-active).
   Section-specific class names to avoid touching global hub styles.
══════════════════════════════════════════════════════ */

/* Supporting line below section title */
.majors-countdown-sub {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  margin: -8px 0 var(--s3);
}

/* Outer layout: large featured card + compact schedule panel */
.majors-countdown {
  display: grid;
  grid-template-columns: 1fr 270px;
  gap: var(--s2);
}

/* ── Featured card: one dominant major ── */
.countdown-featured {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--surface);
  border: 1px solid rgba(61,143,90,0.35);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
  transition: border-color 0.15s, box-shadow 0.15s;
  box-shadow: 0 0 60px rgba(61,143,90,0.1), inset 0 1px 0 rgba(61,143,90,0.15);
}
.countdown-featured::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}
/* Per-major atmospheric tint — update class when rotating featured major */
.countdown-featured--masters::before {
  background: radial-gradient(ellipse 90% 80% at 70% 60%, rgba(0,82,33,0.45) 0%, transparent 65%);
}
.countdown-featured--pga::before {
  background: radial-gradient(ellipse 90% 80% at 70% 60%, rgba(15,45,75,0.45) 0%, transparent 65%);
}
.countdown-featured--usopen::before {
  background: radial-gradient(ellipse 90% 80% at 70% 60%, rgba(20,50,55,0.45) 0%, transparent 65%);
}
.countdown-featured--open::before {
  background: radial-gradient(ellipse 90% 80% at 70% 60%, rgba(50,40,20,0.45) 0%, transparent 65%);
}
.countdown-featured:hover {
  border-color: rgba(61,143,90,0.55);
  box-shadow: 0 0 80px rgba(61,143,90,0.18), inset 0 1px 0 rgba(61,143,90,0.2);
}

/* Inner: editorial content left, large day-stat right */
.countdown-featured-inner {
  position: relative;
  z-index: 2;
  padding: 40px 36px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--s5);
  min-height: 300px;
}
.countdown-featured-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.countdown-next-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 16px;
}
.countdown-tournament {
  font-family: var(--font-head);
  font-size: clamp(34px, 3.5vw, 50px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.9;
  margin-bottom: 12px;
}
.countdown-location {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.countdown-desc {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
  flex: 1;
  margin-bottom: 24px;
  max-width: 380px;
}
/* Optional: post-event story/video count */
.countdown-coverage-count {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 20px;
}
.countdown-cta {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand);
  transition: color 0.15s;
}
.countdown-featured:hover .countdown-cta { color: var(--highlight); }

/* Large typographic day-stat — right side of featured card */
.countdown-day-stat {
  flex-shrink: 0;
  text-align: right;
  padding-top: 2px;
}
.countdown-day-number {
  font-family: var(--font-head);
  font-size: clamp(72px, 9vw, 108px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  display: block;
}
.countdown-day-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: block;
  margin-top: 5px;
}
/* State colors: apply class to .countdown-day-stat */
.countdown-state--pre  .countdown-day-number { color: var(--gold); }
.countdown-state--pre  .countdown-day-label  { color: rgba(201,168,76,0.4); }
.countdown-state--live .countdown-day-number { color: var(--si-red); font-size: clamp(32px, 4vw, 48px); letter-spacing: 0.06em; }
.countdown-state--live .countdown-day-label  { color: rgba(210,17,19,0.4); }
.countdown-state--post .countdown-day-number { color: var(--brand); }
.countdown-state--post .countdown-day-label  { color: rgba(61,143,90,0.4); }

/* ── Schedule panel: remaining three majors as a compact list ── */
.countdown-schedule {
  display: flex;
  flex-direction: column;
  background: rgba(11,20,16,0.5);
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
}
.countdown-schedule-header {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 14px 20px 12px;
  border-bottom: 1px solid var(--border);
}
.countdown-schedule-item {
  display: flex;
  align-items: center;
  gap: var(--s2);
  padding: 17px 20px;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: background 0.15s;
}
.countdown-schedule-item:last-child { border-bottom: none; }
.countdown-schedule-item:hover { background: rgba(61,143,90,0.05); }

/* Day number + "Days" label stacked */
.countdown-schedule-days {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  flex-shrink: 0;
  min-width: 52px;
  display: flex;
  flex-direction: column;
}
.countdown-schedule-days span {
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 3px;
}
/* State colors: apply .is-* to the <a> element */
.countdown-schedule-item.is-pre  .countdown-schedule-days { color: var(--muted); }
.countdown-schedule-item.is-live .countdown-schedule-days { color: var(--si-red); }
.countdown-schedule-item.is-post .countdown-schedule-days { color: var(--brand); }

.countdown-schedule-info { flex: 1; min-width: 0; }
.countdown-schedule-name {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.2;
  margin-bottom: 3px;
}
.countdown-schedule-meta {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-transform: uppercase;
}
/* Optional: post-event story count */
.countdown-schedule-count {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.06em;
  color: rgba(122,148,133,0.45);
  margin-top: 3px;
}
.countdown-schedule-arrow {
  font-family: var(--font-head);
  font-size: 13px;
  color: var(--muted);
  opacity: 0;
  transition: opacity 0.15s, color 0.15s;
  flex-shrink: 0;
}
.countdown-schedule-item:hover .countdown-schedule-arrow { opacity: 1; color: var(--brand); }

/* ══════════════════════════════════════════════════════
   24 — GH-CONTENT (Ghost post body)
══════════════════════════════════════════════════════ */
/* Ghost wraps rendered post/page HTML in .gh-content.
   Mirror post-content typography so all body copy is styled. */
.gh-content { color: var(--muted); font-family: var(--font-body); font-size: 16px; line-height: 1.75; }
.gh-content h2 { font-family: var(--font-head); font-weight: 700; font-size: 24px; color: var(--text); text-transform: uppercase; margin: 40px 0 16px; }
.gh-content h3 { font-family: var(--font-head); font-weight: 600; font-size: 20px; color: var(--text); margin: 32px 0 12px; }
.gh-content h4 { font-family: var(--font-head); font-weight: 600; font-size: 17px; color: var(--text); margin: 24px 0 10px; }
.gh-content p { margin-bottom: 20px; }
.gh-content a { color: var(--brand); text-decoration: underline; }
.gh-content a:hover { color: var(--highlight); }
.gh-content ul, .gh-content ol { padding-left: 24px; margin-bottom: 20px; }
.gh-content li { margin-bottom: 8px; }
.gh-content blockquote { border-left: 3px solid var(--gold); padding-left: 20px; margin: 32px 0; color: var(--text); font-style: italic; }
.gh-content figure { margin: 32px 0; }
.gh-content figure img { width: 100%; border-radius: 3px; }
.gh-content figcaption { font-family: var(--font-mono); font-size: 12px; color: var(--muted); margin-top: 8px; letter-spacing: 0.04em; }
.gh-content hr { border: none; border-top: 1px solid var(--border); margin: 40px 0; }
.gh-content pre { background: var(--surface); border: 1px solid var(--border); border-radius: 3px; padding: 20px; overflow-x: auto; font-size: 13px; margin-bottom: 20px; }
.gh-content code { font-family: var(--font-mono); font-size: 13px; background: var(--surface); padding: 2px 6px; border-radius: 2px; }

/* ══════════════════════════════════════════════════════
   25 — TAG DESCRIPTION
══════════════════════════════════════════════════════ */
.tag-description {
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  max-width: 480px;
  margin-top: var(--s1);
}

/* ══════════════════════════════════════════════════════
   26 — ABOUT PAGE
══════════════════════════════════════════════════════ */
.about-hero { padding-bottom: var(--s5); }
.about-hero-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: var(--s6);
  align-items: start;
  max-width: 880px;
}
.about-portrait-col {
  padding-top: 62px;
}
.about-portrait {
  position: relative;
}
.about-portrait::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 4px;
  background: linear-gradient(to top, rgba(11,20,16,0.32) 0%, transparent 50%);
  pointer-events: none;
}
.about-portrait-img {
  width: 100%;
  aspect-ratio: 2/3;
  object-fit: cover;
  object-position: 63% 13%;
  border-radius: 4px;
  display: block;
  filter: saturate(0.72) contrast(1.07) brightness(0.93);
  box-shadow: 0 20px 56px rgba(0,0,0,0.65), 0 0 0 1px rgba(255,255,255,0.10);
}
.about-portrait-placeholder {
  width: 100%;
  aspect-ratio: 2/3;
  background: linear-gradient(170deg, var(--atmo) 0%, var(--base) 100%);
  border-radius: 4px;
  min-height: 200px;
}
.about-bio-col {
  padding-left: var(--s5);
  border-left: 1px solid rgba(61,143,90,0.26);
}
.about-bio-col .eyebrow { margin-bottom: 4px; }
.about-credential {
  display: inline-flex;
  align-items: center;
  gap: var(--s1);
}
.about-name {
  font-family: var(--font-head);
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 4px 0 var(--s1);
}
.about-tagline {
  font-family: var(--font-head);
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #6CB87F;
  margin-bottom: var(--s3);
}
.about-bio { max-width: 480px; margin-bottom: var(--s3); }
.about-bio p { color: rgba(232,237,233,0.90); }
.about-socials { display: flex; gap: var(--s2); flex-wrap: wrap; }
.about-social-link {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(138,168,150,0.90);
  transition: color 0.15s;
}
.about-social-link:hover { color: var(--text); }

/* Crew */
.crew-header { margin-bottom: var(--s5); }
.crew-intro {
  font-size: 14px;
  color: var(--muted);
  margin-top: var(--s2);
  letter-spacing: 0.01em;
}
.crew-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s4);
}
.crew-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.crew-card:hover { border-color: var(--gold-border); }
.crew-img-wrap {
  position: relative;
  overflow: hidden;
  background: var(--surface);
}
.crew-img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(11,20,16,0.5) 0%, rgba(11,20,16,0) 100%);
  pointer-events: none;
}
.crew-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--atmo) 0%, var(--base) 100%);
}
.crew-portrait {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.35s ease;
}
.crew-card:hover .crew-portrait { transform: scale(1.03); }
.crew-info {
  padding: var(--s3);
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
}
.crew-name {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--text);
}
.crew-role {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.crew-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
  margin-top: var(--s1);
}

/* SI Partnership block */
.about-si-block {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--s5);
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--gold-border);
  border-radius: 3px;
  padding: var(--s5) var(--s5);
}
.about-si-left {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about-si-right {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.si-badge--lg {
  font-size: 26px;
  width: 60px;
  height: 60px;
  border-radius: 3px;
}
.about-si-headline {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--text);
  margin: var(--s1) 0 var(--s1);
}
.about-si-desc { color: var(--muted); font-size: 14px; line-height: 1.6; max-width: 52ch; }
.about-si-cta {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
  margin-top: var(--s2);
  text-decoration: none;
  transition: color 0.15s;
}
.about-si-cta:hover { color: var(--text); }

@media (max-width: 900px) {
  .about-hero-grid { grid-template-columns: 1fr; gap: var(--s4); max-width: 100%; }
  .about-portrait-col { padding-top: 0; }
  .about-portrait-img, .about-portrait-placeholder { max-width: 280px; aspect-ratio: 2/3; }
  .about-si-block { grid-template-columns: 1fr; gap: var(--s3); }
}
@media (max-width: 600px) {
  .crew-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════
   27 — ADVERTISE PAGE
══════════════════════════════════════════════════════ */
.adv-headline {
  font-family: var(--font-head);
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1;
  margin: var(--s2) 0 var(--s3);
}
.adv-sub {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  max-width: 560px;
}
.adv-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s4);
}
.adv-stat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: var(--s4);
}
.adv-stat-val {
  font-family: var(--font-head);
  font-size: 40px;
  font-weight: 900;
  color: var(--brand);
  line-height: 1;
  margin-bottom: var(--s1);
}
.adv-stat-val.si { color: var(--si-red); }
.adv-stat-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--muted);
  text-transform: uppercase;
}
.adv-options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s4);
  margin-top: var(--s4);
}
.adv-option {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: var(--s4);
}
.adv-option-title {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: var(--s2);
}
.adv-option-desc { color: var(--muted); font-size: 14px; line-height: 1.6; }
.adv-contact {
  max-width: 560px;
}
.adv-contact-headline {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--text);
  margin: var(--s2) 0 var(--s2);
}
.adv-contact-sub { color: var(--muted); font-size: 15px; margin-bottom: var(--s4); }


/* Contact hero */
.inner--narrow { max-width: 640px; }
.inner--mid { max-width: 1040px; }
.contact-subhead { font-size: 15px; color: var(--muted); max-width: 520px; line-height: 1.6; margin-top: var(--s2); }
/* Contact page */
.contact-main-section { padding-top: var(--s4); }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s5);
}
.contact-block-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: var(--s2);
}
.contact-block-link {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  display: block;
  margin-bottom: var(--s1);
}
.contact-block-link--primary {
  font-size: 20px;
  color: var(--brand);
}
.contact-block-link--primary:hover { color: #fff; }
.contact-block-link:hover { color: var(--brand); }
.contact-block-desc { color: var(--muted); font-size: 14px; line-height: 1.6; margin-top: var(--s2); }
.contact-block-email {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--muted);
  display: block;
  margin-top: var(--s2);
  transition: color 0.15s;
}
.contact-block-email:hover { color: var(--brand); }

.contact-socials { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s1) var(--s3); margin-top: var(--s2); }
.contact-social-link {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--text);
  transition: color 0.15s;
  padding: 10px 0;
  border-top: 1px solid rgba(61,143,90,0.25);
}
.contact-social-link:hover { color: var(--brand); }

.contact-callout { margin-top: var(--s4); padding: var(--s4) var(--s5); border-radius: 3px; border: 1px solid var(--border); background: var(--surface); }
.contact-callout p { color: var(--muted); font-size: 14px; line-height: 1.7; margin: 0 0 var(--s3); }
.contact-callout-head {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: var(--s2);
}
.contact-callout-action {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--brand);
  display: block;
  transition: color 0.15s;
}
.contact-callout-action:hover { color: #fff; }

@media (max-width: 900px) {
  .adv-stats-grid { grid-template-columns: 1fr 1fr; }
  .adv-options-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: var(--s4); }
}
@media (max-width: 600px) {
  .adv-stats-grid { grid-template-columns: 1fr 1fr; }
}

/* ══════════════════════════════════════════════════════
   28 — EVENTS PAGE
══════════════════════════════════════════════════════ */
.events-headline {
  font-family: var(--font-head);
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1;
  margin: var(--s2) 0 var(--s3);
}
.events-sub {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  max-width: 560px;
}
.events-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s4);
}
.event-card {
  display: block;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
  text-decoration: none;
  transition: border-color 0.2s, transform 0.2s;
}
.event-card:hover { border-color: var(--brand); transform: translateY(-3px); }
.event-card-badge {
  display: block;
  padding: var(--s2) var(--s3);
  background: var(--atmo);
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand);
  border-bottom: 1px solid var(--border);
}
.event-card-badge--masters { color: var(--gold); background: rgba(201,168,76,0.08); border-bottom-color: var(--gold-border); }
.event-card-body { padding: var(--s4); }
.event-card-name {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 4px;
}
.event-card-venue {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--brand);
  margin-bottom: var(--s1);
}
.event-card-date {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: var(--s2);
}
.event-card-desc { color: var(--muted); font-size: 13px; line-height: 1.55; margin-bottom: var(--s3); }
.event-card-cta {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
}
.event-card:hover .event-card-cta { color: var(--highlight); }
.coverage-model-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s3);
  margin-top: var(--s4);
}
.coverage-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: var(--s3);
}
.coverage-day {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--s1);
}
.coverage-title {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1.3;
}

@media (max-width: 900px) {
  .events-grid { grid-template-columns: 1fr; }
  .coverage-model-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .coverage-model-grid { grid-template-columns: 1fr; }
}

/* coverage-item description (used on events page coverage model) */
.coverage-desc {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  margin-top: var(--s1);
}

/* ── Events Next Up block ── */
.events-next {
  display: block;
  background: var(--surface);
  border: 1px solid var(--gold-border);
  border-radius: 3px;
  overflow: hidden;
  text-decoration: none;
  position: relative;
  transition: border-color 0.2s;
}
.events-next::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
}
.events-next:hover { border-color: var(--gold); }
.events-next-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s6);
  padding: var(--s6);
}
.events-next-content { flex: 1; }
.events-next-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--s2);
}
.events-next-name {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--text);
  line-height: 1;
  margin-bottom: var(--s1);
}
.events-next-meta {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--brand);
  margin-bottom: var(--s3);
}
.events-next-desc {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  max-width: 480px;
  margin-bottom: var(--s4);
}
.events-next-cta {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-border);
  padding: var(--s2) var(--s3);
  border-radius: 2px;
  transition: background 0.2s, border-color 0.2s;
}
.events-next:hover .events-next-cta { background: rgba(201,168,76,0.08); border-color: var(--gold); }
.events-next-stat {
  flex-shrink: 0;
  text-align: center;
}
.events-next-days {
  font-family: var(--font-head);
  font-size: clamp(72px, 9vw, 108px);
  font-weight: 900;
  line-height: 1;
  color: var(--gold);
}
.events-next-days-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.4);
  margin-top: var(--s1);
}

/* ── Event status badge ── */
.event-status {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 2px;
  margin-bottom: var(--s2);
}
.event-status--upcoming { background: rgba(61,143,90,0.1); color: var(--brand); border: 1px solid var(--border); }
.event-status--live     { background: rgba(210,17,19,0.12); color: var(--si-red); border: 1px solid rgba(210,17,19,0.3); }
.event-status--past     { background: rgba(122,148,133,0.1); color: var(--muted); border: 1px solid rgba(122,148,133,0.2); }

/* ── Past coverage cards ── */
.events-past-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s3);
  margin-top: var(--s4);
}
.events-past-card {
  display: block;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: var(--s3);
  text-decoration: none;
  transition: border-color 0.2s;
}
.events-past-card:hover { border-color: var(--brand); }
.events-past-year {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: var(--s1);
}
.events-past-name {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: var(--s2);
}
.events-past-cta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--brand);
}
.events-past-card:hover .events-past-cta { color: var(--highlight); }

/* ── Sponsor bridge ── */
.events-sponsor-bridge {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s5);
  background: var(--surface);
  border: 1px solid var(--gold-border);
  border-radius: 3px;
  padding: var(--s5) var(--s6);
}
.events-sponsor-content { flex: 1; }
.events-sponsor-title {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text);
  margin: var(--s1) 0 var(--s2);
}
.events-sponsor-desc {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  max-width: 520px;
}
.events-sponsor-cta {
  flex-shrink: 0;
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-border);
  padding: var(--s2) var(--s3);
  border-radius: 2px;
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s;
}
.events-sponsor-cta:hover { background: rgba(201,168,76,0.08); border-color: var(--gold); }

@media (max-width: 900px) {
  .events-next-inner { flex-direction: column; padding: var(--s4); gap: var(--s3); }
  .events-next-stat { align-self: flex-start; }
  .events-past-grid { grid-template-columns: 1fr 1fr; }
  .events-sponsor-bridge { flex-direction: column; align-items: flex-start; padding: var(--s4); }
}
@media (max-width: 600px) {
  .events-past-grid { grid-template-columns: 1fr 1fr; }
}

/* ══════════════════════════════════════════════════════
   30 — EPISODES ARCHIVE PAGE
   All classes are prefixed ep-archive-, ep-featured-, ep-row-,
   ep-page-, ep-filter- to avoid collision with other ep-* classes.
══════════════════════════════════════════════════════ */

/* ── Outer wrapper (adds nav offset) ── */
.ep-archive { padding-top: 64px; }

/* ── Section 1: Archive Header ── */
.ep-archive-header {
  padding: var(--s7) var(--s7) var(--s5);
  border-bottom: 1px solid var(--border);
}
.ep-archive-header-inner { max-width: 860px; }

.ep-archive-title {
  font-family: var(--font-head);
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 0.9;
  margin: var(--s1) 0 var(--s3);
}
.ep-archive-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: var(--s4);
}
.ep-archive-stats {
  display: flex;
  gap: var(--s5);
  padding-top: var(--s3);
  border-top: 1px solid var(--border);
}
.ep-archive-stat { display: flex; flex-direction: column; gap: 3px; }
.ep-archive-stat-val {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 900;
  color: var(--brand);
  line-height: 1;
}
.ep-archive-stat-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── Section 2: Toolbar (sticky under nav) ── */
.ep-archive-context {
  padding: var(--s3) var(--s7) 0;
  margin-bottom: var(--s2);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.5;
}
.ep-archive-context-count { color: var(--brand); font-weight: 700; }

.ep-archive-toolbar {
  display: flex;
  align-items: center;
  gap: var(--s3);
  padding: 12px var(--s7);
  margin-bottom: var(--s4);
  background: rgba(11,20,16,0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px);
  position: sticky;
  top: 64px;
  z-index: 100;
  flex-wrap: wrap;
}
.ep-archive-toolbar-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-right: var(--s1);
}
.ep-archive-search {
  display: flex;
  align-items: center;
  gap: 9px;
  background: rgba(14,26,20,0.7);
  border: 1px solid rgba(61,143,90,0.2);
  border-radius: 2px;
  padding: 8px 13px;
  transition: border-color 0.15s;
  min-width: 210px;
  cursor: text;
}
.ep-archive-search:focus-within { border-color: rgba(61,143,90,0.5); }
.ep-archive-search-icon { color: var(--muted); flex-shrink: 0; }
.ep-archive-search-input {
  background: none;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text);
  width: 100%;
}
.ep-archive-search-input::placeholder { color: rgba(122,148,133,0.4); }

.ep-archive-filters { display: flex; gap: 5px; flex-wrap: wrap; }
.ep-filter-chip {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  background: transparent;
  border: 1px solid rgba(61,143,90,0.14);
  border-radius: 2px;
  padding: 6px 13px;
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
  white-space: nowrap;
}
.ep-filter-chip:hover { color: var(--text); border-color: rgba(61,143,90,0.35); }
.ep-filter-chip--active {
  color: var(--brand);
  border-color: rgba(61,143,90,0.5);
  background: rgba(61,143,90,0.08);
}

/* ── Section 3: Featured Latest Episode ── */
.ep-archive-featured {
  padding: var(--s5) var(--s7);
  border-bottom: 1px solid var(--border);
}
.ep-archive-featured-inner {
  display: grid;
  grid-template-columns: 400px 1fr;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.ep-archive-featured-inner:hover { border-color: rgba(61,143,90,0.4); }

.ep-featured-thumb {
  position: relative;
  display: block;
  min-height: 272px;
  background: #0a1812;
  overflow: hidden;
  cursor: pointer;
  flex-shrink: 0;
}
.ep-featured-thumb-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.ep-featured-thumb--empty {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, #0d2018 0%, #091510 60%, #0d1a12 100%);
}
.ep-featured-grade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(10,24,18,0.5) 0%, rgba(10,24,18,0.08) 40%, rgba(10,24,18,0.6) 100%);
  z-index: 1;
  transition: background 0.2s;
}
.ep-featured-thumb:hover .ep-featured-grade {
  background: linear-gradient(to bottom, rgba(10,24,18,0.35) 0%, transparent 40%, rgba(10,24,18,0.45) 100%);
}
/* reuse .latest-play from section 11 for the play button */
.ep-featured-thumb .latest-play { z-index: 2; }
.ep-featured-thumb:hover .latest-play {
  background: var(--brand);
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 6px 32px rgba(61,143,90,0.4);
}

.ep-featured-badge {
  position: absolute;
  bottom: var(--s2); left: var(--s2);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(10,24,18,0.82);
  border: 1px solid rgba(61,143,90,0.25);
  border-radius: 2px;
  padding: 5px 10px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(232,237,233,0.7);
  backdrop-filter: blur(4px);
}
.ep-featured-badge-dot {
  width: 5px; height: 5px;
  background: var(--brand);
  border-radius: 50%;
  flex-shrink: 0;
}

.ep-featured-content {
  padding: var(--s5) var(--s4);
  display: flex;
  flex-direction: column;
  gap: var(--s2);
  justify-content: center;
}
.ep-featured-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.ep-featured-sep { color: rgba(122,148,133,0.3); }
.ep-featured-runtime { color: var(--brand); }

.ep-topic-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.ep-topic-list[hidden] { display: none; }
.ep-topic-list--featured { margin-top: 2px; }
.ep-topic-pill {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 4px 10px;
  border: 1px solid rgba(61,143,90,0.18);
  border-radius: 999px;
  background: rgba(61,143,90,0.08);
  color: rgba(232,237,233,0.86);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.ep-featured-title {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin: 0;
}
.ep-featured-title a { color: inherit; }
.ep-featured-title a:hover { color: var(--brand); }

.ep-featured-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ep-featured-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: var(--s1);
}

/* ── Section 4: Archive List ── */
.ep-archive-list {
  padding: 0 var(--s7) var(--s6);
}
.ep-archive-list-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--s3) 0 var(--s2);
  border-bottom: 1px solid var(--border);
  margin-bottom: 2px;
}
.ep-archive-visible-count {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── Episode archive row ── */
.ep-row {
  display: grid;
  grid-template-columns: 112px 1fr auto 32px;
  align-items: center;
  gap: var(--s3);
  padding: 14px 0;
  border-bottom: 1px solid rgba(61,143,90,0.07);
  color: var(--text);
  transition: background 0.15s;
  text-decoration: none;
}
.ep-row:hover { background: rgba(61,143,90,0.04); margin: 0 calc(-1 * var(--s2)); padding-left: var(--s2); padding-right: var(--s2); }
.ep-row--hidden { display: none !important; }

.ep-row-thumb {
  position: relative;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #1E4D30 0%, #0B1410 100%);
  border-radius: 2px;
  overflow: hidden;
  flex-shrink: 0;
}
.ep-row-thumb-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.ep-row-thumb-img--empty {
  background: linear-gradient(145deg, #163322 0%, #0B1410 100%);
}
.ep-row-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 26px; height: 26px;
  background: rgba(61,143,90,0.8);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 0.15s;
}
.ep-row:hover .ep-row-play { opacity: 1; }

.ep-row-body { min-width: 0; }
.ep-row-title {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-clamp: 2;
}
.ep-row:hover .ep-row-title { color: var(--brand); }
.ep-row-excerpt {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.45;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-clamp: 2;
}
.ep-row .ep-topic-list { margin-top: 10px; }

.ep-row-meta { text-align: right; flex-shrink: 0; min-width: 140px; }
.ep-row-meta-inner {
  display: block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--muted);
  white-space: nowrap;
}
.ep-row-meta-sep { color: rgba(122,148,133,0.5); margin: 0 4px; }
.ep-row-runtime { color: var(--brand); }

.ep-row-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  opacity: 0;
  transition: opacity 0.15s, color 0.15s;
}
.ep-row:hover .ep-row-arrow { opacity: 1; color: var(--brand); }

/* No-match message */
.ep-archive-no-match {
  display: flex;
  align-items: center;
  gap: var(--s2);
  padding: var(--s5) 0;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.ep-archive-clear-btn {
  background: none;
  border: none;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
}

/* ── Section 5: Pagination ── */
.ep-archive-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s4);
  padding: var(--s5) var(--s7);
  border-top: 1px solid var(--border);
}
.ep-page-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text);
  background: transparent;
  border: 1px solid rgba(61,143,90,0.25);
  border-radius: 2px;
  padding: 10px 20px;
  transition: border-color 0.15s, color 0.15s;
  text-decoration: none;
}
.ep-page-btn:hover { border-color: var(--brand); color: var(--brand); }
.ep-page-btn--disabled {
  opacity: 0.25;
  cursor: default;
  pointer-events: none;
}
.ep-page-info {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── Section 6: Empty State ── */
.ep-archive-empty { padding: var(--s8) var(--s7); }
.ep-archive-empty-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s3);
  max-width: 440px;
  margin: 0 auto;
  text-align: center;
}
.ep-archive-empty-icon {
  width: 64px; height: 64px;
  background: rgba(61,143,90,0.07);
  border: 1px solid rgba(61,143,90,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--brand);
  padding-left: 3px; /* optical center for play triangle */
}
.ep-archive-empty-msg {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}
.ep-archive-empty-actions { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }

/* ── Responsive: episodes archive ── */
@media (max-width: 900px) {
  .ep-archive-header { padding: var(--s5) var(--s4) var(--s4); }
  .ep-archive-context { padding: var(--s3) var(--s4) 0; }
  .ep-archive-toolbar { padding: 10px var(--s4); top: 64px; margin-bottom: var(--s3); }
  .ep-archive-featured { padding: var(--s4); }
  .ep-archive-featured-inner { grid-template-columns: 1fr; }
  .ep-featured-thumb { min-height: 240px; }
  .ep-featured-content { padding: var(--s4); }
  .ep-archive-list { padding: 0 var(--s4) var(--s4); }
  .ep-row { grid-template-columns: 96px 1fr auto; }
  .ep-row-arrow { display: none; }
  .ep-archive-pagination { padding: var(--s4); gap: var(--s3); }
}
@media (max-width: 600px) {
  .ep-archive-header { padding: var(--s4) var(--s3) var(--s3); }
  .ep-archive-title { font-size: clamp(44px, 13vw, 60px); }
  .ep-archive-stats { gap: var(--s4); }
  .ep-archive-stat-val { font-size: 28px; }
  .ep-archive-context { padding: var(--s2) var(--s3) 0; font-size: 11px; }
  .ep-archive-toolbar { padding: 10px var(--s3); gap: var(--s2); flex-direction: column; align-items: stretch; margin-bottom: var(--s3); }
  .ep-archive-toolbar-label { margin-right: 0; margin-bottom: 2px; }
  .ep-archive-search { width: 100%; }
  .ep-filter-chip { font-size: 12px; padding: 5px 10px; }
  .ep-archive-featured { padding: var(--s3); }
  .ep-archive-list { padding: 0 var(--s3) var(--s4); }
  .ep-row { grid-template-columns: 80px 1fr; gap: var(--s2); }
  .ep-row-meta { display: none; }
  .ep-row:hover { margin: 0; padding-left: 0; padding-right: 0; }
  .ep-row .ep-topic-list { margin-top: 8px; }
  .ep-archive-pagination { padding: var(--s4) var(--s3); gap: var(--s2); flex-direction: column; align-items: stretch; }
  .ep-page-btn { justify-content: center; }
  .ep-archive-empty { padding: var(--s6) var(--s3); }
}
