:root {
  --ink: #06131f;
  --navy: #071a2b;
  --navy-2: #0b2e50;
  --blue: #0d4d82;
  --blue-bright: #1769a8;
  --gold: #d59a30;
  --gold-bright: #f2bd58;
  --red: #aa3828;
  --ivory: #f4ecd9;
  --paper: #fffaf0;
  --muted: #b9c3ca;
  --line: rgba(255,255,255,.12);
  --shadow: 0 26px 70px rgba(0,0,0,.32);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--ivory);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.section-pad { padding: 110px 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 1000; left: 16px; top: 12px; transform: translateY(-150%); background: var(--gold-bright); color: var(--ink); padding: 10px 16px; border-radius: 8px; font-weight: 800; text-decoration: none; }
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(6,19,31,.78);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(18px);
}
.nav-wrap { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { width: 154px; height: 58px; display: flex; align-items: center; }
.brand img { width: 100%; filter: drop-shadow(0 6px 12px rgba(0,0,0,.35)); }
.primary-nav { display: flex; align-items: center; gap: 26px; }
.primary-nav a { color: #d8e2e8; font-size: .9rem; font-weight: 700; text-decoration: none; letter-spacing: .02em; }
.primary-nav a:hover, .primary-nav a:focus-visible { color: var(--gold-bright); }
.primary-nav .nav-cta { border: 1px solid rgba(242,189,88,.65); padding: 10px 17px; border-radius: 999px; color: var(--gold-bright); }
.menu-toggle { display: none; background: transparent; border: 0; padding: 10px; }
.menu-toggle span:not(.sr-only) { display: block; width: 26px; height: 2px; margin: 5px 0; background: var(--ivory); }

.hero {
  position: relative;
  min-height: 850px;
  padding-top: 180px;
  display: grid;
  align-items: center;
  background:
    radial-gradient(circle at 72% 32%, rgba(23,105,168,.34), transparent 30%),
    radial-gradient(circle at 18% 68%, rgba(213,154,48,.12), transparent 28%),
    linear-gradient(135deg, #06131f 0%, #071a2b 46%, #0a2743 100%);
  overflow: hidden;
}
.hero::before { content: ""; position: absolute; inset: 0; opacity: .24; background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px); background-size: 42px 42px; mask-image: linear-gradient(to bottom, black, transparent 84%); }
.road-lines { position: absolute; width: 800px; height: 880px; left: 55%; top: 32%; transform: perspective(700px) rotateX(66deg) rotateZ(-5deg); border-left: 4px solid rgba(242,189,88,.14); border-right: 4px solid rgba(242,189,88,.14); }
.road-lines::after { content: ""; position: absolute; top: 0; bottom: 0; left: 50%; width: 4px; transform: translateX(-50%); background: repeating-linear-gradient(to bottom, rgba(242,189,88,.35) 0 28px, transparent 28px 55px); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.03fr .97fr; gap: 70px; align-items: center; }
.eyebrow, .kicker { text-transform: uppercase; color: var(--gold-bright); font-family: "Barlow Condensed", sans-serif; letter-spacing: .18em; font-size: .86rem; font-weight: 800; }
.eyebrow { display: flex; gap: 12px; align-items: center; }
.eyebrow span { width: 34px; height: 2px; background: var(--gold-bright); }
.hero h1, .section-heading h2, .follow h2 { margin: 20px 0 26px; font-family: "Barlow Condensed", sans-serif; text-transform: uppercase; font-weight: 800; line-height: .9; letter-spacing: -.035em; }
.hero h1 { font-size: clamp(4.2rem, 8vw, 7.8rem); }
.hero h1 em { color: var(--gold-bright); font-family: "Libre Baskerville", serif; font-size: .5em; font-weight: 400; text-transform: none; letter-spacing: -.03em; }
.hero-positioning { max-width: 690px; color: #fff; font-size: clamp(1.22rem, 2vw, 1.55rem); font-weight: 700; }
.hero-intro { max-width: 680px; color: #bfccd4; font-size: 1.04rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 36px 0 28px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 24px; border-radius: 999px; text-decoration: none; font-weight: 800; font-size: .95rem; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: #07131d; background: linear-gradient(135deg, var(--gold-bright), var(--gold)); box-shadow: 0 15px 32px rgba(213,154,48,.24); }
.button-secondary { border: 1px solid rgba(255,255,255,.22); background: rgba(255,255,255,.055); }
.status-line { display: flex; align-items: center; gap: 10px; color: #9eafb9; font-size: .84rem; }
.status-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--gold-bright); box-shadow: 0 0 0 6px rgba(242,189,88,.09); }
.status-line strong { color: #f6ead1; }
.hero-art { position: relative; min-height: 500px; display: grid; place-items: center; }
.hero-art img { position: relative; z-index: 2; width: min(720px, 110%); filter: drop-shadow(0 34px 38px rgba(0,0,0,.55)); animation: float 7s ease-in-out infinite; }
.logo-halo { position: absolute; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(213,154,48,.18), rgba(23,105,168,.09) 42%, transparent 68%); filter: blur(10px); }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

.brand-statement { padding: 42px 0; background: linear-gradient(90deg, #9d2f24, #b04a2f 50%, #8e2a21); border-block: 1px solid rgba(255,255,255,.1); }
.statement-grid { display: grid; grid-template-columns: .55fr 2fr 1fr; align-items: center; gap: 38px; }
.statement-label { font-family: "Barlow Condensed", sans-serif; font-size: .82rem; text-transform: uppercase; letter-spacing: .2em; font-weight: 800; color: #ffe1b1; }
.statement-grid blockquote { margin: 0; font-family: "Libre Baskerville", serif; font-size: clamp(1.25rem, 2.15vw, 2rem); line-height: 1.4; }
.statement-grid > p:last-child { color: #f5d9d3; font-size: .94rem; }

.shows { background: #f4eee2; color: var(--ink); }
.section-heading { display: grid; grid-template-columns: 1.45fr .65fr; align-items: end; gap: 50px; margin-bottom: 56px; }
.section-heading.compact { grid-template-columns: 1.2fr .8fr; }
.section-heading h2 { color: inherit; font-size: clamp(3rem, 5vw, 5.5rem); }
.section-heading > p { color: #50616c; margin: 0 0 16px; }
.show-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.show-card { position: relative; min-height: 520px; border-radius: var(--radius); overflow: hidden; padding: 40px; box-shadow: 0 24px 60px rgba(12,27,39,.15); display: flex; flex-direction: column; justify-content: space-between; }
.card-number { position: absolute; top: 24px; right: 28px; font-family: "Barlow Condensed"; font-weight: 800; font-size: 3rem; opacity: .18; }
.show-copy { position: relative; z-index: 3; max-width: 450px; }
.card-kicker { font-family: "Barlow Condensed"; text-transform: uppercase; letter-spacing: .16em; font-size: .82rem; font-weight: 800; }
.show-copy h3 { margin: 10px 0 18px; font-family: "Barlow Condensed"; text-transform: uppercase; font-size: clamp(2.25rem, 4vw, 3.8rem); line-height: .95; }
.show-copy p { max-width: 470px; }
.show-copy a { display: inline-flex; gap: 10px; margin-top: 14px; font-weight: 800; text-decoration: none; border-bottom: 2px solid currentColor; }
.video-card { color: white; background: linear-gradient(145deg, #071a2b, #0d4d82); }
.video-card::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 76% 80%, rgba(242,189,88,.2), transparent 24%); }
.video-visual { position: absolute; right: -70px; bottom: -105px; width: 380px; height: 300px; border: 2px solid rgba(255,255,255,.17); transform: rotate(-8deg); display: grid; place-items: center; }
.play-button { width: 86px; height: 86px; border-radius: 50%; background: var(--gold-bright); color: var(--ink); display: grid; place-items: center; font-size: 1.8rem; padding-left: 6px; box-shadow: 0 18px 45px rgba(0,0,0,.3); }
.frame-line { position: absolute; inset: 22px; border: 1px solid rgba(255,255,255,.14); }
.podcast-card { color: var(--ink); background: linear-gradient(150deg, #fffaf0, #e8d5af); }
.podcast-visual { position: absolute; bottom: -118px; right: -42px; width: 360px; opacity: .88; filter: drop-shadow(0 20px 20px rgba(0,0,0,.22)); transform: rotate(3deg); }
.development-tag { display: inline-flex; margin-top: 16px; padding: 8px 12px; background: rgba(7,26,43,.09); color: var(--navy-2); border-radius: 999px; font-size: .8rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }

.topics { background: linear-gradient(145deg, #071a2b, #06131f); }
.topics .section-heading > p { color: #9eafb9; }
.topic-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.topic-card { min-height: 265px; padding: 30px; border: 1px solid rgba(255,255,255,.1); border-radius: 20px; background: linear-gradient(145deg, rgba(255,255,255,.05), rgba(255,255,255,.018)); transition: transform .25s ease, border-color .25s ease, background .25s ease; }
.topic-card:hover { transform: translateY(-5px); border-color: rgba(242,189,88,.42); background: linear-gradient(145deg, rgba(13,77,130,.23), rgba(255,255,255,.025)); }
.topic-card span { display: block; margin-bottom: 40px; color: var(--gold-bright); font-family: "Barlow Condensed"; font-size: 1.1rem; }
.topic-card h3 { margin: 0 0 12px; font-family: "Barlow Condensed"; font-size: 1.65rem; text-transform: uppercase; }
.topic-card p { color: #aab8c1; font-size: .93rem; }

.hosts { background: #e9e1d2; color: var(--ink); }
.hosts .section-heading > p { color: #52626c; }
.host-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.host-card { display: grid; grid-template-columns: 46% 54%; min-height: 430px; overflow: hidden; border-radius: var(--radius); background: #fffaf0; box-shadow: 0 24px 58px rgba(7,26,43,.13); }
.host-photo { position: relative; min-height: 430px; overflow: hidden; background: #17324a; }
.host-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(5,18,30,.48), transparent 56%); }
.host-photo img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.88) contrast(1.04); }
.daryl-photo img { object-position: 50% 50%; }
.nicole-photo img { object-position: 64% 50%; transform: scale(1.16); }
.photo-accent { position: absolute; z-index: 2; left: 0; bottom: 0; width: 100%; height: 7px; background: linear-gradient(90deg, var(--gold-bright), var(--red)); }
.host-copy { padding: 42px 36px; display: flex; flex-direction: column; justify-content: center; }
.host-role { color: var(--red); text-transform: uppercase; font-family: "Barlow Condensed"; letter-spacing: .12em; font-size: .8rem; font-weight: 800; }
.host-copy h3 { margin: 0 0 18px; font-family: "Barlow Condensed"; text-transform: uppercase; font-size: 4rem; line-height: 1; }
.host-copy p:last-child { color: #44545d; }

.follow { position: relative; background: linear-gradient(135deg, #0d4d82, #071a2b 64%); overflow: hidden; }
.follow::after { content: ""; position: absolute; width: 620px; height: 620px; right: -220px; top: -220px; border-radius: 50%; border: 1px solid rgba(242,189,88,.2); box-shadow: 0 0 0 60px rgba(242,189,88,.02), 0 0 0 120px rgba(242,189,88,.02); }
.follow-panel { position: relative; z-index: 2; display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; align-items: center; }
.follow h2 { font-size: clamp(3rem, 5vw, 5.5rem); }
.follow-copy > p:not(.kicker) { color: #c4d0d7; max-width: 520px; }
.email-link { display: inline-block; margin-top: 18px; color: var(--gold-bright); font-weight: 800; text-decoration: none; border-bottom: 1px solid rgba(242,189,88,.5); }
.social-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.social-grid a { display: grid; grid-template-columns: 44px 1fr; grid-template-rows: auto auto; gap: 0 14px; align-items: center; padding: 16px; border: 1px solid rgba(255,255,255,.12); border-radius: 15px; background: rgba(255,255,255,.06); text-decoration: none; transition: background .2s ease, transform .2s ease, border-color .2s ease; }
.social-grid a:hover { transform: translateY(-3px); background: rgba(255,255,255,.1); border-color: rgba(242,189,88,.5); }
.social-grid span { grid-row: 1 / 3; width: 42px; height: 42px; border-radius: 10px; display: grid; place-items: center; background: var(--gold-bright); color: var(--ink); font-family: "Barlow Condensed"; font-weight: 800; font-size: 1rem; }
.social-grid strong { font-size: .94rem; }
.social-grid small { color: #9eb1bc; font-size: .75rem; }

.site-footer { padding: 34px 0; background: #030b12; border-top: 1px solid rgba(255,255,255,.08); }
.footer-grid { display: flex; justify-content: space-between; align-items: center; gap: 30px; color: #889aa6; font-size: .82rem; }
.footer-grid > div { display: flex; align-items: center; gap: 16px; }
.footer-grid img { width: 104px; }
.footer-grid p { margin: 0; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 980px) {
  .hero { min-height: auto; padding-top: 145px; }
  .hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero-copy { max-width: 760px; }
  .hero-art { min-height: 420px; }
  .hero-art img { width: min(660px, 90vw); }
  .statement-grid { grid-template-columns: 1fr; gap: 10px; }
  .statement-grid blockquote { max-width: 840px; }
  .section-heading, .section-heading.compact { grid-template-columns: 1fr; gap: 10px; }
  .show-grid, .host-grid { grid-template-columns: 1fr; }
  .topic-grid { grid-template-columns: 1fr 1fr; }
  .follow-panel { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 28px, 1180px); }
  .section-pad { padding: 78px 0; }
  .nav-wrap { min-height: 72px; }
  .brand { width: 126px; }
  .menu-toggle { display: block; position: relative; z-index: 101; }
  .primary-nav { position: fixed; inset: 72px 0 auto; padding: 24px 20px 30px; background: rgba(6,19,31,.98); border-bottom: 1px solid rgba(255,255,255,.1); display: grid; gap: 16px; transform: translateY(-130%); transition: transform .25s ease; }
  .primary-nav.open { transform: translateY(0); }
  .primary-nav a { font-size: 1rem; }
  .primary-nav .nav-cta { text-align: center; }
  .hero { padding-top: 128px; }
  .hero h1 { font-size: clamp(3.65rem, 20vw, 5.4rem); }
  .hero-art { min-height: 300px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }
  .status-line { align-items: flex-start; flex-wrap: wrap; }
  .show-card { min-height: 560px; padding: 30px; }
  .podcast-visual { width: 300px; bottom: -88px; }
  .topic-grid { grid-template-columns: 1fr; }
  .host-card { grid-template-columns: 1fr; }
  .host-photo { min-height: 360px; }
  .nicole-photo img { object-position: 60% 46%; transform: scale(1.08); }
  .social-grid { grid-template-columns: 1fr; }
  .footer-grid { flex-direction: column; align-items: flex-start; }
}
