/* The Bourbon Road — Distillery Editorial Design */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

:root {
    /* Core palette */
    --black: #0D0906;
    --charcoal: #1A120D;
    --espresso: #231812;
    --mahogany: #3D2518;
    --walnut: #5A3A28;
    --amber: #C8842B;
    --amber-glow: #E09B30;
    --gold: #D4A748;
    --honey: #E8C468;
    --cream: #F5EBD8;
    --cream-light: #FAF6EE;
    --parchment: #EDE3D0;

    /* Semantic */
    --text-on-dark: #E8DFD0;
    --text-muted-dark: #9A8B78;
    --text-on-light: #2A1C12;
    --text-muted-light: #7A6B5A;
    --border-dark: rgba(200, 132, 43, 0.12);
    --border-light: rgba(90, 58, 40, 0.12);
    --surface-dark: rgba(255, 255, 255, 0.03);
    --surface-card: rgba(255, 255, 255, 0.95);
    --glow: rgba(200, 132, 43, 0.15);
    --glow-strong: rgba(200, 132, 43, 0.3);

    /* Typography */
    --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing scale */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 40px;
    --space-2xl: 64px;
    --space-3xl: 96px;

    /* Sizing */
    --max-width: 1180px;
    --header-height: 72px;
}

/* ============================================
   RESET & BASE
   ============================================ */

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

/* Skip navigation (accessibility) */
.skip-nav {
    position: absolute;
    top: -100%;
    left: 16px;
    z-index: 1000;
    padding: 12px 24px;
    background: var(--amber);
    color: var(--espresso);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 14px;
    border-radius: 0 0 8px 8px;
    text-decoration: none;
    transition: top 0.2s;
}

.skip-nav:focus {
    top: 0;
}

/* Focus visible (keyboard navigation) */
*:focus-visible {
    outline: 2px solid var(--amber);
    outline-offset: 2px;
}

a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
    outline: none;
}

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

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

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

body {
    font-family: var(--font-body);
    color: var(--text-on-light);
    background-color: var(--cream-light);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Grain texture overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

/* ============================================
   ANIMATIONS
   ============================================ */

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes glowPulse {
    0%, 100% { box-shadow: 0 0 30px var(--glow); }
    50% { box-shadow: 0 0 50px var(--glow-strong); }
}

/* ============================================
   HEADER
   ============================================ */

/* Cream bar above header — gives logo room to overflow upward */
.top-bar {
    height: 56px;
    background: var(--cream-light);
    position: sticky;
    top: 0;
    z-index: 99;
    overflow: visible;
}

.site-header {
    background: var(--charcoal);
    position: sticky;
    top: 56px;
    z-index: 100;
    border-bottom: 1px solid var(--border-dark);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    overflow: visible;
}

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

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.2s;
    position: relative;
    z-index: 102;
}

.logo-link:hover {
    opacity: 0.85;
}

.logo-img {
    width: 156px;
    height: 156px;
    border-radius: 18px;
    box-shadow:
        0 0 0 3px var(--charcoal),
        0 0 0 5px rgba(200, 132, 43, 0.3),
        0 8px 32px rgba(0, 0, 0, 0.5);
    margin-top: -42px;
    margin-bottom: -42px;
}

nav {
    display: flex;
    gap: 4px;
    align-items: center;
}

nav a {
    color: var(--parchment);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 18px;
    border-radius: 8px;
    transition: all 0.25s ease;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

nav a:hover {
    color: var(--cream);
    background: var(--surface-dark);
}

nav a.active {
    color: var(--amber-glow);
    background: rgba(200, 132, 43, 0.1);
}

nav .nav-search {
    display: flex;
    align-items: center;
    padding: 8px 12px;
}

/* Hamburger */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--cream);
    border-radius: 2px;
    transition: 0.3s;
}

/* ============================================
   HERO
   ============================================ */

.hero {
    background: var(--charcoal);
    position: relative;
    overflow: hidden;
    padding: 0;
}

/* Atmospheric radial glow behind logo */
.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(200, 132, 43, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

/* Subtle bottom border glow */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--amber), transparent);
    opacity: 0.4;
}

.hero-content {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 80px var(--space-lg) 88px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    animation: fadeIn 0.8s ease-out;
}

.hero-logo {
    width: 220px;
    height: 220px;
    border-radius: 28px;
    margin-bottom: var(--space-xl);
    box-shadow: 0 16px 64px rgba(0, 0, 0, 0.5);
    animation: scaleIn 0.6s ease-out, glowPulse 4s ease-in-out infinite;
    animation-delay: 0s, 1s;
}

