/* ============================================
CITED AUTHORITIES - Georgetown Palette
Visual Redesign
============================================ */

:root {
--navy: #041E42;
--navy-deep: #031633;
--navy-muted: rgba(4, 30, 66, 0.85);
--white: #FFFFFF;
--light-blue: #6CACE4;
--light-blue-hover: #5A9DD1;
--light-blue-dim: rgba(108, 172, 228, 0.15);
--gray: rgba(255,255,255,0.5);
--cool-gray: rgba(255,255,255,0.78);
--warm-gray: #D6D2C4;
--off-white: #F5F5F0;
--shadow-soft: rgba(4, 30, 66, 0.06);
--shadow-medium: rgba(4, 30, 66, 0.12);

--font-heading: 'Libre Caslon Text', 'Georgia', 'Times New Roman', serif;
--font-body: 'Georgia', 'Times New Roman', serif;

--tracking-wide: 0.25em;
--tracking-medium: 0.15em;
--max-width: 720px;
--max-width-wide: 1040px;
}

/* ---- RESET & BASE ---- */

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

html {
scroll-behavior: smooth;
-webkit-text-size-adjust: 100%;
}

::selection {
background: rgba(255, 255, 255, 0.2);
color: var(--navy);
}

body {
font-family: var(--font-body);
color: #FFFFFF;
background: #020D1A;
line-height: 1.8;
font-size: 20px;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-rendering: optimizeLegibility;
}

img {
max-width: 100%;
height: auto;
display: block;
}

a {
color: var(--light-blue);
text-decoration: none;
transition: color 0.3s ease;
}

a:hover {
color: var(--white);
}

::selection {
background: var(--light-blue);
color: var(--navy);
}

/* ---- SHARED SECTION STYLES ---- */

.section-label {
font-family: var(--font-body);
font-size: 11px;
font-weight: normal;
letter-spacing: 0.3em;
text-transform: uppercase;
margin-bottom: 3.5rem;
}

.section-label::after {
content: '';
display: block;
width: 40px;
height: 1px;
margin-top: 1.4rem;
}

.section-inner {
max-width: var(--max-width);
margin: 0 auto;
padding: 0 1.5rem;
}

.section-inner--wide {
max-width: var(--max-width-wide);
margin: 0 auto;
padding: 0 1.5rem;
}

hr.divider {
border: none;
height: 1px;
background: var(--cool-gray);
max-width: 80px;
margin: 0 auto;
}

/* ---- SCROLL REVEAL ---- */

