@font-face {
    font-family: 'Essonnes Display';
    src: url('./assets/fonts/EssonnesDisplay-Regular.eot');
    src: local('./assets/fonts/Essonnes Text'), local('EssonnesText-Regular'),
    url('./assets/fonts/EssonnesDisplay-Regular.eot?#iefix') format('embedded-opentype'),
    url('./assets/fonts/EssonnesDisplay-Regular.woff2') format('woff2'),
    url('./assets/fonts/EssonnesDisplay-Regular.woff') format('woff'),
    url('./assets/fonts/EssonnesDisplay-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Agenda One';
    src: url('./assets/fonts/AgendaOne-Light.eot');
    src: url('./assets/fonts/AgendaOne-Light.eot?#iefix') format('embedded-opentype'),
    url('./assets/fonts/AgendaOne-Light.woff2') format('woff2'),
    url('./assets/fonts/AgendaOne-Light.woff') format('woff'),
    url('./assets/fonts/AgendaOne-Light.ttf') format('truetype'),
    url('./assets/fonts/AgendaOne-Light.svg#AgendaOne-Light') format('svg');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Agenda One';
    src: url('./assets/fonts/AgendaOne-Medium.eot');
    src: url('./assets/fonts/AgendaOne-Medium.eot?#iefix') format('embedded-opentype'),
    url('./assets/fonts/AgendaOne-Medium.woff2') format('woff2'),
    url('./assets/fonts/AgendaOne-Medium.woff') format('woff'),
    url('./assets/fonts/AgendaOne-Medium.ttf') format('truetype'),
    url('./assets/fonts/AgendaOne-Medium.svg#AgendaOne-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Agenda One';
    src: url('./assets/fonts/AgendaOne-Regular.eot');
    src: url('./assets/fonts/AgendaOne-Regular.eot?#iefix') format('embedded-opentype'),
    url('./assets/fonts/AgendaOne-Regular.woff2') format('woff2'),
    url('./assets/fonts/AgendaOne-Regular.woff') format('woff'),
    url('./assets/fonts/AgendaOne-Regular.ttf') format('truetype'),
    url('./assets/fonts/AgendaOne-Regular.svg#AgendaOne-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
/* style.css */
:root {
    --border-secondary-button: linear-gradient(87deg, #999 -3.47%, #333 155.08%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #040404;
    color: #fff;
    font-family: 'Agenda One', sans-serif;
    font-weight: 400;
    line-height: 1.15;
    overflow-x: hidden;
}

img {
    display: flex;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    position: relative;
    width: 100%;
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 20px;
}


section {
    overflow: hidden;
}

.section-btn {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    font-weight: 500;
    font-size: 28px;
    line-height: 100%;
    letter-spacing: .84px;
    color: #ffffff;
    padding: 18px 10px;
    width: max-content;
    margin: 0 auto;
    border-bottom: 1px solid #FFFFFF;
    transition: color .25s ease-in, border-bottom-color .25s ease-in;
}

.section-btn svg {
    stroke: #FFFFFF;
    transition: stroke .25s ease-in;
}

.section-btn:hover {
    color: #d82134;
    border-bottom-color: #d82134;
}

.section-btn:hover svg {
    stroke: #d82134;
}
/* HEADER */
.header {
    position: relative;
    width: 100%;
    padding-block: 20px 60px;
    background: rgba(0,0,0,.7);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255,255,255,.08);
    z-index: 20;
}

.header--transparent {
    position: absolute;
    background: transparent;
    backdrop-filter: none;
    border: none;
    z-index: 3;
}

.header__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    position: relative;
    width: 100%;
    max-width: 290px;
    z-index: 10;
}

.nav {
    display: flex;
    flex-flow: column;
    flex: 1 1 auto;
    min-height: 0;
    gap: 24px;
    padding-left: 27px;
    border-left: 1px solid rgba(153, 153, 153, .24);
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: none;
}

.nav::-webkit-scrollbar {
    display: none;
}

.nav__list {
    display: flex;
    flex-flow: column;
    gap: 24px;
}

.nav li {
    list-style-type: none;
}

.nav a {
    color: #FFF;
    font-family: "Essonnes Display";
    font-size: 56px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 3.36px;
    text-transform: capitalize;
    transition: color .35s ease, text-shadow .35s ease;
}

.nav a:hover {
    color: #d31735;
    text-shadow:
            0 0 10px rgba(211, 23, 53,.35),
            0 0 25px rgba(211, 23, 53,.15);
}
/* BURGER */
.burger {
    position: relative;
    display: flex;
    align-items: center;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 16px;
    margin-right: 72px;
    z-index: 10;
}

.burger:focus-within {
    outline: none;
}

.burger__icon {
    display: inline-flex;
    flex-flow: column;
    justify-content: space-between;
    padding: 14px 10px;
    width: 48px;
    height: 48px;
}

.burger__line,
.burger__icon::after {
    width: 100%;
    height: 3px;
    background: #fff;
    border-radius: 5px;
    transition: .3s;
}

.burger__icon::before {
    width: 18px;
    height: 3px;
    background: #fff;
    border-radius: 5px;
    transition: .25s ease-in;
}

.burger__icon::before,
.burger__icon::after {
    content: '';
}

.burger.active .burger__icon::before {
    transform: rotate(45deg) translate(6px, 6px);
    width: 100%;
}

.burger.active .burger__line {
    opacity: 0;
}

.burger.active .burger__icon::after {
    transform: rotate(-45deg) translate(6px, -6px);
}

.burger__text {
    color: #FFF;
    font-size: 24px;
    font-weight: 500;
    letter-spacing: .72px;
    text-transform: uppercase;
}
/* BURGER END */
/* MENU START */
.menu {
    position: fixed;
    inset: 0;
    display: flex;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    min-height: 100vh;
    padding: 203px 144px 53px 144px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 35px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    overflow: hidden;
    transition:
            opacity .25s ease,
            visibility .25s ease;
    background: url('./assets/images/header/background.png') no-repeat center/cover, #000;
    background: image-set(url("assets/optimized/images/header/background.png.webp") type("image/webp"), url("./assets/images/header/background.png") type("image/png")) no-repeat center/cover, #000;
}

body.woocommerce-cart .darling-cart {
    width: auto;
    max-width: none;
    margin-left: -20px;
    margin-right: -20px;
}

.menu.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

html:has(.menu.active),
body:has(.menu.active) {
    overflow: hidden;
}

.menu__footer {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    padding-top: 16px;
    border-top: 1px solid #fff;
}

.menu__socials {
    display: flex;
    align-items: center;
    gap: 18px;
}

.menu__social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
}

.menu__social svg {
    width: 34px;
    height: 34px;
    fill: #fff;
    transition: fill .25s ease-in;
}

.menu__social:hover svg {
    fill: #D82134;
}

/* Height-responsive burger composition for desktop viewports. */
@media (min-width: 1200px) {
    .menu {
        padding-top: clamp(104px, 18.8dvh, 203px);
        padding-bottom: clamp(28px, 4.9dvh, 53px);
        gap: clamp(18px, 3.2dvh, 35px);
    }

    .nav__list {
        gap: clamp(8px, 2.2dvh, 24px);
    }

    .nav a {
        font-size: clamp(34px, 5.2dvh, 56px);
        line-height: 1.15;
    }
}

@media (min-width: 1200px) and (max-height: 850px) {
    .menu {
        padding-top: clamp(118px, 18.8dvh, 160px);
        padding-bottom: clamp(30px, 4.9dvh, 42px);
        gap: clamp(20px, 3.2dvh, 27px);
    }

    .nav__list {
        gap: clamp(12px, 2.2dvh, 18px);
    }

    .nav a {
        font-size: clamp(36px, 5.2dvh, 44px);
    }
}

@media (min-width: 1200px) and (max-height: 750px) {
    .menu {
        padding-top: clamp(104px, 18.8dvh, 135px);
        padding-bottom: clamp(26px, 4.9dvh, 36px);
        gap: clamp(17px, 3.2dvh, 24px);
    }

    .nav__list {
        gap: clamp(9px, 2.2dvh, 16px);
    }

    .nav a {
        font-size: clamp(34px, 5.2dvh, 39px);
    }

    .menu__footer {
        padding-top: 12px;
    }
}

@media (min-width: 1200px) and (max-height: 650px) {
    .menu {
        padding-top: clamp(88px, 17dvh, 110px);
        padding-bottom: clamp(20px, 4dvh, 26px);
        gap: clamp(14px, 2.8dvh, 18px);
    }

    .nav__list {
        gap: clamp(7px, 1.8dvh, 12px);
    }

    .nav a {
        font-size: clamp(32px, 5.2dvh, 34px);
    }

    .menu__footer {
        padding-top: 10px;
    }
}
/* MENU END */
/* HERO START */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 100vh;
    min-height: 100svh;
    isolation: isolate;
    background: #070713;
    overflow: hidden;
}

.hero__media {
    position: absolute;
    inset: 0;
    z-index: -4;
    overflow: hidden;
    background: #080914;
}

.hero__video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__video--ambient {
    position: absolute;
    inset: -5%;
    width: 110%;
    height: 110%;
    filter: blur(22px) saturate(.88) brightness(.62);
    transform: scale(1.06);
    opacity: .78;
}

.hero__media-shade {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(4,5,20,.98) 0%, rgba(6,7,26,.93) 33%, rgba(8,8,28,.50) 56%, rgba(8,7,21,.12) 100%),
        radial-gradient(circle at 73% 39%, rgba(60,24,145,.22), transparent 38%),
        linear-gradient(180deg, rgba(0,0,0,.12) 0%, rgba(0,0,0,.03) 58%, rgba(0,0,0,.34) 100%);
}

.hero__focus-wrap {
    position: absolute;
    top: 0;
    right: 0;
    width: 47%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.18) 8%, #000 28%, #000 100%);
    mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.18) 8%, #000 28%, #000 100%);
}

.hero__video--focus {
    object-position: 50% 22%;
    filter: saturate(1.10) contrast(1.10) brightness(.99);
}

.hero__overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background:
        radial-gradient(ellipse at 24% 50%, rgba(3,4,18,.05) 0%, rgba(3,4,18,.16) 40%, transparent 68%),
        linear-gradient(180deg, rgba(2,3,13,.25) 0%, transparent 20%, transparent 78%, rgba(2,2,8,.55) 100%);
}

.hero__container {
    width: 100%;
    padding-top: 138px;
    padding-bottom: 94px;
}

.hero__content {
    position: relative;
    z-index: 2;
    width: min(620px, 47vw);
    margin-left: 24px;
}

.hero__title {
    max-width: 610px;
    margin: 0 0 20px;
    color: #f6f1e8;
    font-family: "Essonnes Display", serif;
    font-size: clamp(56px, 5.1vw, 84px);
    font-weight: 400;
    line-height: .96;
    letter-spacing: -.025em;
    text-transform: none;
}

.hero__title-accent {
    color: #d82134;
}

.hero__rating {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-height: 48px;
    margin-bottom: 24px;
    padding: 10px 16px;
    border: 1px solid rgba(201,184,161,.34);
    border-radius: 12px;
    background: rgba(8,7,16,.36);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
    backdrop-filter: blur(7px);
    color: rgba(255,255,255,.72);
    font-size: 14px;
    white-space: nowrap;
}

.hero__rating-google {
    display: grid;
    place-items: center;
    width: 26px;
    height: 26px;
    border: 2px solid rgba(255,255,255,.9);
    border-radius: 50%;
    color: #fff;
    font-family: Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
}

.hero__rating-name,
.hero__rating strong {
    color: #fff;
    font-weight: 500;
}

.hero__rating-divider {
    width: 1px;
    height: 22px;
    background: rgba(255,255,255,.20);
}

.hero__rating-star {
    color: #d9b75f;
    font-size: 16px;
}

.hero__perks {
    display: flex;
    align-items: center;
    gap: 28px;
}

.hero__perk {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    white-space: nowrap;
}

.hero__perk svg {
    width: 22px;
    height: 22px;
}

.hero__scroll {
    position: absolute;
    left: 50%;
    bottom: 18px;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translateX(-50%);
}
/* HERO END */
/* BTN START */
.btn-red {
    position: relative;
    display: inline-flex;
    padding: 20px 54px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #FFF;
    font-size: 28px;
    font-weight: 500;
    letter-spacing: .84px;
    border-radius: 3px;
    border: 1px solid #D82134;
    background: linear-gradient(145deg, #D82134 20.57%, #72111B 79.53%);
    transition:
            transform .25s ease,
            box-shadow .25s ease,
            filter .25s ease,
            border-color .25s ease;
    overflow: hidden;
}

.btn-red::before {
    content: '';
    position: absolute;
    top: -130%;
    left: -60%;
    width: 45%;
    height: 320%;
    background: linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.38),
            transparent
    );
    transform: rotate(24deg);
    transition: left .7s ease;
}

.btn-red::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(
            circle at center,
            rgba(255, 70, 90, 0.35) 0%,
            transparent 70%
    );
    opacity: 0;
    transition: opacity .3s ease;
}

.btn-red:hover {
    transform: translateY(-4px) scale(1.02);
    filter: brightness(1.08);
    border-color: #ff4b5f;
    box-shadow:
            0 14px 30px rgba(216, 33, 52, 0.45),
            0 0 24px rgba(216, 33, 52, 0.35);
}

.btn-red:hover::before {
    left: 140%;
}

.btn-red:hover::after {
    opacity: 1;
}

.btn-red:active {
    transform: translateY(1px) scale(.985);
    box-shadow: 0 5px 12px rgba(216, 33, 52, .28);
}

.btn-border {
    position: relative;
    display: flex;
    padding: 24px 44px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #FFF;
    font-size: 24px;
    font-weight: 500;
    letter-spacing: .72px;
    border-radius: 3px;
    border: 1px solid transparent;
    border-image: var(--border-secondary-button);
    border-image-slice: 1;
    overflow: hidden;
    cursor: pointer;
    transition:
            transform .3s ease,
            box-shadow .3s ease,
            /*border-color .3s ease,*/
            background .3s ease,
            color .3s ease;
}

.btn-border--header {
    position: relative;
    padding: 12px 24px;
    z-index: 10;
}

.btn-border::before {
    content: '';
    position: absolute;
    top: -120%;
    left: -70%;
    width: 45%;
    height: 320%;
    background: linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.45),
            transparent
    );
    transform: rotate(25deg);
    transition: left .75s ease;
}

.btn-border::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(
            circle at center,
            rgba(255,255,255,.18) 0%,
            transparent 72%
    );
    opacity: 0;
    transition: opacity .35s ease;
}

.btn-border:hover {
    transform: translateY(-4px);
    border-color: #FFF;
    background: rgba(255,255,255,.09);
    box-shadow:
            0 10px 24px rgba(255,255,255,.12),
            0 0 18px rgba(255,255,255,.08);
}

.btn-border:hover::before {
    left: 140%;
}

.btn-border:hover::after {
    opacity: 1;
}

.btn-border:active {
    transform: translateY(1px) scale(.98);
    box-shadow: 0 4px 10px rgba(255,255,255,.08);
}
/* BTN END */
/* LINE START */
.line {
    width: 100%;
    margin-top: -47px;
    margin-bottom: 150px;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.line__track {
    display: flex;
    width: max-content;
    animation: marquee 22s linear infinite;
}

.line__list {
    display: flex;
    justify-content: space-between;
    gap: 36px;
    list-style-type: none;
    padding-inline: 30px;
}

.line__li {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    gap: 12px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.90);
    font-family: "Essonnes Display";
    font-size: 24px;
    letter-spacing: .72px;
}

.line__li::after {
    content: '';
    width: 1px;
    height: 43px;
    background: #fff;
    opacity: .2;
    margin-left: 24px;
}

