/* ================= HERO ================= */
.hero {
    position: relative;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    padding-top: 100px;
}

.hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    pointer-events: none;
    opacity: 0.55;
    animation: hero-drift 16s ease-in-out infinite alternate;
}

.hero__glow--amber {
    width: 520px;
    height: 520px;
    top: -120px;
    right: -120px;
    background: radial-gradient(circle, rgba(193, 168, 117, 0.20), transparent 65%);
}

.hero__glow--smoke {
    width: 460px;
    height: 460px;
    bottom: -140px;
    left: -100px;
    background: radial-gradient(circle, rgba(254, 252, 252, 0.06), transparent 65%);
    animation-duration: 22s;
}

@keyframes hero-drift {
    to { transform: translate(30px, -24px) scale(1.08); }
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin-inline: auto;
    padding-inline: var(--pad-side);
    text-align: center;
}

.hero__label {
    justify-content: center;
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--amber-soft);
    margin-bottom: 34px;
}

.hero__title {
    font-family: var(--display);
    font-weight: 900;
    font-size: clamp(44px, 9vw, 104px);
    line-height: 1.04;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: var(--ink);
}

.hero__title .line {
    display: block;
}

.hero__title em {
    font-style: normal;
}

.hero__title .accent {
    color: var(--amber);
}

.hero__sub {
    max-width: 620px;
    margin: 28px auto 0;
    font-size: clamp(16px, 2vw, 19px);
    color: var(--ink-soft);
}

.hero__cta {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.hero__marquee {
    position: relative;
    z-index: 2;
    margin-top: clamp(56px, 8vh, 90px);
    border-top: 1px solid var(--line-soft);
    padding: 16px 0;
    overflow: hidden;
}

.marquee__track {
    display: flex;
    white-space: nowrap;
    will-change: transform;
    animation: marquee 30s linear infinite;
}

.marquee__track span {
    display: inline-flex;
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--ink-faint);
}

.marquee__track span b {
    color: var(--amber);
    font-weight: 700;
    margin: 0 1.1em;
}

@keyframes marquee {
    to { transform: translateX(-50%); }
}

/* ================= ABOUT ================= */
.about {
    position: relative;
    padding: clamp(70px, 10vw, 130px) 0;
}

.about__lead {
    font-family: var(--sans);
    font-weight: 600;
    font-size: clamp(22px, 3.2vw, 40px);
    line-height: 1.3;
    letter-spacing: 0.01em;
    max-width: 26ch;
    margin-bottom: 40px;
}

.about__lead em {
    font-style: normal;
    color: var(--amber);
}

.about__cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(24px, 5vw, 64px);
    margin-bottom: 56px;
}

.about__text p {
    color: var(--ink-soft);
    font-size: 16px;
    margin-bottom: 18px;
    max-width: 60ch;
}

.about__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}

.about__stat {
    background: var(--bg-2);
    padding: 24px 20px;
}

.about__stat-num {
    font-family: var(--sans);
    font-size: 30px;
    font-weight: 700;
    color: var(--amber);
    line-height: 1;
}

.about__stat-num sup {
    font-size: 14px;
}

.about__stat-label {
    display: block;
    margin-top: 10px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-faint);
}

/* ================= HALLS ================= */
.halls {
    position: relative;
    padding: clamp(70px, 10vw, 130px) 0;
}

.halls__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}

.hall {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--card);
    padding: clamp(28px, 3.4vw, 44px);
    min-height: 340px;
    transition: background 0.4s var(--ease);
}

.hall:hover {
    background: var(--card-2);
}

.hall::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--amber);
    transition: width 0.5s var(--ease);
}

.hall:hover::before {
    width: 100%;
}

.hall__num {
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink-faint);
}

.hall__name {
    font-family: var(--sans);
    font-weight: 700;
    font-size: clamp(22px, 2.4vw, 30px);
    margin-top: 16px;
    line-height: 1.15;
    letter-spacing: 0.01em;
}

.hall__desc {
    margin-top: 14px;
    color: var(--ink-soft);
    font-size: 15px;
    flex: 1;
}

