/* ============================================
   CSS Variables & Base Styles
   ============================================ */

:root {
    /* Color Palette */
    --deep-charcoal: #292F36;
    --ivory-gray: #D4D9DA;
    --burgundy: #582630;
    --teal: #003844;
    --muted-gold: #8D775C;
    
    /* Typography */
    --font-header: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Hero Carousel Images */
    --sr-slide-1-bg: url('../images/listen-now-bg.jpg');
    --sr-slide-2-image: url('../images/about-me image.jpg');
    --sr-episode-image: url('../images/latest-ep-image.jpg');
    /* Audio URL: Add direct MP3 URL here (e.g., 'https://example.com/episode.mp3') */
    /* Or set via WordPress API. Format: Direct URL, not wrapped in url() */
    --sr-episode-audio: '';
    /* Merch slide background: Update with your merch background image */
    --sr-slide-merch-bg: url('../images/listen-now-bg.jpg');
}

/* ============================================
   Reset & Base Styles
   ============================================ */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--deep-charcoal);
    background-color: #ffffff;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-header);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
    color: var(--deep-charcoal);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
}

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

p {
    margin-bottom: var(--spacing-sm);
    color: var(--deep-charcoal);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

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

ul {
    list-style: none;
}

/* ============================================
   Navigation
   ============================================ */

.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    z-index: 1000;
    padding: var(--spacing-md) 0;
    transition: var(--transition-smooth);
}

.main-nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    padding: var(--spacing-sm) 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo a {
    font-family: var(--font-header);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--burgundy);
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

.nav-menu a {
    font-weight: 500;
    color: var(--deep-charcoal);
    padding: var(--spacing-xs) var(--spacing-sm);
    position: relative;
    transition: var(--transition-smooth);
    text-decoration: none;
}

/* Light text for transparent nav */
.main-nav:not(.scrolled) .nav-menu a {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.main-nav:not(.scrolled) .nav-logo a {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: var(--spacing-sm);
    right: var(--spacing-sm);
    height: 2px;
    background: var(--burgundy);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    transform: scaleX(1);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--burgundy);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--deep-charcoal);
    transition: var(--transition-smooth);
}

/* ============================================
   Hero Carousel (WordPress Style)
   Mobile-First Design
   ============================================ */

/* Mobile-first: Start with smaller height for mobile devices using dvh */
.sr-hero-carousel {
    position: relative;
    min-height: 60dvh;
    width: 100%;
    overflow: hidden;
    margin-top: 0;
}

/* Overlay removed - no blur effects */

