:root {
    --black: #0f1720;
    --ink: #111a24;
    --coal: #1b2c3f;
    --paper: #ffffff;
    --soft: #dbe5ee;
    --muted: #6c7f91;
    --accent: #446487;
    --accent-2: #8fb0cf;
    --line: rgba(255, 255, 255, 0.15);
    --dark-line: rgba(68, 100, 135, 0.2);
    --display: "Bricolage Grotesque", "Manrope", Arial, sans-serif;
    --body: "Manrope", Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 112px;
}

body {
    margin: 0;
    overflow-x: hidden;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--body);
    line-height: 1.55;
}

::selection {
    background: var(--accent);
    color: var(--black);
}

img,
video {
    display: block;
    max-width: 100%;
}

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

svg {
    width: 1.08rem;
    height: 1.08rem;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.site-header {
    position: fixed;
    z-index: 100;
    top: 18px;
    left: 50%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(calc(100% - 44px), 1240px);
    min-height: 0;
    padding: 0;
    color: var(--paper);
    background: transparent;
    border: 0;
    border-radius: 0;
    backdrop-filter: none;
    pointer-events: none;
    transform: translateX(-50%);
    animation: navDrop 760ms cubic-bezier(.2, .8, .2, 1) 180ms both;
    transition: transform 220ms ease;
}

.site-header.is-scrolled {
    background: transparent;
    border-color: transparent;
}

@keyframes navDrop {
    from {
        opacity: 0;
        transform: translate(-50%, -18px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 52px;
    padding: 7px 16px 7px 8px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(15, 23, 32, 0.78);
    backdrop-filter: blur(16px);
    font-weight: 800;
    pointer-events: auto;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: var(--black);
    background: var(--accent);
    font-size: 0.82rem;
}

.brand-text {
    font-size: 0.86rem;
    letter-spacing: 0.01em;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(15, 23, 32, 0.78);
    backdrop-filter: blur(16px);
    pointer-events: auto;
}

.main-nav a {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    transition: color 180ms ease, background 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
    color: var(--black);
    background: var(--accent);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: var(--accent);
    color: var(--black);
    cursor: pointer;
    pointer-events: auto;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: currentColor;
    border-radius: 999px;
}

.section-dark {
    background: var(--black);
    color: var(--paper);
}

.cinema-hero {
    position: relative;
    height: 190svh;
    background: var(--black);
    --scroll-progress: 0;
    --intro-progress: 0;
}

.hero-stage {
    position: sticky;
    top: 0;
    display: grid;
    place-items: center;
    height: 100svh;
    min-height: 100svh;
    overflow: hidden;
    isolation: isolate;
}

.hero-video {
    position: absolute;
    inset: 0;
    z-index: -3;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: calc(var(--intro-progress, 0) * 0.78);
    filter: saturate(1.04) contrast(1.08);
    transform: scale(calc(1.12 - var(--intro-progress, 0) * 0.07));
    will-change: transform;
}

.hero-canvas {
    display: none;
}

.frames-ready .hero-video {
    opacity: 0.78;
}

.frames-ready .hero-canvas {
    opacity: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(circle at 50% 42%, rgba(5, 5, 5, 0.04), rgba(5, 5, 5, 0.52) 64%, rgba(5, 5, 5, 0.82)),
        linear-gradient(90deg, rgba(5, 5, 5, 0.54), rgba(5, 5, 5, 0.16) 54%, rgba(5, 5, 5, 0.36));
    opacity: calc(0.95 - var(--intro-progress, 0) * 0.2);
}

.overlay-scrim {
    position: absolute;
    inset: 0;
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    background:
        radial-gradient(circle at center, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.58) 56%, rgba(0, 0, 0, 0.82) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.75));
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    pointer-events: none;
}

.hero-frame {
    position: absolute;
    inset: clamp(88px, 10vw, 120px) clamp(14px, 4vw, 56px) clamp(38px, 5vw, 66px);
    z-index: -1;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: clamp(26px, 4vw, 54px);
    clip-path: inset(calc((1 - var(--intro-progress, 1)) * 46%) round clamp(26px, 4vw, 54px));
    pointer-events: none;
}

.hero-copy {
    position: relative;
    z-index: 2;
    width: min(980px, calc(100% - 48px));
    padding-top: 64px;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-copy > * {
    opacity: 0;
    transform: translateY(20px);
}

.intro-kicker {
    color: var(--accent);
}

.hero-copy h1 {
    max-width: 820px;
    margin: 0;
    font-family: var(--display);
    font-size: clamp(2.8rem, 5.15vw, 5.9rem);
    font-weight: 800;
    line-height: 0.94;
    letter-spacing: 0;
    text-wrap: balance;
}

.hero-copy p:not(.eyebrow) {
    max-width: 520px;
    margin: 24px 0 30px;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(0.98rem, 1.2vw, 1.12rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

h2,
h3 {
    margin: 0;
    font-family: var(--display);
    letter-spacing: 0;
}

h2 {
    font-size: clamp(2.15rem, 3.8vw, 4.25rem);
    font-weight: 800;
    line-height: 1.04;
    text-wrap: balance;
}

h3 {
    font-size: clamp(1.18rem, 1.55vw, 1.7rem);
    font-weight: 800;
    line-height: 1.08;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.055em;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 220ms ease, background 220ms ease, color 220ms ease, border-color 220ms ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
}

.button-primary {
    background: var(--accent);
    color: var(--black);
    box-shadow: 0 12px 36px rgba(68, 100, 135, 0.28);
}

.button-ghost {
    color: var(--paper);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.button-dark {
    background: var(--black);
    color: var(--paper);
    border-color: var(--black);
}

.button-dark:hover,
.button-dark:focus-visible {
    background: var(--accent);
    color: var(--black);
}

.button svg {
    flex: 0 0 auto;
}

.scroll-meter {
    position: absolute;
    right: clamp(18px, 4vw, 52px);
    bottom: clamp(24px, 4vw, 50px);
    width: min(220px, 46vw);
    height: 3px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.22);
    border-radius: 999px;
}

.scroll-hint {
    position: absolute;
    right: clamp(18px, 4vw, 52px);
    bottom: clamp(42px, 6vw, 76px);
    z-index: 3;
    color: rgba(255, 255, 255, 0.84);
    font-size: clamp(0.72rem, 1vw, 0.84rem);
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.62);
    opacity: max(0, calc(1 - (var(--intro-progress, 0) * 1.35)));
    transform: translateY(calc(var(--intro-progress, 0) * 12px));
    transition: opacity 180ms linear;
    pointer-events: none;
}

.scroll-meter span {
    display: block;
    width: calc(var(--scroll-progress, 0) * 100%);
    height: 100%;
    background: var(--accent);
}

.about-section,
.booking-section,
.location-section {
    display: grid;
    grid-template-columns: minmax(260px, 0.48fr) minmax(0, 1fr);
    gap: clamp(34px, 5vw, 76px);
    align-items: center;
    padding: clamp(72px, 8vw, 112px) clamp(18px, 6vw, 96px);
    scroll-margin-top: 112px;
}

.about-photo {
    position: relative;
    min-height: 0;
    aspect-ratio: 4 / 3;
    max-width: 500px;
    width: 100%;
    overflow: hidden;
    border-radius: clamp(26px, 4vw, 48px);
    background: #ffffff;
    box-shadow: 0 24px 90px rgba(17, 17, 15, 0.08);
}

.about-photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 44%;
    filter: saturate(1.02) contrast(1.02);
}

.about-copy p:not(.eyebrow),
.booking-copy p,
.location-copy p {
    max-width: 620px;
    color: rgba(17, 17, 17, 0.72);
    font-size: clamp(0.98rem, 1.05vw, 1.08rem);
    line-height: 1.62;
}

.about-copy p:not(.eyebrow) {
    margin: 16px 0 0;
}

.about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.about-tags span {
    padding: 10px 13px;
    border: 1px solid var(--dark-line);
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.045em;
    text-transform: uppercase;
}

.services,
.video-section {
    padding: clamp(72px, 8.4vw, 124px) clamp(18px, 6vw, 96px);
    scroll-margin-top: 112px;
}

.section-heading {
    max-width: 760px;
    margin-bottom: clamp(30px, 4.4vw, 60px);
}

.video-section .section-heading {
    max-width: 680px;
}

.video-section .section-heading h2 {
    font-size: clamp(2rem, 3.2vw, 3.4rem);
    line-height: 1.06;
}

.price-list {
    max-width: 900px;
    border-top: 1px solid var(--line);
}

.price-row {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    padding: 24px 0;
    border-bottom: 1px solid var(--line);
    transition: padding-left 220ms ease, border-color 220ms ease;
}

.price-row:hover {
    padding-left: 16px;
    border-color: rgba(143, 176, 207, 0.62);
}

.service-number {
    color: var(--accent);
    font-weight: 900;
}

.price-row p {
    margin: 9px 0 0;
    color: rgba(255, 255, 255, 0.66);
}

.price-row strong {
    color: var(--accent);
    font-size: clamp(1.45rem, 2.4vw, 2.25rem);
    font-weight: 900;
}

.price-amount {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
    line-height: 1;
    white-space: nowrap;
}

.price-amount span {
    color: #ffffff;
}

.price-amount del {
    color: rgba(255, 255, 255, 0.46);
    font-size: clamp(0.82rem, 1vw, 1rem);
    font-weight: 800;
    text-decoration-color: var(--accent-2);
    text-decoration-thickness: 2px;
}

.reel-carousel {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: clamp(10px, 2vw, 18px);
    align-items: center;
}

.reel-viewport {
    overflow: hidden;
    border-radius: 30px;
}

.reel-track {
    display: flex;
    gap: clamp(14px, 2vw, 24px);
    overflow-x: auto;
    padding: 4px 4px 18px;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.reel-track::-webkit-scrollbar {
    display: none;
}

.reel-card {
    position: relative;
    flex: 0 0 clamp(230px, 24vw, 330px);
    aspect-ratio: 9 / 16;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 28px;
    background: #111a24;
    scroll-snap-align: center;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.32);
}

.reel-card iframe {
    width: 100%;
    height: 100%;
    border: 0;
    background: #111a24;
}

.reel-card::before {
    content: attr(data-reel);
    position: absolute;
    top: 14px;
    left: 16px;
    z-index: 2;
    color: rgba(255, 255, 255, 0.34);
    font-family: var(--display);
    font-size: clamp(2.8rem, 4.2vw, 4.6rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0;
    pointer-events: none;
}

.reel-card a {
    position: absolute;
    right: 14px;
    bottom: 14px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 999px;
    color: var(--accent);
    background: rgba(6, 6, 6, 0.78);
    backdrop-filter: blur(12px);
    font-weight: 900;
    font-size: 0.72rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.carousel-button {
    display: grid;
    place-items: center;
    width: clamp(46px, 5vw, 62px);
    height: clamp(46px, 5vw, 62px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    color: var(--paper);
    background: rgba(255, 255, 255, 0.08);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.carousel-button:hover,
.carousel-button:focus-visible {
    color: var(--black);
    background: var(--accent);
    transform: translateY(-2px);
}

.carousel-dots {
    grid-column: 2;
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 2px;
}

.carousel-dots button {
    width: 28px;
    height: 4px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.24);
    cursor: pointer;
}

.carousel-dots button.is-active {
    background: var(--accent);
}

.booking-section {
    background: var(--paper);
    grid-template-columns: minmax(0, 0.92fr) minmax(260px, 0.52fr);
}

.booking-media {
    position: relative;
    min-height: clamp(260px, 27vw, 390px);
    max-width: 430px;
    justify-self: end;
    overflow: hidden;
    border: 1px solid var(--dark-line);
    border-radius: 34px;
    background: #111a24;
    box-shadow: 0 24px 90px rgba(17, 17, 15, 0.08);
}

.booking-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 6, 6, 0.02), rgba(6, 6, 6, 0.18));
    pointer-events: none;
}

.booking-media img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    object-position: center 42%;
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    min-height: inherit;
    border: 0;
}

.location-section {
    grid-template-columns: minmax(0, 0.68fr) minmax(0, 1.12fr);
}

.location-copy p {
    color: rgba(255, 255, 255, 0.75);
}

.location-copy p svg {
    margin-right: 8px;
    vertical-align: -2px;
}

.map-frame {
    min-height: 440px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 34px;
}

.site-footer {
    padding: 58px clamp(18px, 6vw, 96px) 28px;
    color: var(--paper);
    background: #0b121a;
}

.footer-inner {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 24px;
    align-items: start;
}

.footer-inner h2 {
    font-family: var(--display);
    font-size: clamp(2.5rem, 5vw, 5rem);
    line-height: 0.96;
    letter-spacing: 0;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 54px;
    padding: 0 16px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.8);
    transition: border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
    border-color: var(--accent);
    color: var(--black);
    background: var(--accent);
}

