
/* ===== Блок Hero ===== */
.finch-hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: var(--black-color);
    color: var(--white-color);
    isolation: isolate;
}

.finch-hero__topbar {
    position: absolute;
    top: 22px;
    left: 40px;
    right: 40px;
    z-index: 5;

    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
}

.finch-hero__topcell {
    min-width: 0;
}

.finch-hero__topcell--left {
    justify-self: start;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.finch-hero__topcell--center {
    justify-self: center;
}

.finch-hero__topcell--right {
    justify-self: end;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.finch-hero__toptext {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 10px 18px;

    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.22);
    backdrop-filter: var(--glass);
    -webkit-backdrop-filter: var(--glass);

    color: var(--white-color);
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.3;
    text-decoration: none;
}

.finch-hero__toptext--phone:hover {
    color: var(--hover-btn-color);
    box-shadow: 0 5px 24px var(--hover-btn-shadow);
    background: var(--hover-btn-background);
    border-color: var(--hover-btn-border);
}



.finch-hero__logo-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.finch-hero__logo {
    display: block;
    max-width: 180px;
    max-height: 74px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Чтобы контент hero не лез под верхнюю панель */
.finch-hero__container {
    padding-top: 140px;
}

.finch-hero__media {
    position: absolute;
    inset: 0;
    z-index: -3;
}

.finch-hero__image,
.finch-hero__video,
.finch-hero__overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.finch-hero__image {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
    display: none;
}



.finch-hero__video {
    object-fit: cover;
    z-index: 2;
    opacity: 0;
    transition: opacity 3s ease;
    pointer-events: none;
}

.finch-hero--video-active .finch-hero__video {
    opacity: .7;
}

.finch-hero__overlay {
    z-index: 3;
    background: linear-gradient(to bottom, rgba(8, 12, 16, 0.22) 0%, rgba(8, 12, 16, 0.34) 30%, rgba(8, 12, 16, 0.52) 70%, rgb(5 8 13) 100%);
}

.finch-hero__container {
    position: relative;
    z-index: 2;
    width: min(1400px, calc(100% - 48px));
    margin: 0 auto;
    min-height: calc(100vh - 54px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 200px 0 90px;
}

.finch-hero__content {
    width: 100%;
    text-align: center;
}

.finch-hero__heading {
    margin-bottom: 34px;
}

.finch-hero__subtitle {
    margin: 0 0 18px;
    font-family: 'microgrammanormal', sans-serif;
    line-height: 1.05;
    letter-spacing: 0.4em;
    -webkit-text-stroke: 1px var(--secondary-color-light);
    font-size: clamp(2.2rem, 2vw, 4.7rem);
    text-transform: uppercase;
}

.finch-hero__subtitle span {
    display: block;
    font-size: clamp(1.2rem, 1vw, 3.7rem);
    letter-spacing: 0.4em;
    line-height: 1.1;
    margin: 1rem;
}

.finch-hero__title {
    margin: 40px 0 100px 0;
    width: 100%;
}

.finch-hero__buttons {
    display: grid;
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    gap: 28px;
    align-items: center;
    width: min(1600px, 100%);
    margin: 0 auto 28px;
}

.finch-hero__btn {
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 26px;
    border: 0px solid var(--primary-color);
    border-radius: 26px;
    background: rgb(255 255 255 / 12%);
    backdrop-filter: var(--glass);
    -webkit-backdrop-filter: var(--glass);
    color: var(--secondary-color-light);
    font-size: clamp(1.1rem, 1.55vw, 2rem);
    line-height: 1.1;
    text-align: center;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    box-shadow: inset 0 0 0 1px var(--primary-color),
    0 8px 24px rgba(0, 0, 0, 0.18);
    transition: transform 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.finch-hero__btn:hover {
    background: rgba(10, 22, 25, 0.78);
    color: var(--hover-btn-color);
    box-shadow: 0 5px 24px var(--hover-btn-shadow);
    background: var(--hover-btn-background);
    border-color: var(--hover-btn-border);
    font-weight: 900;
}

.finch-hero__schedule {
    margin: 0;
    font-weight: 400;
    color: var(--white-color);
    font-size: clamp(1.2rem, 1.8vw, 2.2rem);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.finch-hero__ticker {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 4;
    height: 54px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.finch-hero__ticker-track {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    width: max-content;
    white-space: nowrap;
    will-change: transform;
}

.finch-hero__ticker-group {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.finch-hero__ticker-text {
    display: block;
    white-space: nowrap;
    flex: 0 0 auto;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1;
    color: var(--white-color);
    padding-right: 60px;
}

@keyframes finchTickerLoop {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

span.ya-rating-card__value {
    font-size: 1.2rem;
    padding: 0 .2rem;
    font-weight: 500;
}
span.ya-rating-card__stars {
    color: var(--primary-color);
    padding: 0 .4rem;
}
span.ya-rating-card__text {
    font-size: .7rem;
    font-weight: 500;
}
.bage-ya {
    padding: 0 16px 0 12px;
}
.bage-ya:hover span.ya-rating-card__stars{
    color: var(--hover-btn-color);
}

/* ===== Блок мероприятий ===== */
.events-showcase {
    position: relative;
    padding: 150px 0;
    overflow: hidden;
}



.events-showcase__bg::after {
    filter: hue-rotate(140deg);
    opacity: 0.16;
    animation-duration: 14s;
    transform: scaleX(-1);
}

@keyframes eventLinesMove {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
    100% {
        transform: translateY(0);
    }
}

.events-showcase__container {
    position: relative;
    z-index: 2;
    width: min(2400px, calc(100% - 48px));
    margin: 0 auto;
}

.events-showcase__head {
    margin-bottom: 28px;
    text-align: center;
}

.events-showcase__title {
    letter-spacing: 0.1em;
    margin: 0;
    color: var(--secondary-color-light);
    font-size: clamp(1.6rem, 2.55vw, 3rem);
    font-weight: 400;
    line-height: 1.1;
    text-align: center;
    text-transform: uppercase;
}

.events-slider {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
}

.events-slider__viewport {
    overflow: hidden;
    touch-action: pan-y;
    width: 100%;
}

.events-slider__track {
    display: flex;
    gap: 20px;
    transition: transform 0.45s ease;
    will-change: transform;
}

.event-card {
    flex: 0 0 calc((100% - 60px) / 3);
    min-width: 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: var(--glass);
    border-radius: 22px;
    background: var(--garadient-0);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
    overflow: hidden;
}

.event-card__image-wrap {
    aspect-ratio: 10 / 10;
    overflow: hidden;
}

.event-card__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-card__body {
    padding: 18px 18px 20px;
    display: flex;
    flex-direction: column;
    min-height: 220px;
}

.event-card__title {
    margin: 0 0 12px;
    font-size: 1.1rem;
    line-height: 1.15;
    color: var(--white-color);
    text-transform: uppercase;
}

.event-card__excerpt {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.event-card__more {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 190px;
    min-height: 48px;
    padding: 12px 20px;

    border: 1px solid var(--primary-color);
    border-radius: 999px;
    background: transparent;
    color: var(--white-color);

    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1;
    text-align: center;
    text-decoration: none;

    cursor: pointer;
    box-sizing: border-box;
    appearance: none;
    -webkit-appearance: none;

    transition:
            background 0.25s ease,
            transform 0.25s ease,
            box-shadow 0.25s ease;
}

.event-card__more:hover {
    color: var(--hover-btn-color);
    box-shadow: 0 5px 24px var(--hover-btn-shadow);
    background: var(--hover-btn-background);
    border-color: var(--hover-btn-border);
}

.events-slider__nav {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    border: none;
    border-radius: 50%;
    background: var(--hover-btn-color);
    color: var(--white-color);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    transition: 0.25s ease;
}

.events-slider__nav:hover {
    background: var(--primary-color-hover);
}

/* ===== Модалка ===== */
.event-modal[hidden] {
    display: none;
}

.event-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.event-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.78);
}

.event-modal__dialog {
    position: relative;
    z-index: 2;
    width: min(1120px, calc(100% - 32px));
    max-height: calc(100vh - 40px);
    margin: 0;
    background: #070b11;
    border-radius: 24px;
    overflow: auto;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.48);
}

.event-modal__close {
    position: absolute;
    top: 12px;
    right: 14px;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    z-index: 3;
}

.event-modal__content {
    display: grid;
    grid-template-columns: minmax(320px, 520px) minmax(320px, 1fr);
    gap: 36px;
    align-items: start;
    padding: 34px;
}

.event-modal__image-wrap {
    border-radius: 18px;
    overflow: hidden;
    background: #0b1118;
}

.event-modal__image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.event-modal__info {
    color: var(--white-color);
}

.event-modal__title {
    margin: 0 0 12px;
    font-size: clamp(1.9rem, 2.8vw, 2rem);
    line-height: 1;
    text-transform: uppercase;
    color: var(--white-color);
}

.event-modal__subtitle {
    margin-bottom: 18px;
    color: var(--primary-color);
    font-size: 0.95rem;
    line-height: 1.5;
    font-weight: 900;
}

.event-modal__text {
    margin-bottom: 18px;
}

.event-modal__text p {
    margin: 0 0 10px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.98rem;
    line-height: 1.65;
}

.event-modal__list {
    margin: 0 0 18px;
    padding: 0;
    list-style: none;
}

.event-modal__list li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.98rem;
    line-height: 1.6;
}

.event-modal__list li::before {
    content: '—';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.event-modal__bottom {
    text-align: center;
    padding-bottom: 34px;
}

.event-modal__note {
    display: flex;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.98rem;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    align-items: flex-start;
}

.event-modal__note li {
    text-align: left;
}

.event-modal__note h2 {
    text-align: center;
}

.event-modal__note p {
    text-align: center;
    margin: 0;
}

.event-modal__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 26px;
    border: 2px solid var(--primary-color);
    border-radius: 999px;
    background: transparent;
    color: var(--white-color);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.event-modal__button:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    cursor: pointer;
}

/* popup scrollbar */
.event-modal__dialog {
    overflow: auto;
    scrollbar-width: thin; /* Firefox */
    scrollbar-color: var(--primary-color) rgba(255, 255, 255, 0); /* Firefox */
}

/* Chrome, Edge, Safari */
.event-modal__dialog::-webkit-scrollbar {
    width: 10px;
}

.event-modal__dialog::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 999px;
}

.event-modal__dialog::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #e0b85a 0%, #b98a2e 100%);
    border-radius: 999px;
    border: 2px solid rgba(7, 10, 18, 0.9);
}

.event-modal__dialog::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #f0c96b 0%, #c99735 100%);
}

.event-modal__dialog::-webkit-scrollbar-corner {
    background: transparent;
}

/* ===== Блок: залы и кабинки ===== */

.rooms-showcase__container {
    width: min(1600px, calc(100% - 48px));
    margin: 0 auto;
}

.rooms-showcase__head {
    margin-bottom: 28px;
    color: var(--secondary-color-light);
}

.rooms-showcase__title {
    letter-spacing: 0.1em;
    margin: 0;
    font-size: clamp(1.6rem, 2.55vw, 3rem);
    font-weight: 400;
    line-height: 1.1;
    text-align: center;
    text-transform: uppercase;
    text-shadow: 0 0 70px var(--hover-btn-background);
}

.rooms-showcase__subtitle {
    margin: 0 auto;
    max-width: 760px;
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
    padding: 1rem;
}

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

.room-card {
    backdrop-filter: var(--glass);
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 24px;
    background: linear-gradient(137deg, rgb(102 102 102 / 0%), rgb(0 0 0 / 0%));
    overflow: hidden;
    box-shadow: 15px 11px 20px 3px rgb(48 48 48 / 55%);
}

.room-card__slider {
    position: relative;
    height: 420px;
    overflow: hidden;
    border-radius: 18px;
    background: rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.room-card__slides {
    display: flex;
    height: 100%;
    transform: translateX(var(--x, 0%));
    transition: transform .28s ease;
}

.room-card__slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
}

.room-card__slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.room-card__badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(0, 0, 0, 0.36);
    color: rgba(255, 255, 255, 0.88);
    font-size: 13px;
    font-weight: 800;
    backdrop-filter: var(--glass);
    -webkit-backdrop-filter: var(--glass);
}

.room-card__nav {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 14px;
    pointer-events: none;
}

.room-card__arrow {
    pointer-events: auto;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgb(202 122 1);
    color: rgba(255, 255, 255, 0.92);
    display: grid;
    place-items: center;
    cursor: pointer;
    font-size: 24px;
    line-height: 1;
    backdrop-filter: var(--glass);
    -webkit-backdrop-filter: var(--glass);
    transition: transform .15s ease, background .15s ease, border-color .15s ease;
}

.room-card__arrow:hover {
    border-color: rgba(255, 255, 255, 0.26);
    box-shadow: 1px 1px 14px 4px rgb(245 210 50);
    /* background: rgba(0, 0, 0, 0.44); */
}

.room-card__arrow[disabled] {
    opacity: .35;
    cursor: not-allowed;
}

.room-card__dots {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 12px;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.room-card__dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(0, 0, 0, 0.28);
    cursor: pointer;
    transition: transform .15s ease, background .15s ease, border-color .15s ease;
}

.room-card__dot.is-active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.1);
}

