:root {
    --text-primary: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.6);
    --bg-dark: #000000;
    --accent: #E52E2D; /* Red color pulled from the MotionArc logo */
    --nav-height: 80px;
    --font-primary: 'Outfit', sans-serif;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-primary);
    overflow-x: hidden;
}

body.home-body {
    overflow: hidden;
}

/* Background Video Container */
.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    overflow: hidden;
    background-color: var(--bg-dark);
    background-image: none !important;
}

/* Ensure Vimeo iframe covers the whole screen */
.video-container iframe,
.video-container video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    transform: translate(-50%, -50%);
    pointer-events: none; /* Let clicks pass through if needed, though they shouldn't usually */
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out;
}

.video-container video {
    object-fit: cover;
}

/* If aspect ratio is wider than video, scale width. This is a common hack for background iframes. */
@media (min-aspect-ratio: 16/9) {
    .video-container iframe {
        height: 56.25vw; /* 9/16 * 100 = 56.25 */
    }
}
@media (max-aspect-ratio: 16/9) {
    .video-container iframe {
        width: 177.78vh; /* 16/9 * 100 = 177.78 */
    }
}

.video-container iframe.active,
.video-container video.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

/* Navigation */
.top-nav {
    --header-link-color: var(--text-primary);
    --header-line-color: #ffffff;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    z-index: 10;
    border-bottom: 1px solid var(--header-line-color);
    background: transparent;
}

.logo-image {
    max-height: 45px;
    width: auto;
    display: block;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo-image:hover {
    transform: scale(1.08); /* slight pop up on hover */
}

nav ul {
    list-style: none;
    display: flex;
    align-items: center;
}

nav ul li:not(:last-child) {
    border-right: 1px solid var(--header-line-color);
    padding-right: 25px;
    margin-right: 25px;
}

nav a {
    color: var(--header-link-color);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    padding-bottom: 5px;
    display: inline-block; /* Required for transforms */
}

@keyframes buttonWobble {
    0% { transform: translateY(0); }
    20% { transform: translateY(-4px); }
    40% { transform: translateY(-2px); }
    60% { transform: translateY(-3px); }
    80% { transform: translateY(-1px); }
    100% { transform: translateY(0); }
}

nav a:hover, nav a.active {
    color: var(--accent); /* Red accent */
}

nav a:hover {
    animation: buttonWobble 0.5s cubic-bezier(0.25, 0.1, 0.25, 1) both;
}

.header-on-light .top-nav {
    --header-link-color: #ffffff;
    --header-line-color: rgba(255,255,255,0.35);
    background: rgba(0,0,0,0.34);
}

.header-on-light nav a:hover,
.header-on-light nav a.active {
    color: var(--accent);
}

/* Hero Typography */
.hero-overlay {
    position: absolute;
    bottom: 15vh;
    left: 40px;
    z-index: 10;
    pointer-events: none; /* Text shouldn't block clicks */
    width: calc((100vw - 80px) * 0.6); /* Constrains text width perfectly to the length of the slider track */
}

.hero-content h1 {
    font-size: 7rem;
    font-weight: 900;
    line-height: 0.95; /* tighter line height for wrapped text */
    letter-spacing: -2px;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
    /* OUT state: fade out only, stay in place */
    opacity: 0;
    transform: translateY(0);
    transition: opacity 0.5s ease-out;
}

.hero-content h1 sup {
    font-size: 0.4em;
    vertical-align: super;
    margin-left: 2px;
    letter-spacing: 0;
}

.hero-overlay.prepare .hero-content h1 {
    /* PREPARE state: snapped down, invisible, no transitions */
    opacity: 0;
    transform: translateY(15vh);
    transition: none;
}

.hero-overlay.active .hero-content h1 {
    /* IN state: slide up and fade in */
    opacity: 1;
    transform: translateY(0);
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-content p {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--accent);
    letter-spacing: 4px;
    text-transform: uppercase;
    /* OUT state */
    opacity: 0;
    transform: translateY(0);
    transition: opacity 0.5s ease-out;
}

.hero-overlay.prepare .hero-content p {
    opacity: 0;
    transform: translateY(15vh);
    transition: none;
}

.hero-overlay.active .hero-content p {
    opacity: 1;
    transform: translateY(0);
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.15s;
}


/* Carousel Indicators bottom */
.carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 40px;
    right: 40px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.progress-track {
    display: flex;
    gap: 10px;
    width: 60%; /* Only take up some width for the bars */
}

.progress-item {
    flex: 1;
    height: 3px;
    background: rgba(255,255,255,0.2);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: background-color 0.3s;
}

.progress-item:hover {
    background: rgba(255,255,255,0.4);
}

.progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: #ffffff;
    transition: width linear; /* Controlled by JS based on duration */
}

.title-link, .title-link:visited, .title-link:active {
    text-decoration: none !important;
    color: #ffffff !important;
    display: inline-block;
    cursor: pointer;
    pointer-events: auto; /* Overrides the non-clickable overlay */
    transition: transform 0.4s ease;
}

/* Ensure no child elements inherit an underline */
.title-link h1 {
    text-decoration: none !important;
}

.title-link:hover {
    color: #ffffff !important;
    transform: scale(1.04);
}

/* ========================================= */
/* SUB-PAGE: PROJECT DETAILS                 */
/* ========================================= */

.project-hero {
    width: 100vw;
    height: 70vh;
    background-color: #111;
    background-size: cover;
    background-position: center;
    position: relative;
    border-bottom: 0;
}

.project-hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 62%;
    background: linear-gradient(
        0deg,
        #000 0%,
        #000 12%,
        rgba(0,0,0,0.94) 26%,
        rgba(0,0,0,0.68) 52%,
        rgba(0,0,0,0) 100%
    );
    pointer-events: none;
}

.project-detail-layout {
    display: grid;
    grid-template-columns: 1fr 2fr; /* 1/3 poster, 2/3 info roughly */
    gap: 6vw;
    padding: var(--project-detail-pad-top, 6vw) 10vw var(--project-detail-pad-bottom, 2vw) 10vw;
    max-width: 1600px;
    margin: 0 auto;
    align-items: stretch;
}

.bruce-page {
    --bruce-detail-overlap: clamp(150px, 20vh, 220px);
}

.bruce-page .bruce-cup-saucer-hero {
    height: clamp(760px, 100vh, 1040px);
    background-position: center 50%;
}

.bruce-page .bruce-cup-saucer-hero::after {
    height: var(--bruce-detail-overlap);
    background: linear-gradient(
        0deg,
        #000 0%,
        rgba(0,0,0,0.96) 26%,
        rgba(0,0,0,0.72) 58%,
        rgba(0,0,0,0) 100%
    );
}

.bruce-page .project-detail-layout {
    position: relative;
    z-index: 1;
    margin-top: calc(-1 * var(--bruce-detail-overlap));
    padding-top: clamp(18px, 3vh, 32px);
}

.gateway-page,
.project-template-page {
    --gateway-detail-overlap: clamp(120px, 18vh, 200px);
}

.gateway-page .gateway-hero,
.project-template-page .template-hero {
    height: clamp(700px, 92vh, 980px);
    background-position: center 48%;
}

.gateway-page .gateway-hero::after,
.project-template-page .template-hero::after {
    height: var(--gateway-detail-overlap);
    background: linear-gradient(
        0deg,
        #000 0%,
        rgba(0,0,0,0.96) 28%,
        rgba(0,0,0,0.68) 60%,
        rgba(0,0,0,0) 100%
    );
}

.gateway-page .project-detail-layout,
.project-template-page .project-detail-layout {
    position: relative;
    z-index: 1;
    margin-top: calc(-1 * var(--gateway-detail-overlap));
    padding-top: clamp(18px, 3vh, 32px);
}

.gateway-page .gateway-still-column,
.project-template-page .polaris-still-column {
    aspect-ratio: 16 / 9;
    align-self: start;
}

.gateway-page .gateway-still-column .movie-poster-frame,
.project-template-page .polaris-still-column .movie-poster-frame {
    height: auto;
    min-height: 0;
}

.gateway-page .gateway-still-column .movie-frame-mat,
.project-template-page .polaris-still-column .movie-frame-mat {
    height: auto;
    aspect-ratio: 16 / 9;
}

@media (min-width: 1200px) {
    .bruce-page {
        --bruce-detail-overlap: clamp(220px, 25.7vh, 260px);
    }

    .bruce-page .bruce-cup-saucer-hero {
        height: clamp(920px, 112vh, 1160px);
        background-position: center 34%;
    }

    .gateway-page,
    .project-template-page {
        --gateway-detail-overlap: clamp(190px, 22vh, 240px);
    }
}

.poster-column {
    aspect-ratio: 3 / 4;
}

.poster-column-framed {
    aspect-ratio: auto;
}

