/*
Theme Name: KD Sports Media
Theme URI: https://kdsportsmedia.com
Author: Kendell Haynes
Description: Broadcast Couture single-page site for Kristen Ditsch, sports media personality. Jet and ivory bands, champagne gold bolt, Bodoni Moda and Archivo.
Version: 1.1.0
Requires at least: 6.0
Requires PHP: 7.4
License: All rights reserved
Text Domain: kd-sports-media
*/

/* ============================================================
   K⚡D SPORTS MEDIA — kristen ditsch
   Design system: "Broadcast Couture"
   Jet-black broadcast bands alternating with ivory editorial
   spreads; fashion didone display over a grotesque utility;
   one gold bolt as the recurring signature.
   ============================================================ */

:root {
  --ink: #0c0a09;
  --coal: #171310;
  --coal-2: #1e1915;
  --champagne: #c6a15b;
  --brass-light: #e9cf96;
  --ivory: #f2ecdf;
  --ivory-2: #eae2d1;
  --stone: #a29a89;      /* muted on dark */
  --taupe: #6e675c;      /* muted on ivory */
  --line-dark: rgba(198, 161, 91, 0.28);
  --line-ivory: rgba(20, 16, 12, 0.16);
  --gold-grad: linear-gradient(160deg, var(--brass-light) 0%, var(--champagne) 55%, #a07d3c 100%);

  --font-display: "Bodoni Moda", "Didot", serif;
  --font-body: "Archivo", "Helvetica Neue", sans-serif;

  --w-max: 1240px;
  --pad-x: clamp(20px, 5vw, 64px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  background: var(--ink);
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

.wrap {
  max-width: var(--w-max);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

/* ---------- reveal-on-scroll ---------- */
.rv { opacity: 0; transform: translateY(26px); transition: opacity 0.8s cubic-bezier(.2,.6,.2,1), transform 0.8s cubic-bezier(.2,.6,.2,1); }
.rv.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .rv { opacity: 1; transform: none; transition: none; }
}

/* ---------- lower-third section label (signature device) ---------- */
.lower-third {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: clamp(28px, 4vw, 48px);
}
.lower-third .bolt-mark { width: 11px; flex: none; }
.lower-third .lt-label {
  font-size: 12px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--champagne);
  white-space: nowrap;
}
.lower-third .lt-rule {
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, var(--line-dark), transparent);
}
.on-ivory .lower-third .lt-rule { background: linear-gradient(90deg, var(--line-ivory), transparent); }
.on-ivory .lower-third .lt-label { color: #8a6a2f; }

/* ---------- nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(12, 10, 9, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: rgba(198, 161, 91, 0.14);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo svg { height: 30px; width: auto; }
.nav-links { display: flex; align-items: center; gap: clamp(18px, 3vw, 40px); list-style: none; }
.nav-links a {
  text-decoration: none;
  font-size: 12.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--stone);
  transition: color 0.25s ease;
}
.nav-links a:hover, .nav-links a:focus-visible { color: var(--brass-light); }
.nav-book {
  border: 1px solid var(--line-dark);
  padding: 10px 22px;
  color: var(--champagne) !important;
  transition: background 0.25s ease, color 0.25s ease;
}
.nav-book:hover, .nav-book:focus-visible { background: var(--champagne); color: var(--ink) !important; }
.nav-toggle { display: none; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 110px;
  padding-bottom: 60px;
  background:
    radial-gradient(1100px 600px at 78% 20%, rgba(198, 161, 91, 0.10), transparent 60%),
    var(--ink);
  overflow: hidden;
}
.hero-bolt-bg {
  position: absolute;
  right: -4%;
  top: 50%;
  transform: translateY(-52%) rotate(8deg);
  height: 130%;
  opacity: 0.05;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  width: 100%;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12.5px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--champagne);
  font-weight: 600;
  margin-bottom: 26px;
}
.hero-eyebrow .bolt-mark { width: 10px; }
.hero h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(56px, 9.2vw, 128px);
  line-height: 0.94;
  letter-spacing: 0.005em;
  text-transform: uppercase;
}
.hero h1 .h1-line { display: block; }
.hero h1 .h1-line:last-child {
  font-style: italic;
  font-weight: 400;
  color: transparent;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
}
.hero-roles {
  margin-top: 30px;
  max-width: 46ch;
  color: var(--stone);
  font-size: 17px;
  line-height: 1.7;
}
.hero-roles strong { color: var(--ivory); font-weight: 600; }
.hero-leagues {
  display: flex;
  gap: 12px;
  margin-top: 26px;
}
.hero-leagues span {
  font-size: 12px;
  letter-spacing: 0.26em;
  font-weight: 600;
  padding: 8px 16px;
  border: 1px solid var(--line-dark);
  color: var(--brass-light);
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 40px; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 17px 34px;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.btn-gold { background: var(--gold-grad); color: #241b0d; }
.btn-gold:hover, .btn-gold:focus-visible { transform: translateY(-2px); }
.btn-ghost { border: 1px solid var(--line-dark); color: var(--ivory); }
.btn-ghost:hover, .btn-ghost:focus-visible { border-color: var(--champagne); color: var(--brass-light); }
.on-ivory .btn-ghost { border-color: var(--line-ivory); color: #14100c; }
.on-ivory .btn-ghost:hover { border-color: #8a6a2f; color: #8a6a2f; }

/* hero portrait */
.hero-portrait { position: relative; }
.hero-portrait .frame {
  position: relative;
  border: 1px solid var(--line-dark);
  padding: 14px;
}
.hero-portrait .frame::before {
  content: "";
  position: absolute;
  inset: -11px 11px 11px -11px;
  border: 1px solid rgba(198, 161, 91, 0.16);
  pointer-events: none;
}
.hero-portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 20%;
  filter: saturate(0.92);
}
.hero-caption {
  position: absolute;
  left: -18px;
  bottom: 34px;
  background: rgba(12, 10, 9, 0.92);
  border-left: 3px solid;
  border-image: var(--gold-grad) 1;
  padding: 13px 22px 13px 18px;
  backdrop-filter: blur(6px);
}
.hero-caption .cap-name {
  font-size: 13px;
  letter-spacing: 0.28em;
  font-weight: 700;
  text-transform: uppercase;
}
.hero-caption .cap-role {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-top: 3px;
}

/* hero load animation */
.hero .rise { opacity: 0; transform: translateY(34px); animation: rise 0.9s cubic-bezier(.2,.65,.2,1) forwards; }
.hero .rise.d1 { animation-delay: 0.08s; }
.hero .rise.d2 { animation-delay: 0.2s; }
.hero .rise.d3 { animation-delay: 0.34s; }
.hero .rise.d4 { animation-delay: 0.48s; }
.hero .rise.d5 { animation-delay: 0.62s; }
@keyframes rise { to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  .hero .rise { animation: none; opacity: 1; transform: none; }
}

/* ---------- credentials ticker ---------- */
.ticker {
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: var(--coal);
  overflow: hidden;
  padding: 18px 0;
}
.ticker-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: ticker 46s linear infinite;
}
.ticker:hover .ticker-track { animation-play-state: paused; }
@keyframes ticker { to { transform: translateX(-50%); } }
/* the ticker scrolls even under prefers-reduced-motion: it is the site's
   broadcast signature, and it pauses on hover (Kendell, 2026-08-17) */