.room-card__meta {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.50);
    font-size: 14px;
}

.room-card__sep {
    opacity: .45;
}

.room-card__title {
    margin: 10px 0 0;
    font-size: 30px;
    font-weight: 900;
    line-height: 1.1;
    color: var(--white-color);
}

.room-card__tagline {
    margin: 6px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 16px;
    line-height: 1.5;
}

.room-card__actions {
    margin-top: 18px;
    display: flex;
    gap: 12px;
    font-weight: 700;
}

.room-card__btn {
    width: 100%;
    min-height: 54px;
    padding: 16px;
    border-radius: 16px;
    font-size: 16px;
    text-align: center;
    transition: transform .15s ease, background .15s ease, border-color .15s ease, filter .15s ease;
}

.room-card__btn:hover {

}

.room-card__btn--primary {
    filter: saturate(1.05);
    border: 1px solid var(--primary-color);
    border-radius: 999px;
    color: var(--hover-btn-color);
    background: var(--hover-btn-background);
    border-color: var(--hover-btn-border);
}

.room-card__btn--primary:hover {
    color: var(--white-color);
    box-shadow: 0 5px 24px rgb(245 210 50);
    background: rgb(0 0 0);
    border-color: var(--hover-primary-border);
}

.room-card__btn--ghost {
    border: 1px solid var(--primary-color);
    border-radius: 999px;
    background: transparent;
    color: var(--white-color);
}

