/*
Theme Name: newTheme
Version: 1.0
Author: Linara
*/

:root {
    --bg: #140b0d;
    --bg2: #1f1114;
    --cream: #f4e4d3;
    --cream2: #fff3e8;
    --muted: #cdb3aa;
    --rose: #e0a0a8;
    --red: #a7212e;
    --red2: #d44c59;
    --wine: #63151d;
    --terr: #b36a56;
    --line: rgba(244, 228, 211, .17);
    --glass: rgba(244, 228, 211, .075);
    --shadow: 0 32px 90px rgba(0, 0, 0, .38);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--cream);
    font-family: Inter, system-ui, sans-serif;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

::selection {
    background: var(--rose);
    color: #210f12;
}

.section {
    position: relative;
    padding: 118px 0;
}

.section-label {
    margin-bottom: 18px;
    color: var(--rose);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .22em;
    text-transform: uppercase;
}

.section h2 {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(42px, 6vw, 82px);
    line-height: .94;
    letter-spacing: -.045em;
}

.lead-text,
.section-head p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.8;
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 35px;
    margin-bottom: 44px;
}

.section-head p {
    max-width: 470px;
    margin: 0;
}

.btn-sid {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 25px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    transition: .35s;
}

.btn-main {
    background: linear-gradient(135deg, var(--red), var(--red2));
    box-shadow: 0 20px 50px rgba(167, 32, 45, .36);
}

.btn-ghost {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .04);
    backdrop-filter: blur(8px);
}

.btn-sid:hover {
    transform: translateY(-3px);
}

.texture,
.menu-noise,
.hero-grain {
    position: absolute;
    inset: 0;
    opacity: .07;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 250 250' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

[data-reveal] {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity .75s ease, transform .75s ease;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: none;
}

/* Header */
.sid-topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 50;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;
    padding: 22px 34px;
    pointer-events: none;
    transition: all .3s ease;
}

/* состояние при скролле */
.sid-topbar.is-scrolled {
    backdrop-filter: blur(12px);
    background: rgba(20, 11, 13, .42);
    border-bottom: 1px solid rgba(244, 228, 211, .08);
}

.brand,
.top-contacts,
.menu-toggle {
    pointer-events: auto;
}

.brand {
    width: 118px;
    height: 62px;
    display: grid;
    place-items: center;
    background: rgba(255, 238, 224, .72);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 999px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, .22);
    backdrop-filter: blur(16px);
}

.brand img {
    max-height: 50px;
    object-fit: contain;
}

.top-contacts {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: rgba(244, 228, 211, .82);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    text-align: center;
}

.top-contacts span {
    color: var(--rose);
}

.menu-toggle {
    position: relative;
    justify-self: end;
    width: 56px;
    height: 56px;
    border: 1px solid rgba(244, 228, 211, .34);
    border-radius: 999px;
    background: rgba(22, 13, 14, .46);
    color: var(--cream);
    cursor: pointer;
    transition: .35s;
    backdrop-filter: blur(16px);
}

.menu-toggle:hover {
    background: rgba(167, 33, 46, .7);
    transform: translateY(-2px);
}

.menu-toggle span {
    position: absolute;
    left: 50%;
    width: 20px;
    height: 1px;
    background: currentColor;
    transform: translateX(-50%);
    transition: .35s;
}

.menu-toggle span:first-child {
    top: 20px;
}

.menu-toggle span:nth-child(2) {
    top: 31px;
}

.menu-open .menu-toggle span:first-child {
    top: 27px;
    transform: translateX(-50%) rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
    top: 27px;
    transform: translateX(-50%) rotate(-45deg);
}

/* Fullscreen menu */
.menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 90;
    display: grid;
    place-items: center;
    background: radial-gradient(circle at 80% 15%, rgba(167, 32, 45, .42), transparent 34%), linear-gradient(115deg, rgba(11, 5, 6, .94), rgba(32, 13, 15, .86));
    opacity: 0;
    visibility: hidden;
    transition: .45s;
    backdrop-filter: blur(19px);
}

.menu-overlay.is-active {
    opacity: 1;
    visibility: visible;
}

.menu-wrap {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 70px;
    align-items: end;
}