.hero-tagline {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-muted-dark);
    margin-bottom: var(--space-xl);
    max-width: 520px;
    animation: fadeUp 0.7s ease-out 0.2s both;
}

/* Streaming Badges */
.stream-badges {
    display: flex;
    gap: 14px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    animation: fadeUp 0.7s ease-out 0.45s both;
}

.stream-badges a {
    display: block;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.stream-badges a:hover {
    transform: translateY(-2px);
    opacity: 0.85;
}

.stream-badge {
    height: 40px;
    width: auto;
    display: block;
}

/* ============================================
   MAIN CONTENT
   ============================================ */

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

/* Detail/content pages get a narrower container */
.container.episode-page,
.container.tasting-detail-page,
.container.blog-post-page {
    max-width: 920px;
}

/* Section Headings */
.section-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin: var(--space-2xl) 0 var(--space-xl);
    gap: var(--space-md);
}

.section-header:first-child {
    margin-top: 100px;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 600;
    color: var(--espresso);
    letter-spacing: -0.3px;
}

.section-header a {
    color: var(--amber);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: color 0.2s;
    white-space: nowrap;
}

.section-header a:hover {
    color: var(--walnut);
}

/* ============================================
   EPISODE CARDS (Homepage Grid)
   ============================================ */

.episodes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 20px;
    margin-bottom: var(--space-2xl);
}

.episode-card {
    background: var(--surface-card);
    border-radius: 16px;
    padding: 28px 28px 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 8px 24px rgba(0, 0, 0, 0.03);
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
    animation: fadeUp 0.5s ease-out both;
    display: flex;
    flex-direction: column;
}

.episode-card:nth-child(1) { animation-delay: 0.05s; }
.episode-card:nth-child(2) { animation-delay: 0.1s; }
.episode-card:nth-child(3) { animation-delay: 0.15s; }
.episode-card:nth-child(4) { animation-delay: 0.2s; }
.episode-card:nth-child(5) { animation-delay: 0.25s; }
.episode-card:nth-child(6) { animation-delay: 0.3s; }

/* Amber top accent line */
.episode-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--amber), var(--gold), var(--amber));
    opacity: 0;
    transition: opacity 0.35s;
}

.episode-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06), 0 16px 40px rgba(0, 0, 0, 0.06);
    transform: translateY(-4px);
    border-color: rgba(200, 132, 43, 0.2);
}

.episode-card:hover::before {
    opacity: 1;
}

.episode-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--text-muted-light);
    font-weight: 500;
}

.episode-number {
    background: var(--espresso);
    color: var(--amber-glow);
    padding: 4px 12px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.episode-type-bonus {
    background: linear-gradient(135deg, var(--amber), var(--gold));
    color: var(--espresso);
    padding: 4px 12px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.episode-card h3 {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--espresso);
    line-height: 1.35;
    letter-spacing: -0.2px;
}

.episode-card h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

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

.episode-description {
    font-size: 14px;
    color: var(--text-muted-light);
    line-height: 1.65;
    margin-bottom: var(--space-md);
    position: relative;
    max-height: calc(1.65em * 3);
    overflow: hidden;
}

.more-link {
    position: absolute;
    bottom: 0;
    right: 0;
    padding-left: 24px;
    background: linear-gradient(90deg, transparent, var(--surface-card) 30%);
    color: var(--amber);
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: color 0.2s;
}

.more-link:hover {
    color: var(--walnut);
}


.play-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    background: var(--espresso);
    color: var(--amber-glow);
    border: 1px solid var(--border-dark);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s ease;
    letter-spacing: 0.3px;
}

.play-btn:hover {
    background: var(--amber);
    color: var(--espresso);
    border-color: var(--amber);
    box-shadow: 0 4px 16px var(--glow);
}

/* Audio Player (card embedded) */
.audio-player {
    margin-top: auto;
    padding-top: 14px;
}

.audio-player audio {
    width: 100%;
    height: 36px;
    border-radius: 8px;
}

/* ============================================
   EPISODES LIST (Archive Page)
   ============================================ */

.episodes-list {
    margin-bottom: var(--space-2xl);
}

.episode-row {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 18px 24px;
    background: var(--surface-card);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    margin-bottom: 8px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    text-decoration: none;
    color: inherit;
}

.episode-row::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: var(--amber);
    border-radius: 0 2px 2px 0;
    transition: height 0.3s ease;
}

.episode-row:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border-color: rgba(200, 132, 43, 0.15);
}

.episode-row:hover::before {
    height: 60%;
}

