/* ==========================================================================
   Ur2Val Design System
   You're Too Valuable Podcast
   ========================================================================== */

/* ---------- CSS Variables ---------- */
:root {
    /* Colors */
    --bg:              #0A0A0A;
    --bg-surface:      #141414;
    --bg-card:         #1A1A1A;
    --bg-elevated:     #222222;
    --border:          #2A2A2A;
    --border-light:    #333333;

    --text-primary:    #F0F0F0;
    --text-secondary:  #A0A0A0;
    --text-muted:      #666666;

    --accent:          #00A0B0;
    --accent-hover:    #00C4D6;
    --accent-glow:     rgba(0, 160, 176, 0.25);
    --accent-subtle:   rgba(0, 160, 176, 0.08);

    --navy:            #181C80;
    --navy-glow:       rgba(24, 28, 128, 0.3);

    --gradient-accent:  linear-gradient(135deg, #00A0B0, #181C80);
    --gradient-surface: linear-gradient(180deg, #141414, #0A0A0A);
    --gradient-hero:    linear-gradient(135deg, rgba(0, 160, 176, 0.15), rgba(24, 28, 128, 0.15));

    --success:         #28A745;
    --warning:         #F0AD4E;
    --danger:          #DC3545;

    /* Typography */
    --font-heading: 'League Spartan', sans-serif;
    --font-body:    'Inter', sans-serif;

    /* Spacing */
    --space-xs:  0.25rem;
    --space-sm:  0.5rem;
    --space-md:  1rem;
    --space-lg:  1.5rem;
    --space-xl:  2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;

    /* Layout */
    --container-max:    1200px;
    --container-narrow: 800px;
    --radius-sm:  6px;
    --radius-md:  12px;
    --radius-lg:  20px;
    --radius-xl:  32px;

    /* Shadows */
    --shadow-sm:   0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md:   0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg:   0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 30px var(--accent-glow);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;

    /* Header */
    --header-height: 72px;
}


/* ---------- Reset & Base ---------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg);
    overflow-x: hidden;
}

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

a {
    color: var(--accent);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

ul, ol {
    list-style: none;
}


/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
}

h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}

h4 {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
}

p {
    margin-bottom: var(--space-md);
    color: var(--text-secondary);
}

.text-accent {
    color: var(--accent);
}

.text-muted {
    color: var(--text-muted);
}

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


/* ---------- Layout ---------- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.container-narrow {
    max-width: var(--container-narrow);
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.section {
    padding: var(--space-4xl) 0;
}

.section-sm {
    padding: var(--space-2xl) 0;
}

.grid {
    display: grid;
    gap: var(--space-xl);
}

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

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.flex {
    display: flex;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.gap-sm  { gap: var(--space-sm); }
.gap-md  { gap: var(--space-md); }
.gap-lg  { gap: var(--space-lg); }
.gap-xl  { gap: var(--space-xl); }


/* ---------- Header ---------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    background: rgba(10, 10, 10, 0.95);
    border-top: 3px solid var(--accent);
    border-bottom: 1px solid var(--border);
    will-change: background;
}

.site-header.scrolled {
    background: rgba(10, 10, 10, 1);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.site-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.site-logo img {
    height: 192px;
    width: auto;
    filter: drop-shadow(0 0 20px var(--accent-glow));
    transition: filter var(--transition-base);
    position: relative;
    z-index: 10;
    top: 48px;
}

.site-logo:hover img {
    filter: drop-shadow(0 0 30px rgba(0, 160, 176, 0.4));
}

.site-logo {
    pointer-events: auto;
    position: relative;
    z-index: 1001;
}

/* Desktop nav */
.nav-desktop {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav-desktop a {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-sm);
    transition: color var(--transition-fast), background var(--transition-fast);
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.nav-desktop a:hover,
.nav-desktop a.active {
    color: var(--text-primary);
    background: var(--accent-subtle);
}

.nav-desktop .nav-cta {
    color: var(--bg);
    background: var(--accent);
    font-weight: 600;
    padding: var(--space-sm) var(--space-lg);
}

.nav-desktop .nav-cta:hover {
    background: var(--accent-hover);
    color: var(--bg);
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    margin: 6px 0;
    transition: transform var(--transition-base), opacity var(--transition-base);
    border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile nav */
.nav-mobile {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    padding: var(--space-2xl);
    flex-direction: column;
    gap: var(--space-md);
}

.nav-mobile.open {
    display: flex;
}

.nav-mobile a {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-secondary);
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--border);
    transition: color var(--transition-fast), padding-left var(--transition-base);
    text-transform: uppercase;
}

.nav-mobile a:hover {
    color: var(--accent);
    padding-left: var(--space-md);
}

.nav-mobile .nav-cta-mobile {
    margin-top: var(--space-lg);
    text-align: center;
    background: var(--accent);
    color: var(--bg);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    border: none;
    font-weight: 700;
}


/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, var(--bg), transparent);
    z-index: 2;
}