.movie-poster-frame {
    height: 100%;
    min-height: 100%;
    padding: 14px;
    background:
        linear-gradient(135deg, #f8d27a 0%, #8d561a 18%, #f5c45b 34%, #5c340e 52%, #d49431 72%, #fff0a6 100%);
    box-shadow: 0 34px 72px rgba(0,0,0,0.82);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.movie-poster-frame:hover {
    transform: translateY(-15px);
}

.movie-frame-header {
    padding: 10px 12px;
    margin-bottom: 12px;
    color: #111;
    background: linear-gradient(180deg, #fafafa, #d8d8d8);
    border: 8px solid #181818;
    font-size: clamp(0.9rem, 1.7vw, 1.5rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: 1px;
    text-align: center;
    text-transform: uppercase;
}

.movie-frame-mat {
    height: calc(100% - 66px);
    padding: 12px;
    background: #181818;
}

.poster-column img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    box-shadow: 0 30px 60px rgba(0,0,0,0.8);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.poster-column img:hover {
    transform: translateY(-15px);
}

.movie-poster-frame img:hover {
    transform: none;
}

.info-column {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding-top: 0;
}

.info-column h1 {
    font-size: 3.5rem;
    font-weight: 200;
    text-transform: uppercase;
    letter-spacing: -2px;
    margin-bottom: clamp(1.25rem, 2vw, 1.75rem);
    line-height: 0.95;
    text-shadow: 0 4px 15px rgba(0,0,0,0.3);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.info-column h1.visible {
    opacity: 1;
    transform: translateY(0);
}

.info-column .project-description {
    font-size: clamp(1.15rem, 1.28vw, 1.35rem);
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.52;
    margin-bottom: clamp(0.85rem, 1.2vw, 1.4rem);
    max-width: 90%;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease-out 0.2s, transform 1s ease-out 0.2s;
}

.info-column .project-description span {
    display: block;
    margin-bottom: 0.55rem;
    color: #E52E2D;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 3px;
    line-height: 1;
    text-transform: uppercase;
}

.info-column .project-description.visible {
    opacity: 1;
    transform: translateY(0);
}

.metadata-block {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.metadata-grid.visible .metadata-block:nth-child(1) { transition-delay: 0.5s; opacity: 1; transform: translateY(0); }
.metadata-grid.visible .metadata-block:nth-child(2) { transition-delay: 0.5s; opacity: 1; transform: translateY(0); }
.metadata-grid.visible .metadata-block:nth-child(3) { transition-delay: 0.6s; opacity: 1; transform: translateY(0); }
.metadata-grid.visible .metadata-block:nth-child(4) { transition-delay: 0.7s; opacity: 1; transform: translateY(0); }
.metadata-grid.visible .metadata-block:nth-child(5) { transition-delay: 0.8s; opacity: 1; transform: translateY(0); }
.metadata-grid.visible .metadata-block:nth-child(6) { transition-delay: 0.9s; opacity: 1; transform: translateY(0); }

.metadata-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1.25rem, 2vw, 1.85rem) 2rem;
    margin-top: clamp(0.5rem, 1vw, 1rem);
}

.metadata-block h3 {
    font-size: 0.82rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 0.85rem;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 10px;
}

.metadata-block ul {
    list-style: none;
}

.metadata-block ul li, .metadata-block p {
    font-size: clamp(0.98rem, 1.1vw, 1.12rem);
    font-weight: 400;
    margin-bottom: 0.35rem;
    color: var(--text-primary);
}

@media (max-width: 1024px) {
    .project-detail-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 5vw;
        text-align: center;
    }
    .poster-column {
        width: min(78vw, 420px);
        margin: 0 auto;
    }
    .info-column {
        min-height: 0;
        align-items: center;
    }
    .metadata-grid {
        grid-template-columns: repeat(2, 1fr);
        width: min(100%, 760px);
        margin-top: 0;
    }
    .info-column h1 { font-size: 2.5rem; }
    .info-column .project-description {
        max-width: 760px;
    }
}

@media (max-width: 600px) {
    .project-detail-layout {
        width: 100vw;
        max-width: 100vw;
        margin-left: calc(50% - 50vw);
        padding: 2rem clamp(18px, 5vw, 24px) var(--project-detail-pad-bottom, 2vw);
        gap: 2rem;
        box-sizing: border-box;
        overflow: hidden;
    }
    .project-detail-layout > * {
        min-width: 0;
    }
    .poster-column {
        width: min(84vw, 340px);
    }
    .movie-poster-frame {
        padding: 10px;
    }
    .movie-frame-header {
        border-width: 6px;
        padding: 8px 10px;
        margin-bottom: 10px;
    }
    .movie-frame-mat {
        padding: 8px;
        height: calc(100% - 56px);
    }
    .info-column {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }
    .info-column h1 {
        width: min(100%, 330px);
        max-width: 100%;
        font-size: clamp(1.45rem, 6.4vw, 1.75rem);
        letter-spacing: 0;
        line-height: 1;
        text-align: center;
        text-wrap: balance;
        white-space: normal;
    }
    .info-column .project-description {
        max-width: 100%;
        font-size: clamp(1rem, 4.7vw, 1.15rem);
        text-align: center;
    }
    .metadata-grid {
        width: 100%;
        min-width: 0;
        grid-template-columns: 1fr;
        gap: 1.15rem 1rem;
    }
    .metadata-block {
        min-width: 0;
        text-align: center;
    }
    .metadata-block h3 {
        font-size: 0.68rem;
        letter-spacing: 2px;
    }
    .metadata-block ul li,
    .metadata-block p {
        font-size: 0.9rem;
        overflow-wrap: anywhere;
    }
}

/* ========================================= */
/* SUB-PAGE: ABOUT US                        */
/* ========================================= */

.about-layout {
    padding: calc(var(--nav-height) + 4vw) 0 10vw 0; /* Padding pushes content below the sticky/transparent nav */
    margin: 0 auto;
    min-height: 100vh;
}

.about-fan-scroll {
    position: relative;
    height: 235vh;
    overflow: visible;
}

.about-photos {
    position: sticky;
    top: var(--nav-height);
    width: min(100%, 1400px);
    height: calc(100vh - var(--nav-height));
    min-height: 640px;
    margin: 0 auto;
    padding: 0 8vw;
}

.memory-fan {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    isolation: isolate;
}

.memory-fan-bg {
    position: absolute;
    z-index: 0;
    color: rgba(255, 255, 255, 0.04);
    font-size: clamp(4rem, 9vw, 9rem);
    font-weight: 200;
    font-style: italic;
    text-transform: uppercase;
    white-space: nowrap;
    opacity: var(--fan-bg-opacity, 0);
    transform: scale(var(--fan-bg-scale, 0.84));
    transition: opacity 0.1s linear, transform 0.1s linear;
    pointer-events: none;
}

.memory-polaroid {
    --fan-progress: 0;
    --fan-distance-scale: 1;
    position: absolute;
    z-index: var(--fan-z);
    width: clamp(250px, 23vw, 360px);
    background: #f7f4ed;
    padding: 14px 14px 44px 14px;
    box-shadow: 0 30px 70px rgba(0,0,0,0.7);
    transform:
        translate(
            calc(var(--fan-x) * var(--fan-progress) * var(--fan-distance-scale)),
            calc(var(--fan-y) * var(--fan-progress) * var(--fan-distance-scale))
        )
        rotate(calc(var(--fan-rotate) * var(--fan-progress)))
        scale(calc(1 + (0.04 * var(--fan-progress))));
    transform-origin: center;
    transition: box-shadow 0.3s ease;
    will-change: transform;
}

.memory-polaroid:hover {
    box-shadow: 0 36px 80px rgba(0,0,0,0.85);
}

.memory-photo {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background: #111;
}

.memory-photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: var(--photo-position, center);
    filter: grayscale(calc(100% - (100% * var(--fan-progress))));
    transform: translateY(calc(-8% * var(--fan-progress))) scale(1.08);
}

.memory-caption {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 13px;
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: baseline;
    color: #111;
}

.memory-caption span {
    font-size: 1rem;
    font-weight: 700;
    font-style: italic;
}

.memory-caption small {
    font-size: 0.58rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(0,0,0,0.45);
    text-align: right;
}

.about-copy-scroll {
    min-height: 255vh;
    padding: 0 5vw;
}

.about-copy {
    position: sticky;
    top: calc(var(--nav-height) + 6vh);
    max-width: 880px;
    margin: 0 auto;
    padding: 0 0 12vh 0;
}

.about-copy h1 {
    font-size: 3.5rem;
    font-weight: 200;
    text-transform: uppercase;
    letter-spacing: -2px;
    margin-bottom: 2.5rem;
    color: var(--text-primary);
}

.about-copy p {
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.about-copy strong {
    color: rgba(255, 255, 255, 0.88);
    font-weight: 600;
}

.copy-reveal {
    --reveal-opacity: 0;
    opacity: var(--reveal-opacity);
    transform: translateY(calc((1 - var(--reveal-opacity)) * 30px));
    transition: opacity 0.12s linear, transform 0.12s linear;
    will-change: opacity, transform;
}

.about-socials {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.about-socials a {
    color: var(--accent);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
    align-self: flex-start;
}

.about-socials a:hover {
    color: #fff;
    transform: translateX(10px); /* slide right slightly to indicate interactivity */
}

@media (max-width: 900px) {
    .about-layout {
        padding-top: calc(var(--nav-height) + 40px);
    }
    .about-fan-scroll {
        height: 220vh;
    }
    .about-copy-scroll {
        min-height: 285vh;
    }
    .about-copy {
        top: calc(var(--nav-height) + 24px);
    }
    .about-photos {
        height: calc(100vh - var(--nav-height));
        min-height: 560px;
        padding: 0 4vw;
    }
    .memory-polaroid {
        --fan-distance-scale: 0.68;
        width: clamp(210px, 62vw, 280px);
    }
    .about-copy h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 560px) {
    .memory-polaroid {
        --fan-distance-scale: 0.2;
        width: clamp(180px, 54vw, 230px);
    }
}

/* ========================================= */
/* GLOBAL FOOTER                             */
/* ========================================= */
.global-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 10vw;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: var(--text-muted);
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.global-footer .footer-left, .global-footer .footer-right {
    display: flex;
    gap: 30px;
}

.global-footer a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.global-footer a:hover {
    color: var(--text-primary);
}

@media (max-width: 900px) {
    .global-footer {
        flex-direction: column;
        gap: 20px;
        padding: 40px 5vw;
        text-align: center;
    }
}

/* ========================================= */
/* SUB-PAGE: SERVICES (Minimalist)           */
/* ========================================= */

.services-minimal {
    padding: calc(var(--nav-height) + 5vw) 10vw 6vw 10vw;
    max-width: 1100px;
    margin: 0 auto;
    min-height: calc(100vh - 80px);
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.services-copy-scroll {
    min-height: 205vh;
}

.services-intro {
    position: sticky;
    top: calc(var(--nav-height) + 6vh);
    max-width: 760px;
    padding-bottom: 4vh;
}

.services-intro h1 {
    font-size: 3.5rem;
    font-weight: 200;
    text-transform: uppercase;
    letter-spacing: -3px;
    margin-bottom: 40px;
    line-height: 0.95;
}

.services-intro p {
    font-size: 1.35rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.services-intro strong {
    color: rgba(255, 255, 255, 0.88);
    font-weight: 600;
}

.services-copy-reveal {
    --reveal-opacity: 0;
    opacity: var(--reveal-opacity);
    transform: translateY(calc((1 - var(--reveal-opacity)) * 30px));
    transition: opacity 0.12s linear, transform 0.12s linear;
    will-change: opacity, transform;
}

/* Service Lines */
.services-list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.service-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: background 0.3s ease;
}

.service-line:hover .service-label {
    color: var(--accent);
}

.service-label {
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.service-desc {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 300;
    text-align: right;
}

@media (max-width: 768px) {
    .services-minimal {
        padding: calc(var(--nav-height) + 48px) 5vw 5vw 5vw;
    }
    .services-intro h1 { font-size: 2.5rem; }
    .services-copy-scroll { min-height: 225vh; }
    .services-intro { top: calc(var(--nav-height) + 24px); }
    .service-line { flex-direction: column; align-items: flex-start; gap: 8px; }
    .service-desc { text-align: left; }
}

/* CineReveal 3D */
.services-cine3d {
    position: relative;
    height: 260vh;
    width: 100vw;
    margin: -2vw calc(50% - 50vw) 0 calc(50% - 50vw);
    overflow: visible;
}

.cine3d-stage {
    position: sticky;
    top: 0;
    height: 100vh;
    min-height: 720px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    perspective: 1200px;
    transform-style: preserve-3d;
}

.cine3d-atmosphere {
    position: absolute;
    inset: -18vh -24vw;
    background:
        linear-gradient(90deg, transparent 0, rgba(229,46,45,0.14) 50%, transparent 100%),
        repeating-linear-gradient(90deg, rgba(255,255,255,0.035) 0 1px, transparent 1px 18px);
    opacity: var(--cine-atmosphere-opacity, 0.16);
    transform: translateZ(-420px) scale(var(--cine-atmosphere-scale, 0.92));
    -webkit-mask-image: radial-gradient(ellipse at center, black 0, black 48%, transparent 78%);
    mask-image: radial-gradient(ellipse at center, black 0, black 48%, transparent 78%);
    pointer-events: none;
}

.cine3d-heading {
    position: absolute;
    top: 4vh;
    left: 50%;
    transform: translateX(-50%) translateY(var(--cine-heading-y, 0px));
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    opacity: var(--cine-heading-opacity, 1);
    pointer-events: none;
}

.cine3d-heading strong {
    color: rgba(255,255,255,0.92);
    font-size: clamp(3rem, 7vw, 6.8rem);
    font-weight: 900;
    line-height: 0.85;
    text-transform: uppercase;
    letter-spacing: 0;
}

.cine3d-card-field {
    position: relative;
    width: min(100vw, 1180px);
    aspect-ratio: 16 / 9;
    transform-style: preserve-3d;
}

.cine3d-ticket {
    position: absolute;
    top: 50%;
    left: 50%;
    width: clamp(250px, 29vw, 330px);
    aspect-ratio: 14 / 9;
    opacity: var(--card-opacity, 0);
    transform: translate(-50%, -50%);
    transform-style: preserve-3d;
    will-change: transform, opacity;
}

.cine3d-ticket-wide {
    width: clamp(340px, 39vw, 540px);
}

.ticket-face {
    position: relative;
    height: 100%;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(229,46,45,0.2), transparent 34%),
        linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.015)),
        #090909;
    border: 1px solid rgba(255,255,255,0.14);
    border-left: 3px solid var(--accent);
    box-shadow: 0 32px 80px rgba(0,0,0,0.72);
    mask-image:
        radial-gradient(circle at -4px 50%, transparent 12px, black 12px),
        radial-gradient(circle at calc(100% + 4px) 50%, transparent 12px, black 12px);
    transform: translateZ(1px);
}

.ticket-face::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(0deg, rgba(255,255,255,0.025) 0 1px, transparent 1px 4px);
    opacity: 0.45;
    pointer-events: none;
}

.ticket-topline {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: flex-start;
    font-size: 0.54rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.42);
}

.ticket-topline span:first-child {
    color: var(--accent);
}

.cine3d-ticket h2 {
    position: relative;
    z-index: 1;
    margin-top: 22px;
    font-size: clamp(2rem, 3.2vw, 3rem);
    font-weight: 900;
    line-height: 0.92;
    text-transform: uppercase;
    letter-spacing: 0;
}

.cine3d-ticket h2.ticket-title-small {
    width: 100%;
    max-width: 100%;
    font-size: var(--fit-title-size, clamp(2rem, 3.2vw, 3rem));
    line-height: 0.92;
    white-space: nowrap;
}

/* Services Polaroid CTA */
.services-polaroid-scroll {
    position: relative;
    height: 190vh;
    width: 100vw;
    margin: -24vh calc(50% - 50vw) 0 calc(50% - 50vw);
    overflow: visible;
}

.services-polaroid-stage {
    position: sticky;
    top: 0;
    height: 100vh;
    min-height: 760px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: clamp(24px, 4vh, 46px);
    padding-top: clamp(52px, 8vh, 82px);
    overflow: visible;
}

.services-polaroid-fan {
    --service-fan-distance-scale: 1;
    position: relative;
    width: min(92vw, 1120px);
    height: clamp(430px, 58vh, 610px);
    overflow: visible;
    isolation: isolate;
}

.service-polaroid {
    --service-fan-progress: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: var(--service-fan-z);
    width: clamp(220px, 24vw, 340px);
    padding: 14px 14px 48px 14px;
    background: #f7f4ed;
    box-shadow: 0 30px 70px rgba(0,0,0,0.72);
    opacity: 1;
    mix-blend-mode: normal;
    transform:
        translate(-50%, -50%)
        translate(
            calc(var(--service-fan-x) * var(--service-fan-progress) * var(--service-fan-distance-scale)),
            calc(var(--service-fan-y) * var(--service-fan-progress) * var(--service-fan-distance-scale))
        )
        rotate(calc(var(--service-fan-rotate) * var(--service-fan-progress)))
        scale(calc(0.92 + (0.08 * var(--service-fan-progress))));
    transform-origin: center;
    will-change: transform;
}

.service-polaroid-photo {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #111;
}

.service-polaroid-photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: var(--photo-position, center);
    filter: grayscale(calc(80% - (80% * var(--service-fan-progress))));
    transform: scale(calc(1.08 - (0.03 * var(--service-fan-progress))));
}

