:root {
    --navy: #132331;
    --navy-deep: #0e1b27;
    --paper: #f4f1e9;
    --paper-dark: #e9e5db;
    --coral: #e47a62;
    --ink-muted: #5d6870;
    --white: #fffdf8;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    background: var(--paper);
    color: var(--navy);
    font-family: Arial, Helvetica, sans-serif;
    -webkit-font-smoothing: antialiased;
}

button { font: inherit; }
a { color: inherit; text-decoration: none; }

:focus-visible {
    outline: 3px solid var(--coral);
    outline-offset: 4px;
}

.site-container { max-width: 1280px; }

.skip-link {
    position: absolute;
    top: -100px;
    left: 15px;
    z-index: 1000;
    padding: 10px 15px;
    background: white;
}

.skip-link:focus { top: 15px; }

.section { padding: 100px 0; }

.eyebrow {
    margin-bottom: 15px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .16em;
}

.eyebrow-coral { color: var(--coral); }

.eyebrow-mark {
    display: inline-block;
    width: 25px;
    height: 2px;
    margin-right: 8px;
    background: var(--coral);
    vertical-align: middle;
}

.period { color: var(--coral); }

/* NAVIGATION */

.site-header { background: var(--navy); border-bottom: 2px var(--coral) solid; }

.site-header .navbar {
    min-height: 83px;
    padding-top: 8px;
    padding-bottom: 8px;
}

.site-brand { padding: 0; }

.site-brand img {
    display: block;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
}

.site-header .nav-link {
    margin-left: 27px;
    color: var(--white);
    font-size: 13px;
    font-weight: 800;
}

.site-header .nav-link:hover,
.site-header .nav-link:focus { color: var(--coral); }

.site-header .navbar-toggler {
    display: none;
    width: 44px;
    height: 44px;
    place-items: center;
    padding: 0;
    border: 1px solid var(--white);
    border-radius: 10px;
    background: var(--navy);
    box-shadow: none;
}

.site-header .navbar-toggler-icon {
    width: 30px;
    height: 30px;
    filter: invert(1);
}

@media (max-width: 991px) {
    .site-header .navbar-toggler {
        display: grid;
    }
}

/* HERO */

.hero {
    padding: 0;
    background: var(--navy);
}

.hero .site-container {
    max-width: none;
    padding: 0;
}

.hero-image {
    display: block;
    width: 100%;
    height: auto;
}

/* INTRO */

.intro-section {
    padding: 83px 0 95px;
    background: var(--navy);
    color: var(--white);
}

.intro-layout {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 75px;
    align-items: end;
}

.intro-section .eyebrow { color: var(--coral); }

.intro-section h1 {
    margin: 0;
    font-size: clamp(49px, 6vw, 82px);
    font-weight: 950;
    line-height: .99;
    letter-spacing: -.075em;
}

.intro-copy p {
    max-width: 465px;
    margin-bottom: 25px;
    color: #d0d5d6;
    font-size: 18px;
    line-height: 1.65;
}

.arrow-link {
    display: inline-flex;
    gap: 27px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--coral);
    color: var(--white);
    font-size: 13px;
    font-weight: 900;
}

.arrow-link:hover { color: var(--coral); }


.spotify-strip {
    width: 100%;
    background: var(--coral);
    color: var(--navy);
}

.spotify-strip-inner {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    min-height: 105px;
    padding-top: 20px;
    padding-bottom: 20px;
}

.spotify-strip p {
    margin: 0;
    font-size: clamp(18px, 2.6vw, 32px);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -.045em;
}

.spotify-strip a {
    display: inline-flex;
    flex-shrink: 0;
    align-items: center;
    gap: 11px;
    color: var(--navy);
    font-size: 14px;
    font-weight: 900;
    white-space: nowrap;
}

.spotify-strip a:hover {
    color: var(--navy);
    text-decoration: underline;
}

.spotify-strip a i {
    font-size: 29px;
}

.spotify-strip a:hover {
    color: #d0d5d6;
    text-decoration: none;
}

@media (max-width: 480px) {
    .spotify-strip-inner {
        gap: 10px;
        min-height: 85px;
    }

    .spotify-strip p {
        font-size: 18px;
    }

    .spotify-strip a {
        gap: 7px;
        font-size: 12px;
    }

    .spotify-strip a i {
        font-size: 23px;
    }
}