.reveal {
opacity: 0;
transform: translateY(20px);
transition: opacity 1s cubic-bezier(0.25, 0.1, 0.25, 1), transform 1s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.reveal.revealed {
opacity: 1;
transform: translateY(0);
}

.reveal-label {
opacity: 0;
transform: translateY(20px);
transition: opacity 0.8s cubic-bezier(0.25, 0.1, 0.25, 1), transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.reveal-label.revealed {
opacity: 1;
transform: translateY(0);
}

/* ---- NAVIGATION ---- */

nav {
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 100;
background: var(--navy);
border-bottom: 1px solid transparent;
transition: background 0.5s cubic-bezier(0.25, 0.1, 0.25, 1), border-color 0.5s ease, box-shadow 0.5s ease;
}

nav.nav-scrolled {
background: rgba(4, 30, 66, 0.95);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
border-bottom-color: rgba(255, 255, 255, 0.08);
box-shadow: 0 1px 20px rgba(0, 0, 0, 0.25);
}

nav .nav-inner {
max-width: var(--max-width-wide);
margin: 0 auto;
padding: 0 2rem;
display: flex;
align-items: center;
justify-content: space-between;
height: 72px;
}

.nav-wordmark-link {
display: flex;
align-items: center;
flex-shrink: 0;
line-height: 0;
}

.nav-wordmark-link:hover {
opacity: 0.85;
}

.nav-wordmark {
display: block;
height: 18px;
width: auto;
margin: 0;
padding: 0;
}

.nav-links {
display: flex;
gap: 2rem;
list-style: none;
}

.nav-links a {
font-family: var(--font-body);
font-size: 12px;
letter-spacing: var(--tracking-wide);
text-transform: uppercase;
color: rgba(255, 255, 255, 0.8);
transition: color 0.3s ease;
position: relative;
}

.nav-links a::after {
content: '';
position: absolute;
bottom: -4px;
left: 0;
width: 100%;
height: 1px;
background: var(--light-blue);
transform: scaleX(0);
transform-origin: left;
transition: transform 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.nav-links a:hover {
color: var(--white);
}

.nav-links a:hover::after {
transform: scaleX(1);
}

/* ---- HERO ---- */

@keyframes sacredPulse {
0%, 100% { opacity: 1; }
50% { opacity: 0.7; }
}



.hero {
position: relative;
background: transparent;
padding: 10rem 1.5rem 7rem;
text-align: center;
overflow: hidden;
min-height: 100vh;
min-height: 100svh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}

/* Subtle inner atmosphere for hero */
.hero::before {
content: '';
position: absolute;
inset: 0;
background: transparent;
pointer-events: none;
z-index: 2;
}

.hero-stars {
position: absolute;
inset: 0;
z-index: 1;
pointer-events: none;
}

.hero-light-shaft {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 70%;
max-width: 500px;
aspect-ratio: 1;
background: none;
border-radius: 50%;
pointer-events: none;
z-index: 1;
}

/* Vignette removed — hero matches page marble background seamlessly */
.hero::after {
content: '';
position: absolute;
inset: 0;
background: transparent;
pointer-events: none;
z-index: 2;
}

.hero-content {
position: relative;
z-index: 3;
text-align: center;
width: 100%;
max-width: 700px;
}

.hero-content::before {
content: none;
}

.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;
}

.hero-eyebrow {
font-family: var(--font-body);
font-size: 11px;
letter-spacing: 0.35em;
text-transform: uppercase;
color: rgba(108, 172, 228, 0.7);
margin-bottom: 2.5rem;
opacity: 0;
animation: fadeUp 1s ease 0.3s both;
}

.hero-logo-frame {
position: relative;
display: inline-block;
padding: 3rem 4rem;
margin-bottom: 2rem;
background: #031836;
border: none;
box-shadow: 0 0 60px rgba(108, 172, 228, 0.06), 0 0 120px rgba(108, 172, 228, 0.03);
}

.hero-logo-frame::before,
.hero-logo-frame::after {
content: '';
display: block;
width: 70%;
max-width: 340px;
height: 1px;
margin: 0 auto;
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
box-shadow: 0 0 12px rgba(255, 255, 255, 0.05);
}

.hero-logo-frame::before {
margin-bottom: 2.25rem;
}

.hero-logo-frame::after {
margin-top: 2.25rem;
}

.hero-logo {
max-width: 550px;
width: 90%;
margin: 0 auto;
opacity: 0;
animation: fadeUp 1.2s ease 0.5s both;
overflow: visible;
}

.hero-logo-text {
display: flex;
flex-direction: column;
align-items: center;
gap: 0;
text-align: center;
}

.hero-logo-name {
font-family: var(--font-heading);
font-size: clamp(1.1rem, 4vw, 2.6rem);
font-weight: 400;
letter-spacing: 0.18em;
text-transform: uppercase;
color: #FFFFFF;
white-space: nowrap;
overflow: visible;
}

.hero-logo-presents {
font-family: var(--font-heading);
font-style: italic;
font-size: clamp(0.85rem, 1.8vw, 1.05rem);
color: var(--light-blue);
margin: 0.6rem 0;
letter-spacing: 0.08em;
position: relative;
display: flex;
align-items: center;
gap: 1rem;
}

.hero-logo-presents::before,
.hero-logo-presents::after {
content: '';
display: block;
width: 50px;
height: 1px;
background: var(--light-blue);
}

.hero-logo-title {
font-family: var(--font-heading);
font-size: clamp(1.6rem, 5.5vw, 3.6rem);
font-weight: 400;
letter-spacing: 0.03em;
line-height: 1.1;
white-space: nowrap;
}

.hero-logo-title .white {
color: #FFFFFF;
}

.hero-logo-title .blue {
color: var(--light-blue);
font-style: italic;
display: inline-block;
transform: skewX(3deg);
}

.hero-tagline {
font-family: var(--font-heading);
font-style: italic;
font-size: clamp(1.15rem, 2.5vw, 1.35rem);
color: rgba(108, 172, 228, 0.85);
max-width: 520px;
margin: 0 auto 2.75rem;
line-height: 1.7;
opacity: 0;
animation: fadeUp 1s ease 0.8s both;
text-shadow: 0 0 30px rgba(108, 172, 228, 0.12);
letter-spacing: 0.02em;
}

.btn-outline {
display: inline-flex;
align-items: center;
gap: 0.5rem;
font-family: var(--font-body);
font-size: 11px;
letter-spacing: 0.2em;
text-transform: uppercase;
color: rgba(255, 255, 255, 0.8);
border: 1px solid rgba(255, 255, 255, 0.25);
padding: 0.85rem 1.75rem;
transition: background 0.4s ease, color 0.4s ease, border-color 0.4s ease;
}

.btn-outline:hover {
background: rgba(255, 255, 255, 0.04);
color: var(--white);
border-color: rgba(255, 255, 255, 0.5);
}


/* Original ornament hidden — overridden below in enhancements */
/* ---- SECTION DIVIDERS ---- */

.about,
.host,
.clips,
.guests,
.subscribe {
border-top: none;
position: relative;
}

.about::after {
content: none;
}

/* ---- ABOUT / THE SHOW ---- */

.about {
background: transparent;
padding: 4rem 1.5rem;
position: relative;
overflow: hidden;
}

.about::before {
content: '';
position: absolute;
top: 0;
left: 50%;
transform: translateX(-50%);
width: 100%;
height: 100%;
background:
radial-gradient(ellipse 50% 60% at 50% 0%, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
background-size: 100% 100%;
pointer-events: none;
}

.about .section-inner {
position: relative;
z-index: 1;
}

.about .section-label {
color: #FFFFFF;
}

.about .section-label::after {
background: rgba(255, 255, 255, 0.2);
}

.about-body {
font-family: var(--font-body);
font-size: 1.15rem;
line-height: 2;
color: #FFFFFF;
max-width: 560px;
margin-left: auto;
margin-right: auto;
letter-spacing: 0.01em;
}


/* ---- HOST ---- */

.host {
background: transparent;
padding: 4.5rem 1.5rem;
position: relative;
overflow: hidden;
}

.host::before {
content: none;
}

.host .section-inner {
position: relative;
z-index: 1;
max-width: 800px;
}

.host .section-label {
color: rgba(255,255,255,0.5);
}

.host .section-label::after {
background: rgba(255, 255, 255, 0.2);
}

.host-layout {
display: flex;
gap: 2.5rem;
align-items: flex-start;
}

.host-photo {
width: 200px;
min-width: 200px;
border-radius: 2px;
object-fit: cover;
box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3), 0 1px 4px rgba(0, 0, 0, 0.2);
border: 1px solid rgba(255, 255, 255, 0.08);
}

.host-text {
flex: 1;
}

.host-name {
font-family: var(--font-heading);
font-size: clamp(2.4rem, 5vw, 3rem);
color: var(--white);
margin-bottom: 1.5rem;
font-weight: 700;
letter-spacing: 0.01em;
}

.host-rule {
border: none;
height: 1px;
background: linear-gradient(90deg, rgba(255, 255, 255, 0.2), transparent);
width: 60px;
margin: 0 0 1.25rem;
box-shadow: none;
}

.host-bio {
font-family: var(--font-body);
font-size: 1.2rem;
line-height: 1.85;
color: var(--cool-gray);
max-width: 580px;
}

.host-linkedin {
display: inline-flex;
align-items: center;
gap: 0.5rem;
margin-top: 1.5rem;
font-family: var(--font-body);
font-size: 1rem;
color: var(--light-blue);
transition: color 0.2s ease;
}

.host-linkedin:hover {
color: var(--white);
}

.host-linkedin svg {
width: 16px;
height: 16px;
fill: currentColor;
flex-shrink: 0;
}

.host-affiliations {
margin-top: 3rem;
padding: 1.5rem 0;
border-top: 1px solid rgba(255, 255, 255, 0.1);
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
text-align: center;
}

.host-affiliations p {
font-family: var(--font-body);
font-size: 12px;
letter-spacing: var(--tracking-wide);
text-transform: uppercase;
color: var(--gray);
line-height: 1.8;
}

/* ---- CLIPS ---- */

.clips {
background: transparent;
padding: 4rem 1.5rem 3.5rem;
position: relative;
overflow: hidden;
}

.clips::before {
content: '';
position: absolute;
top: 0;
left: 50%;
transform: translateX(-50%);
width: 100%;
height: 100%;
background:
radial-gradient(ellipse 50% 50% at 50% 30%, rgba(255, 255, 255, 0.025) 0%, transparent 70%);
background-size: 100% 100%;
pointer-events: none;
}
.clips::after {
content: none;
}

.clips .section-inner {
position: relative;
z-index: 1;
}

.clips .section-label {
color: rgba(255, 255, 255, 0.5);
max-width: 600px;
margin-left: auto;
margin-right: auto;
text-align: center;
}

.clips .section-label::after {
background: rgba(255, 255, 255, 0.2);
margin-left: auto;
margin-right: auto;
}

.clips-grid {
display: flex;
flex-direction: column;
align-items: center;
gap: 1.5rem;
max-width: 600px;
margin: 0 auto;
}

.clips-grid iframe {
width: 100%;
border: none;
border-radius: 2px;
box-shadow: 0 1px 8px rgba(0,0,0,0.03);
}

/* ---- GUESTS ---- */

.guests {
background: transparent;
padding: 4rem 1.5rem 3.5rem;
overflow: hidden;
position: relative;
}

.guests::before {
content: '';
position: absolute;
top: 0;
left: 50%;
transform: translateX(-50%);
width: 100%;
height: 100%;
background:
radial-gradient(ellipse 50% 50% at 50% 30%, rgba(255, 255, 255, 0.025) 0%, transparent 70%);
background-size: 100% 100%;
pointer-events: none;
}

.guests .section-inner--wide {
position: relative;
z-index: 1;
}

.guests .section-label {
color: var(--light-blue);
max-width: 600px;
margin-left: auto;
margin-right: auto;
margin-bottom: 2.5rem;
text-align: center;
}

.guests .section-label::after {
background: rgba(255, 255, 255, 0.2);
margin-left: auto;
margin-right: auto;
}

/* ---- GUEST CARDS ---- */

.card-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 1.25rem;
}

.guest-card {
display: block;
background: linear-gradient(
  170deg,
  rgba(108, 172, 228, 0.10) 0%,
  rgba(4, 30, 66, 0.55) 100%
);
border: 1px solid rgba(108, 172, 228, 0.18);
border-radius: 6px;
padding: 1.5rem 1.4rem 1.3rem;
text-decoration: none;
color: inherit;
position: relative;
box-shadow: inset 0 1px 0 rgba(108, 172, 228, 0.15),
            0 2px 10px rgba(0, 0, 0, 0.25);
transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1), border-color 0.5s ease, background 0.5s ease, box-shadow 0.5s ease;
}