.menu-kicker,
.menu-foot {
    margin: 0 0 20px;
    color: var(--muted);
    font-size: 12px;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.menu-foot {
    margin-top: 28px;
}

.menu-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.menu-overlay a {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(48px, 8vw, 108px);
    line-height: .86;
    letter-spacing: -.055em;
    opacity: 0;
    transform: translateX(-20px);
    transition: .35s;
}

.menu-overlay.is-active a {
    opacity: 1;
    transform: none;
}

.menu-overlay a:nth-of-type(2) { transition-delay: .05s; }
.menu-overlay a:nth-of-type(3) { transition-delay: .1s; }
.menu-overlay a:nth-of-type(4) { transition-delay: .15s; }
.menu-overlay a:nth-of-type(5) { transition-delay: .2s; }

.menu-overlay a:hover {
    color: var(--rose);
    letter-spacing: -.02em;
    text-shadow: 0 0 44px rgba(217, 153, 159, .35);
}

/* Hero */
.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 132px 0 100px;
    background:
        linear-gradient(180deg, rgba(20, 11, 13, .62), rgba(20, 11, 13, .88)),
        radial-gradient(circle at 50% 42%, rgba(167, 33, 46, .18), transparent 45%),
        url('./img/interior/20.jpg') center / cover no-repeat;
    text-align: center;
}

.hero-center {
    position: relative;
    z-index: 2;
    padding: 34px 46px;
}

.hero-logo {
    width: 210px;
    margin: 0 auto 22px;
    filter: drop-shadow(0 22px 45px rgba(0, 0, 0, .36));
}

.hero h1,
.hero-center h1 {
    margin: 20px 0;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(80px, 10vw, 160px);
    line-height: .88;
    letter-spacing: -.06em;
    text-shadow: 0 18px 55px rgba(0, 0, 0, .65);
}

.hero-sub,
.hero p {
    max-width: 600px;
    margin: 0 auto;
    color: #f1d8d1;
    font-size: 18px;
    line-height: 1.75;
    text-shadow: 0 12px 34px rgba(0, 0, 0, .7);
}

.hero-words {
    position: absolute;
    inset: 0;
    z-index: -1;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    gap: 40px;
    font-family: "Cormorant Garamond", serif;
    font-size: 12vw;
    opacity: .08;
    pointer-events: none;
}

.hero-words span {
    transform: rotate(-8deg);
}

.hero-bottom {
    position: absolute;
    z-index: 3;
    bottom: 72px;
    left: 50%;
    display: flex;
    gap: 40px;
    padding: 13px 20px;
    border: 1px solid rgba(244, 228, 211, .14);
    border-radius: 999px;
    background: rgba(20, 11, 13, .42);
    color: #fff3e8;
    font-size: 12px;
    letter-spacing: .2em;
    text-transform: uppercase;
    transform: translateX(-50%);
    backdrop-filter: blur(12px);
}

.hero-bottom a {
    transition: .3s;
}

.hero-bottom a:hover {
    color: var(--rose);
}

/* About */
.about-section {
    background: radial-gradient(circle at 20% 10%, rgba(167, 32, 45, .24), transparent 34%), var(--bg);
}

.about-note {
    padding: 34px;
    color: #f1d8d1;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(30px, 4vw, 54px);
    line-height: 1.05;
}

.about-note span {
    color: var(--red);
    font-size: 80px;
    line-height: 0;
}

.about-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 70px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.about-strip div {
    padding: 28px 24px;
    border-right: 1px solid var(--line);
}

.about-strip div:last-child {
    border-right: 0;
}

.about-strip b {
    display: block;
    margin-bottom: 10px;
    color: var(--red);
}

.about-strip span {
    color: var(--muted);
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
}

/* Afisha */
.events-section {
    background: #1b1011;
}

.afisha-carousel-wrap {
    position: relative;
    padding: 0 max(22px, calc((100vw - 1180px) / 2));
}

.afisha-carousel {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 12px 0 34px;
    scrollbar-width: none;
}

.afisha-carousel::-webkit-scrollbar {
    display: none;
}

.afisha-card {
    flex: 0 0 340px;
    scroll-snap-align: start;
}

.afisha-img {
    position: relative;
    display: block;
    height: 470px;
    overflow: hidden;
    border: 1px solid rgba(244, 228, 211, .16);
    background: #241314;
    box-shadow: 0 26px 78px rgba(0, 0, 0, .3);
}