/* FEATURE */

.feature-section {
    padding: 94px 0 105px;
    background: var(--paper-dark);
}

.section-topline {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
    padding-bottom: 10px;
    /* border-bottom: 1px solid rgba(19, 35, 49, .25); */
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .16em;
}

.feature-layout {
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(0, 1fr);
    align-items: center;
    gap: clamp(40px, 8vw, 110px);
}

.feature-poster {
    display: flex;
    justify-content: center;
    padding: 32px;
    background: var(--navy);
}

.feature-poster img {
    display: block;
    width: min(100%, 405px);
    height: auto;
    box-shadow: 0 17px 35px rgba(0, 0, 0, .3);
}

.feature-content h2 {
    margin: 0;
    font-size: clamp(68px, 8vw, 124px);
    font-weight: 950;
    line-height: .9;
    letter-spacing: -.085em;
}

.slash { color: var(--coral); }

.feature-year {
    margin: 18px 0 34px;
    color: var(--ink-muted);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .13em;
}

.feature-year span { margin: 0 7px; }

.feature-description {
    max-width: 500px;
    margin-bottom: 20px;
    font-size: clamp(21px, 2.4vw, 31px);
    font-weight: 750;
    line-height: 1.32;
    letter-spacing: -.035em;
}

.feature-note {
    max-width: 465px;
    margin-bottom: 30px;
    color: var(--ink-muted);
    font-size: 15px;
    line-height: 1.6;
}

.button {
    border: 0;
    appearance: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    min-height: 49px;
    padding: 12px 18px;
    border-radius: 2px;
    font-size: 13px;
    font-weight: 900;
    transition: transform .2s, background .2s;
}

/* .button:hover { transform: translateY(-2px); } */

.button-coral {
    background: var(--coral);
    color: var(--navy);
}

.button-coral:hover {
    background: #f09680;
    color: var(--navy);
}

.small-print {
    max-width: 370px;
    margin: 24px 0 0;
    color: var(--ink-muted);
    font-size: 11px;
    line-height: 1.5;
}

/* SECTION HEADINGS */

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 30px;
    margin-bottom: 35px;
}

.section-heading .eyebrow { color: #a14c3a; }

.section-heading h2,
.clips-layout h2,
.merch-copy h2 {
    margin: 0;
    font-size: clamp(38px, 4.8vw, 64px);
    font-weight: 950;
    line-height: 1;
    letter-spacing: -.07em;
}

.section-description {
    margin: 18px 0 0;
    color: var(--ink-muted);
    font-size: 15px;
}

.section-count {
    margin-bottom: 4px;
    color: var(--ink-muted);
    white-space: nowrap;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .13em;
}

/* ARTWORK GRID */

.artwork-section { background: var(--paper); }

.poster-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 23px;
    row-gap: 37px;
}

.poster-card {
    display: block;
    min-width: 0;
    padding: 0;
    border: 0;
    background: none;
    color: var(--navy);
    text-align: left;
    cursor: pointer;
}

.poster-card[hidden] { display: none; }

.poster-image {
    display: flex;
    height: 470px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 21px;
    background: var(--navy);
}

.poster-image img {
    display: block;
    width: auto;
    max-width: 100%;
    height: 100%;
    max-height: 100%;
    object-fit: contain;
    box-shadow: 0 10px 22px rgba(0, 0, 0, .25);
    transition: transform .25s ease;
}

.poster-card:hover .poster-image img,
.poster-card:focus-visible .poster-image img {
    transform: scale(1.035);
}

.poster-caption {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: baseline;
    padding-top: 13px;
}

.poster-caption strong {
    font-size: 19px;
    font-weight: 900;
    letter-spacing: -.035em;
}

.poster-caption > span {
    color: var(--ink-muted);
    font-size: 11px;
    font-weight: 800;
}

.gallery-action {
    display: flex;
    justify-content: center;
    margin-top: 45px;
}

.outline-button {
    display: inline-flex;
    gap: 25px;
    min-height: 48px;
    align-items: center;
    padding: 10px 19px;
    border: 1px solid var(--navy);
    border-radius: 2px;
    background: transparent;
    color: var(--navy);
    font-size: 13px;
    font-weight: 900;
    cursor: pointer;
}

.outline-button:hover {
    background: var(--navy);
    color: white;
}