.copyright {
    margin: 46px 0 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.86rem;
}

.reveal {
    opacity: 0;
    transform: translateY(48px);
    filter: blur(8px);
    transition: opacity 720ms ease, transform 860ms cubic-bezier(.2, .8, .2, 1), filter 720ms ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.delay-1 {
    transition-delay: 110ms;
}

.delay-2 {
    transition-delay: 210ms;
}

.delay-3 {
    transition-delay: 310ms;
}

@media (max-width: 980px) {
    .nav-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;
        top: calc(100% + 10px);
        right: 0;
        left: 0;
        display: grid;
        gap: 6px;
        padding: 10px;
        border: 1px solid rgba(255, 255, 255, 0.16);
        border-radius: 24px;
        background: rgba(15, 23, 32, 0.96);
        backdrop-filter: blur(18px);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-8px);
        transition: opacity 200ms ease, transform 200ms ease;
    }

    .main-nav.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .main-nav a {
        justify-content: center;
        min-height: 46px;
    }

    .about-section,
    .booking-section,
    .location-section,
    .footer-inner {
        grid-template-columns: 1fr;
    }

    .reel-carousel {
        grid-template-columns: minmax(0, 1fr);
    }

    .reel-viewport,
    .carousel-dots {
        grid-column: 1;
    }

    .carousel-button {
        display: none;
    }

    .booking-media {
        justify-self: stretch;
        max-width: none;
        min-height: 320px;
    }

    .hero-stage {
        min-height: 100svh;
    }

    .map-frame {
        min-height: 440px;
    }
}