.sr-hero__viewport {
    position: relative;
    min-height: 60dvh;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.sr-hero__track {
    display: flex;
    height: 100%;
    width: 100%;
    transform: translateX(0%);
    transition: transform 360ms ease-in-out;
    touch-action: pan-y;
    will-change: transform;
}

.sr-hero__slide {
    flex: 0 0 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1.5rem;
    min-height: 60dvh;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

/* Ensure content is vertically centered on mobile */
.sr-hero__content--centered {
    justify-content: center;
    min-height: auto;
    padding: 1rem 0;
}

/* Tablet and larger mobile devices (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    .sr-hero-carousel {
        min-height: 70dvh;
    }
    
    .sr-hero__viewport {
        min-height: 70dvh;
    }
    
    .sr-hero__slide {
        min-height: 70dvh;
    }
    
    .sr-hero__content--centered {
        min-height: auto;
    }
}

/* Desktop: Increase to 100vh for larger screens (769px and up) */
@media (min-width: 769px) {
    .sr-hero-carousel {
        min-height: 100vh;
    }
    
    .sr-hero__viewport {
        min-height: 100vh;
    }
    
    .sr-hero__slide {
        min-height: 100vh;
        padding: 4rem 2rem;
    }
    
    .sr-hero__content--centered {
        min-height: 100vh;
        justify-content: center;
    }
    
    .sr-hero__title {
        font-size: clamp(3.5rem, 6vw, 4.75rem);
        line-height: 1.05;
    }
    
    .sr-hero__tagline {
        font-size: clamp(1.05rem, 2.5vw, 1.25rem);
    }
    
    .sr-hero__nav {
        height: 56px;
        width: 56px;
    }
}

.sr-hero__slide--plant {
    background-image: var(--sr-slide-1-bg);
}

.sr-hero__slide--about {
    background-image: linear-gradient(135deg, rgba(255,255,255,0.96) 0%, rgba(235,243,245,0.96) 100%);
}

.sr-hero__slide--episodes {
    background-image: linear-gradient(135deg, rgba(255,255,255,0.98) 0%, rgba(245,250,252,0.98) 100%);
}

/* Merch Store Slide - No background */
.sr-hero__slide--merch {
    background: transparent;
}

/* Contact Slide */
.sr-hero__slide--contact {
    background-image: linear-gradient(135deg, rgba(255,255,255,0.96) 0%, rgba(235,243,245,0.96) 100%);
}

/* Social Icons Container - Modern Design */
.sr-contact__social {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.sr-social__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
    color: var(--deep-charcoal);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.sr-social__icon:hover,
.sr-social__icon:focus-visible {
    background: linear-gradient(135deg, var(--teal) 0%, var(--burgundy) 100%);
    color: #ffffff;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 24px rgba(0, 56, 68, 0.25);
    outline: none;
}

.sr-social__icon svg {
    width: 26px;
    height: 26px;
}

.sr-hero__content {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    z-index: 2;
}

/* Centered content for Listen Now, Merch, and Contact slides */
.sr-hero__content--centered {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.sr-hero__title {
    margin: 0 0 0.75rem 0;
    font-family: var(--font-header);
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--deep-charcoal);
    font-size: clamp(1.5rem, 8vw, 2.5rem);
    line-height: 1.1;
    animation: fadeInUp 1s ease 0.7s both;
}

.sr-hero__tagline {
    margin: 0 0 1.25rem 0;
    color: var(--deep-charcoal);
    font-size: clamp(0.9rem, 3.5vw, 1.05rem);
    font-style: italic;
    font-family: var(--font-body);
    animation: fadeInUp 1s ease 0.9s both;
}

.sr-hero__cta {
    display: inline-block;
    background-color: var(--teal);
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 999px;
    padding: 0.75rem 1.25rem;
    box-shadow: 0 2px 0 rgba(0,0,0,0.15), inset 0 -2px 0 rgba(0,0,0,0.15);
    transition: background-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: clamp(0.85rem, 2.5vw, 1rem);
    animation: fadeInUp 1s ease 1.1s both;
}

.sr-hero__cta:hover,
.sr-hero__cta:focus-visible {
    background-color: var(--burgundy);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.18), inset 0 -2px 0 rgba(0,0,0,0.15);
    outline: none;
}

.sr-hero__cta--outline {
    background-color: transparent;
    color: var(--teal);
    border: 2px solid rgba(0, 56, 68, 0.4);
    box-shadow: none;
    padding: 0.85rem 1.6rem;
}

.sr-hero__cta--outline:hover,
.sr-hero__cta--outline:focus-visible {
    background-color: rgba(0, 56, 68, 0.1);
    color: var(--burgundy);
    transform: translateY(-1px);
    box-shadow: none;
}

/* Pill-shaped button for Merch Store */
.sr-hero__cta--pill {
    border-radius: 999px;
    padding: 0.9rem 2rem;
}

/* Email button style */
.sr-hero__cta--email {
    margin-top: 1.5rem;
}

/* About slide specific layout */
.sr-hero__content--about {
    width: 100%;
}

.sr-about {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    align-items: center;
    text-align: left;
    width: min(100%, 900px);
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.82);
    border-radius: 20px;
    padding: clamp(1rem, 2.5vw, 1.75rem);
    box-shadow: 0 22px 48px rgba(18, 26, 33, 0.12);
    max-width: 900px;
}

.sr-about__media {
    width: min(240px, 65vw);
    aspect-ratio: 3 / 4;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(18, 26, 33, 0.2);
    background: linear-gradient(135deg, rgba(11,74,74,0.15) 0%, rgba(11,74,74,0.05) 100%);
    flex: 0 0 auto;
}

.sr-about__image {
    width: 100%;
    height: 100%;
    background-image: var(--sr-slide-2-image);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.sr-about__body {
    max-width: 560px;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    color: #24323a;
    width: 100%;
}

.sr-about__text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.sr-about__text-truncated {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
    line-height: 1.6;
    font-family: var(--font-body);
    font-size: clamp(0.95rem, 2vw, 1.05rem);
}

.sr-about__text-wrapper.expanded .sr-about__text-truncated {
    display: block;
    -webkit-line-clamp: none;
}

.sr-about__read-more {
    margin-top: 0.5rem;
    cursor: pointer;
    border: none;
    font-family: var(--font-body);
}

.sr-about__read-more.expanded::after {
    content: ' Less';
}

.sr-about__eyebrow {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.8rem;
    color: rgba(18, 26, 33, 0.65);
    font-family: var(--font-body);
}

.sr-about__heading {
    margin: 0;
    font-family: var(--font-header);
    font-size: clamp(1.75rem, 6vw, 2.5rem);
    line-height: 1.2;
    color: var(--deep-charcoal);
    text-transform: uppercase;
}

.sr-about__body p {
    margin: 0;
    line-height: 1.6;
    font-family: var(--font-body);
    font-size: clamp(0.95rem, 2vw, 1.05rem);
}

/* Episodes slide styles */
.sr-hero__content--episodes {
    width: 100%;
}

.sr-episodes {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: min(100%, 960px);
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 20px;
    padding: clamp(1rem, 2.5vw, 2rem);
    box-shadow: 0 22px 48px rgba(18, 26, 33, 0.12);
}

.sr-episode__content {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    align-items: center;
    text-align: left;
}

.sr-episode__media {
    width: min(320px, 75vw);
    aspect-ratio: 1 / 1;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(18, 26, 33, 0.2);
    background: linear-gradient(135deg, rgba(11,74,74,0.15) 0%, rgba(11,74,74,0.05) 100%);
    flex: 0 0 auto;
}

.sr-episode__image {
    width: 100%;
    height: 100%;
    background-image: var(--sr-episode-image);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.sr-episode__body {
    max-width: 560px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: #24323a;
    width: 100%;
}

.sr-episode__eyebrow {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.8rem;
    color: rgba(18, 26, 33, 0.65);
    display: inline-block;
    background: rgba(235, 243, 245, 0.8);
    padding: 0.4rem 0.8rem;
    border-radius: 12px;
    width: fit-content;
    font-family: var(--font-body);
}

.sr-episode__title {
    margin: 0;
    font-family: var(--font-header);
    font-size: clamp(1.75rem, 6vw, 2.5rem);
    line-height: 1.2;
    color: var(--deep-charcoal);
    font-weight: 700;
}

.sr-episode__description {
    margin: 0;
    line-height: 1.6;
    color: #24323a;
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    font-family: var(--font-body);
}

.sr-episode__date {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(18, 26, 33, 0.6);
    font-family: var(--font-body);
}

/* MP3 Player Styles */
.sr-player {
    margin-top: 1rem;
    width: 100%;
}

.sr-player__container {
    background: linear-gradient(135deg, var(--teal) 0%, var(--burgundy) 100%);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 12px 32px rgba(0, 56, 68, 0.3);
}

.sr-player__controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.sr-player__btn {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    border-radius: 50%;
    color: #ffffff;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: background-color 160ms ease, transform 160ms ease;
    flex-shrink: 0;
    font-family: var(--font-body);
}

.sr-player__btn:hover,
.sr-player__btn:focus-visible {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
    outline: none;
}

.sr-player__btn--skip-back,
.sr-player__btn--skip-forward {
    width: 40px;
    height: 40px;
    font-size: 0.75rem;
    font-weight: 600;
}

.sr-player__btn--play {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.25);
    font-size: 1.2rem;
    margin-left: auto;
}

.sr-player__btn--play:hover,
.sr-player__btn--play:focus-visible {
    background: rgba(255, 255, 255, 0.35);
}

.sr-player__progress-wrapper {
    flex: 1;
    min-width: 120px;
    display: flex;
    align-items: center;
}

.sr-player__progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.sr-player__progress-fill {
    height: 100%;
    width: 0%;
    background: #ffffff;
    border-radius: 2px;
    transition: width 100ms linear;
}

.sr-player__time {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
    min-width: 50px;
    text-align: center;
    font-variant-numeric: tabular-nums;
    font-family: var(--font-body);
}

.sr-player__audio {
    display: none;
}

/* Side navigation buttons */
.sr-hero__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 48px;
    width: 48px;
    border-radius: 999px;
    background-color: var(--teal);
    color: #ffffff;
    border: none;
    display: grid;
    place-items: center;
    cursor: pointer;
    box-shadow: 0 2px 0 rgba(0,0,0,0.15), inset 0 -2px 0 rgba(0,0,0,0.15);
    transition: background-color 160ms ease, transform 160ms ease, box-shadow 160ms ease, opacity 160ms ease;
    opacity: 0.95;
    z-index: 10;
    font-size: 1.2rem;
}

.sr-hero__nav:hover,
.sr-hero__nav:focus-visible {
    background-color: var(--burgundy);
    transform: translateY(calc(-50% - 1px));
    box-shadow: 0 4px 8px rgba(0,0,0,0.18), inset 0 -2px 0 rgba(0,0,0,0.15);
    outline: none;
}

.sr-hero__nav--prev {
    left: 1rem;
}

.sr-hero__nav--next {
    right: 1rem;
}

/* ============================================
   Parallax Sections
   ============================================ */

.parallax-section {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: var(--spacing-xl) var(--spacing-md);
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: brightness(0.6);
    will-change: transform;
}

.parallax-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: var(--spacing-lg);
}

