/* ============================================================
   WILCO360  ·  Williamson County, Texas
   "Clear thinking, real context, honest conversations."
   Business + politics podcast & publication — a Fidelis Publishing brand.
   ------------------------------------------------------------
   Aesthetic: bold + energetic · podcast-forward · navy & gold
   (matched to the Wilco360 logo) on a clean, light base, with
   dark-navy "studio" sections and broadcast motifs (ON AIR,
   equalizer waveforms, now-playing player).
   To re-theme the whole site, edit the :root tokens below.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,400..800;1,500..700&family=Hanken+Grotesk:ital,wght@0,400..800;1,400..600&display=swap');

:root {
  /* Navy — sampled from the logo */
  --navy:       #16294E;
  --navy-mid:   #1F3A66;
  --navy-deep:  #0E1C3A;
  --ink:        #16213E;
  --ink-soft:   #515A72;
  --ink-faint:  #8A91A6;

  /* Gold — marigold, sampled from the logo */
  --gold:        #E3A82C;
  --gold-bright: #F2B948;
  --gold-soft:   #F3D58C;
  --gold-deep:   #B98420;

  /* Clean light base */
  --bg:    #F6F7FB;   /* cool off-white */
  --bg-2:  #EBEEF7;   /* navy tint */
  --bg-3:  #FBF1DA;   /* gold tint */
  --card:  #FFFFFF;

  --line:        rgba(24, 44, 84, 0.12);
  --line-strong: rgba(24, 44, 84, 0.24);
  --line-gold:   rgba(227, 165, 43, 0.45);

  --font-display: "Archivo", "Arial Narrow", system-ui, sans-serif;
  --font-body:    "Hanken Grotesk", -apple-system, "Segoe UI", sans-serif;

  --maxw: 1200px;
  --pad: clamp(1.25rem, 5vw, 4rem);
  --radius: 6px;

  --shadow-soft: 0 1px 2px rgba(14,27,56,.06), 0 14px 34px -18px rgba(14,27,56,.34);
  --shadow-lift: 0 2px 8px rgba(14,27,56,.09), 0 30px 60px -28px rgba(14,27,56,.44);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  font-size: 1.0625rem;
  letter-spacing: .002em;
  overflow-x: hidden;
  background-image:
    radial-gradient(50rem 40rem at 86% -8%, rgba(227,165,43,.13), transparent 60%),
    radial-gradient(46rem 38rem at -6% 10%, rgba(24,44,84,.07), transparent 58%);
  background-attachment: fixed;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--navy);
}

.eyebrow {
  font-family: var(--font-body);
  font-size: .73rem;
  font-weight: 800;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: .7rem;
}
.eyebrow::before { content: ""; width: 1.9rem; height: 2px; background: var(--gold); display: inline-block; }
.eyebrow.center { justify-content: center; }
.eyebrow.center::before { display: none; }

.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
.section { padding-block: clamp(4rem, 9vw, 8rem); }
.lead { font-size: clamp(1.12rem, 1.5vw, 1.32rem); color: var(--ink-soft); line-height: 1.55; }

/* ============================================================
   "ON AIR" badge + waveform / equalizer motifs
   ============================================================ */
.onair {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-body); font-size: .68rem; font-weight: 800;
  letter-spacing: .26em; text-transform: uppercase; color: var(--gold-deep);
  border: 1px solid var(--line-gold); border-radius: 100px;
  padding: .42rem .9rem; background: rgba(227,165,43,.08);
}
.onair .dot {
  width: .55rem; height: .55rem; border-radius: 50%; background: var(--gold);
  box-shadow: 0 0 0 0 rgba(227,165,43,.6); animation: pulse 2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(227,165,43,.55); }
  70%  { box-shadow: 0 0 0 .5rem rgba(227,165,43,0); }
  100% { box-shadow: 0 0 0 0 rgba(227,165,43,0); }
}