.ticker-set { display: flex; align-items: center; }
.ticker-set span {
  font-size: 12.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--stone);
  white-space: nowrap;
}
.ticker-set .t-bolt { width: 9px; margin: 0 26px; opacity: 0.75; flex: none; }

/* ---------- sections ---------- */
.section { padding: clamp(72px, 9vw, 130px) 0; }
.section-head {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(34px, 4.6vw, 62px);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  max-width: 18ch;
}
.section-head em {
  font-style: italic;
  font-weight: 400;
  color: transparent;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
}

/* ---------- the reel (media player) ---------- */
#reel { background: var(--ink); }
.reel-top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(30px, 4vw, 50px);
}
.reel-tabs { display: flex; gap: 8px; flex-wrap: wrap; }
.reel-tab {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--stone);
  background: none;
  border: 1px solid transparent;
  padding: 11px 20px;
  cursor: pointer;
  transition: color 0.25s ease, border-color 0.25s ease;
}
.reel-tab:hover { color: var(--brass-light); }
.reel-tab[aria-selected="true"] {
  color: var(--champagne);
  border-color: var(--line-dark);
  background: var(--coal);
}
.player-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 22px;
  align-items: stretch;
}
.player-stage {
  position: relative;
  border: 1px solid var(--line-dark);
  background: #000;
  padding: 12px;
}
.stage-media {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
}
.stage-media iframe, .stage-media .stage-cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.stage-cover {
  cursor: pointer;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  padding: 0;
}
.stage-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(closest-side, rgba(12,10,9,0.1), rgba(12,10,9,0.62));
  transition: background 0.3s ease;
}
.stage-cover:hover::before { background: radial-gradient(closest-side, rgba(12,10,9,0), rgba(12,10,9,0.5)); }
.stage-cover .play-btn {
  position: relative;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: rgba(12, 10, 9, 0.55);
  border: 1px solid var(--brass-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease;
}
.stage-cover:hover .play-btn { transform: scale(1.07); background: rgba(12,10,9,0.75); }
.play-btn svg { width: 26px; margin-left: 5px; }
.stage-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 6px 5px;
}
.stage-info .now-label {
  font-size: 10.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--champagne);
  font-weight: 700;
}
.stage-info .now-title {
  font-family: var(--font-display);
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 500;
  margin-top: 4px;
}
.stage-info .now-meta { font-size: 12.5px; color: var(--stone); margin-top: 2px; letter-spacing: 0.06em; }
.stage-yt {
  flex: none;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--stone);
  text-decoration: none;
  border-bottom: 1px solid var(--line-dark);
  padding-bottom: 3px;
  transition: color 0.25s ease;
}
.stage-yt:hover { color: var(--brass-light); }