@media (max-width: 620px) {
    .site-header {
        top: 10px;
        width: calc(100% - 20px);
    }

    .brand-text {
        max-width: 118px;
        font-size: 0.78rem;
        line-height: 1.08;
    }

    .cinema-hero {
        height: 175svh;
    }

    .hero-stage {
        min-height: 100svh;
    }

    .hero-copy {
        width: calc(100% - 32px);
        padding-top: 88px;
    }

    .hero-copy h1 {
        font-size: clamp(2.25rem, 10vw, 3.55rem);
        line-height: 0.94;
    }

    .hero-copy p:not(.eyebrow) {
        font-size: 1rem;
    }

    .hero-actions {
        display: grid;
    }

    .hero-frame {
        inset: 82px 12px 24px;
        border-radius: 26px;
    }

    .hero-overlay {
        background: linear-gradient(90deg, rgba(5, 5, 5, 0.72), rgba(5, 5, 5, 0.26));
    }

    .overlay-scrim {
        backdrop-filter: blur(3px);
        -webkit-backdrop-filter: blur(3px);
    }

    .scroll-hint {
        right: auto;
        left: 16px;
        bottom: 54px;
        max-width: calc(100% - 32px);
    }

    .about-section,
    .booking-section,
    .location-section,
    .services,
    .video-section {
        padding-left: 16px;
        padding-right: 16px;
    }

    h2 {
        font-size: clamp(2.05rem, 10.5vw, 3.35rem);
        line-height: 1.05;
    }

    .video-section .section-heading h2 {
        font-size: clamp(1.95rem, 8.6vw, 2.75rem);
    }

    .about-photo {
        max-width: none;
        aspect-ratio: 4 / 3;
        border-radius: 28px;
    }

    .about-copy p:not(.eyebrow),
    .booking-copy p,
    .location-copy p {
        font-size: 0.98rem;
    }

    .price-row {
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 14px;
    }

    .price-row strong {
        grid-column: 2;
        font-size: 1.8rem;
    }

    .price-row:hover {
        padding-left: 0;
    }

    .reel-track {
        padding-bottom: 16px;
    }

    .reel-card {
        flex-basis: min(78vw, 300px);
    }

    .booking-media {
        min-height: 280px;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.001ms !important;
    }

    .hero-video {
        opacity: 0.66;
        transform: none;
    }

    .hero-frame {
        clip-path: none;
    }

    .overlay-scrim {
        visibility: visible;
        opacity: 1;
    }

    .hero-copy > * {
        opacity: 1;
        transform: none;
    }

    .reveal {
        opacity: 1;
        transform: none;
        filter: none;
    }

}