.episode-row .episode-number {
    flex-shrink: 0;
    min-width: 56px;
    text-align: center;
}

.episode-row-body {
    flex: 1;
    min-width: 0;
}

.episode-row-body h3 {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 3px;
    color: var(--espresso);
    letter-spacing: -0.1px;
}

.episode-row:hover .episode-row-body h3 {
    color: var(--amber);
}

.episode-row-meta {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--text-muted-light);
    font-weight: 400;
}


/* Search/Filter */
.filter-bar {
    display: flex;
    gap: 16px;
    margin-bottom: var(--space-lg);
    align-items: center;
    flex-wrap: wrap;
}

.search-input {
    flex: 1;
    min-width: 240px;
    padding: 14px 24px;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 15px;
    background: var(--surface-card);
    color: var(--text-on-light);
    outline: none;
    transition: all 0.25s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

.search-input:focus {
    border-color: var(--amber);
    box-shadow: 0 0 0 3px var(--glow), 0 1px 3px rgba(0, 0, 0, 0.02);
}

.search-input::placeholder {
    color: var(--text-muted-light);
}

.episode-count {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-muted-light);
    padding: 14px 0;
    display: flex;
    align-items: center;
    font-weight: 500;
}

/* No-results message */
.no-results {
    text-align: center;
    padding: var(--space-3xl) var(--space-lg);
    color: var(--text-muted-light);
    font-size: 16px;
    font-family: var(--font-body);
}

/* ============================================
   EPISODE DETAIL PAGE
   ============================================ */

.episode-page {
    padding-top: 100px;
    animation: fadeIn 0.5s ease-out;
}

.episode-breadcrumb {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--text-muted-light);
    margin-bottom: var(--space-lg);
    letter-spacing: 0.2px;
}

.episode-breadcrumb a {
    color: var(--amber);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.episode-breadcrumb a:hover {
    color: var(--walnut);
}

.episode-detail {
    background: var(--surface-card);
    border-radius: 20px;
    padding: 56px 64px 48px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 12px 36px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--border-light);
    position: relative;
    max-width: 100%;
}

/* Gold accent line at top of detail card */
.episode-detail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 48px;
    right: 48px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--amber), var(--gold), var(--amber), transparent);
    border-radius: 0 0 2px 2px;
}

.episode-detail-header {
    margin-bottom: 40px;
}

.episode-detail-header .episode-meta {
    margin-bottom: 96px;
}

.episode-detail-header h1 {
    font-family: var(--font-display);
    font-size: 36px;
    line-height: 1.25;
    color: var(--espresso);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.episode-summary {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-muted-light);
    margin-top: 20px;
}

/* Episode tags */
.episode-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}

.episode-tag {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
    padding: 5px 14px;
    border-radius: 6px;
    display: inline-block;
}

.tag-guest {
    background: var(--parchment);
    color: var(--espresso);
    border: 1px solid var(--border-light);
}

.tag-type {
    background: var(--espresso);
    color: var(--amber-glow);
}

.tag-whiskey {
    background: rgba(200, 132, 43, 0.1);
    color: var(--amber);
    border: 1px solid rgba(200, 132, 43, 0.2);
}

.tag-state {
    background: var(--cream);
    color: var(--walnut);
    border: 1px solid var(--border-light);
}

.tag-distillery {
    background: var(--charcoal);
    color: var(--text-on-dark);
}

.episode-player {
    margin-bottom: 44px;
    padding: 24px 28px 20px;
    background: var(--charcoal);
    border-radius: 14px;
    border: 1px solid var(--border-dark);
    position: relative;
    overflow: hidden;
}

.episode-player::before {
    content: '';
    position: absolute;
    top: 0;
    left: 28px;
    right: 28px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200, 132, 43, 0.3), transparent);
}

.player-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.player-brand-logo {
    width: 24px;
    height: 24px;
    border-radius: 5px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.player-brand-name {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted-dark);
}

.episode-player audio {
    width: 100%;
    height: 48px;
    filter: invert(1) hue-rotate(180deg) brightness(0.85);
}

.episode-body {
}

.episode-section {
    margin-bottom: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-light);
}

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

.episode-section h2 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--espresso);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    letter-spacing: -0.2px;
}

/* Guest pills */
.guest-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.guest-list li {
    background: var(--parchment);
    padding: 10px 20px;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--espresso);
    border: 1px solid var(--border-light);
    transition: all 0.2s;
}

.guest-list li:hover {
    border-color: var(--amber);
    background: var(--cream);
}

