/* ─── RESET & BASE ─── */
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400..700&display=swap');

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #000;
    color: #fff;
    font-family: 'Raleway', Arial, sans-serif;
    font-weight: 300;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal;
}

img {
    max-width: 100%;
    display: block;
}

/* ─── FONT ─── */
@font-face {
    font-family: 'HunthersDwayne';
    src: url('Hunthers_Dwayne.otf') format('opentype'),
        url('Hunthers_Dwayne.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* ─── TOKENS ─── */
:root {
    --yellow: #ffed00;
    --white: #ffffff;
    --black: #000000;
    --gray: #333333;
    --text-body: rgba(255, 255, 255, 0.85);
}

/* ─── HEADER ─── */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.3s;
}

.header__logo img {
    width: auto;
    height: 50px;
}

.header__nav {
    display: flex;
    gap: 32px;
    list-style: none;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.05em;
}

.header__nav a {
    opacity: 0.75;
    transition: opacity 0.2s, color 0.2s;
}

.header__nav a:hover {
    opacity: 1;
    color: var(--yellow);
}

.header__right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header__phone {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.9;
    transition: color 0.2s;
}

.header__phone:hover {
    color: var(--yellow);
}

.header__wa {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: #25d366;
    border: 1px solid rgba(37, 211, 102, 0.4);
    border-radius: 30px;
    padding: 6px 14px;
    transition: background 0.2s, color 0.2s;
}

.header__wa:hover {
    background: #25d366;
    color: #000;
}

.header__wa svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.btn-book-header {
    background: var(--yellow);
    color: #000;
    font-family: 'Raleway', sans-serif;
    font-size: 13px;
    font-weight: 600;
    padding: 9px 20px;
    border-radius: 30px;
    transition: opacity 0.2s, transform 0.2s;
    border: none;
    cursor: pointer;
}

.btn-book-header:hover {
    opacity: 0.85;
    transform: scale(1.02);
}

/* ─── MOBILE BURGER ─── */
.burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    margin: 5px 0;
    transition: 0.3s;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.97);
    z-index: 200;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    font-size: 22px;
    font-weight: 400;
    opacity: 0.85;
}

.mobile-menu a:hover {
    color: var(--yellow);
    opacity: 1;
}

.mobile-menu__close {
    position: absolute;
    top: 24px;
    right: 32px;
    background: none;
    border: none;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
}

/* ─── HERO ─── */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: flex-start;
    overflow: hidden;
}

.hero__video-wrap {
    position: absolute;
    inset: 0;
}

.hero__video-wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.55;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.5) 100%);
}

.hero__content {
    position: relative;
    z-index: 2;
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-shadow: 0 0 15px #000;
}

.hero__eyebrow {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 16px;
}

.hero__title {
    font-size: clamp(27px, 4.5vw, 68px);
    font-weight: 300;
    line-height: 90%;
    margin-bottom: 12px;
}

.hero__title em {
    font-style: normal;
    font-weight: 600;
    color: var(--yellow);
}

.hero__sub {
    font-size: 16px;
    font-weight: 300;
    opacity: 0.4;
    margin-bottom: 36px;
    line-height: 1.6;
    letter-spacing: 0.12em;
}

.hero__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    /* background: #fff; */
    background: var(--yellow);
    color: #000;
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    letter-spacing: 0.03em;
}

.btn-primary:hover {
    background: var(--yellow);
}

.btn-outline {
    background: transparent;
    color: #fff;
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 500;
    padding: 13px 28px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
    letter-spacing: 0.03em;
}

.btn-outline:hover {
    border-color: var(--yellow);
    color: var(--yellow);
}

.hero__phone-row {
    position: absolute;
    bottom: 40px;
    right: 60px;
    z-index: 2;
    text-align: right;
}

.hero__phone-row a {
    display: block;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 4px;
    transition: color 0.2s;
}

.hero__phone-row a:hover {
    color: var(--yellow);
}

.hero__phone-row span {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.5;
}

/* ─── QUICK LINKS BAR ─── */
.quicklinks {
    background: #111;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    padding: 0;
}

