:root {
    --bg: #010b1e;
    --bg-soft: #071631;
    --panel: linear-gradient(180deg, rgba(8, 20, 48, 0.92) 0%, rgba(4, 13, 32, 0.94) 100%);
    --panel-border: rgba(208, 178, 111, 0.18);
    --text: #edf1f7;
    --muted: rgba(237, 241, 247, 0.72);
    --gold: #cfa858;
    --line: rgba(206, 171, 100, 0.45);
    --shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
    --radius-lg: 34px;
    --radius-md: 26px;
    --radius-sm: 18px;
    --container: 1240px;
    --header-height: 76px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    min-width: 320px;
    background:
        radial-gradient(circle at 16% 20%, rgba(39, 90, 182, 0.20) 0%, rgba(39, 90, 182, 0.08) 18%, transparent 42%),
        radial-gradient(circle at 84% 16%, rgba(230, 133, 37, 0.24) 0%, rgba(230, 133, 37, 0.10) 20%, transparent 46%),
        radial-gradient(circle at 50% 0%, rgba(20, 38, 74, 0.34), transparent 36%),
        var(--bg);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.container { width: min(calc(100% - 56px), var(--container)); margin-inline: auto; }
.section-spacing { padding: 26px 0 78px; }
.section-spacing--compact { padding-top: 10px; }
.site-shell { overflow: clip; }
.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    backdrop-filter: blur(14px);
    background: linear-gradient(180deg, rgba(1, 11, 30, 0.9), rgba(1, 11, 30, 0.72));
    border-bottom: 1px solid rgba(206, 171, 100, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
    transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
}
.site-header.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.site-header__inner {
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.site-header__brand,
.site-footer__title,
.content-panel__header h2,
.modal__content h3,
.eyebrow,
.feature-card__title {
    font-family: 'Cinzel', serif;
}
.site-header__brand {
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-size: 1rem;
    color: #f1e7d2;
}
.site-header__nav {
    display: flex;
    align-items: center;
    gap: 24px;
}
.site-header__nav a,
.site-footer__nav a {
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
    transition: color 0.25s ease;
}
.site-header__nav a:hover,
.site-footer__nav a:hover { color: #fff4de; }
.site-header__toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(206, 171, 100, 0.22);
    border-radius: 14px;
    background: rgba(3, 14, 36, 0.82);
    padding: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    color: #fff;
}
.site-header__toggle span:not(.screen-reader-text) {
    width: 18px;
    height: 1px;
    background: #f1e7d2;
    display: block;
}

.hero-section {
    position: relative;
    padding-top: 0;
    margin-top: -110px;
}
.hero-section__inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hero-section__glow {
    position: absolute;
    width: 38vw;
    height: 60vw;
    max-height: 820px;
    filter: blur(34px);
    opacity: 0.46;
    pointer-events: none;
}
.hero-section__glow--left {
    left: -7vw;
    top: 15%;
    background: radial-gradient(circle, rgba(63, 130, 233, 0.58) 0%, rgba(63, 130, 233, 0.18) 32%, transparent 76%);
}
.hero-section__glow--right {
    right: -7vw;
    top: 6%;
    background: radial-gradient(circle, rgba(255, 158, 57, 0.62) 0%, rgba(255, 158, 57, 0.22) 34%, transparent 74%);
}
.hero-poster-wrap {
    position: relative;
    width: min(1620px, 132%);
    display: flex;
    justify-content: center;
    margin-top: -90px;
}
.hero-poster-wrap::before {
    content: '';
    position: absolute;
    inset: 10% 6% 12%;
    background:
        radial-gradient(circle at 30% 40%, rgba(53, 104, 203, 0.22), transparent 42%),
        radial-gradient(circle at 72% 32%, rgba(239, 145, 55, 0.24), transparent 42%);
    filter: blur(52px);
    pointer-events: none;
}
.hero-poster {
    width: min(1540px, 118vw);
    max-width: none;
    object-fit: contain;
    filter: saturate(1.02);
    position: relative;
    z-index: 1;
    mix-blend-mode: screen;
}

.image-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 14px auto 0;
    transition: transform 0.32s ease;
    transform-origin: center;
}
.image-button:hover,
.image-button:focus-visible { transform: scale(1.095); }
.image-button img { width: auto; min-width: 220px; max-width: min(64vw, 300px); }
.image-button span {
    position: absolute;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    font-size: clamp(1rem, 1.8vw, 1.18rem);
    color: #f4ead0;
    text-align: center;
    padding-left: 0.24em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    font-family: 'Cinzel', serif;
}
.image-button--gold span { color: #271b0d; font-weight: 700; }
.image-button--dark span { color: #f1ebdc; }

.section-divider { padding: 10px 0 26px; }

.image-button--centered {
    display: flex;
    justify-content: center;
}

.section-divider--small { padding-bottom: 22px; }
.section-divider__inner { display: flex; justify-content: center; }
.section-divider__line {
    width: min(84%, 980px);
    height: 1px;
    opacity: 0.82;
    background: linear-gradient(90deg, transparent 0%, rgba(207, 168, 88, 0.15) 8%, rgba(207, 168, 88, 0.65) 50%, rgba(207, 168, 88, 0.15) 92%, transparent 100%);
    position: relative;
}
.section-divider__line::before,
.section-divider__line::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 34px;
    height: 1px;
    background: rgba(207, 168, 88, 0.5);
    transform: translateY(-50%);
}
.section-divider__line::before { left: calc(50% - 52px); }
.section-divider__line::after { right: calc(50% - 52px); }

.feature-cards {
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.feature-card {
    position: relative;
    padding: 0;
    border: 1px solid rgba(240, 236, 225, 0.15);
    background: transparent;
    border-radius: 22px;
    overflow: hidden;
    min-height: 230px;
    cursor: pointer;
    transition: transform 0.32s ease, border-color 0.32s ease;
}
.feature-card:hover,
.feature-card:focus-visible,
.feature-card.is-active {
    transform: translateY(-6px);
    border-color: rgba(212, 179, 113, 0.38);
}
.feature-card__image {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    transition: transform 0.5s ease;
    filter: brightness(1.08) saturate(1.04);
}
.feature-card:hover .feature-card__image,
.feature-card:focus-visible .feature-card__image,
.feature-card.is-active .feature-card__image { transform: scale(1.05); }
.feature-card__title {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 18px;
    z-index: 2;
    text-align: center;
    font-size: 1.05rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #fff4e3;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.58);
}

.content-panel {
    margin-top: 18px;
    padding: 26px 24px 22px;
    border-radius: 34px;
    border: 1px solid var(--panel-border);
    background: var(--panel);
    box-shadow: var(--shadow);
}
.content-panel__pane[hidden] { display: none !important; }
.content-panel__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 18px;
}
.content-panel__header h2,
.modal__content h3,
.site-footer__title { margin: 0; letter-spacing: 0.14em; text-transform: uppercase; }
.content-panel__header h2 { font-size: 2rem; }
.content-panel__header p,
.panel-intro,
.modal__role { margin: 0; color: var(--muted); }
.wysiwyg-content p:last-child { margin-bottom: 0; }

.crew-groups {
    display: grid;
    gap: 32px;
}
.crew-group {
    display: grid;
    gap: 16px;
}
.crew-group__heading {
    margin: 0;
    font-family: 'Cinzel', serif;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 1rem;
    color: var(--gold);
    text-align: center;
}
.crew-group__grid {
    display: grid;
    gap: 24px;
    align-items: start;
}
.crew-group--cast .crew-group__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.crew-group--creative .crew-group__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}
.crew-group--production .crew-group__grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}
.crew-group__grid:hover .crew-card {
    opacity: 0.42;
}
.crew-group__grid:hover .crew-card:hover,
.crew-group__grid:hover .crew-card:focus-visible {
    opacity: 1;
}
.crew-card {
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
    text-align: center;
    color: var(--text);
    transition: transform 0.28s ease, opacity 0.28s ease;
}
.crew-card:hover,
.crew-card:focus-visible {
    transform: translateY(-4px);
}
.crew-card__image {
    width: min(100%, 240px);
    margin: 0 auto 16px;
    border-radius: 999px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: rgba(2, 10, 26, 0.12);
    box-shadow: 0 0 0 1px rgba(206, 171, 100, 0.16), 0 18px 30px rgba(0, 0, 0, 0.22);
}
.crew-group--cast .crew-card__image { width: min(100%, 260px); }
.crew-group--creative .crew-card__image { width: min(100%, 220px); }
.crew-group--production .crew-card__image { width: min(100%, 190px); }
.crew-card__image img { width: 100%; height: 100%; object-fit: cover; }
.crew-card__name {
    display: block;
    font-family: 'Cinzel', serif;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 6px;
    color: var(--gold);
    font-size: 1.15rem;
}
.crew-card__role { color: var(--muted); font-size: 0.95rem; display: block; max-width: 22ch; margin: 0 auto; }