/* Bourbon/Whiskey expression tags */
.expression-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.expression-list li {
    background: var(--espresso);
    color: var(--amber-glow);
    padding: 8px 18px;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
    border: 1px solid var(--border-dark);
    transition: all 0.2s;
}

.expression-list li:hover {
    background: var(--amber);
    color: var(--espresso);
    border-color: var(--amber);
}

/* ============================================
   TASTING CARD — Universal Component
   Used in episode pages (simple) and blog reviews (full)
   ============================================ */

.tasting-card {
    background: var(--espresso);
    color: var(--text-on-dark);
    border-radius: 16px;
    padding: 36px;
    margin: 28px 0;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.15),
        0 12px 40px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

/* Warm inner glow at top */
.tasting-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(180deg, rgba(200, 132, 43, 0.08), transparent);
    pointer-events: none;
}

/* Gold filigree line at top */
.tasting-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 36px;
    right: 36px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), var(--amber), var(--gold), transparent);
    opacity: 0.5;
}

/* Expression / Whiskey Name */
.tasting-card-name {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 700;
    color: var(--cream);
    letter-spacing: -0.3px;
    line-height: 1.25;
    margin-bottom: 6px;
    position: relative;
}

/* Metadata row: proof, age, price, type */
.tasting-card-details {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
}

.tasting-card-details span {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: var(--amber-glow);
    background: rgba(200, 132, 43, 0.1);
    border: 1px solid rgba(200, 132, 43, 0.15);
    padding: 5px 14px;
    border-radius: 6px;
}

/* Tasting sections: Nose / Palate / Finish */
.tasting-card-section {
    margin-bottom: 20px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.tasting-card-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.tasting-card-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.tasting-card-section-label {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
}

.tasting-card-rating {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--amber-glow);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Star display */
.tasting-card-stars {
    display: inline-flex;
    gap: 2px;
    color: var(--gold);
    font-size: 14px;
    letter-spacing: 1px;
}

.tasting-card-stars .star-empty {
    opacity: 0.25;
}

.tasting-card-section p,
.tasting-card-notes {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.75;
    color: var(--text-muted-dark);
}

.tasting-card-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tasting-card-section li {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-muted-dark);
    padding: 3px 0 3px 18px;
    position: relative;
}

.tasting-card-section li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--amber);
    opacity: 0.5;
}

/* Overall score */
.tasting-card-score {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.tasting-card-score-label {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted-dark);
}

.tasting-card-score-value {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.tasting-card-score-value small {
    font-size: 16px;
    color: var(--text-muted-dark);
    font-weight: 400;
}

.tasting-card-score-summary {
    font-family: var(--font-display);
    font-size: 15px;
    font-style: italic;
    color: var(--text-muted-dark);
    max-width: 60%;
}

/* ---- Simple variant (episode pages) ---- */
.tasting-card-simple {
    padding: 28px 32px;
}

.tasting-card-simple .tasting-card-name {
    font-size: 20px;
    margin-bottom: 12px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.tasting-card-simple .tasting-card-notes {
    font-size: 15px;
    line-height: 1.8;
}

/* ---- Within blog post body ---- */
.blog-post-body .tasting-card {
    margin: 32px 0;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .tasting-card {
        padding: 28px 22px;
    }

    .tasting-card::after {
        left: 22px;
        right: 22px;
    }

    .tasting-card-name {
        font-size: 22px;
    }

    .tasting-card-score {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .tasting-card-score-summary {
        max-width: 100%;
    }

    .tasting-card-simple {
        padding: 22px 20px;
    }
}

/* Tasting mini-cards embedded in episode pages */
.episode-tastings-grid.tastings-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 0;
}

.episode-tastings-grid .tasting-index-card {
    width: 100%;
}

/* Episode tasting note links (fallback for episodes without full tasting data) */
.episode-tasting-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.episode-tasting-link {
    display: block;
    background: var(--espresso);
    border-radius: 10px;
    padding: 14px 20px;
    text-decoration: none;
    border: 1px solid var(--border-dark);
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}

.episode-tasting-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.25s;
}

.episode-tasting-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.episode-tasting-link:hover::before {
    opacity: 0.5;
}

.episode-tasting-link-name {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    color: var(--cream);
}

/* Show Notes */
.show-notes {
    font-size: 15px;
    color: var(--text-muted-light);
    line-height: 1.8;
}

.show-notes a {
    color: var(--amber);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(200, 132, 43, 0.3);
    transition: text-decoration-color 0.2s;
}

.show-notes a:hover {
    text-decoration-color: var(--amber);
}

.show-notes p {
    margin-bottom: 14px;
}

/* Transcript */
.transcript-toggle {
    background: var(--parchment);
    border: 1px solid var(--border-light);
    padding: 7px 18px;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted-light);
    cursor: pointer;
    transition: all 0.25s;
}