.line__li svg {
    flex: 0 0 auto;
    width: 28px;
    height: 38px;
    aspect-ratio: 28/38;
}
/* LINE END */
/* HEADING START */
.heading {
    margin-bottom: 30px;
}

.heading__subtitle {
    position: relative;
    display: inline-flex;
    color: #D82134;
    font-size: 24px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: .72px;
    padding-left: 36px;
    margin-bottom: 45px;
}

.heading__subtitle--double {
    padding-right: 36px;
}

.heading__subtitle--double::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    height: 1px;
    width: 28px;
}

.heading__subtitle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    height: 1px;
    width: 28px;
    background: #D82134;
}

.heading__title {
    display: flex;
    flex-flow: column;
    color: #FFF;
    font-family: "Essonnes Display";
    font-weight: 400;
    font-size: 113px;
    letter-spacing: 6.774px;
    margin-bottom: 45px;
}

.heading__title mark {
    color: #d82134;
    background: transparent;
}

.heading__text {
    color: #FFF;
    font-size: 28px;
    max-width: 520px;
}
/* HEADING END */
/* TONIGHT START */
.tonight {
    position: relative;
    padding-block: 70px 135px;
    margin-bottom: 135px;
}

.tonight:where(html:not(.darling-media-scheduling) *, body:not(.home) *, [data-media-ready], [data-media-ready] *) {
    background: url('./assets/images/tonight/section-bg.jpg') no-repeat center/cover;
}

.tonight::before {
    content: '';
    position: absolute;
    top: -40px;
    left: 50%;
    width: 100%;
    min-width: 1728px;
    height: 241px;
    transform: translateX(-50%);
    z-index: 0;
}

.tonight:where(html:not(.darling-media-scheduling) *, body:not(.home) *, [data-media-ready], [data-media-ready] *)::before {
    background: url('./assets/images/tonight/shadow-top.png') no-repeat center/cover;
    background: image-set(url("assets/optimized/images/tonight/shadow-top.png.webp") type("image/webp"), url("./assets/images/tonight/shadow-top.png") type("image/png")) no-repeat center/cover;
}

.tonight__wrap {
    display: grid;
    grid-template: 'title schedule' auto
                    'mark schedule' auto
                    'actions schedule' auto
                    / minmax(415px, 1fr) minmax(50%, 845px);
    justify-content: space-between;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.tonight__wrap .heading {
    position: relative;
    grid-area: title;
    margin: 0;
}

.tonight__wrap .heading::before {
    content: '';
    position: absolute;
    top: 37px;
    left: -64px;
    width: 671px;
    height: 652px;
    border-radius: 50%;
    background: rgba(0, 0, 0, .6);
    filter: blur(138px);
    z-index: -1;
}

.tonight .heading__subtitle::after {
    background: #D82134;
}

.tonight .heading__subtitle--double::after {
    opacity: 0;
}

.tonight__mark {
    grid-area: mark;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 10px;
}

.tonight__mark img {
    width: 37px;
}

.tonight__mark span {
    color: #FFF;
    font-size: 28px;
}

.tonight__actions {
    grid-area: actions;
    display: flex;
    flex-flow: column;
    align-items: flex-start;
    gap: 30px;
}

.tonight__more {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #FFF;
    font-size: 28px;
    letter-spacing: .84px;
    transition: color .25s ease-in;
}

.tonight__more:hover {
    color: #D82134;
}

.tonight__more svg {
    width: 18px;
    height: 10px;
    stroke: #fff;
    transition: stroke .25s ease-in;
}

.tonight__more:hover svg {
    stroke: #D82134;
}
/* TONIGHT END */
/* SCHEDULE START */
.schedule {
    grid-area: schedule;
    position: relative;
    display: flex;
    flex-flow: column;
    gap: 18px;
    list-style-type: none;
    padding-left: 80px;
}

.schedule::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 12px;
    width: 1px;
    height: 640px;
    background: #D82134;
}

.schedule-card {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.06);
    transition: transform .25s ease-in;
}

.schedule-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -76px;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    transform: translateY(-50%);
    background: linear-gradient(183deg, #D82134 31.58%, #72111B 97.37%);
    box-shadow: 0 1px 1.8px 0 rgba(255, 255, 255, 0.12) inset;
    filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.25));
}

.schedule-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 50px rgba(170,0,40,.18);
}

.schedule-card__time {
    color: #FFF;
    font-size: 28px;
    padding: 24px 20px 24px 24px;
    border-right: 1px solid rgba(216, 33, 52, 0.40);
}

.schedule-card__content {
    max-width: 340px;
}

.schedule-card__content h3 {
    color: #FFF;
    font-family: "Essonnes Display";
    font-size: 28px;
    letter-spacing: .84px;
    margin-bottom: 12px;
}

.schedule-card__content p {
    color: #FFF;
    font-size: 20px;
}

.schedule-card picture {
    display: flex;
    width: 270px;
    height: 143px;
    border-radius: 0 6px 6px 0;
    overflow: hidden;
}
/* SCHEDULE END */
/* ABOUT START */
.about {
    padding-block: 80px;
    margin-bottom: 250px;
}

.about:where(html:not(.darling-media-scheduling) *, body:not(.home) *, [data-media-ready], [data-media-ready] *) {
    background: url('./assets/images/about/section-bg.png') no-repeat center/cover;
}

.about .heading__title {
    flex-flow: row;
    justify-content: center;
    gap: 17px;
    margin-bottom: 24px;
}

.about .heading__text {
    max-width: 100%;
    text-align: center;
}

.about__grid {
    display: grid;
    grid-template-rows: 75px 151px 87px 75px 336px;
    grid-template-columns: repeat(6, minmax(199px, 234px));
    gap: 12px;
}

.about__card {
    height: 336px;
    border-radius: 6px;
    box-shadow:
            0 0 14.933px 0 rgba(255, 255, 255, .08),
            0 2.133px 14.933px 0 rgba(255, 255, 255, .08) inset;
    overflow: hidden;
}

.about__card:where(html:not(.darling-media-scheduling) *, body:not(.home) *, [data-media-ready], [data-media-ready] *) {
    background: url('./assets/images/about/card-bg.png') no-repeat center/cover, rgba(0, 0, 0, .2);
}

.about__card--1 {
    grid-area: 2 / 1 / span 1;
}

.about__card--2 {
    grid-area: 3 / 2 / span 1;
}

.about__card--3 {
    grid-area: 2 / 3 / span 1;
}

.about__card--4 {
    grid-area: 5 / 3 / span 1;
}

.about__card--5 {
    grid-area: 1 / 4 / span 1;
}

.about__card--6 {
    grid-area: 4 / 4 / span 1;
}

.about__card--7 {
    grid-area: 2 / 5 / span 1;
}

.about__card--8 {
    grid-area: 3 / 6 / span 1;
}

.about__wrapper {
    display: flex;
    flex-flow: column;
    height: 100%;
    justify-content: space-between;
    padding: 42px 15px 38px;
}

.about__icon {
    width: 46px;
    margin: 0 auto;
    margin-bottom: 18px;
}

.about__picture {
    width: 100%;
    height: 100%;
}

.about__picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about__count {
    display: flex;
    flex-flow: column;
    color: #fff;
    text-align: center;
    font-family: "Agenda One";
    font-size: 96px;
    line-height: 76px;
    font-style: normal;
    font-weight: 400;
}

.about__count span {
    color: #FFF;
    font-family: "Essonnes Display";
    font-size: 46px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.about__title {
    color: #FFF;
    text-align: center;
    font-family: "Agenda One";
    font-size: 25px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
/* ABOUT END */
/* WHY START */
.why-section {
    padding-block: 115px;
    margin-bottom: 150px;
}

.why-section:where(html:not(.darling-media-scheduling) *, body:not(.home) *, [data-media-ready], [data-media-ready] *) {
    background: url('./assets/images/why/section-bg.png') no-repeat center/cover;
    background: image-set(url("assets/optimized/images/why/section-bg.png.webp") type("image/webp"), url("./assets/images/why/section-bg.png") type("image/png")) no-repeat center/cover;
}

.why-section .heading {
    text-align: center;
    margin-bottom: 60px;
}

.why-section .heading__subtitle {
    padding-right: 36px;
    margin-bottom: 30px;
}

.why-section .heading__subtitle::after {
    background: #D82134;
}

.why-section .heading__title {
    flex-flow: row;
    justify-content: center;
    gap: 28px;
    margin-bottom: 36px;
}

.why-section .heading__text {
    max-width: 100%;
}
/* WHY END */
/* FEATURE START */
.features {
    position: relative;
    overflow-x: auto;
}

.features__wrap {
    position: relative;
    display: flex;
    gap: 12px;
    width: 1440px;
}

.features__item {
    position: relative;
    display: flex;
    height: 660px;
    width: calc(20% - 10px);
    transition: width .5s ease-in;
    cursor: pointer;
}

.features__item::before {
    content: '';
    position: absolute;
    bottom: 0;
    height: 220px;
    width: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 85.91%);
    z-index: 2;
}

.features__item:hover,
.features__item.active {
    width: 364px;
    border: 2px solid;
    border-image-source: radial-gradient(92.88% 50% at 50% 50%, #EC2237 0%, #3E0C11 100%);
    border-image-slice: 1;
    box-shadow: 0 0 23px 0 rgba(255, 255, 255, .1), 0 0 24px 0 rgba(216, 33, 52, .16);
}

.features__item:hover figure::before,
.features__item.active figure::before {
    opacity: 0;
}

.features__item figure {
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: cover;
    z-index: 0;
}

.features__item figure::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, .3) 0%, rgba(0, 0, 0, .3) 100%);
    transition: opacity .5s ease-in;
    z-index: 1;
}

.features__content {
    position: relative;
    display: flex;
    flex-flow: column;
    align-items: center;
    padding: 16px;
    margin-top: auto;
    width: 100%;
    z-index: 3;
}