.playlist {
  border: 1px solid var(--line-dark);
  background: var(--coal);
  display: flex;
  flex-direction: column;
  min-height: 0;
  max-height: 640px;
}
.playlist-head {
  padding: 16px 20px;
  border-bottom: 1px solid var(--line-dark);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--champagne);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.playlist-head .count { color: var(--stone); letter-spacing: 0.1em; }
.playlist-scroll { overflow-y: auto; flex: 1; scrollbar-width: thin; scrollbar-color: var(--champagne) transparent; }
.pl-item {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 14px;
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  border-bottom: 1px solid rgba(198, 161, 91, 0.1);
  padding: 14px 16px;
  cursor: pointer;
  color: var(--ivory);
  font-family: var(--font-body);
  transition: background 0.25s ease;
}
.pl-item:hover { background: var(--coal-2); }
.pl-item.active { background: var(--coal-2); box-shadow: inset 3px 0 0 var(--champagne); }
.pl-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
  filter: saturate(0.9);
}
.pl-item.active .pl-thumb::after {
  content: "▶";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(12, 10, 9, 0.55);
  color: var(--brass-light);
  font-size: 18px;
}
.pl-meta .pl-kind {
  font-size: 9.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--champagne);
}
.pl-meta .pl-title {
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.35;
  margin-top: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pl-meta .pl-date { font-size: 11px; color: var(--stone); margin-top: 4px; letter-spacing: 0.08em; }

.reel-subs { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }
.sub-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--stone);
  border: 1px solid rgba(198, 161, 91, 0.16);
  padding: 12px 20px;
  transition: color 0.25s ease, border-color 0.25s ease;
}
.sub-link:hover { color: var(--brass-light); border-color: var(--champagne); }
.sub-link .yt-ico { width: 20px; flex: none; }

