/* =========================================================
   ЗАЗЕРКАЛЬЕ / HORROR КИНОТЕАТР — новая визуальная система
   ========================================================= */

:root {
    --ink: #f3f3f0;
    --muted: rgba(243, 243, 240, 0.58);
    --line: rgba(255, 255, 255, 0.14);
    --quest-a: #36d98b;
    --quest-b: #7a43ff;
    --cinema-a: #ff3e52;
    --cinema-b: #27d68c;
    --ease: cubic-bezier(.22, .8, .24, 1);
}

@font-face {
    font-family: "Montserrat Web";
    src: url("fonts/Montserrat-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Polonium Web";
    src: url("fonts/Polonium.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Polonium Web";
    src: url("fonts/Polonium-Bold.otf") format("opentype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Simphonia Web";
    src: url("fonts/Simphonia-Deco.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Retrogression Web";
    src: url("fonts/Retrogression-Regular.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter Web";
    src: url("fonts/Inter-ExtraLight.ttf") format("truetype");
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

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

html {
    scroll-behavior: smooth;
    background: #09090b;
}

body {
    min-width: 320px;
    background: #09090b;
    color: var(--ink);
    font-family: "Inter Web", Arial, sans-serif;
    font-weight: 200;
    line-height: 1.65;
    overflow-x: hidden;
}

button,
a {
    font: inherit;
}

button {
    border: 0;
}

button:focus-visible,
a:focus-visible {
    outline: 2px solid rgba(255,255,255,.9);
    outline-offset: 6px;
}

/* ================= HERO ================= */

.hero {
    --quest-intensity: 0;
    --cinema-intensity: 0;
    --neutral-intensity: 1;

    position: relative;
    min-height: 100svh;
    isolation: isolate;
    overflow: hidden;
    background: #070708;
}

.hero::before {
    content: "";
    position: absolute;
    inset: -20%;
    z-index: -3;
    background:
        radial-gradient(circle at 20% 20%, rgba(255,255,255,.075), transparent 32%),
        radial-gradient(circle at 80% 70%, rgba(255,255,255,.05), transparent 30%),
        #070708;
    animation: neutralDrift 15s ease-in-out infinite alternate;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    overflow: hidden;
    pointer-events: none;
    transition: filter 900ms var(--ease);
}

.orb {
    position: absolute;
    width: 42vw;
    height: 42vw;
    min-width: 420px;
    min-height: 420px;
    border-radius: 50%;
    filter: blur(70px);
    opacity: .08;
    mix-blend-mode: screen;
    transform: translate3d(0,0,0);
    transition:
        opacity 900ms var(--ease),
        filter 900ms var(--ease),
        transform 1200ms var(--ease);
    animation: floatOrb 14s ease-in-out infinite alternate;
}

.orb-a {
    top: -16%;
    left: -10%;
    background: linear-gradient(135deg, var(--quest-a), var(--quest-b));
}

.orb-b {
    right: -12%;
    bottom: -16%;
    background: linear-gradient(135deg, var(--quest-b), #5bffce);
    animation-delay: -4s;
}

.orb-c {
    left: 28%;
    bottom: -22%;
    background: linear-gradient(135deg, var(--cinema-a), var(--cinema-b));
    opacity: .045;
    animation-delay: -7s;
}

.orb-d {
    right: 15%;
    top: -20%;
    background: linear-gradient(135deg, var(--cinema-a), #ff9a58);
    opacity: .04;
    animation-delay: -10s;
}

.hero-noise {
    position: absolute;
    inset: 0;
    opacity: .085;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
    mix-blend-mode: screen;
}

.hero-vignette {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at center, transparent 26%, rgba(0,0,0,.28) 100%),
        linear-gradient(180deg, rgba(0,0,0,.12), transparent 30%, rgba(0,0,0,.24));
}

.hero-inner {
    position: relative;
    min-height: 100svh;
    width: min(1500px, 100%);
    margin: 0 auto;
    padding: clamp(42px, 7vw, 100px) clamp(22px, 5vw, 80px) 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-question {
    margin-top: clamp(5px, 1vw, 18px);
    font-family: "Montserrat Web", sans-serif;
    font-size: clamp(2.1rem, 4.3vw, 5.4rem);
    font-weight: 800;
    letter-spacing: -.055em;
    transform: scaleX(1.08);
    transform-origin: center;
    line-height: .95;
    text-align: center;
    transition: color 700ms var(--ease), transform 700ms var(--ease);
}

.choice-list {
    width: min(1180px, 100%);
    margin: clamp(85px, 11vh, 150px) auto 0;
    display: flex;
    flex-direction: column;
    gap: clamp(30px, 5vh, 64px);
}

.choice {
    position: relative;
    width: 100%;
    min-height: clamp(190px, 24vh, 290px);
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--ink);
    cursor: pointer;
    text-align: center;
    isolation: isolate;
    transition:
        transform 900ms var(--ease),
        opacity 900ms var(--ease),
        filter 900ms var(--ease);
}

.choice-word {
    display: block;
    font-family: "Polonium Web", sans-serif;
    font-size: clamp(5rem, 14vw, 14rem);
    font-weight: 400;
    line-height: .64;
    letter-spacing: -.07em;
    white-space: nowrap;
    transform: scaleX(.56);
    transform-origin: center center;
    opacity: .48;
    filter: blur(4px);
    user-select: none;
    transition:
        transform 900ms var(--ease),
        opacity 900ms var(--ease),
        filter 900ms var(--ease),
        text-shadow 900ms var(--ease);
}

.choice-label {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    width: max-content;
    transform: translate(-50%, -50%);
    font-family: "Simphonia Web", serif;
    font-size: clamp(2rem, 4.5vw, 5.2rem);
    line-height: .95;
    letter-spacing: -.035em;
    white-space: nowrap;
    transition:
        transform 900ms var(--ease),
        color 900ms var(--ease),
        text-shadow 900ms var(--ease);
}

.choice:hover {
    transform: scale(1.025);
}

.choice:hover .choice-word {
    opacity: .86;
    filter: blur(0);
    transform: scaleX(.60);
}

.choice:hover .choice-label {
    transform: translate(-50%, -50%) scale(1.045);
}

.hero:has(.choice-quest:hover) .orb-a,
.hero:has(.choice-quest:hover) .orb-b {
    opacity: .48;
    transform: scale(1.12) translate(2%, -2%);
    filter: blur(42px);
}

.hero:has(.choice-quest:hover) .orb-c,
.hero:has(.choice-quest:hover) .orb-d {
    opacity: .035;
}

.hero:has(.choice-cinema:hover) .orb-c,
.hero:has(.choice-cinema:hover) .orb-d {
    opacity: .48;
    transform: scale(1.12) translate(-2%, 2%);
    filter: blur(42px);
}

.hero:has(.choice-cinema:hover) .orb-a,
.hero:has(.choice-cinema:hover) .orb-b {
    opacity: .035;
}

.hero:has(.choice-quest:hover) .choice-cinema {
    transform: scale(.94);
    opacity: .56;
    filter: blur(1px);
}

.hero:has(.choice-cinema:hover) .choice-quest {
    transform: scale(.94);
    opacity: .56;
    filter: blur(1px);
}

.hero:has(.choice-quest:hover) .choice-quest .choice-word {
    color: #f4f3f5;
    text-shadow: 0 0 35px rgba(116, 69, 255, .4);
}

.hero:has(.choice-cinema:hover) .choice-cinema .choice-word {
    color: #f7f3f1;
    text-shadow: 0 0 35px rgba(255, 65, 75, .38);
}

.scroll-hint {
    position: absolute;
    right: clamp(24px, 5vw, 80px);
    bottom: clamp(30px, 5vh, 70px);
    display: flex;
    align-items: flex-end;
    gap: 14px;
    background: transparent;
    color: rgba(255,255,255,.82);
    cursor: pointer;
    text-align: right;
    transition: transform 600ms var(--ease), opacity 500ms ease;
}

.scroll-note {
    font-family: "Retrogression Web", cursive;
    font-size: clamp(1rem, 1.4vw, 1.45rem);
    line-height: .9;
}

.scroll-arrow {
    display: inline-block;
    font-size: clamp(2.4rem, 4vw, 4rem);
    line-height: .7;
    animation: arrowFloat 2s ease-in-out infinite;
}

.scroll-hint:hover {
    transform: translateY(-5px) rotate(-1deg);
}

/* ================= CONTENT ================= */

main {
    position: relative;
    background: #09090b;
}

.content-section {
    position: relative;
    isolation: isolate;
    width: min(1320px, 100%);
    margin: 0 auto;
    padding: clamp(110px, 14vw, 220px) clamp(20px, 5vw, 70px);
    color: rgba(255,255,255,.92);
    overflow: clip;
}

.quest-section,
.cinema-section {
    background: #09090b;
}

.quest-section::before,
.cinema-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        radial-gradient(circle at 10% 15%, rgba(72,45,155,.22), transparent 28%),
        radial-gradient(circle at 85% 55%, rgba(23,190,124,.14), transparent 30%),
        linear-gradient(180deg, rgba(4,4,7,.14), rgba(4,4,7,.48));
    mix-blend-mode: screen;
}


/* ================= SCROLLING SECTION PHOTOS ================= */

.section-photo-stage {
    position: absolute;
    top: 0;
    left: 50%;
    width: 100vw;
    height: auto;
    transform: translateX(-50%);
    z-index: 0;
    pointer-events: none;

    display: flex;
    flex-direction: column;

    overflow: visible;
}

.section-photo-stage::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    background:
        radial-gradient(circle at center, transparent 15%, rgba(0,0,0,.18) 70%, rgba(0,0,0,.55) 100%),
        linear-gradient(180deg, rgba(5,5,8,.34), rgba(5,5,8,.16) 35%, rgba(5,5,8,.58));
}

.section-photo {
    position: relative;

    width: 100%;
    aspect-ratio: 3 / 2;
    flex: 0 0 auto;

    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100% 100%;

    opacity: 0;
    will-change: transform, filter, opacity;
    transform: translate3d(0, 0, 0) scale(1.04);
    transition: opacity 1.15s cubic-bezier(.22, .8, .24, 1);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.section-photo.is-photo-visible {
    opacity: 1;
}

.section-photo-1 {
    background-image: url("img/backgrounds/quest-1.png");
}

.section-photo-2 {
    background-image: url("img/backgrounds/quest-2.png");
}

.section-photo-3 {
    background-image: url("img/backgrounds/quest-3.png");
}

.section-photo-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(7,7,10,.88) 0%, rgba(7,7,10,.48) 34%, rgba(7,7,10,.34) 66%, rgba(7,7,10,.72) 100%),
        linear-gradient(180deg, rgba(7,7,10,.68) 0%, rgba(7,7,10,.06) 28%, rgba(7,7,10,.68) 100%);
    mix-blend-mode: multiply;
}

.section-photo-noise {
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
    opacity: .09;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.72'/%3E%3C/svg%3E");
    mix-blend-mode: screen;
}

.cinema-photo-stage {
    position: absolute;
    top: 0;
    left: 50%;
    bottom: auto;

    width: 100vw;
    height: 100vh;

    transform: translateX(-50%);

    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

/* Мягко растворяем верхнюю и нижнюю границы фотографии кинотеатра. */
.cinema-photo-stage::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 5;
    pointer-events: none;
    background:
        linear-gradient(180deg,
            rgba(9,9,11,.96) 0%,
            rgba(9,9,11,.68) 6%,
            rgba(9,9,11,0) 16%,
            rgba(9,9,11,0) 84%,
            rgba(9,9,11,.68) 94%,
            rgba(9,9,11,.96) 100%);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    -webkit-mask-image: linear-gradient(180deg, black 0%, black 18%, transparent 28%, transparent 72%, black 82%, black 100%);
    mask-image: linear-gradient(180deg, black 0%, black 18%, transparent 28%, transparent 72%, black 82%, black 100%);
}

.cinema-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;

    background: url("img/backgrounds/cinema-1.png") center top / 100% auto no-repeat;

    transform: scale(1);
    filter: saturate(.86) contrast(1.06);
    opacity: 0;
    will-change: transform, filter, opacity;
    transition: opacity 1.25s cubic-bezier(.22, .8, .24, 1);
}

.cinema-photo.is-photo-visible {
    opacity: 1;
}

.cinema-photo-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(7,7,10,.9) 0%, rgba(7,7,10,.5) 40%, rgba(7,7,10,.48) 66%, rgba(7,7,10,.8) 100%),
        linear-gradient(180deg, rgba(7,7,10,.62), rgba(7,7,10,.14) 35%, rgba(7,7,10,.76));
}

.quest-section > :not(.section-photo-stage),
.cinema-section > :not(.section-photo-stage) {
    position: relative;
    z-index: 1;
}

.section-heading {
    max-width: 920px;
    margin-bottom: clamp(60px, 9vw, 120px);
}

.eyebrow {
    display: block;
    margin-bottom: 18px;
    color: rgba(255,255,255,.45);
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
}

.section-heading h1 {
    font-family: "Simphonia Web", sans-serif;
    font-size: clamp(4rem, 10vw, 10rem);
    font-weight: 400;
    line-height: .72;
    letter-spacing: -.06em;
}

.section-heading p {
    max-width: 700px;
    margin-top: 40px;
    color: rgba(255,255,255,.58);
    font-size: clamp(1rem, 1.4vw, 1.3rem);
}

.glass-grid,
.cinema-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.glass-card {
    position: relative;
    padding: clamp(28px, 4vw, 52px);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 28px;
    background: rgba(255,255,255,.055);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: inset 0 1px rgba(255,255,255,.08);
}

.glass-card:nth-child(even) {
    transform: translateY(70px);
}

.glass-card h2 {
    margin-bottom: 24px;
    font-family: "Simphonia Web", serif;
    font-size: clamp(2rem, 4vw, 3.7rem);
    font-weight: 400;
    line-height: .95;
}

.glass-card p {
    margin-bottom: 18px;
    color: rgba(255,255,255,.7);
}

.card-number {
    display: block;
    margin-bottom: 28px;
    color: rgba(255,255,255,.35);
    font-size: .75rem;
    letter-spacing: .2em;
}

.features-list {
    list-style: none;
}

.features-list li {
    padding: 16px 0 16px 20px;
    border-left: 1px solid rgba(116,69,255,.55);
    color: rgba(255,255,255,.7);
}

.info-stack {
    display: grid;
    gap: 22px;
}

.info-stack strong {
    color: #fff;
    font-size: 1.1rem;
}

.warning {
    color: #ff9b73 !important;
}

.booking {
    margin-top: clamp(100px, 12vw, 180px);
    padding: clamp(30px, 5vw, 65px);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 32px;
    background: rgba(255,255,255,.045);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.booking-copy h2 {
    font-family: "Polonium Web", sans-serif;
    font-size: clamp(3rem, 7vw, 7rem);
    font-weight: 400;
    line-height: .75;
}

.booking-copy p {
    margin: 28px 0 36px;
    color: rgba(255,255,255,.55);
}

.schedule-frame {
    width: 100%;
    height: 680px;
    border: 0;
    border-radius: 20px;
    background: #fff;
}

.extras {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    align-items: flex-end;
    margin-top: 70px;
    color: rgba(255,255,255,.5);
}

.extras p {
    max-width: 760px;
    margin-bottom: 8px;
}

.text-link {
    flex: 0 0 auto;
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,.35);
    padding-bottom: 5px;
}

.cinema-transition {
    min-height: 75vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    color: rgba(255,255,255,.8);
    background:
        radial-gradient(circle at 50% 50%, rgba(102,52,255,.22), transparent 38%),
        #09090b;
}

.transition-word {
    font-family: "Polonium Web", sans-serif;
    font-size: clamp(6rem, 24vw, 28rem);
    line-height: .55;
    opacity: .13;
    letter-spacing: -.09em;
}

.transition-word-small {
    font-size: clamp(4rem, 14vw, 16rem);
    opacity: .08;
}

.transition-line {
    width: min(500px, 55vw);
    height: 1px;
    margin: 50px 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.35), transparent);
}