.room-card__btn--ghost:hover {
    color: var(--hover-btn-color);
    box-shadow: 0 5px 24px var(--hover-btn-shadow);
    background: var(--hover-btn-background);
    border-color: var(--hover-btn-border);
}

/* ===== Блок: Кухня / Бар ===== */
.kb-showcase {
    background: #05080d;
}

.kb-showcase__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
}

.kb-card {
    position: relative;
    min-height: 760px;
    overflow: hidden;
    isolation: isolate;
    background: #090d12;
}

.kb-card__bg {
    position: absolute;
    inset: 0;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    transform: scale(1);
    transition: transform 0.7s ease;
    z-index: -3;
}

.kb-card__overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.kb-card__content {
    position: absolute;
    left: 40px;
    right: 40px;
    bottom: 42px;
    max-width: 640px;
    z-index: 2;
}

.kb-card__title {
    margin: 0 0 18px;
    font-weight: 400;
    font-size: clamp(2.2rem, 3vw, 3.4rem);
    line-height: 1;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: var(--white-color);
}

.kb-card__text {
    margin: 0 0 28px;
    max-width: 620px;
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(1rem, 1.1vw, 1.3rem);
    line-height: 1.7;
    font-weight: 400;
}

.kb-card__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 154px;
    min-height: 58px;
    padding: 14px 26px;
    border: 2px solid var(--primary-color);
    border-radius: 999px;
    background: transparent;
    color: var(--white-color);
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    transition:
            background 0.25s ease,
            transform 0.25s ease,
            box-shadow 0.25s ease,
            border-color 0.25s ease;
}

.kb-card__button:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.kb-card:hover .kb-card__bg {
    transform: scale(1.04);
}

/* ===== Страница меню ===== */
.menu-page {
    color: rgba(255,255,255,.92);
    padding: 24px 0 90px;
}

.menu-page__topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 16px;
    background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(0,0,0,.55);
    position: sticky;
    top: 12px;
    z-index: 50;
    backdrop-filter: var(--glass);
    -webkit-backdrop-filter: var(--glass);
}

.menu-page__intro {
    margin: 1rem;
}

.menu-page__brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    white-space: nowrap;
    color: rgba(255,255,255,.88);
}

.menu-page__brand:hover {
    color: var(--primary-color);
}

.menu-page__dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--primary-color);
    flex: 0 0 auto;
}

.menu-page__tabs {
    display: flex;
    align-items: center;
    gap: 10px;
}

.menu-page__tab {
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(0,0,0,.20);
    color: rgba(255,255,255,.88);
    border-radius: 999px;
    padding: 9px 32px;
    white-space: nowrap;
    font-weight: 800;
    font-size: 13px;
    text-decoration: none;
    transition: .2s ease;
}

.menu-page__tab:hover {
    transform: translateY(-1px);
    border-color: rgba(255,255,255,.22);
}

.menu-page__tab.is-active {
    border: 1px solid var(--primary-color);
}

.menu-page__cats {
    margin-top: 28px;
    padding: 10px 12px;
    background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(0,0,0,.55);
    position: sticky;
    top: 112px;
    z-index: 40;
    backdrop-filter: var(--glass);
    -webkit-backdrop-filter: var(--glass);
    overflow: auto;
    scrollbar-width: none;
}

.menu-page__cats::-webkit-scrollbar {
    display: none;
}

.menu-page__catrow {
    display: flex;
    gap: 10px;
    align-items: center;
    min-width: max-content;
}

.menu-page__catbtn {
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(0,0,0,.20);
    color: rgba(255,255,255,.88);
    border-radius: 999px;
    padding: 9px 32px;
    white-space: nowrap;
    font-weight: 800;
    font-size: 13px;
    text-decoration: none;
    transition: .2s ease;
}

.menu-page__catbtn.is-active{
    border: 1px solid var(--primary-color);
}

.menu-page__catbtn:hover {
    transform: translateY(-1px);
    border-color: rgba(255,255,255,.22);
}

.menu-section {
    margin-top: 18px;
}

.menu-section__title {
    margin: 32px 20px 10px;
    font-size: 30px;
    line-height: 1.1;
    color: #fff;
}

.menu-section__title span {
    color: rgba(255,255,255,.62);
    font-weight: 700;
    font-size: 13px;
    margin-left: 8px;
    font-family: inherit;
}

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

.menu-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .02));
    backdrop-filter: var(--glass);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0,0,0,.55);
}

.menu-card:hover {
    cursor: pointer;
    box-shadow:
            0 0 4px #fcf6b8,
            0 0 10px rgba(255, 200, 0, 0.95),
            0 0 18px rgba(255, 190, 0, 0.75),
            0 0 30px rgba(255, 170, 0, 0.55),
            0 0 44px rgba(255, 150, 0, 0.35);
}