.features__content h3 {
    display: flex;
    flex-flow: column;
    color: #FFF;
    text-align: center;
    font-family: "Essonnes Display";
    font-size: 28px;
    letter-spacing: .84px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.features__content span {
    color: #FFF;
    text-align: center;
    font-size: 18px;
    font-weight: 300;
    letter-spacing: .54px;
}
/* FEATURE END */
/* PACKAGES START */
.packages-section {
    padding-block: 300px 85px;
}

.packages-section:where(html:not(.darling-media-scheduling) *, body:not(.home) *, [data-media-ready], [data-media-ready] *) {
    background: url('./assets/images/packages/section-bg.png') no-repeat center/cover;
    background: image-set(url("assets/optimized/images/packages/section-bg.png.webp") type("image/webp"), url("./assets/images/packages/section-bg.png") type("image/png")) no-repeat center/cover;
}

.packages-section__wrap {
    position: relative;
    z-index: 1;
}

.packages-section .heading {
    text-align: center;
    margin-bottom: 55px;
}

.packages-section .heading__subtitle::before,
.packages-section .heading__subtitle::after {
    background: #fff;
}

.packages-section .heading__title {
    margin-bottom: 35px;
}

.packages-section .heading__subtitle {
    color: #ffffff;
    margin-bottom: 35px;
}

.packages-section .heading__text {
    max-width: 660px;
    margin: 0 auto;
}

.packages {
    display: flex;
    flex-flow: column;
    align-items: center;
    gap: 30px;
}

.packages__slider {
    mask:
            radial-gradient(ellipse 60% 35px at 50% 0, transparent 0, transparent 99%, #000 100%),
            radial-gradient(ellipse 60% 15px at 50% 100%, transparent 0, transparent 99%, #000 100%);
    -webkit-mask:
            radial-gradient(ellipse 60% 38px at 50% 0, transparent 0, transparent 99%, #000 100%),
            radial-gradient(ellipse 60% 15px at 50% 100%, transparent 0, transparent 99%, #000 100%);
    mask-composite: intersect;
}

.package-card {
    position: relative;
    display: flex;
    max-width: 460px;
    border-radius: 3px;
    box-shadow: 0 3px 3px 0 rgba(0, 0, 0, .25);
    transition: transform .25s ease-in;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(170,0,40,.2);
}

.package-card img {
    height: 515px;
    object-fit: cover;
}

.package-card__body {
    display: flex;
    position: absolute;
    left: 50%;
    bottom: 18px;
    width: 374px;
    padding: 20px;
    flex-direction: column;
    align-items: center;
    border-radius: 3px;
    transform: translateX(-50%);
    backdrop-filter: blur(6px);
    background: #F0F0F00D;
}

.package-card__link-title:hover h3 {
    color: #d82134;
}

.package-card__body h3 {
    color: #FBFBFB;
    text-shadow: 0 0 5px rgba(0, 0, 0, .12);
    font-family: "Essonnes Display";
    font-size: 24px;
    text-transform: uppercase;
    margin-bottom: 10px;
    transition: color .25s ease-in;
}

.package-card__body span {
    color: #FFF;
    text-align: center;
    font-family: "Essonnes Display";
    font-size: 26px;
    margin-bottom: 15px;
}

.package-card__link {
    position: relative;
    display: flex;
    width: 100%;
    max-width: 220px;
    padding: 9px 15px 10px;
    border: none;
    color: #FFF;
    font-size: 20px;
    font-family: inherit;
    font-weight: 500;
    letter-spacing: .6px;
    text-transform: uppercase;
    justify-content: center;
    border-radius: 3px;
    background: radial-gradient(63.64% 517.66% at 50% 50%, #D82134 0%, #570D15 100%);
    transition:
            transform .25s ease,
            box-shadow .25s ease,
            filter .25s ease;
    overflow: hidden;
    cursor: pointer;
}

.package-card__link::before {
    content: '';
    position: absolute;
    top: -120%;
    left: -70%;
    width: 60%;
    height: 300%;
    background: linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,0.35),
            transparent
    );
    transform: rotate(25deg);
    transition: left .6s ease;
}

.package-card__link:hover {
    transform: translateY(-3px) scale(1.02);
    filter: brightness(1.08);
    box-shadow: 0 10px 24px rgba(216, 33, 52, .45), 0 0 18px rgba(216, 33, 52, .35);
}

.package-card__link:hover::before {
    left: 120%;
}

.package-card__link:active {
    transform: translateY(1px) scale(.99);
    box-shadow: 0 4px 10px rgba(216, 33, 52, .25);
}
/* PACKAGES END */
/* SLIDER START */
.swiper {
    width: 100%;
    overflow: hidden;
}

.swiper-wrapper {
    display: flex;
    gap: 30px;
}

.swiper-slide {
    flex-shrink: 0;
}

.swiper-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    grid-area: 2 / 2 / 3;
    margin-bottom: 24px;
}

.swiper-controls .swiper-button-prev,
.swiper-controls .swiper-button-next {
    position: static;
    display: inline-flex;
    align-items: center;
    margin: 0;
    width: 24px;
    height: 24px;
    background: transparent;
    border: none;
}

.swiper-button-prev svg,
.swiper-button-next svg {
    width: 16px;
    stroke: #fff;
    fill: none;
    transition: stroke .25s ease-in;
}

.swiper-button-prev:hover svg,
.swiper-button-next:hover svg {
    width: 16px;
    stroke: #d82134;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    display: none;
}

.swiper-pagination-bullets.swiper-pagination-horizontal {
    position: static;
    width: auto;
    display: flex;
    align-items: center;
    gap: 7px;
}

.swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    margin: 0;
    background: #8B8B8B;
    transition: background .25s ease;
}

.swiper-pagination-bullet-active {
    background: #fff;
    box-shadow: 0 0 12px rgba(216, 33, 52, .6);
}
/* SLIDER END */
/* PRICE START */
.price {
    position: relative;
    padding-block: 220px 65px;
    margin-block-end: 230px;
}

.price:where(html:not(.darling-media-scheduling) *, body:not(.home) *, [data-media-ready], [data-media-ready] *) {
    background: url('./assets/images/price/section-bg.png') no-repeat center/cover;
    background: image-set(url("assets/optimized/images/price/section-bg.png.webp") type("image/webp"), url("./assets/images/price/section-bg.png") type("image/png")) no-repeat center/cover;
}

.price::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 105px;
    background: linear-gradient(192deg, #000000 37%, rgba(0, 0, 0, 0) 84%);
    z-index: 0;
}

.price .heading {
    margin-bottom: 40px;
}

.price .heading__subtitle {
    padding-right: 36px;
    margin-bottom: 35px;
}

.price .heading__subtitle::after {
    background: #D82134;
}

.price .heading__subtitle--double::after {
    opacity: 0;
}

.price .heading__title {
    font-size: 100px;
    margin-bottom: 24px;
}

.price .heading__text {
    max-width: 800px;
}

.price__grid {
    display: grid;
    grid-template: 'item-1 item-3' 400px
                    'item-2 item-3' 400px
                    / 1fr 1fr;
    gap: 24px;
    margin-bottom: 40px;
}

.price__item {
    display: block;
    position: relative;
    border-radius: 6px;
    padding: 60px;
    border: 1px solid;
    border-image-source: radial-gradient(67.73% 215.4% at 50% 50%, rgba(216, 33, 52, 0.6) 0%, rgba(53, 7, 12, 0.36) 100%);
    border-image-slice: 1;
    background: #000;
    box-shadow: 0 6px 24px 0 rgba(255, 255, 255, .06);
    z-index: 0;
    overflow: hidden;
    color: inherit;
    cursor: pointer;
    transition: transform .25s ease-in;
}

.price__item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(170,0,40,.2);
}

.price__item--1 {
    grid-area: item-1;
}

.price__item--2 {
    grid-area: item-2;
}

.price__item--2 h3 {
    max-width: 280px;
}

.price__item--3 {
    grid-area: item-3;
}

.price__item--3 h3 {
    max-width: 380px;
}

.price__item--3 .price__img::before {
    width: 465px;
    left: -260px;
}

.price__item--3 .price__price-item {
    margin-top: 60px;
}

.price__img {
    display: flex;
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 515px;
    height: 100%;
    z-index: -1;
}

.price__img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 200px;
    background: linear-gradient(86deg, #000000 50%, rgba(0, 0, 0, 0) 97%);
    z-index: 0;
}

.price__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.price__body {
    display: flex;
    flex-flow: column;
    justify-content: center;
    gap: 18px;
    height: 100%;
}

.price__link-title {
    color: #FFF;
    font-family: "Essonnes Display";
    font-size: 50px;
    text-transform: uppercase;
}

.price__text {
    color: rgba(255, 255, 255, .8);
    font-family: "Agenda One";
    font-size: 28px;
    max-width: 280px;
}

.price__price-item {
    font-weight: 500;
    font-size: 24px;
    color: #d82134;
    margin-top: auto;
    text-transform: uppercase;
}

.price__price-item span {
    font-family: Essonnes Display;
    font-weight: 400;
    font-size: 48px;
    color: #fff;
    padding-inline: 14px;
}
/* PRICE END */
/* SIGNATURE START */
.signature {
    padding-block: 135px;
    margin-bottom: 200px;
}

.signature:where(html:not(.darling-media-scheduling) *, body:not(.home) *, [data-media-ready], [data-media-ready] *) {
    background: url('./assets/images/signature/section-bg.png') no-repeat center/cover;
    background: image-set(url("assets/optimized/images/signature/section-bg.png.webp") type("image/webp"), url("./assets/images/signature/section-bg.png") type("image/png")) no-repeat center/cover;
}

.signature .heading {
    text-align: center;
    margin-bottom: 10px;
}

.signature .heading__subtitle {
    padding-right: 36px;
    margin-bottom: 30px;
}

.signature__wrap {
    height: 680px;
    mask:
            radial-gradient(ellipse 60% 38px at 50% 0, transparent 0, transparent 99%, #000 100%),
            radial-gradient(ellipse 60% 20px at 50% 100%, transparent 0, transparent 99%, #000 100%);
    -webkit-mask:
            radial-gradient(ellipse 60% 38px at 50% 0, transparent 0, transparent 99%, #000 100%),
            radial-gradient(ellipse 60% 20px at 50% 100%, transparent 0, transparent 99%, #000 100%);
    mask-composite: intersect;
}

.signature .heading__subtitle::after {
    background: #D82134;
}

.signature__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    transition: opacity .5s ease-in-out;
}

.signature__video.fade-out {
    opacity: 0;
}
/* SIGNATURE END */
/* TAB START */
.tabs {
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 40px;
}

.tabs::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

.tabs__wrap {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 32px;
    width: max-content;
    min-width: 100%;
}

.signature__show-name {
    flex: 0 0 auto;
    white-space: nowrap;
    color: #fff;
    font-family: "Essonnes Display";
    font-size: 28px;
    padding: 7px;
    letter-spacing: .84px;
    text-transform: uppercase;
    border: none;
    background: transparent;
}
/* TAB END */
/* ATMOSPHERE START */
.atmosphere {
    padding-block: 105px;
    margin-block-end: 230px;
}

.atmosphere:where(html:not(.darling-media-scheduling) *, body:not(.home) *, [data-media-ready], [data-media-ready] *) {
    background: url('./assets/images/atmosphere/section-bg.png') no-repeat center/cover;
    background: image-set(url("assets/optimized/images/atmosphere/section-bg.png.webp") type("image/webp"), url("./assets/images/atmosphere/section-bg.png") type("image/png")) no-repeat center/cover;
}

.atmosphere::before {
    content: '';
    height: 230px;
    width: 100%;
    background: #000;
}

.atmosphere .heading {
    text-align: center;
    margin-bottom: 45px;
}

.atmosphere .heading__subtitle {
    padding-right: 36px;
    margin-bottom: 30px;
}

.atmosphere .heading__subtitle::after {
    background: #D82134;
}

.atmosphere .heading__title {
    margin-bottom: 36px;
}

.atmosphere .heading__text {
    max-width: 625px;
    margin: 0 auto;
}
/* ATMOSPHERE END */
/* GALLERY START */
.gallery {
    display: grid;
    grid-template: 'item-1 item-3 item-4' 400px
                    'item-2 item-3 item-5' 400px
                    / 340px 710px 340px;
    gap: 24px;
    margin-bottom: 40px;
}

.gallery__item {
    position: relative;
    overflow: hidden;
    transition:
            transform .45s cubic-bezier(.22,1,.36,1),
            box-shadow .45s ease,
            filter .45s ease;
}

.gallery__item::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 1px;
    background:
            linear-gradient(
                    145deg,
                    rgba(216,33,52,.0),
                    rgba(216,33,52,.45),
                    rgba(255,255,255,.08)
            );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity .45s ease;
    z-index: 2;
    pointer-events: none;
}

.gallery__item::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
            radial-gradient(
                    circle at center,
                    rgba(216,33,52,.22) 0%,
                    rgba(216,33,52,0) 72%
            );
    opacity: 0;
    transition: opacity .45s ease;
    z-index: 1;
    pointer-events: none;
}

.gallery__item--1 {
    grid-area: item-1;
}

.gallery__item--2 {
    grid-area: item-2;
}

.gallery__item-video {
    grid-area: item-3;
    position: relative;
}

.gallery__item--4 {
    grid-area: item-4;
}

.gallery__item--5 {
    grid-area: item-5;
}

.gallery__item:hover {
    transform: translateY(-10px) scale(1.015);
    box-shadow:
            0 30px 70px rgba(216,33,52,.18),
            0 10px 30px rgba(0,0,0,.35);
}

.gallery__item:hover::before,
.gallery__item:hover::after {
    opacity: 1;
}

.gallery__item:hover img,
.gallery__item:hover .gallery__video {
    transform: scale(1.06);
    filter:
            brightness(1.06)
            contrast(1.04)
            saturate(1.08);
}

.gallery__item img,
.gallery__video {
    transition:
            transform .7s cubic-bezier(.22,1,.36,1),
            filter .45s ease;
}

.gallery__item picture,
.gallery__item video {
    position: relative;
    overflow: hidden;
}

.gallery__item picture::after,
.gallery__item video::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
            linear-gradient(
                    to top,
                    rgba(0,0,0,.45),
                    rgba(0,0,0,0) 45%
            );
    opacity: .65;
    transition: opacity .4s ease;
    z-index: 1;
}

.gallery__item:hover picture::after,
.gallery__item:hover video::after {
    opacity: .2;
}

.gallery .swiper-wrapper {
    gap: 0;
}

.gallery .swiper-controls {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.gallery__mark {
    position: absolute;
    top: 30px;
    right: 35px;
    display: inline-flex;
    padding: 10px;
    justify-content: center;
    color: #FFF;
    font-size: 24px;
    letter-spacing: 1.44px;
    border-radius: 42px;
    overflow: hidden;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.18);
    backdrop-filter:
            blur(24px)
            saturate(180%)
            brightness(1.1);
    box-shadow:
            inset 0 1px 1px rgba(255,255,255,0.3),
            inset 0 -12px 24px rgba(255,255,255,0.05),
            0 20px 40px rgba(0,0,0,0.18);
    z-index: 2;
    transition:
            transform .35s ease,
            background .35s ease,
            border-color .35s ease;
}

.gallery__mark::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
            linear-gradient(
                    -45deg,
                    rgba(255,255,255,0.35),
                    transparent 45%
            );
}

.gallery__mark::after {
    content: "";
    position: absolute;
    inset: -30%;
    background:
            linear-gradient(
                    120deg,
                    rgba(255,0,128,0.06),
                    rgba(0,255,255,0.06),
                    rgba(255,255,0,0.06)
            );

    filter: blur(40px);
    mix-blend-mode: screen;
}

.gallery__item:hover .gallery__mark {
    transform: translateY(-3px);
    background: rgba(216,33,52,.14);
    border-color: rgba(216,33,52,.35);
    box-shadow: 0 10px 24px rgba(216,33,52,.18);
}

.gallery__video {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.gallery__btn-play {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 183px;
    height: 183px;
    transform: translate(-50%, -50%);
    background: none;
    border: none;
    cursor: pointer;
    z-index: 2;
    transition: transform .35s ease, filter .35s ease;
}

.gallery__btn-play:hover {
    transform: translateX(-50%) scale(1.12);
    filter: drop-shadow(0 0 18px rgba(216,33,52,.45));
}
/* GALLERY END */
/* REVIEW START */
.review {
    padding-block: 70px;
    margin-block-end: 200px;
}

.review:where(html:not(.darling-media-scheduling) *, body:not(.home) *, [data-media-ready], [data-media-ready] *) {
    background: url('./assets/images/review/section-bg.png') no-repeat center/cover;
    background: image-set(url("assets/optimized/images/review/section-bg.png.webp") type("image/webp"), url("./assets/images/review/section-bg.png") type("image/png")) no-repeat center/cover;
}

.review__wrap {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.review .heading {
    position: relative;
    margin-bottom: 70px;
}

.review .heading::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -30px;
    width: 469px;
    height: 461px;
    border-radius: 469px;
    background: rgba(0, 0, 0, .14);
    filter: blur(160px);
    z-index: -1;
}

.review .heading__title {
    font-size: 100px;
}

.review .heading__subtitle {
    padding-right: 36px;
    margin-bottom: 30px;
}

.review .heading__subtitle::after {
    background: #D82134;
}

.review .heading__subtitle--double::after {
    opacity: 0;
}

.review__icon {
    width: 84px;
    height: 84px;
}

.review__icon svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review__rating {
    display: flex;
    gap: 17px;
}

.review__content h5 {
    color: #E7E7E7;
    font-size: 18px;
    letter-spacing: .54px;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.review__grade {
    display: flex;
    align-items: center;
    column-gap: 15px;
    color: #FFF;
    font-size: 36px;
    letter-spacing: 1.08px;
}

.review__stars {
    display: flex;
    list-style-type: none;
    column-gap: 4px;
    margin-bottom: 2px;
}

.review__stars li {
    display: inline-flex;
    width: 24px;
    height: 24px;
}

.review__stars li svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review__text {
    display: inline-flex;
    width: 100%;
    color: #E7E7E7;
    font-size: 18px;
    letter-spacing: .54px;
    margin-bottom: 10px;
}

.review__link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #D82134;
    font-size: 18px;
    letter-spacing: .54px;
    transition: color .25s ease-in;
}
.review__link svg {
    stroke: #D82134;
    transition: stroke .25s ease-in;
}

.review__link:hover {
    color: rgba(216,33,52,.35);
}

.review__link:hover svg {
    stroke: rgba(216,33,52,.35);
}
/* REVIEW END */
/* TESTIMONIALS START */
.testimonials {
    display: flex;
    gap: 24px;
    height: 908px;
    margin: 0;
    width: auto;
}

.testimonials .swiper-wrapper {
    display: flex;
    flex-flow: column;
    height: auto;
    gap: 0;
    max-width: 710px;
}

.testimonials .swiper-controls {
    display: flex;
    flex-flow: column;
    justify-content: center;
}

.testimonials .swiper-controls .swiper-button-prev,
.testimonials .swiper-controls .swiper-button-next {
    transform: rotate(90deg);
}

.testimonials .swiper-pagination-vertical.swiper-pagination-bullets {
    position: static;
    display: flex;
    flex-flow: column;
    gap: 7px;
    transform: translateY(0);
}

.testimonials .swiper-pagination-bullet {
    --swiper-pagination-bullet-vertical-gap: 0;
}

.testimonials__item {
    position: relative;
    overflow: hidden;
    display: flex;
    padding: 46px 42px 32px 95px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 15px;
    border-radius: 6px;
    background: rgba(255, 255, 255, .02);
    backdrop-filter: blur(14px);
    transition:
            transform .4s cubic-bezier(.22,1,.36,1),
            box-shadow .4s ease,
            border-color .4s ease,
            background .4s ease;
}

.testimonials__item::before {
    content: '“';
    position: absolute;
    top: 28px;
    left: 28px;
    color: #D82134;
    font-family: "Essonnes Display";
    font-size: 100px;
    line-height: 80px;
    letter-spacing: 6px;
}

.testimonials__item::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
            radial-gradient(
                    circle at top right,
                    rgba(216,33,52,.22),
                    transparent 45%
            );
    opacity: 0;
    transition: opacity .45s ease;
    pointer-events: none;
}

.testimonials__item:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(255,255,255,.05);
    border-color: rgba(216,33,52,.35);
    box-shadow:
            0 18px 40px rgba(0,0,0,.45),
            0 0 25px rgba(216,33,52,.18),
            inset 0 1px 0 rgba(255,255,255,.05);
}

.testimonials__item:hover::after {
    opacity: 1;
}

.testimonials__text {
    color: #FFF;
    font-size: 24px;
}

.testimonials__user {
    display: grid;
    grid-template: 'picture title' auto
                    'picture text' auto
                    / 62px 1fr;
    column-gap: 12px;
}

.testimonials__icon {
    grid-area: picture;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 62px;
    border-radius: 46px;
    border: 1px solid #D82134;
    background: rgba(73, 73, 73, 0.12);
    box-shadow: 0 1px 4px 0 rgba(255, 255, 255, 0.06) inset;
    backdrop-filter: blur(11px);
}

.testimonials__title {
    color: #FFF;
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 2px;
    align-self: end;
}