.guest-card:hover {
transform: translateY(-4px);
border-color: rgba(108, 172, 228, 0.4);
background: linear-gradient(
  170deg,
  rgba(108, 172, 228, 0.16) 0%,
  rgba(4, 30, 66, 0.65) 100%
);
box-shadow: inset 0 1px 0 rgba(108, 172, 228, 0.22),
            0 8px 28px rgba(0, 0, 0, 0.35),
            0 0 15px rgba(108, 172, 228, 0.10);
}

.card-num {
display: block;
font-family: var(--font-body);
font-size: 0.7rem;
color: var(--light-blue);
opacity: 0.5;
letter-spacing: 0.06em;
margin-bottom: 0.6rem;
}

.card-name {
font-family: var(--font-heading);
font-size: 1.1rem;
font-weight: 400;
font-style: italic;
color: rgba(255, 255, 255, 0.92);
margin: 0 0 0.5rem;
line-height: 1.3;
}

.card-title {
font-family: var(--font-body);
font-size: 0.78rem;
color: var(--cool-gray);
opacity: 0.55;
line-height: 1.5;
margin: 0;
}

/* Ivan — no link, not clickable */
.guest-card.guest-card--ivan,
.guest-card.guest-card--ivan.revealed {
cursor: default;
}

.guest-card--ivan:hover {
transform: none;
border-color: rgba(108, 172, 228, 0.18);
background: linear-gradient(
  170deg,
  rgba(108, 172, 228, 0.10) 0%,
  rgba(4, 30, 66, 0.55) 100%
);
box-shadow: inset 0 1px 0 rgba(108, 172, 228, 0.15),
            0 2px 10px rgba(0, 0, 0, 0.25);
}