.parallax-content h2 {
    color: white;
    margin-bottom: var(--spacing-md);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.parallax-content p {
    color: var(--ivory-gray);
    font-size: 1.1rem;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

/* ============================================
   About Me Section
   ============================================ */

.about-section {
    padding: var(--spacing-xl) var(--spacing-md);
    background: #f8f8f8;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
    background: white;
    border-radius: 15px;
    padding: var(--spacing-lg);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.about-image {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border-radius: 10px;
    overflow: hidden;
}

.about-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--ivory-gray), #e0e0e0);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-text {
    padding: var(--spacing-md);
}

.about-subheading {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--deep-charcoal);
    margin-bottom: var(--spacing-sm);
    text-align: center;
}

.about-title {
    font-family: var(--font-header);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--deep-charcoal);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
    text-align: center;
}

.about-title br {
    display: block;
}

.about-body {
    color: var(--deep-charcoal);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.about-body p {
    margin-bottom: var(--spacing-md);
    font-size: 1rem;
}

.btn-learn-more {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-md);
    border: 2px solid var(--deep-charcoal);
    color: var(--deep-charcoal);
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
    font-family: var(--font-body);
}

.btn-learn-more:hover {
    background: var(--deep-charcoal);
    color: white;
}

/* ============================================
   Podcast Section
   ============================================ */