.social-list { display: grid; gap: 12px; }
.social-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px;
    align-items: center;
    border: 1px solid rgba(206, 171, 100, 0.12);
    border-radius: 18px;
    padding: 14px 18px;
    background: rgba(2, 10, 26, 0.28);
}
.social-row span:first-child { font-size: 1.45rem; font-weight: 700; }
.social-row a { color: var(--gold); font-weight: 600; }

.eyebrow {
    margin: 0 0 12px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #efe3c3;
    font-size: 0.82rem;
}
.section-heading { text-align: center; margin-bottom: 28px; }

.epk-section {
    position: relative;
    min-height: min(78vh, 780px);
    display: flex;
    align-items: stretch;
    justify-content: center;
    padding: 0;
    margin-top: 22px;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    width: 100vw;
    overflow: hidden;
}
.epk-section__media,
.epk-section__content {
    position: absolute;
    inset: 0;
}
.epk-section__image {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    filter: saturate(0.96) brightness(0.72);
    transform: scale(1.03);
}
.epk-section__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(1, 11, 30, 0.48), rgba(1, 11, 30, 0.26) 34%, rgba(1, 11, 30, 0.66) 100%),
        radial-gradient(circle at 18% 50%, rgba(46, 116, 226, 0.24), transparent 36%),
        radial-gradient(circle at 82% 34%, rgba(237, 148, 58, 0.24), transparent 38%);
}
.epk-section__content {
    z-index: 2;
    display: flex;
    align-items: center;
}
.epk-section__content .container {
    width: min(calc(100% - 56px), 1440px);
    display: flex;
    align-items: center;
    min-height: min(78vh, 780px);
}
.epk-section__copy {
    max-width: 980px;
    margin-inline: auto;
    text-align: center;
    padding-inline: 24px;
}
.epk-review {
    margin: 0;
    color: #f4f0e6;
    font-size: 1rem;
    transition: opacity 0.18s ease;
}
.epk-review-source {
    margin: 14px 0 0;
    color: rgba(244, 240, 230, 0.76);
    font-size: 0.82rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    transition: opacity 0.18s ease;
}
.epk-review--hero {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.4rem, 5vw, 4.8rem);
    letter-spacing: 0.12em;
    line-height: 1.2;
    text-transform: uppercase;
    text-wrap: balance;
}
.epk-review.is-switching,
.epk-review-source.is-switching { opacity: 0.3; }

.tour-table__head,
.tour-table__body { width: 100%; }
.tour-table__row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 24px;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid rgba(206, 171, 100, 0.16);
}
.tour-table__head .tour-table__row {
    color: var(--muted);
    font-size: 0.76rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}
.tour-table__body a,
.tour-table__soon { color: var(--gold); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.82rem; }

.button-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 28px;
}
.button-row .image-button {
    margin: 0;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}
.instagram-card {
    border: 1px solid rgba(206, 171, 100, 0.12);
    border-radius: 18px;
    overflow: hidden;
    background: rgba(4, 13, 32, 0.72);
    transition: transform 0.32s ease, border-color 0.32s ease;
}
.instagram-card:hover,
.instagram-card:focus-visible {
    transform: translateY(-6px);
    border-color: rgba(206, 171, 100, 0.3);
}
.instagram-card__image { aspect-ratio: 0.8 / 1; overflow: hidden; display: block; }
.instagram-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}
.instagram-card:hover .instagram-card__image img,
.instagram-card:focus-visible .instagram-card__image img { transform: scale(1.05); }
.instagram-card__meta {
    display: block;
    padding: 10px 12px 12px;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #efe4cc;
}