/* ---- SCHEDULE ---- */

.schedule {
background: transparent;
padding: 4.5rem 1.5rem;
position: relative;
overflow: hidden;
}

.schedule .section-inner {
max-width: 700px;
}

.toa-header {
display: none;
}

.toa-label {
font-family: var(--font-heading);
font-style: italic;
font-size: 0.8rem;
color: var(--cool-gray);
opacity: 0.5;
letter-spacing: 0.03em;
}


.schedule-list {
list-style: none;
padding: 0;
margin: 0;
counter-reset: none;
}

.schedule-list li {
padding: 0.85rem 0;
border-bottom: none;
font-family: var(--font-heading);
font-style: italic;
font-size: clamp(1.1rem, 2.5vw, 1.35rem);
color: var(--white);
}

.sched-main {
display: flex;
align-items: baseline;
gap: 0;
}


.sched-num {
font-family: var(--font-body);
font-style: normal;
font-size: 0.75rem;
color: var(--light-blue);
opacity: 0.6;
min-width: 2rem;
flex-shrink: 0;
letter-spacing: 0.05em;
}

.schedule-list .sched-name {
color: var(--white);
font-weight: 400;
white-space: nowrap;
flex-shrink: 0;
}

.schedule-list .sched-name a {
color: var(--white);
border-bottom: 1px solid rgba(255, 255, 255, 0.15);
padding-bottom: 1px;
transition: color 0.3s ease, border-color 0.3s ease;
}

.schedule-list .sched-name a:hover {
color: var(--light-blue);
border-bottom-color: var(--light-blue);
}

.sched-dots {
flex: 1;
min-width: 1rem;
margin: 0 0.75rem;
overflow: hidden;
line-height: 1;
}
.sched-dots::after {
content: ' . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .';
white-space: nowrap;
font-family: var(--font-body);
font-style: normal;
font-size: 0.85rem;
letter-spacing: 0.08em;
color: var(--cool-gray);
opacity: 0.4;
}

.sched-badge {
font-family: var(--font-body);
font-style: normal;
font-size: 10px;
letter-spacing: 0.15em;
text-transform: uppercase;
color: var(--light-blue);
border: 1px solid rgba(108, 172, 228, 0.4);
padding: 0.2rem 0.6rem;
border-radius: 2px;
white-space: nowrap;
flex-shrink: 0;
margin-right: 0.75rem;
}

.schedule-list .sched-date {
font-family: var(--font-body);
font-style: normal;
font-size: 0.85rem;
letter-spacing: 0.1em;
color: var(--cool-gray);
white-space: nowrap;
flex-shrink: 0;
}

.schedule-list .sched-aired {
color: var(--light-blue);
}

.sched-detail {
font-family: var(--font-body);
font-style: normal;
font-size: 0.78rem;
color: rgba(255, 255, 255, 0.4);
margin-top: 0.25rem;
padding-left: 2rem;
line-height: 1.5;
letter-spacing: 0.01em;
}