/* ---------- about (ivory editorial) ---------- */
.on-ivory { background: var(--ivory); color: #14100c; }
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}
.about-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.3;
  max-width: 20ch;
}
.about-quote .q-gold {
  color: transparent;
  background: linear-gradient(150deg, #a8842f, #8a6a2f);
  -webkit-background-clip: text;
  background-clip: text;
}
.about-attr {
  margin-top: 22px;
  font-size: 11.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--taupe);
}
.about-body p { color: #3c362d; font-size: 16.5px; line-height: 1.85; }
.about-body p + p { margin-top: 1.2em; }
.about-body strong { color: #14100c; }
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-ivory);
  margin-top: 42px;
  padding-top: 30px;
  gap: 20px;
}
.stat .stat-n {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.4vw, 44px);
  font-weight: 500;
  line-height: 1;
}
.stat .stat-l {
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--taupe);
  margin-top: 8px;
  line-height: 1.5;
}

/* ---------- partnerships ---------- */
#partners { background: var(--ivory); }
#partners .section-inner { border-top: 1px solid var(--line-ivory); padding-top: clamp(48px, 6vw, 80px); }
.feature-card {
  position: relative;
  background: var(--ink);
  color: var(--ivory);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  overflow: hidden;
  margin-top: clamp(36px, 5vw, 60px);
}
.feature-card .fc-body { padding: clamp(34px, 4.5vw, 64px); position: relative; z-index: 1; }
.fc-eyebrow {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--champagne);
}
.fc-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.1;
  text-transform: uppercase;
  margin-top: 14px;
}
.fc-title em { font-style: italic; font-weight: 400; color: var(--brass-light); }
.fc-copy { color: var(--stone); margin-top: 18px; max-width: 52ch; font-size: 15.5px; line-height: 1.75; }
.fc-points { list-style: none; margin-top: 22px; display: grid; gap: 10px; }
.fc-points li {
  display: flex;
  gap: 12px;
  align-items: baseline;
  font-size: 14px;
  color: var(--ivory);
  letter-spacing: 0.02em;
}
.fc-points .bolt-mark { width: 8px; flex: none; transform: translateY(1px); }
.feature-card .fc-media {
  position: relative;
  min-height: 340px;
  background:
    radial-gradient(600px 400px at 30% 40%, rgba(198, 161, 91, 0.22), transparent 65%),
    var(--coal-2);
}
.fc-media .fc-role {
  position: absolute;
  z-index: 1;
  top: 26px;
  left: 26px;
  right: 26px;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--champagne);
}
.fc-media .fc-bolt {
  position: absolute;
  inset: 10% 0 26% 0;   /* sit between the role line and the venue caption */
  margin: auto;
  height: 56%;
  z-index: 1;           /* above the scrim so the edges stay full strength */
  opacity: 1;
  stroke: rgba(233, 207, 150, 0.8);
  stroke-width: 2;
  paint-order: stroke;  /* stroke behind the fill: a crisp rim, not a thinner bolt */
}
/* the bolt sits right behind the venue line, so darken the lower panel
   before the caption paints over it */