.price-extra {
    margin-top: 34px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,.1);
}

.extra-title {
    display: block;
    margin-bottom: 16px;
    color: rgba(255,255,255,.9);
    font-family: "Simphonia Web", "Times New Roman", serif;
    font-size: 1.7rem;
    line-height: 1;
}

/* ================= REVIEWS WIDGET ================= */

.reviews-widget {
    margin-top: 24px;
    text-align: center;
}

.reviews-widget-inner {
    display: inline-block;
    padding: 5px;
    background: rgba(40,40,40,.9);
    border-radius: 6px;
    transition: transform .3s ease, filter .3s ease;
    transform: scale(.9);
    transform-origin: center;
}

.reviews-widget-inner:hover {
    transform: scale(.94);
    filter: brightness(1.08);
}

.reviews-widget img {
    max-width: 160px;
    height: auto;
    display: block;
}

/* ================= TELEGRAM ================= */

.telegram-btn {
    position: fixed;
    left: 24px;
    bottom: 24px;
    z-index: 50;
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 50%;
    background: rgba(18,18,22,.72);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 10px 35px rgba(0,0,0,.25);
    transition: transform 350ms var(--ease), box-shadow 350ms var(--ease);
}

.telegram-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 45px rgba(0,0,0,.35);
}

.telegram-btn svg {
    width: 25px;
    height: 25px;
    fill: white;
}