/* Sigmarcos refinements: compact wordmark, clearer offers and scroll-led motion. */
.brand-logo {
    display: block;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
}

.brand {
    min-height: 54px;
    padding: 8px 17px;
}

.brand-text {
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cinema-hero {
    height: 230svh;
}

.hero-video {
    opacity: calc(0.03 + (var(--scroll-progress, 0) * 0.88));
    transform: translate3d(0, 0, 0) scale(calc(1.08 - (var(--scroll-progress, 0) * 0.08)));
    transition: opacity 160ms linear;
    backface-visibility: hidden;
    contain: paint;
    will-change: transform, opacity;
}

/* Scroll frames are rendered from memory so reversing or stopping never waits on video seeking. */
.hero-canvas {
    display: block;
    position: absolute;
    inset: 0;
    z-index: -3;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    background: #080808;
    will-change: contents;
}

.hero-video {
    opacity: 0 !important;
    pointer-events: none;
}

.frames-ready .hero-canvas {
    opacity: 1;
}

.frames-ready .hero-video {
    display: none;
}

.hero-overlay {
    opacity: calc(0.9 - (var(--scroll-progress, 0) * 0.24));
}

.hero-copy {
    width: min(900px, calc(100% - 48px));
    padding-top: 0;
}

.hero-copy h1 {
    max-width: 760px;
    font-size: clamp(2.8rem, 5vw, 5.35rem);
}

.price-row {
    position: relative;
}

.price-row.is-featured {
    margin: 10px -16px;
    padding-right: 16px;
    padding-left: 16px;
    border: 1px solid rgba(143, 176, 207, 0.72);
    border-radius: 20px;
    background: linear-gradient(105deg, rgba(68, 100, 135, 0.22), rgba(255, 255, 255, 0.05));
    box-shadow: 0 18px 54px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.price-row.is-featured::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 4px;
    border-radius: 20px 0 0 20px;
    background: var(--accent-2);
    content: "";
}

.price-row.is-featured .service-details {
    min-width: 0;
}

.price-row.is-featured h3 {
    font-size: clamp(1.5rem, 2.4vw, 2.2rem);
}

.offer-badge-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px;
    margin-bottom: 10px;
}