.fc-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(12, 10, 9, 0.94) 0%,
    rgba(12, 10, 9, 0.8) 34%,
    rgba(12, 10, 9, 0.28) 62%,
    transparent 84%
  );
  pointer-events: none;
}
.fc-media .fc-tag {
  position: absolute;
  z-index: 1;
  bottom: 26px;
  left: 26px;
  right: 26px;
  border-top: 1px solid var(--line-dark);
  padding-top: 14px;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ivory);
  line-height: 1.9;
}
.partner-rows { margin-top: clamp(40px, 5vw, 64px); border-top: 1px solid var(--line-ivory); }
.partner-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr) auto;
  gap: 20px;
  align-items: center;
  padding: 22px 4px;
  border-bottom: 1px solid var(--line-ivory);
  text-decoration: none;
  transition: background 0.25s ease;
}
.partner-row:hover { background: var(--ivory-2); }
.partner-row .pr-name {
  font-family: var(--font-display);
  font-size: clamp(19px, 2.2vw, 26px);
  font-weight: 500;
}
.partner-row .pr-desc { font-size: 13.5px; color: var(--taupe); letter-spacing: 0.02em; }
.partner-row .pr-desc .code {
  font-weight: 700;
  color: #8a6a2f;
  letter-spacing: 0.16em;
  border: 1px solid rgba(138, 106, 47, 0.4);
  padding: 2px 8px;
  margin-left: 6px;
  font-size: 11.5px;
}
.partner-row .pr-arrow {
  font-size: 18px;
  color: var(--taupe);
  transition: transform 0.25s ease, color 0.25s ease;
}
.partner-row:hover .pr-arrow { transform: translateX(6px); color: #8a6a2f; }

/* ---------- press ---------- */
#press { background: var(--ink); }
.press-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 10px;
}
.press-card {
  border: 1px solid var(--line-dark);
  padding: 30px 28px;
  text-decoration: none;
  background: var(--coal);
  transition: border-color 0.25s ease, transform 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.press-card:hover { border-color: var(--champagne); transform: translateY(-4px); }
.press-card .pc-outlet {
  font-size: 10.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--champagne);
}
.press-card .pc-title {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 500;
  line-height: 1.3;
}
.press-card .pc-kind { font-size: 12px; color: var(--stone); letter-spacing: 0.14em; text-transform: uppercase; margin-top: auto; }

/* ---------- contact ---------- */
#contact {
  background:
    radial-gradient(900px 500px at 50% 110%, rgba(198, 161, 91, 0.13), transparent 65%),
    var(--ink);
  text-align: center;
  border-top: 1px solid var(--line-dark);
}
#contact .contact-bolt { width: 30px; margin: 0 auto 28px; }
#contact h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(38px, 5.4vw, 72px);
  text-transform: uppercase;
  line-height: 1.04;
}
#contact h2 em {
  font-style: italic;
  font-weight: 400;
  color: transparent;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
}
#contact .contact-sub { color: var(--stone); max-width: 52ch; margin: 22px auto 0; font-size: 16px; }
#contact .contact-mail {
  display: inline-block;
  margin-top: 36px;
  font-family: var(--font-display);
  font-size: clamp(20px, 2.6vw, 30px);
  color: var(--brass-light);
  text-decoration: none;
  border-bottom: 1px solid var(--line-dark);
  padding-bottom: 6px;
  transition: border-color 0.25s ease;
}
#contact .contact-mail:hover { border-color: var(--brass-light); }
.socials { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; margin-top: 44px; }
.soc {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  font-size: 11.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--stone);
  border: 1px solid rgba(198, 161, 91, 0.16);
  padding: 11px 18px;
  transition: color 0.25s ease, border-color 0.25s ease;
}
.soc:hover { color: var(--brass-light); border-color: var(--champagne); }

/* ---------- footer ---------- */
.footer {
  border-top: 1px solid var(--line-dark);
  padding: 34px 0;
  background: var(--ink);
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer svg { height: 24px; width: auto; }
.footer .foot-note { font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--taupe); text-align: right; }
.footer .foot-credit { display: block; margin-top: 6px; }
.footer .foot-credit a { color: var(--stone); text-decoration: none; border-bottom: 1px solid var(--line-dark); padding-bottom: 1px; transition: color 0.25s; }
.footer .foot-credit a:hover { color: var(--champagne); }