/* animated equalizer bars */
.waveform { display: inline-flex; align-items: flex-end; gap: 4px; height: 2.4rem; }
.waveform span {
  width: 5px; border-radius: 3px; background: linear-gradient(180deg, var(--gold-bright), var(--gold-deep));
  animation: eq 1.1s ease-in-out infinite; transform-origin: bottom;
}
.waveform span:nth-child(1) { height: 40%; animation-delay: -.9s; }
.waveform span:nth-child(2) { height: 75%; animation-delay: -.5s; }
.waveform span:nth-child(3) { height: 100%; animation-delay: -.2s; }
.waveform span:nth-child(4) { height: 60%; animation-delay: -.7s; }
.waveform span:nth-child(5) { height: 90%; animation-delay: -.1s; }
.waveform span:nth-child(6) { height: 50%; animation-delay: -.4s; }
.waveform span:nth-child(7) { height: 80%; animation-delay: -.6s; }
@keyframes eq { 0%,100% { transform: scaleY(.35); } 50% { transform: scaleY(1); } }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--bg) 84%, transparent);
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  border-bottom: 1px solid transparent;
  transition: border-color .4s ease, box-shadow .4s ease;
}
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: 0 10px 30px -28px rgba(14,27,56,.7); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; height: 84px; }

/* logo: circular PNG mark + wordmark */
.brand { display: flex; align-items: center; gap: .7rem; }
.brand .mark { width: 44px; height: 44px; flex: none; }
.brand .word { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; letter-spacing: -0.02em; color: var(--navy); line-height: 1; text-transform: uppercase; }
.brand .word i { font-style: normal; color: var(--gold); }
.brand .word small { display: block; font-size: .5rem; letter-spacing: .42em; color: var(--ink-faint); font-weight: 800; margin-top: 3px; }

.nav { display: flex; align-items: center; gap: clamp(1.3rem, 3vw, 2.5rem); }
.nav a {
  font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-soft); position: relative; padding-block: .4rem; transition: color .25s ease;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 2px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
}
.nav a:hover { color: var(--navy); }
.nav a:hover::after, .nav a.active::after { transform: scaleX(1); }
.nav a.active { color: var(--navy); }

.nav-cta {
  font-size: .78rem !important; letter-spacing: .12em; text-transform: uppercase;
  background: var(--navy); color: #fff !important; padding: .64rem 1.2rem !important;
  border-radius: 100px; transition: background .3s ease, transform .25s ease, box-shadow .3s ease !important;
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--navy-mid); transform: translateY(-1px); box-shadow: var(--shadow-soft); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 26px; height: 2px; background: var(--navy); transition: transform .35s ease, opacity .25s ease; }
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-body); font-weight: 700; font-size: .92rem; letter-spacing: .02em;
  padding: .95rem 1.7rem; border-radius: 100px; border: 1.5px solid transparent; cursor: pointer;
  transition: transform .25s ease, background .3s ease, color .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.btn .arrow { transition: transform .3s ease; }