.modal[hidden] { display: none !important; }
.modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: grid;
    place-items: center;
    padding: 24px;
}
.modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(1, 11, 30, 0.82);
    backdrop-filter: blur(8px);
}
.modal__dialog {
    position: relative;
    z-index: 1;
    width: min(1100px, 100%);
    max-height: calc(100vh - 48px);
    overflow: auto;
    background: linear-gradient(180deg, rgba(8, 20, 48, 0.98), rgba(4, 13, 32, 0.98));
    border: 1px solid rgba(206, 171, 100, 0.18);
    border-radius: 28px;
    box-shadow: var(--shadow);
}
.modal__close {
    position: absolute;
    top: 16px;
    right: 18px;
    z-index: 2;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
}
.modal__content { padding: 34px; }
.modal__content--crew {
    display: grid;
    grid-template-columns: minmax(240px, 320px) 1fr;
    gap: 24px;
    align-items: start;
}
.modal__media img { width: 100%; border-radius: 18px; }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 18px;
}
.gallery-grid__item img { width: 100%; border-radius: 18px; }

.site-footer {
    padding: 42px 0 48px;
    border-top: 1px solid rgba(206, 171, 100, 0.08);
}
.site-footer__inner {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: flex-end;
}
.site-footer__title { font-size: 1rem; color: #f1e7d2; }
.site-footer__copy { margin: 8px 0 0; color: var(--muted); }
.site-footer__nav { display: flex; gap: 18px; flex-wrap: wrap; justify-content: flex-end; }
.site-main--fallback { padding: 120px 0 80px; }

@media (max-width: 1024px) {
    .feature-cards,
    .instagram-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .crew-group--cast .crew-group__grid,
    .crew-group--creative .crew-group__grid,
    .crew-group--production .crew-group__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .social-row span:first-child { font-size: 1.2rem; }
}

@media (max-width: 860px) {
    .site-header__toggle { display: inline-flex; }
    .site-header__nav {
        position: absolute;
        top: calc(100% + 8px);
        right: 28px;
        min-width: 220px;
        padding: 14px;
        border: 1px solid rgba(206, 171, 100, 0.12);
        border-radius: 18px;
        background: rgba(2, 11, 30, 0.96);
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .site-header__nav.is-open { display: flex; }
    .content-panel__header,
    .site-footer__inner,
    .modal__content--crew { grid-template-columns: 1fr; display: grid; }
    .tour-table__row { grid-template-columns: 1.2fr 1fr 1fr; gap: 14px; }
}

@media (max-width: 680px) {
    .container { width: min(calc(100% - 28px), var(--container)); }
    .hero-section { padding-top: 0; margin-top: -40px; }
    .hero-poster-wrap { width: min(960px, 148%); margin-top: -20px; }
    .hero-poster { width: min(980px, 136vw); }
    .section-spacing { padding: 20px 0 52px; }
    .feature-cards,
    .instagram-grid,
    .gallery-grid { grid-template-columns: 1fr; }
    .crew-group--cast .crew-group__grid,
    .crew-group--creative .crew-group__grid,
    .crew-group--production .crew-group__grid { grid-template-columns: 1fr; }
    .feature-card { min-height: 180px; }
    .content-panel { padding: 20px 18px; border-radius: 24px; }
    .content-panel__header h2 { font-size: 1.45rem; }
    .social-row,
    .tour-table__row { grid-template-columns: 1fr; }
    .tour-table__head { display: none; }
    .epk-section,
    .epk-section__content .container { min-height: 58vh; }
    .epk-review--hero { font-size: clamp(2rem, 8vw, 2.8rem); }
    .site-footer__nav { justify-content: flex-start; }
}

.home-page .feature-section .image-button { margin-top: 28px; }

@media (max-width: 680px) {
    .button-row { gap: 10px; }
    .button-row .image-button img { min-width: 180px; max-width: 44vw; }
    .crew-card__name { font-size: 1rem; }
    .crew-card__role { font-size: 0.88rem; }
}


.hero-section {
    padding-bottom: 48px;
}
.hero-section__inner {
    padding-top: 0;
}
.hero-poster-wrap {
    width: min(1780px, 146%);
    margin-top: -150px;
}
.hero-poster {
    width: min(1680px, 126vw);
}
.button-row--hero {
    position: relative;
    z-index: 4;
    margin-top: -86px;
}
.button-row--hero .image-button {
    margin-top: 0;
}
.button-row--hero .image-button img {
    min-width: 190px;
    max-width: min(28vw, 250px);
}
.epk-section {
    margin-top: 0;
}
.epk-section__video-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
}
.epk-section__video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 177.78vh;
    min-width: 100%;
    min-height: 56.25vw;
    height: 100%;
    transform: translate(-50%, -50%);
    border: 0;
    pointer-events: none;
    filter: saturate(0.92) brightness(0.64);
}
.homepage-banner {
    position: relative;
    height: min(58vh, 520px);
    margin: 22px 0 0;
    overflow: hidden;
}
.homepage-banner__media,
.homepage-banner__image,
.homepage-banner__overlay {
    position: absolute;
    inset: 0;
}
.homepage-banner__image {
    background-position: center;
    background-size: cover;
    filter: saturate(0.9) brightness(0.68);
    transform: scale(1.02);
}
.homepage-banner__overlay {
    background:
        linear-gradient(180deg, rgba(1, 11, 30, 0.44), rgba(1, 11, 30, 0.22) 34%, rgba(1, 11, 30, 0.60) 100%),
        radial-gradient(circle at 18% 50%, rgba(46, 116, 226, 0.20), transparent 36%),
        radial-gradient(circle at 82% 34%, rgba(237, 148, 58, 0.20), transparent 38%);
}
.crew-group__heading {
    text-align: left;
}
.crew-group__grid {
    justify-items: start;
}
.crew-card__image {
    display: block;
    border-radius: 50%;
}
.crew-card__image img {
    border-radius: 50%;
}
.crew-card__name {
    margin-bottom: 2px;
    text-align: center;
}
.crew-card__role {
    margin-top: 0;
    max-width: 20ch;
    text-align: center;
}
@media (max-width: 680px) {
    .hero-poster-wrap {
        width: min(1100px, 165%);
        margin-top: -72px;
    }
    .hero-poster {
        width: min(1120px, 150vw);
    }
    .button-row--hero {
        margin-top: -46px;
        gap: 8px;
    }
    .button-row--hero .image-button img {
        min-width: 156px;
        max-width: 42vw;
    }
    .homepage-banner {
        height: 36vh;
    }
}