/* CLIPS */

.clips-section {
    background: var(--navy);
    color: var(--white);
}

.clips-layout {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 70px;
    align-items: center;
}

.clips-copy p {
    max-width: 460px;
    color: #d3d6d6;
    font-size: 18px;
    line-height: 1.6;
}

.coming-label {
    display: inline-flex;
    gap: 9px;
    align-items: center;
    margin-top: 14px;
    padding: 11px 15px;
    border: 1px solid rgba(255, 255, 255, .38);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .13em;
}

.coming-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--coral);
}

/* MEMBERS' CLUB */

.club-section { background: var(--paper); }

.club-panel {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 70px;
    align-items: center;
    padding: clamp(35px, 6vw, 75px);
    background: var(--coral);
}

.club-copy h2 {
    margin: 0;
    font-size: clamp(53px, 6vw, 86px);
    font-weight: 950;
    line-height: .93;
    letter-spacing: -.075em;
}

.club-copy h2 em {
    color: var(--white);
    font-style: normal;
}

.club-copy > p:not(.eyebrow) {
    max-width: 470px;
    margin: 26px 0;
    font-size: 16px;
    line-height: 1.55;
}

.club-status {
    display: inline-flex;
    gap: 20px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--navy);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .09em;
}

.club-list { border-top: 1px solid rgba(19, 35, 49, .5); }

.club-list div {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 22px 0;
    border-bottom: 1px solid rgba(19, 35, 49, .5);
}

.club-list div span:first-child {
    font-size: 10px;
    font-weight: 900;
}

.club-list strong {
    font-size: 14px;
    font-weight: 900;
}

.club-list div span:last-child {
    margin-left: auto;
    font-size: 18px;
}

/* MERCH CONCEPT */

.merch-section {
    padding-top: 0;
    background: var(--paper);
}

.merch-layout {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    align-items: center;
    gap: clamp(35px, 6vw, 85px);
    padding-top: 30px;
    border-top: 1px solid rgba(19, 35, 49, .2);
}

.merch-image { background: var(--paper-dark); }

.merch-image img {
    display: block;
    width: 100%;
    height: auto;
}

.merch-copy > p:not(.eyebrow) {
    max-width: 380px;
    margin: 22px 0;
    color: var(--ink-muted);
    font-size: 15px;
    line-height: 1.6;
}

.concept-label {
    display: inline-block;
    padding: 9px 12px;
    border: 1px solid var(--navy);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .13em;
}

/* FOOTER */

.site-footer {
    padding: 65px 0 24px;
    background: var(--navy-deep);
    color: var(--white);
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: end;
    padding-bottom: 60px;
}

.footer-main img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
}

.footer-main p {
    margin-bottom: 10px;
    color: #b8c1c5;
    font-size: 14px;
}

.footer-main a {
    font-size: 13px;
    font-weight: 900;
}

.footer-main a:hover { color: var(--coral); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .2);
    color: #a4afb6;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .1em;
}

/* POSTER / EPISODE PREVIEW LIGHTBOX */

.poster-preview-dialog {
    position: fixed;
    width: min(94vw, 820px);
    max-height: 92vh;
    padding: 0;
    border: 0;
    background: var(--navy);
    color: var(--white);
    box-shadow: 0 25px 75px rgba(0, 0, 0, .45);
}

.poster-preview-dialog::backdrop {
    background: rgba(4, 11, 18, .84);
}

.poster-preview-content {
    display: grid;
    grid-template-columns: minmax(0, 280px) minmax(0, 1fr);
    gap: 35px;
    align-items: center;
    padding: 35px;
}

.poster-preview-content > img {
    display: block;
    width: 100%;
    height: auto;
    max-height: calc(92vh - 70px);
    object-fit: contain;
    box-shadow: 0 14px 30px rgba(0, 0, 0, .35);
}

.poster-preview-details {
    min-width: 0;
    padding-right: 10px;
}

.poster-preview-details h2 {
    margin: 0 0 17px;
    font-size: clamp(38px, 5vw, 62px);
    font-weight: 950;
    line-height: .98;
    letter-spacing: -.07em;
}

.preview-cast {
    margin-bottom: 23px;
    color: var(--coral);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .12em;
    line-height: 1.5;
}