.hall__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid var(--line-soft);
}

.hall__price {
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 600;
    color: var(--amber-soft);
}

.hall__price small {
    color: var(--ink-faint);
    font-size: 11px;
}

.hall__more {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-soft);
    transition: color 0.3s var(--ease), transform 0.3s var(--ease);
}

.hall:hover .hall__more {
    color: var(--amber);
    transform: translateX(4px);
}

/* ================= HOOKAH MENU ================= */
.hookah {
    position: relative;
    padding: clamp(70px, 10vw, 130px) 0;
}

.menu-list {
    border-top: 1px solid var(--line);
}

.menu-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    align-items: baseline;
    padding: 26px 0;
    border-bottom: 1px solid var(--line-soft);
    transition: padding-left 0.4s var(--ease);
}

.menu-row:hover {
    padding-left: 16px;
}

.menu-row__name {
    display: flex;
    align-items: baseline;
    gap: 16px;
    flex-wrap: wrap;
}

.menu-row__title {
    font-family: var(--sans);
    font-weight: 600;
    font-size: clamp(19px, 2.2vw, 26px);
    line-height: 1.2;
}

.menu-row__desc {
    color: var(--ink-faint);
    font-size: 14px;
}

.menu-row__right {
    text-align: right;
}

.menu-row__price {
    font-family: var(--sans);
    font-size: 16px;
    font-weight: 600;
    color: var(--amber-soft);
    white-space: nowrap;
}

.menu-row__note {
    display: block;
    font-size: 12px;
    color: var(--ink-faint);
    margin-top: 4px;
}

.menu-row__note b {
    color: var(--amber);
    font-weight: 600;
}

.hookah__note {
    margin-top: 18px;
    font-size: 13px;
    color: var(--ink-faint);
}

.hookah__note b {
    color: var(--amber);
    font-weight: 600;
}

/* ================= BAR (tabs) ================= */
.bar {
    position: relative;
    padding: clamp(70px, 10vw, 130px) 0;
}

.bar__tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 34px;
}

.bar__tab {
    padding: 10px 20px;
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-soft);
    border: 1px solid var(--line);
    border-radius: 999px;
    transition: all 0.3s var(--ease);
}

.bar__tab:hover {
    border-color: var(--amber);
    color: var(--amber-soft);
}

.bar__tab.is-active {
    background: var(--amber);
    border-color: var(--amber);
    color: #000;
}

.bar__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}

.bar__item {
    background: var(--card);
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}

.bar__item-name {
    font-family: var(--sans);
    font-weight: 700;
    font-size: 17px;
}

.bar__item-desc {
    color: var(--ink-faint);
    font-size: 13px;
    margin-top: 6px;
}

.bar__item-price {
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 600;
    color: var(--amber-soft);
    white-space: nowrap;
}

/* ================= PROMO ================= */
.promo {
    position: relative;
    padding: clamp(70px, 10vw, 130px) 0;
}

.promo__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}

.promo__card {
    position: relative;
    background: var(--bg-2);
    padding: clamp(28px, 3.4vw, 44px);
    overflow: hidden;
}

.promo__card::after {
    content: "";
    position: absolute;
    right: -60px;
    bottom: -60px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--amber-glow), transparent 70%);
    pointer-events: none;
}

.promo__num {
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--amber);
}

.promo__name {
    font-family: var(--sans);
    font-weight: 700;
    font-size: clamp(20px, 2.2vw, 28px);
    margin-top: 14px;
    line-height: 1.2;
    letter-spacing: 0.01em;
}

.promo__text {
    margin-top: 12px;
    color: var(--ink-soft);
    font-size: 15px;
}

.promo__note {
    display: inline-block;
    margin-top: 18px;
    font-size: 12px;
    color: var(--ink-faint);
}

.promo__note b {
    color: var(--amber);
}

/* ================= RULES 18+ ================= */
.rules {
    position: relative;
    background: var(--charcoal);
    padding: clamp(56px, 8vw, 100px) 0;
    overflow: hidden;
}