.hero-bg {
    position: absolute;
    top: calc(var(--header-height) * -1 - 96px);
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center top;
    opacity: 0.15;
}

.hero-split {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.hero-content {
    max-width: 720px;
    padding-top: 96px;
}

.hero-image {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-top: -192px;
}

.hero-image-wrapper {
    position: relative;
    display: inline-block;
    max-width: 600px;
    width: 100%;
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: calc(var(--radius-lg) + 8px);
    background: conic-gradient(
        from 0deg,
        var(--accent),
        var(--navy),
        var(--accent),
        transparent,
        var(--navy),
        var(--accent)
    );
    opacity: 0.4;
    filter: blur(20px);
    z-index: -1;
    transition: opacity 0.5s ease, filter 0.5s ease, transform 0.5s ease;
    animation: beam-rotate 8s linear infinite;
    animation-play-state: paused;
}

.hero-image-wrapper:hover::before {
    opacity: 0.8;
    filter: blur(30px);
    transform: scale(1.05);
    animation-play-state: running;
}

.hero-image-wrapper::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: calc(var(--radius-lg) + 4px);
    background: linear-gradient(135deg, rgba(0, 160, 176, 0.3), rgba(24, 28, 128, 0.3), rgba(0, 160, 176, 0.3));
    background-size: 200% 200%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
    animation: beam-shift 4s ease infinite;
    animation-play-state: paused;
}

.hero-image-wrapper:hover::after {
    opacity: 1;
    animation-play-state: running;
}

@keyframes beam-rotate {
    from { transform: rotate(0deg) scale(1.02); }
    to { transform: rotate(360deg) scale(1.02); }
}

@keyframes beam-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-image img {
    width: 100%;
    max-width: 600px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 160, 176, 0.2);
    position: relative;
    z-index: 1;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.hero-image-wrapper:hover img {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg), 0 0 60px var(--accent-glow);
}

.hero-season-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: rgba(0, 160, 176, 0.85);
    border: 2px solid var(--accent);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 800;
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-xl);
    margin-bottom: var(--space-xl);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero-season-badge .pulse {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero h1 {
    margin-bottom: var(--space-lg);
}

.hero h1 .accent-line {
    color: var(--accent);
    display: block;
}

.hero-description {
    font-size: clamp(1.05rem, 1.8vw, 1.25rem);
    color: var(--text-secondary);
    margin-bottom: var(--space-2xl);
    max-width: 560px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
}


/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.85rem 1.75rem;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--accent);
    color: var(--bg);
}

.btn-primary:hover {
    background: var(--accent-hover);
    color: var(--bg);
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-light);
}

.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--accent);
    padding: 0.85rem 1rem;
}

.btn-ghost:hover {
    background: var(--accent-subtle);
    color: var(--accent-hover);
}

.btn-lg {
    padding: 1rem 2.25rem;
    font-size: 1.05rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

.btn-icon {
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 50%;
}


/* ---------- Platform Card ---------- */
.platform-card {
    background: rgba(20, 20, 20, 0.9);
    border: 2px solid var(--accent);
    border-radius: var(--radius-lg);
    padding: var(--space-md) var(--space-xl);
    width: 100%;
    position: relative;
    z-index: 5;
}

.platform-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-sm);
    flex-wrap: nowrap;
    width: 100%;
}

.platform-card-label {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-primary);
    margin-right: var(--space-sm);
}

/* ---------- Platform Buttons ---------- */
.platform-links {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.platform-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 0.65rem 1.25rem;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-primary);
    background: var(--bg-card);
    border: 1px solid var(--accent);
    transition: all var(--transition-base);
}

.platform-btn:hover {
    border-color: var(--accent);
    background: var(--accent);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.platform-btn img {
    width: 20px;
    height: 20px;
}


/* ---------- Cards ---------- */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    transition: border-color var(--transition-base), box-shadow var(--transition-base), transform var(--transition-base);
}