.testimonials__subtitle {
    color: rgba(255, 255, 255, .8);
    font-size: 18px;
}
/* TESTIMONIALS END */
/* MAP START */
.map {
    height: 1300px;
    position: relative;
}

#map {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

@media (min-width: 1200px) {
    .map {
        --location-map-offset: 840px;
    }

    .map > #map {
        inset: 0 0 0 var(--location-map-offset);
        width: auto;
    }
}

@media (min-width: 1200px) and (max-width: 1599px) {
    .map {
        --location-map-offset: 720px;
    }
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .map {
        --location-map-offset: 570px;
    }
}

.map::before,
.map::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 400px;
}

.map::before {
    top: 0;
    background: linear-gradient(176deg, #000 0.42%, rgba(0, 0, 0, 0) 53.05%);
}

.map::after {
    bottom: 0;
    background: linear-gradient(4deg, #000 0.42%, rgba(0, 0, 0, 0) 53.05%);
}
/* MAP END */
/* LOCATION START */
.location {
    position: absolute;
    top: 50%;
    left: 160px;
    width: 680px;
    transform: translateY(-50%);
    padding: 65px 60px 35px;
    background: #000;
    z-index: 2;
}

.location .heading {
    text-align: center;
    margin-bottom: 55px;
}

.location .heading__subtitle {
    margin-inline: auto;
}

.location .heading__subtitle--double::after {
    background: #D82134;
}

.location .heading__title {
    text-align: center;
    font-size: 95px;
    line-height: 1;
    letter-spacing: 5.7px;
}

.location__address-content {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #FFF;
    font-size: 24px;
    font-style: normal;
    letter-spacing: .72px;
}

.location__address-content img {
    width: 16px;
}

.location__address {
    display: flex;
    flex-flow: column;
    align-items: center;
    gap: 6px;
    margin-bottom: 40px;
}

.location__copy {
    position: relative;
    display: flex;
    padding-block: 6px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    min-height: 31px;
    color: rgba(255, 255, 255, .7);
    font-size: 16px;
    letter-spacing: .48px;
    border: none;
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.70);
    cursor: pointer;
    overflow: hidden;
    transition:
            color .3s ease,
            transform .25s ease;
}

.location__copy::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,.25);
}

.location__copy::after {
    content: '';
    position: absolute;
    left: -100%;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(
            90deg,
            transparent,
            #fff,
            transparent
    );
    transition: left .55s cubic-bezier(.65,.05,.36,1);
}

.location__copy:hover {
    color: #FFF;
    transform: translateY(-1px);
}

.location__copy:hover::after {
    left: 100%;
}

.location__copy:active {
    transform: translateY(1px) scale(.98);
}

.location__schedules {
    list-style-type: none;
    margin-bottom: 55px;
}

.location__li {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
}

.location__li:not(:last-child) {
    margin-bottom: 24px;
}

.location__position {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #FFF;
    font-size: 24px;
    max-width: 350px;
}

.location__position figure {
    flex: 0 0 auto;
    display: flex;
    width: 43px;
    height: 43px;
    justify-content: center;
    align-items: center;
    border-radius: 62px;
    border: 1px solid #FFF;
    background: #000;
    box-shadow: 0 0 3px 0 rgba(255, 255, 255, .16) inset;
}

.location__position figure img {
    width: 23px;
    height: 23px;
    object-fit: cover;
}

.location__time {
    color: #D82134;
    text-align: center;
    font-size: 20px;
    width: 100%;
    max-width: 130px;
    padding: 10px;
    border-radius: 3px;
    border: 1px solid #D82134;
}

.location__actions {
    display: flex;
    flex-flow: column;
    gap: 24px;
    margin-bottom: 40px;
}

.location__actions .btn-red {
    font-size: 24px;
}

.location__text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: rgba(255, 255, 255, .8);
    font-size: 16px;
}

.location__text img {
    width: 18px;
    height: 20px;
}
/* LOCATION END */
/* FAQ START */
.faq {
    padding-block: 250px 120px;
    margin-block-end: 200px;
}

.faq:where(html:not(.darling-media-scheduling) *, body:not(.home) *, [data-media-ready], [data-media-ready] *) {
    background: url('./assets/images/faq/section-bg.png') no-repeat center/cover;
    background: image-set(url("assets/optimized/images/faq/section-bg.png.webp") type("image/webp"), url("./assets/images/faq/section-bg.png") type("image/png")) no-repeat center/cover;
}

.faq .heading {
    text-align: center;
    margin-bottom: 40px;
}

.faq .heading__title {
    font-size: 100px;
    margin-bottom: 30px;
    line-height: 1;
}

.faq .heading__subtitle {
    margin-inline: auto;
    margin-bottom: 30px;
}

.faq .heading__subtitle--double::after {
    background: #D82134;
}

.faq .heading__text {
    max-width: 100%;
}

.faq__accordions {
    display: flex;
    flex-flow: column;
    gap: 32px;
    max-width: 826px;
    margin-inline: auto;
    counter-reset: accordion;
}
/* FAQ END */
/* ACCORDION START */
.accordion {
    padding: 32px 40px;
    border-radius: 6px;
    background: rgba(255, 255, 255, .02);
    border: 1px solid transparent;
    transition:
            background .35s ease,
            border-color .35s ease,
            transform .35s ease,
            box-shadow .35s ease;
}

.accordion:hover {
    background: rgba(255, 255, 255, .04);
    border-color: rgba(216, 33, 52, .35);
    transform: translateY(-2px);
    box-shadow:
            0 10px 30px rgba(0,0,0,.22),
            0 0 18px rgba(216, 33, 52, .08);
}

.accordion[open] {
    background: rgba(255, 255, 255, .045);
    border-color: rgba(216, 33, 52, .45);
}

.accordion[open] .accordion__icon {
    transform: rotate(180deg);
}

.accordion[open] .accordion__icon::before,
.accordion[open] .accordion__icon::after {
    transform: rotate(45deg);
}

.accordion__summary {
    display: flex;
    gap: 28px;
    cursor: pointer;
    list-style: none;
}

.accordion__summary::-webkit-details-marker {
    display: none;
}

.accordion__summary::before {
    content: counter(accordion);
    counter-increment: accordion;
    color: #D82134;
    text-align: center;
    font-size: 32px;
    font-weight: 550;
    padding-right: 28px;
    border-right: 1px solid rgba(153, 153, 153, .5);
    transition:
            color .3s ease,
            border-color .3s ease;
}

.accordion:hover .accordion__summary::before {
    color: #ff4b5f;
    border-color: rgba(216, 33, 52, .45);
}

.accordion__title {
    flex: 1 0 auto;
    color: #FFF;
    font-size: 28px;
    transition:
            color .3s ease,
            transform .3s ease;
}

.accordion:hover .accordion__title {
    color: #ffffff;
    transform: translateX(2px);
}

.accordion__icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(216, 33, 52, .08);
    transition:
            transform .35s ease,
            background .35s ease,
            box-shadow .35s ease;
}

.accordion:hover .accordion__icon {
    background: rgba(216, 33, 52, .15);
    box-shadow: 0 0 14px rgba(216, 33, 52, .2);
}

.accordion__icon::before,
.accordion__icon::after {
    content: '';
    position: absolute;
    border-radius: 5px;
    background: #D82134;
    transition:
            transform .35s ease,
            opacity .35s ease,
            background .35s ease;
}

.accordion__icon::before {
    width: 19px;
    height: 3px;
}

.accordion__icon::after {
    width: 3px;
    height: 19px;
}

.accordion__content {
    padding-top: 15px;
    padding-left: 75px;
    color: #FFF;
    font-size: 20px;
    font-weight: 300;
}

.accordion__content {
    transition: opacity .35s ease;
    opacity: 0;
}

.accordion[open] .accordion__content {
    opacity: 1;
}

.accordion__content p {
    color: rgba(255,255,255,.82);
    font-size: 20px;
    font-weight: 300;
}
/* ACCORDION END */
/* BOOKING START */
.booking {
    position: relative;
    padding-block: 330px 355px;
    margin-bottom: 60px;
}

.booking::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 895px;
    height: 100%;
    background: linear-gradient(91deg, #000 43.02%, rgba(0, 0, 0, 0.00) 99.46%);
    transform: translateX(calc(-50% + -415px));
    z-index: 0;
}

.booking::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 1895px;
    height: 1265px;
    transform: translateX(calc(-50% + 225px));
    z-index: -1;
}

.booking:where(html:not(.darling-media-scheduling) *, body:not(.home) *, [data-media-ready], [data-media-ready] *)::after {
    background: url('./assets/images/booking/section-bg.jpg') no-repeat center/cover;
}

.booking .heading__title {
    font-size: 109px;
    letter-spacing: 6.523px;
    line-height: 1;
    margin-bottom: 30px;
}

.booking .heading__title span:last-child {
    display: inline-flex;
    align-items: baseline;
    gap: 28px;
}

.booking .heading__title svg {
    transform: translateY(-15px);
}

.booking .heading__text {
    max-width: 660px;
}

.booking__actions {
    display: flex;
    gap: 24px;
}

.booking__list {
    display: flex;
    gap: 77px;
    margin-bottom: 60px;
    list-style-type: none;
}

.booking__li {
    position: relative;
    display: flex;
    flex-flow: column;
    align-items: center;
    gap: 16px;
    padding-block: 12px;
    color: #FFF;
    font-size: 22px;
    letter-spacing: 1.32px;
}

.booking__li figure {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
}

.booking__li figure img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.booking__li:not(:last-child)::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -38px;
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, .2);
    transform: translateY(-50%);
}
/* BOOKING END */
/* FOOTER START */
.footer {
    position: relative;
    padding-block: 110px 24px;
}

.footer:where(html:not(.darling-media-scheduling) *, body:not(.home) *, [data-media-ready], [data-media-ready] *) {
    background: url('./assets/images/footer/section-bg.png') no-repeat center/cover;
    background: image-set(url("assets/optimized/images/footer/section-bg.png.webp") type("image/webp"), url("./assets/images/footer/section-bg.png") type("image/png")) no-repeat center/cover;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    width: 100%;
    height: 235px;
    background: linear-gradient(176deg, #000 .42%, rgba(0, 0, 0, 0) 53.05%);
}

.footer__wrap {
    display: grid;
    grid-template: 'content links' auto
                    'underline underline' auto
                    / 1fr 1fr;
    gap: 24px;
}

.footer__wrapper {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    min-height: 810px;
    padding: 60px;
    border-radius: 6px;
    background: rgba(255, 255, 255, .03);
}

.footer__wrapper--content {
    grid-area: content;
    gap: 32px;
}

.footer__wrapper--links {
    grid-area: links;
    gap: 45px
}

.footer__logo {
    width: 365px;
}

.footer__text {
    display: flex;
    flex-flow: column;
    gap: 4px;
    color: #E7E7E7;
    text-align: center;
    font-size: 22px;
    font-weight: 300;
}

.footer__content {
    display: flex;
    flex-flow: column;
    align-items: center;
    gap: 27px;
    max-width: 430px;
}

.footer__decor {
    width: 100%;
    max-width: 224px;
}

.footer__contacts {
    display: flex;
    flex-flow: column;
    gap: 23px;
}

.footer__contacts-block {
    display: flex;
    flex-flow: column;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.footer__contacts-block h5 {
    color: #D82134;
    text-align: center;
    font-size: 16px;
    letter-spacing: .48px;
    text-transform: uppercase;
}

.footer__contacts-block address,
.footer__contacts-block a {
    color: #FFF;
    font-size: 24px;
    font-style: normal;
    letter-spacing: .72px;
}

.footer__contacts-block a {
    transition: color .25s ease-in;
}

.footer__contacts-block a:hover {
    color: #D82134;
}

.footer__times {
    display: flex;
    flex-flow: column;
    gap: 16px;
    padding-inline: 60px;
}

.footer__time-line {
    display: flex;
    justify-content: space-between;
    gap: 32px;
    color: #FFF;
    font-size: 24px;
    letter-spacing: .72px;
}

.footer__links-block {
    display: flex;
    flex-flow: column;
    gap: 20px;
    width: 100%;
}

.footer__links-block h4 {
    display: flex;
    flex-flow: column;
    color: #D82134;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: .6px;
    text-transform: uppercase;
}

.footer__links-block h4::after {
    content: '';
    width: 40px;
    height: 1px;
    margin-top: 8px;
    background: #D82134;
}

.footer__links {
    display: flex;
    flex-flow: column;
    gap: 16px;
}

.footer__links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-bottom: 16px;
    color: #FFF;
    font-family: "Essonnes Display";
    font-size: 28px;
    letter-spacing: .56px;
    border-bottom: 1px solid rgba(255, 255, 255, .2);
    transition: color .25s ease-in;
    cursor: pointer;
}

.footer__links a:hover {
    color: #D82134;
}

.footer__underline {
    grid-area: underline;
    display: grid;
    grid-template-columns: 250px 1fr 250px;
    align-items: center;
    gap: 24px;
    padding: 40px 60px;
    border-radius: 6px;
    background: rgba(255, 255, 255, .03);
}

.footer__copyright {
    color: #D9D9D9;
    font-size: 18px;
    font-weight: 300;
    letter-spacing: .54px;
}

.footer__credit-link {
    transition: color 0.2s ease;
}

.footer__credit-link:hover,
.footer__credit-link:focus-visible {
    color: #D82134;
}

.footer__credit-link:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 4px;
}

.footer__underlinks {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer__underlinks a {
    display: inline-flex;
    align-items: center;
    transition: color .25s ease-in;
}

.footer__underlinks a:hover {
    color: #D82134;
}

.footer__underlinks a:not(:last-child)::after {
    content: '';
    width: 5px;
    height: 5px;
    margin-inline: 24px;
    border-radius: 50%;
    background: #D9D9D9;
}

.footer__socials {
    justify-self: end;
}

.footer__social svg {
    fill: #fff;
    transition: fill .25s ease-in;
}

.footer__social:hover svg {
    fill: #D82134;
}
/* FOOTER END */
/* BUTTON-UP START */
.button-up {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 14px;
    position: fixed;
    right: 145px;
    bottom: 85px;
    width: 60px;
    height: 60px;
    border-radius: 6px;
    border: 1px solid #999;
    background: rgba(255, 255, 255, .05);
    box-shadow: 2px 3px 5px 0 rgba(255, 255, 255, .1) inset;
    backdrop-filter: blur(14px);
    cursor: pointer;
    transition: all .3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    z-index: 20;
}

.button-up:hover {
    background: rgba(255, 255, 255, .12);
    border-color: #fff;
    transform: translateY(-2px);
}

.button-up:active {
    transform: translateY(0) scale(.95);
}

.button-up.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
/* BUTTON-UP END */
/* PROGRAMM HERO START */
.program-hero {
    position: relative;
    overflow: hidden;
    height: 505px;
}

.program-hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -3;
    object-position: 50% 50%;
}

.program-hero__overlay {
    position: absolute;
    inset: 0;
    background:
            linear-gradient(to bottom right, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.60) 50%) bottom right / 50% 50% no-repeat,
            linear-gradient(to bottom left, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.60) 50%) bottom left / 50% 50% no-repeat,
            linear-gradient(to top left, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.60) 50%) top left / 50% 50% no-repeat,
            linear-gradient(to top right, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.60) 50%) top right / 50% 50% no-repeat,
            linear-gradient(0deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.55) 100%);
    z-index: -2;
}

.program-hero .container {
    height: 100%;
    display: flex;
}

.program-hero__wrap {
    width: 100%;
    margin-top: auto;
}

.heading--program-hero {
    text-align: center;
    margin-bottom: 110px;
}

.program-hero .heading__subtitle {
    margin-inline: auto;
    margin-bottom: 10px;
}

.program-hero .heading__subtitle--double::after {
    background: #D82134;
}

