/* ======================================================
   FALSE CAST PODCAST — Design System
   Dark outdoors aesthetic · Hunter green accents · River blues
   ====================================================== */

/* ---------- Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,700;0,800;1,700&display=swap');

/* ---------- Custom Properties ---------- */
:root {
    /* Colors */
    --c-bg: #0b0f0e;
    --c-bg-alt: #111916;
    --c-surface: #182019;
    --c-surface-2: #1e2a22;
    --c-amber: #2a8f4e;
    --c-amber-glow: #34a85a;
    --c-amber-dark: #1a6b38;
    --c-green-bright: #3dcc70;
    --c-river: #3a7ca5;
    --c-river-deep: #1f4c6b;
    --c-moss: #4a7c59;
    --c-moss-dark: #2c5435;
    --c-text: #e8e4dc;
    --c-text-dim: #9a968e;
    --c-text-bright: #faf7f0;
    --c-white: #ffffff;
    --c-overlay: rgba(11, 15, 14, 0.85);

    /* Typography */
    --f-display: 'Playfair Display', Georgia, serif;
    --f-body: 'Outfit', -apple-system, sans-serif;

    /* Spacing */
    --gap: 1.5rem;
    --gap-lg: 3rem;
    --gap-xl: 5rem;
    --radius: 12px;
    --radius-lg: 20px;

    /* Transitions */
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --t-fast: 0.2s;
    --t-med: 0.4s;
    --t-slow: 0.7s;
}

/* ---------- Light Theme ---------- */
[data-theme="light"] {
    --c-bg: #f5f3ee;
    --c-bg-alt: #eae7e0;
    --c-surface: #ffffff;
    --c-surface-2: #f0ede6;
    --c-text: #2c2c2c;
    --c-text-dim: #6b6b6b;
    --c-text-bright: #1a1a1a;
    --c-white: #ffffff;
    --c-overlay: rgba(245, 243, 238, 0.9);
}