/* ---------- responsive ---------- */
@media (max-width: 1020px) {
  .player-grid { grid-template-columns: 1fr; }
  .playlist { max-height: 420px; }
}
@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-portrait { max-width: 460px; }
  .about-grid { grid-template-columns: 1fr; }
  .feature-card { grid-template-columns: 1fr; }
  .feature-card .fc-media { min-height: 300px; }  /* room for the role line above the bolt */
  /* caption wraps to three lines here, so keep the bolt tip above the divider */
  .fc-media .fc-bolt { inset: 15% 0 38% 0; height: 44%; }
  .nav-links { display: none; }
  .nav-toggle {
    display: block;
    background: none;
    border: 1px solid var(--line-dark);
    color: var(--champagne);
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 9px 16px;
    cursor: pointer;
  }
  .nav.open .nav-links {
    display: flex;
    position: absolute;
    top: 76px;
    left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(12, 10, 9, 0.97);
    border-bottom: 1px solid var(--line-dark);
    padding: 20px var(--pad-x) 28px;
    gap: 20px;
  }
  .partner-row { grid-template-columns: 1fr auto; }
  .partner-row .pr-desc { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .hero-caption { left: 8px; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .pl-item { grid-template-columns: 96px 1fr; }
  .stage-bar { flex-direction: column; align-items: flex-start; gap: 10px; }
}

/* focus visibility */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--brass-light);
  outline-offset: 3px;
}

/* ============================================================
   PARTNER WITH KRISTEN (partner.html / template-partnerships.php)
   Rate card + sponsorship tiers. Reuses the site's bands, the
   lower-third labels and the gold bolt; adds only the pieces a
   pricing page needs that the single-page site never had.
   ============================================================ */

/* ---------- page hero (shorter than the home hero: this page
     is a document, not an entrance) ---------- */
.page-hero {
  background: var(--ink);
  padding: clamp(140px, 17vw, 210px) 0 clamp(56px, 7vw, 96px);
  position: relative;
  overflow: hidden;
}
.page-hero .ph-bolt {
  position: absolute;
  right: -4%;
  top: 4%;
  width: clamp(190px, 30vw, 460px);
  opacity: 0.05;
  pointer-events: none;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(44px, 7.6vw, 104px);
  line-height: 0.96;
  text-transform: uppercase;
  max-width: 15ch;
}
.page-hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: transparent;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
}
.ph-lede {
  max-width: 62ch;
  margin-top: 28px;
  color: var(--stone);
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 1.75;
}
.ph-lede + .ph-lede { margin-top: 18px; }

/* audience strip: the numbers a brand scans for first */
.ph-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 38px;
  padding-top: 34px;
  border-top: 1px solid var(--line-dark);
}
.ph-facts span {
  font-size: 11.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 9px 16px;
  border: 1px solid var(--line-dark);
  color: var(--brass-light);
}
.ph-facts span.is-lead { background: var(--gold-grad); color: #241b0d; border-color: transparent; }

/* ---------- rate cards ---------- */
/* Separated cards, each with its own hairline, NOT a 1px-gap grid showing a
   background through: five cards in a four-column track left the fifth beside a
   large empty cell that read as a broken tile. Independent borders make an
   incomplete last row simply end. */
.rate-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(258px, 100%), 1fr));
  gap: clamp(14px, 1.6vw, 20px);
  margin-top: clamp(30px, 4vw, 46px);
  align-items: stretch;
}
.rate-card {
  background: var(--ivory);
  border: 1px solid var(--line-ivory);
  padding: clamp(24px, 2.6vw, 34px);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.rc-name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(21px, 2.1vw, 27px);
  line-height: 1.15;
  text-transform: uppercase;
}
.rc-price {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: #8a6a2f;
}
.rc-copy { color: var(--taupe); font-size: 15px; line-height: 1.7; }
.rc-note { color: var(--taupe); font-size: 13.5px; font-style: italic; }

/* a rate band sitting on jet instead of ivory */
.section:not(.on-ivory) .rate-card { background: var(--coal); border-color: var(--line-dark); }
.section:not(.on-ivory) .rc-price { color: var(--brass-light); }
.section:not(.on-ivory) .rc-copy,
.section:not(.on-ivory) .rc-note { color: var(--stone); }