.program-hero .heading__title {
    margin-bottom: 15px;
}

.program-hero .heading__text {
    max-width: 100%;
}
/* PROGRAMM HERO END */
/* CHOOSE DAY START */
.choose-day {
    position: relative;
    padding-block: 52px 64px;
    margin-bottom: 112px;
    background: url('./assets/images/choose-day/section-bg.png') no-repeat center/cover, #000;
    background: image-set(url("assets/optimized/images/choose-day/section-bg.png.webp") type("image/webp"), url("./assets/images/choose-day/section-bg.png") type("image/png")) no-repeat center/cover, #000;
    overflow: visible;
}

.choose-day::before {
    content: '';
    position: absolute;
    top: -11px;
    left: 0;
    width: 100%;
    height: 23px;
    background: url('assets/images/choose-day/decor.svg') no-repeat center/cover;
}

.choose-day .heading {
    text-align: center;
    margin-bottom: 27px;
}

.choose-day .heading__subtitle {
    margin-bottom: 12px;
}

.choose-day .heading__subtitle--double::after {
    background: #D82134;
}

.choose-day .heading__text {
    max-width: 100%;
    font-size: 18px;
}

.choose-day__wrap {
    display: flex;
    flex-flow: column;
    align-items: center;
    max-width: 807px;
    margin: 0 auto;
}

.choose-day__label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.choose-day__label img {
    width: 24px;
    height: 24px;
    display: flex;
    object-fit: cover;
}

.choose-day__day {
    color: #D82134;
    text-align: center;
    leading-trim: both;
    text-edge: cap;
    font-family: "Essonnes Display";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
}

.choose-day__tabs {
    border-radius: 6px;
    border: 1px solid rgba(153, 153, 153, 0.2);
    background: rgba(0, 0, 0, 0.00);
    margin-bottom: 27px;
    width: 100%;
    overflow: hidden;
}

.choose-day__tab-wrap {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    width: 100%;
}

.choose-day__tab {
    position: relative;
    display: flex;
    min-width: 0;
    padding: 18px 12px;
    color: #FFF;
    text-align: center;
    leading-trim: both;
    text-edge: cap;
    font-family: "Essonnes Display";
    border: none;
    font-size: 28px;
    font-weight: 400;
    line-height: normal;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: transparent;
    transition: background .2s ease;
    cursor: pointer;
}

.choose-day__tab:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 1px;
    height: 41px;
    background: url('./assets/images/choose-day/separator.svg') no-repeat center/cover;
}

.choose-day__tab:hover,
.choose-day__tab--active {
    background: linear-gradient(180deg, #D82134 0%, #72111B 100%);
}

.choose-day__body {
    width: 100%;
    margin-bottom: 27px;
}

.choose-day__daylist {
    display: none;
}

.choose-day__daylist--active {
    display: flex;
}

.choose-day__list {
    display: flex;
    flex-flow: column;
    gap: 10px;
    width: 100%;
}

.choose-day__list li {
    position: relative;
    display: flex;
    justify-content: space-between;
    flex-flow: wrap;
    color: #FFF;
    text-align: center;
    leading-trim: both;
    text-edge: cap;
    font-family: "Essonnes Display";
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 18px 24px 18px 57px;
    align-items: center;
    gap: 10px 28px;
    align-self: stretch;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(100, 100, 100, 0.01);
    box-shadow: 0 2px 10.8px 0 rgba(255, 255, 255, 0.10) inset;
    backdrop-filter: blur(4.5px);
}

.choose-day__list li::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 27px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #D82134;
}

.choose-day__list li span {
    color: rgba(231, 231, 231, 0.80);
    text-align: center;
    leading-trim: both;
    text-edge: cap;
    font-family: "Agenda One";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.choose-day__info {
    display: flex;
    align-items: center;
    align-self: self-start;
    gap: 14px;
    color: #fff;
    leading-trim: both;
    text-edge: cap;
    font-family: "Agenda One";
    font-size: 20px;
    font-weight: 300;
    line-height: normal;
}

.choose-day__info svg {
    width: 38px;
    height: 38px;
    flex: 0 0 auto;
}
/* CHOOSE DAY END */
/* READY FOR START */
.ready-for {
    padding-block: 140px;
    margin-bottom: 112px;
    background: url('./assets/images/ready-for/section-bg.png') no-repeat center/contain, #000;
    background: image-set(url("assets/optimized/images/ready-for/section-bg.png.webp") type("image/webp"), url("./assets/images/ready-for/section-bg.png") type("image/png")) no-repeat center/contain, #000;
}

.ready-for .heading {
    text-align: center;
    margin-bottom: 48px;
}

.ready-for .heading__subtitle {
    margin-bottom: 12px;
}

.ready-for .heading__title {
    margin-bottom: 24px;
}

.ready-for .heading__subtitle--double::after {
    background: #D82134;
}

.ready-for .heading__text {
    max-width: 100%;
    font-size: 18px;
}

.ready-for__actions {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 28px;
}

.ready-for .btn-red svg {
    stroke: #fff;
    width: 24px;
    height: 24px;
}

.ready-for__link {
    color: #E7E7E7;
    leading-trim: both;
    text-edge: cap;
    font-family: "Agenda One";
    font-size: 24px;
    font-weight: 300;
    line-height: 99.955%;
    letter-spacing: 0.72px;
    margin: 0 auto;
    display: flex;
    width: fit-content;
    transition: color .35s ease, transform .35s ease;
}

.ready-for__link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 1px;
    background: #E7E7E7;

    transform: scaleX(0);
    transform-origin: right;
    transition: transform .45s cubic-bezier(.22, 1, .36, 1);
}

.ready-for__link:hover {
    transform: translateY(-2px);
}

.ready-for__link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}
/* READY FOR END */
/* CONTACT START */
.contact {
    padding-block: 13px 17px;
    margin-bottom: 183px;
    background: url('./assets/images/ready-for/section-bg.png') no-repeat center/contain, #000;
    background: image-set(url("assets/optimized/images/ready-for/section-bg.png.webp") type("image/webp"), url("./assets/images/ready-for/section-bg.png") type("image/png")) no-repeat center/contain, #000;
}

.contact__wrap {
    display: flex;
    flex-flow: column;
}

.contact .heading {
    text-align: center;
    margin-bottom: 32px;
}

.contact .heading__subtitle {
    margin-bottom: 12px;
}

.contact .heading__subtitle::after {
    background: #D82134;
}

.contact .heading__title {
    flex-flow: row;
    justify-content: center;
    gap: 28px;
    margin-bottom: 12px;
}

.contact .heading__text {
    max-width: 100%;
    text-align: center;
}

.contact__grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 24px;
    max-width: 807px;
    width: 100%;
    margin: 0 auto 37px;
}

.contact__grid::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    stroke-width: 1px;
    stroke: rgba(153, 153, 153, 0.00);
}

.contact__item {
    display: flex;
    padding: 46px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.02);
}

.contact__header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact__header h4 {
    color: #FFF;
    font-family: "Agenda One";
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.contact__body a {
    display: flex;
    color: #FFF;
    font-family: "Agenda One";
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.contact__body a:first-child {
    margin-bottom: 8px;
}

.contact__body p {
    color: rgba(255, 255, 255, 0.80);
    font-family: "Agenda One";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: 16px;
}

.contact__icon {
    display: flex;
    width: 48px;
    height: 48px;
    padding: 11.163px 10.046px 10.046px 11.163px;
    justify-content: center;
    align-items: center;
    border-radius: 69.209px;
    border: 1.116px solid #FFF;
    background: #000;
    box-shadow: 0 0 3.349px 0 rgba(255, 255, 255, 0.16) inset;
}

.contact__times {
    display: flex;
    flex-flow: column;
    gap: 20px;
}

.contact__time-line {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    color: #FFF;
    leading-trim: both;
    text-edge: cap;
    font-family: "Agenda One";
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 99.955%;
    letter-spacing: 0.72px;
}

.contact .btn-red {
    margin: 0 auto;
}
/* CONTACT END */
/* LOCATION SECTION START */
.location-section {
    margin-bottom: 82px;
}

.location-section__wrap-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-flow: wrap;
    position: relative;
    z-index: 2;
    gap: 32px;
    margin-bottom: -80px;
}

.location-section .heading__subtitle {
    margin-bottom: 10px;
}

.location-section .heading {
    align-items: flex-end;
    margin: 0;
}

.location-section .heading__title {
    font-size: 70px;
    margin-bottom: 0;
}

.location-section .location__address-content {
    font-size: 28px;
}

.location-section .location__address {
    align-items: flex-end;
    margin: 0;
    gap: 3px;
}

.location-section #map {
    position: relative;
    height: 732px;
}

.location-section #map::before,
.location-section #map::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 257px;
    background: linear-gradient(176deg, #000 0.42%, rgba(0, 0, 0, 0.00) 53.05%);
    z-index: 1;
}

.location-section #map::before {
    top: 0;
}

.location-section #map::after {
    bottom: 0;
    transform: rotate(180deg);
}

.location-section .location__schedules {
    display: flex;
    gap: 23px;
}

.location-section .location__li {
    position: relative;
    flex-flow: column;
    display: flex;
    width: 463px;
    padding: 28px 32px;
    justify-content: center;
    align-items: flex-start;
    gap: 16px;
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.00);
}

.location-section .location__li:not(:last-child) {
    margin: 0;
}

.location-section .location__li::before {
    content: '';
    position: absolute;
    inset: 0;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    box-shadow:
            inset 0 1px 0 rgba(255,255,255,.06),
            0 8px 32px rgba(0,0,0,.35);
}

.location-section .location__position {
    position: relative;
    margin-bottom: 8px;
}

.location-section .location__position figure {
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow:
            inset 0 1px 0 rgba(255,255,255,.06),
            0 8px 32px rgba(0,0,0,.35);
}