.btn:hover .arrow { transform: translateX(4px); }
.btn svg { width: 1.05rem; height: 1.05rem; }
.btn-primary { background: var(--navy); color: #fff; box-shadow: var(--shadow-soft); }
.btn-primary:hover { background: var(--navy-mid); transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.btn-gold { background: var(--gold); color: var(--navy-deep); box-shadow: var(--shadow-soft); }
.btn-gold:hover { background: var(--gold-bright); transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.btn-ghost { border-color: var(--line-strong); color: var(--navy); }
.btn-ghost:hover { border-color: var(--navy); transform: translateY(-2px); }
.btn-light { background: #fff; color: var(--navy); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-lift); }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding-top: clamp(3rem, 6vw, 5.5rem); padding-bottom: clamp(3rem, 6vw, 5.5rem); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.hero h1 { font-size: clamp(2.8rem, 6.6vw, 5.4rem); font-weight: 800; line-height: .96; letter-spacing: -0.035em; margin-top: 1.4rem; text-transform: uppercase; }
.hero h1 em { font-style: italic; color: var(--gold); font-weight: 700; text-transform: none; }
.hero .lead { margin-top: 1.5rem; max-width: 42ch; }
.hero-actions { margin-top: 2.2rem; display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-meta { margin-top: 2.2rem; display: flex; flex-wrap: wrap; align-items: center; gap: .7rem 1.4rem; font-size: .82rem; font-weight: 700; letter-spacing: .04em; color: var(--ink-soft); }
.hero-meta .sep { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }

/* hero "studio" panel — faux now-playing card */
.studio {
  position: relative; border-radius: 16px; padding: clamp(1.6rem,2.6vw,2.3rem);
  background: linear-gradient(160deg, var(--navy-mid), var(--navy-deep));
  color: #fff; box-shadow: var(--shadow-lift);
  border: 1px solid rgba(244,215,147,.16); overflow: hidden;
}
.studio::before {
  content: ""; position: absolute; top: -40%; right: -25%; width: 26rem; height: 26rem;
  background: radial-gradient(circle, rgba(227,165,43,.34), transparent 62%); pointer-events: none;
}
.studio > * { position: relative; z-index: 1; }
.studio .now { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.studio .show-art {
  width: 100%; aspect-ratio: 1; border-radius: 12px; margin-top: 1.3rem;
  background:
    radial-gradient(circle at 30% 25%, rgba(227,165,43,.42), transparent 55%),
    linear-gradient(150deg, var(--navy), var(--navy-deep));
  border: 1px solid rgba(244,215,147,.18);
  display: grid; place-items: center; position: relative; overflow: hidden;
}
.studio .show-art .mark { width: 42%; opacity: .98; }
.studio .show-art .tag { position: absolute; bottom: 1rem; left: 1rem; font-size: .62rem; letter-spacing: .28em; text-transform: uppercase; color: var(--gold-soft); font-weight: 800; }
.studio .track { margin-top: 1.3rem; }
.studio .track .t-title { font-family: var(--font-display); font-size: 1.12rem; font-weight: 700; }
.studio .track .t-sub { font-size: .82rem; color: rgba(255,255,255,.62); margin-top: .25rem; letter-spacing: .04em; }
.studio .bar { margin-top: 1rem; height: 5px; border-radius: 4px; background: rgba(255,255,255,.16); overflow: hidden; }
.studio .bar i { display: block; width: 34%; height: 100%; background: linear-gradient(90deg, var(--gold-bright), var(--gold)); }
.studio .controls { margin-top: 1.1rem; display: flex; align-items: center; gap: 1.1rem; color: rgba(255,255,255,.78); }
.studio .play {
  width: 3rem; height: 3rem; border-radius: 50%; background: var(--gold); color: var(--navy-deep);
  display: grid; place-items: center; flex: none; box-shadow: 0 10px 24px -10px rgba(227,165,43,.85);
}
.studio .play svg { width: 1.2rem; height: 1.2rem; margin-left: 2px; }
.studio .times { font-size: .76rem; letter-spacing: .08em; color: rgba(255,255,255,.55); margin-left: auto; }

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-head { max-width: 64ch; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(2rem, 4.6vw, 3.3rem); font-weight: 800; margin-top: 1rem; letter-spacing: -0.03em; }
.section-head h2 em { font-style: italic; color: var(--gold-deep); }
.section-head p { margin-top: 1.05rem; }

/* positioning strip */
.intro-strip { text-align: center; }
.intro-strip .big {
  font-family: var(--font-display); font-weight: 500; font-style: italic;
  font-size: clamp(1.5rem, 3.4vw, 2.4rem); line-height: 1.25; color: var(--navy);
  max-width: 30ch; margin: 1.6rem auto 0; letter-spacing: -0.02em;
}
.intro-strip .big b { font-style: normal; font-weight: 800; color: var(--gold-deep); }

/* ============================================================
   COVERAGE CARDS (what the show covers)
   ============================================================ */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.6rem, 2.5vw, 2.3rem); position: relative; overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.card::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: linear-gradient(90deg, var(--navy), var(--gold)); transform: scaleX(0); transform-origin: left; transition: transform .5s cubic-bezier(.2,.7,.2,1); }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); border-color: transparent; }
.card:hover::before { transform: scaleX(1); }
.card .ico { width: 2.7rem; height: 2.7rem; border-radius: 12px; display: grid; place-items: center; background: var(--bg-3); color: var(--gold-deep); }
.card .ico svg { width: 1.4rem; height: 1.4rem; }
.card h3 { font-size: 1.32rem; font-weight: 700; margin-top: 1.1rem; }
.card p { margin-top: .65rem; color: var(--ink-soft); font-size: .98rem; }

/* ============================================================
   EPISODE CARDS (coming-soon placeholders)
   ============================================================ */
.ep-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.ep-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.5rem; display: flex; flex-direction: column; gap: .2rem;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.ep-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); border-color: var(--line-gold); }
.ep-card .ep-top { display: flex; align-items: center; justify-content: space-between; }
.ep-num { font-family: var(--font-display); font-size: .82rem; font-weight: 800; color: var(--gold-deep); letter-spacing: .08em; text-transform: uppercase; }
.ep-len { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-faint); font-weight: 700; }
.ep-card h3 { font-size: 1.2rem; font-weight: 700; margin-top: .8rem; line-height: 1.2; letter-spacing: -0.02em; }
.ep-card p { margin-top: .55rem; color: var(--ink-soft); font-size: .92rem; line-height: 1.5; }
.ep-card .ep-foot { margin-top: auto; padding-top: 1.1rem; display: flex; align-items: center; gap: .65rem; }
.ep-card .mini-play { width: 2.3rem; height: 2.3rem; border-radius: 50%; background: var(--bg-3); color: var(--gold-deep); display: grid; place-items: center; flex: none; transition: background .25s ease, color .25s ease; }
.ep-card .mini-play svg { width: 1rem; height: 1rem; margin-left: 1px; }
.ep-card:hover .mini-play { background: var(--gold); color: var(--navy-deep); }
.ep-card .soon { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-faint); font-weight: 700; }