.quicklinks__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
}

.quicklinks__item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 16px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-right: 1px solid rgba(255, 255, 255, 0.07);
    transition: background 0.2s, color 0.2s;
    cursor: pointer;
}

.quicklinks__item:last-child {
    border-right: none;
}

.quicklinks__item:hover {
    background: rgba(255, 237, 0, 0.08);
    color: var(--yellow);
}

.quicklinks__item.highlight {
    color: var(--yellow);
}

/* ─── SECTION BASE ─── */
section {
    position: relative;
}

.section-label {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0.4;
    margin-bottom: 8px;
}

.section-heading {
    font-family: 'HunthersDwayne', "Caveat";
    font-size: clamp(60px, 8vw, 110px);
    color: var(--yellow);
    line-height: 1;
    /* margin-bottom: 30px; */
}

/* ─── INTERIOR ─── */
.interior {
    padding: 120px 60px;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.interior__left {}

.interior__text {
    font-size: 16px;
    line-height: 1.75;
    opacity: 0.8;
    margin-bottom: 28px;
}

.interior__imgs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.interior__imgs img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 2px;
}

.interior__imgs img:first-child {
    grid-column: 1 / -1;
    height: 320px;
}

/* ─── FULL WIDTH IMAGE ─── */
.fullimg {
    width: 100%;
    height: 55vh;
    object-fit: cover;
    display: block;
    opacity: 0.8;
}

.fullimg-wrap {
    position: relative;
    height: 55vh;
    overflow: hidden;
}

.fullimg-wrap .fullimg {
    position: absolute;
    top: -15%;
    left: 0;
    height: 130%;
    will-change: transform;
}

/* ─── MENU ─── */
.menu-section {
    background: #0a0a0a;
}

.menu-section__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.menu-section__img {
    position: relative;
}

.menu-section__img img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 2px;
}

.menu-section__text {
    font-size: 16px;
    line-height: 1.75;
    opacity: 0.8;
    margin-bottom: 28px;
}

/* ─── KARAOKE ─── */
#karaoke {
    background: #000;
}

.karaoke-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.karaoke-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 32px;
}

.karaoke-feature {
    border: 1px solid rgba(255, 237, 0, 0.2);
    padding: 20px;
    border-radius: 2px;
    position: relative;
    /* overflow: hidden; */
    z-index: 1;
}

.karaoke-feature__icon {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--yellow);
    z-index: 2;

    svg {
        position: absolute;
        top: 0;
        width: 50px;
        right: -15px;
        top: -5px;
        z-index: 3;
        backdrop-filter: blur(5px);
        transform: rotate(15deg);
    }
}

.karaoke-feature__title {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 6px;
    color: var(--yellow);
}

.karaoke-feature__desc {
    font-size: 13px;
    opacity: 0.6;
    line-height: 1.5;
}

.karaoke-img img {
    width: 100%;
    height: 560px;
    object-fit: cover;
}

/* ─── GATE THURSDAY ─── */
.gate {
    background: #080808;
    border-top: 1px solid rgba(255, 237, 0, 0.15);
    border-bottom: 1px solid rgba(255, 237, 0, 0.15);
}

.gate__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 60px;
}

.gate__top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    margin-bottom: 60px;
}

.gate__badge {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    gap: 8px;
    width: fit-content;
    /* background: rgba(255, 237, 0, 0.1); */
    /* border: 1px solid rgba(255, 237, 0, 0.3); */
    color: var(--yellow);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    /* padding: 6px 14px; */
    border-radius: 30px;
    margin-bottom: 24px;
    text-decoration: unde;

    &::after {
        content: '';
        bottom: -5px;
        left: 0;
        width: 100%;
        height: 1px;
        background-color: var(--yellow);
    }
}

.gate__text {
    font-size: 16px;
    line-height: 1.75;
    opacity: 0.8;
    margin-bottom: 16px;
}

.gate__notice {
    background: rgba(255, 237, 0, 0.06);
    border-left: 3px solid var(--yellow);
    padding: 16px 20px;
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.85;
    margin-top: 28px;
    border-radius: 0 2px 2px 0;
}