.location-section .location__content {
    position: relative;
    color: #FFF;
    font-family: "Agenda One";
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.location-section .location__time {
    position: relative;
    font-size: 22px;
    padding: 0;
    border: none;
    width: auto;
}

.location-section .location__actions {
    flex-flow: row;
    justify-content: center;
    gap: 24px;
    margin-bottom: 32px;
}

.location-section .location__actions a {
    width: 100%;
    max-width: 555px;
}

.location-section__bottom-section {
    position: relative;
    margin-top: -130px;
    z-index: 3;
}

.location-section .location__text {
    margin-bottom: 82px;
}

.location-section__info {
    display: flex;
    flex-flow: column;
    gap: 8px;
}

.location-section__header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.location-section__icon {
    width: 24px;
    height: 24px;
    object-fit: cover;
}

.location-section__title {
    color: #E7E7E7;
    text-align: center;
    font-family: "Agenda One";
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.location-section__info p {
    color: #E7E7E7;
    font-family: "Agenda One";
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
/* LOCATION SECTION END */
/* RESPONSIVE START */
@media (max-width: 1599px) {
    .packages .swiper {
        max-width: 1360px;
    }

    .packages .swiper-slide {
        max-width: 433px;
    }

    .gallery {
        grid-template-columns: 320px 1fr 320px;
    }

    .location {
        left: 40px;
    }
}

@media (max-width: 1399px) {
    .tabs {
        margin-inline: -20px;
        padding-inline: 20px;
        scroll-padding-inline: 20px;
    }

    .schedule {
        padding-left: 35px;
    }

    .schedule-card::before {
        left: -31px;
    }

    .booking .heading__title,
    .faq .heading__title,
    .review .heading__title,
    .price .heading__title,
    .heading__title {
        font-size: 95px;
    }

    .about__grid {
        grid-template-columns: repeat(4, minmax(199px, 234px));
        max-width: 970px;
        margin: 0 auto;
    }

    .about__card--1 {
        grid-area: 2 / 1 / span 1;
    }

    .about__card--2 {
        grid-area: 5 / 1 / span 1;
    }

    .about__card--3 {
        grid-area: 1 / 2 / span 1;
    }

    .about__card--4 {
        grid-area: 4 / 2 / span 1;
    }

    .about__card--5 {
        grid-area: 2 / 3 / span 1;
    }

    .about__card--6 {
        grid-area: 5 / 3 / span 1;
    }

    .about__card--7 {
        grid-area: 1 / 4 / span 1;
    }

    .about__card--8 {
        grid-area: 4 / 4 / span 1;
    }

    .package-card {
        max-width: 366px;
    }

    .packages .swiper {
        max-width: 1160px;
    }

    .package-card__body {
        width: 314px;
    }

    .price__item {
        padding: 40px;
    }

    .review__wrap {
        flex-flow: column;
        align-items: center;
    }

    .review .heading {
        text-align: center;
    }

    .review__rating {
        justify-content: center;
    }

    .review .heading__subtitle--double::after {
        opacity: 1;
    }

    .location {
        width: 530px;
        padding: 35px 30px 15px;
    }

    .location .heading__title {
        font-size: 70px;
    }
}

@media (max-width: 1199px) {
    .header {
        padding-bottom: 40px;
    }

    .logo {
        max-width: 210px;
    }

    .hero__title {
        font-size: 60px;
    }

    .line__li {
        font-size: 20px;
    }

    .booking .heading__title,
    .faq .heading__title,
    .location .heading__title,
    .review .heading__title,
    .price .heading__title,
    .heading__title {
        font-size: 80px;
    }

    .heading__subtitle {
        font-size: 20px;
    }

    .packages .swiper {
        max-width: 984px;
    }

    .package-card {
        max-width: 308px;
    }

    .package-card img {
        height: 440px;
    }

    .package-card__body {
        width: 264px;
    }

    .package-card__body h3 {
        font-size: 20px;
        text-align: center;
    }

    .package-card__body span {
        font-size: 22px;
    }

    .price__item {
        padding: 25px;
    }

    .signature__wrap {
        height: 600px;
    }

    .gallery {
        grid-template:
            'item-3 item-3'
            'item-1 item-4' 400px
            'item-2 item-5' 400px
            / 1fr 1fr;
        gap: 18px;
    }

    .gallery__item img {
        object-position: top;
    }

    .atmosphere {
        margin-bottom: 180px;
    }

    .review {
        margin-bottom: 180px;
    }

    .footer__contacts-block address,
    .footer__contacts-block a {
        text-align: center;
    }

    .menu {
        padding: 156px 30px 40px 30px;
    }
}

@media (max-width: 1023px) {
    .hero__title {
        text-align: center;
        margin-bottom: 22px;
        max-width: 100%;
        font-size: 48px;
    }

    .hero .container {
        margin-block: auto 5px;
    }

    .hero__content::before {
        display: none;
    }

    .ready-for__actions,
    .hero__content .btn-red,
    .location__actions .btn-red,
    .tonight__actions .btn-red {
        margin: 0 auto;
        display: flex;
        font-size: 24px;
        max-width: fit-content;
        padding-block: 15px;
    }

    .line {
        margin-top: 0;
        margin-bottom: 80px;
    }

    .line__list {
        padding-block: 37px 23px;
    }

    .line__li {
        font-size: 18px;
    }

    .tonight__wrap {
        grid-template:
        'title' auto
        'mark' auto
        'schedule' auto
        'actions' auto
        / 1fr;
    }

    .price .heading,
    .tonight .heading {
        text-align: center;
    }

    .price .heading__subtitle--double::after,
    .tonight .heading__subtitle--double::after {
        opacity: 1;
    }

    .tonight .heading::before {
        left: 0;
        width: 100%;
    }

    .tonight .heading__text {
        margin: 0 auto;
    }

    .tonight__mark {
        justify-content: center;
    }

    .tonight__actions {
        align-items: center;
    }

    .heading__subtitle {
        font-size: 16px;
        padding-left: 30px;
        margin-bottom: 30px;
    }

    .heading__subtitle--double {
        padding-right: 30px;
    }

    .heading__subtitle::before,
    .heading__subtitle--double::after {
        width: 22px;
    }

    .tonight {
        padding-bottom: 105px;
    }

    .tonight__wrap {
        gap: 26px;
    }

    .booking .heading__title,
    .faq .heading__title,
    .location .heading__title,
    .review .heading__title,
    .atmosphere .heading__title,
    .price .heading__title,
    .heading__title {
        font-size: 64px;
        margin-bottom: 30px;
        letter-spacing: 3.68px;
    }

    .price .heading__text,
    .packages-section .heading__text,
    .heading__text {
        font-size: 20px;
        max-width: 380px;
    }

    .tonight__mark {
        gap: 10px;
        margin: 0;
    }

    .tonight__mark img {
        width: 26px;
    }

    .tonight__mark span {
        font-size: 20px;
    }

    .schedule-card__time {
        font-size: 22px;
        padding: 18px 16px 18px 18px;
    }

    .schedule-card__content h3 {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .schedule-card__content p {
        font-size: 16px;
    }

    .schedule-card::before {
        left: -29px;
    }

    .schedule {
        gap: 15px;
        max-width: 650px;
        width: 100%;
        margin: 0 auto 55px;
    }

    .schedule::before {
        top: 0;
        left: 0;
        height: 100%;
    }

    .schedule-card::before {
        width: 12px;
        height: 12px;
        left: -41px;
    }

    .schedule-card picture {
        height: 110px;
        min-width: 170px;
        width: 30%;
    }

    .tonight {
        margin-bottom: 100px;
    }

    .tonight__actions {
        gap: 24px;
    }

    .tonight__more {
        font-size: 22px;
    }

    .about {
        padding-block: 60px;
    }

    .about__grid {
        grid-template-columns: repeat(2, 254px);
        grid-auto-rows: 254px;
        grid-template-rows: auto;
        max-width: 520px;
        margin: 0 auto;
    }

    .about__card--1 {
        grid-area: 2 / 2 / span 1;
    }

    .about__card--2 {
        grid-area: 1 / 2 / span 1;
    }

    .about__card--3 {
        grid-area: 1 / 1 / span 1;
    }

    .about__card--4 {
        grid-area: 3 / 2 / span 1;
    }

    .about__card--5 {
        grid-area: 2 / 1 / span 1;
    }

    .about__card--6 {
        grid-area: 3 / 1 / span 1;
    }

    .about__card--7 {
        grid-area: 4 / 1 / span 1;
    }

    .about__card--8 {
        grid-area: 4 / 2 / span 1;
    }

    .about__wrapper {
        padding-block: 20px;
    }

    .about__card {
        height: 254px;
    }

    .about__count {
        font-size: 76px;
        line-height: 64px;
    }

    .about__count span {
        font-size: 32px;
    }

    .about__icon {
        max-width: 32px;
        margin-bottom: 15px;
    }

    .about__title {
        font-size: 18px;
    }

    .why-section {
        padding-block: 105px;
        margin-bottom: 105px;
    }

    .faq .heading,
    .price .heading,
    .packages-section .heading,
    .why-section .heading {
        margin-bottom: 35px;
    }

    .price .heading__subtitle,
    .why-section .heading__subtitle {
        padding-right: 30px;
        margin-bottom: 30px;
    }

    .location-section .heading__title,
    .booking .heading__title,
    .faq .heading__title,
    .location .heading__title,
    .review .heading__title,
    .atmosphere .heading__title,
    .price .heading__title,
    .packages-section .heading__title,
    .why-section .heading__title {
        margin-bottom: 24px;
    }

    .why-section .heading__text {
        max-width: 380px;
        margin: 0 auto;
    }

    .features__wrap {
        width: 1160px;
    }

    .features__item {
        height: 520px;
    }

    .features__item:hover, .features__item.active {
        width: 290px;
    }

    .features__content {
        padding: 12px;
    }

    .features__content h3 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .features__content span {
        font-size: 16px;
    }

    .packages-section .heading__subtitle {
        margin-bottom: 30px;
    }

    .packages {
        margin-bottom: 24px;
    }

    .packages__slider {
        mask: none;
    }

    .packages .swiper-wrapper {
        flex-flow: column;
        align-items: center;
        gap: 24px;
    }

    .packages .swiper-controls {
        display: none;
    }

    .package-card {
        max-width: 400px;
    }

    .package-card figure {
        width: 100%;
    }

    .package-card img {
        height: 360px;
    }

    .packages-section {
        padding-block: 155px 70px;
    }

    .section-btn {
        font-size: 22px;
        padding: 10px 8px;
    }

    .package-card__body {
        width: 314px;
        padding: 16px 14px;
    }

    .package-card__body h3 {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .package-card__body span {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .package-card__link {
        font-size: 18px;
        max-width: 190px;
    }

    .price__grid {
        grid-template: 'item-1'
                        'item-2'
                        'item-3'
                        / 1fr;
        gap: 18px;
    }

    .price__img {
        max-width: 390px;
    }

    .price__img img {
        object-position: top;
    }

    .price__item {
        padding: 28px;
    }

    .price__link-title {
        font-size: 34px;
    }

    .price__text {
        font-size: 20px;
        max-width: 220px;
    }

    .price__price-item {
        font-size: 18px;
    }

    .price__price-item span {
        font-size: 32px;
        padding-inline: 10px;
    }

    .price__grid  {
        margin-bottom: 30px;
    }

    .price {
        margin-block-end: 140px;
        padding-top: 130px;
    }

    .price .heading__title,
    .price .heading__text {
        text-align: center;
    }

    .price .heading__text {
        margin: 0 auto;
    }

    .atmosphere {
        margin-bottom: 130px;
    }

    .review {
        margin-bottom: 130px;
    }

    .signature {
        padding-block: 90px 105px;
        margin-bottom: 130px;
    }

    .signature__wrap {
        height: auto;
        aspect-ratio: 16 / 9;
    }

    .tabs {
        margin-bottom: 32px;
    }

    .signature__video {
        object-position: 50% 50%;
    }

    .signature .tabs__wrap {
        justify-content: flex-start;
        gap: clamp(16px, 2.6vw, 24px);
    }

    .signature__show-name {
        font-size: clamp(18px, 2.6vw, 22px);
    }

    .review .heading {
        margin-bottom: 40px;
    }

    .map {
        display: flex;
        flex-flow: column-reverse;
        gap: 32px;
        height: 100%;
    }

    .map::before,
    .map::after {
        display: none;
    }

    #map {
        position: relative;
        width: 100%;
        height: 700px;
        border-radius: 6px;
        border: 1px solid #FFF;
        background: rgba(255, 255, 255, 0.10);
    }

    .location {
        position: relative;
        top: 0;
        left: 0;
        transform: translateY(0);
        background: transparent;
        margin: 0 auto;
    }

    .faq {
        padding-block: 200px 150px;
    }

    .booking {
        padding-block: 260px;
    }

    .booking::after {
        transform: translateX(calc(-66% + 225px));
    }

    .booking__list {
        gap: 41px;
        margin-bottom: 30px;
    }

    .booking__li:not(:last-child)::before {
        right: -20px;
    }

    .booking .heading__text {
        max-width: 450px;
    }

    .booking .heading__title span:last-child {
        gap: 16px;
    }

    .booking .heading__title svg {
        transform: translateY(-5px);
        width: 75px;
    }

    .booking__li {
        font-size: 18px;
    }

    .booking__li figure {
        flex-basis: 36px;
        width: 36px;
        height: 36px;
    }

    .footer__wrapper {
        padding: 40px;
    }

    .footer__wrap {
        grid-template:
            'content' auto
            'links' auto
            'underline' auto
            / 1fr;
    }

    .footer__underline {
        display: flex;
        flex-flow: wrap;
        justify-content: space-between;
        gap: 20px;
        padding: 20px;
    }

    .footer__underlinks {
        order: -1;
        width: 100%;
    }

    .choose-day {
        padding-block: 45px;
        margin-bottom: 80px;
    }

    .choose-day__list li {
        font-size: 20px;
    }

    .choose-day__list li span {
        font-size: 16px;
    }

    .choose-day__label img {
        width: 18px;
        height: 18px;
    }

    .choose-day__day {
        font-size: 14px;
    }

    .choose-day__info {
        font-size: 18px;
    }

    .choose-day__info svg {
        width: 28px;
        height: 28px;
    }

    .choose-day__tab {
        font-size: 20px;
        padding-inline: 10px;
    }

    .choose-day__tab-wrap {
        width: 100%;
    }

    .ready-for {
        padding-block: 95px;
        margin-bottom: 80px;
    }

    .ready-for__link {
        font-size: 20px;
    }

    .contact {
        margin-bottom: 130px;
    }

    .contact__grid {
        gap: 12px;
        font-size: 18px;
    }

    .contact__item {
        gap: 12px;
        padding: 30px;
    }

    .contact__times {
        gap: 12px;
    }

    .contact__header h4,
    .contact__time-line {
        font-size: 18px;
    }

    .contact__body a {
        font-size: 18px;
    }

    .contact__body p {
        font-size: 14px;
        margin-top: 12px;
    }

    .location-section .heading {
        text-align: center;
    }

    .location-section #map {
        height: 565px;
    }

    .location-section .heading__subtitle--double::after {
        opacity: 1;
        background: #D82134;
    }

    .location-section__bottom-section {
        margin-top: 40px;
    }

    .location-section #map::before,
    .location-section #map::after {
        height: 145px;
    }

    .location-section__wrap-top {
        justify-content: center;
        margin-bottom: 40px;
    }

    .location-section .location__address {
        align-items: center;
    }

    .location-section .location__schedules {
        flex-flow: wrap;
        justify-content: center;
    }

    .location-section {
        margin-bottom: 60px;
    }

    .location-section__title,
    .location-section__info p {
        font-size: 22px;
    }

    .menu {
        background: url('./assets/images/header/background.png') no-repeat right / 550px 400px, #000;
    background: image-set(url("assets/optimized/images/header/background.png.webp") type("image/webp"), url("./assets/images/header/background.png") type("image/png")) no-repeat right / 550px 400px, #000;
    }

    .menu__footer {
        justify-content: center;
    }

    .nav a {
        font-size: 36px;
    }

    .menu__socials {
        margin: 0;
    }
}

@media (max-width: 767px) {
    .header {
        padding-bottom: 18px;
    }

    .logo {
        max-width: 122px;
    }

    .header .btn-border--header {
        padding: 9px 12px;
        max-width: 84px;
        margin: 0;
    }

    .btn-border--header small {
        display: none;
    }

    .btn-border {
        gap: 4px;
    }

    .burger {
        margin-right: 22px;
    }

    .burger__text {
        display: none;
    }

    .btn-border {
        font-size: 14px;
    }

    .btn-border svg {
        max-width: 16px;
    }

    .hero__title {
        font-size: 34px;
        letter-spacing: 2.04px;
    }

    .contact .btn-red,
    .ready-for .btn-red,
    .booking__actions .btn-red,
    .hero__content .btn-red,
    .location__actions .btn-red,
    .tonight__actions .btn-red {
        font-size: 20px;
    }

    .line__li {
        font-size: 14px;
    }

    .line__li svg {
        width: 19px;
        height: 20px;
        aspect-ratio: 20 / 19;
    }

    .heading__subtitle {
        font-size: 11px;
        padding-left: 22px;
        margin-bottom: 18px;
    }

    .heading__subtitle--double {
        padding-right: 22px;
    }

    .heading__subtitle::before,
    .heading__subtitle--double::after {
        width: 14px;
    }

    .tonight {
        padding: 75px 0;
    }

    .tonight__wrap {
        gap: 22px;
    }

    .location-section .heading__title,
    .booking .heading__title,
    .faq .heading__title,
    .location .heading__title,
    .review .heading__title,
    .atmosphere .heading__title,
    .price .heading__title,
    .heading__title {
        font-size: 48px;
        margin-bottom: 18px;
        letter-spacing: 2.88px;
    }

    .ready-for .heading__text,
    .choose-day .heading__text,
    .faq .heading__text,
    .price .heading__text,
    .packages-section .heading__text,
    .heading__text {
        font-size: 16px;
        max-width: 290px;
    }

    .tonight__mark {
        gap: 8px;
        margin: 0;
    }

    .tonight__mark img {
         width: 17px;
    }

    .tonight__mark span {
        font-size: 14px;
    }

    .schedule-card__time {
        font-size: 16px;
        padding: 12px 9px 12px 12px;
    }

    .schedule-card__content h3 {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .schedule-card__content p {
        font-size: 12px;
    }

    .schedule {
        gap: 10px;
        padding-left: 20px;
        max-width: 450px;
        margin-bottom: 35px;
    }

    .schedule-card::before {
        width: 6px;
        height: 6px;
        left: -23px;
    }

    .schedule-card picture {
        height: 72px;
        min-width: 104px;
        width: 25%;
    }

    .tonight {
        margin-bottom: 80px;
    }

    .tonight__more {
        gap: 6px;
        font-size: 18px;
    }

    .about {
        padding-block: 60px;
        margin-bottom: 80px;
    }

    .about .heading__title {
        flex-flow: column;
        text-align: center;
        gap: 0;
        margin-bottom: 18px;
    }

    .about__grid {
        grid-template-columns: repeat(2, 169px);
        grid-auto-rows: 169px;
        max-width: 350px;
    }

    .about__wrapper {
        padding: 17px 15px 13px;
    }

    .about__card {
        height: 169px;
    }

    .about__count {
        font-size: 48px;
        line-height: 38px;
    }

    .about__count span {
        font-size: 23px;
    }

    .about__icon {
        max-width: 24px;
        margin-bottom: 12px;
    }

    .about__title {
        font-size: 14px;
    }

    .why-section {
        margin-bottom: 80px;
    }

    .faq .heading,
    .price .heading,
    .packages-section .heading,
    .why-section .heading {
        margin-bottom: 22px;
    }

    .contact .heading__title,
    .why-section .heading__title {
        display: block;
        margin: 0 auto 18px;
        max-width: 280px;
    }

    .price .heading__subtitle,
    .why-section .heading__subtitle {
        padding-right: 22px;
        margin-bottom: 18px;
    }

    .why-section .heading__text {
        max-width: 290px;
    }

    .review .heading__title,
    .price .heading__title,
    .price .heading__subtitle,
    .packages-section .heading__title,
    .packages-section .heading__subtitle {
        margin-bottom: 18px;
    }

    .features__wrap {
        width: 930px;
    }

    .features__item {
        height: 415px;
    }

    .features__item:hover, .features__item.active {
        width: 234px;
    }

    .features__content h3 {
        font-size: 20px;
    }

    .features__content span {
        font-size: 12px;
    }

    .packages-section {
        padding-block: 105px 55px;
    }

    .package-card {
        max-width: 350px;
    }

    .package-card img {
        height: 290px;
    }

    .section-btn {
        font-size: 18px;
        padding: 5px 6px;
    }

    .package-card__body {
        width: 284px;
        padding: 14px 12px;
    }

    .package-card__body h3 {
        font-size: 18px;
    }

    .package-card__body span {
        font-size: 18px;
    }

    .package-card__link {
        font-size: 16px;
        max-width: 170px;
    }

    .price__grid {
        gap: 12px;
    }

    .price__link-title {
        font-size: 24px;
    }

    .price__text {
        font-size: 14px;
        max-width: 140px;
    }

    .price__price-item {
        font-size: 12px;
    }

    .price__price-item span {
        font-size: 24px;
        padding-inline: 4px;
    }

    .price__grid  {
        margin-bottom: 24px;
    }

    .price {
        margin-block-end: 80px;
        padding-top: 65px;
    }

    .atmosphere {
        padding-block: 100px 75px;
        margin-bottom: 80px;
    }

    .signature {
        margin-bottom: 80px;
    }

    .signature__wrap {
        height: auto;
        aspect-ratio: 16 / 9;
    }

    .signature__video {
        object-position: 50% 50%;
    }

    .signature .tabs__wrap {
        gap: clamp(14px, 4vw, 20px);
    }

    .signature__show-name {
        padding: 5px 3px;
        font-size: clamp(14px, 4vw, 18px);
    }

    .gallery {
        grid-template:
            'item-3 item-3' 600px
            'item-1 item-4' 188px
            'item-2 item-5' 188px / 1fr 1fr;
        gap: 12px;
    }

    .review {
        margin-bottom: 80px;
        padding-block: 45px;
    }

    .review .heading {
        margin-bottom: 26px;
    }

    .review__wrap {
        gap: 24px;
    }

    .review__rating {
        gap: 8px;
    }

    .review__icon {
        width: 64px;
        height: 64px;
    }

    .review__content h5 {
        font-size: 10px;
        letter-spacing: 0.3px;
    }

    .review__grade {
        font-size: 20px;
        gap: 8px;
        letter-spacing: 0.6px;
    }

    .review__stars li {
        width: 12px;
        height: 12px;
    }

    .review__text {
        font-size: 10px;
        letter-spacing: 0.3px;
        margin-bottom: 5px;
    }

    .review__link {
        font-size: 10px;
        letter-spacing: 0.3px;
    }

    .review__link svg {
        width: 12px;
        height: 12px;
    }

    .testimonials {
        height: auto;
    }

    .testimonials .swiper-controls {
        display: none;
    }

    .testimonials .swiper-wrapper {
        gap: 12px;
        height: 100%;
    }

    .testimonials__item {
        max-width: 450px;
        min-height: 130px;
        padding: 23px 20px 16px 46px;
        gap: 7px;
    }

    .testimonials__item::before {
        top: 14px;
        left: 14px;
        font-size: 50px;
        line-height: 50px;
    }

    .testimonials__text {
        font-size: 16px;
    }

    .testimonials__user {
        grid-template-columns: 30px 1fr;
    }

    .testimonials__icon {
        width: 30px;
        height: 30px;
    }

    .testimonials__title {
        font-size: 12px;
    }

    .testimonials__subtitle {
        font-size: 10px;
    }

    .map {
        gap: 16px;
        margin-bottom: 80px;
    }

    #map {
        height: 230px;
        margin: 0 20px;
        width: calc(100% - 40px);
    }

    .location {
        position: relative;
        top: 0;
        width: 100%;
        padding: 0 20px;
        transform: translateY(0);
        background: transparent;
        margin: 0 auto;
    }

    .location .heading {
        margin-bottom: 30px;
    }

    .location__address-content img {
        width: 13px;
    }

    .location__address-content {
        font-size: 22px;
    }

    .location__address {
        margin-bottom: 24px;
    }

    .location__schedules {
        padding: 20px;
        border: 1px solid #FFF;
        border-radius: 6px;
        background: rgba(0, 0, 0, 0.00);
        margin-bottom: 24px;
    }

    .location__li {
        position: relative;
    }

    .location__li:not(:last-child) {
        margin-bottom: 32px;
    }

    .location__li:not(:last-child)::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -16px;
        display: flex;
        width: 100%;
        border: 1px solid rgba(255, 255, 255, .14);
    }

    .location__position figure {
        width: 36px;
        height: 36px;
    }

    .location__position {
        font-size: 16px;
    }

    .location__time {
        font-size: 14px;
        padding: 8px;
        max-width: 94px;
    }

    .location__actions {
        gap: 16px;
        margin-bottom: 12px;
    }

    .location__text {
        font-size: 10px;
    }

    .btn-border {
        gap: 10px;
        padding: 15px 30px;
        margin: 0 auto;
        width: 100%;
    }

    .location__actions .btn-red {
        max-width: 100%;
        width: 100%;
    }

    .faq {
        padding-block: 178px;
        margin: 0;
    }

    .faq .heading__text {
        margin: 0 auto;
    }

    .accordion {
        padding: 14px;
    }

    .accordion__summary::before {
        font-size: 18px;
        padding-right: 12px;
    }

    .accordion__summary {
        align-items: center;
        gap: 12px;
    }

    .accordion__title {
        max-width: calc(100% - 62px);
        font-size: 16px;
    }

    .accordion__content {
        padding-top: 10px;
        padding-left: 22px;
        font-size: 14px;
    }

    .accordion__icon {
        width: 18px;
        height: 18px;
    }

    .accordion__icon::before {
        width: 9px;
        height: 1px;
    }

    .accordion__icon::after {
        width: 1px;
        height: 9px;
    }

    .faq__accordions {
        max-width: 450px;
        gap: 14px;
    }

    .booking {
        padding-block: 400px 75px;
        margin-bottom: 80px;
    }

    .booking .heading {
        margin-bottom: 24px;
    }

    .booking .heading__text {
        max-width: 290px;
    }

    .booking__actions {
        flex-flow: column;
        max-width: 450px;
    }

    .booking__li {
        font-size: 14px;
        gap: 12px;
        max-width: 90px;
        text-align: center;
    }

    .booking__li figure {
        flex-basis: 30px;
        width: 30px;
        height: 30px;
    }

    .booking::after {
        width: 100%;
        height: 400px;
        right: 0;
        left: 0;
        transform: translateX(0);
    }

    .booking__actions .btn-border,
    .location__actions .btn-border {
        font-size: 20px;
    }

    .booking__actions {
        gap: 16px;
    }

    .ready-for__actions,
    .booking__actions .btn-red {
        padding-block: 15px;
    }

    .footer {
        padding-block: 30px 15px;
    }

    .footer__logo {
        max-width: 236px;
    }

    .footer__content {
        gap: 20px;
    }

    .footer__contacts {
        gap: 16px;
    }

    .footer__wrapper--content {
        gap: 17px;
    }

    .footer__contacts-block {
        gap: 8px;
    }

    .footer__contacts-block h5 {
        font-size: 12px;
    }

    .footer__contacts-block address,
    .footer__contacts-block a {
        font-size: 18px;
    }

    .footer__text {
        gap: 7px;
        font-size: 14px;
    }

    .footer__wrapper {
        min-height: 410px;
        padding: 20px;
        gap: 12px;
    }

    .footer__wrap {
        gap: 16px;
    }

    .footer__times {
        gap: 12px;
        padding-inline: 0;
    }

    .footer__links {
        gap: 10px;
    }

    .footer__time-line {
        font-size: 18px;
        gap: 16px;
    }

    .footer__links-block h4 {
        font-size: 20px;
    }

    .footer__links-block h4::after {
        max-width: 23px;
    }

    .footer__links a {
        font-size: 18px;
        padding-bottom: 10px;
    }

    .footer__links a svg {
        width: 20px;
        height: 20px;
    }

    .footer__underline {
        padding: 20px;
    }

    .button-up {
        right: 20px;
        bottom: 40px;
        width: 48px;
        height: 48px;
    }

    .footer__underlinks {
        flex-flow: wrap;
        gap: 12px;
    }

    .footer__underlinks a:not(:last-child)::after {
        display: none;
    }

    .footer__underlinks a {
        width: calc(50% - 6px);
    }

    .footer__underlinks a:nth-child(even) {
        justify-content: flex-end;
    }

    .footer__copyright {
        font-size: 16px;
    }

    .choose-day {
        margin-bottom: 50px;
    }

    .choose-day__list li {
        font-size: 16px;
        padding: 10px 12px 10px 37px;
    }

    .choose-day__list li::before {
        left: 17px;
        width: 6px;
        height: 6px;
    }

    .choose-day__list li span {
        font-size: 14px;
    }

    .choose-day__info {
        font-size: 14px;
    }

    .choose-day__info svg {
        width: 24px;
        height: 24px;
    }

    .choose-day__tab-wrap {
        width: 100%;
    }

    .choose-day__tab {
        padding: 14px 2px;
        font-size: clamp(12px, 4vw, 14px);
    }

    .program-hero__video {
        object-position: 50% 50%;
    }

    .ready-for {
        padding-block: 65px;
        margin-bottom: 50px;
    }

    .ready-for .heading {
        margin-bottom: 15px;
    }

    .ready-for .heading__text {
        margin: 0 auto;
    }

    .ready-for__actions {
        flex-flow: column;
        gap: 16px;
        max-width: 450px;
        margin: 0 auto 20px;
    }

    .ready-for__actions .btn-red {
        font-size: 20px;
    }

    .ready-for__actions .btn-border {
        font-size: 18px;
    }

    .ready-for__link {
        font-size: 16px;
    }

    .heading__title mark {
        margin-left: 12px;
    }

    .contact {
        background: none;
        margin-bottom: 80px;
    }

    .contact__grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .contact__item {
        padding: 20px;
        max-width: 350px;
        margin: 0 auto;
    }

    .location-section {
        margin-bottom: 40px;
    }

    .location-section__wrap-top {
        gap: 10px;
    }

    .location-section .location__address-content {
        font-size: 22px;
        text-align: center;
        align-items: baseline;
    }

    .location__li:not(:last-child)::after {
        bottom: -13px;
    }

    .location-section .location__address-content img {
        transform: translateY(3px);
    }

    .location-section .location__li {
        padding: 20px;
    }

    .location-section .location__time {
        max-width: 100%;
        font-size: 14px;
    }

    .location-section .location__content {
        font-size: 14px;
    }

    .location-section .location__actions {
        flex-flow: column;
        gap: 14px;
        margin-bottom: 20px;
    }

    .location-section .location__text {
        margin-bottom: 25px;
        font-size: 14px;
    }

    .location-section__header {
        gap: 6px;
    }

    .location-section__title,
    .location-section__info p {
        font-size: 14px;
    }

    .menu {
        padding: 132px 15px 45px;
        background: url('./assets/images/header/background.png') no-repeat 50% 63% / 390px 300px, #000;
    background: image-set(url("assets/optimized/images/header/background.png.webp") type("image/webp"), url("./assets/images/header/background.png") type("image/png")) no-repeat 50% 63% / 390px 300px, #000;
    }

    .nav {
        gap: 28px;
    }

    .menu__footer {
        padding-top: 32px;
    }

    .nav a {
        font-size: 24px;
    }
}

@media (max-width: 767px) and (max-height: 850px) {
    .menu {
        padding-top: 117px;
        padding-bottom: 35px;
        gap: 27px;
    }

    .nav__list {
        gap: 20px;
    }

    .menu__footer {
        padding-top: 24px;
    }
}

@media (max-width: 767px) and (max-height: 750px) {
    .menu {
        padding-top: 102px;
        padding-bottom: 24px;
        gap: 18px;
    }

    .nav__list {
        gap: 16px;
    }

    .menu__footer {
        padding-top: 18px;
    }
}

@media (max-width: 767px) and (max-height: 650px) {
    .menu {
        padding-top: 88px;
        padding-bottom: 18px;
        gap: 14px;
    }

    .nav__list {
        gap: 12px;
    }

    .menu__footer {
        padding-top: 14px;
    }
}

@media (max-width: 369px) {
    .ready-for__actions,
    .booking__actions .btn-red,
    .location__actions .btn-red,
    .btn-red {
        padding-inline: 30px;
    }
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* HERO EDITORIAL RESPONSIVE OVERRIDES */
.home .header--transparent {
    z-index: 30;
    padding-block: 20px 28px;
    background: linear-gradient(180deg, rgba(4,4,12,.78) 0%, rgba(4,4,12,.24) 72%, transparent 100%);
    border-bottom: 0;
}

@media (max-width: 1199px) {
    .hero__content {
        width: min(560px, 52vw);
        margin-left: 0;
    }

    .hero__title {
        font-size: clamp(52px, 6vw, 70px);
    }

    .hero__focus-wrap {
        width: 50%;
    }

    .hero__video--focus {
        object-position: 50% 20%;
        filter: saturate(1.08) contrast(1.08) brightness(.97);
    }
}

@media (max-width: 1023px) {
    .home .header--transparent {
        padding-bottom: 20px;
    }

    .hero {
        min-height: 780px;
    }

    .hero .hero__container {
        margin: 0 auto;
        padding-top: 150px;
        padding-bottom: 100px;
    }

    .hero__content {
        width: min(520px, 58vw);
    }

    .hero__title {
        max-width: 520px;
        margin-bottom: 18px;
        text-align: left;
        font-size: clamp(48px, 6.5vw, 64px);
    }

    .hero__focus-wrap {
        width: 54%;
        opacity: .86;
    }

    .hero__video--focus {
        object-position: 50% 21%;
        filter: saturate(1.08) contrast(1.08) brightness(.96);
    }

    .hero__media-shade {
        background:
            linear-gradient(90deg, rgba(4,5,20,.98) 0%, rgba(5,6,23,.92) 37%, rgba(6,7,22,.44) 68%, rgba(5,5,16,.22) 100%),
            linear-gradient(180deg, rgba(0,0,0,.10), rgba(0,0,0,.34));
    }
}

@media (max-width: 767px) {
    .home .header--transparent {
        padding-block: 14px 12px;
        background: linear-gradient(180deg, rgba(3,3,10,.72), transparent);
    }

    .hero {
        align-items: flex-end;
        min-height: 720px;
        min-height: 100svh;
    }

    .hero__container {
        padding-top: 122px;
        padding-bottom: 74px;
    }

    .hero__content {
        width: 100%;
        margin: 0;
    }

    .hero__focus-wrap {
        inset: 0;
        width: 100%;
        height: 100%;
        opacity: 1;
        -webkit-mask-image: none;
        mask-image: none;
    }

    .hero__video--ambient {
        display: none;
    }

    .hero__video--focus {
        object-position: 50% 16%;
        filter: saturate(1.04) contrast(1.05) brightness(.74);
    }

    .hero__media-shade {
        z-index: 2;
        background:
            linear-gradient(180deg, rgba(3,3,12,.14) 0%, rgba(3,3,12,.18) 27%, rgba(3,4,16,.58) 58%, rgba(3,3,12,.93) 100%),
            linear-gradient(90deg, rgba(6,4,18,.58), rgba(7,5,17,.08));
    }

    .hero__title {
        max-width: 470px;
        margin-bottom: 14px;
        font-size: clamp(43px, 13vw, 59px);
        line-height: .95;
    }

    .hero__rating {
        gap: 9px;
        min-height: 42px;
        margin-bottom: 18px;
        padding: 8px 11px;
        border-radius: 10px;
        font-size: 12px;
    }

    .hero__rating-google {
        width: 22px;
        height: 22px;
        font-size: 11px;
    }

    .hero__rating-divider {
        height: 18px;
    }
}

@media (max-width: 479px) {
    .hero {
        min-height: 690px;
        min-height: 100svh;
    }

    .hero__container {
        padding-bottom: 54px;
    }

    .hero__title {
        font-size: clamp(40px, 13vw, 52px);
    }

    .hero__rating-name,
    .hero__rating-divider:first-of-type {
        display: none;
    }

    .hero__rating {
        max-width: 100%;
    }
}

/* HERO REFINEMENT — PREMIUM MINIMAL */
.home .logo {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    max-width: 290px;
    padding: 10px 22px;
    border: 0;
    border-image: none;
    background: transparent;
    overflow: visible;
    transition: none;
}

.home .logo::before,
.home .logo::after {
    content: none;
    display: none;
}

.home .logo:hover {
    transform: none;
    background: transparent;
    box-shadow: none;
    filter: none;
}

.home .logo img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: auto;
    filter: none;
    transition: none;
}

.home .logo:hover img {
    filter: none;
}

.hero__content {
    width: min(700px, 52vw);
}

.hero__title {
    max-width: 690px;
    margin: 0 0 30px;
    font-size: clamp(58px, 5.45vw, 88px);
    line-height: .97;
    letter-spacing: -.028em;
    text-wrap: balance;
}

.hero__title-accent {
    color: #d82134;
}

.hero__rating {
    gap: 16px;
    min-height: 68px;
    margin: 0 0 24px;
    padding: 14px 26px 14px 18px;
    border: 1px solid rgba(209,198,188,.40);
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(18,10,26,.62), rgba(9,6,16,.50));
    box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 14px 36px rgba(0,0,0,.20);
    backdrop-filter: blur(15px) saturate(1.15);
    -webkit-backdrop-filter: blur(15px) saturate(1.15);
    color: rgba(255,255,255,.80);
    font-size: 18px;
    letter-spacing: .005em;
}

.hero__rating-google {
    display: inline-block;
    width: auto;
    height: auto;
    border: 0;
    border-radius: 0;
    font-family: Arial, sans-serif;
    font-size: 31px;
    line-height: 1;
    font-weight: 700;
    background: conic-gradient(from -35deg, #4285f4 0 25%, #34a853 0 42%, #fbbc05 0 64%, #ea4335 0 82%, #4285f4 0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero__rating-name {
    color: rgba(255,255,255,.88);
    font-size: 20px;
}

.hero__rating-divider {
    height: 30px;
    background: rgba(255,255,255,.22);
}

.hero__rating strong {
    color: rgba(255,255,255,.94);
    font-size: 20px;
    font-weight: 500;
}

.hero__rating-star {
    color: #f8c94b;
    font-size: 24px;
    line-height: 1;
    text-shadow: 0 0 15px rgba(248,201,75,.20);
}

.hero__rating-reviews {
    color: rgba(255,255,255,.74);
    font-size: 18px;
}

.hero__perks {
    color: rgba(255,255,255,.82);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: .125em;
    text-transform: uppercase;
}

.hero__perk + .hero__perk {
    position: relative;
    padding-left: 28px;
}

.hero__perk + .hero__perk::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 1px;
    height: 18px;
    transform: translateY(-50%);
    background: rgba(211,184,125,.38);
}

.hero__perk svg {
    fill: none;
    stroke: #d7bd80;
    stroke-width: 1.45;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 0 10px rgba(215,189,128,.14));
}