.menu-card:hover .menu-card__title {
    cursor: pointer;
    box-shadow: none;
    background: transparent;
    text-shadow:
            0 0 4px #000000,
            0 0 10px rgba(255, 200, 0, 0.95),
            0 0 18px rgba(255, 190, 0, 0.75),
            0 0 30px rgba(255, 170, 0, 0.55),
            0 0 44px rgba(255, 150, 0, 0.35);
}

.menu-card__image-wrap {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.menu-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgb(var(--accent-rgb), .16);
    border: 1px solid rgb(var(--accent-rgb), .38);
    color: var(--white-color);
    font-size: 12px;
    font-weight: 800;
}

.menu-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.menu-card__body {
    padding: 14px;
    display: flex;
    flex-direction: column;
    align-items: baseline;
    justify-content: space-between;
    align-content: space-around;
}

.menu-card__top {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    align-items: baseline;
    margin-bottom: 10px;
}

.menu-card__title {
    margin: 0;
    font-size: 16px;
    line-height: 1.2;
    color: var(--white-color);
}

.menu-card__price {
    flex: 0 0 auto;
    font-weight: 900;
    color: var(--primary-color);
    white-space: nowrap;
    font-size: 1.3rem;
}

.menu-card__desc {
    color: rgba(255,255,255,.72);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.menu-card__meta {
    color: rgba(255,255,255,.52);
    font-size: 1rem;
}

/* ===== Страница зала / кабинки ===== */


.room-page__crumbs {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    color: rgba(255,255,255,.62);
    font-size: 14px;
    margin-bottom: 14px;
}

.room-page__crumbs a {
    color: rgba(255,255,255,.78);
    text-decoration: none;
    border-bottom: 1px dashed rgba(255,255,255,.22);
}

.room-page__hero {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.room-page__meta {
    margin: 10px 0 0;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.room-page__pill {
    backdrop-filter: var(--glass);
    -webkit-backdrop-filter: var(--glass);
    padding: 7px 30px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(0,0,0,.22);
    color: rgba(255,255,255,.86);
    font-size: 14px;
}

.room-page__hero-right {
    min-width: 240px;
}


.room-page__layout {
    display: grid;
    grid-template-columns: 1.55fr .85fr;
    gap: 22px;
    align-items: start;
}

.room-gallery,
.room-sidecard__card,
.room-description__card,
.room-other__carousel {
    background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 24px;
    box-shadow: 0 22px 60px rgba(0,0,0,.55);
}

.room-gallery {
    padding: 16px;
    backdrop-filter: var(--glass);
    -webkit-backdrop-filter: var(--glass);
}

.room-gallery__grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 12px;
}

.room-gallery__main,
.room-gallery__thumb,
.room-gallery__mini {
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(0,0,0,.18);
}

.room-gallery__main {
    border-radius: 16px;
    height: 360px;
}

.room-gallery__thumb {
    border-radius: 14px;
    height: 174px;
}

.room-gallery__mini {
    border-radius: 14px;
    height: 110px;
}

.room-gallery__main img,
.room-gallery__thumb img,
.room-gallery__mini img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.room-gallery__side {
    display: grid;
    gap: 12px;
}

.room-gallery__more {
    margin-top: 12px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 12px;
}

.room-sidecard__card {
    backdrop-filter: var(--glass);
    -webkit-backdrop-filter: var(--glass);
    padding: 18px;
    position: sticky;
    top: 16px;
}

.room-sidecard__title,
.room-description__title {
    margin: 0 0 12px;
    font-size: 20px;
    color: #fff;
}

.room-sidecard__list {
    margin: 0;
    padding-left: 18px;
    color: rgba(255,255,255,.78);
    line-height: 1.7;
}

.room-sidecard__cta {
    margin-top: 16px;
    text-align: center;
}

.room-description {
    margin: 2rem 0 4rem;
}

.room-description__card {
    backdrop-filter: var(--glass);
    -webkit-backdrop-filter: var(--glass);
    padding: 20px;
}

.room-description__card p,
.room-description__content p {
    margin: 0 0 12px;
    color: rgba(255,255,255,.78);
    line-height: 1.7;
}

.room-other {
    margin-top: 26px;
}

.room-other__title {
    font-size: 2rem;
    font-family: 'microgrammanormal', sans-serif;
    font-weight: 500;
    color: #fff;
}

.room-other__carousel {
    backdrop-filter: var(--glass);
    -webkit-backdrop-filter: var(--glass);
    position: relative;
    padding: 14px;
    overflow: hidden;
    margin: 2rem 0 4rem;
}

.room-other__track {
    display: flex;
    gap: 16px;
    overflow: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: 6px;
}

.room-other__track::-webkit-scrollbar {
    display: none;
}

.room-mini-card {
    flex: 0 0 calc(100% / 3);
    scroll-snap-align: start;
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(0,0,0,.16);
    overflow: hidden;
}

.room-mini-card__img {
    border-bottom: 1px solid rgba(255,255,255,.10);
}

.room-mini-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.room-mini-card__body {
    padding: 12px 12px 14px;
}

.room-mini-card__name {
    margin: 0;
    font-size: 16px;
    font-weight: 900;
    color: #fff;
}

.room-mini-card__meta {
    margin: 6px 0 12px;
    color: rgba(255,255,255,.62);
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 14px;
}

.room-card__slide--empty {
    background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
}

html body .fancybox__backdrop {
    background: rgba(5, 8, 13, 0.92) !important;
}

html body .fancybox__container {
    --fancybox-bg: rgba(5, 8, 13, 0.92) !important;
    --fancybox-color: #f3f5f7 !important;
    --fancybox-accent-color: #e0a927 !important;
    --fancybox-toolbar-bg: rgba(14, 18, 27, 0.78) !important;
    --fancybox-toolbar-shadow: 0 10px 30px rgba(0, 0, 0, 0.28) !important;
    --fancybox-button-bg: rgba(255, 255, 255, 0.06) !important;
    --fancybox-button-hover-bg: rgba(224, 169, 39, 0.18) !important;
    --fancybox-button-color: #f3f5f7 !important;
    --fancybox-button-hover-color: #e0a927 !important;
    --fancybox-button-svg-width: 22px !important;
    --fancybox-button-svg-height: 22px !important;
    --fancybox-thumbs-width: 96px !important;
}

html body .fancybox__toolbar {
    padding: 14px !important;
    background: transparent !important;
}

html body .fancybox__toolbar__column {
    gap: 10px !important;
}

html body .fancybox__container .f-button {
    border-radius: 14px !important;
    border: 1px solid rgba(224, 169, 39, 0.22) !important;
    backdrop-filter: blur(10px) !important;
    background: rgba(255, 255, 255, 0.06) !important;
    color: #f3f5f7 !important;
    transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease !important;
}

html body .fancybox__container .f-button:hover {
    border-color: rgba(224, 169, 39, 0.48) !important;
    background: rgba(224, 169, 39, 0.18) !important;
    color: #e0a927 !important;
}

html body .fancybox__container .f-button:active {
    transform: translateY(0) !important;
}

html body .fancybox__container .f-button svg {
    stroke-width: 1.8 !important;
}

html body .fancybox__caption {
    display: none;
}

html body .fancybox__nav .f-button {
    width: 52px !important;
    height: 52px !important;
    border-radius: 50% !important;
}

html body .fancybox__nav .f-button.is-prev {
    left: 18px !important;
}

html body .fancybox__nav .f-button.is-next {
    right: 18px !important;
}

html body .fancybox__slide {
    padding: 24px !important;
}

html body .fancybox__content img {
    border-radius: 18px !important;
    box-shadow:
            0 18px 48px rgba(0, 0, 0, 0.38),
            0 0 0 1px rgba(224, 169, 39, 0.12) !important;
}

html body .fancybox__thumbs {
    padding: 12px 14px 16px !important;
    background: linear-gradient(to top, rgba(5, 8, 13, 0.92), rgba(5, 8, 13, 0.64)) !important;
}

html body .fancybox__thumb {
    border-radius: 12px !important;
    overflow: hidden !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    transition: border-color .18s ease, transform .18s ease, opacity .18s ease !important;
}

html body .fancybox__thumb:hover {
    transform: translateY(-1px) !important;
    border-color: rgba(224, 169, 39, 0.38) !important;
}

html body .fancybox__thumb.is-current {
    border-color: #e0a927 !important;
    box-shadow: 0 0 0 2px rgba(224, 169, 39, 0.16) !important;
}

@media (max-width: 767px) {
    html body .fancybox__toolbar {
        padding: 10px !important;
    }

    html body .fancybox__slide {
        padding: 12px !important;
    }

    html body .fancybox__caption {
        width: calc(100% - 20px) !important;
        padding: 12px 14px !important;
        font-size: 14px !important;
    }

    html body .fancybox__nav .f-button {
        width: 44px !important;
        height: 44px !important;
    }

    html body .fancybox__nav .f-button.is-prev {
        left: 10px !important;
    }

    html body .fancybox__nav .f-button.is-next {
        right: 10px !important;
    }
}

/* ===== Скролл блок карточек===== */
.gss {
    position: relative;
    width: 100%;
}

.gss__sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.gss__container {
    width: 100%;
    max-width: 100%;
    padding-left: 40px;
    padding-right: 40px;
    box-sizing: border-box;
}

.gss__head {
    margin-bottom: 5vh;
    text-align: center;
}

.gss__content {
    max-width: 1300px;
    text-align: center;
    margin: 0 auto;
    padding: 1rem 0 0 0;
}

.gss__viewport {
    overflow: hidden;
    width: 100%;
}

.gss__track {
    display: flex;
    gap: 24px;
    width: max-content;
    will-change: transform;
    transform: translate3d(0, 0, 0);
}

.gss-card {
    display: grid;
    flex: 0 0 380px;
    width: 380px;
    border-radius: 24px;
    overflow: hidden;
    background: #111;
    box-sizing: border-box;
    border: 1px solid #4e4e4e9c;
    justify-items: center;
    padding: 0 0 1rem;
    flex-direction: column;
    background: linear-gradient(180deg, rgb(102 102 102 / 60%), rgb(0 0 0 / 33%));
    box-shadow: 0 12px 20px rgb(48 48 48 / 55%);
}

.gss-card__media {
    width: 100%;
    position: relative;
}

.gss-card__img {
    display: block;
    width: 100%;
    height: 478px;
    object-fit: cover;
    object-position: top center;
}

.gss-card__badge {
    position: absolute;
    left: 16px;
    top: 16px;
    z-index: 2;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 13px;
    line-height: 1;
}

.gss-card__h {
    margin: 18px 20px 12px;
    font-size: 14px;
    line-height: 1.1;
}

.gss-card__p {
    margin: 0 20px;
    font-size: 15px;
    line-height: 1.45;
}

.gss-btn {
    display: inline-flex;
    justify-content: center;
    max-height: 48px;
    width: 50%;
    padding: 10px;
    margin-top: auto;
}

.gss-card {
    backdrop-filter: var(--glass);
    display: grid;
    grid-template-rows: auto auto 1fr auto;
    align-content: start;
}

.gss-card__media {
    grid-row: 1;
}

.gss-card__h {
    grid-row: 2;
    margin: 16px 16px 12px;
    text-align: center;
}

.gss-card__p {
    grid-row: 3;
    margin: 0 16px;
}

.gss-btn {
    grid-row: 4;
    margin: 24px 16px 16px;
    justify-self: center;
    align-self: end;
    font-weight: 700;
}

@media (max-width: 921px) {
    .gss__sticky {
        height: auto !important;
        position: relative;
        overflow: visible;
    }

    .gss__container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .gss__viewport {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .gss__viewport::-webkit-scrollbar {
        display: none;
    }

    .gss__track {
        transform: none !important;
    }

    .gss-card {
        flex: 0 0 84vw;
        width: 84vw;
    }

    .gss__head {
        margin: 5vh 0 0 0;
        text-align: center;
    }
}

body.is-modal-open {
    overflow: hidden;
}

.event-modal[hidden] {
    display: none;
}

.event-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.event-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(198, 170, 105, 0.64);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.event-modal__dialog {
    width: min(100%, 1100px);
    max-height: calc(100vh - 48px);
    overflow: auto;
    opacity: 0;
    transform: translateY(24px) scale(0.98);
    transition:
            opacity 0.35s ease,
            transform 0.35s ease;
    will-change: opacity, transform;
}

/* активное состояние */
.event-modal.is-active .event-modal__overlay {
    opacity: 1;
}

.event-modal.is-active .event-modal__dialog {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.event-modal__dialog::-webkit-scrollbar-button {
    display: none;
    width: 0;
    height: 0;
}

/* чуть мягче на мобиле */
@media (max-width: 767px) {

    .events-showcase {
        padding: 0 0 50px 0;
    }

    .event-modal {
        padding: 12px;
    }

    .event-modal__dialog {
        width: 100%;
        max-height: calc(100vh - 24px);
        transform: translateY(18px) scale(0.99);
    }
}

/* ===== Footer ===== */
.site-footer {
    position: relative;
    padding: 40px 0 28px;
    background: radial-gradient(900px 240px at 50% 0%, rgba(224, 169, 39, 0.08), transparent 60%), linear-gradient(180deg, #17171770 0%, #0f0f0f 100%);
    border-top: 1px solid rgba(224, 169, 39, 0.20);
    backdrop-filter: var(--glass);
    margin-top: 6rem;
}

.site-footer__container {
    width: min(1320px, calc(100% - 40px));
    margin: 0 auto;
}

.site-footer__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 24px;
    border: 1px solid rgba(224, 169, 39, 0.22);
    border-radius: 26px;
    background: rgb(0 0 0 / 11%);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
    margin-bottom: 20px;
}

.site-footer__brand {
    display: flex;
    align-items: center;
    gap: 18px;
    width: 100%;
    justify-content: space-between;
}

.site-footer__logo {
    display: block;
    max-width: 170px;
    max-height: 62px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.site-footer__hours {
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(224, 169, 39, 0.26);
    background: rgba(224, 169, 39, 0.08);
    color: #fff;
    font-weight: 700;
}

.site-footer__actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.site-footer__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 22px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
}

.site-footer__btn--primary {
    background: linear-gradient(180deg, #f2cd45 0%, #e0a927 100%);
    color: #11161d;
    box-shadow: 0 10px 24px rgba(224, 169, 39, 0.18);
}

.site-footer__socials {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.site-footer__social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.04);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}

.site-footer__legal {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
    margin-bottom: 24px;
    justify-content: space-between;
}

.site-footer__legal-link {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    border-bottom: 1px solid rgba(224, 169, 39, 0.18);
}

.site-footer__legal-link:hover {
    color: var(--primary-color);
}

.site-footer__main {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 30px;
    padding: 24px 0 18px;
}

.site-footer__title {
    margin: 0 0 14px;
    color: #fff;
    font-size: 1.45rem;
}

.site-footer__menu {
    margin: 0;
    padding: 0;
    list-style: none;
    columns: 3;
    column-gap: 24px;
}

.site-footer__menu li {
    margin: 0 0 10px;
    break-inside: avoid;
}

.site-footer__menu a {
    color: rgba(255,255,255,0.86);
    text-decoration: none;
}

.site-footer__menu a:hover {
    color: var(--primary-color);
}

.site-footer__locations {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 16px;
}

.site-footer__location {
    display: flex;
    padding: 16px 18px;
    border-radius: 18px;
    border: 1px solid rgba(224, 169, 39, 0.16);
    background: rgba(255,255,255,0.03);
    align-items: baseline;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.site-footer__phone {
    color: #fff;
    font-weight: 800;
    margin-bottom: 6px;
}

.site-footer__metro {
    color: rgba(224, 169, 39, 0.95);
    font-weight: 700;
    margin-bottom: 4px;
}

.site-footer__address {
    color: rgba(255,255,255,0.76);
    line-height: 1.5;
}

.site-footer__bottom {
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.site-footer__copy {
    color: rgba(255,255,255,0.58);
}

@media (max-width: 991px) {
    .site-footer__top,
    .site-footer__main {
        grid-template-columns: 1fr;
        display: grid;
    }

    .site-footer__brand,
    .site-footer__actions {
        justify-content: center;
    }

    .site-footer__menu {
        columns: 1;
    }

    .site-footer__locations {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .site-footer {
        padding: 30px 0 24px;
        text-align: center;
    }

    .site-footer__legal {
        justify-content: center;
    }

    .site-footer__top {
        padding: 18px;
    }

    .site-footer__brand {
        flex-direction: column;
    }

    .site-footer__actions {
        gap: 10px;
    }

    .site-footer__btn,
    .site-footer__social {
        width: 100%;
    }
}

/* =========================
   PREMIUM BEE BACKGROUND
========================= */

.bee-hero-bg,
.bee-section-bg {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background:
            radial-gradient(circle at 20% 25%, rgba(224, 169, 39, 0.10), transparent 32%),
            radial-gradient(circle at 80% 70%, rgba(224, 169, 39, 0.12), transparent 34%),
            linear-gradient(180deg, #0f0f10 0%, #090909 45%, #050505 100%);
}

/* декоративная золотая дымка */
.bee-hero-bg::before,
.bee-section-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
            radial-gradient(circle at 28% 30%, rgba(255, 210, 110, 0.10), transparent 18%),
            radial-gradient(circle at 74% 64%, rgba(255, 196, 70, 0.12), transparent 20%),
            radial-gradient(circle at 50% 50%, rgba(255, 220, 150, 0.03), transparent 42%);
    filter: blur(18px);
}

/* тонкая тёмная вуаль для дорогого вида */
.bee-hero-bg::after,
.bee-section-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
            linear-gradient(
                    90deg,
                    rgba(0, 0, 0, 0.72) 0%,
                    rgba(0, 0, 0, 0.38) 28%,
                    rgba(0, 0, 0, 0.18) 50%,
                    rgba(0, 0, 0, 0.38) 72%,
                    rgba(0, 0, 0, 0.72) 100%
            );
}

/* контейнер контента */
.bee-hero-bg > *,
.bee-section-bg > * {
    position: relative;
    z-index: 5;
}

/* декоративные пчёлы */
.bee-decor {
    position: absolute;
    pointer-events: none;
    user-select: none;
    will-change: transform, opacity;
    filter:
            drop-shadow(0 18px 40px rgba(224, 169, 39, 0.14))
            drop-shadow(0 8px 18px rgba(255, 196, 70, 0.10));
    opacity: 0.88;
    transform: translate3d(0, 0, 0);
}

/* общая картинка */
.bee-decor img {
    display: block;
    width: 100%;
    height: auto;
    opacity: .5;
}

/* женская пчела */
.bee-decor--left {
    width: clamp(220px, 24vw, 430px);
    left: -3%;
    top: 20%;
    transform: rotate(-7deg);
}

/* мужская пчела */
.bee-decor--right {
    width: clamp(260px, 28vw, 500px);
    right: 12%;
    bottom: -2%;
    transform: rotate(6deg);
}

/* мягкое золотое сияние за персонажами */
.bee-glow {
    position: absolute;
    pointer-events: none;
    border-radius: 50%;
    filter: blur(55px);
    opacity: 0.32;
    background: radial-gradient(circle, rgba(255, 196, 70, 0.95) 0%, rgba(255, 196, 70, 0.18) 35%, rgba(255, 196, 70, 0) 72%);
}

.bee-glow--left {
    width: 360px;
    height: 360px;
    left: 2%;
    top: 20%;
}

.bee-glow--right {
    width: 420px;
    height: 420px;
    right: 10%;
    bottom: 0;
}

/* лёгкая анимация как дорогой фон */
@keyframes beeFloatLeft {
    0%   { transform: translate3d(0, 0, 0) rotate(-7deg); }
    50%  { transform: translate3d(0, -10px, 0) rotate(-5deg); }
    100% { transform: translate3d(0, 0, 0) rotate(-7deg); }
}

@keyframes beeFloatRight {
    0%   { transform: translate3d(0, 0, 0) rotate(6deg); }
    50%  { transform: translate3d(0, 12px, 0) rotate(8deg); }
    100% { transform: translate3d(0, 0, 0) rotate(6deg); }
}

.bee-decor--left {
    animation: beeFloatLeft 7.5s ease-in-out infinite;
}

.bee-decor--right {
    animation: beeFloatRight 8.5s ease-in-out infinite;
}

/* чтобы на мобильном не было перегруза */
@media (max-width: 991px) {
    .bee-decor--left {
        width: clamp(170px, 28vw, 260px);
        left: -8%;
        top: 8%;
        opacity: 0.50;
    }

    .bee-decor--right {
        width: clamp(190px, 32vw, 290px);
        right: -10%;
        bottom: 0;
        opacity: 0.52;
    }

    .bee-glow--left {
        width: 240px;
        height: 240px;
    }

    .bee-glow--right {
        width: 260px;
        height: 260px;
    }
}

@media (max-width: 767px) {
    .bee-decor--left {
        width: 150px;
        top: 3%;
        left: 3%;
        opacity: 0.34;
    }

    .bee-decor--right {
        width: 170px;
        right: 3%;
        bottom: 4%;
        opacity: 0.36;
    }

    .bee-glow {
        opacity: 0.18;
    }
}

/* =========================
   КРУГЛАЯ СОТА / МЕДАЛЬОН
========================= */

.honey-medallion {
    position: absolute;
    z-index: 0;
    pointer-events: none;
    user-select: none;
    width: 100vw;
    right: 50%;
    opacity: 0.1;
    transform: translate3d(0, 0, 0) rotate(-50deg);
    will-change: transform, opacity;
    filter: drop-shadow(0 24px 55px rgba(224, 169, 39, 0.14))
    drop-shadow(0 8px 18px rgba(255, 210, 120, 0.08));
}

.honey-medallion img {
    display: block;
    width: 100%;
    height: auto;
}

/* плавание, чтобы фон был "живой" */
@keyframes honeyFloat {
    0% {
        transform: translate3d(0, 0, 0) rotate(-10deg);
    }
    50% {
        transform: translate3d(0, -12px, 0) rotate(-7deg);
    }
    100% {
        transform: translate3d(0, 0, 0) rotate(-10deg);
    }
}

.honey-medallion {
    animation: honeyFloat 10s ease-in-out infinite;
}

/*  дорогой приглушённый вид */
.honey-medallion::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background:
            radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, 0.16) 100%);
    pointer-events: none;
}

/* адаптив */
@media (max-width: 991px) {
    .honey-medallion {
        width: clamp(180px, 26vw, 300px);
        right: 2%;
        opacity: 0.14;
    }

}

@media (max-width: 767px) {
    .honey-medallion {
        width: 160px;
        right: 8%;
        opacity: 0.10;
        transform: rotate(-8deg);
    }

}

.menu-bar-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.menu-bar-grid__item {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.03);
}

.menu-bar-grid__image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

@media (max-width: 991px) {
    .menu-bar-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }
}

@media (max-width: 640px) {
    .menu-bar-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}

.gss-card__video,
.event-modal__video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gss-card__media .gss-card__video {
    height: 378px;
    object-position: center center;
}

.event-modal__image-wrap .event-modal__video {
    width: 100%;
    max-height: 70vh;
    border-radius: inherit;
}


.top-bg {
    padding-top: 0;
}

.karaoke-menu-page {
    position: relative;
    padding: 200px 20px 90px;
    overflow: hidden;
    background: linear-gradient(rgb(8 8 8 / 0%), rgb(8 8 8)), radial-gradient(circle at top left, rgba(255, 179, 0, 0.07), transparent 24%), radial-gradient(circle at bottom right, rgba(255, 179, 0, 0.07), transparent 24%), url(https://sotyclub.ru/wp-content/themes/karaoke-yellow-theme-light_1_fixed_v3/assets/img/bg-kar-2.png) center center / cover no-repeat, #080808;
}

.karaoke-menu-page__head {
    margin-bottom: 26px;
    text-align: center;
}

.karaoke-menu-page__title {
    margin-bottom: 18px;
    font-size: clamp(1.6rem, 4vw, 3.6rem);
    padding: 0;
    text-align: right;
}

.karaoke-menu-page__subtitle {
    max-width: 860px;
    margin: 0 auto;
    font-size: 1.1rem;
    text-align: right;
}

.karaoke-menu-showcase {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    max-width: 1480px;
    margin: 0 auto;
    border-radius: 28px;
    overflow: hidden;
    align-items: center;
}

.karaoke-menu-showcase__left {
    min-width: 0;
}

.karaoke-menu-showcase__right {
    min-width: 0;
    padding: 24px;
    display: flex;
    align-items: center;
}

.karaoke-menu-board {
    width: 100%;
    border: 1px solid rgba(224, 169, 39, 0.18);
    border-radius: 24px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.18);
    background: linear-gradient(179deg, rgb(14 14 14), rgb(0 0 0 / 55%));
    box-shadow: 1px 1px 20px 4px rgb(224 169 39 / 14%);
    backdrop-filter: var(--glass);
}

.karaoke-menu-board__row {
    position: relative;
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
    padding: 18px 26px;
    border-bottom: none;
}

.karaoke-menu-board__row::after {
    content: "";
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 0;
    border-bottom: 1px dashed rgba(224, 169, 39, 0.28);
}

.karaoke-menu-board__row:last-child::after {
    display: none;
}

.karaoke-menu-board__row:last-child {
    border-bottom: 0;
}

.karaoke-menu-board__icon {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    color: var(--primary-color);
}

.karaoke-menu-board__icon svg {
    width: 24px;
    height: 24px;
    display: block;
    stroke: currentColor;
    stroke-width: 1.8;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.karaoke-menu-board__name {
    font-size: 24px;
}

.karaoke-menu-board__price {
    font-size: 24px;
    line-height: 1.1;
    font-weight: 700;
    white-space: nowrap;
    color: var(--primary-color);
    text-shadow:
            0 0 1px rgba(255,255,255,0.18),
            0 0 12px rgba(255, 190, 0, 0.08);
}

.karaoke-menu-footnote {
    max-width: 1480px;
    margin: 18px auto 0;
    text-align: center;
    font-size: 15px;
    line-height: 1.45;
    color: rgba(245, 240, 230, 0.72);
}

@media (max-width: 1399px) {
    .karaoke-menu-showcase {
        max-width: 1320px;
    }


    .karaoke-menu-board__name,
    .karaoke-menu-board__price {
        font-size: 22px;
    }
}

@media (max-width: 1199px) {
    .karaoke-menu-showcase {
        grid-template-columns: 1fr;
    }


}

@media (max-width: 767px) {
    .karaoke-menu-page {
        padding: 35vh 0 0 0;
    }

    .karaoke-menu-showcase {
        border-radius: 22px;
    }
    .karaoke-menu-page {
        background: linear-gradient(rgb(8 8 8 / 46%), rgb(8 8 8)), radial-gradient(circle at top left, rgba(255, 179, 0, 0.07), transparent 24%), radial-gradient(circle at bottom right, rgba(255, 179, 0, 0.07), transparent 24%), url(https://sotyclub.ru/wp-content/themes/karaoke-yellow-theme-light_1_fixed_v3/assets/img/soty-mic-bw-bg_2.webp) 5% center / cover no-repeat, #080808;
    }

    .karaoke-menu-showcase__right {
        padding: 14px;
    }

    .karaoke-menu-board {
        border-radius: 18px;
    }

    .karaoke-menu-board__row {
        grid-template-columns: 46px minmax(0, 1fr);
        gap: 12px;
        padding: 16px 14px;
    }

    .karaoke-menu-board__icon {
        width: 46px;
        height: 46px;
        border-radius: 14px;
    }

    .karaoke-menu-board__icon svg {
        width: 21px;
        height: 21px;
    }

    .karaoke-menu-board__name {
        font-size: 18px;
        line-height: 1.28;
    }

    .karaoke-menu-board__price {
        grid-column: 2 / 3;
        font-size: 19px;
    }

    .karaoke-menu-footnote {
        font-size: 13px;
        margin-top: 14px;
    }

    .karaoke-menu-page__title, .karaoke-menu-page__subtitle {
        text-align: center;
    }
}
.events-slider__mobile-hint,
.events-slider__mobile-dots {
    display: none;
}
.gss__mobile-hint,
.gss__mobile-dots {
    display: none;
}

/* ===== Блок: банкеты ===== */

.banquets-showcase {
    position: relative;
}

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

.banquet-card {
    backdrop-filter: var(--glass);
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 24px;
    background: linear-gradient(137deg, rgb(102 102 102 / 0%), rgb(0 0 0 / 0%));
    overflow: hidden;
    box-shadow: 15px 11px 20px 3px rgb(48 48 48 / 55%);
}

.banquet-card__slider {
    position: relative;
    height: 420px;
    overflow: hidden;
    border-radius: 18px;
    background: rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.banquet-card__slides {
    display: flex;
    height: 100%;
    transform: translateX(var(--x, 0%));
    transition: transform .28s ease;
}

.banquet-card__slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
}

.banquet-card__slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.banquet-card__slide--empty {
    background: rgba(255, 255, 255, 0.04);
}

.banquet-card__badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(0, 0, 0, 0.36);
    color: rgba(255, 255, 255, 0.88);
    font-size: 13px;
    font-weight: 800;
    backdrop-filter: var(--glass);
    -webkit-backdrop-filter: var(--glass);
}

.banquet-card__nav {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 14px;
    pointer-events: none;
}

.banquet-card__arrow {
    pointer-events: auto;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgb(202 122 1);
    color: rgba(255, 255, 255, 0.92);
    display: grid;
    place-items: center;
    cursor: pointer;
    font-size: 24px;
    line-height: 1;
    backdrop-filter: var(--glass);
    -webkit-backdrop-filter: var(--glass);
    transition: transform .15s ease, background .15s ease, border-color .15s ease;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    -webkit-user-select: none;
}

.banquet-card__arrow:hover {
    border-color: rgba(255, 255, 255, 0.26);
    box-shadow: 1px 1px 14px 4px rgb(245 210 50);
}

.banquet-card__arrow[disabled] {
    opacity: .35;
    cursor: not-allowed;
}

.banquet-card__dots {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 12px;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.banquet-card__dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(0, 0, 0, 0.28);
    cursor: pointer;
    transition: transform .15s ease, background .15s ease, border-color .15s ease;
}

.banquet-card__dot.is-active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.1);
}