/* ============================================================
   SUBSCRIBE buttons (Apple / Spotify / YouTube)
   ============================================================ */
.subscribe { display: flex; flex-wrap: wrap; gap: .9rem; }
.sub-btn {
  display: inline-flex; align-items: center; gap: .7rem; padding: .8rem 1.4rem;
  border-radius: 100px; border: 1.5px solid var(--line-strong); background: var(--card);
  font-weight: 700; font-size: .9rem; color: var(--navy);
  transition: transform .25s ease, border-color .3s ease, box-shadow .3s ease;
}
.sub-btn svg { width: 1.4rem; height: 1.4rem; flex: none; }
.sub-btn:hover { transform: translateY(-2px); border-color: var(--gold); box-shadow: var(--shadow-soft); }
.sub-btn .lab { line-height: 1.1; text-align: left; }
.sub-btn .lab small { display: block; font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-faint); font-weight: 800; }
.sub-btn .lab b { font-size: .98rem; font-weight: 800; }

/* ============================================================
   PLAYER EMBED placeholder
   ============================================================ */
.embed-card {
  background: linear-gradient(160deg, var(--navy-mid), var(--navy-deep));
  color: #fff; border-radius: 14px; padding: clamp(1.8rem,3vw,2.6rem);
  border: 1px solid rgba(244,215,147,.16); position: relative; overflow: hidden;
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 1.1rem;
}
.embed-card::before { content: ""; position: absolute; inset: 0; background: radial-gradient(30rem 16rem at 50% -10%, rgba(227,165,43,.28), transparent 60%); pointer-events: none; }
.embed-card > * { position: relative; z-index: 1; }
.embed-card h3 { color: #fff; font-size: 1.5rem; font-weight: 700; }
.embed-card p { color: rgba(255,255,255,.72); max-width: 48ch; }

/* ============================================================
   BAND (full-bleed studio section)
   ============================================================ */
.band { background: linear-gradient(140deg, var(--navy), var(--navy-deep)); color: #fff; position: relative; overflow: hidden; }
.band::before { content: ""; position: absolute; top: -30%; right: -10%; width: 40rem; height: 40rem; background: radial-gradient(circle, rgba(227,165,43,.20), transparent 62%); pointer-events: none; }
.band::after { content: ""; position: absolute; bottom: -40%; left: -12%; width: 34rem; height: 34rem; background: radial-gradient(circle, rgba(244,183,61,.12), transparent 60%); pointer-events: none; }
.band .wrap { position: relative; z-index: 1; }
.band h2 { color: #fff; }
.band .quote { font-family: var(--font-display); font-style: italic; font-weight: 500; font-size: clamp(1.7rem, 4vw, 2.9rem); line-height: 1.18; max-width: 26ch; letter-spacing: -0.02em; }
.band .quote span { color: var(--gold-soft); font-style: normal; }
.band .lead { color: rgba(255,255,255,.78); }
.band .eyebrow { color: var(--gold); }
.band .eyebrow::before { background: var(--gold); }

/* ============================================================
   STATS
   ============================================================ */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.stat { text-align: center; padding: 1.5rem 1rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--card); }
.stat .num { font-family: var(--font-display); font-size: clamp(2.2rem, 4.4vw, 3.2rem); font-weight: 800; color: var(--navy); line-height: 1; letter-spacing: -0.03em; }
.stat .num span { color: var(--gold); }
.stat .lab { margin-top: .55rem; font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-faint); font-weight: 800; }

/* ============================================================
   PAGE HERO (interior)
   ============================================================ */
.page-hero { padding-top: clamp(3rem, 6vw, 5rem); padding-bottom: clamp(2rem, 4vw, 3.5rem); position: relative; }
.page-hero h1 { font-size: clamp(2.5rem, 6vw, 4.6rem); font-weight: 800; margin-top: 1.1rem; letter-spacing: -0.035em; text-transform: uppercase; }
.page-hero h1 em { font-style: italic; color: var(--gold); text-transform: none; }
.page-hero .lead { margin-top: 1.3rem; max-width: 56ch; }

/* ============================================================
   ABOUT prose + hosts
   ============================================================ */
.prose-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(2rem, 6vw, 5rem); align-items: start; }
.prose-grid .sticky-label { position: sticky; top: 116px; }
.prose p { margin-top: 1.2rem; color: var(--ink-soft); font-size: 1.07rem; }
.prose p:first-child { margin-top: 0; }
.prose .drop::first-letter { font-family: var(--font-display); font-size: 3.4rem; font-weight: 800; float: left; line-height: .8; padding: .3rem .5rem 0 0; color: var(--gold-deep); }

