:root {
    --cream: #f6f5f3;
    --white: #fff;
    --ink: #181818;
    --ink-soft: #2a2a2a;
    --ink-muted: #555550;
    --ink-light: #8a8a84;
    --rule: #d6d5d1;
    --rule-light: #e6e5e1
}

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

html {
    scroll-behavior: smooth
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--ink);
    background: var(--cream);
    -webkit-font-smoothing: antialiased
}

a {
    color: inherit;
    text-decoration: none
}

img {
    display: block
}

.w {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px
}

/* === MARQUEE — full-width ink band === */
.marquee {
    background: var(--ink);
    padding: 10px 0;
    overflow: hidden
}

.marquee-inner {
    display: flex;
    align-items: center;
    gap: 28px;
    white-space: nowrap
}

.m-title {
    font-family: 'EB Garamond', serif;
    font-size: .82rem;
    color: var(--cream);
    font-weight: 500
}

.m-sep {
    color: rgba(246, 245, 243, .12)
}

.m-detail {
    font-family: 'JetBrains Mono', monospace;
    font-size: .5rem;
    color: rgba(246, 245, 243, .35)
}

.m-sponsor {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: auto
}

.m-sponsor-label {
    font-size: .38rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(246, 245, 243, .15)
}

.m-sponsor-name {
    font-size: .58rem;
    font-weight: 700;
    color: rgba(246, 245, 243, .4)
}

.m-sponsor-logo {
    height: 18px;
    opacity: .4
}

/* === HERO: TITLE + REGISTRATION === */
.hero {
    padding: 32px 0 0
}

.bc {
    font-size: .52rem;
    color: var(--ink-light);
    margin-bottom: 14px
}

.bc a {
    color: var(--ink-light)
}

.bc a:hover {
    color: var(--ink)
}

.hero-split {
    display: grid;
    grid-template-columns:1fr 320px;
    gap: 24px;
    align-items: start
}

.hero h1 {
    font-family: 'EB Garamond', serif;
    font-size: 3.6rem;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -.04em;
    margin-bottom: 8px
}

.hero-tagline {
    font-family: 'EB Garamond', serif;
    font-size: 1.02rem;
    font-style: italic;
    color: var(--ink-muted);
    line-height: 1.3;
    margin-bottom: 14px;
    max-width: 440px
}

.hero-schedule {
    margin-bottom: 16px
}

.hero-schedule strong {
    font-size: .78rem
}

.hero-schedule span {
    font-size: .62rem;
    color: var(--ink-light);
    display: block;
    margin-top: 2px
}

.hero-split .hero {
    background: var(--ink);
    overflow: hidden;
}
.hero-split .hero-card {
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 248px;
}