.banquet-card__meta {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.50);
    font-size: 14px;
}

.banquet-card__sep {
    opacity: .45;
}

.banquet-card__title {
    margin: 10px 0 0;
    font-size: 30px;
    font-weight: 900;
    line-height: 1.1;
    color: var(--white-color);
}

.banquet-card__tagline {
    margin: 6px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 16px;
    line-height: 1.5;
}

.banquet-card__actions {
    margin-top: 18px;
    display: flex;
    gap: 12px;
    font-weight: 700;
}

.banquet-card__btn {
    width: 100%;
    min-height: 54px;
    padding: 16px;
    border-radius: 16px;
    font-size: 16px;
    text-align: center;
    transition: transform .15s ease, background .15s ease, border-color .15s ease, filter .15s ease;
}

.banquet-card__btn--primary {
    filter: saturate(1.05);
    border: 1px solid var(--primary-color);
    border-radius: 999px;
    color: var(--hover-btn-color);
    background: var(--hover-btn-background);
    border-color: var(--hover-btn-border);
}

.banquet-card__btn--primary:hover {
    color: var(--white-color);
    box-shadow: 0 5px 24px rgb(245 210 50);
    background: rgb(0 0 0);
    border-color: var(--hover-primary-border);
}

.banquet-card__btn--ghost {
    border: 1px solid var(--primary-color);
    border-radius: 999px;
    background: transparent;
    color: var(--white-color);
}

.banquet-card__btn--ghost:hover {
    color: var(--hover-btn-color);
    box-shadow: 0 5px 24px var(--hover-btn-shadow);
    background: var(--hover-btn-background);
    border-color: var(--hover-btn-border);
}