.service-polaroid-caption {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 14px;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 14px;
    color: #111;
}

.service-polaroid-caption span {
    font-size: 1rem;
    font-weight: 700;
    font-style: italic;
}

.service-polaroid-caption small {
    color: rgba(0,0,0,0.45);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-align: right;
    text-transform: uppercase;
}

.service-polaroid-caption-stacked small {
    line-height: 1.15;
    letter-spacing: 0.08em;
    text-transform: none;
}

.services-work-reveal {
    color: rgba(255,255,255,0.92);
    font-size: clamp(3rem, 7vw, 6.8rem);
    font-weight: 900;
    line-height: 0.85;
    letter-spacing: 0;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    opacity: var(--work-opacity, 0);
    transform: translateY(var(--work-y, 28px));
    transition: color 0.3s ease;
    will-change: opacity, transform;
}

.services-work-reveal:hover {
    color: var(--accent);
}

@media (max-width: 768px) {
    .services-cine3d {
        height: 240vh;
        margin-top: 0;
    }
    .cine3d-stage {
        min-height: 620px;
    }
    .cine3d-card-field {
        width: 100%;
        aspect-ratio: 3 / 4;
    }
    .cine3d-ticket {
        width: min(72vw, 280px);
    }
    .cine3d-ticket-wide {
        width: min(90vw, 420px);
    }
    .ticket-face {
        padding: 20px;
    }
    .services-polaroid-scroll {
        height: 180vh;
    }
    .services-polaroid-stage {
        min-height: 660px;
        padding-top: 44px;
    }
    .services-polaroid-fan {
        --service-fan-distance-scale: 0.34;
        width: 100vw;
        height: 480px;
    }
    .service-polaroid {
        width: min(62vw, 250px);
    }
}