/* Pass 7 refinements */
.hero-section {
    padding-bottom: 34px;
}
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 24%, rgba(255,255,255,0.08), transparent 22%),
        linear-gradient(180deg, rgba(1, 11, 30, 0.0) 0%, rgba(1, 11, 30, 0.08) 58%, rgba(1, 11, 30, 0.38) 100%);
    pointer-events: none;
}
.hero-poster-wrap {
    width: min(1880px, 154%);
    margin-top: -178px;
}
.hero-poster {
    width: min(1760px, 132vw);
}
.button-row--hero {
    justify-content: center;
    gap: 14px;
    margin-top: -92px;
}
.button-row--hero .image-button img {
    min-width: 176px;
    max-width: min(22vw, 232px);
}
.section-divider {
    padding: 20px 0 34px;
}
.section-divider--hero {
    padding-top: 24px;
    padding-bottom: 0;
}
.section-divider--between {
    padding-top: 34px;
    padding-bottom: 34px;
}
.section-divider__line {
    width: min(74%, 760px);
    opacity: 0.68;
    background: linear-gradient(90deg, transparent 0%, rgba(207, 168, 88, 0.14) 14%, rgba(207, 168, 88, 0.48) 50%, rgba(207, 168, 88, 0.14) 86%, transparent 100%);
}
.section-divider__line::before,
.section-divider__line::after {
    width: 22px;
    background: rgba(207, 168, 88, 0.32);
}
.section-divider__line::before { left: calc(50% - 34px); }
.section-divider__line::after { right: calc(50% - 34px); }
.epk-section {
    margin-top: 0;
}
.feature-section.section-spacing--compact {
    padding-top: 0;
}
.content-panel {
    margin-top: 22px;
}
.crew-groups {
    gap: 18px;
}
.crew-group {
    border-top: 1px solid rgba(206, 171, 100, 0.14);
    padding-top: 18px;
}
.crew-group__summary {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    padding: 0 0 4px;
}
.crew-group__summary::-webkit-details-marker {
    display: none;
}
.crew-group__heading {
    text-align: left;
    font-size: 1.08rem;
}
.crew-group__toggle {
    position: relative;
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
}
.crew-group__toggle::before,
.crew-group__toggle::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 12px;
    height: 1px;
    background: rgba(239, 227, 195, 0.72);
    transform: translate(-50%, -50%);
    transition: transform 0.24s ease, opacity 0.24s ease;
}
.crew-group__toggle::after {
    transform: translate(-50%, -50%) rotate(90deg);
}
.crew-group[open] .crew-group__toggle::after {
    opacity: 0;
}
.crew-group__body {
    padding-top: 18px;
}
.crew-group__grid {
    justify-items: center;
}
.homepage-banner {
    margin: 0;
    height: min(62vh, 560px);
}
.homepage-banner__image {
    background-position: center center;
    filter: saturate(0.92) brightness(0.66);
}
@media (max-width: 680px) {
    .hero-poster-wrap {
        width: min(1160px, 172%);
        margin-top: -88px;
    }
    .hero-poster {
        width: min(1180px, 158vw);
    }
    .button-row--hero {
        margin-top: -52px;
        gap: 8px;
    }
    .button-row--hero .image-button img {
        min-width: 150px;
        max-width: 42vw;
    }
    .section-divider--between {
        padding-top: 24px;
        padding-bottom: 24px;
    }
}


.instagram-section {
    padding-top: 8px;
}
.instagram-feed-live {
    width: 100%;
}
.instagram-feed-live .sb_instagram,
.instagram-feed-live #sb_instagram,
.instagram-feed-live .sbi {
    background: transparent !important;
}
.instagram-feed-live #sbi_images,
.instagram-feed-live .sbi_photo_wrap,
.instagram-feed-live .sbi_item {
    border-radius: 18px;
    overflow: hidden;
}
.instagram-feed-live #sb_instagram #sbi_images,
.instagram-feed-live .sbi_images {
    gap: 18px !important;
}
.instagram-feed-live .sbi_item {
    border: 1px solid rgba(206, 171, 100, 0.12);
    background: rgba(4, 13, 32, 0.72);
    transition: transform 0.32s ease, border-color 0.32s ease;
}
.instagram-feed-live .sbi_item:hover {
    transform: translateY(-6px);
    border-color: rgba(206, 171, 100, 0.3);
}
.instagram-feed-live .sbi_photo {
    height: 100% !important;
}
.instagram-feed-live .sbi_photo::after {
    content: '';
    position: absolute;
    inset: auto 0 0 0;
    height: 34%;
    background: linear-gradient(180deg, transparent, rgba(4, 13, 32, 0.84));
    pointer-events: none;
}
.instagram-feed-live .sbi-caption,
.instagram-feed-live .sbi_info,
.instagram-feed-live .sbi_lightbox_carousel_icon,
.instagram-feed-live .sbi_load_btn,
.instagram-feed-live #sbi_load,
.instagram-feed-live .sb_instagram_header,
.instagram-feed-live #sbi_res {
    display: none !important;
}
@media (min-width: 681px) {
    .button-row--hero {
        gap: 12px;
    }
}