.card:hover {
    border-color: var(--border-light);
    box-shadow: var(--shadow-md);
}

.card-clickable:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
    cursor: pointer;
}

.card-image {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
}

.card-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    background: var(--accent-subtle);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-md);
}

.card h3 {
    margin-bottom: var(--space-sm);
}

.card p {
    font-size: 0.95rem;
}


/* ---------- Episode Card ---------- */
.episode-card {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: var(--space-xl);
    align-items: start;
}

.episode-card .episode-thumb {
    aspect-ratio: 1/1;
    border-radius: var(--radius-md);
    object-fit: cover;
    width: 100%;
}

.episode-meta {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-sm);
    font-size: 0.85rem;
    color: var(--text-muted);
}

.episode-meta .season-ep {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.episode-card h3 a {
    color: var(--text-primary);
}

.episode-card h3 a:hover {
    color: var(--accent);
}


/* ---------- Clip Card ---------- */
.clip-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    aspect-ratio: 9/16;
    background: var(--bg-card);
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all var(--transition-base);
}

.clip-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.clip-card video,
.clip-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.clip-card .clip-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-xl) var(--space-lg);
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
}

.clip-card .clip-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

.clip-card .clip-episode {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.clip-card .play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    background: rgba(0, 160, 176, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.clip-card:hover .play-icon {
    opacity: 1;
}


/* ---------- Flip Card ---------- */
.flip-card {
    perspective: 1000px;
    cursor: pointer;
    min-height: 760px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 760px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.flip-card.flipped .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.flip-card-back {
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.flip-card-back p {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: var(--space-sm);
}

/* ---------- Host Card ---------- */
.host-card {
    text-align: center;
    padding: var(--space-2xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.host-card .btn {
    margin-top: auto;
}

.host-card .host-photo {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto var(--space-lg);
    border: 3px solid var(--border);
    transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.host-card:hover .host-photo {
    border-color: var(--accent);
    box-shadow: 0 0 30px var(--accent-glow);
}

.host-card .host-role {
    font-size: 0.85rem;
    color: var(--accent);
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: var(--space-sm);
}

.host-card h3 {
    margin-bottom: var(--space-sm);
}

.host-details {
    width: 100%;
    text-align: left;
    margin-top: auto;
    margin-bottom: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid var(--border);
}

.host-detail-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    font-size: 0.82rem;
    color: var(--text-secondary);
    padding: var(--space-xs) 0;
}

.host-detail-item i {
    color: var(--accent);
    width: 16px;
    text-align: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.host-email {
    color: var(--accent);
    transition: color var(--transition-fast);
}

.host-email:hover {
    color: var(--accent-hover);
}


/* ---------- Section Headers ---------- */
.section-header {
    margin-bottom: var(--space-2xl);
}

.section-header h2 {
    margin-bottom: var(--space-md);
}

.section-header p {
    font-size: 1.1rem;
    max-width: none;
}

.section-header.center {
    text-align: center;
}

.section-header.center p {
    margin-left: auto;
    margin-right: auto;
}

.section-divider {
    width: 60px;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 3px;
    margin-bottom: var(--space-lg);
}

.section-header.center .section-divider {
    margin-left: auto;
    margin-right: auto;
}


/* ---------- Topic Tags ---------- */
.topic-tag {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-xs) var(--space-md);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-secondary);
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    transition: all var(--transition-fast);
}

.topic-tag:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-subtle);
}


/* ---------- Newsletter ---------- */
.newsletter-section {
    background: #ffffff;
    border: 2px solid var(--accent);
    border-radius: var(--radius-lg);
    padding: var(--space-3xl);
    text-align: center;
}

.newsletter-section h2 {
    color: #000;
}

.newsletter-section p {
    color: #333;
}

.newsletter-form {
    display: flex;
    gap: var(--space-md);
    max-width: 480px;
    margin: var(--space-xl) auto 0;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 0.85rem var(--space-lg);
    border-radius: var(--radius-md);
    border: 1px solid #ddd;
    background: #f8f8f8;
    color: #000;
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: border-color var(--transition-fast);
}

.newsletter-form input[type="email"]::placeholder {
    color: #999;
}

.newsletter-form input[type="email"]::placeholder {
    color: var(--text-muted);
}

.newsletter-form input[type="email"]:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}


/* ---------- Footer ---------- */
.site-footer {
    background: var(--bg-surface);
    border-top: 1px solid var(--border);
    padding: var(--space-4xl) 0 var(--space-xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-3xl);
}

.footer-brand {
    text-align: center;
}

.footer-brand p {
    font-size: 0.9rem;
    margin-top: var(--space-md);
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.footer-brand .footer-logo {
    height: 100px;
    width: auto;
    filter: drop-shadow(0 0 15px var(--accent-glow));
    margin: 0 auto;
}

.footer-col h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-primary);
    margin-bottom: var(--space-lg);
}

.footer-col a {
    display: block;
    color: var(--text-secondary);
    font-size: 0.9rem;
    padding: var(--space-xs) 0;
    transition: color var(--transition-fast);
}

.footer-col a:hover {
    color: var(--accent);
}

.footer-social {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-lg);
    justify-content: center;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--text-secondary);
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-subtle);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: var(--space-xl);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-bottom a {
    color: var(--text-muted);
}