.gate__notice strong {
    color: var(--yellow);
}

.gate__right img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 2px;
    opacity: 0.85;
}

/* ─── WELCOME / ATMOSPHERE ─── */
.welcome {
    padding: 120px 60px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.welcome__text {
    font-size: 18px;
    line-height: 1.75;
    opacity: 0.75;
    max-width: 600px;
    margin: 0 auto 60px;
}

.welcome__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.welcome__grid img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    filter: grayscale(20%);
    transition: filter 0.3s, transform 0.3s;
}

.welcome__grid img:hover {
    filter: grayscale(0%);
    transform: scale(1.02);
}

/* ─── EVENTS ─── */
#events {
    background: #0a0a0a;
}

.events-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.events__text {
    font-size: 16px;
    line-height: 1.75;
    opacity: 0.8;
    margin-bottom: 24px;
}

.events__list {
    list-style: none;
    margin-bottom: 36px;
}

.events__list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.8;
}

.events__list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--yellow);
    border-radius: 50%;
    flex-shrink: 0;
}

.events-form {
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px;
    border-radius: 2px;
}

.events-form__title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
}

.events-form__sub {
    font-size: 13px;
    opacity: 0.5;
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    padding: 12px 16px;
    border-radius: 3px;
    outline: none;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--yellow);
}

.form-group textarea {
    resize: vertical;
    min-height: 90px;
}

.form-group select option {
    background: #111;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.btn-form {
    width: 100%;
    background: var(--yellow);
    color: #000;
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 700;
    padding: 14px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: opacity 0.2s;
    letter-spacing: 0.05em;
}

.btn-form:hover {
    opacity: 0.85;
}

.form-note {
    font-size: 11px;
    opacity: 0.35;
    text-align: center;
    margin-top: 12px;
}

/* ─── CONTACTS ─── */
.contacts {
    background: #000;
}

.contacts__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 60px 80px;
}

.contacts__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: 20px;
}

.contacts__info p {
    font-size: 17px;
    opacity: 0.8;
    margin-bottom: 12px;
    line-height: 1.7;
}

.contacts__info a {
    transition: color 0.2s;
}

.contacts__info a:hover {
    color: var(--yellow);
}

.contacts__info .label {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.35;
    margin-bottom: 4px;
    margin-top: 24px;
}

.contacts__social {
    display: flex;
    gap: 14px;
    margin-top: 28px;
}

.contacts__social a {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s, color 0.2s;
}

.contacts__social a:hover {
    border-color: var(--yellow);
    color: var(--yellow);
}

.contacts__social svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* ─── MAIN BOOK FORM (footer) ─── */
.book-form {
    background: #0d0d0d;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.book-form__inner {
    max-width: 680px;
    margin: 0 auto;
    padding: 80px 40px;
    text-align: center;
}

.book-form__title {
    font-family: 'HunthersDwayne', cursive;
    font-size: clamp(48px, 7vw, 80px);
    color: var(--yellow);
    margin-bottom: 12px;
}

.book-form__sub {
    font-size: 15px;
    opacity: 0.6;
    margin-bottom: 40px;
}

.book-form__form {
    text-align: left;
}

.book-form__form .form-grid {
    margin-bottom: 12px;
}

.book-form__form .form-group {
    margin-bottom: 12px;
}

/* ─── FOOTER ─── */
.footer {
    background: #000;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 28px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer__logo img {
    height: 32px;
}

.footer__copy {
    font-size: 12px;
    opacity: 0.3;
}

.footer__links {
    display: flex;
    gap: 24px;
    font-size: 12px;
    opacity: 0.4;
}

.footer__links a:hover {
    opacity: 1;
    color: var(--yellow);
}

/* ─── FLOATING CTA ─── */
.float-wa {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 99;
    background: var(--yellow);
    color: #000;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(255, 237, 0, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}

.float-wa:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(255, 237, 0, 0.45);
}

.float-wa svg {
    width: 26px;
    height: 26px;
}