@media (max-width: 1100px) {
    .ticket-face {
        padding: 20px;
    }
}

/* ========================================= */
/* SUB-PAGE: CONTACT                         */
/* ========================================= */

.contact-reveal-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.78fr) minmax(360px, 1fr);
    gap: clamp(3rem, 8vw, 8rem);
    padding: calc(var(--nav-height) + 6vw) 10vw 6vw;
    max-width: 1600px;
    margin: 0 auto;
    min-height: 100vh;
}

.contact-reveal-copy {
    position: sticky;
    top: calc(var(--nav-height) + 6vw);
    align-self: start;
}

.contact-kicker {
    margin-bottom: 18px;
    color: #E52E2D;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.contact-reveal-copy h1 {
    max-width: 620px;
    margin-bottom: 36px;
    font-size: 4.6rem;
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: 0;
    text-transform: uppercase;
}

.contact-intro {
    max-width: 540px;
    margin: 42px 0 28px;
    color: rgba(255, 255, 255, 0.62);
    font-size: clamp(1.05rem, 1.5vw, 1.35rem);
    font-weight: 300;
    line-height: 1.65;
}

.contact-direct-link {
    display: inline-block;
    color: #ffffff;
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s ease, transform 0.3s ease;
}

.contact-direct-link:hover {
    color: #E52E2D;
    transform: translateX(8px);
}

.contact-reveal-scroll {
    min-height: 320vh;
}

.contact-reveal-shell {
    position: sticky;
    top: var(--nav-height);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - var(--nav-height));
    overflow: hidden;
    perspective: 1800px;
}

.contact-reveal-shell::before {
    content: "";
    position: absolute;
    inset: 6%;
    background:
        radial-gradient(circle at 50% 42%, rgba(229, 46, 45, 0.18), transparent 36%),
        linear-gradient(180deg, transparent 0%, rgba(255,255,255,0.05) 48%, transparent 100%);
    filter: blur(24px);
    opacity: 0.72;
    pointer-events: none;
}

.contact-reveal-form,
.contact-success {
    position: relative;
    z-index: 1;
    width: min(100%, 430px);
}

.contact-reveal-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-plank {
    position: relative;
    padding: 18px;
    background: rgba(255,255,255,0.035);
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 28px 80px rgba(0,0,0,0.62);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transform-origin: center;
    will-change: opacity, transform;
}

.contact-plank label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #ffffff;
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.contact-plank input,
.contact-plank textarea {
    width: 100%;
    padding: 9px 0 7px;
    color: #ffffff;
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(255,255,255,0.18);
    outline: none;
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1rem, 1.7vw, 1.2rem);
    font-weight: 300;
    transition: border-color 0.3s ease;
}

.contact-plank textarea {
    min-height: 92px;
    resize: vertical;
}

.contact-plank input::placeholder,
.contact-plank textarea::placeholder {
    color: rgba(255,255,255,0.28);
}

.contact-plank input:focus,
.contact-plank textarea:focus {
    border-bottom-color: #E52E2D;
}

.contact-plank.is-invalid {
    border-color: rgba(229,46,45,0.72);
}

.form-hidden-field {
    display: none;
}

.contact-submit {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 4px 0;
    color: #ffffff;
    background: transparent;
    border: 0;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.25rem, 2vw, 1.6rem);
    font-weight: 900;
    letter-spacing: 0;
    text-align: left;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.contact-submit span:last-child {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: #E52E2D;
    background: rgba(229,46,45,0.16);
    border: 1px solid rgba(229,46,45,0.42);
    box-shadow: 0 0 24px rgba(229,46,45,0.22);
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.contact-submit:hover {
    color: #E52E2D;
}

.contact-submit:hover span:last-child {
    color: #ffffff;
    background: #E52E2D;
    transform: translateX(4px) scale(1.08);
}

.contact-form-status {
    min-height: 22px;
    color: rgba(255,255,255,0.68);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 1.4;
    text-align: center;
    text-transform: uppercase;
}

.contact-success {
    padding: 42px;
    text-align: center;
    background: rgba(255,255,255,0.045);
    border: 1px solid rgba(255,255,255,0.14);
    box-shadow: 0 28px 80px rgba(0,0,0,0.62);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.contact-success h2 {
    margin-bottom: 14px;
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 900;
    line-height: 0.95;
    text-transform: uppercase;
}

.contact-success p:not(.contact-kicker) {
    margin-bottom: 28px;
    color: rgba(255,255,255,0.66);
    font-size: 1rem;
    line-height: 1.6;
}

.contact-reset-button {
    padding: 14px 24px;
    color: #ffffff;
    background: transparent;
    border: 1px solid rgba(229,46,45,0.72);
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: background 0.3s ease;
}

.contact-reset-button:hover {
    background: #E52E2D;
}

@media (max-width: 960px) {
    .contact-reveal-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: calc(var(--nav-height) + 40px) 6vw 5vw;
    }

    .contact-reveal-copy {
        position: relative;
        top: auto;
        text-align: center;
    }

    .contact-reveal-copy h1,
    .contact-intro {
        margin-left: auto;
        margin-right: auto;
    }

    .contact-reveal-copy h1 {
        font-size: 4rem;
    }

    .contact-direct-link:hover {
        transform: none;
    }

    .contact-reveal-scroll {
        min-height: auto;
    }

    .contact-reveal-shell {
        position: relative;
        top: auto;
        min-height: auto;
        padding: 0 0 36px;
        overflow: visible;
        perspective: none;
    }

    .contact-reveal-shell::before {
        inset: 8% 0;
    }

    .contact-reveal-form {
        width: min(100%, 560px);
        margin: 0 auto;
    }

    .contact-plank {
        opacity: 1;
        transform: none !important;
        will-change: auto;
    }
}

@media (max-width: 640px) {
    .contact-reveal-layout {
        padding-left: 20px;
        padding-right: 20px;
    }

    .contact-reveal-scroll {
        min-height: auto;
    }

    .contact-reveal-shell {
        position: relative;
        top: auto;
        min-height: auto;
        padding: 10px 0 36px;
        overflow: visible;
    }

    .contact-reveal-form {
        width: 100%;
    }

    .contact-reveal-copy h1 {
        font-size: 3.2rem;
    }

    .contact-plank {
        padding: 16px;
    }

    .contact-plank label {
        font-size: 0.58rem;
        letter-spacing: 2.5px;
    }
}
/* ========================================= */
/* SUB-PAGE: CAREERS                         */
/* ========================================= */

.careers-page {
    padding: calc(var(--nav-height) + 5vw) 0 8vw 0;
    min-height: 100vh;
    overflow: hidden;
}

.careers-hero {
    padding: 0 10vw;
    text-align: center;
}

.careers-header-title {
    color: rgba(255,255,255,0.92);
    font-size: clamp(3rem, 7vw, 6.8rem);
    font-weight: 900;
    line-height: 0.85;
    text-transform: uppercase;
    letter-spacing: 0;
}

.career-portal {
    position: relative;
    box-sizing: border-box;
    width: 100vw;
    margin: clamp(34px, 5vw, 62px) calc(50% - 50vw) 0 calc(50% - 50vw);
    padding: clamp(24px, 3vw, 42px) 8vw;
    min-height: 620px;
    overflow: hidden;
    perspective: 1800px;
}

.career-portal-bg {
    position: absolute;
    inset: 7% -16vw 5%;
    background:
        linear-gradient(90deg, transparent 0, rgba(229,46,45,0.16) 50%, transparent 100%),
        repeating-linear-gradient(90deg, rgba(255,255,255,0.032) 0 1px, transparent 1px 20px);
    -webkit-mask-image: linear-gradient(90deg, transparent 0, black 25%, black 75%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, black 25%, black 75%, transparent 100%);
    pointer-events: none;
}

.career-card-deck {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(30px, 6vw, 100px);
    min-height: 660px;
    transform-style: preserve-3d;
}

.career-flip-card {
    --flip-rotate: 0deg;
    --card-scale: 1;
    position: relative;
    width: clamp(280px, 24vw, 340px);
    height: 500px;
    perspective: 1800px;
    transform-style: preserve-3d;
    transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1), height 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    animation: career-card-rise 0.9s ease both;
}