/* Pass 9 hero/video restructure */
.hero-section--video {
    position: relative;
    margin-top: 0;
    padding: 0 0 0;
}
.hero-section__media {
    position: relative;
    min-height: min(82vh, 900px);
    overflow: hidden;
}
.hero-section__video-wrap,
.hero-section__poster,
.hero-section__overlay {
    position: absolute;
    inset: 0;
}
.hero-section__video-wrap {
    overflow: hidden;
    background: #000;
}
.hero-section__video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 177.78vh;
    min-width: 100%;
    height: 56.25vw;
    min-height: 100%;
    transform: translate(-50%, -50%);
    border: 0;
    pointer-events: none;
}
.hero-section__poster {
    display: none;
    background-position: center top;
    background-size: cover;
}
.hero-section__overlay {
    background:
        radial-gradient(circle at center, rgba(1, 11, 30, 0.04) 0%, rgba(1, 11, 30, 0.22) 48%, rgba(1, 11, 30, 0.82) 100%),
        linear-gradient(90deg, rgba(31, 86, 175, 0.26) 0%, rgba(1, 11, 30, 0.06) 38%, rgba(233, 144, 48, 0.28) 100%),
        linear-gradient(180deg, rgba(1, 11, 30, 0.20) 0%, rgba(1, 11, 30, 0.08) 34%, rgba(1, 11, 30, 0.72) 100%);
}
.hero-section__content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: grid;
    place-items: center;
    padding-top: 4vh;
}
.hero-section__logo-wrap {
    width: min(92vw, 1160px);
    margin-inline: auto;
}
.hero-section__logo {
    width: 100%;
    max-width: 1120px;
    margin-inline: auto;
    filter: drop-shadow(0 8px 20px rgba(0,0,0,0.35));
}
.button-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
}
.button-row--hero {
    position: relative;
    z-index: 3;
    margin-top: -54px;
    margin-bottom: 16px;
}
.image-button {
    margin: 0;
}
.image-button img {
    min-width: 0;
    width: clamp(210px, 20vw, 280px);
}
.section-divider--upper {
    padding-top: 18px;
}
.section-divider--between {
    padding-top: 26px;
    padding-bottom: 26px;
}
.section-divider__line {
    width: min(76%, 820px);
}
.homepage-banner {
    margin-top: 0;
}
.homepage-banner__media {
    position: relative;
    min-height: clamp(340px, 48vw, 620px);
    overflow: hidden;
}
.homepage-banner__image,
.homepage-banner__overlay {
    position: absolute;
    inset: 0;
}
.homepage-banner__image {
    background-position: center center;
    background-size: cover;
    transform: scale(1.01);
}
.homepage-banner__overlay {
    background: linear-gradient(180deg, rgba(1,11,30,0.20), rgba(1,11,30,0.46));
}
.epk-section--secondary {
    margin-top: 0;
}
.epk-section__media {
    position: relative;
    min-height: clamp(360px, 52vw, 680px);
    overflow: hidden;
}
.epk-section__video-wrap,
.epk-section__overlay,
.epk-section__content {
    position: absolute;
    inset: 0;
}
.epk-section__video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 177.78vh;
    min-width: 100%;
    height: 56.25vw;
    min-height: 100%;
    transform: translate(-50%, -50%);
    border: 0;
}
.epk-section__overlay {
    background: linear-gradient(90deg, rgba(14,37,78,0.45), rgba(1,11,30,0.18) 42%, rgba(117,58,13,0.44)), linear-gradient(180deg, rgba(1,11,30,0.30), rgba(1,11,30,0.44));
}
.epk-section__content {
    z-index: 2;
    display: grid;
    place-items: center;
}
.epk-section__copy {
    text-align: center;
    max-width: 860px;
    margin-inline: auto;
    padding: 0 24px;
}
.epk-review {
    font-family: 'Cinzel', serif;
    font-size: clamp(2rem, 4.2vw, 4rem);
    line-height: 1.1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #f2ead9;
    margin: 0;
    text-shadow: 0 8px 30px rgba(0,0,0,0.36);
}
.epk-review-source {
    margin-top: 14px;
    color: rgba(242, 234, 217, 0.82);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 0.74rem;
}
.feature-section.section-spacing--compact {
    padding-top: 8px;
}
.content-panel__header p {
    display: none;
}
.crew-group__heading {
    text-align: left;
}
.crew-card__image {
    width: clamp(126px, 16vw, 220px);
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 16px;
    display: block;
    border: 1px solid rgba(207, 168, 88, 0.28);
    box-shadow: 0 18px 34px rgba(0,0,0,0.22);
}
.crew-group--cast .crew-card__image { width: clamp(150px, 19vw, 250px); }
.crew-group--production .crew-card__image { width: clamp(110px, 12vw, 170px); }
.crew-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.crew-card__name {
    display: block;
    color: var(--gold);
    font-family: 'Cinzel', serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: clamp(1rem, 1.55vw, 1.5rem);
    line-height: 1.1;
}
.crew-card__role {
    display: block;
    margin-top: 6px;
    color: rgba(237, 241, 247, 0.84);
    font-size: 0.98rem;
    line-height: 1.35;
}
.instagram-section {
    padding-top: 18px;
}
@media (max-width: 900px) {
    .hero-section__media {
        min-height: 68vh;
    }
    .hero-section__logo-wrap {
        width: min(90vw, 760px);
    }
    .button-row--hero {
        gap: 16px;
        margin-top: -42px;
        flex-wrap: wrap;
    }
}
@media (max-width: 767px) {
    .hero-section__video-wrap {
        display: none;
    }
    .hero-section__poster {
        display: block;
    }
    .hero-section__media {
        min-height: 78vh;
    }
    .hero-section__content {
        align-items: end;
        padding-bottom: 24vh;
    }
    .hero-section__logo-wrap {
        width: min(92vw, 620px);
    }
    .button-row--hero {
        margin-top: -34px;
        gap: 14px;
    }
    .image-button img {
        width: clamp(180px, 44vw, 220px);
    }
    .homepage-banner__media,
    .epk-section__media {
        min-height: 320px;
    }
}

/* Pass 10 layout polish */
.hero-section__content {
    align-items: start;
    padding-top: 7vh;
}
.hero-section__stage {
    width: 100%;
    display: grid;
    justify-items: center;
    gap: 18px;
    padding-top: 1vh;
}
.hero-section__logo-wrap {
    width: min(88vw, 980px);
}
.hero-section__logo {
    max-width: 960px;
}
.button-row--hero {
    gap: 18px;
    margin-top: 4px;
    margin-bottom: 0;
}
.button-row--hero .image-button img {
    width: clamp(200px, 17vw, 255px);
}
.section-divider--upper {
    padding-top: 16px;
    padding-bottom: 34px;
}
.section-divider--between {
    padding-top: 32px;
    padding-bottom: 32px;
}
.feature-section.section-spacing--compact {
    padding-top: 0;
    padding-bottom: 58px;
}
.homepage-banner {
    margin-top: 0;
}
.homepage-banner__media {
    min-height: clamp(360px, 44vw, 620px);
}
.homepage-banner__image {
    background-position: center center;
}
.tour-section {
    padding-top: 18px;
    padding-bottom: 64px;
}
.epk-section--secondary {
    margin-top: 0;
}
.epk-section__media {
    min-height: clamp(380px, 48vw, 640px);
}
.instagram-section {
    padding-top: 8px;
}
@media (max-width: 900px) {
    .hero-section__content {
        padding-top: 10vh;
    }
    .hero-section__logo-wrap {
        width: min(90vw, 760px);
    }
    .button-row--hero {
        gap: 14px;
    }
}
@media (max-width: 767px) {
    .hero-section__content {
        align-items: end;
        padding-top: 0;
        padding-bottom: 18vh;
    }
    .hero-section__stage {
        gap: 14px;
    }
    .hero-section__logo-wrap {
        width: min(92vw, 620px);
    }
    .button-row--hero {
        gap: 12px;
        flex-wrap: wrap;
    }
    .button-row--hero .image-button img {
        width: clamp(170px, 42vw, 210px);
    }
}