@media (max-width: 1199px) {
    .hero__content {
        width: min(620px, 55vw);
    }

    .hero__title {
        font-size: clamp(54px, 6vw, 74px);
    }
}

@media (max-width: 1023px) {
    .home .logo {
        max-width: 240px;
        padding: 8px 16px;
    }

    .hero__content {
        width: min(590px, 62vw);
    }

    .hero__title {
        max-width: 580px;
        font-size: clamp(50px, 6.8vw, 68px);
    }
}

@media (max-width: 767px) {
    .home .logo {
        max-width: 190px;
        padding: 7px 12px;
    }

    .hero__content {
        width: 100%;
    }

    .hero__title {
        max-width: 500px;
        margin-bottom: 22px;
        font-size: clamp(43px, 12.5vw, 60px);
    }

    .hero__rating {
        gap: 10px;
        min-height: 54px;
        margin-bottom: 18px;
        padding: 10px 15px 10px 12px;
        font-size: 13px;
    }

    .hero__rating-google {
        font-size: 25px;
    }

    .hero__rating-name {
        font-size: 15px;
    }

    .hero__rating-divider {
        height: 23px;
    }

    .hero__rating strong {
        font-size: 15px;
    }

    .hero__rating-star {
        font-size: 18px;
    }

    .hero__perks {
        gap: 16px;
        font-size: 11px;
        letter-spacing: .095em;
    }

    .hero__perk {
        gap: 7px;
    }

    .hero__perk + .hero__perk {
        padding-left: 16px;
    }

    .hero__perk svg {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 479px) {
    .home .logo {
        max-width: 160px;
        padding: 6px 10px;
    }

    .hero__title {
        font-size: clamp(40px, 12vw, 51px);
    }

    .hero__rating-name {
        display: inline;
    }

    .hero__rating-divider:first-of-type {
        display: block;
    }

    .hero__rating-reviews {
        font-size: 11px;
    }

    .hero__perks {
        flex-wrap: wrap;
        row-gap: 10px;
    }
}

/* HERO FINISHING PASS — 2026-08-20 */
.home .logo {
    border: 0 !important;
    border-image: none !important;
}

.hero__scroll--arrow {
    position: absolute;
    left: 50%;
    bottom: 22px;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    transform: translateX(-50%);
    color: #e7c97f;
    text-decoration: none;
    filter: drop-shadow(0 0 10px rgba(214,178,99,.24));
}

.hero__scroll-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: inherit;
    opacity: .96;
    transition: transform .28s ease, color .28s ease, filter .28s ease, opacity .28s ease;
    animation: heroScrollArrow 1.9s ease-in-out infinite;
}