/* ================= REVEAL ================= */

.reveal {
    opacity: 0;
    transform: translateY(60px);
    filter: blur(9px);
    transition:
        opacity 900ms var(--ease),
        transform 900ms var(--ease),
        filter 900ms var(--ease);
}

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

/* ================= MOTION ================= */

@keyframes neutralDrift {
    0% { transform: translate3d(-1%, -1%, 0) scale(1); }
    100% { transform: translate3d(1%, 1%, 0) scale(1.04); }
}

@keyframes floatOrb {
    0% { transform: translate3d(-3%, -2%, 0) scale(.96); }
    100% { transform: translate3d(5%, 4%, 0) scale(1.08); }
}

@keyframes arrowFloat {
    0%, 100% { transform: translate(0,0); }
    50% { transform: translate(5px, 6px); }
}

/* ================= RESPONSIVE ================= */

@media (max-width: 800px) {
    .section-photo {
        inset: auto;
        aspect-ratio: auto;
        height: 72vh;
        min-height: 460px;
        background-size: cover;
        background-position: center center;
    }

    .quest-photo-stage {
        height: 216vh;
    }

    .cinema-photo-stage {
        height: 100svh;
        min-height: 0;
    }

    .cinema-photo {
        background-size: 100% auto;
        background-position: center top;
    }

    .section-photo-overlay {
        background:
            linear-gradient(90deg, rgba(7,7,10,.86), rgba(7,7,10,.42), rgba(7,7,10,.72)),
            linear-gradient(180deg, rgba(7,7,10,.7), rgba(7,7,10,.16) 35%, rgba(7,7,10,.76));
    }


    .hero-inner {
        padding-top: 60px;
    }

    .choice-list {
        margin-top: 100px;
        gap: 28px;
    }

    .choice {
        min-height: 145px;
    }

    .choice-word {
        font-size: clamp(4.2rem, 18vw, 8rem);
        line-height: .7;
    }

    .choice-label {
        font-size: clamp(1.45rem, 6vw, 2.8rem);
    }

    .scroll-hint {
        right: 20px;
        bottom: 25px;
    }

    .glass-grid,
    .cinema-grid {
        grid-template-columns: 1fr;
    }

    .glass-card:nth-child(even) {
        transform: none;
    }

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

    .schedule-frame {
        height: 560px;
    }
}