[data-theme="light"] .site-header {
    background: rgba(245, 243, 238, 0.85) !important;
    border-bottom-color: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .hero-bg img {
    filter: brightness(0.55) saturate(0.9);
}

[data-theme="light"] .hero-content,
[data-theme="light"] .hero h1,
[data-theme="light"] .hero-tagline,
[data-theme="light"] .hero-badge,
[data-theme="light"] .hero-stat-label {
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

[data-theme="light"] .hero h1 {
    color: #ffffff;
}

[data-theme="light"] .hero-tagline {
    color: #e0e0e0;
}

[data-theme="light"] .hero-stat-num {
    color: var(--c-amber);
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

[data-theme="light"] .hero-stat-label {
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

[data-theme="light"] .hero-badge {
    background: rgba(42, 143, 78, 0.25);
    border-color: rgba(42, 143, 78, 0.5);
    color: #ffffff;
}

[data-theme="light"] .nav-toggle span {
    background: var(--c-text);
}

[data-theme="light"] .ep-card,
[data-theme="light"] .social-card,
[data-theme="light"] .gear-card,
[data-theme="light"] .email-box {
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .listen-btn {
    border-color: rgba(0, 0, 0, 0.12);
}

[data-theme="light"] .sponsor-box {
    border-color: rgba(42, 143, 78, 0.2);
}

[data-theme="light"] .sponsor-perk {
    background: rgba(42, 143, 78, 0.06);
    border-color: rgba(42, 143, 78, 0.12);
}

[data-theme="light"] .btn-primary {
    color: #ffffff;
}

[data-theme="light"] .email-form input {
    background: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.12);
    color: var(--c-text);
}

[data-theme="light"] .footer-bottom {
    border-top-color: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .site-footer {
    border-top-color: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .logo-for-dark {
    display: none !important;
}

.logo-for-light {
    display: none !important;
}

[data-theme="light"] .logo-for-light {
    display: block !important;
}

/* ---------- Theme Toggle Button ---------- */
.theme-toggle {
    background: none;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    cursor: pointer;
    padding: 6px 10px;
    font-size: 1.1rem;
    line-height: 1;
    transition: all var(--t-fast) var(--ease);
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: var(--c-white);
    font-style: normal;
}

.theme-toggle .icon-sun {
    color: #ffffff;
}

.theme-toggle .icon-moon {
    color: var(--c-amber);
}

.theme-toggle:hover {
    border-color: var(--c-amber);
    transform: scale(1.05);
}

[data-theme="light"] .theme-toggle {
    border-color: rgba(0, 0, 0, 0.15);
}

[data-theme="light"] .theme-toggle:hover {
    border-color: var(--c-amber);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--f-body);
    background: var(--c-bg);
    color: var(--c-text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    transition: background-color 0.3s ease, color 0.3s ease;
}

a {
    color: var(--c-amber);
    text-decoration: none;
    transition: color var(--t-fast) var(--ease);
}

a:hover {
    color: var(--c-amber-glow);
}

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

ul {
    list-style: none;
}

/* ---------- Utility ---------- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--gap);
}

.section-label {
    font-family: var(--f-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--c-amber);
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: var(--f-display);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--c-text-bright);
    line-height: 1.15;
    margin-bottom: 1rem;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--c-text-dim);
    max-width: 600px;
    line-height: 1.7;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.8rem;
    border-radius: 50px;
    font-family: var(--f-body);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: all var(--t-fast) var(--ease);
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--c-amber), var(--c-amber-dark));
    color: var(--c-white);
    box-shadow: 0 4px 20px rgba(42, 143, 78, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(42, 143, 78, 0.5);
    color: var(--c-white);
}

.btn-outline {
    background: transparent;
    color: var(--c-text);
    border: 1.5px solid rgba(232, 228, 220, 0.25);
}

.hero .btn-outline {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.4);
}

.hero .btn-outline:hover {
    border-color: var(--c-amber);
    color: var(--c-amber);
}

.btn-outline:hover {
    border-color: var(--c-amber);
    color: var(--c-amber);
    transform: translateY(-2px);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.06);
    color: var(--c-text);
    backdrop-filter: blur(10px);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.12);
    color: var(--c-text-bright);
}

/* ---------- HEADER / NAV ---------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    background: rgba(11, 15, 14, 0.7);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background var(--t-med) var(--ease);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.logo-img {
    height: 44px;
    max-height: 44px;
    max-width: 120px;
    width: auto;
    border-radius: 6px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.footer-logo-img {
    height: 70px;
    max-height: 70px;
    max-width: 180px;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
    mix-blend-mode: normal;
    opacity: 1;
    border-radius: 8px;
}

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

.nav-links a {
    color: var(--c-text-dim);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color var(--t-fast) var(--ease);
}

.nav-links a:hover {
    color: var(--c-text-bright);
}

.nav-cta {
    margin-left: 0.5rem;
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--c-text);
    border-radius: 2px;
    transition: all var(--t-fast) var(--ease);
}

/* ---------- HERO ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.35) saturate(0.85);
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(11, 15, 14, 0.3) 0%,
            rgba(11, 15, 14, 0.1) 30%,
            rgba(11, 15, 14, 0.6) 70%,
            var(--c-bg) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 8rem;
    padding-bottom: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* ---------- Hero Logo ---------- */
.hero-logo {
    text-align: center;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.hero-logo-img {
    max-width: 364px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.4));
    border-radius: 12px;
    display: block;
    margin: 0 auto;
    mix-blend-mode: screen;
    opacity: 0.95;
}

@media (min-width: 769px) {
    .hero-logo-img {
        max-width: 455px;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 1rem;
    background: rgba(42, 143, 78, 0.12);
    border: 1px solid rgba(42, 143, 78, 0.25);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--c-amber);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero h1 {
    font-family: var(--f-display);
    font-size: clamp(3rem, 7vw, 5.5rem);
    color: var(--c-text-bright);
    line-height: 1.05;
    margin-bottom: 1.5rem;
    max-width: 700px;
}

.hero h1 .accent {
    color: var(--c-amber);
    font-style: italic;
}

.hero-tagline {
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    color: var(--c-text-dim);
    max-width: 550px;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    justify-content: center;
}

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

.hero-stat {
    text-align: left;
}

.hero-stat-num {
    font-family: var(--f-display);
    font-size: 1.6rem;
    color: var(--c-amber);
    font-weight: 700;
}

.hero-stat-label {
    font-size: 0.8rem;
    color: var(--c-text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ---------- LISTEN/SUBSCRIBE ROW ---------- */
.listen-row {
    padding: var(--gap-lg) 0;
    background: var(--c-bg-alt);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.listen-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.listen-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--c-text-dim);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-right: 1rem;
}

.listen-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.7rem 1.4rem;
    background: var(--c-surface);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    color: var(--c-text);
    font-weight: 500;
    font-size: 0.9rem;
    transition: all var(--t-fast) var(--ease);
}

.listen-btn:hover {
    background: var(--c-surface-2);
    border-color: var(--c-amber);
    color: var(--c-amber);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.listen-btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* ---------- FEATURED EPISODE ---------- */
.featured-ep {
    padding: var(--gap-xl) 0;
}

.featured-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--gap-lg);
    align-items: center;
}

.featured-video {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    aspect-ratio: 16/9;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.featured-video iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    border: none;
}

.featured-info .ep-number {
    font-size: 0.8rem;
    color: var(--c-amber);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.featured-info h3 {
    font-family: var(--f-display);
    font-size: 1.8rem;
    color: var(--c-text-bright);
    line-height: 1.25;
    margin-bottom: 1rem;
}

.featured-info .ep-desc {
    color: var(--c-text-dim);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.ep-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.ep-tag {
    padding: 0.3rem 0.8rem;
    background: rgba(42, 143, 78, 0.1);
    border: 1px solid rgba(42, 143, 78, 0.2);
    border-radius: 50px;
    font-size: 0.75rem;
    color: var(--c-amber);
    font-weight: 500;
}

/* ---------- RECENT EPISODES GRID ---------- */
.episodes-grid-section {
    padding: var(--gap-xl) 0;
    background: var(--c-bg-alt);
}

.episodes-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 2.5rem;
}

.ep-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--gap);
}

.ep-card {
    background: var(--c-surface);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--t-med) var(--ease);
    cursor: pointer;
}

.ep-card:hover {
    transform: translateY(-4px);
    border-color: rgba(42, 143, 78, 0.3);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.ep-card-thumb {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.ep-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--t-med) var(--ease);
}

.ep-card:hover .ep-card-thumb img {
    transform: scale(1.05);
}

.ep-card-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity var(--t-fast) var(--ease);
}

.ep-card:hover .ep-card-play {
    opacity: 1;
}

.ep-card-play svg {
    width: 48px;
    height: 48px;
    color: var(--c-white);
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
}

.ep-card-body {
    padding: 1.25rem;
}

.ep-card-body .ep-number {
    font-size: 0.7rem;
    color: var(--c-amber);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.4rem;
}

.ep-card-body h4 {
    font-size: 1rem;
    color: var(--c-text-bright);
    font-weight: 600;
    line-height: 1.35;
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ep-card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--c-text-dim);
}

.ep-card-meta svg {
    width: 14px;
    height: 14px;
}

/* ---------- ABOUT STRIP ---------- */
.about-strip {
    padding: var(--gap-xl) 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--gap-lg);
    align-items: center;
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
}