/* Pass 11 simplification */
.hero-section__content {
    align-items: center;
    justify-items: center;
    padding-top: 0;
}
.hero-section__stage {
    min-height: min(82vh, 900px);
    align-content: center;
    justify-items: center;
    gap: 0;
}
.hero-section__logo-wrap {
    width: min(84vw, 860px);
}
.hero-section__logo {
    max-width: 820px;
}
.button-row--hero { display: none !important; }
.section-divider--upper {
    padding-top: 22px;
    padding-bottom: 34px;
}
.feature-cards {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}
.gallery-preview-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}
.gallery-preview-grid__item {
    appearance: none;
    border: 1px solid rgba(207, 168, 88, 0.18);
    background: rgba(6, 16, 37, 0.5);
    border-radius: 18px;
    overflow: hidden;
    padding: 0;
    cursor: pointer;
    transition: transform 0.28s ease, border-color 0.28s ease, opacity 0.28s ease;
}
.gallery-preview-grid__item:hover,
.gallery-preview-grid__item:focus-visible {
    transform: translateY(-4px);
    border-color: rgba(207, 168, 88, 0.38);
}
.gallery-preview-grid__item img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}
.tour-layout {
    display: grid;
    grid-template-columns: minmax(240px, 340px) minmax(0, 1fr);
    gap: 34px;
    align-items: start;
}
.tour-layout__poster {
    position: relative;
}
.tour-layout__poster img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 24px 44px rgba(0,0,0,0.34);
}
.epk-section__media {
        background-size: cover;
    background-position: center center;
}
.epk-section__video-wrap { z-index: 0; }
.epk-section__overlay { z-index: 1; }
.epk-section__content { z-index: 2; }
.epk-section__video {
    opacity: 0.82;
    pointer-events: none;
}
@media (max-width: 1100px) {
    .feature-cards,
    .gallery-preview-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .tour-layout {
        grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
        gap: 24px;
    }
}
@media (max-width: 767px) {
    .hero-section__content {
        align-items: end;
        padding-bottom: 12vh;
    }
    .hero-section__stage {
        min-height: 78vh;
    }
    .hero-section__logo-wrap {
        width: min(90vw, 560px);
    }
    .feature-cards,
    .gallery-preview-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }
    .tour-layout {
        grid-template-columns: 1fr;
    }
    .tour-layout__poster {
        max-width: 320px;
        margin: 0 auto 8px;
    }
}
@media (max-width: 560px) {
    .feature-cards,
    .gallery-preview-grid {
        grid-template-columns: 1fr;
    }
}


/* Pass 12 refinements */
.feature-cards {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}
.feature-card {
    min-height: 210px;
}
.tour-layout__poster {
    align-self: start;
}
.tour-layout__poster img {
    aspect-ratio: 0.7 / 1;
    object-fit: cover;
    transition: transform 0.38s ease, box-shadow 0.38s ease;
}
.tour-layout__poster:hover img {
    transform: translateY(-6px) scale(1.018);
    box-shadow: 0 28px 54px rgba(0,0,0,0.42);
}

.epk-section__media {
    position: relative;
    min-height: clamp(420px, 52vw, 720px);
    background: #010b1e;
}
.epk-section__fallback,
.epk-section__video-wrap,
.epk-section__overlay,
.epk-section__content {
    position: absolute;
    inset: 0;
}
.epk-section__fallback {
    background-position: center center;
    background-size: cover;
    filter: saturate(0.92) brightness(0.40) blur(1px);
    transform: scale(1.03);
    z-index: 0;
}
.epk-section__video-wrap {
    z-index: 1;
    overflow: hidden;
}
.epk-section__video {
    z-index: 1;
    opacity: 0.78;
    filter: saturate(0.94) brightness(0.66);
}
.epk-section__overlay {
    z-index: 2;
}
.epk-section__content {
    z-index: 3;
}
.epk-review--hero {
    text-shadow: 0 10px 28px rgba(0,0,0,0.32);
}

.home-page.has-storm-overlay {
    position: relative;
}
.home-page.has-storm-overlay::before,
.home-page.has-storm-overlay::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 30;
}
.home-page.has-storm-overlay::before {
    opacity: 0.045;
    background:
        repeating-linear-gradient(
            104deg,
            rgba(190, 214, 255, 0.18) 0 1px,
            rgba(190, 214, 255, 0.0) 1px 18px
        );
    transform: translate3d(0,0,0);
    animation: shantifyRain 17s linear infinite;
    mix-blend-mode: screen;
}
.home-page.has-storm-overlay::after {
    opacity: 0.10;
    background:
        radial-gradient(circle at 18% 14%, rgba(126, 179, 255, 0.18), transparent 18%),
        radial-gradient(circle at 82% 8%, rgba(255, 184, 97, 0.12), transparent 16%),
        linear-gradient(180deg, rgba(255,255,255,0.015), rgba(255,255,255,0) 20%);
}
@keyframes shantifyRain {
    from { transform: translate3d(-2%, -6%, 0); }
    to { transform: translate3d(2%, 8%, 0); }
}

@media (max-width: 1100px) {
    .feature-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 767px) {
    .feature-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .home-page.has-storm-overlay::before,
    .home-page.has-storm-overlay::after {
        display: none;
    }
}
@media (max-width: 560px) {
    .feature-cards {
        grid-template-columns: 1fr;
    }
}


/* Pass 13 fixes */
.tour-layout__poster {
    position: relative;
    align-self: start;
}
.tour-layout__poster img {
    display: block;
    width: 100%;
    border-radius: 0;
    box-shadow: none;
    transform: translateY(0);
    transition: transform 0.28s ease;
}
.tour-layout__poster:hover img {
    transform: translateY(-4px) scale(1.01);
}

.epk-section--secondary {
    position: relative;
    isolation: isolate;
}
.epk-section--secondary .epk-section__media {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background: #010b1e;
}
.epk-section--secondary .epk-section__image {
    position: absolute;
    inset: 0;
    background-position: center center;
    background-size: cover;
    filter: saturate(0.9) brightness(0.42);
    transform: scale(1.03);
    z-index: 0;
}
.epk-section--secondary .epk-section__video-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
}
.epk-section--secondary .epk-section__video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 177.78vh;
    min-width: 100%;
    min-height: 56.25vw;
    height: 100%;
    transform: translate(-50%, -50%);
    border: 0;
    opacity: 0.78;
    filter: saturate(0.92) brightness(0.58);
    pointer-events: none;
}
.epk-section--secondary .epk-section__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
}
.epk-section--secondary .epk-section__content {
    position: relative;
    z-index: 3;
}