@media (max-width: 520px) {
    .section-photo {
        height: 64vh;
        min-height: 360px;
    }

    .quest-photo-stage {
        height: 192vh;
    }

    .hero-question {
        font-size: 2.1rem;
    }

    .choice-list {
        margin-top: 85px;
    }

    .choice {
        min-height: 115px;
    }

    .choice-word {
        font-size: 18vw;
    }

    .choice-label {
        font-size: 1.25rem;
    }

    .scroll-note {
        font-size: .9rem;
    }

    .scroll-arrow {
        font-size: 2.2rem;
    }

    .content-section {
        padding-top: 90px;
    }

    .section-heading h1 {
        font-size: 4.4rem;
    }

    .booking {
        padding: 24px 16px;
        border-radius: 22px;
    }

    .telegram-btn {
        width: 50px;
        height: 50px;
        left: 16px;
        bottom: 16px;
    }
}

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

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}

.old-price {
    text-decoration: line-through;
}
/* =========================
   CONTACTS / FOOTER INFO
   ========================= */

.contacts-section {
    position: relative;
    width: 100%;
    padding: 140px 32px 70px;
    background: #09090b;
    overflow: hidden;
}

.contacts-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 10%;
    width: 80%;
    height: 1px;
    background: rgba(255, 255, 255, 0.12);
}