.afisha-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, .62));
    pointer-events: none;
}

.afisha-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .75s ease;
}

.afisha-card:hover .afisha-img img {
    transform: scale(1.055);
}

.afisha-pin,
.afisha-ticket {
    position: absolute;
    z-index: 2;
    left: 18px;
    right: 18px;
}

.afisha-pin {
    top: 18px;
    width: fit-content;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(167, 33, 46, .88);
    color: #fff3e8;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.afisha-ticket {
    bottom: 18px;
    color: #fff3e8;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.afisha-body {
    padding: 18px 4px 0;
}

.afisha-body time {
    display: block;
    margin-bottom: 10px;
    color: var(--rose);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.afisha-body h3 {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: 34px;
    line-height: 1;
    letter-spacing: -.03em;
}

.afisha-arrow {
    position: absolute;
    z-index: 5;
    top: 205px;
    width: 56px;
    height: 56px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(244, 228, 211, .08);
    color: var(--cream);
    font-size: 24px;
    transition: .3s;
    backdrop-filter: blur(10px);
}

.afisha-arrow:hover {
    background: var(--red);
}

.afisha-prev {
    left: max(12px, calc((100vw - 1240px) / 2));
}

.afisha-next {
    right: max(12px, calc((100vw - 1240px) / 2));
}

/* Interior */
.interior-section {
    overflow: hidden;
    background: linear-gradient(180deg, #160d0e, #241313);
    isolation: isolate;
}

.interior-section .texture {
    opacity: .45;
}

.interior-showcase {
    position: relative;
}

.interior-backword {
    position: absolute;
    z-index: -1;
    left: 50%;
    top: 42%;
    color: rgba(244, 228, 211, .035);
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(78px, 15vw, 230px);
    line-height: .8;
    white-space: nowrap;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.interior-rail {
    display: flex;
    align-items: stretch;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 16px max(22px, calc((100vw - 1180px) / 2)) 40px;
    scrollbar-width: none;
}

.interior-rail::-webkit-scrollbar {
    display: none;
}

.interior-rail,
.afisha-carousel,
.menu-450-carousel {
    cursor: grab;
    user-select: none;
}

.interior-rail.is-dragging,
.afisha-carousel.is-dragging,
.menu-450-carousel.is-dragging {
    cursor: grabbing;
}

.gallery-panel {
    position: relative;
    flex: 0 0 min(86vw, 1040px);
    height: 640px;
    display: grid;
    grid-template-columns: 1.15fr .74fr .74fr;
    grid-template-rows: 1fr 1fr;
    gap: 18px;
    scroll-snap-align: center;
}

.gallery-panel.panel-2 {
    grid-template-columns: .78fr .78fr 1.12fr;
}

.gallery-panel.panel-3 {
    grid-template-columns: 1.06fr .67fr .82fr;
}

.gallery-panel.panel-4 {
    flex-basis: min(64vw, 760px);
    grid-template-columns: 1fr;
}

.g-item {
    position: relative;
    margin: 0;
    overflow: hidden;
    background: #241314;
    box-shadow: 0 26px 78px rgba(0, 0, 0, .3);
}

.g-item:hover {
    z-index: 3;
    box-shadow: 0 34px 95px rgba(0, 0, 0, .42);
}

.g-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 58%, rgba(0, 0, 0, .56));
    pointer-events: none;
}

.g-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.g-wide.main {
    grid-column: 1 / span 2;
    grid-row: 1 / span 2;
}

.g-wide.top {
    grid-column: 1 / span 3;
    grid-row: 1;
}

.g-tall {
    grid-column: 3;
    grid-row: 1 / span 2;
}

.panel-2 .g-portrait {
    grid-row: 2;
}

.panel-2 .g-portrait.low {
    grid-column: 2;
}

.panel-3 .g-wide.main {
    grid-column: 1 / span 1;
}

.panel-3 .g-small {
    grid-column: 2;
    grid-row: 1;
}

.panel-3 .g-tall {
    grid-column: 3;
    grid-row: 1 / span 2;
}

.panel-3 .g-small.last {
    grid-column: 2;
    grid-row: 2;
}

.panel-4 .g-wide.single {
    grid-column: 1;
    grid-row: 1 / span 2;
}

.g-item figcaption {
    position: absolute;
    z-index: 2;
    left: 18px;
    right: 18px;
    bottom: 16px;
    color: #f5e2dc;
    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.interior-controls {
    position: relative;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 0;
}

.rail-btn {
    width: 56px;
    height: 56px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(244, 228, 211, .075);
    color: var(--cream);
    font-size: 24px;
    line-height: 1;
    transition: .3s;
    backdrop-filter: blur(10px);
}

.rail-btn:hover {
    background: var(--red);
    transform: translateY(-2px);
}

.rail-hint {
    color: var(--muted);
    font-size: 11px;
    letter-spacing: .22em;
    text-transform: uppercase;
}

/* Menu */
.menu-section {
    overflow: hidden;
    background: radial-gradient(circle at 78% 8%, rgba(180, 106, 85, .3), transparent 32%), radial-gradient(circle at 12% 78%, rgba(167, 32, 45, .22), transparent 30%), #160d0e;
}

.menu-head {
    max-width: 880px;
    margin-bottom: 54px;
}

.menu-head .lead-text {
    max-width: 720px;
    margin-top: 22px;
}

.menu-title {
    margin-bottom: 24px;
}

.menu-title span {
    display: block;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(42px, 5vw, 64px);
    line-height: 1;
    letter-spacing: -.04em;
}

.menu-title p {
    margin: 10px 0 0;
    color: var(--muted);
}

.menu-450,
.menu-bar,
.menu-prime {
    position: relative;
    z-index: 1;
    margin-top: 64px;
}

.menu-450 {
    margin-top: 0;
}

.menu-450-wrap {
    position: relative;
}

.menu-450-carousel {
    display: flex;
    gap: 24px;
    overflow: hidden;
    scroll-behavior: smooth;
}

.menu-slide {
    position: relative;
    flex: 0 0 340px;
    height: 460px;
    overflow: hidden;
    border: 1px solid rgba(244, 228, 211, .16);
    background: #241314;
    box-shadow: 0 26px 78px rgba(0, 0, 0, .3);
}

.menu-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s ease;
}

.menu-slide:hover img {
    transform: scale(1.055);
}

.menu-slide-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 22px;
    background: linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, .68));
}