.career-card-actors {
    z-index: 2;
    transform: rotateZ(-3deg);
}

.career-card-crew {
    z-index: 1;
    transform: rotateZ(3deg);
    animation-delay: 0.12s;
}

.career-flip-card:hover {
    --card-scale: 1.03;
    z-index: 4;
}

.career-flip-card.is-flipped {
    --flip-rotate: 180deg;
    --card-scale: 1;
    width: clamp(340px, 30vw, 410px);
    height: 630px;
    z-index: 5;
    transform: translateY(-12px) rotateZ(0deg);
}

.career-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transform: rotateY(var(--flip-rotate)) scale(var(--card-scale));
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.career-card-side {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(229,46,45,0.2), transparent 34%),
        linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.015)),
        #090909;
    border: 1px solid rgba(255,255,255,0.14);
    border-left: 3px solid var(--accent);
    border-radius: 0;
    box-shadow: 0 32px 80px rgba(0,0,0,0.74);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(1px);
}

.career-card-side::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(0deg, rgba(255,255,255,0.025) 0 1px, transparent 1px 4px);
    opacity: 0.45;
    pointer-events: none;
}

.career-card-front {
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    padding: clamp(22px, 2.4vw, 28px);
    border-radius: 0;
    font-family: var(--font-primary);
    text-align: left;
    cursor: pointer;
    appearance: none;
}

.career-card-front:focus-visible,
.career-card-close:focus-visible,
.career-submit:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 4px;
}

.career-card-kicker,
.career-card-back-header span {
    position: relative;
    z-index: 1;
    color: var(--accent);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.career-card-front h2 {
    position: relative;
    z-index: 1;
    margin: 0;
    color: rgba(255,255,255,0.96);
    max-width: 100%;
    font-size: clamp(2.5rem, 3.8vw, 3.8rem);
    font-weight: 900;
    line-height: 0.86;
    letter-spacing: 0;
    text-transform: uppercase;
    white-space: nowrap;
}

.career-card-front p {
    position: relative;
    z-index: 1;
    max-width: 290px;
    margin: 0;
    color: rgba(255,255,255,0.55);
    font-size: 0.98rem;
    font-weight: 300;
    line-height: 1.5;
}

.career-card-back {
    padding: 22px 24px;
    transform: rotateY(180deg) translateZ(1px);
    overflow: hidden;
}

.career-card-back-header {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding-bottom: 14px;
    margin-bottom: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.career-card-close {
    color: var(--accent);
    background: rgba(229,46,45,0.1);
    border: 1px solid rgba(229,46,45,0.3);
    padding: 8px 14px;
    font-family: var(--font-primary);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: color 0.3s ease, background 0.3s ease;
}

.career-card-close:hover {
    color: #fff;
    background: var(--accent);
}

.career-form {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.career-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.career-field label {
    color: rgba(255,255,255,0.45);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.career-field input,
.career-field select,
.career-field textarea {
    width: 100%;
    color: #fff;
    background: rgba(0,0,0,0.32);
    border: 1px solid rgba(255,255,255,0.08);
    border-bottom-color: rgba(255,255,255,0.16);
    padding: 9px 11px;
    font-family: var(--font-primary);
    font-size: 0.84rem;
    font-weight: 300;
    outline: none;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.career-field input:focus,
.career-field select:focus,
.career-field textarea:focus {
    background: rgba(0,0,0,0.48);
    border-color: rgba(229,46,45,0.5);
}

.career-field input::placeholder,
.career-field textarea::placeholder {
    color: rgba(255,255,255,0.24);
}

.career-field select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2 4L6 8L10 4' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 34px;
}

.career-field select option {
    color: #fff;
    background: #111;
}

.career-field textarea {
    min-height: 68px;
    resize: vertical;
}

.career-submit {
    width: 100%;
    margin-top: 4px;
    color: #fff;
    background: var(--accent);
    border: 1px solid var(--accent);
    padding: 12px 18px;
    font-family: var(--font-primary);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.career-submit:hover {
    color: #111;
    background: #fff;
    transform: translateY(-2px);
}

.career-submit:disabled {
    cursor: wait;
    opacity: 0.7;
    transform: none;
}

.career-form-status {
    min-height: 1.1rem;
    margin: -0.25rem 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.75rem;
    letter-spacing: 0;
}

@keyframes career-card-rise {
    from {
        opacity: 0;
        transform: translateY(38px) rotateZ(0deg);
    }
    to {
        opacity: 1;
    }
}

@media (max-width: 1000px) {
    .careers-page {
        padding-top: calc(var(--nav-height) + 48px);
    }
    .career-card-deck {
        flex-direction: column;
        gap: 34px;
        min-height: 0;
    }
    .career-flip-card,
    .career-card-actors,
    .career-card-crew {
        width: min(88vw, 420px);
        height: 600px;
        transform: none;
    }
}

@media (max-width: 560px) {
    .careers-hero {
        padding: 0 5vw;
    }
    .career-portal {
        padding: 28px 5vw 44px;
    }
    .career-flip-card,
    .career-card-actors,
    .career-card-crew {
        width: min(90vw, 360px);
        height: 600px;
    }
    .career-card-front,
    .career-card-back {
        padding: 24px;
    }
    .career-card-front h2 {
        font-size: 3.4rem;
    }
}

/* ========================================= */
/* PROJECT DETAIL: REVIEWS SECTION           */
/* ========================================= */

.reviews-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding: 6vw 10vw;
    background: rgba(255,255,255,0.02);
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.review-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid rgba(255,255,255,0.1);
    padding-right: 40px;
}

.review-card:last-child {
    border-right: none;
}

.review-card .quote {
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
    color: var(--text-primary);
}

.review-card .source {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #E52E2D;
    font-weight: 700;
}

@media (max-width: 1024px) {
    .reviews-section { grid-template-columns: 1fr; gap: 40px; }
    .review-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 40px; padding-right: 0; }
    .review-card:last-child { border-bottom: none; padding-bottom: 0; }
}

/* ========================================= */
/* PROJECT DETAIL: CAST SECTION              */
/* ========================================= */

.cast-section {
    padding: var(--cast-pad-top, 2vw) 10vw var(--cast-pad-bottom, 6vw) 10vw;
    text-align: center;
    opacity: 0;
    animation: fadeInSection 1s ease-out forwards;
}

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

.cast-section {
    padding: var(--cast-pad-top, 2vw) 10vw var(--cast-pad-bottom, 6vw) 10vw;
    text-align: center;
    opacity: 0;
}

.cast-section h2 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #E52E2D;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    opacity: 0;
}

.cast-section.visible {
    opacity: 1;
    animation: fadeInSection 1s ease-out forwards;
}

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

.cast-section.visible h2 {
    opacity: 1;
    animation: elegantFadeIn 1.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes elegantFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.title-line {
    display: block;
    width: 0;
    height: 1px;
    background: linear-gradient(to left, #E52E2D, transparent);
}

.cast-section.visible .title-line {
    animation: lineExpand 1.5s cubic-bezier(0.25, 1, 0.5, 1) 0.5s forwards;
}

.title-line:last-child {
    background: linear-gradient(to right, #E52E2D, transparent);
}

.cast-section.visible .title-line:last-child {
    animation: lineExpandRight 1.5s cubic-bezier(0.25, 1, 0.5, 1) 0.5s forwards;
}

@keyframes lineExpand {
    0% {
        width: 0;
        opacity: 0;
    }
    100% {
        width: 100px;
        opacity: 1;
    }
}

@keyframes lineExpandRight {
    0% {
        width: 0;
        opacity: 0;
    }
    100% {
        width: 100px;
        opacity: 1;
    }
}

.cast-member {
    opacity: 0;
    transform: translateY(40px);
}

.cast-section.visible .cast-member {
    animation: cardReveal 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.cast-section.visible .cast-member:nth-child(1) { animation-delay: 0.8s; }
.cast-section.visible .cast-member:nth-child(2) { animation-delay: 1s; }
.cast-section.visible .cast-member:nth-child(3) { animation-delay: 1.2s; }
.cast-section.visible .cast-member:nth-child(4) { animation-delay: 1.5s; }

@keyframes cardReveal {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.cast-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    perspective: 1500px; /* Increased perspective for smoother depth */
}

.cast-grid:has(.cast-member:only-of-type),
.cast-grid:has(.cast-member:nth-child(2):last-child) {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.cast-grid:has(.cast-member:nth-child(2):last-child) .cast-member {
    max-width: 150px;
    flex: 0 0 auto;
}

.cast-member {
    position: relative;
    text-align: center;
    aspect-ratio: 3/4;
}

.cast-member-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform-style: preserve-3d;
}

.cast-member.flipping .cast-member-inner {
    animation: cinematicFlip 2.5s cubic-bezier(0.215, 0.610, 0.355, 1) forwards;
}

@keyframes cinematicFlip {
    0% {
        transform: perspective(1500px) rotateX(0deg);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    50% {
        transform: perspective(1500px) rotateX(180deg);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1);
    }
    100% {
        transform: perspective(1500px) rotateX(360deg);
    }
}

.cast-member img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(100%);
    transition: filter 0.5s ease;
}

.cast-member.flipping img {
    filter: grayscale(0%);
}

@keyframes cinematicFlip {
    0% {
        transform: perspective(1500px) rotateX(0deg);
    }
    100% {
        transform: perspective(1500px) rotateX(360deg);
    }
}

.cast-member img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cast-member.flipping img {
    transform: scale(1.1);
}

.cast-member-inner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
    pointer-events: none;
    z-index: 2;
}

.cast-member-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 20px;
    z-index: 3;
    text-align: center;
}

.cast-member-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: 2px;
    color: #E52E2D;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.cast-member-info p {
    font-size: 0.75rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 500;
    opacity: 0.9;
}

@media (max-width: 1024px) {
    .cast-grid { grid-template-columns: repeat(2, 1fr); max-width: 100%; gap: 30px; }
}

@media (max-width: 600px) {
    .cast-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

.cast-member:hover img {
    transform: scale(1.08);
}

.cast-member::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
    pointer-events: none;
    transition: all 0.6s ease;
}

.cast-member:hover::after {
    height: 60%;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 50%, transparent 100%);
}

.cast-member-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 20px;
    z-index: 2;
    text-align: center;
}