.contacts-inner {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
}

.contacts-title {
    margin-bottom: 70px;
}

.contacts-title span {
    display: block;
    margin-bottom: 12px;

    font-family: "Inter", sans-serif;
    font-size: 13px;
    letter-spacing: 0.25em;
    text-transform: uppercase;

    color: rgba(255, 255, 255, 0.45);
}

.contacts-title h2 {
    margin: 0;

    font-family: "Polonium", sans-serif;
    font-size: clamp(48px, 6vw, 90px);
    line-height: 0.9;
    font-weight: 400;

    color: #f2f2f2;
}

.contacts-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2px;
    background: rgba(255, 255, 255, 0.08);
}

.contacts-block {
    min-height: 300px;
    padding: 38px 40px;

    background: rgba(15, 15, 17, 0.96);
}

.contacts-block h3 {
    margin: 0 0 28px;

    font-family: "Polonium", sans-serif;
    font-size: 30px;
    font-weight: 400;

    color: #f2f2f2;
}

.contacts-block p {
    margin: 0 0 18px;

    font-family: "Inter", sans-serif;
    font-weight: 200;
    font-size: 17px;
    line-height: 1.65;

    color: rgba(255, 255, 255, 0.65);
}

.contacts-work {
    margin-bottom: 30px !important;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 24px;
}