@media (max-width: 767px) {
    .tour-layout__poster img {
        max-width: 260px;
        margin-inline: auto;
    }
}



/* Pass 14 final presentation polish */
.homepage-banner {
    height: clamp(420px, 60vh, 720px);
}

.homepage-banner__image {
    background-position: center 65%;
}

.tour-layout {
    align-items: stretch;
}

.tour-layout__poster {
    display: flex;
    align-self: stretch;
    position: sticky;
    top: 120px;
    height: fit-content;
}

.tour-layout__poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1100px) {
    .tour-layout__poster {
        top: 96px;
    }
}

@media (max-width: 767px) {
    .homepage-banner {
        height: clamp(340px, 52vh, 520px);
    }

    .homepage-banner__image {
        background-position: center 58%;
    }

    .tour-layout__poster {
        position: relative;
        top: auto;
        height: auto;
        align-self: start;
    }

    .tour-layout__poster img {
        height: auto;
        object-fit: contain;
    }
}



/* Pass 15 producer polish */
.homepage-banner {
    height: clamp(460px, 64vh, 760px);
}

.homepage-banner__image {
    background-position: center 65%;
    transform: translate3d(0, var(--banner-parallax, 0px), 0) scale(1.045);
    will-change: transform;
}

.hero-section__video-wrap {
    transform: translate3d(0, var(--hero-parallax, 0px), 0);
    will-change: transform;
}

.hero-section__logo {
    animation: shantifyLogoFloat 6.8s ease-in-out infinite;
}

.tour-layout {
    align-items: flex-start;
    grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
}

.tour-layout__poster {
    display: flex;
    align-self: flex-start;
    position: sticky;
    top: 120px;
    max-height: 520px;
    height: auto;
}

.tour-layout__poster img {
    width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: contain;
}

@keyframes shantifyLogoFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-6px); }
}

@media (max-width: 1100px) {
    .tour-layout {
        grid-template-columns: minmax(190px, 250px) minmax(0, 1fr);
    }

    .tour-layout__poster {
        top: 96px;
        max-height: 460px;
    }

    .tour-layout__poster img {
        max-height: 460px;
    }
}

@media (max-width: 767px) {
    .homepage-banner {
        height: clamp(360px, 54vh, 560px);
    }

    .homepage-banner__image {
        background-position: center 58%;
    }

    .hero-section__video-wrap,
    .homepage-banner__image {
        transform: none;
    }

    .tour-layout {
        grid-template-columns: 1fr;
    }

    .tour-layout__poster {
        position: relative;
        top: auto;
        max-height: none;
        height: auto;
        margin: 0 auto 18px;
    }

    .tour-layout__poster img {
        max-height: none;
    }
}


/* Pass 19 final presentation refinements */
body {
    font-family: 'Inter', sans-serif;
    line-height: 1.65;
}

.site-header__brand,
.site-footer__title,
.content-panel__header h2,
.modal__content h3,
.eyebrow,
.feature-card__title,
.crew-group__heading,
.crew-card__name,
.section-heading h2,
.section-heading .eyebrow {
    font-family: 'Abril Fatface', serif !important;
    letter-spacing: 0.04em;
    font-weight: 400;
}

.site-header__brand {
    letter-spacing: 0.12em;
    font-size: 1.05rem;
}

.feature-card__title,
.crew-card__name,
.content-panel__header h2,
.modal__content h3 {
    text-transform: none;
}

.eyebrow {
    letter-spacing: 0.22em;
    font-size: 0.86rem;
}

.tour-layout {
    align-items: flex-start;
    grid-template-columns: minmax(160px, 220px) minmax(0, 1fr);
    gap: 30px;
}

.tour-layout__poster {
    position: sticky;
    top: 112px;
    align-self: flex-start;
    max-width: 220px;
    max-height: 380px;
    height: auto;
    display: block;
}

.tour-layout__poster img {
    width: 100%;
    height: auto;
    max-height: 380px;
    object-fit: contain;
    border-radius: 0;
    box-shadow: none;
}

.modal__copy {
    font-size: 1rem;
    line-height: 1.75;
}

.modal__copy p {
    margin: 0 0 1em;
}

.modal__copy p:last-child {
    margin-bottom: 0;
}

.modal__copy strong,
.modal__copy b {
    color: #fff3dc;
    font-weight: 700;
}

.modal__copy em,
.modal__copy i {
    font-style: italic;
}

.modal__copy ul,
.modal__copy ol {
    margin: 0.8em 0 1.1em 1.2em;
}

.modal__copy li + li {
    margin-top: 0.3em;
}

.epk-section__image {
    opacity: 0 !important;
}

@media (max-width: 900px) {
    .tour-layout {
        grid-template-columns: minmax(140px, 190px) minmax(0, 1fr);
        gap: 22px;
    }

    .tour-layout__poster {
        max-width: 190px;
        max-height: 330px;
    }

    .tour-layout__poster img {
        max-height: 330px;
    }
}

@media (max-width: 767px) {
    .hero-section__video-wrap {
        display: block !important;
    }

    .hero-section__poster {
        display: none !important;
    }

    .tour-layout {
        grid-template-columns: 1fr;
    }

    .tour-layout__poster {
        position: relative !important;
        top: auto !important;
        max-width: 220px;
        max-height: none;
        margin: 0 auto 18px;
    }

    .tour-layout__poster img {
        max-height: none;
    }
}


/* Pass 20 revert typography and socials/admin polish */
body {
    font-family: 'Inter', sans-serif !important;
}

.site-header__brand,
.site-footer__title,
.content-panel__header h2,
.modal__content h3,
.eyebrow,
.feature-card__title,
.crew-group__heading,
.crew-card__name,
.section-heading h2,
.section-heading .eyebrow {
    font-family: 'Cinzel', serif !important;
    font-weight: 600;
    letter-spacing: 0.12em;
}

.feature-card__title,
.crew-card__name,
.content-panel__header h2,
.modal__content h3 {
    text-transform: uppercase;
}