.transcript-toggle:hover {
    background: var(--amber);
    color: var(--espresso);
    border-color: var(--amber);
}

.transcript-content {
    font-size: 15px;
    color: var(--text-muted-light);
    line-height: 1.85;
}

.transcript-content.collapsed {
    max-height: 300px;
    overflow: hidden;
    position: relative;
}

.transcript-content.collapsed::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(transparent, var(--surface-card));
    pointer-events: none;
}

.transcript-content p {
    margin-bottom: 16px;
}

.transcript-turn {
    margin-bottom: 20px;
    padding-left: 16px;
    border-left: 2px solid var(--border-light);
}

.transcript-turn:hover {
    border-left-color: var(--amber);
}

.transcript-speaker {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--amber);
    margin-bottom: 4px;
}

.transcript-turn p {
    margin-bottom: 0;
}

/* ============================================
   EPISODE NAVIGATION
   ============================================ */

.episode-nav {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: var(--space-xl);
}

.episode-nav-link {
    flex: 1;
    display: block;
    padding: 22px 24px;
    background: var(--surface-card);
    border: 1px solid var(--border-light);
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    max-width: 48%;
    position: relative;
    overflow: hidden;
}

.episode-nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--amber);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.episode-nav-link:hover {
    border-color: rgba(200, 132, 43, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.episode-nav-link:hover::before {
    transform: scaleX(1);
}

.episode-nav-link span {
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--text-muted-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.episode-nav-link strong {
    display: block;
    margin-top: 6px;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    color: var(--espresso);
    line-height: 1.4;
}

.episode-nav-link.next {
    text-align: right;
    margin-left: auto;
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
    background: var(--black);
    color: var(--text-muted-dark);
    padding: var(--space-2xl) var(--space-lg);
    margin-top: auto;
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--amber), transparent);
    opacity: 0.3;
}

.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: var(--space-xl);
}

.footer-brand {
    max-width: 380px;
}

.footer-logo {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-muted-dark);
}

.footer-links h4 {
    font-family: var(--font-body);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--amber);
    margin-bottom: 16px;
    font-weight: 700;
}

.footer-links a {
    display: block;
    color: var(--text-muted-dark);
    text-decoration: none;
    font-size: 14px;
    padding: 5px 0;
    font-family: var(--font-body);
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--cream);
}

.footer-bottom {
    max-width: var(--max-width);
    margin: var(--space-xl) auto 0;
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--text-muted-dark);
    letter-spacing: 0.3px;
}

/* ============================================
   TASTINGS INDEX & DETAIL
   ============================================ */

/* Toolbar: sort + view toggle */
.tastings-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-lg);
    gap: var(--space-md);
    flex-wrap: wrap;
}

.tastings-sort {
    display: flex;
    align-items: center;
    gap: 6px;
}

.tastings-sort-label {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted-light);
    margin-right: 4px;
}

.sort-btn,
.view-btn {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    padding: 7px 14px;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    background: var(--surface-card);
    color: var(--text-muted-light);
    cursor: pointer;
    transition: all 0.2s;
}

.sort-btn:hover,
.view-btn:hover {
    border-color: rgba(200, 132, 43, 0.3);
    color: var(--espresso);
}

.sort-btn.active {
    background: var(--espresso);
    color: var(--amber-glow);
    border-color: var(--espresso);
}

.tastings-view {
    display: flex;
    gap: 4px;
}

.view-btn {
    padding: 7px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.view-btn.active {
    background: var(--espresso);
    color: var(--amber-glow);
    border-color: var(--espresso);
}

/* Grid (card) view */
.tastings-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: var(--space-2xl);
    max-width: 860px;
}

/* Summary hidden in card view, shown in list view */
.tasting-index-summary {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-muted-dark);
    line-height: 1.6;
    margin-top: 8px;
}

/* List view */
.tastings-grid.tastings-list {
    grid-template-columns: 1fr;
    gap: 8px;
}

.tastings-list .tasting-index-card {
    border-radius: 12px;
}

.tastings-list .tasting-index-score {
    min-width: 64px;
    padding: 16px 12px;
}

.tastings-list .tasting-index-body {
    padding: 14px 20px;
}

.tastings-list .tasting-index-summary {
    display: block;
    font-size: 14px;
    line-height: 1.6;
}