.contact-label {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 200;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.42);
}

.contact-item a {
    font-family: "Inter", sans-serif;
    font-size: 20px;
    font-weight: 300;
    color: #f2f2f2;
    text-decoration: none;

    transition:
        opacity 0.3s ease,
        letter-spacing 0.3s ease;
}

.contact-item a:hover {
    opacity: 0.65;
    letter-spacing: 0.02em;
}

.contact-methods {
    margin-top: 28px !important;
    font-size: 14px !important;
    color: rgba(255, 255, 255, 0.4) !important;
}

.address {
    font-size: 22px !important;
    color: #f2f2f2 !important;
}

.contacts-list {
    display: flex;
    flex-direction: column;
    gap: 16px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.contacts-list li {
    display: flex;
    justify-content: space-between;
    gap: 25px;

    padding-bottom: 14px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.07);

    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-weight: 200;

    color: rgba(255, 255, 255, 0.55);
}

.contacts-list li strong {
    font-weight: 300;
    text-align: right;
    color: rgba(255, 255, 255, 0.85);
}

.payment-methods {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;

    margin-top: 30px;
}

.payment-methods span {
    padding: 10px 18px;

    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;

    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 300;

    color: rgba(255, 255, 255, 0.75);
}

.contacts-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;

    margin-top: 45px;
    padding-top: 25px;

    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.contacts-bottom p {
    margin: 0;

    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 200;

    color: rgba(255, 255, 255, 0.35);
}

.contacts-bottom strong {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
}
@media (max-width: 700px) {

    .contacts-section {
        padding: 90px 18px 45px;
    }

    .contacts-title {
        margin-bottom: 45px;
    }

    .contacts-title h2 {
        font-size: 48px;
    }

    .contacts-grid {
        grid-template-columns: 1fr;
        gap: 1px;
    }

    .contacts-block {
        min-height: auto;
        padding: 30px 24px;
    }

    .contacts-block h3 {
        font-size: 26px;
        margin-bottom: 22px;
    }

    .contacts-block p {
        font-size: 15px;
        line-height: 1.55;
    }

    .contact-item a {
        font-size: 18px;
    }

    .contacts-list {
        gap: 14px;
    }

    .contacts-list li {
        flex-direction: column;
        gap: 5px;
    }

    .contacts-list li strong {
        text-align: left;
    }

    .contacts-bottom {
        flex-direction: column;
        gap: 5px;
        margin-top: 30px;
    }

}
/* =========================================
   WHAT INTERESTS YOU — TEXT WAVE
   ========================================= */