/* ─── ANIMATIONS ─── */
.fade-in {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: none;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
    .header {
        padding: 16px 24px;
    }

    .header__nav {
        display: none;
    }

    .burger {
        display: block;
    }

    .header__right .btn-book-header {
        display: none;
    }

    .header__phone {
        display: none;
    }

    .header__wa {
        display: none;
    }

    .hero__content {
        padding: 140px 24px 0;
    }

    .hero__phone-row {
        right: 24px;
        bottom: 28px;
    }

    .quicklinks__inner {
        flex-wrap: wrap;
    }

    .quicklinks__item {
        flex: 0 0 50%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    }

    .interior {
        grid-template-columns: 1fr;
        padding: 80px 24px;
        gap: 40px;
    }

    .interior__imgs img {
        height: 180px;
    }

    .interior__imgs img:first-child {
        height: 240px;
    }

    .menu-section__inner {
        grid-template-columns: 1fr;
        padding: 80px 24px;
        gap: 40px;
    }

    .menu-section__img img {
        height: 300px;
    }

    .karaoke-inner {
        grid-template-columns: 1fr;
        padding: 80px 24px;
        gap: 40px;
    }

    .karaoke-img img {
        height: 300px;
    }

    .karaoke-features {
        grid-template-columns: 1fr;
    }

    .gate__inner {
        padding: 80px 24px;
    }

    .gate__top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .gate__right img {
        height: 280px;
    }

    .welcome {
        padding: 80px 24px;
    }

    .welcome__grid {
        grid-template-columns: 1fr 1fr;
    }

    .welcome__grid img {
        height: 200px;
    }

    .events-inner {
        grid-template-columns: 1fr;
        padding: 80px 24px;
        gap: 40px;
    }

    .contacts__inner {
        padding: 80px 24px 60px;
    }

    .contacts__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .book-form__inner {
        padding: 60px 24px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .footer {
        flex-direction: column;
        gap: 16px;
        padding: 24px;
        text-align: center;
    }

    .hero__actions {
        width: 100%;
        display: flex;
        align-items: stretch;
        justify-content: center;

        a {
            width: 100%;
        }
    }
}

@media (max-width: 640px) {
    .welcome__grid {
        grid-template-columns: 1fr;
    }

    .quicklinks__item {
        flex: 0 0 100%;
    }

    .events-form {
        padding: 24px;
    }
}

/* ═══ MENU MODAL ═══ */
.menu-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.92);
    display: none;
}

.menu-modal.open {
    display: block;
}

.menu-modal__scroll {
    width: 100%;
    height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.menu-modal__page {
    width: 50%;
    margin: 150px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-modal__page img {
    width: 100%;
    display: block;
}

.menu-modal__close {
    position: fixed;
    top: 24px;
    right: 28px;
    z-index: 1001;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
}

.menu-modal__close:hover {
    border-color: var(--yellow);
    color: var(--yellow);
}

.menu-modal__counter {
    position: fixed;
    top: 30px;
    left: 28px;
    z-index: 1001;
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    letter-spacing: 0.05em;
    color: #fff;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 8px 16px;
}

.menu-modal__nav {
    position: fixed;
    right: 28px;
    bottom: 28px;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.menu-modal__nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
}

.menu-modal__nav-btn:hover {
    border-color: var(--yellow);
    color: var(--yellow);
}

@media (max-width: 640px) {
    .menu-modal__close {
        top: 14px;
        right: 14px;
        width: 38px;
        height: 38px;
        font-size: 22px;
    }

    .menu-modal__counter {
        top: 18px;
        left: 14px;
        font-size: 12px;
        padding: 6px 12px;
    }

    .menu-modal__nav {
        right: 14px;
        bottom: 14px;
    }

    .menu-modal__nav-btn {
        width: 42px;
        height: 42px;
    }
}

/* ─── LANDING PAGES (karaoke / events / gate) ─── */
.landing-hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: flex-start;
    overflow: hidden;
}

.landing-hero__bg-wrap {
    position: absolute;
    inset: -15% 0;
    height: 130%;
    overflow: hidden;
}

.landing-hero__bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.55;
    will-change: transform;
}