.tasting-index-card {
    display: flex;
    align-items: stretch;
    width: 100%;
    background: var(--espresso);
    border-radius: 14px;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid var(--border-dark);
    position: relative;
}

.tasting-index-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.tasting-index-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.tasting-index-card:hover::before {
    opacity: 0.5;
}

.tasting-index-score {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    padding: 20px 16px;
    background: rgba(200, 132, 43, 0.08);
    border-right: 1px solid rgba(200, 132, 43, 0.1);
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--gold);
}

.tasting-index-body {
    flex: 1;
    padding: 18px 20px;
    min-width: 0;
}

.tasting-index-body h3 {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 600;
    color: var(--cream);
    line-height: 1.3;
    margin-bottom: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tasting-index-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 8px;
}

.tasting-index-meta span {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    color: var(--amber-glow);
    background: rgba(200, 132, 43, 0.1);
    padding: 3px 8px;
    border-radius: 4px;
}

.tasting-index-episode {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--text-muted-dark);
}

/* Load more */
.tastings-load-more {
    text-align: center;
    padding: var(--space-lg) 0 var(--space-2xl);
}

.load-more-btn {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    padding: 12px 32px;
    border: 1px solid var(--border-light);
    border-radius: 10px;
    background: var(--surface-card);
    color: var(--text-muted-light);
    cursor: pointer;
    transition: all 0.25s;
}

.load-more-btn:hover {
    background: var(--espresso);
    color: var(--amber-glow);
    border-color: var(--espresso);
}

/* Tasting card with image — side-by-side layout */
.tasting-card-with-image {
    display: flex;
    align-items: flex-start;
    gap: var(--space-xl);
}

.tasting-card-image {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-md) 0;
}

.tasting-card-image img {
    width: 160px;
    max-height: 320px;
    object-fit: contain;
    border-radius: 8px;
    filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.4));
}

.tasting-card-content {
    flex: 1;
    min-width: 0;
}

@media (max-width: 768px) {
    .tasting-card-with-image {
        flex-direction: column;
        align-items: center;
    }

    .tasting-card-image {
        margin-bottom: var(--space-md);
    }

    .tasting-card-image img {
        width: 120px;
    }
}

/* Tasting index card thumbnail */
.tasting-index-thumb {
    flex-shrink: 0;
    width: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0 10px 14px;
}

.tasting-index-thumb img {
    width: 48px;
    height: 64px;
    object-fit: contain;
    border-radius: 4px;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));
}

/* Tasting detail page */
.tasting-detail-page {
    padding-top: 100px;
    padding-bottom: var(--space-2xl);
    animation: fadeIn 0.5s ease-out;
}

.tasting-episode-link {
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
    margin-top: var(--space-lg);
    padding: 18px 24px;
    background: var(--surface-card);
    border: 1px solid var(--border-light);
    border-radius: 12px;
}

.tasting-episode-link span {
    font-family: var(--font-body);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted-light);
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
}

.tasting-episode-link a {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: var(--espresso);
    text-decoration: none;
    transition: color 0.2s;
}

.tasting-episode-link a:hover {
    color: var(--amber);
}

@media (max-width: 768px) {
    .tastings-grid {
        grid-template-columns: 1fr;
    }

    .tasting-index-score {
        min-width: 60px;
        font-size: 20px;
    }

    .tastings-toolbar {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ============================================
   BLOG
   ============================================ */

/* Blog list (index) */
.blog-list {
    margin-bottom: var(--space-2xl);
}

.blog-row {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    padding: 18px 24px;
    background: var(--surface-card);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    margin-bottom: 8px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-decoration: none;
    position: relative;
}

.blog-row-thumb {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--parchment);
}

.blog-row-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-row::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: var(--amber);
    border-radius: 0 2px 2px 0;
    transition: height 0.3s ease;
}

.blog-row:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border-color: rgba(200, 132, 43, 0.15);
}

.blog-row:hover::before {
    height: 60%;
}

.blog-row-body {
    flex: 1;
    min-width: 0;
}

.blog-row-body h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--espresso);
    letter-spacing: -0.1px;
    margin: 6px 0 4px;
    transition: color 0.2s;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.blog-row:hover .blog-row-body h3 {
    color: var(--amber);
}

.blog-row-meta {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--text-muted-light);
    font-weight: 400;
}

.blog-post-category {
    display: inline-block;
    background: var(--espresso);
    color: var(--amber-glow);
    padding: 3px 12px;
    border-radius: 6px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 10px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

/* Blog post detail */
.blog-post-page {
    padding-top: 100px;
    animation: fadeIn 0.5s ease-out;
}

.blog-post {
    background: var(--surface-card);
    border-radius: 20px;
    padding: 48px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 12px 36px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--border-light);
    position: relative;
}