.footer-bottom a:hover {
    color: var(--accent);
}


/* ---------- Forms ---------- */
.form-group {
    margin-bottom: var(--space-lg);
}

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: #000;
    margin-bottom: var(--space-sm);
}

.form-control {
    width: 100%;
    padding: 0.85rem var(--space-lg);
    border-radius: var(--radius-md);
    border: 1px solid #ddd;
    background: #f8f8f8;
    color: #000;
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-control::placeholder {
    color: #999;
}

.form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
    background: #fff;
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23A0A0A0' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}


/* ---------- Utilities ---------- */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.mt-sm  { margin-top: var(--space-sm); }
.mt-md  { margin-top: var(--space-md); }
.mt-lg  { margin-top: var(--space-lg); }
.mt-xl  { margin-top: var(--space-xl); }
.mt-2xl { margin-top: var(--space-2xl); }

.mb-sm  { margin-bottom: var(--space-sm); }
.mb-md  { margin-bottom: var(--space-md); }
.mb-lg  { margin-bottom: var(--space-lg); }
.mb-xl  { margin-bottom: var(--space-xl); }
.mb-2xl { margin-bottom: var(--space-2xl); }


/* ---------- Season Guide ---------- */
.season-tabs {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.season-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: var(--space-md) var(--space-2xl);
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.2s;
    font-family: var(--font-heading);
}

.season-tab:hover {
    border-color: var(--accent);
    background: var(--bg-elevated);
}

.season-tab.active {
    border-color: var(--accent);
    background: rgba(0, 160, 176, 0.1);
    box-shadow: 0 0 20px var(--accent-glow);
}

.season-tab-num {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.season-tab.active .season-tab-num {
    color: var(--accent);
}

.season-tab-count {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-muted);
    font-family: var(--font-body);
}

.season-panel {
    display: none;
}

.season-panel.active {
    display: block;
}

.season-episode-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
}

.season-episode-row {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding: var(--space-md) var(--space-lg);
    background: var(--bg-card);
    transition: background 0.15s;
    text-decoration: none;
    color: inherit;
}

a.season-episode-row:hover {
    background: var(--bg-elevated);
}

.season-episode-row.upcoming {
    opacity: 0.6;
}

.season-episode-row.next-up {
    opacity: 1;
    background: rgba(0, 160, 176, 0.06);
    border-left: 3px solid var(--accent);
}

.season-ep-number {
    width: 36px;
    text-align: center;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-muted);
    flex-shrink: 0;
}

.next-badge {
    font-size: 0.6rem;
    font-weight: 800;
    color: var(--bg);
    background: var(--accent);
    padding: 2px 8px;
    border-radius: 4px;
    letter-spacing: 0.05em;
}

.season-ep-thumb {
    width: 100px;
    height: 56px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
    background: var(--bg-surface);
}

.season-ep-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.season-ep-thumb-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.season-ep-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.15s;
    font-size: 0.85rem;
    color: #fff;
}

a.season-episode-row:hover .season-ep-play {
    opacity: 1;
}

.season-ep-info {
    flex: 1;
    min-width: 0;
}

.season-ep-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.season-ep-meta {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-top: 2px;
    font-size: 0.78rem;
    color: var(--text-muted);
}

.season-ep-guest {
    color: var(--accent);
}

.season-ep-action {
    flex-shrink: 0;
    color: var(--text-muted);
    font-size: 0.85rem;
}