.preview-description {
    max-width: 390px;
    margin-bottom: 28px;
    color: #d2d7da;
    font-size: 15px;
    line-height: 1.55;
}

.preview-audio {
    padding-top: 21px;
    border-top: 1px solid rgba(255, 255, 255, .23);
}

.preview-audio > span {
    display: block;
    margin-bottom: 12px;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .14em;
}

.preview-audio audio {
    display: block;
    width: 100%;
}

.preview-audio p {
    margin: 10px 0 0;
    color: #ffb19d;
    font-size: 13px;
}

.dialog-close {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: var(--white);
    color: var(--navy);
    font-size: 27px;
    line-height: 1;
    cursor: pointer;
}

@media (max-width: 650px) {
    .poster-preview-content {
        grid-template-columns: 1fr;
        gap: 22px;
        padding: 25px;
    }

    .poster-preview-content > img {
        width: 115px;
        max-height: 175px;
    }

    .poster-preview-details {
        padding-right: 0;
    }
}


/* FEATURED AUDIO LIGHTBOX */

.clip-dialog {
    position: fixed;
    width: min(92vw, 720px);
    max-height: 90vh;
    padding: 0;
    border: 0;
    background: var(--navy);
    color: var(--white);
    box-shadow: 0 25px 75px rgba(0, 0, 0, .45);
}

.clip-dialog::backdrop {
    background: rgba(4, 11, 18, .84);
}

.clip-dialog-content {
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 30px;
    align-items: center;
    padding: 32px;
}

.clip-dialog-content > img {
    display: block;
    width: 100%;
    height: auto;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .35);
}

.clip-dialog-details {
    min-width: 0;
    padding-right: 12px;
}

.clip-dialog-details h2 {
    margin: 0 0 15px;
    font-size: clamp(38px, 5vw, 58px);
    font-weight: 950;
    line-height: 1;
    letter-spacing: -.07em;
}

.clip-dialog-details > p:not(.eyebrow) {
    color: #cbd1d4;
    font-size: 14px;
    line-height: 1.5;
}

.clip-dialog audio {
    display: block;
    width: 100%;
    margin-top: 25px;
}

.clip-dialog .clip-audio-error {
    margin: 12px 0 0;
    color: #ffb19d !important;
    font-size: 13px !important;
}

@media (max-width: 600px) {
    .clip-dialog-content {
        grid-template-columns: 1fr;
        gap: 22px;
        padding: 25px;
    }

    .clip-dialog-content > img {
        width: 115px;
    }

    .clip-dialog-details {
        padding-right: 0;
    }
}

/* RESPONSIVE */

@media (min-width: 992px) {
    .site-header {
        position: sticky;
        top: 0;
        z-index: 1030;
    }
}

@media (max-width: 991px) {
    .site-header {
        position: sticky;
        top: 0;
        z-index: 1030;
    }
    .site-header .nav-link { margin-left: 0; padding: 10px 0; }
    .intro-layout, .clips-layout { gap: 38px; }
    .poster-image { height: 390px; }
    .feature-layout { gap: 40px; }
}

@media (max-width: 767px) {
    .section { padding: 73px 0; }

    .intro-section { padding: 65px 0 75px; }

    .intro-layout,
    .feature-layout,
    .clips-layout,
    .club-panel,
    .merch-layout {
        grid-template-columns: 1fr;
    }

    .intro-layout,
    .clips-layout,
    .club-panel { gap: 30px; }

    .feature-section { padding: 65px 0 75px; }
    .feature-poster { padding: 23px; }
    .feature-poster img { width: min(100%, 360px); }
    .feature-content h2 { font-size: clamp(66px, 16vw, 100px); }
    .feature-year { margin-bottom: 23px; }

    .section-count { display: none; }

    .poster-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px 14px; }
    .poster-image { height: 335px; padding: 14px; }
    .poster-caption strong { font-size: 16px; }

    .club-panel { padding: 38px 28px; }

    .merch-section { padding-top: 0; }
    .merch-layout { gap: 30px; }
}

@media (max-width: 480px) {
    .intro-section h1 { font-size: 49px; }
    .intro-copy p, .clips-copy p { font-size: 16px; }
    .poster-image { height: 255px; padding: 10px; }
    .poster-caption { align-items: start; flex-direction: column; gap: 2px; }
    .footer-main, .footer-bottom { align-items: start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition-duration: .01ms !important; }
}