.hero-split .hero-card.no-video{
    grid-template-columns: 1fr;
}
.hero-split a.hero-thumb,
.hero-split .hero-thumb {
    display: block;
    color: inherit;
    text-decoration: none;
    background-size: cover;
    background-position: center;
    position: relative;
    cursor: pointer;
    min-height: 300px;
}
.hero-split .hero-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.1);
    transition: background 0.2s;
}
.hero-split .hero-thumb:hover::after {
    background: rgba(0, 0, 0, 0.25);
}
.hero-split .hero-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: rgba(246, 245, 243, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
    z-index: 2;
    transition: transform 0.2s;
}
.hero-split .hero-thumb:hover .hero-play {
    transform: translate(-50%, -50%) scale(1.06);
}
.hero-split .hero-play svg {
    width: 20px;
    height: 22px;
    margin-left: 3px;
}
.hero-split .hero-dur {
    position: absolute;
    bottom: 16px;
    right: 16px;
    font-family: "JetBrains Mono", monospace;
    font-size: 0.5rem;
    color: rgba(246, 245, 243, 0.7);
    background: rgba(0, 0, 0, 0.55);
    padding: 4px 10px;
    z-index: 2;
}
.hero-split .hero-info {
    padding: 24px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.hero-split .hero-show-badge {
    font-family: "JetBrains Mono", monospace;
    font-size: 0.44rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(246, 245, 243, 0.3);
    margin-bottom: 16px;
}
.hero-split .hero-info h2 {
    font-family: "EB Garamond", serif;
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.08;
    color: var(--cream);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}
.hero-split .hero-guest {
    font-size: 0.82rem;
    color: rgba(246, 245, 243, 0.5);
    margin-bottom: 6px;
}
.hero-split .hero-guest strong {
    color: var(--cream);
}
.hero-split .hero-date {
    font-family: "JetBrains Mono", monospace;
    font-size: 0.5rem;
    color: rgba(246, 245, 243, 0.2);
    margin-bottom: 24px;
}
.hero-split .hero-desc {
    font-family: "EB Garamond", serif;
    font-size: 0.92rem;
    color: rgba(246, 245, 243, 0.35);
    line-height: 1.55;
    margin-bottom: 28px;
    max-width: 380px;
}
.hero-split .hero-btns {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.hero-split a.hero-btn-1,
.hero-split span.hero-btn-1 {
    background: var(--cream);
    color: var(--ink);
    padding: 12px 24px;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.15s;
}
.hero-split a.hero-btn-1:hover,
.hero-split span.hero-btn-1:hover {
    opacity: 0.85;
}
.hero-split .hero-btn-1 svg {
    width: 10px;
    height: 12px;
}
.hero-split a.hero-btn-2,
.hero-split span.hero-btn-2 {
    border: 1px solid rgba(246, 245, 243, 0.2);
    color: var(--cream);
    padding: 12px 24px;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all 0.15s;
}
.hero-split a.hero-btn-2:hover,
.hero-split span.hero-btn-2:hover {
    background: rgba(246, 245, 243, 0.06);
    border-color: rgba(246, 245, 243, 0.4);
}

/* REG */
.reg {
    border: 2px solid var(--ink);
    background: var(--white)
}

.reg-top {
    background: var(--ink);
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.reg-top-left {
    font-family: 'JetBrains Mono', monospace;
    font-size: .52rem;
    color: var(--cream)
}

.reg-top-right {
    font-size: .44rem;
    color: rgba(246, 245, 243, .35)
}

.hero-split > div:not(.reg) .reg-body {
    padding: 8px;
    display: flex;
}

.hero-split > .reg .reg-body {
    padding: 16px;
}

.reg-ep {
    margin-bottom: 12px
}

.reg-ep-title {
    font-family: 'EB Garamond', serif;
    font-size: .88rem;
    font-weight: 500;
    margin-bottom: 2px
}

.reg-ep-date {
    font-family: 'JetBrains Mono', monospace;
    font-size: .5rem;
    color: var(--ink-light)
}

.reg-row {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 6px
}

.page-template-page-video-shows-single -single .reg-field {
    margin-bottom: 6px
}

.page-template-page-video-shows-single  .reg-field label {
    font-size: .44rem;
    font-weight: 600;
    color: var(--ink-muted);
    display: block;
    margin-bottom: 1px
}

.page-template-page-video-shows-single  .reg-field input {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid var(--rule);
    background: var(--cream);
    font-family: 'DM Sans', sans-serif;
    font-size: .7rem;
    color: var(--ink);
    outline: none
}

.page-template-page-video-shows-single  .reg-field input:focus {
    border-color: var(--ink)
}

.page-template-page-video-shows-single  .reg-submit {
    width: 100%;
    background: var(--ink);
    color: var(--cream);
    padding: 11px;
    font-family: 'DM Sans', sans-serif;
    font-size: .58rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    margin-top: 2px;
    transition: background .15s
}

.page-template-page-video-shows-single  .reg-submit:hover {
    background: var(--ink-soft)
}

.page-template-page-video-shows-single  .reg-proof {
    font-size: .44rem;
    color: var(--ink-light);
    margin-top: 6px;
    text-align: center
}

.page-template-page-video-shows-single  .reg-proof strong {
    color: var(--ink-muted)
}

.page-template-page-video-shows-single  .reg-sub {
    font-size: .38rem;
    color: var(--ink-light);
    margin-top: 4px;
    text-align: center
}

.page-template-page-video-shows-single  .reg-cal {
    display: flex;
    gap: 4px;
    justify-content: center;
    margin-top: 6px
}

.page-template-page-video-shows-single  .reg-cal a {
    font-size: .4rem;
    color: var(--ink-muted);
    border: 1px solid var(--rule);
    padding: 2px 6px;
    transition: border-color .12s
}

.page-template-page-video-shows-single  .reg-cal a:hover {
    border-color: var(--ink)
}

/* === PANEL — the lineup, displayed large === */
.panel-sec {
    padding: 0 0 32px;
    border-bottom: 2px solid var(--ink)
}

.panel-label {
    font-size: .5rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--ink-light);
    margin: 28px 0 14px;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--rule)
}

.lineup {
    display: grid;
    grid-template-columns:repeat(5, 1fr);
    gap: 0
}

.lineup-person {
    text-align: center;
    padding: 20px 14px;
    border-right: 1px solid var(--rule-light);
    position: relative
}

.lineup-person:last-child {
    border-right: none
}

.lp-av {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--ink);
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'EB Garamond', serif;
    font-size: 1.2rem;
    color: var(--cream);
    overflow: hidden;
    transition: transform .2s
}