/* ---------- a framed aside (custom campaigns, event sponsorship) ---------- */
.note-card {
  margin-top: clamp(26px, 3.4vw, 42px);
  border: 1px solid var(--line-ivory);
  border-left: 3px solid var(--champagne);
  padding: clamp(24px, 3vw, 36px);
  background: var(--ivory-2);
}
.section:not(.on-ivory) .note-card { border-color: var(--line-dark); border-left-color: var(--champagne); background: var(--coal); }
.nc-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(20px, 2vw, 26px);
  text-transform: uppercase;
  line-height: 1.15;
}
.nc-price {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: #8a6a2f;
  margin-top: 8px;
}
.section:not(.on-ivory) .nc-price { color: var(--brass-light); }
.nc-copy { color: var(--taupe); font-size: 15px; line-height: 1.7; margin-top: 12px; max-width: 70ch; }
.section:not(.on-ivory) .nc-copy { color: var(--stone); }

/* ---------- sponsorship tiers ---------- */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(290px, 100%), 1fr));
  gap: clamp(16px, 2vw, 24px);
  margin-top: clamp(34px, 4.4vw, 54px);
  align-items: start;
}
.tier-card {
  border: 1px solid var(--line-dark);
  background: var(--coal);
  padding: clamp(28px, 3.2vw, 40px);
  display: flex;
  flex-direction: column;
  height: 100%;
}
/* the middle tier is the one she wants brands to land on, so it
   carries the gold rim and a slight lift, the same signal the
   feature card uses on the home page */
.tier-card.is-featured {
  border-color: var(--champagne);
  background: var(--coal-2);
  position: relative;
}
.tier-card.is-featured::before {
  content: "Most popular";
  position: absolute;
  top: 0;
  left: clamp(28px, 3.2vw, 40px);
  transform: translateY(-50%);
  background: var(--gold-grad);
  color: #241b0d;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 6px 13px;
}
.t-name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(24px, 2.5vw, 32px);
  text-transform: uppercase;
  line-height: 1.1;
}
.t-price {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--brass-light);
  margin-top: 10px;
}
.t-lede { color: var(--stone); font-size: 15px; line-height: 1.7; margin-top: 16px; }
.t-list { list-style: none; margin-top: 22px; display: grid; gap: 11px; }
.t-list li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ivory);
}
.t-list .bolt-mark { width: 9px; flex: none; margin-top: 5px; }
.t-plus {
  margin-top: 22px;
  font-size: 11.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--champagne);
}
.t-note {
  margin-top: auto;
  padding-top: 24px;
  color: var(--taupe);
  font-size: 12.5px;
  letter-spacing: 0.06em;
}
.section:not(.on-ivory) .t-note { color: var(--stone); opacity: 0.8; }

/* ---------- additional usage (the fine print, set like fine print) ---------- */
.usage-list {
  list-style: none;
  margin-top: clamp(24px, 3vw, 34px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
  gap: 10px;
}
/* label over fee, not beside it: side by side, "Paid advertising / boosting"
   wrapped to three lines against the fee and read as a broken row */
.usage-list li {
  background: var(--ivory);
  border: 1px solid var(--line-ivory);
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 14.5px;
}
.usage-list .u-fee {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: #8a6a2f;
}

/* ---------- closing band ---------- */
.cta-band { text-align: center; }
.cta-band .section-head { max-width: none; margin: 0 auto; }
.cta-band .cta-copy {
  max-width: 60ch;
  margin: 22px auto 0;
  color: var(--stone);
  font-size: clamp(15px, 1.35vw, 17px);
  line-height: 1.75;
}
.cta-band .hero-ctas { justify-content: center; }

@media (max-width: 720px) {
  .ph-facts { gap: 8px; }
  .ph-facts span { font-size: 10.5px; padding: 8px 12px; }
}

/* current page in the nav (the partner page is the only non-home route today) */
.nav-links a.is-current { color: var(--brass-light); }
.nav-links a.is-current::after { transform: scaleX(1); }