.menu-slide-overlay span {
    color: #fff3e8;
    font-size: 18px;
    line-height: 1.3;
}

.menu-slide-overlay b {
    margin-top: 8px;
    color: var(--rose);
    font-size: 20px;
}

.menu-arrow {
    position: absolute;
    z-index: 3;
    top: 50%;
    width: 54px;
    height: 54px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(20, 11, 13, .58);
    color: var(--cream);
    font-size: 28px;
    line-height: 1;
    transform: translateY(-50%);
    transition: .3s;
    backdrop-filter: blur(12px);
}

.menu-arrow:hover {
    background: var(--red);
}

.menu-arrow.prev {
    left: -18px;
}

.menu-arrow.next {
    right: -18px;
}

.menu-list-simple,
.prime-block {
    border-top: 1px solid rgba(244, 228, 211, .18);
}

.menu-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 18px;
    align-items: baseline;
    padding: 15px 0;
    border-bottom: 1px solid rgba(244, 228, 211, .12);
}

.menu-row span {
    color: #f3ddd6;
    font-size: 17px;
    line-height: 1.35;
}

.menu-row b {
    color: var(--rose);
    font-size: 16px;
    white-space: nowrap;
}

.menu-prime-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.prime-block h3 {
    margin: 0;
    padding: 18px 0 10px;
    font-family: "Cormorant Garamond", serif;
    font-size: 34px;
    line-height: 1;
    letter-spacing: -.03em;
}

/* Contacts */
.contacts-section {
    padding-bottom: 70px;
    background: #1b1011;
}

.contacts-card {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    padding: 54px;
    border: 1px solid var(--line);
    border-radius: 38px;
    background: linear-gradient(135deg, rgba(167, 32, 45, .25), rgba(255, 255, 255, .04));
}

.contacts-card p {
    color: var(--muted);
    font-size: 18px;
}

.contacts-card h3 {
    color: var(--red2);
    font-size: clamp(34px, 6vw, 54px);
}