.landing-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.55) 55%, rgba(0, 0, 0, 0.88) 100%);
}

.landing-hero__content {
    position: relative;
    z-index: 2;
    height: 100vh;
    width: 100%;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-shadow: 0 0 15px #000;
}

.landing-hero__content .hero__actions {
    margin-top: 8px;
}

.landing-hero__phone {
    display: inline-block;
    margin-top: 18px;
    font-size: 15px;
    font-weight: 500;
    opacity: 0.85;
    transition: color 0.2s;
}

.landing-hero__phone:hover {
    color: var(--yellow);
}

.landing-hero--gate .landing-hero__overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.7) 55%, rgba(0, 0, 0, 0.95) 100%);
}

/* Format / advantage cards (3-column variant, reuses .karaoke-feature visuals) */
.format-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 32px;
}

/* How it works steps */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 36px;
}

.step {
    text-align: center;
    padding: 36px 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 2px;
}

.step__num {
    font-family: 'HunthersDwayne', cursive;
    font-size: 44px;
    color: var(--yellow);
    margin-bottom: 12px;
}

.step__title {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.04em;
    margin-bottom: 8px;
}

.step__desc {
    font-size: 13px;
    opacity: 0.6;
    line-height: 1.6;
}

/* Horizontal scroll gallery */
.landing-gallery {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 4px 60px 24px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
}

.landing-gallery img {
    flex: 0 0 320px;
    height: 380px;
    object-fit: cover;
    border-radius: 2px;
    scroll-snap-align: start;
    filter: grayscale(15%);
    transition: filter 0.3s, transform 0.3s;
}

.landing-gallery img:hover {
    filter: grayscale(0%);
    transform: scale(1.02);
}

/* Gallery wrap — arrow navigation, no visible scrollbar (gate / events) */
.landing-gallery-wrap {
    position: relative;
}

.landing-gallery-wrap .landing-gallery {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.landing-gallery-wrap .landing-gallery::-webkit-scrollbar {
    display: none;
}

.landing-gallery-wrap .landing-gallery img {
    cursor: zoom-in;
}

.landing-gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
}

.landing-gallery-arrow:hover {
    border-color: var(--yellow);
    color: var(--yellow);
}

.landing-gallery-arrow--prev {
    left: 16px;
}

.landing-gallery-arrow--next {
    right: 16px;
}

@media (max-width: 960px) {
    .landing-gallery-arrow {
        width: 36px;
        height: 36px;
        font-size: 15px;
    }

    .landing-gallery-arrow--prev {
        left: 6px;
    }

    .landing-gallery-arrow--next {
        right: 6px;
    }
}

/* Image lightbox (gate / events galleries) */
.img-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1100;
    background: rgba(0, 0, 0, 0.92);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 60px;
}

.img-lightbox.open {
    display: flex;
}

.img-lightbox img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 2px;
}

@media (max-width: 640px) {
    .img-lightbox {
        padding: 20px;
    }
}

/* Schedule block (Gate) */
.schedule-block {
    text-align: center;
    padding: 70px 20px;
    border-top: 1px solid rgba(255, 237, 0, 0.15);
    border-bottom: 1px solid rgba(255, 237, 0, 0.15);
}

.schedule-block__time {
    font-family: 'HunthersDwayne', cursive;
    font-size: clamp(36px, 6vw, 64px);
    color: var(--yellow);
}

.schedule-block__label {
    font-size: 13px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.6;
    margin-top: 10px;
}

/* Landing page section wrapper */
.landing-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 60px;
}

.landing-section--tight {
    padding: 80px 60px;
}

@media (max-width: 960px) {
    .format-cards,
    .steps {
        grid-template-columns: 1fr;
    }

    .landing-section,
    .landing-section--tight {
        padding: 70px 24px;
    }

    .landing-gallery {
        padding: 4px 24px 20px;
    }

    .landing-gallery img {
        flex-basis: 240px;
        height: 280px;
    }
}

@media (max-width: 640px) {
    .schedule-block__time {
        font-size: 40px;
    }
}