.blog-post::before {
    content: '';
    position: absolute;
    top: 0;
    left: 48px;
    right: 48px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--amber), var(--gold), var(--amber), transparent);
    border-radius: 0 0 2px 2px;
}

.blog-post-header {
    margin-bottom: 32px;
}

.blog-post-header .blog-post-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--text-muted-light);
    font-weight: 500;
}

.blog-post-header h1 {
    font-family: var(--font-display);
    font-size: 36px;
    line-height: 1.25;
    color: var(--espresso);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.blog-post-excerpt {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-muted-light);
    margin-top: 16px;
}

.blog-post-hero {
    margin: 32px 0;
}

.blog-post-hero img {
    width: 100%;
    height: auto;
    border-radius: 14px;
    display: block;
}

.blog-post-footer {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--border-light);
}

.blog-post-share {
    display: flex;
    align-items: center;
    gap: 12px;
}

.share-label {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted-light);
}

.blog-post-share a {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--espresso);
    text-decoration: none;
    padding: 6px 16px;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    transition: all 0.2s;
}

.blog-post-share a:hover {
    background: var(--espresso);
    color: var(--amber-glow);
    border-color: var(--espresso);
}

.blog-post-body {
    max-width: 860px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-muted-light);
}

.blog-post-body h2 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    color: var(--espresso);
    margin: 36px 0 16px;
    letter-spacing: -0.2px;
}

.blog-post-body h3 {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 600;
    color: var(--espresso);
    margin: 28px 0 12px;
}

.blog-post-body p {
    margin-bottom: 16px;
}

.blog-post-body ul,
.blog-post-body ol {
    margin: 0 0 16px 24px;
}

.blog-post-body li {
    margin-bottom: 8px;
}

.blog-post-body a {
    color: var(--amber);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(200, 132, 43, 0.3);
    transition: text-decoration-color 0.2s;
}

.blog-post-body a:hover {
    text-decoration-color: var(--amber);
}

.blog-post-body img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 24px 0;
}

.blog-post-body blockquote {
    border-left: 3px solid var(--amber);
    padding: 16px 24px;
    margin: 24px 0;
    background: var(--cream-light);
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: var(--text-muted-light);
}

@media (max-width: 768px) {
    .blog-post {
        padding: 28px 22px;
        border-radius: 16px;
    }

    .blog-post::before {
        left: 22px;
        right: 22px;
    }

    .blog-post-header h1 {
        font-size: 26px;
    }
}

/* ============================================
   SEARCH PAGE
   ============================================ */

.search-page {
    padding-top: 100px;
    padding-bottom: var(--space-2xl);
}

.search-page-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.search-page-header h1 {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    color: var(--espresso);
    margin-bottom: var(--space-lg);
}

.search-page-input {
    max-width: 600px;
    margin: 0 auto;
    display: block;
    font-size: 18px;
    padding: 16px 28px;
}

.search-prompt-text {
    text-align: center;
    color: var(--text-muted-light);
    font-size: 16px;
    margin-top: var(--space-xl);
}

.search-results-count {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-muted-light);
    font-weight: 500;
    margin-bottom: var(--space-lg);
}

.search-group {
    margin-bottom: var(--space-xl);
}

.search-group h2 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--espresso);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid var(--border-light);
}

.search-group-count {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    color: var(--text-muted-light);
}

.search-result-row {
    display: block;
    padding: 16px 20px;
    background: var(--surface-card);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    margin-bottom: 8px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.search-result-row:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    border-color: rgba(200, 132, 43, 0.2);
}

.search-result-meta {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    color: var(--amber);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.search-result-body h3 {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 600;
    color: var(--espresso);
    margin: 4px 0;
}

.search-result-row:hover h3 {
    color: var(--amber);
}

.search-result-body p {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-muted-light);
    line-height: 1.5;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.search-more {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-muted-light);
    font-style: italic;
    padding: 8px 20px;
}

/* ============================================
   ABOUT PAGE
   ============================================ */

.about-page {
    padding-top: 100px;
    padding-bottom: var(--space-2xl);
    animation: fadeIn 0.5s ease-out;
}