.interest-wave {
    position: relative;
    display: inline-block;

    white-space: nowrap;
    overflow: visible;

    cursor: default;

    font-family: "Montserrat Web", sans-serif;
    font-weight: 700;

    font-size: 32px;
    opacity: 0.8;
}

.interest-wave .wave-letter {
    display: inline-block;

    transform-origin: center bottom;

    will-change: transform;

    /* очень плавное движение букв */
    transition:
        transform 0.12s cubic-bezier(.22, .8, .24, 1);
}
/* =========================================
   QUEST PHOTO GALLERY
   ========================================= */

.quest-gallery-section {
    position: relative;

    width: 100%;
    max-width: 1280px;

    margin: 100px auto 120px;
    padding: 0 32px;
}


/* Заголовок */

.quest-gallery-title {
    margin-bottom: 35px;
}

.quest-gallery-title span {
    display: block;

    margin-bottom: 10px;

    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.2em;

    color: rgba(255, 255, 255, 0.38);
}

.quest-gallery-title h2 {
    margin: 0;

    font-family: "Polonium", sans-serif;
    font-size: clamp(36px, 4vw, 64px);
    font-weight: 400;
    line-height: 0.95;

    color: rgba(255, 255, 255, 0.88);
}


/* =========================================
   САМА ГАЛЕРЕЯ
   ========================================= */

.quest-gallery {
    position: relative;

    width: 100%;
    aspect-ratio: 16 / 9;

    overflow: hidden;

    border-radius: 28px;

    background: #09090b;

    border: 1px solid rgba(255, 255, 255, 0.12);

    box-shadow:
        0 25px 80px rgba(0, 0, 0, 0.35);
}


/* Лента фотографий */

.gallery-track {
    display: flex;

    width: 100%;
    height: 100%;

    overflow-x: auto;
    overflow-y: hidden;

    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;

    scrollbar-width: none;

    -webkit-overflow-scrolling: touch;
}

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


/* Отдельная фотография */

.gallery-slide {
    position: relative;

    flex: 0 0 100%;

    width: 100%;
    height: 100%;

    scroll-snap-align: center;

    overflow: hidden;
}

.gallery-slide img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    user-select: none;
    -webkit-user-drag: none;

    transition:
        transform 0.8s cubic-bezier(.22, .8, .24, 1),
        filter 0.8s ease;
}


/* Лёгкое затемнение */

.gallery-slide::after {
    content: "";

    position: absolute;

    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.05),
            rgba(0, 0, 0, 0.22)
        );
}


/* =========================================
   СТРЕЛКИ
   ========================================= */

.gallery-arrow {
    position: absolute;

    top: 50%;
    z-index: 5;

    width: 52px;
    height: 52px;

    transform: translateY(-50%);

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;

    background: rgba(10, 10, 12, 0.55);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    color: rgba(255, 255, 255, 0.8);

    font-family: Arial, sans-serif;
    font-size: 34px;
    font-weight: 200;

    cursor: pointer;

    transition:
        background 0.3s ease,
        transform 0.3s ease,
        color 0.3s ease;
}

.gallery-arrow:hover {
    background: rgba(20, 20, 22, 0.8);

    color: #fff;

    transform:
        translateY(-50%)
        scale(1.08);
}

.gallery-prev {
    left: 20px;
}

.gallery-next {
    right: 20px;
}


/* =========================================
   СЧЁТЧИК 1 / 3
   ========================================= */

.gallery-counter {
    position: absolute;

    left: 50%;
    bottom: 18px;

    z-index: 5;

    transform: translateX(-50%);

    display: flex;
    gap: 7px;

    padding: 7px 13px;

    border-radius: 20px;

    background: rgba(8, 8, 10, 0.58);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 300;

    color: rgba(255, 255, 255, 0.65);
}
@media (max-width: 700px) {

    .quest-gallery-section {
        margin: 70px auto 80px;
        padding: 0 18px;
    }

    .quest-gallery-title {
        margin-bottom: 24px;
    }

    .quest-gallery-title span {
        font-size: 10px;
    }

    .quest-gallery-title h2 {
        font-size: 34px;
        line-height: 1;
    }

    .quest-gallery {
        aspect-ratio: 4 / 3;
        border-radius: 20px;
    }

    .gallery-arrow {
        width: 42px;
        height: 42px;

        font-size: 28px;
    }

    .gallery-prev {
        left: 12px;
    }

    .gallery-next {
        right: 12px;
    }

    .gallery-counter {
        bottom: 12px;
    }
}
/* =========================================
   CINEMA PHOTO GALLERY
   ========================================= */