.about-text h2 {
    font-family: var(--f-display);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: var(--c-text-bright);
    margin-bottom: 1rem;
}

.about-text p {
    color: var(--c-text-dim);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.about-text .host-names {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
}

.host-names .host {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.host .host-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--c-amber);
}

.host .host-name {
    font-weight: 600;
    color: var(--c-text-bright);
    font-size: 0.95rem;
}

/* ---------- VIDEO STRIP (YouTube Featured) ---------- */
.video-strip {
    padding: var(--gap-xl) 0;
    background: var(--c-bg-alt);
}

.video-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 16/9;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 2rem;
}

.video-main iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    border: none;
}

.video-small-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap);
}

.video-small {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 16/9;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all var(--t-fast) var(--ease);
}

.video-small:hover {
    border-color: rgba(42, 143, 78, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    transform: translateY(-3px);
}

.video-small iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    border: none;
}

/* ---------- SOCIAL STRIP ---------- */
.social-strip {
    padding: var(--gap-xl) 0;
    text-align: center;
}

.social-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 769px) {
    .social-links {
        grid-template-columns: repeat(4, 1fr);
    }
}

.social-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem 1rem;
    background: var(--c-surface);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    transition: all var(--t-med) var(--ease);
}

.social-card:hover {
    transform: translateY(-4px);
    border-color: rgba(42, 143, 78, 0.3);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.social-card svg {
    width: 40px;
    height: 40px;
    color: var(--c-amber);
}

.social-card .social-name {
    font-weight: 600;
    color: var(--c-text-bright);
    font-size: 1rem;
}

.social-card .social-handle {
    font-size: 0.8rem;
    color: var(--c-text-dim);
}

/* ---------- EMAIL SIGNUP ---------- */
.email-signup {
    padding: var(--gap-xl) 0;
    background: var(--c-bg-alt);
}

.email-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
    background: var(--c-surface);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.email-box h2 {
    font-family: var(--f-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--c-text-bright);
    margin-bottom: 0.75rem;
}

.email-box p {
    color: var(--c-text-dim);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.email-form {
    display: flex;
    gap: 0.75rem;
    max-width: 480px;
    margin: 0 auto;
}

.email-form input {
    flex: 1;
    padding: 0.85rem 1.2rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: var(--c-text);
    font-family: var(--f-body);
    font-size: 0.95rem;
    outline: none;
    transition: border-color var(--t-fast) var(--ease);
}

.email-form input::placeholder {
    color: var(--c-text-dim);
}

.email-form input:focus {
    border-color: var(--c-amber);
}

/* ---------- GEAR / FRIENDS ---------- */
.gear-section {
    padding: var(--gap-xl) 0;
}

.gear-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: var(--gap);
    margin-top: 2rem;
}

.gear-card {
    padding: 1.5rem;
    background: var(--c-surface);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--t-med) var(--ease);
}