.podcast-section {
    padding: var(--spacing-xl) var(--spacing-md);
    background: #f8f8f8;
    min-height: 60vh;
}

.podcast-container {
    max-width: 1000px;
    margin: 0 auto;
}

.podcast-heading {
    font-family: var(--font-header);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--deep-charcoal);
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.podcast-player-wrapper {
    background: white;
    border-radius: 15px;
    padding: var(--spacing-lg);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    min-height: 400px;
}

.podcast-loading {
    text-align: center;
    padding: var(--spacing-xl) 0;
    color: var(--deep-charcoal);
}

.podcast-loading p {
    margin-bottom: var(--spacing-xs);
    font-size: 1.1rem;
}

.podcast-fetching {
    color: var(--muted-gold);
    font-size: 0.9rem;
}

.podcast-player {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.podcast-episode-info {
    margin-bottom: var(--spacing-md);
}

.podcast-category {
    display: inline-block;
    padding: var(--spacing-xs) var(--spacing-sm);
    background: var(--ivory-gray);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--deep-charcoal);
    margin-bottom: var(--spacing-sm);
}

.podcast-episode-title {
    font-family: var(--font-header);
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--deep-charcoal);
    margin-bottom: var(--spacing-sm);
    line-height: 1.3;
}

.podcast-episode-description {
    color: var(--deep-charcoal);
    line-height: 1.6;
    margin-bottom: var(--spacing-sm);
}