.hosts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.host-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.6rem,2.5vw,2.1rem); box-shadow: var(--shadow-soft); }
.host-card .h-head { display: flex; align-items: center; gap: 1.1rem; }
.host-photo { width: 4.6rem; height: 4.6rem; border-radius: 50%; flex: none; background: linear-gradient(150deg, var(--navy-mid), var(--gold-deep)); display: grid; place-items: center; color: #fff; font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; }
.host-card .h-name { font-family: var(--font-display); font-size: 1.3rem; font-weight: 800; letter-spacing: -0.02em; }
.host-card .h-role { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-deep); font-weight: 800; margin-top: .3rem; }
.host-card p { margin-top: 1.1rem; color: var(--ink-soft); font-size: .98rem; }

/* values 2x2 */
.values { display: grid; grid-template-columns: repeat(2, 1fr); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--card); }
.value { padding: clamp(1.8rem, 3vw, 2.6rem); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background .3s ease; }
.value:hover { background: var(--bg-3); }
.value:nth-child(2n) { border-right: 0; }
.value:nth-last-child(-n+2) { border-bottom: 0; }
.value .vk { font-family: var(--font-display); font-size: 1.8rem; color: var(--gold); font-weight: 800; }
.value h3 { font-size: 1.28rem; font-weight: 700; margin-top: .7rem; }
.value p { margin-top: .55rem; color: var(--ink-soft); font-size: .96rem; }

/* ============================================================
   ADVERTISE — sponsorship tiers
   ============================================================ */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; align-items: stretch; }
.tier {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.6rem, 2.5vw, 2.2rem); display: flex; flex-direction: column;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.tier:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); border-color: var(--line-gold); }
.tier.featured { border-color: var(--gold); box-shadow: var(--shadow-soft); }
.tier .ribbon { align-self: flex-start; margin-bottom: .9rem; font-size: .66rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 800; color: var(--navy-deep); background: var(--gold); padding: .32rem .75rem; border-radius: 100px; }
.tier .t-tag { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-deep); font-weight: 800; }
.tier h3 { font-size: 1.45rem; font-weight: 800; margin-top: .5rem; letter-spacing: -0.02em; }
.tier .t-desc { margin-top: .6rem; color: var(--ink-soft); font-size: .95rem; }
.tier .feature-list { margin-top: 1.2rem; }