.offer-limit {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.64rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.offer-timer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.offer-timer strong {
    display: inline-flex;
    min-width: 68px;
    justify-content: center;
    padding: 8px 10px;
    border-radius: 8px;
    color: var(--black);
    background: #ffffff;
    font-size: 0.9rem;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.08em;
}

.offer-price {
    align-items: flex-end;
    gap: 7px;
    padding: 14px 0;
}

.price-row.is-featured .offer-price span {
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 3.35rem);
}

.offer-price del {
    font-size: 1rem;
}

.offer-price small {
    color: var(--accent-2);
    font-size: 0.66rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.price-row.is-featured.is-expired .offer-timer strong {
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.12);
}

.price-row.is-featured:hover {
    padding-left: 32px;
}

.offer-badge {
    display: inline-flex;
    align-items: center;
    min-height: 25px;
    margin-bottom: 8px;
    padding: 0 9px;
    border: 1px solid rgba(143, 176, 207, 0.66);
    border-radius: 999px;
    color: var(--accent-2);
    font-size: 0.64rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.home-service-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    margin-top: 42px;
    padding: clamp(22px, 3vw, 34px);
    border: 1px solid rgba(143, 176, 207, 0.42);
    border-radius: 24px;
    background: linear-gradient(110deg, rgba(68, 100, 135, 0.2), rgba(255, 255, 255, 0.045));
}