.lineup-person:hover .lp-av {
    transform: scale(1.05)
}

.lp-av img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.lp-name {
    font-family: 'EB Garamond', serif;
    font-size: .82rem;
    font-weight: 500;
    margin-bottom: 2px
}

.lp-title {
    font-size: .48rem;
    color: var(--ink-light);
    line-height: 1.25
}

.lp-badge {
    font-size: .36rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--ink-light);
    border: 1px solid var(--rule-light);
    padding: 2px 6px;
    display: inline-block;
    margin-top: 6px
}

/* 3-person layout */
.lineup.three {
    grid-template-columns:repeat(3, 1fr)
}

/* host + rotating guest layout */
.lineup.host-guest {
    grid-template-columns:1fr 1fr
}

/* === WHAT YOU'LL LEARN === */
.learn {
    padding: 28px 0;
    border-bottom: 1px solid var(--rule)
}

.sec-label {
    font-size: .48rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--ink-light);
    margin-bottom: 10px
}

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

.learn-item {
    padding: 16px 18px;
    border: 1px solid var(--rule);
    border-right: none
}

.learn-item:last-child {
    border-right: 1px solid var(--rule)
}

.learn-q {
    font-family: 'EB Garamond', serif;
    font-size: .9rem;
    font-weight: 500;
    font-style: italic;
    margin-bottom: 4px
}

.learn-a {
    font-size: .58rem;
    color: var(--ink-muted);
    line-height: 1.35
}

/* === LATEST EPISODE (hidden pre-launch) === */
.latest {
    padding: 28px 0;
    border-bottom: 1px solid var(--rule)
}

.latest-grid {
    display: grid;
    grid-template-columns:1.1fr 1fr;
    gap: 20px;
    align-items: start
}

.vid-wrap {
    width: 100%;
    aspect-ratio: 16/9;
    background: var(--ink);
    position: relative;
    cursor: pointer;
    overflow: hidden
}

.vid-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .85;
    transition: opacity .2s
}

.vid-wrap:hover img {
    opacity: 1
}

.vid-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center
}

.vid-play-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .2)
}

.vid-play-btn svg {
    width: 14px;
    height: 16px;
    margin-left: 2px
}

.latest-info {
}

.l-badge {
    font-size: .38rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    background: var(--ink);
    color: var(--cream);
    padding: 3px 7px;
    display: inline-block;
    margin-bottom: 4px
}

.l-date {
    font-family: 'JetBrains Mono', monospace;
    font-size: .48rem;
    color: var(--ink-light);
    margin-bottom: 3px
}

.l-title {
    font-family: 'EB Garamond', serif;
    font-size: 1.08rem;
    font-weight: 500;
    line-height: 1.08;
    margin-bottom: 5px
}

.l-desc {
    font-size: .6rem;
    color: var(--ink-muted);
    line-height: 1.35;
    margin-bottom: 12px
}

.clips-head {
    font-size: .4rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--ink-light);
    margin-bottom: 6px
}

.clip {
    display: flex;
    gap: 8px;
    align-items: center;
    padding: 6px 0;
    border-bottom: 1px solid var(--rule-light);
    cursor: pointer;
    transition: opacity .12s
}

.clip:hover {
    opacity: .65
}

.clip:last-child {
    border-bottom: none
}

.clip-thumb {
    width: 60px;
    aspect-ratio: 16/9;
    background: #ddd;
    flex-shrink: 0;
    position: relative;
    overflow: hidden
}

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

.clip-dur {
    position: absolute;
    bottom: 1px;
    right: 1px;
    background: var(--ink);
    color: var(--cream);
    font-family: 'JetBrains Mono', monospace;
    font-size: .3rem;
    padding: 1px 3px
}

.clip-title {
    font-size: .52rem;
    font-weight: 600;
    line-height: 1.2
}

.clip-meta {
    font-size: .38rem;
    color: var(--ink-light)
}

/* === ABOUT === */
.about {
    padding: 28px 0;
    border-bottom: 1px solid var(--rule)
}

.about-body {
    max-width: 640px
}

.about p {
    font-family: 'EB Garamond', serif;
    font-size: .92rem;
    color: var(--ink-muted);
    line-height: 1.6;
    margin-bottom: 8px
}

.about-meta {
    font-size: .55rem;
    color: var(--ink-light);
    margin-top: 8px
}