.cast-member-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: 2px;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.cast-member-info p {
    font-size: 0.75rem;
    color: #E52E2D;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 500;
    opacity: 0.9;
}

@media (max-width: 1024px) {
    .cast-grid { grid-template-columns: repeat(2, 1fr); max-width: 100%; gap: 30px; }
}

@media (max-width: 600px) {
    .cast-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

.cast-section .cast-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(120px, 1fr));
    gap: clamp(22px, 4vw, 58px);
    max-width: 980px;
    perspective: none;
}

.cast-section .cast-member {
    aspect-ratio: auto;
    max-width: 190px;
    justify-self: center;
    cursor: default;
    transition: transform 0.35s ease;
}

.cast-section .cast-member:hover {
    transform: translateY(-5px) scale(1.04);
}

.cast-section .cast-member::after,
.cast-section .cast-member-inner::after {
    display: none;
}

.cast-section .cast-member-inner {
    width: clamp(118px, 11vw, 174px);
    height: clamp(118px, 11vw, 174px);
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 50%;
    box-shadow: 0 20px 48px rgba(0,0,0,0.55);
    transform: none;
    transition: border-color 0.35s ease, box-shadow 0.35s ease;
}

.cast-section .cast-member:hover .cast-member-inner {
    border-color: rgba(229,46,45,0.88);
    box-shadow: 0 24px 60px rgba(229,46,45,0.2), 0 20px 48px rgba(0,0,0,0.62);
}

.cast-section .cast-member img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) brightness(0.78);
    transform: scale(1.18);
    transition: filter 0.35s ease, transform 0.35s ease;
}

.cast-section .cast-member:nth-child(1) img { object-position: 50% 44%; }
.cast-section .cast-member:nth-child(2) img { object-position: 50% 36%; }
.cast-section .cast-member:nth-child(3) img { object-position: 54% 40%; }
.cast-section .cast-member:nth-child(4) img { object-position: 58% 34%; }

.cast-section .cast-member:hover img {
    filter: grayscale(0%) brightness(1) saturate(1.05);
    transform: scale(1.24);
}

.cast-section .cast-member-info {
    position: static;
    width: auto;
    padding: 14px 0 0;
}

.cast-section .cast-member-info h4 {
    margin: 0;
    color: rgba(255,255,255,0.9);
    font-size: clamp(0.86rem, 1.1vw, 1.02rem);
    font-weight: 600;
    letter-spacing: 0.6px;
    line-height: 1.2;
    text-transform: none;
    text-shadow: none;
    transition: color 0.35s ease;
}

.cast-section .cast-member:hover .cast-member-info h4 {
    color: #E52E2D;
}

@media (max-width: 760px) {
    .cast-section .cast-grid {
        grid-template-columns: repeat(2, minmax(120px, 1fr));
        max-width: 440px;
    }
}

.bruce-feature-video-section {
    padding: clamp(24px, 5vw, 72px) clamp(16px, 5vw, 72px);
    background: #000;
}

.bruce-feature-video {
    max-width: 1180px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    position: relative;
    overflow: hidden;
    background: #050505;
}

.bruce-feature-video iframe {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.bruce-feature-video-cover {
    border: 0;
    position: absolute;
    inset: 0;
    z-index: 2;
    display: block;
    padding: 0;
    background: #050505;
    cursor: pointer;
    transition: opacity 0.25s ease;
}

.bruce-feature-video.is-playing .bruce-feature-video-cover {
    opacity: 0;
    pointer-events: none;
}

.bruce-feature-video-cover img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bruce-feature-video-play {
    position: absolute;
    left: 50%;
    top: 50%;
    width: clamp(56px, 8vw, 92px);
    height: clamp(56px, 8vw, 92px);
    border-radius: 50%;
    background: rgba(0,0,0,0.72);
    transform: translate(-50%, -50%);
    box-shadow: 0 18px 42px rgba(0,0,0,0.28);
}

.bruce-feature-video-play::before {
    content: "";
    position: absolute;
    left: 52%;
    top: 50%;
    width: 0;
    height: 0;
    border-top: clamp(13px, 1.8vw, 20px) solid transparent;
    border-bottom: clamp(13px, 1.8vw, 20px) solid transparent;
    border-left: clamp(20px, 2.6vw, 31px) solid #fff;
    transform: translate(-38%, -50%);
}

/* ========================================= */
/* PROJECT DETAIL: ROADSHOW                  */
/* ========================================= */

.roadshow-section {
    padding: var(--roadshow-pad-top, 0px) 0 var(--roadshow-pad-bottom, clamp(8px, 1.5vw, 24px));
    overflow: visible;
    background: #000;
}

.roadshow-drive {
    position: relative;
    min-height: 230vh;
    isolation: isolate;
}

.roadshow-drive-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    min-height: 560px;
    overflow: hidden;
    background: #fff;
}

.roadshow-drive-sticky::after {
    content: none;
}

.roadshow-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.roadshow-map-block {
    display: grid;
    grid-template-columns: minmax(420px, min(62vw, 100svh)) minmax(360px, 1fr);
    align-items: stretch;
    justify-content: start;
    min-height: min(100svh, 920px);
    background: #d8d0c0;
    color: #0a0a0a;
}

.roadshow-map-stage {
    position: relative;
    aspect-ratio: 1 / 1;
    width: 100%;
    max-height: 100svh;
    min-height: 0;
    overflow: hidden;
    background: #d8d0c0;
}