a.season-episode-row:hover .season-ep-action {
    color: var(--accent);
}

.s2-guide-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

.s2-guide-images img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
}

@media (max-width: 640px) {
    .s2-guide-images {
        grid-template-columns: 1fr;
    }
}

.upcoming-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .season-tabs {
        flex-direction: column;
        gap: var(--space-sm);
    }

    .season-tab {
        flex-direction: row;
        justify-content: center;
        gap: var(--space-sm);
        padding: var(--space-sm) var(--space-lg);
    }

    .season-ep-thumb {
        width: 72px;
        height: 40px;
    }

    .season-episode-row {
        gap: var(--space-md);
        padding: var(--space-sm) var(--space-md);
    }

    .season-ep-title {
        font-size: 0.88rem;
    }

    .season-ep-meta {
        flex-wrap: wrap;
        gap: var(--space-sm);
    }
}


/* ---------- Responsive ---------- */

/* Tablet */
@media (max-width: 1200px) {
    .nav-desktop a {
        font-size: 0.85rem;
        padding: var(--space-xs) var(--space-sm);
    }

    .nav-desktop .nav-cta {
        padding: var(--space-xs) var(--space-md);
    }

    .nav-desktop {
        gap: var(--space-sm);
    }

    .site-logo img {
        height: 140px;
        top: 36px;
    }
}

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

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

    .nav-desktop a {
        font-size: 0.8rem;
        padding: var(--space-xs) var(--space-xs);
    }

    .nav-desktop {
        gap: var(--space-xs);
    }

    .site-logo img {
        height: 120px;
        top: 28px;
    }
}

@media (max-width: 900px) {
    .nav-desktop {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    .site-logo img {
        height: 120px;
        top: 28px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --header-height: 64px;
    }

    .hero {
        min-height: auto;
        padding-bottom: var(--space-2xl);
    }

    .hero-split {
        grid-template-columns: 1fr;
    }

    /* Reorder: image first, then content */
    .hero-image {
        order: -1;
        padding-top: var(--space-lg);
        margin-top: 48px;
    }

    .hero-content {
        padding: 0 var(--space-md);
        padding-top: var(--space-sm);
    }

    .hero-image img {
        max-width: 100%;
    }

    .hero-image-wrapper {
        max-width: 100%;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-season-badge {
        font-size: 0.7rem;
        padding: var(--space-xs) var(--space-md);
        letter-spacing: 0.05em;
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    /* Flip cards on mobile */
    .flip-card {
        min-height: auto;
    }

    .flip-card-inner {
        min-height: auto;
        position: relative;
    }

    .flip-card-front,
    .flip-card-back {
        position: relative;
    }

    .flip-card-back {
        display: none;
    }

    .flip-card.flipped .flip-card-front {
        display: none;
    }

    .flip-card.flipped .flip-card-back {
        display: flex;
    }

    .flip-card.flipped .flip-card-inner {
        transform: none;
    }

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

    .episode-card .episode-thumb {
        aspect-ratio: 16/9;
    }

    .section {
        padding: var(--space-2xl) 0;
    }

    .container {
        padding: 0 var(--space-lg);
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }

    .footer-bottom .flex {
        flex-direction: column;
        align-items: center;
    }

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

    .newsletter-section {
        padding: var(--space-2xl) var(--space-lg);
    }

    /* Logo sizing for mobile */
    .site-logo img {
        height: 160px;
        filter: drop-shadow(0 0 24px var(--accent-glow));
        top: 24px;
    }

    /* Topic tags wrap nicely */
    .topic-tag {
        font-size: 0.75rem;
    }

    /* Section headers */
    .section-header.flex-between {
        flex-direction: column;
        gap: var(--space-md);
        align-items: flex-start;
    }

    /* Host photos smaller on mobile */
    .host-card .host-photo {
        width: 120px;
        height: 120px;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .platform-links {
        flex-direction: column;
    }

    .platform-btn {
        justify-content: center;
    }

    .host-card {
        padding: var(--space-lg);
    }

    .clip-card {
        aspect-ratio: 9/14;
    }

    .site-logo img {
        height: 120px;
        top: 16px;
    }

    .hero-content {
        padding-top: 96px;
    }

    .hero-season-badge {
        font-size: 0.6rem;
    }

    h1 {
        font-size: 1.75rem;
    }

    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}