.cinema-gallery-section {
    position: relative;
    width: 100%;
    max-width: 1280px;

    margin: 100px auto 120px;
    padding: 0 32px;
}

.cinema-gallery-title {
    margin-bottom: 35px;
}

.cinema-gallery-title span {
    display: block;
    margin-bottom: 10px;

    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.2em;

    color: rgba(255, 255, 255, 0.38);
}

.cinema-gallery-title h2 {
    margin: 0;

    font-family: "Polonium", sans-serif;
    font-size: clamp(36px, 4vw, 64px);
    font-weight: 400;
    line-height: .95;

    color: rgba(255, 255, 255, .88);
}


/* Галерея */

.cinema-gallery {
    position: relative;

    width: 100%;
    aspect-ratio: 16 / 9;

    overflow: hidden;

    border-radius: 28px;

    background: #09090b;

    border: 1px solid rgba(255,255,255,.12);

    box-shadow:
        0 25px 80px rgba(0,0,0,.35);
}

.cinema-gallery-track {
    display: flex;

    width: 100%;
    height: 100%;

    overflow-x: auto;
    overflow-y: hidden;

    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;

    scrollbar-width: none;

    -webkit-overflow-scrolling: touch;
}

.cinema-gallery-track::-webkit-scrollbar {
    display: none;
}

.cinema-gallery-slide {
    position: relative;

    flex: 0 0 100%;

    width: 100%;
    height: 100%;

    scroll-snap-align: center;

    overflow: hidden;
}

.cinema-gallery-slide img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    user-select: none;
    -webkit-user-drag: none;
}

.cinema-gallery-slide::after {
    content: "";

    position: absolute;
    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            to bottom,
            rgba(0,0,0,.03),
            rgba(0,0,0,.22)
        );
}


/* Стрелки */

.cinema-gallery-arrow {
    position: absolute;

    top: 50%;
    z-index: 5;

    width: 52px;
    height: 52px;

    transform: translateY(-50%);

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    border: 1px solid rgba(255,255,255,.18);
    border-radius: 50%;

    background: rgba(10,10,12,.55);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    color: rgba(255,255,255,.8);

    font-size: 34px;
    font-weight: 200;

    cursor: pointer;

    transition:
        background .3s ease,
        transform .3s ease,
        color .3s ease;
}

.cinema-gallery-arrow:hover {
    background: rgba(20,20,22,.8);
    color: #fff;

    transform:
        translateY(-50%)
        scale(1.08);
}

.cinema-gallery-prev {
    left: 20px;
}

.cinema-gallery-next {
    right: 20px;
}


/* Счётчик */

.cinema-gallery-counter {
    position: absolute;

    left: 50%;
    bottom: 18px;

    z-index: 5;

    transform: translateX(-50%);

    display: flex;
    gap: 7px;

    padding: 7px 13px;

    border-radius: 20px;

    background: rgba(8,8,10,.58);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 300;

    color: rgba(255,255,255,.65);
}
@media (max-width: 700px) {

    .cinema-gallery-section {
        margin: 70px auto 80px;
        padding: 0 18px;
    }

    .cinema-gallery-title {
        margin-bottom: 24px;
    }

    .cinema-gallery-title span {
        font-size: 10px;
    }

    .cinema-gallery-title h2 {
        font-size: 34px;
        line-height: 1;
    }

    .cinema-gallery {
        aspect-ratio: 4 / 3;
        border-radius: 20px;
    }

    .cinema-gallery-arrow {
        width: 42px;
        height: 42px;
        font-size: 28px;
    }

    .cinema-gallery-prev {
        left: 12px;
    }

    .cinema-gallery-next {
        right: 12px;
    }

    .cinema-gallery-counter {
        bottom: 12px;
    }
}