.topics {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
    margin-top: 8px
}

.topic {
    font-size: .46rem;
    font-weight: 600;
    color: var(--ink-muted);
    padding: 3px 7px;
    border: 1px solid var(--rule-light)
}

/* === ARCHIVE === */
.archive {
    padding: 28px 0;
    border-bottom: 1px solid var(--rule)
}

.ep-empty {
    border: 1px solid var(--rule);
    padding: 20px;
    text-align: center;
    background: var(--white)
}

.ep-empty p {
    font-size: .65rem;
    color: var(--ink-muted)
}

.ep-empty span {
    font-size: .48rem;
    color: var(--ink-light)
}

/* === NETWORK === */
.network {
    padding: 28px 0;
    border-bottom: 1px solid var(--rule)
}

.net-grid {
    display: grid;
    grid-template-columns:repeat(5, 1fr);
    gap: 0
}

.net-card {
    padding: 12px 14px;
    border: 1px solid var(--rule);
    border-right: none;
    transition: background .12s
}

.net-card:last-child {
    border-right: 1px solid var(--rule)
}

.net-card:hover {
    background: var(--white);
    opacity: 1;
}

.net-card.here {
    background: var(--white)
}

.net-day {
    font-family: 'JetBrains Mono', monospace;
    font-size: .42rem;
    color: var(--ink-light);
    margin-bottom: 2px
}

.net-name {
    font-family: 'EB Garamond', serif;
    font-size: .78rem;
    font-weight: 500;
    margin-bottom: 1px;
    line-height: 1.3;
}

.net-time {
    font-size: .44rem;
    color: var(--ink-light)
}

.net-sponsor {
    font-size: .4rem;
    color: var(--ink-light);
    margin-top: 3px
}

/* SUB */
.sub {
    padding: 24px 0;
    text-align: center
}

.sub h2 {
    font-family: 'EB Garamond', serif;
    font-size: 1.3rem;
    font-weight: 400;
    font-style: italic;
    margin-bottom: 4px
}

.sub p {
    font-size: .6rem;
    color: var(--ink-muted);
    margin-bottom: 10px
}

.sub-row {
    display: flex;
    justify-content: center;
    gap: 0;
    max-width: 340px;
    margin: 0 auto
}

.sub-row input {
    flex: 1;
    padding: 10px 12px;
    border: 1px solid var(--rule);
    background: transparent;
    font-family: 'DM Sans', sans-serif;
    font-size: .72rem;
    color: var(--ink);
    outline: none
}

.sub-row input:focus {
    border-color: var(--ink)
}

.sub-row input::placeholder {
    color: var(--ink-light)
}

.sub-row button {
    background: var(--ink);
    color: var(--cream);
    padding: 10px 14px;
    font-family: 'DM Sans', sans-serif;
    font-size: .5rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    border: none;
    cursor: pointer
}

@media (max-width: 900px) {
    .w {
        padding: 0 20px
    }

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

    .hero h1 {
        font-size: 2.4rem
    }

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

    .lineup-person:nth-child(n+4) {
        border-top: 1px solid var(--rule-light)
    }

    .learn-grid {
        grid-template-columns:1fr
    }

    .learn-item {
        border-right: 1px solid var(--rule) !important;
        border-bottom: none
    }

    .learn-item:last-child {
        border-bottom: 1px solid var(--rule)
    }

    .latest-grid {
        grid-template-columns:1fr
    }

    .net-grid {
        grid-template-columns:1fr 1fr
    }

    .net-card {
        border-right: 1px solid var(--rule) !important
    }
}

@media (max-width: 500px) {
    .hero h1 {
        font-size: 1.9rem
    }

    .marquee-inner {
        gap: 14px
    }

    .lineup {
        grid-template-columns:1fr 1fr
    }

    .lineup-person {
        border-right: 1px solid var(--rule-light) !important
    }

    .reg-row {
        grid-template-columns:1fr
    }

    .net-grid {
        grid-template-columns:1fr
    }
}


@media (max-width: 1000px) {
    .w {
        padding: 0 24px;
    }
    .hero-split  .hero-card {
        grid-template-columns: 1fr;
    }
    .hero-split  a.hero-thumb,
    .hero-split  .hero-thumb {
        min-height: 240px;
    }
    .hero-split  .hero-info {
        padding: 32px 24px;
    }
}
@media (max-width: 600px) {
    .hero-split .hero-info h1 {
        font-size: 1.5rem;
    }
    .hero-split  .show-card {
        grid-template-columns: 1fr;
    }
}