.schedule-footer {
margin-top: 2.5rem;
padding-top: 1.5rem;
border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.schedule-cadence {
font-family: var(--font-body);
font-size: 0.9rem;
color: var(--cool-gray);
opacity: 0.7;
letter-spacing: 0.02em;
}

/* ---- SUBSCRIBE ---- */

.subscribe {
background: linear-gradient(180deg, transparent 0%, rgba(108, 172, 228, 0.04) 50%, transparent 100%);
padding: 4.5rem 1.5rem;
text-align: center;
position: relative;
overflow: hidden;
}

.subscribe::before {
content: none;
}

.subscribe .section-inner {
position: relative;
z-index: 1;
}

.subscribe-heading {
font-family: var(--font-heading);
font-style: italic;
font-size: clamp(2rem, 4vw, 2.6rem);
color: var(--white);
margin-bottom: 3rem;
text-shadow: 0 0 40px rgba(108, 172, 228, 0.12);
}

.subscribe-form {
display: flex;
gap: 0;
max-width: 460px;
margin: 0 auto 3rem;
}

.subscribe-form input[type="email"] {
flex: 1;
font-family: var(--font-body);
font-size: 1rem;
padding: 1rem 1.4rem;
background: rgba(255, 255, 255, 0.03);
border: 1px solid rgba(255, 255, 255, 0.25);
color: var(--white);
outline: none;
transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.subscribe-form input[type="email"]::placeholder {
color: rgba(255, 255, 255, 0.5);
font-style: italic;
}

.subscribe-form input[type="email"]:focus {
border-color: var(--light-blue);
background: rgba(255, 255, 255, 0.05);
box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.15);
}

.subscribe-form button {
font-family: var(--font-body);
font-size: 11px;
letter-spacing: var(--tracking-wide);
text-transform: uppercase;
background: var(--light-blue);
color: var(--navy);
border: 1px solid var(--light-blue);
padding: 1rem 2.2rem;
cursor: pointer;
font-weight: bold;
transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.subscribe-form button:hover {
background: var(--white);
border-color: var(--white);
color: var(--navy);
box-shadow: 0 2px 16px rgba(255, 255, 255, 0.15);
}

.subscribe-confirm {
font-family: var(--font-heading);
font-style: italic;
font-size: 1.15rem;
color: var(--light-blue);
margin-bottom: 3rem;
line-height: 1.6;
}

.platforms {
display: flex;
justify-content: center;
gap: 2.5rem;
flex-wrap: wrap;
}

.platforms a {
font-family: var(--font-body);
font-size: 11px;
letter-spacing: var(--tracking-wide);
text-transform: uppercase;
color: rgba(255, 255, 255, 0.7);
transition: color 0.3s ease;
display: flex;
align-items: center;
gap: 0.5rem;
}

.platforms a:hover {
color: var(--white);
}

.platforms svg {
width: 16px;
height: 16px;
fill: currentColor;
flex-shrink: 0;
}

/* ---- FOOTER ---- */

footer {
background: transparent;
border-top: none;
padding: 4.5rem 2rem 3.5rem;
position: relative;
}

footer::before {
content: none;
}

.footer-inner {
max-width: var(--max-width-wide);
margin: 0 auto;
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
gap: 1rem;
}

.footer-domain {
font-family: var(--font-body);
font-size: 11px;
letter-spacing: var(--tracking-wide);
text-transform: uppercase;
color: rgba(255, 255, 255, 0.6);
}

.footer-social {
display: flex;
gap: 1.25rem;
list-style: none;
align-items: center;
}

.footer-social a {
color: rgba(187,188,188,0.5);
transition: color 0.3s ease;
display: flex;
align-items: center;
}

.footer-social a:hover {
color: var(--light-blue);
}

.footer-social svg {
width: 18px;
height: 18px;
fill: currentColor;
}

.footer-contact {
font-family: var(--font-body);
font-size: 12px;
color: rgba(255, 255, 255, 0.5);
width: 100%;
text-align: center;
margin-top: 2rem;
letter-spacing: var(--tracking-medium);
}

.footer-contact a {
color: var(--cool-gray);
text-decoration: none;
border-bottom: 1px solid rgba(187,188,188,0.3);
padding-bottom: 1px;
transition: color 0.2s ease, border-color 0.2s ease;
}

.footer-contact a:hover {
color: var(--light-blue);
border-bottom-color: var(--light-blue);
}

.footer-links {
font-family: var(--font-body);
font-size: 12px;
color: rgba(187,188,188,0.35);
width: 100%;
text-align: center;
margin-top: 1.25rem;
}
.footer-links a {
color: rgba(187,188,188,0.5);
text-decoration: none;
transition: color 0.2s ease;
}
.footer-links a:hover {
color: var(--light-blue);
}
.footer-copy {
font-family: var(--font-body);
font-size: 11px;
color: rgba(187,188,188,0.3);
width: 100%;
text-align: center;
margin-top: 0.75rem;
letter-spacing: 0.03em;
}

/* ---- RESPONSIVE ---- */

@media (max-width: 768px) {
body {
background-size: 200% auto;
}

.nav-links {
display: none;
}

.hero {
padding: 6rem 1.5rem 4rem;
}

.hero-logo {
max-width: none;
width: 90%;
}

.hero-logo-frame {
padding: 2rem 2rem;
}

.hero-logo-frame::before,
.hero-logo-frame::after {
width: 50%;
max-width: 200px;
}

.about, .clips, .guests {
padding: 3rem 1.5rem;
}
.host, .subscribe {
padding: 3.5rem 1.5rem;
}
.schedule {
padding: 3rem 1.5rem;
}

.schedule-list li {
font-size: 1rem;
}

.sched-num {
min-width: 1.5rem;
}

.sched-main {
flex-wrap: wrap;
}

.sched-dots {
margin: 0 0.3rem;
min-width: 0.5rem;
}

.sched-main::after {
content: '';
flex-basis: 100%;
height: 0;
order: 9;
}

.sched-badge {
order: 10;
flex-basis: auto;
margin-left: 1.5rem;
margin-top: 0.2rem;
margin-right: 0;
font-size: 6.5px;
padding: 0.1rem 0.35rem;
flex-shrink: 0;
}

.sched-date {
font-size: 0.78rem;
}

.host-layout {
flex-direction: column;
align-items: flex-start;
}

.host-photo {
width: 160px;
min-width: 160px;
}

.host-affiliations {
text-align: center;
}

.guest-toa {
max-width: none;
}

.guests .section-inner--wide {
padding: 0 0.5rem;
}

.subscribe-form {
flex-direction: column;
}

.subscribe-form input[type="email"],
.subscribe-form button {
width: 100%;
}

.footer-inner {
flex-direction: column;
text-align: center;
}

.footer-social {
justify-content: center;
}

.platforms {
flex-direction: column;
align-items: center;
gap: 1rem;
}

.host-affiliations p {
font-size: 12px;
}

.card-grid {
grid-template-columns: repeat(2, 1fr);
gap: 1rem;
}

}

@media (max-width: 480px) {
body {
font-size: 19px;
}

.hero {
padding: 5rem 1.25rem 3rem;
}

.hero-logo {
max-width: none;
width: 95%;
margin-bottom: 1.5rem;
}

.hero-logo-frame {
padding: 1.5rem 1.5rem;
}

.hero-logo-frame::before,
.hero-logo-frame::after {
width: 40%;
max-width: 150px;
}

.hero-logo-name {
letter-spacing: 0.12em;
}

.hero-tagline {
font-size: 1rem;
margin-bottom: 1.25rem;
}

.hero-eyebrow {
font-size: 10px;
}

.about-body {
font-size: 1.05rem;
}

.host-photo {
width: 140px;
min-width: 140px;
}

.host-affiliations p {
font-size: 10px;
letter-spacing: 0.15em;
}

.host-bio {
font-size: 1rem;
}

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

}

/* ---- LOAD ANIMATION ---- */

@keyframes fadeUp {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

/* ---- ACCESSIBILITY: REDUCED MOTION ---- */

@media (prefers-reduced-motion: reduce) {
*, *::before, *::after {
animation-duration: 0.01ms !important;
animation-iteration-count: 1 !important;
transition-duration: 0.01ms !important;
}

.hero {
animation: none;
}

.hero-eyebrow,
.hero-logo-frame::before,
.hero-logo-frame::after,
.hero-logo,
.hero-tagline,
.btn-outline {
opacity: 1;
animation: none;
}

.reveal,
.reveal-label {
opacity: 1;
transform: none;
}

.subscribe-form button {
animation: none;
}
}

/* ---- MOBILE HAMBURGER MENU ---- */

.nav-hamburger {
display: none;
background: none;
border: none;
cursor: pointer;
padding: 0.5rem;
margin: 0;
z-index: 201;
}

.nav-hamburger span {
display: block;
width: 22px;
height: 2px;
background: var(--cool-gray);
margin: 5px 0;
transition: all 0.3s ease;
}

.nav-hamburger:hover span {
background: var(--white);
}

.mobile-overlay {
position: fixed;
inset: 0;
z-index: 200;
background: var(--navy);
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
opacity: 0;
visibility: hidden;
transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-overlay.is-open {
opacity: 1;
visibility: visible;
}

.mobile-overlay-close {
position: absolute;
top: 1.25rem;
right: 1.5rem;
background: none;
border: none;
cursor: pointer;
padding: 0.5rem;
}

.mobile-overlay-close svg {
width: 22px;
height: 22px;
stroke: var(--cool-gray);
transition: stroke 0.2s ease;
}

.mobile-overlay-close:hover svg {
stroke: var(--white);
}

.mobile-overlay-links {
list-style: none;
text-align: center;
padding: 0;
margin: 0;
}

.mobile-overlay-links li {
margin-bottom: 2.5rem;
}

.mobile-overlay-links li:last-child {
margin-bottom: 0;
}

.mobile-overlay-links a {
font-family: var(--font-heading);
font-size: 1.5rem;
letter-spacing: var(--tracking-wide);
text-transform: uppercase;
color: var(--cool-gray);
transition: color 0.2s ease;
}

.mobile-overlay-links a:hover {
color: var(--white);
}

@media (max-width: 768px) {
.nav-hamburger {
display: block;
}
}
/* ---- ACCESSIBILITY ---- */

.skip-link {
position: absolute;
top: -100%;
left: 0;
background: var(--light-blue);
color: var(--navy);
padding: 0.75rem 1.5rem;
font-family: var(--font-body);
font-size: 14px;
font-weight: bold;
z-index: 999;
transition: top 0.2s ease;
}

.skip-link:focus {
top: 0;
color: var(--navy);
}

a:focus-visible, button:focus-visible {
outline: 2px solid var(--light-blue);
outline-offset: 2px;
}

/* ---- HERO ENHANCEMENTS ---- */

.hero-descriptor {
font-family: var(--font-body);
font-size: 12px;
letter-spacing: 0.3em;
text-transform: uppercase;
color: rgba(255, 255, 255, 1);
margin-bottom: 2.5rem;
opacity: 0;
animation: fadeUp 1s ease 0.9s both;
}

.hero-ctas {
display: flex;
gap: 1.25rem;
justify-content: center;
align-items: center;
flex-wrap: wrap;
opacity: 0;
animation: fadeUp 1s ease 1s both;
}

.btn-primary {
display: inline-flex;
align-items: center;
gap: 0.5rem;
font-family: var(--font-body);
font-size: 11px;
letter-spacing: 0.2em;
text-transform: uppercase;
color: var(--navy);
background: var(--light-blue);
border: 1px solid var(--light-blue);
padding: 0.85rem 1.75rem;
transition: background 0.4s ease, color 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.btn-primary:hover {
background: var(--white);
color: var(--navy);
border-color: var(--white);
box-shadow: 0 4px 24px rgba(108, 172, 228, 0.25);
}

.btn-primary svg,
.btn-outline svg {
width: 14px;
height: 14px;
fill: currentColor;
flex-shrink: 0;
}

.hero-scroll-hint {
position: absolute;
bottom: 2.5rem;
left: 50%;
transform: translateX(-50%);
z-index: 3;
opacity: 0;
animation: fadeUp 1s ease 1.5s both;
}

.hero-scroll-hint span {
display: block;
width: 1px;
height: 40px;
background: linear-gradient(to bottom, rgba(108, 172, 228, 0.5), transparent);
animation: scrollPulse 2.5s ease-in-out infinite;
}

@keyframes scrollPulse {
0%, 100% { opacity: 0.3; transform: scaleY(0.6); transform-origin: top; }
50% { opacity: 0.8; transform: scaleY(1); }
}

/* ---- SECTION ENHANCEMENTS ---- */

.section-ornament {
display: block;
text-align: center;
padding: 0;
font-size: 0;
}

.section-ornament span {
display: none;
}

.section-ornament::after {
content: '';
display: block;
width: 80px;
height: 1px;
margin: 0 auto;
background: linear-gradient(90deg, transparent, rgba(108, 172, 228, 0.25), transparent);
}

.section-eyebrow {
font-family: var(--font-body);
font-size: 10px;
letter-spacing: 0.3em;
text-transform: uppercase;
color: var(--light-blue);
opacity: 0.6;
margin-bottom: 0.5rem;
text-align: center;
}

/* ---- GUEST CARD ENHANCEMENTS ---- */

.guest-card--featured {
grid-column: 1 / -1;
display: flex;
align-items: center;
gap: 2rem;
padding: 2rem 2.5rem;
background: linear-gradient(
  170deg,
  rgba(108, 172, 228, 0.14) 0%,
  rgba(4, 30, 66, 0.65) 100%
);
border-color: rgba(108, 172, 228, 0.25);
}

.guest-card--featured .card-name {
font-size: 1.4rem;
}

.guest-card--featured .card-title {
font-size: 0.88rem;
opacity: 0.7;
}

/* ---- SCHEDULE ENHANCEMENTS ---- */

.sched-badge--live {
color: #7FD89E;
border-color: rgba(127, 216, 158, 0.4);
}

.schedule-list li.sched-aired-row {
border-left: 2px solid rgba(108, 172, 228, 0.3);
padding-left: 0.75rem;
}

/* ---- SUBSCRIBE ENHANCEMENTS ---- */

.subscribe-subhead {
font-family: var(--font-body);
font-size: 1rem;
color: var(--cool-gray);
max-width: 440px;
margin: -1.5rem auto 2.5rem;
line-height: 1.7;
opacity: 0.7;
}

.subscribe-confirm-box {
text-align: center;
}

.subscribe-confirm-sub {
font-family: var(--font-body);
font-size: 1rem;
color: var(--cool-gray);
margin-top: 0.75rem;
opacity: 0.7;
}

.subscribe-confirm-platforms {
display: flex;
justify-content: center;
gap: 2rem;
margin-top: 1.5rem;
}

.subscribe-confirm-platforms a {
font-family: var(--font-body);
font-size: 11px;
letter-spacing: var(--tracking-wide);
text-transform: uppercase;
color: rgba(255, 255, 255, 0.7);
}

/* ---- STICKY CTA ---- */

.sticky-cta {
position: fixed;
bottom: 1.5rem;
right: 1.5rem;
z-index: 90;
opacity: 0;
transform: translateY(10px);
transition: opacity 0.4s ease, transform 0.4s ease;
pointer-events: none;
}

.sticky-cta.is-visible {
opacity: 1;
transform: translateY(0);
pointer-events: auto;
}

.sticky-cta-link {
display: inline-flex;
align-items: center;
gap: 0.5rem;
font-family: var(--font-body);
font-size: 11px;
letter-spacing: 0.2em;
text-transform: uppercase;
color: var(--navy);
background: var(--light-blue);
padding: 0.75rem 1.5rem;
border-radius: 3px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
transition: background 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
}

.sticky-cta-link:hover {
background: var(--white);
color: var(--navy);
box-shadow: 0 4px 24px rgba(108, 172, 228, 0.3);
}

.sticky-cta-link svg {
width: 14px;
height: 14px;
fill: currentColor;
flex-shrink: 0;
}

/* ---- EPISODE PAGES (shared styles) ---- */

.episode-header {
background: transparent;
padding: 6rem 1.5rem 4rem;
text-align: center;
position: relative;
}

.episode-header::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 3px;
background: linear-gradient(90deg, var(--navy), var(--light-blue), var(--navy));
}

.episode-header-inner {
max-width: var(--max-width);
margin: 0 auto;
}

.episode-meta {
font-family: var(--font-body);
font-size: 13px;
letter-spacing: var(--tracking-wide);
text-transform: uppercase;
color: var(--cool-gray);
margin-bottom: 1.5rem;
}

.episode-title {
font-family: var(--font-heading);
font-size: clamp(1.7rem, 4vw, 2.6rem);
font-weight: 700;
color: var(--white);
line-height: 1.25;
margin-bottom: 1.5rem;
letter-spacing: -0.01em;
}

.episode-hook {
font-family: var(--font-heading);
font-style: italic;
font-size: clamp(1rem, 2.2vw, 1.2rem);
color: rgba(108, 172, 228, 0.75);
line-height: 1.65;
max-width: 560px;
margin: 0 auto;
}

.episode-player {
max-width: var(--max-width);
margin: 0 auto;
padding: 3rem 1.5rem 0;
display: flex;
flex-direction: column;
gap: 1.5rem;
}

.episode-player .youtube-player {
position: relative;
padding-bottom: 56.25%;
height: 0;
overflow: hidden;
border-radius: 12px;
}

.episode-player .youtube-player iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border-radius: 12px;
}

.episode-cta-bar {
max-width: var(--max-width);
margin: 2rem auto 0;
padding: 0 1.5rem;
display: flex;
gap: 1rem;
justify-content: center;
}

.episode-cta-pill {
display: inline-flex;
align-items: center;
gap: 0.5rem;
font-family: var(--font-body);
font-size: 11px;
letter-spacing: 0.15em;
text-transform: uppercase;
color: rgba(255, 255, 255, 0.7);
border: 1px solid rgba(255, 255, 255, 0.15);
padding: 0.6rem 1.25rem;
border-radius: 3px;
transition: border-color 0.3s ease, color 0.3s ease;
}

.episode-cta-pill:hover {
border-color: var(--light-blue);
color: var(--white);
}

.episode-cta-pill svg {
width: 16px;
height: 16px;
fill: currentColor;
}

.episode-content {
max-width: var(--max-width);
margin: 0 auto;
padding: 0 1.5rem;
}

.episode-section {
padding: 3rem 0;
border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.episode-section:last-child {
border-bottom: none;
}

.section-heading {
font-family: var(--font-body);
font-size: 13px;
font-weight: normal;
letter-spacing: var(--tracking-wide);
text-transform: uppercase;
color: var(--cool-gray);
margin-bottom: 1.5rem;
}

.section-heading::after {
content: '';
display: block;
width: 40px;
height: 1px;
background: var(--light-blue);
margin-top: 0.75rem;
}

.episode-body {
font-size: 1.05rem;
line-height: 1.85;
color: rgba(255, 255, 255, 0.75);
}

.episode-body p {
margin-bottom: 1.25rem;
}

.episode-body p:last-child {
margin-bottom: 0;
}

.episode-topics {
list-style: none;
padding: 0;
}

.episode-topics li {
font-size: 1.05rem;
line-height: 1.85;
color: rgba(255, 255, 255, 0.75);
padding: 0.4rem 0;
padding-left: 1.2rem;
position: relative;
}

.episode-topics li::before {
content: '';
position: absolute;
left: 0;
top: 0.95rem;
width: 6px;
height: 6px;
background: var(--light-blue);
border-radius: 50%;
}

.timestamps-placeholder {
font-style: italic;
color: var(--cool-gray);
font-size: 1rem;
}

.resources-list {
list-style: none;
padding: 0;
}

.resources-list li {
font-size: 1rem;
line-height: 1.85;
padding: 0.3rem 0;
}

.resources-list a {
color: var(--light-blue);
border-bottom: 1px solid transparent;
transition: border-color 0.2s ease, color 0.2s ease;
}

.resources-list a:hover {
color: var(--light-blue-hover);
border-bottom-color: var(--light-blue-hover);
}

.subscribe-bar {
max-width: var(--max-width);
margin: 0 auto;
padding: 3rem 1.5rem 4rem;
}

.subscribe-links {
display: flex;
gap: 2rem;
align-items: center;
}

.subscribe-links a {
display: flex;
align-items: center;
color: var(--cool-gray);
transition: color 0.2s ease;
}

.subscribe-links a:hover {
color: var(--white);
}

.subscribe-links svg {
width: 28px;
height: 28px;
fill: currentColor;
}

.episode-nav {
max-width: var(--max-width);
margin: 0 auto;
padding: 0 1.5rem 3rem;
display: flex;
justify-content: space-between;
align-items: center;
}

.episode-nav-back {
font-family: var(--font-body);
font-size: 0.85rem;
letter-spacing: 0.15em;
text-transform: uppercase;
color: var(--cool-gray);
transition: color 0.2s ease;
}

.episode-nav-forward {
text-align: right;
}

.episode-nav-label {
font-family: var(--font-body);
font-size: 0.85rem;
letter-spacing: 0.15em;
text-transform: uppercase;
color: var(--cool-gray);
margin-bottom: 0.5rem;
}

.episode-nav-next {
font-family: var(--font-body);
font-size: 0.85rem;
letter-spacing: 0.15em;
text-transform: uppercase;
color: var(--light-blue);
transition: color 0.2s ease;
}

.episode-nav-back:hover,
.episode-nav-next:hover {
color: var(--white);
}

.next-episode {
max-width: var(--max-width);
margin: 0 auto;
padding: 0 1.5rem 3rem;
text-align: center;
}

.next-episode-label {
font-family: var(--font-body);
font-size: 0.85rem;
letter-spacing: 0.15em;
text-transform: uppercase;
color: var(--cool-gray);
margin-bottom: 0.5rem;
}

.next-episode a {
font-family: var(--font-body);
font-size: 0.85rem;
letter-spacing: var(--tracking-medium);
text-transform: uppercase;
color: var(--light-blue);
}

.episode-footer {
background: transparent;
text-align: center;
padding: 3rem 1.5rem;
}

.episode-footer p {
font-family: var(--font-body);
font-size: 0.85rem;
color: var(--cool-gray);
letter-spacing: 0.05em;
}

.episode-footer a {
color: var(--light-blue);
}

.episode-footer a:hover {
color: var(--white);
}

.back-link {
display: inline-block;
margin-bottom: 1rem;
font-size: 0.85rem;
letter-spacing: 0.1em;
text-transform: uppercase;
color: var(--cool-gray);
}

.back-link:hover {
color: var(--white);
}

/* ---- EPISODE PAGE NAV (on episode pages) ---- */

body.episode-page nav {
border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

body.episode-page nav .nav-inner {
height: 64px;
}

/* ---- ADDITIONAL RESPONSIVE ---- */

@media (max-width: 768px) {
.guest-card--featured {
  flex-direction: column;
  text-align: center;
  padding: 1.5rem;
}

.sticky-cta {
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem 1rem;
  background: rgba(4, 30, 66, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(108, 172, 228, 0.15);
}

.sticky-cta-link {
  display: flex;
  justify-content: center;
  text-align: center;
  width: 100%;
  border-radius: 0;
  box-shadow: none;
}

.episode-header {
  padding: 5rem 1.5rem 3rem;
}

.episode-cta-bar {
  flex-wrap: wrap;
}
}

@media (max-width: 480px) {
.hero-ctas {
  flex-direction: column;
  gap: 0.75rem;
}

.hero-ctas .btn-primary,
.hero-ctas .btn-outline {
  width: 100%;
  text-align: center;
  justify-content: center;
}

.episode-nav {
  flex-direction: column;
  gap: 1.5rem;
  text-align: center;
}

.episode-nav-forward {
  text-align: center;
}
}