.gear-card:hover {
    transform: translateY(-3px);
    border-color: rgba(42, 143, 78, 0.25);
}

.gear-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.gear-card h4 {
    color: var(--c-text-bright);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.gear-card p {
    color: var(--c-text-dim);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.gear-links {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.gear-links a {
    display: block;
    padding: 0.4rem 0.7rem;
    background: rgba(42, 143, 78, 0.08);
    border: 1px solid rgba(42, 143, 78, 0.15);
    border-radius: 6px;
    color: var(--c-amber);
    font-size: 0.82rem;
    font-weight: 500;
    transition: all var(--t-fast) var(--ease);
    text-decoration: none;
}

.gear-links a:hover {
    background: rgba(42, 143, 78, 0.18);
    border-color: var(--c-amber);
    transform: translateX(4px);
}

/* ---------- SPONSOR / WORK WITH US ---------- */
.sponsor-section {
    padding: var(--gap-xl) 0;
    background: var(--c-bg-alt);
}

.sponsor-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gap-lg);
    padding: 3rem;
    background: linear-gradient(135deg, var(--c-surface), var(--c-surface-2));
    border: 1px solid rgba(42, 143, 78, 0.15);
    border-radius: var(--radius-lg);
    align-items: center;
}

.sponsor-text h2 {
    font-family: var(--f-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--c-text-bright);
    margin-bottom: 0.75rem;
}

.sponsor-text p {
    color: var(--c-text-dim);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.sponsor-perks {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.sponsor-perk {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 1.2rem;
    background: rgba(42, 143, 78, 0.06);
    border: 1px solid rgba(42, 143, 78, 0.12);
    border-radius: var(--radius);
    font-size: 0.9rem;
    color: var(--c-text);
}

.sponsor-perk svg {
    width: 18px;
    height: 18px;
    color: var(--c-amber);
    flex-shrink: 0;
}

/* ---------- FOOTER ---------- */
.site-footer {
    padding: 3rem 0 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: var(--gap-lg);
    margin-bottom: 2.5rem;
}

.footer-brand .logo {
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--c-text-dim);
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 280px;
}

.footer-col h5 {
    color: var(--c-text-bright);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
}

.footer-col a {
    display: block;
    color: var(--c-text-dim);
    font-size: 0.9rem;
    padding: 0.3rem 0;
    transition: color var(--t-fast) var(--ease);
}

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

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.8rem;
    color: var(--c-text-dim);
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.footer-socials a {
    color: var(--c-text-dim);
    transition: color var(--t-fast) var(--ease);
}

.footer-socials a:hover {
    color: var(--c-amber);
}

.footer-socials svg {
    width: 20px;
    height: 20px;
}

/* ---------- ANIMATIONS ---------- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity var(--t-slow) var(--ease), transform var(--t-slow) var(--ease);
}

.animate-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--c-bg);
        padding: 1.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        gap: 1rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .featured-grid,
    .about-grid,
    .sponsor-box {
        grid-template-columns: 1fr;
    }

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

    .ep-tags {
        justify-content: center;
    }

    .featured-info .btn {
        margin: 0 auto;
    }

    .video-small-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--gap);
    }

    .listen-inner {
        display: grid;
        display: -ms-grid;
        grid-template-columns: 1fr 1fr;
        -ms-grid-columns: 1fr 1fr;
        gap: 0.75rem;
        text-align: center;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 0 1rem;
    }

    .listen-label {
        grid-column: 1 / -1;
        margin-right: 0;
        margin-bottom: 0.25rem;
        text-align: center;
    }

    .listen-btn {
        justify-content: center;
        width: 100%;
        box-sizing: border-box;
    }

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

    .hero-stats {
        justify-content: center;
        gap: 1.5rem;
    }

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

    .hero-ctas {
        justify-content: center;
    }

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

    .hero-badge {
        margin-left: auto;
        margin-right: auto;
    }

    .episodes-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}