.about-hero {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.about-hero h1 {
    font-family: var(--font-display);
    font-size: 44px;
    font-weight: 700;
    color: var(--espresso);
    letter-spacing: -0.5px;
    margin-bottom: var(--space-md);
}

.about-lead {
    font-family: var(--font-display);
    font-size: 20px;
    font-style: italic;
    color: var(--text-muted-light);
}

.about-story,
.about-hosts,
.about-show,
.about-listen {
    max-width: 860px;
    margin: 0 auto var(--space-3xl);
}

.about-story h2,
.about-hosts h2,
.about-show h2,
.about-listen h2 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 600;
    color: var(--espresso);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--border-light);
}

.about-story p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-muted-light);
    margin-bottom: var(--space-md);
}

/* Host cards */
.hosts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

.host-card {
    background: var(--surface-card);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: var(--space-xl);
    text-align: center;
    transition: all 0.3s ease;
}

.host-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    border-color: rgba(200, 132, 43, 0.2);
}

.host-photo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto var(--space-lg);
    display: block;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border: 3px solid var(--parchment);
}

.host-card h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--espresso);
    margin-bottom: var(--space-sm);
}

.host-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-muted-light);
}

/* Topics grid */
.about-topics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.topic {
    background: var(--surface-card);
    border: 1px solid var(--border-light);
    border-radius: 14px;
    padding: var(--space-lg);
    transition: all 0.3s ease;
}

.topic:hover {
    border-color: rgba(200, 132, 43, 0.2);
}

.topic h3 {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 600;
    color: var(--espresso);
    margin-bottom: var(--space-sm);
}

.topic p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--text-muted-light);
}

/* About contact section */
.about-contact {
    max-width: 860px;
    margin: 0 auto var(--space-3xl);
}

.about-contact h2 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 600;
    color: var(--espresso);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--border-light);
}

.about-contact > p {
    font-size: 16px;
    color: var(--text-muted-light);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.contact-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--surface-card);
    border: 1px solid var(--border-light);
    border-radius: 14px;
    padding: var(--space-lg);
    text-decoration: none;
    transition: all 0.25s ease;
}

.contact-card:hover {
    border-color: rgba(200, 132, 43, 0.3);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.contact-card-icon {
    flex-shrink: 0;
    color: var(--amber);
}

.contact-card-label {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--amber);
    display: block;
    margin-bottom: 6px;
}

.contact-card strong {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: var(--espresso);
}

.contact-card:hover strong {
    color: var(--amber);
}

@media (max-width: 768px) {
    .contact-options {
        grid-template-columns: 1fr;
    }
}

/* About listen section */
.about-listen {
    text-align: center;
}

.about-listen p {
    font-size: 16px;
    color: var(--text-muted-light);
    margin-bottom: var(--space-lg);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .logo-img {
        width: 96px;
        height: 96px;
        border-radius: 14px;
        margin-bottom: -36px;
    }

    .site-header nav {
        display: none;
        position: absolute;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: var(--charcoal);
        flex-direction: column;
        padding: var(--space-md);
        border-top: 1px solid var(--border-dark);
        border-bottom: 1px solid var(--border-dark);
    }

    .site-header nav.open {
        display: flex;
    }

    .hero-content {
        padding: 56px var(--space-lg) 64px;
    }

    .hero-logo {
        width: 160px;
        height: 160px;
        border-radius: 20px;
    }

    .hero-tagline {
        font-size: 15px;
    }

    .stream-btn {
        padding: 10px 18px;
        font-size: 12px;
    }

    .section-header {
        flex-direction: column;
        gap: var(--space-sm);
        margin: var(--space-xl) 0 var(--space-lg);
    }

    .section-header h2 {
        font-size: 26px;
    }

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

    .episode-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 18px 20px;
    }

    .episode-row::before {
        display: none;
    }

    .episode-row .play-btn {
        align-self: flex-start;
    }

    .episode-detail {
        padding: 36px 20px 28px;
        border-radius: 16px;
    }

    .episode-detail::before {
        left: 20px;
        right: 20px;
    }

    .episode-detail-header h1 {
        font-size: 26px;
    }

    .episode-player {
        padding: 14px 16px;
    }

    .episode-nav {
        flex-direction: column;
    }

    .episode-nav-link {
        max-width: 100%;
    }

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

    .footer-brand {
        max-width: 100%;
    }

    .about-hero h1 {
        font-size: 32px;
    }

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

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

@media (max-width: 480px) {
    .hero-logo {
        width: 130px;
        height: 130px;
    }

    .stream-buttons {
        flex-direction: column;
        align-items: center;
    }

    .stream-btn {
        width: 100%;
        max-width: 240px;
        justify-content: center;
    }

    .episode-card {
        padding: 22px 20px 18px;
    }
}