.rules__inner {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: clamp(28px, 6vw, 90px);
    align-items: center;
}

.rules__stamp {
    width: clamp(110px, 14vw, 170px);
    aspect-ratio: 1;
    flex: none;
}

.rules__stamp circle {
    fill: none;
    stroke: var(--amber);
    stroke-width: 1.2;
    opacity: 0.7;
}

.rules__stamp text {
    font-family: var(--sans);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.3em;
    fill: var(--amber);
    text-transform: uppercase;
}

.rules__stamp .rules__big {
    font-family: var(--display);
    font-size: 38px;
    font-weight: 800;
    letter-spacing: 0;
    fill: var(--amber);
}

.rules__title {
    font-family: var(--sans);
    font-weight: 700;
    font-size: clamp(26px, 3.4vw, 44px);
    line-height: 1.15;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.rules__list {
    margin-top: 20px;
    display: grid;
    gap: 12px;
}

.rules__list li {
    list-style: none;
    display: flex;
    gap: 12px;
    align-items: baseline;
    color: var(--ink-soft);
    font-size: 15px;
}

.rules__list li::before {
    content: "";
    width: 7px;
    height: 7px;
    flex: none;
    transform: rotate(45deg);
    border: 1px solid var(--amber);
    align-self: center;
}

.rules__list b {
    color: var(--ink);
}

/* ================= CONTACTS ================= */
.contacts {
    position: relative;
    padding: clamp(70px, 10vw, 130px) 0;
}

.contacts__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}

.contacts__col {
    background: var(--bg-2);
    padding: clamp(24px, 3vw, 40px);
}

.contacts__big {
    font-family: var(--sans);
    font-weight: 600;
    font-size: clamp(19px, 2.2vw, 27px);
    line-height: 1.25;
    margin-top: 16px;
}

.contacts__sub {
    margin-top: 8px;
    color: var(--ink-faint);
    font-size: 14px;
}

.contacts__sub a {
    color: var(--amber-soft);
    border-bottom: 1px solid rgba(193, 168, 117, 0.35);
    transition: color 0.3s var(--ease);
}

.contacts__sub a:hover {
    color: var(--amber);
}

.contacts__cta {
    grid-column: 1 / -1;
    background: var(--charcoal);
    padding: clamp(28px, 4vw, 52px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.contacts__cta-title {
    font-family: var(--sans);
    font-weight: 700;
    font-size: clamp(24px, 3.4vw, 44px);
    line-height: 1.1;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

/* ================= CTA ================= */
.cta-section {
    position: relative;
    padding: clamp(60px, 9vw, 120px) 0;
    text-align: center;
    overflow: hidden;
}

.cta__marquee {
    border-top: 1px solid var(--line-soft);
    border-bottom: 1px solid var(--line-soft);
    padding: 14px 0;
    overflow: hidden;
    margin-bottom: clamp(40px, 6vw, 70px);
}

.cta__content {
    position: relative;
    z-index: 2;
}

.cta__title {
    font-family: var(--display);
    font-weight: 900;
    font-size: clamp(40px, 8vw, 96px);
    line-height: 1.04;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.cta__title em {
    font-style: normal;
    color: var(--amber);
}

.cta__sub {
    max-width: 520px;
    margin: 22px auto 0;
    color: var(--ink-soft);
    font-size: 16px;
}

.cta__content .btn {
    margin-top: 36px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
    .about__cols {
        grid-template-columns: 1fr;
    }

    .halls__grid,
    .promo__grid,
    .contacts__grid {
        grid-template-columns: 1fr;
    }

    .bar__grid {
        grid-template-columns: 1fr;
    }

    .rules__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .rules__stamp {
        margin-inline: auto;
    }

    .rules__list li {
        justify-content: center;
    }

    .section__head {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

@media (max-width: 560px) {
    .about__stats {
        grid-template-columns: 1fr;
    }

    .menu-row {
        grid-template-columns: 1fr;
    }

    .menu-row__right {
        text-align: left;
    }

    .hero__cta .btn {
        width: 100%;
    }
}