.feature-list { display: grid; gap: .65rem; }
.feature-list li { list-style: none; display: flex; gap: .8rem; align-items: flex-start; font-size: .95rem; color: var(--ink-soft); }
.feature-list li::before { content: ""; width: .55rem; height: .55rem; margin-top: .5rem; background: var(--gold); border-radius: 50%; flex: none; }

/* ============================================================
   CONTACT / FORM
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 6vw, 4.5rem); align-items: start; }
.contact-info { display: grid; gap: 1.8rem; }
.info-block .k { font-size: .74rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-deep); font-weight: 800; }
.info-block .v { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; margin-top: .4rem; line-height: 1.35; color: var(--navy); letter-spacing: -0.02em; }
.info-block .v a { transition: color .25s ease; }
.info-block .v a:hover { color: var(--gold-deep); }
.info-block small { display: block; color: var(--ink-soft); font-family: var(--font-body); font-size: .92rem; margin-top: .3rem; font-weight: 400; }

.form-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.8rem, 3vw, 2.6rem); box-shadow: var(--shadow-soft); }
.field { margin-bottom: 1.25rem; }
.field label { display: block; font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 800; color: var(--ink-soft); margin-bottom: .5rem; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  background: var(--bg); border: 1px solid var(--line-strong); border-radius: var(--radius);
  padding: .85rem 1rem; transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.field textarea { resize: vertical; min-height: 140px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); background: #fff; box-shadow: 0 0 0 3px rgba(227,165,43,.18); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-note { font-size: .85rem; color: var(--ink-faint); margin-top: .4rem; }
.hp { position: absolute; left: -9999px; }

/* ============================================================
   CTA
   ============================================================ */
.cta { text-align: center; background: radial-gradient(ellipse at 50% 0%, rgba(227,165,43,.14), transparent 60%), var(--bg-2); border-block: 1px solid var(--line); }
.cta h2 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 800; max-width: 22ch; margin-inline: auto; letter-spacing: -0.03em; text-transform: uppercase; }
.cta h2 em { font-style: italic; color: var(--gold-deep); text-transform: none; }
.cta p { margin-top: 1rem; max-width: 52ch; margin-inline: auto; }
.cta .hero-actions { justify-content: center; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: linear-gradient(180deg, var(--navy), var(--navy-deep)); color: #fff; padding-top: clamp(3.5rem, 6vw, 5rem); }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 2.2rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.14); }
.footer-brand .brand .word { color: #fff; }
.footer-brand p { color: rgba(255,255,255,.6); margin-top: 1.1rem; max-width: 34ch; font-size: .95rem; }
.footer-col h4 { font-family: var(--font-body); font-size: .74rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-soft); font-weight: 800; margin-bottom: 1.1rem; }
.footer-col a, .footer-col p { display: block; color: rgba(255,255,255,.7); font-size: .95rem; margin-bottom: .65rem; transition: color .25s ease; line-height: 1.45; }
.footer-col a:hover { color: var(--gold-soft); }
.footer-parent { font-size: .9rem; color: rgba(255,255,255,.7); }
.footer-parent b { color: var(--gold-soft); font-weight: 700; }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center; padding-block: 1.7rem; font-size: .82rem; color: rgba(255,255,255,.5); }

/* ============================================================
   PUBLICATION feature + faux cover (home / advertise)
   ============================================================ */