.services-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    max-width: 900px;
    margin-top: 30px;
    padding: clamp(22px, 3vw, 32px);
    border: 1px solid rgba(143, 176, 207, 0.52);
    border-radius: 20px;
    background: var(--accent);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.services-cta .eyebrow {
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.74);
}

.services-cta h3 {
    max-width: 560px;
    margin: 0;
    color: #ffffff;
    font-size: clamp(1.2rem, 2.4vw, 1.9rem);
}

.services-cta .button-primary {
    flex: 0 0 auto;
    color: var(--black);
    background: #ffffff;
}

.home-service-copy {
    max-width: 650px;
}

.home-service-copy .eyebrow {
    margin-bottom: 9px;
}

.home-service-copy h3 {
    margin-bottom: 8px;
}

.home-service-copy p:last-child {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
}

.booking-section {
    position: relative;
}

.booking-section::before {
    content: "";
    position: absolute;
    top: 0;
    right: clamp(18px, 6vw, 96px);
    left: clamp(18px, 6vw, 96px);
    height: 1px;
    background: var(--dark-line);
}

.booking-media {
    width: min(100%, 380px);
    aspect-ratio: 4 / 5;
    min-height: 0;
}

.booking-media img {
    object-position: center 38%;
}

.reveal {
    transform: translate3d(0, 42px, 0);
    filter: blur(5px);
    transition-duration: 680ms;
}

@media (max-width: 980px) {
    .home-service-card {
        align-items: flex-start;
        flex-direction: column;
    }

    .services-cta {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 620px) {
    .brand {
        min-height: 48px;
        padding: 7px 13px;
    }

    .brand-logo {
        width: 34px;
        height: 34px;
        flex-basis: 34px;
    }

    .brand-text {
        font-size: 0.7rem;
    }

    .cinema-hero {
        height: 185svh;
        min-height: 185svh;
    }

    .hero-stage {
        height: 100dvh;
        min-height: 100dvh;
    }

    .hero-canvas {
        image-rendering: auto;
        transform: translate3d(0, 0, 0);
    }

    .overlay-scrim {
        backdrop-filter: blur(1.5px);
        -webkit-backdrop-filter: blur(1.5px);
    }

    .mobile-video-mode .hero-video {
        display: block !important;
        opacity: 0.82 !important;
        transform: translate3d(0, 0, 0) scale(1.04);
        filter: saturate(1.05) contrast(1.06);
    }

    .mobile-video-mode .hero-canvas {
        display: none !important;
        opacity: 0 !important;
    }

    .mobile-video-mode .hero-overlay {
        opacity: 0.72;
        background:
            radial-gradient(circle at 50% 44%, rgba(5, 5, 5, 0.08), rgba(5, 5, 5, 0.56) 62%, rgba(5, 5, 5, 0.88)),
            linear-gradient(180deg, rgba(5, 5, 5, 0.42), rgba(5, 5, 5, 0.78));
    }

    .mobile-video-mode .overlay-scrim {
        background:
            radial-gradient(circle at center, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.44) 58%, rgba(0, 0, 0, 0.72)),
            linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.64));
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .hero-copy {
        width: calc(100% - 32px);
    }

    .hero-copy h1 {
        font-size: clamp(2.4rem, 11vw, 3.7rem);
    }

    .price-row.is-featured {
        margin-right: -8px;
        margin-left: -8px;
        padding-right: 12px;
        padding-left: 12px;
        grid-template-columns: 34px minmax(0, 1fr);
    }

    .price-row.is-featured .offer-price {
        grid-column: 2;
        align-items: flex-start;
        padding-top: 0;
    }

    .price-row.is-featured:hover {
        padding-left: 12px;
    }

    .home-service-card {
        margin-top: 30px;
        border-radius: 20px;
    }

    .home-service-card .button {
        width: 100%;
    }

    .services-cta .button {
        width: 100%;
    }

    .booking-media {
        width: 100%;
        min-height: 260px;
        aspect-ratio: 4 / 3;
    }
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        transform: none;
        filter: none;
    }
}