.socials {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.socials a {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 21px;
    background: rgba(244, 228, 211, .08);
    font-weight: 800;
    transition: .3s;
}

.socials a:hover {
    background: var(--red);
    transform: translateY(-4px) rotate(-3deg);
}

/* 404 */
.notfound {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
}

.notfound::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 30%, rgba(167, 32, 45, .15), transparent 60%);
    pointer-events: none;
}

.notfound-inner {
    position: relative;
}

.notfound-bg {
    position: absolute;
    inset: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: 200px;
    line-height: 1;
    opacity: .04;
    pointer-events: none;
}

.notfound h1 {
    margin-bottom: 20px;
    font-size: clamp(42px, 6vw, 72px);
}

.notfound-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

@media (max-width: 991px) {
    .section {
        padding: 86px 0;
    }

    .sid-topbar {
        grid-template-columns: auto 1fr auto;
    }

    .top-contacts {
        font-size: 10px;
        line-height: 1.4;
    }

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

    .section-head,
    .contacts-card {
        display: block;
    }

    .about-strip {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-panel,
    .gallery-panel.panel-2,
    .gallery-panel.panel-3 {
        flex-basis: 86vw;
        height: 720px;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1.05fr .8fr .8fr;
    }

    .gallery-panel.panel-4 {
        flex-basis: 72vw;
    }

    .g-wide.main,
    .g-wide.top,
    .panel-3 .g-wide.main {
        grid-column: 1 / span 2;
        grid-row: 1;
    }

    .g-tall,
    .panel-3 .g-tall {
        grid-column: 2;
        grid-row: 2 / span 2;
    }

    .g-small,
    .panel-3 .g-small,
    .panel-3 .g-small.last,
    .g-portrait,
    .panel-2 .g-portrait,
    .panel-2 .g-portrait.low {
        grid-column: auto;
        grid-row: auto;
    }

    .menu-prime-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .contacts-card .socials {
        margin-top: 26px;
    }
}

@media (max-width: 575px) {
    .sid-topbar {
        padding: 14px;
    }

    .top-contacts {
        display: none;
    }

    .brand {
        width: 92px;
        height: 52px;
    }

    .hero {
        padding: 115px 0 90px;
    }

    .hero-center {
        margin: 0 16px;
        padding: 26px 22px;
        border-radius: 26px 26px 8px 26px;
    }

    .hero-logo {
        width: 150px;
    }

    .hero h1,
    .hero-center h1 {
        font-size: clamp(62px, 18vw, 90px);
    }

    .hero-bottom {
        bottom: 34px;
        gap: 22px;
        padding: 11px 15px;
        font-size: 10px;
    }

    .menu-overlay a {
        font-size: 54px;
    }

    .about-strip {
        grid-template-columns: 1fr;
    }

    .about-strip div {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .afisha-card {
        flex-basis: 78vw;
    }

    .afisha-img {
        height: 420px;
    }

    .afisha-arrow {
        display: none;
    }

    .gallery-panel,
    .gallery-panel.panel-2,
    .gallery-panel.panel-3,
    .gallery-panel.panel-4 {
        flex-basis: 88vw;
        height: 560px;
        gap: 12px;
    }

    .g-item figcaption {
        left: 12px;
        bottom: 12px;
        font-size: 9px;
        letter-spacing: .14em;
    }

    .rail-hint {
        display: none;
    }

    .menu-slide {
        flex-basis: 76vw;
        height: 420px;
    }

    .menu-arrow {
        display: none;
    }

    .menu-row {
        gap: 12px;
    }

    .menu-row span {
        font-size: 15px;
    }

    .contacts-card {
        padding: 30px;
        border-radius: 30px;
    }

    .socials a {
        width: 54px;
        height: 54px;
    }
}

.sid-topbar {
    z-index: 120;
}

/* .menu-overlay {
    z-index: 100;
} */
/* 
.menu-toggle {
    z-index: 130;
} */

/* .menu-toggle span {
    left: 50%;
    transform: translateX(-50%);
    transform-origin: center;
} */

/* .menu-open .menu-toggle span:first-child {
    top: 27px;
    transform: translateX(-50%) rotate(45deg);
} */

/* .menu-open .menu-toggle span:nth-child(2) {
    top: 27px;
    transform: translateX(-50%) rotate(-45deg);
} */