.mag { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.mag-copy h2 { font-size: clamp(2rem, 4.6vw, 3.3rem); font-weight: 800; margin-top: 1rem; letter-spacing: -0.03em; }
.mag-copy h2 em { font-style: italic; color: var(--gold-deep); }
.mag-copy p { margin-top: 1.1rem; color: var(--ink-soft); }
.mag-copy .feature-list { margin-top: 1.5rem; }
.mag-copy .hero-actions { margin-top: 2rem; }

/* faux publication cover */
.mag-cover {
  position: relative; aspect-ratio: 3 / 4; border-radius: 10px; overflow: hidden;
  background: linear-gradient(155deg, var(--navy-mid), var(--navy-deep));
  border: 1px solid rgba(244,215,147,.18); box-shadow: var(--shadow-lift);
  color: #fff; padding: clamp(1.4rem, 2.6vw, 2.1rem);
  display: flex; flex-direction: column; max-width: 380px; width: 100%; margin-inline: auto;
}
.mag-cover::before { content: ""; position: absolute; top: -30%; right: -25%; width: 22rem; height: 22rem; background: radial-gradient(circle, rgba(227,165,43,.34), transparent 62%); pointer-events: none; }
.mag-cover > * { position: relative; z-index: 1; }
.mag-cover .mc-top { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.mag-cover .mc-word { font-family: var(--font-display); font-weight: 800; font-size: 1.55rem; text-transform: uppercase; letter-spacing: -0.02em; line-height: 1; }
.mag-cover .mc-word i { font-style: normal; color: var(--gold); }
.mag-cover .mc-issue { font-size: .58rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-soft); font-weight: 800; }
.mag-cover .mc-kicker { margin-top: .35rem; font-size: .56rem; letter-spacing: .3em; text-transform: uppercase; color: rgba(255,255,255,.6); font-weight: 800; }
.mag-cover .mc-head { margin-top: auto; font-family: var(--font-display); font-weight: 800; font-size: clamp(1.5rem, 3.2vw, 2.2rem); line-height: 1.02; letter-spacing: -0.02em; text-transform: uppercase; }
.mag-cover .mc-head em { font-style: italic; color: var(--gold); text-transform: none; }
.mag-cover .mc-sub { margin-top: .7rem; font-size: .82rem; color: rgba(255,255,255,.7); }
.mag-cover .mc-foot { margin-top: 1.1rem; padding-top: .9rem; border-top: 1px solid rgba(244,215,147,.22); display: flex; align-items: center; justify-content: space-between; font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-soft); font-weight: 800; }

/* ============================================================
   TESTIMONIALS (community leaders — the publication's record)
   ============================================================ */
.quotes { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.quote-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.6rem, 2.5vw, 2.1rem); box-shadow: var(--shadow-soft);
  display: flex; flex-direction: column;
}
.quote-card .stars { color: var(--gold); letter-spacing: .2em; font-size: .85rem; }
.quote-card blockquote { margin-top: 1rem; font-size: 1.04rem; color: var(--ink); line-height: 1.55; font-style: italic; }
.quote-card .cite { margin-top: auto; padding-top: 1.2rem; }
.quote-card .cite .who { font-family: var(--font-display); font-weight: 800; color: var(--navy); letter-spacing: -0.01em; }
.quote-card .cite .role { font-size: .8rem; color: var(--ink-soft); margin-top: .2rem; }

/* ============================================================
   REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .07s; }
.reveal[data-d="2"] { transition-delay: .14s; }
.reveal[data-d="3"] { transition-delay: .21s; }
.reveal[data-d="4"] { transition-delay: .28s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .waveform span, .onair .dot { animation: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .studio { order: -1; max-width: 420px; margin-inline: auto; width: 100%; }
  .grid-3, .ep-grid, .tiers, .hosts { grid-template-columns: repeat(2, 1fr); }
  .tier.featured { grid-column: span 2; }
  .mag { grid-template-columns: 1fr; }
  .mag-cover { order: -1; }
  .prose-grid { grid-template-columns: 1fr; }
  .prose-grid .sticky-label { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .nav {
    position: fixed; inset: 84px 0 auto 0; flex-direction: column; align-items: stretch; gap: 0;
    background: var(--bg); border-bottom: 1px solid var(--line); padding: 1rem var(--pad) 1.8rem;
    transform: translateY(-130%); transition: transform .45s cubic-bezier(.2,.7,.2,1); box-shadow: var(--shadow-lift);
  }
  .nav-open .nav { transform: translateY(0); }
  .nav a { padding: .9rem 0; border-bottom: 1px solid var(--line); letter-spacing: .08em; font-size: .95rem; }
  .nav a::after { display: none; }
  .nav-cta { text-align: center; margin-top: 1rem; }
  .nav-toggle { display: flex; }
  .grid-3, .ep-grid, .tiers, .hosts, .quotes { grid-template-columns: 1fr; }
  .tier.featured { grid-column: auto; }
  .values { grid-template-columns: 1fr; }
  .value { border-right: 0 !important; }
  .value:nth-last-child(2) { border-bottom: 1px solid var(--line); }
  .field-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
}