.roadshow-map-base,
.roadshow-route-layer,
.roadshow-dot-layer {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.roadshow-map-base {
    position: relative;
    z-index: 1;
    pointer-events: none;
    user-select: none;
}

.roadshow-route-layer,
.roadshow-dot-layer {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.roadshow-dot-layer {
    z-index: 3;
}

.roadshow-route {
    fill: none;
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.roadshow-route-shadow {
    stroke: #322720;
    stroke-width: 19;
}

.roadshow-route-color {
    stroke: #d85c44;
    stroke-width: 12;
}

.roadshow-route-glow {
    stroke: #f2a36e;
    stroke-width: 4;
    opacity: 0.55;
}

.roadshow-route-ferry {
    stroke: #d85c44;
    stroke-width: 7;
    stroke-dasharray: 0.01 0.045;
    stroke-dashoffset: 0;
    opacity: 0;
}

.roadshow-map-stage.is-animated .roadshow-route-main {
    animation: roadshowRouteDraw 4.1s ease-in-out forwards;
}

.roadshow-map-stage.is-animated .roadshow-route-ferry {
    animation: roadshowFerryReveal 0.75s steps(6, end) 3.7s forwards;
}

.roadshow-map-stage.is-animated .roadshow-route-bruce {
    animation: roadshowRouteDraw 1.25s ease-out 4.35s forwards;
}

.roadshow-map-dot {
    opacity: 0;
}

.roadshow-map-dot circle {
    transform: scale(0);
    transform-box: fill-box;
    transform-origin: center;
}

.roadshow-map-dot circle:first-child {
    fill: #3a2a20;
}

.roadshow-map-dot circle:last-child {
    fill: url("#roadshowDotFill");
}

.roadshow-map-stage.is-animated .roadshow-map-dot {
    animation: roadshowDotFade 0.01s linear var(--dot-delay) forwards;
}

.roadshow-map-stage.is-animated .roadshow-map-dot circle {
    animation: roadshowDotBounce 0.55s cubic-bezier(.2, 1.45, .34, 1) var(--dot-delay) forwards;
}

.roadshow-stop {
    position: absolute;
    left: var(--x);
    top: var(--y);
    z-index: 5;
    width: clamp(28px, 3.1vw, 54px);
    height: clamp(28px, 3.1vw, 54px);
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    transform: translate(-50%, -50%);
    opacity: 1;
}

.roadshow-stop::before {
    content: "";
    position: absolute;
    inset: 4%;
    border-radius: 50%;
    background: transparent;
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.22s ease, transform 0.22s ease, filter 0.22s ease;
}

.roadshow-stop::after {
    content: "";
    position: absolute;
    inset: 5%;
    border-radius: 50%;
    border: 1px solid transparent;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.roadshow-stop:hover::before,
.roadshow-stop.is-active::before {
    opacity: 1;
    transform: scale(1.08);
    box-shadow: 0 0 20px rgba(229,46,45,0.34);
}

.roadshow-stop:hover::after,
.roadshow-stop.is-active::after {
    border-color: rgba(229,46,45,0.8);
    box-shadow: 0 0 24px rgba(229,46,45,0.45);
    transform: scale(1.12);
}

.roadshow-stop-ferry {
    width: clamp(34px, 3.6vw, 64px);
    height: clamp(34px, 3.6vw, 64px);
}

.roadshow-stop span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
}

.roadshow-card {
    position: absolute;
    left: var(--card-x, 55%);
    top: var(--card-y, 34%);
    z-index: 6;
    width: clamp(190px, 17vw, 260px);
    padding: clamp(18px, 2vw, 28px);
    color: #111;
    background: rgba(255,255,255,0.94);
    border: 1px solid rgba(255,255,255,0.82);
    border-radius: 10px;
    box-shadow: 0 22px 55px rgba(0,0,0,0.24);
    opacity: 0;
    pointer-events: none;
    transform: translate(var(--card-shift-x, 24px), calc(var(--card-shift-y, -50%) + 14px)) scale(0.98);
    transition: opacity 0.28s ease, transform 0.28s ease, left 0.28s ease, top 0.28s ease;
}

@keyframes roadshowRouteDraw {
    to { stroke-dashoffset: 0; }
}

@keyframes roadshowFerryReveal {
    to { opacity: 1; }
}

@keyframes roadshowDotFade {
    to { opacity: 1; }
}

@keyframes roadshowDotBounce {
    0% {
        transform: scale(0);
    }
    66% {
        transform: scale(1.28);
    }
    100% {
        transform: scale(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    .roadshow-route {
        stroke-dashoffset: 0;
    }

    .roadshow-route-ferry,
    .roadshow-map-dot {
        opacity: 1;
    }

    .roadshow-map-dot circle {
        transform: scale(1);
    }

    .roadshow-map-stage.is-animated .roadshow-route-main,
    .roadshow-map-stage.is-animated .roadshow-route-ferry,
    .roadshow-map-stage.is-animated .roadshow-route-bruce,
    .roadshow-map-stage.is-animated .roadshow-map-dot,
    .roadshow-map-stage.is-animated .roadshow-map-dot circle {
        animation: none;
    }
}

.roadshow-card.is-open {
    opacity: 1;
    pointer-events: none;
    transform: translate(var(--card-shift-x, 24px), var(--card-shift-y, -50%)) scale(1);
}

.roadshow-card::before {
    content: "";
    position: absolute;
    left: var(--arrow-left, -46px);
    right: var(--arrow-right, auto);
    top: var(--arrow-top, 50%);
    width: 48px;
    height: 28px;
    background: #e9ad79;
    transform: translateY(-50%);
    clip-path: var(--arrow-shape, polygon(0 50%, 100% 0, 100% 100%));
}

.roadshow-card-kicker {
    display: block;
    margin-bottom: 10px;
    color: #E52E2D;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.roadshow-card h3 {
    margin: 0 0 16px;
    color: #111;
    font-size: clamp(1.3rem, 2vw, 2rem);
    font-weight: 900;
}

.roadshow-card dl {
    display: grid;
    gap: 10px;
    margin: 0;
}

.roadshow-card div {
    display: grid;
    grid-template-columns: 68px 1fr;
    gap: 10px;
}

.roadshow-card dt {
    color: rgba(0,0,0,0.55);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
}

.roadshow-card dd {
    margin: 0;
    color: #111;
    font-size: 0.82rem;
    font-weight: 700;
}

.roadshow-notes {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(28px, 4vw, 56px);
    background:
        radial-gradient(circle at 22% 22%, rgba(239,232,214,0.72), rgba(216,208,192,0) 34%),
        linear-gradient(135deg, #e6decd 0%, #d8d0c0 48%, #cfc5b2 100%);
}

.roadshow-kicker {
    margin-bottom: 14px;
    color: #111;
    font-size: clamp(0.82rem, 1vw, 1rem);
    font-weight: 700;
}

.roadshow-notes h2 {
    margin: 0 0 clamp(18px, 2.4vw, 30px);
    color: #080808;
    font-size: clamp(1.75rem, 2.35vw, 3rem);
    font-weight: 900;
    line-height: 1.02;
    max-width: 720px;
    text-wrap: balance;
}

.roadshow-notes p {
    margin: 0;
    color: rgba(0,0,0,0.78);
    font-size: clamp(0.94rem, 1vw, 1.08rem);
    line-height: 1.35;
    max-width: 560px;
}

.roadshow-stop-label {
    font-weight: 900;
}

.roadshow-notes p + p {
    margin-top: 28px;
}

.roadshow-notes ul {
    display: grid;
    gap: 6px;
    margin: 8px 0 0;
    padding-left: 0;
    color: #111;
    font-size: clamp(0.86rem, 0.9vw, 0.96rem);
    line-height: 1.28;
    list-style: none;
}

.roadshow-notes li {
    position: relative;
    padding-left: 22px;
}

.roadshow-notes li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.2em;
    width: 12px;
    height: 12px;
    background: #1f1b15;
    clip-path: polygon(50% 0, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0 50%, 38% 38%);
}

.roadshow-notes strong {
    color: #000;
    font-weight: 900;
}

.roadshow-main-ticket {
    border: 2px solid #111;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    min-width: 190px;
    min-height: 54px;
    margin-top: clamp(24px, 3vw, 40px);
    padding: 0 28px;
    color: #fff;
    background: #8f8676;
    border-radius: 999px;
    box-shadow: 0 16px 34px rgba(0,0,0,0.16);
    font-size: clamp(0.95rem, 1.1vw, 1.12rem);
    font-weight: 900;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform 0.25s ease, background 0.25s ease;
    cursor: pointer;
}

.roadshow-main-ticket:hover {
    transform: translateY(-2px);
    background: #E52E2D;
}

.ticket-dialog {
    width: min(520px, calc(100vw - 32px));
    padding: 0;
    color: #101010;
    background: transparent;
    border: 0;
}

.ticket-dialog::backdrop {
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(8px);
}

.ticket-dialog-panel {
    position: relative;
    display: grid;
    gap: 18px;
    padding: clamp(24px, 4vw, 42px);
    background: #eee8db;
    border: 1px solid rgba(255,255,255,0.55);
    border-radius: 8px;
    box-shadow: 0 34px 100px rgba(0,0,0,0.45);
}

.ticket-dialog-close {
    position: absolute;
    top: 16px;
    right: 16px;
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    padding: 0;
    color: #111;
    background: rgba(0,0,0,0.06);
    border: 0;
    border-radius: 50%;
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
}

.ticket-dialog-kicker {
    color: #E52E2D;
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.ticket-dialog h2 {
    margin: 0;
    padding-right: 34px;
    color: #070707;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    line-height: 0.95;
}

.ticket-dialog p {
    margin: 0;
    color: rgba(0,0,0,0.72);
    font-size: 1rem;
    line-height: 1.45;
}

.ticket-field {
    display: grid;
    gap: 8px;
}

.ticket-field span {
    color: rgba(0,0,0,0.62);
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.ticket-field select,
.ticket-field input {
    width: 100%;
    min-height: 52px;
    padding: 0 16px;
    color: #101010;
    background: rgba(255,255,255,0.72);
    border: 1px solid rgba(0,0,0,0.14);
    border-radius: 6px;
    font: inherit;
    font-weight: 800;
}

.ticket-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 0;
    border-top: 1px solid rgba(0,0,0,0.12);
    border-bottom: 1px solid rgba(0,0,0,0.12);
}

.ticket-summary span {
    color: rgba(0,0,0,0.72);
    font-weight: 800;
}

.ticket-summary strong {
    color: #070707;
    font-size: clamp(1.8rem, 5vw, 2.7rem);
    font-weight: 900;
}

.ticket-checkout-button {
    min-height: 58px;
    color: #fff;
    background: #E52E2D;
    border: 0;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.24s ease, background 0.24s ease;
}

.ticket-checkout-button:hover {
    transform: translateY(-2px);
    background: #111;
}

.ticket-status {
    min-height: 22px;
    color: rgba(0,0,0,0.58);
    font-size: 0.86rem;
}

.roadshow-countdown {
    padding: clamp(26px, 4vw, 48px) 6vw clamp(16px, 2vw, 24px);
    color: #fff;
    background: #000;
    text-align: center;
    text-transform: uppercase;
}

.countdown-clock {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: clamp(16px, 3.4vw, 58px);
    color: #fff;
}

.countdown-unit {
    display: grid;
    gap: 8px;
    min-width: clamp(68px, 10vw, 150px);
    color: #fff;
}

.countdown-unit span {
    color: #fff;
    font-size: clamp(2.2rem, 5.4vw, 6.8rem);
    font-weight: 900;
    line-height: 0.92;
}

.countdown-unit small {
    color: #fff;
    font-size: clamp(0.58rem, 0.9vw, 0.86rem);
    font-weight: 800;
    letter-spacing: 0.16em;
}

.countdown-caption {
    margin-top: clamp(14px, 2vw, 26px);
    color: #fff;
    font-size: clamp(1rem, 1.8vw, 2rem);
    font-weight: 800;
    letter-spacing: 0.12em;
}

@media (max-width: 980px) {
    .roadshow-drive {
        min-height: 220vh;
    }

    .roadshow-drive-sticky {
        min-height: 680px;
    }

    .roadshow-map-block {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .roadshow-map-stage {
        width: 100%;
        max-height: none;
        min-height: 0;
    }

    .roadshow-notes {
        align-items: center;
        text-align: center;
    }

    .roadshow-notes ul {
        text-align: left;
    }

    .roadshow-main-ticket {
        align-self: center;
    }
}

@media (max-width: 640px) {
    .roadshow-drive {
        min-height: 210vh;
    }

    .roadshow-drive-sticky {
        min-height: 620px;
    }

    .roadshow-map-stage {
        min-height: 0;
    }

    .roadshow-card {
        width: min(240px, 58vw);
        padding: 16px;
    }
}

/* ========================================= */
/* PROJECT DETAIL: BTS GALLERY               */
/* ========================================= */

.gallery-section {
    padding: var(--gallery-pad-top, clamp(10px, 1.5vw, 24px)) 0 var(--gallery-pad-bottom, 6vw);
}

.gallery-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #E52E2D;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    opacity: 0;
    transition: opacity 1s ease;
}

.gallery-section.visible .gallery-title {
    opacity: 1;
}

.gallery-title .title-line {
    display: block;
    width: 100px;
    height: 1px;
    background: linear-gradient(to left, #E52E2D, transparent);
}

.gallery-title .title-line:last-child {
    background: linear-gradient(to right, #E52E2D, transparent);
}

.spacing-tuner {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 10000;
    width: min(360px, calc(100vw - 36px));
    max-height: min(78vh, 680px);
    overflow: auto;
    padding: 18px;
    color: #f4f4f4;
    background: rgba(8,8,8,0.94);
    border: 1px solid rgba(255,255,255,0.18);
    border-left: 3px solid #E52E2D;
    box-shadow: 0 20px 70px rgba(0,0,0,0.75);
    font-family: 'Outfit', sans-serif;
}

.spacing-tuner h3 {
    margin: 0 0 12px;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.spacing-tuner label {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    margin-top: 12px;
    font-size: 0.78rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.spacing-tuner input {
    grid-column: 1 / -1;
    width: 100%;
    accent-color: #E52E2D;
}

.spacing-tuner output {
    color: #E52E2D;
    font-weight: 800;
}

.spacing-tuner textarea {
    box-sizing: border-box;
    width: 100%;
    min-height: 96px;
    margin-top: 14px;
    padding: 10px;
    color: #ddd;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.16);
    font: 12px/1.45 Consolas, monospace;
    resize: vertical;
}

.gallery-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 0 40px;
}

.gallery-track-wrapper {
    overflow: hidden;
    width: 100%;
}

.gallery-track {
    display: flex;
    gap: 20px;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    padding: 10px 0;
}

.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.gallery-arrow:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #E52E2D;
    color: #E52E2D;
}

.prev-arrow {
    left: 20px;
}

.next-arrow {
    right: 20px;
}

.gallery-slider-container.reverse {
    margin-top: 20px;
}

.gallery-slider-container.reverse .gallery-track {
    flex-direction: row-reverse;
}

.gallery-slider-container.reverse .prev-arrow {
    left: 20px;
}

.gallery-slider-container.reverse .next-arrow {
    right: 20px;
}

.bts-item {
    flex: 0 0 300px;
    height: 200px;
    background: #111;
    transition: all 0.5s ease;
}

.bts-item img, .bts-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.5s ease, transform 0.5s ease;
}

.bts-item:hover img, .bts-item:hover video {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.cast-member img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(100%);
    transition: filter 0.5s ease, transform 3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cast-member.flipping img {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.bts-item:hover img, .bts-item:hover video {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.bts-item.is-video {
    position: relative;
}

.bts-item.is-video::after {
    content: 'BTS';
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    color: #fff;
    background: #E52E2D;
    padding: 3px 8px;
    letter-spacing: 1px;
    z-index: 5;
}

@media (max-width: 768px) {
    .gallery-slider-container {
        padding: 0 10px;
    }
    
    .gallery-arrow {
        width: 44px;
        height: 44px;
    }
    
    .prev-arrow {
        left: 5px;
    }
    
    .next-arrow {
        right: 5px;
    }
}

/* ========================================= */
/* MOBILE SAFETY PASS                        */
/* ========================================= */

@media (max-width: 700px) {
    :root {
        --nav-height: 112px;
    }

    .top-nav {
        height: var(--nav-height);
        flex-direction: column;
        justify-content: center;
        gap: 8px;
        padding: 12px 16px 10px;
    }

    .logo-image {
        max-height: 42px;
    }

    .top-nav nav {
        width: 100%;
    }

    nav ul {
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px 14px;
    }

    nav ul li:not(:last-child) {
        border-right: 0;
        padding-right: 0;
        margin-right: 0;
    }

    nav a {
        padding: 4px 0;
        font-size: 0.72rem;
        line-height: 1;
        letter-spacing: 0;
    }

    nav a:hover {
        animation: none;
    }

    .hero-overlay {
        left: 20px;
        right: 20px;
        bottom: 13vh;
        width: auto;
    }

    .hero-content h1 {
        max-width: 100%;
        font-size: clamp(2.35rem, 10.5vw, 3.2rem) !important;
        line-height: 0.92;
        letter-spacing: 0;
    }

    .hero-content p {
        font-size: 1rem;
        letter-spacing: 2px;
    }

    .carousel-indicators {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }

    .progress-track {
        width: 100%;
        max-width: 280px;
    }

    .contact-reveal-layout {
        overflow: visible;
    }

    .contact-reveal-copy h1 {
        max-width: 100%;
        font-size: clamp(2.35rem, 11vw, 3rem);
        line-height: 0.95;
        text-wrap: balance;
    }

    .contact-reveal-form,
    .contact-plank {
        max-width: 100%;
    }

    .about-photos {
        align-items: flex-start;
        min-height: calc(100vh - var(--nav-height));
        padding-top: clamp(56px, 11vh, 92px);
    }
}

/* ========================================= */
/* RELEASE RESPONSIVE QA PATCH               */
/* ========================================= */

@media (max-width: 900px) {
    .top-nav {
        background: linear-gradient(180deg, rgba(0,0,0,0.72), rgba(0,0,0,0.42));
    }

    .about-fan-scroll,
    .services-cine3d,
    .services-polaroid-scroll {
        max-width: 100vw;
        overflow-x: clip;
    }
}

.services-cine3d,
.services-polaroid-scroll {
    contain: paint;
}