.podcast-episode-date {
    color: var(--muted-gold);
    font-size: 0.9rem;
}

.audio-player {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: var(--teal);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: 8px;
    margin-top: var(--spacing-md);
}

.audio-skip {
    background: transparent;
    border: none;
    color: white;
    font-weight: 600;
    cursor: pointer;
    padding: var(--spacing-xs);
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.audio-skip:hover {
    opacity: 0.8;
}

.audio-progress {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.audio-progress-bar {
    height: 100%;
    width: 0%;
    background: white;
    transition: width 0.1s linear;
}

.audio-time {
    color: white;
    font-weight: 500;
    min-width: 50px;
    text-align: center;
    font-size: 0.9rem;
}

.audio-play-pause {
    background: white;
    border: none;
    color: var(--teal);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.audio-play-pause:hover {
    transform: scale(1.1);
}

.audio-close {
    background: transparent;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: var(--spacing-xs);
    line-height: 1;
    transition: var(--transition-smooth);
}

.audio-close:hover {
    opacity: 0.8;
}

/* ============================================
   Episodes Section (Legacy - can be removed)
   ============================================ */

.episodes-section {
    padding: var(--spacing-xl) var(--spacing-md);
    background: linear-gradient(to bottom, #ffffff, var(--ivory-gray));
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-header h2 {
    color: var(--deep-charcoal);
    margin-bottom: var(--spacing-sm);
}

.section-header p {
    color: var(--muted-gold);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.episodes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.episode-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.episode-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.episode-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: var(--teal);
}

.episode-content {
    padding: var(--spacing-md);
}

.episode-date {
    color: var(--muted-gold);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: var(--spacing-xs);
}

.episode-title {
    font-family: var(--font-header);
    font-size: 1.5rem;
    color: var(--deep-charcoal);
    margin-bottom: var(--spacing-xs);
}

.episode-excerpt {
    color: var(--deep-charcoal);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-sm);
}

.episode-link {
    color: var(--burgundy);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    transition: var(--transition-smooth);
}

.episode-link:hover {
    gap: var(--spacing-sm);
    color: var(--teal);
}

/* ============================================
   Contact Page
   ============================================ */

.contact-section {
    padding: var(--spacing-xl) var(--spacing-md);
    background: white;
    min-height: 80vh;
}

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: start;
}

.contact-info h2 {
    margin-bottom: var(--spacing-md);
}

.contact-info p {
    margin-bottom: var(--spacing-md);
    color: var(--deep-charcoal);
}

.contact-details {
    margin-top: var(--spacing-md);
}

.contact-details .detail-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}

.contact-details .detail-item svg {
    width: 20px;
    height: 20px;
    fill: var(--burgundy);
}

.contact-form {
    background: var(--ivory-gray);
    padding: var(--spacing-md);
    border-radius: 15px;
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
    color: var(--deep-charcoal);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: var(--spacing-sm);
    border: 2px solid transparent;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-smooth);
    background: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--burgundy);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: var(--spacing-sm) var(--spacing-md);
    background: var(--burgundy);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-submit:hover {
    background: var(--teal);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(88, 38, 48, 0.3);
}

/* ============================================
   Merch Store
   ============================================ */

.merch-section {
    padding: var(--spacing-xl) var(--spacing-md);
    background: linear-gradient(to bottom, #ffffff, var(--ivory-gray));
    min-height: 80vh;
}

.merch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.merch-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.merch-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.merch-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    background: linear-gradient(135deg, var(--teal), var(--burgundy));
}

.merch-details {
    padding: var(--spacing-md);
}

.merch-title {
    font-family: var(--font-header);
    font-size: 1.25rem;
    color: var(--deep-charcoal);
    margin-bottom: var(--spacing-xs);
}

.merch-price {
    color: var(--burgundy);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.merch-description {
    color: var(--deep-charcoal);
    font-size: 0.9rem;
    margin-bottom: var(--spacing-sm);
}

.btn-add-to-cart {
    width: 100%;
    padding: var(--spacing-sm);
    background: var(--burgundy);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-add-to-cart:hover {
    background: var(--teal);
    transform: translateY(-2px);
}

/* ============================================
   About Extended Parallax Section
   ============================================ */

.about-extended {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    z-index: 2000;
    overflow-y: auto;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.about-extended.active {
    opacity: 1;
}

.about-extended__container {
    min-height: 100vh;
    padding: 4rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-extended__content {
    max-width: 1000px;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 32px;
    padding: 3rem;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
    transform: translateY(50px);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-extended.active .about-extended__content {
    transform: translateY(0);
}

.about-extended__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

.about-extended__title {
    font-family: var(--font-header);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--deep-charcoal);
    margin: 0;
    text-transform: uppercase;
}

.about-extended__close {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--teal);
    color: #ffffff;
    border: none;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-extended__close:hover {
    background: var(--burgundy);
    transform: rotate(90deg) scale(1.1);
}

.about-extended__body {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-extended__image-wrapper {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    aspect-ratio: 3 / 4;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 48px rgba(18, 26, 33, 0.25);
}

.about-extended__image {
    width: 100%;
    height: 100%;
    background-image: var(--sr-slide-2-image);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.about-extended__text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-extended__text p {
    margin: 0;
    line-height: 1.8;
    font-family: var(--font-body);
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: var(--deep-charcoal);
}

@media (min-width: 769px) {
    .about-extended__body {
        flex-direction: row;
        align-items: flex-start;
        gap: 3rem;
    }
    
    .about-extended__image-wrapper {
        width: 40%;
        max-width: 360px;
        margin: 0;
    }
    
    .about-extended__text {
        width: 60%;
    }
}

/* ============================================
   Footer
   ============================================ */

.main-footer {
    background: #f8f8f8;
    color: var(--deep-charcoal);
    padding: var(--spacing-md) var(--spacing-md);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

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

.footer-bottom p {
    color: var(--deep-charcoal);
    font-size: 0.9rem;
    margin: 0;
}

/* ============================================
   Animations
   ============================================ */

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

.fade-in {
    animation: fadeInUp 1s ease both;
}

/* ============================================
   Responsive Design
   ============================================ */

/* Desktop: Layout adjustments for About and Episodes slides */
@media (min-width: 769px) {
    .sr-about {
        flex-direction: row;
        align-items: stretch;
        gap: clamp(2rem, 6vw, 3.5rem);
        max-width: 960px;
    }

    .sr-about__media {
        width: 40%;
        max-width: 360px;
        align-self: stretch;
    }

    .sr-about__body {
        width: 60%;
        justify-content: center;
        align-self: center;
    }

    .sr-hero__content--about {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100%;
    }

    .sr-episode__content {
        flex-direction: row;
        align-items: stretch;
        gap: clamp(2rem, 6vw, 3.5rem);
    }

    .sr-episode__media {
        width: 40%;
        max-width: 360px;
        align-self: stretch;
    }

    .sr-episode__body {
        width: 60%;
        justify-content: center;
        align-self: center;
    }

    .sr-hero__content--episodes {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100%;
    }
}

/* Mobile: Navigation adjustments */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 60px;
        left: -100%;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: var(--transition-smooth);
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: var(--spacing-md) 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }
    
    .sr-hero__nav {
        height: 40px;
        width: 40px;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-image {
        min-height: 300px;
    }

    .episodes-grid,
    .merch-grid {
        grid-template-columns: 1fr;
    }
}

/* Small mobile devices (480px and below) - using dvh */
@media (max-width: 480px) {
    .sr-hero-carousel {
        min-height: 55dvh;
    }
    
    .sr-hero__viewport {
        min-height: 55dvh;
    }
    
    .sr-hero__slide {
        min-height: 55dvh;
    }
    
    :root {
        --spacing-lg: 2rem;
        --spacing-xl: 3rem;
    }

    .parallax-section {
        min-height: 400px;
    }
}