/* Pass 24 gallery lightbox and hardening */
.modal__dialog--gallery {
    width: min(1320px, 100%);
}
.modal__content--gallery {
    padding: 28px 28px 24px;
}
.gallery-lightbox {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr) 56px;
    gap: 18px;
    align-items: center;
    margin-top: 18px;
}
.gallery-lightbox__figure {
    margin: 0;
    background: rgba(1, 11, 30, 0.72);
    border: 1px solid rgba(206, 171, 100, 0.14);
    border-radius: 20px;
    min-height: 54vh;
    display: grid;
    place-items: center;
    overflow: hidden;
}
.gallery-lightbox__figure img {
    width: 100%;
    max-height: 72vh;
    object-fit: contain;
}
.gallery-lightbox__nav {
    width: 56px;
    height: 56px;
    border: 1px solid rgba(206, 171, 100, 0.22);
    border-radius: 999px;
    background: rgba(3, 14, 36, 0.88);
    color: #fff;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
}
.gallery-lightbox__thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 12px;
    margin-top: 18px;
}
.gallery-lightbox__thumb {
    border: 1px solid rgba(206, 171, 100, 0.14);
    border-radius: 14px;
    background: rgba(3, 14, 36, 0.45);
    padding: 0;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}
.gallery-lightbox__thumb:hover,
.gallery-lightbox__thumb:focus-visible,
.gallery-lightbox__thumb.is-active {
    border-color: rgba(206, 171, 100, 0.42);
    transform: translateY(-2px);
}
.gallery-lightbox__thumb img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}
@media (max-width: 767px) {
    .gallery-lightbox {
        grid-template-columns: 40px minmax(0, 1fr) 40px;
        gap: 10px;
    }
    .gallery-lightbox__nav {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    .gallery-lightbox__figure {
        min-height: 38vh;
    }
}


/* Spotlight Instagram feed integration */
.instagram-feed-live {
    position: relative;
}

.instagram-feed-live .FeedLayout__wrapper {
    background: transparent !important;
    padding: 0 !important;
}

.instagram-feed-live .FeedGridLayout__cell,
.instagram-feed-live .MasonryLayout__cell,
.instagram-feed-live .FeedHighlightLayout__highlight {
    overflow: hidden !important;
    border-radius: 18px !important;
    border: 1px solid rgba(206, 171, 100, 0.14) !important;
    background: rgba(4, 13, 32, 0.72) !important;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18) !important;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease !important;
}

.instagram-feed-live .FeedGridLayout__cell:hover,
.instagram-feed-live .MasonryLayout__cell:hover,
.instagram-feed-live .FeedHighlightLayout__highlight:hover {
    transform: translateY(-4px) !important;
    border-color: rgba(206, 171, 100, 0.32) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.28) !important;
}

.instagram-feed-live .FeedGridLayout__cell img,
.instagram-feed-live .MasonryLayout__cell img,
.instagram-feed-live .FeedHighlightLayout__highlight img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    background: #030e24 !important;
    transition: transform 0.45s ease, filter 0.45s ease !important;
}

.instagram-feed-live .FeedGridLayout__cell:hover img,
.instagram-feed-live .MasonryLayout__cell:hover img,
.instagram-feed-live .FeedHighlightLayout__highlight:hover img {
    transform: scale(1.02) !important;
    filter: brightness(0.96) saturate(1.02) !important;
}

.instagram-feed-live .FeedHeader__root,
.instagram-feed-live .FeedLayout__col-footer,
.instagram-feed-live .FollowButton,
.instagram-feed-live .LoadMoreButton {
    display: none !important;
}

@media (max-width: 767px) {
    .instagram-feed-live .FeedGridLayout__cell,
    .instagram-feed-live .MasonryLayout__cell,
    .instagram-feed-live .FeedHighlightLayout__highlight {
        border-radius: 14px !important;
    }
}



/* Pass 25 Spotlight integration */
.instagram-feed-live {
    width: 100%;
}

.instagram-feed-live .FeedLayout__wrapper {
    background: transparent !important;
    padding: 0 !important;
}

.instagram-feed-live .FeedGridLayout__cell,
.instagram-feed-live .MasonryLayout__cell,
.instagram-feed-live .FeedHighlightLayout__highlight {
    overflow: hidden !important;
    border-radius: 18px !important;
    border: 1px solid rgba(206, 171, 100, 0.14) !important;
    background: rgba(4, 13, 32, 0.72) !important;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18) !important;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease !important;
}

.instagram-feed-live .FeedGridLayout__cell:hover,
.instagram-feed-live .MasonryLayout__cell:hover,
.instagram-feed-live .FeedHighlightLayout__highlight:hover {
    transform: translateY(-4px) !important;
    border-color: rgba(206, 171, 100, 0.32) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.28) !important;
}

.instagram-feed-live .FeedGridLayout__cell img,
.instagram-feed-live .MasonryLayout__cell img,
.instagram-feed-live .FeedHighlightLayout__highlight img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    background: #030e24 !important;
    transition: transform 0.45s ease, filter 0.45s ease !important;
}

.instagram-feed-live .FeedGridLayout__cell:hover img,
.instagram-feed-live .MasonryLayout__cell:hover img,
.instagram-feed-live .FeedHighlightLayout__highlight:hover img {
    transform: scale(1.02) !important;
    filter: brightness(0.96) saturate(1.02) !important;
}


/* Pass 26 final live tweaks */
html,
body {
    background: #010b1e;
}

.section-heading--instagram {
    margin-bottom: 22px;
    text-align: center;
}

.section-heading--instagram .eyebrow {
    margin: 0;
    font-size: 0.88rem;
}

@media (max-width: 767px) {
    .modal {
        padding: 12px;
        background: rgba(1, 11, 30, 0.96);
    }

    .modal__dialog {
        width: 100%;
        max-height: calc(100dvh - 24px);
        border-radius: 24px;
        overflow: auto;
        -webkit-overflow-scrolling: touch;
    }

    .modal__content {
        padding: 18px;
    }

    .modal__media img {
        display: block;
        background: #010b1e;
    }

    .modal__close {
        top: 10px;
        right: 12px;
    }
}


/* Pass 27 Vimeo + mobile modal cleanup */
html,
body,
.site,
.site-main,
#page {
    background: #010b1e !important;
}

@media (max-width: 767px) {
    html,
    body {
        overflow-x: hidden;
        overscroll-behavior: none;
    }

    .modal,
    .modal__backdrop {
        background-color: #010b1e !important;
    }

    .modal__dialog,
    .modal__content,
    .modal__content--crew,
    .modal__media,
    .modal__text,
    .wysiwyg-content {
        background: transparent !important;
    }

    .modal__dialog {
        box-shadow: 0 24px 60px rgba(0, 0, 0, 0.42);
    }
}