.hero__scroll-arrow svg {
    width: 34px;
    height: 34px;
    overflow: visible;
}

.hero__scroll-arrow::before {
    content: '';
    position: absolute;
    inset: 6px;
    z-index: -1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(224,199,139,.13) 0%, rgba(224,199,139,.06) 34%, rgba(224,199,139,0) 72%);
    filter: blur(6px);
    opacity: .8;
}

.hero__scroll--arrow:hover .hero__scroll-arrow {
    transform: translateY(2px) scale(1.05);
    color: #f0d998;
    filter: drop-shadow(0 0 14px rgba(231,201,127,.35));
}

@keyframes heroScrollArrow {
    0%, 100% {
        transform: translateY(0);
        opacity: .82;
    }

    50% {
        transform: translateY(7px);
        opacity: 1;
    }
}

@media (max-width: 767px) {
    .hero__scroll--arrow {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero__scroll-arrow {
        animation: none;
    }
}

/* PRICE PREVIEW: tablet composition */
@media (min-width: 768px) and (max-width: 1023px) {
    .price .container {
        max-width: none;
        padding-inline: 28px;
    }

    .price__grid {
        grid-template:
            'item-1 item-2' 210px
            'item-3 item-3' 230px /
            minmax(0, 1fr) minmax(0, 1fr);
        gap: 16px;
    }

    .price__item {
        padding: 28px;
    }

    .price__img {
        inset: 0;
        width: 100%;
        max-width: none;
        height: 100%;
    }

    .price__img::before,
    .price__item--3 .price__img::before {
        left: 0;
        width: 100%;
        background: linear-gradient(90deg, rgba(0, 0, 0, .96) 0%, rgba(0, 0, 0, .84) 38%, rgba(0, 0, 0, .45) 66%, rgba(0, 0, 0, .08) 100%);
    }

    .price__item--1 .price__img img {
        object-position: 50% 38%;
    }

    .price__item--2 .price__img img {
        object-position: 50% 20%;
    }

    .price__item--3 .price__img img {
        object-position: 50% 6%;
        transform: translateX(8%);
    }

    .price__body {
        position: relative;
        z-index: 1;
        width: 70%;
        gap: 10px;
    }

    .price__item--3 .price__body {
        width: 48%;
    }

    .price__item--2 h3,
    .price__item--3 h3,
    .price__text {
        max-width: none;
    }

    .price__link-title {
        display: block;
        font-size: 32px;
        line-height: .98;
    }

    .price__text {
        font-size: 16px;
        line-height: 1.32;
    }
}

/* PRICE PREVIEW: dedicated mobile cards */
@media (max-width: 767px) {
    .price {
        padding-block: 46px 58px;
    }

    .price .container {
        max-width: none;
        padding-inline: clamp(16px, 4.65vw, 20px);
    }

    .price .heading {
        margin: 0 auto 24px;
    }

    .price .heading__subtitle {
        justify-content: center;
        margin-bottom: 14px;
    }

    .price .heading__title {
        margin-bottom: 12px;
        font-size: clamp(48px, 14vw, 62px);
        line-height: .95;
        text-align: center;
    }

    .price .heading__text {
        width: 100%;
        max-width: none;
        margin-inline: auto;
        font-size: clamp(15px, 4.1vw, 17px);
        line-height: 1.35;
        text-align: center;
    }

    .price__grid {
        grid-template: none;
        grid-template-columns: minmax(0, 1fr);
        grid-auto-rows: clamp(155px, 42vw, 172px);
        gap: 16px;
        margin-bottom: 30px;
    }

    .price__item,
    .price__item--1,
    .price__item--2,
    .price__item--3 {
        grid-area: auto;
        width: 100%;
        height: 100%;
        min-height: 0;
        padding: 20px 22px;
        border-image-source: radial-gradient(67.73% 215.4% at 50% 50%, rgba(216, 33, 52, .4) 0%, rgba(53, 7, 12, .24) 100%);
    }

    .price__item:hover {
        transform: none;
    }

    .price__img {
        inset: 0;
        width: 100%;
        max-width: none;
        height: 100%;
    }

    .price__img::before,
    .price__item--3 .price__img::before {
        left: 0;
        width: 100%;
        background: linear-gradient(90deg, rgba(0, 0, 0, .97) 0%, rgba(0, 0, 0, .9) 36%, rgba(0, 0, 0, .5) 62%, rgba(0, 0, 0, .05) 100%);
    }

    .price__item--1 .price__img img {
        object-position: 50% 38%;
    }

    .price__item--2 .price__img img {
        object-position: 52% 18%;
    }

    .price__item--2 .price__img {
        left: auto;
        right: -1%;
        width: 92%;
    }

    .price__item--3 .price__img img {
        object-position: 50% 8%;
        transform: translateX(3%);
    }

    .price__item--3 .price__img {
        left: auto;
        right: -1%;
        width: 96%;
    }

    .price__body {
        position: relative;
        z-index: 1;
        width: 62%;
        gap: 8px;
    }

    .price__item--3 .price__body {
        width: 74%;
    }

    .price__item--2 h3,
    .price__item--3 h3,
    .price__text {
        max-width: none;
    }

    .price__item--3 .price__text {
        max-width: 84%;
    }

    .price__link-title {
        display: block;
        font-size: clamp(28px, 7.5vw, 32px);
        line-height: .94;
    }

    .price__text {
        font-size: clamp(14px, 3.75vw, 15px);
        line-height: 1.3;
    }

    .price .section-btn {
        margin-inline: auto;
        padding: 7px 6px 6px;
        font-size: 18px;
    }

    .button-up {
        right: 10px;
        bottom: max(12px, env(safe-area-inset-bottom));
        width: 40px;
        height: 40px;
        padding: 9px;
    }

    .button-up.is-visible.is-price-overlap {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(10px);
    }
}


/* Poster and moving media deliberately share every existing crop/filter rule.
   Keep video compositing active beneath the poster until a presented frame. */
.hero [data-hero-video]:not(.has-presented-frame) {
    opacity: 0;
}
.hero__poster {
    pointer-events: none;
}
.hero__poster.hero__video--focus {
    position: absolute;
    inset: 0;
}
.hero [data-hero-video].has-presented-frame + .hero__poster {
    visibility: hidden;
}

/* Packages and Booking: preserve the original visible crop at each breakpoint.
 * The preload property makes no request until the existing media scheduler uses it.
 * Crop definitions and source hashes: assets/optimized/backgrounds/manifest.json.
 */
.packages-section {
    --darling-background-preload: url('assets/images/packages/section-bg.png');
}
@supports (background-image: image-set(url('') type('image/webp'))) {
    .packages-section {
        --darling-background-preload: url('assets/optimized/backgrounds/packages-desktop.webp');
    }
}
.packages-section:where(html:not(.darling-media-scheduling) *, body:not(.home) *, [data-media-ready], [data-media-ready] *) {
    background-image: url('assets/images/packages/section-bg.png');
    background-image: image-set(url('assets/optimized/backgrounds/packages-desktop.webp') type('image/webp'), url('assets/images/packages/section-bg.png') type('image/png'));
}
.booking {
    --darling-background-preload: url('assets/optimized/backgrounds/booking-desktop.png');
}
@supports (background-image: image-set(url('') type('image/webp'))) {
    .booking {
        --darling-background-preload: url('assets/optimized/backgrounds/booking-desktop.webp');
    }
}
.booking:where(html:not(.darling-media-scheduling) *, body:not(.home) *, [data-media-ready], [data-media-ready] *)::after {
    background-image: url('assets/optimized/backgrounds/booking-desktop.png');
    background-image: image-set(url('assets/optimized/backgrounds/booking-desktop.webp') type('image/webp'), url('assets/optimized/backgrounds/booking-desktop.png') type('image/png'));
}

@media (min-width: 768px) and (max-width: 1023px) {
    .packages-section {
        --darling-background-preload: url('assets/optimized/backgrounds/packages-tablet.png');
    }
    @supports (background-image: image-set(url('') type('image/webp'))) {
        .packages-section {
            --darling-background-preload: url('assets/optimized/backgrounds/packages-tablet.webp');
        }
    }
    .packages-section:where(html:not(.darling-media-scheduling) *, body:not(.home) *, [data-media-ready], [data-media-ready] *) {
        background-image: url('assets/optimized/backgrounds/packages-tablet.png');
        background-image: image-set(url('assets/optimized/backgrounds/packages-tablet.webp') type('image/webp'), url('assets/optimized/backgrounds/packages-tablet.png') type('image/png'));
    }
    .booking {
        --darling-background-preload: url('assets/optimized/backgrounds/booking-tablet.png');
    }
    @supports (background-image: image-set(url('') type('image/webp'))) {
        .booking {
            --darling-background-preload: url('assets/optimized/backgrounds/booking-tablet.webp');
        }
    }
    .booking:where(html:not(.darling-media-scheduling) *, body:not(.home) *, [data-media-ready], [data-media-ready] *)::after {
        background-image: url('assets/optimized/backgrounds/booking-tablet.png');
        background-image: image-set(url('assets/optimized/backgrounds/booking-tablet.webp') type('image/webp'), url('assets/optimized/backgrounds/booking-tablet.png') type('image/png'));
    }
    /* Original canvas cropped to source x=406..1222, at the same 1895/1503 scale. */
    .booking::after {
        width: 1028.82235528942px;
        transform: translateX(calc(-50% + .600731869594028px));
    }
}

@media (max-width: 767px) {
    .packages-section {
        --darling-background-preload: url('assets/optimized/backgrounds/packages-mobile.png');
    }
    @supports (background-image: image-set(url('') type('image/webp'))) {
        .packages-section {
            --darling-background-preload: url('assets/optimized/backgrounds/packages-mobile.webp');
        }
    }
    .packages-section:where(html:not(.darling-media-scheduling) *, body:not(.home) *, [data-media-ready], [data-media-ready] *) {
        background-image: url('assets/optimized/backgrounds/packages-mobile.png');
        background-image: image-set(url('assets/optimized/backgrounds/packages-mobile.webp') type('image/webp'), url('assets/optimized/backgrounds/packages-mobile.png') type('image/png'));
    }
    .booking {
        --darling-background-preload: url('assets/images/booking/section-bg.jpg');
    }
    @supports (background-image: image-set(url('') type('image/webp'))) {
        .booking {
            --darling-background-preload: url('assets/optimized/backgrounds/booking-mobile.webp');
        }
    }
    .booking:where(html:not(.darling-media-scheduling) *, body:not(.home) *, [data-media-ready], [data-media-ready] *)::after {
        background-image: url('assets/images/booking/section-bg.jpg');
        background-image: image-set(url('assets/optimized/backgrounds/booking-mobile.webp') type('image/webp'), url('assets/images/booking/section-bg.jpg') type('image/jpeg'));
    }
}
