    * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: #050505;
            color: #e5e5e5;
            line-height: 1.5;
            scroll-behavior: smooth;
        }
html, body {
    height: auto !important;
    overflow-y: auto !important;
}

/* Модальное окно бронирования — продающий дизайн */
.modals-fancys {
    background: linear-gradient(135deg, #0a0a0a 0%, #0f0f0f 100%);
    border-radius: 32px;
    padding: 48px 40px;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(212, 184, 140, 0.2);
    max-width: 500px;
    width: 100%;
}

/* Заголовок */
.modal-title-f {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #ffffff 0%, #d4b88c 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.02em;
}

/* Подзаголовок */
.block-request__head {
    text-align: center;
    margin-bottom: 28px;
}

.block-request__title {
    color: #a0a0a0;
    font-size: 0.9rem;
    font-weight: 400;
}

/* Поля ввода */
.my-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.block-request__input {
    width: 100%;
    padding: 16px 20px;
    background: #141414;
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    color: #ffffff;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.block-request__input:focus {
    outline: none;
    border-color: #d4b88c;
    background: #1a1a1a;
    box-shadow: 0 0 0 3px rgba(212, 184, 140, 0.1);
}

.block-request__input::placeholder {
    color: #555;
}

textarea.block-request__input {
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
}

/* Чекбокс */
.custom-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    margin: 8px 0;
}

.hidden-checkbox {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkbox {
    display: inline-flex;
    width: 22px;
    height: 22px;
    background: #141414;
    border: 1px solid #3a3a3a;
    border-radius: 6px;
    flex-shrink: 0;
    transition: all 0.2s;
}

.checkbox .checkmark {
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.2s;
}

.hidden-checkbox:checked + .checkbox {
    background: #d4b88c;
    border-color: #d4b88c;
}

.hidden-checkbox:checked + .checkbox .checkmark {
    opacity: 1;
}

.checkbox-text {
    font-size: 0.7rem;
    color: #888;
    line-height: 1.4;
}

.checkbox-text a {
    color: #d4b88c;
    text-decoration: none;
    border-bottom: 1px dotted #d4b88c;
}

.checkbox-text a:hover {
    color: #e8cfa0;
}

/* Кнопка отправки */
.my-form .btn-primary {
    width: 100%;
    padding: 16px;
    font-size: 1rem;
    font-weight: 700;
    background: linear-gradient(135deg, #d4b88c 0%, #c4a070 100%);
    color: #0a0a0a;
    border: none;
    border-radius: 60px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
    letter-spacing: 0.5px;
}

.my-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(212, 184, 140, 0.3);
    background: linear-gradient(135deg, #e0c498 0%, #d4b88c 100%);
}

/* Кнопка закрытия */
.fancybox-close-small {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    color: #888;
}

/* Блок благодарности */
.thankyou {
    text-align: center;
    padding: 48px 32px;
    background: linear-gradient(135deg, #0a0a0a 0%, #0f0f0f 100%);
    border-radius: 32px;
    max-width: 480px;
    margin: 0 auto;
    animation: thankyouFadeIn 0.6s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

/* Анимация появления */
@keyframes thankyouFadeIn {
    0% {
        opacity: 0;
        transform: scale(0.9) translateY(30px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Иконка галочки */
.check-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #d4b88c 0%, #c4a070 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    animation: checkBounce 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.2s both;
    box-shadow: 0 10px 30px -5px rgba(212, 184, 140, 0.4);
}

@keyframes checkBounce {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.check-icon svg {
    width: 44px;
    height: 44px;
    stroke: #0a0a0a;
    stroke-width: 2.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    animation: checkDraw 0.4s ease-in-out 0.4s both;
}

@keyframes checkDraw {
    0% {
        stroke-dasharray: 50;
        stroke-dashoffset: 50;
        opacity: 0;
    }
    100% {
        stroke-dasharray: 50;
        stroke-dashoffset: 0;
        opacity: 1;
    }
}

/* Заголовок */
.thankyou-title {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #d4b88c 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 12px;
    animation: titleSlideUp 0.5s ease 0.3s both;
    letter-spacing: -0.02em;
}

@keyframes titleSlideUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Подзаголовок */
.thankyou-subtitle {
    font-size: 1.1rem;
    color: #e5e5e5;
    font-weight: 500;
    margin-bottom: 16px;
    animation: subtitleFade 0.5s ease 0.4s both;
}

@keyframes subtitleFade {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Сообщение */
.thankyou-message {
    font-size: 0.9rem;
    color: #999;
    line-height: 1.5;
    animation: messageFade 0.5s ease 0.5s both;
}

@keyframes messageFade {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Конфетти эффект */
.thankyou::before,
.thankyou::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
}

.thankyou::before {
    background: #d4b88c;
    top: 20%;
    left: 15%;
    animation: confetti1 1s ease-out 0.3s forwards;
}

.thankyou::after {
    background: #ffffff;
    top: 30%;
    right: 15%;
    animation: confetti2 1s ease-out 0.5s forwards;
}

@keyframes confetti1 {
    0% {
        opacity: 1;
        transform: translate(0, 0) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(-30px, 50px) scale(0);
    }
}

@keyframes confetti2 {
    0% {
        opacity: 1;
        transform: translate(0, 0) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(30px, 60px) scale(0);
    }
}

/* Дополнительные парящие частицы */
.thankyou .sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #d4b88c;
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
}

/* Адаптив */
@media (max-width: 560px) {
    .thankyou {
        padding: 32px 24px;
    }
    
    .check-icon {
        width: 60px;
        height: 60px;
    }
    
    .check-icon svg {
        width: 32px;
        height: 32px;
    }
    
    .thankyou-title {
        font-size: 1.8rem;
    }
    
    .thankyou-subtitle {
        font-size: 0.95rem;
    }
    
    .thankyou-message {
        font-size: 0.8rem;
    }
}
.hidden-checkbox.error + .checkbox {
    border-color: #ff4444;
    background: rgba(255, 68, 68, 0.1);
    animation: shake 0.3s ease-in-out;
}
.error input[placeholder]          {-o-text-overflow:ellipsis;text-overflow:ellipsis; font-style:italic; color:#ff0048 !important}
.error::-webkit-input-placeholder {text-overflow:ellipsis; font-style:italic; color:#ff0048 !important}
.error::-moz-placeholder     {text-overflow:ellipsis; font-style:italic; color:#ff0048 !important} 
.error:-moz-placeholder      {text-overflow:ellipsis; font-style:italic; color:#ff0048 !important} 
.error:-ms-input-placeholder {text-overflow:ellipsis; font-style:italic; color:#ff0048 !important}
.fancybox-close-small:hover {
    background: rgba(212, 184, 140, 0.2);
    color: #d4b88c;
}

/* Анимация появления */
.modals-fancys {
    animation: modalFadeIn 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Адаптив */
@media (max-width: 560px) {
    .modals-fancys {
        padding: 32px 24px;
        border-radius: 24px;
    }
    
    .modal-title-f {
        font-size: 1.8rem;
    }
    
    .block-request__input {
        padding: 14px 18px;
    }
}


/* Header actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}
/* Десктоп — всё как было */
.phone-link {
    color: white;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
}

.menu-toggle {
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    display: none;
}

/* Мобильные */
@media (max-width: 991px) {
    .header-actions {
        display: flex;
        align-items: center;
        gap: 12px;
    }
    
    /* Иконка времени + текст */
    .mobile-time {
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: 0.7rem;
        color: #e5e5e5;
    }
    
    .mobile-time i {
        color: #d4b88c;
        font-size: 0.8rem;
    }
    
    /* Круглая иконка телефона */
    .mobile-phone {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background: #d4b88c;
        border-radius: 50%;
        color: #050505;
        text-decoration: none;
    }
    
    .mobile-phone i {
        font-size: 1rem;
    }
    
    /* Скрываем старый телефон на мобилке */
    .phone-link {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
}

/* Десктоп — скрываем мобильные элементы */
@media (min-width: 992px) {
    .mobile-time, .mobile-phone {
        display: none;
    }
}
/* Время работы */
.work-hours {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #e5e5e5;
    font-size: 0.9rem;
}

.work-hours i {
    color: #d4b88c;
    font-size: 1rem;
}

/* Круглая иконка телефона */
.phone-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #d4b88c;
    border-radius: 50%;
    color: #050505;
    text-decoration: none;
    transition: all 0.3s ease;
}

.phone-icon i {
    font-size: 1.1rem;
}

.phone-icon:hover {
    background: #ffffff;
    transform: scale(1.05);
}

/* Кнопка бургер */
.menu-toggle {
    background: none;
    border: none;
    color: white;
    font-size: 1.6rem;
    cursor: pointer;
    display: none;
}

/* Десктоп: показываем всё */
@media (min-width: 992px) {
    .menu-toggle {
        display: none;
    }
    .phone-icon span {
        display: none;
    }
}

/* Мобильные: скрываем текст времени, показываем бургер */
@media (max-width: 991px) {
    .work-hours span {
        display: none;
    }
    .menu-toggle {
        display: block;
    }
    .header-actions {
        gap: 16px;
    }
}
/* ===== МОБИЛЬНОЕ МЕНЮ (fullscreen overlay) ===== */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(20px);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    z-index: 2001;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.mobile-menu-close:hover {
    background: rgba(255,255,255,0.1);
}

.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    gap: 32px;
    text-align: center;
    margin-bottom: 48px;
}

.mobile-menu-nav a {
    color: white;
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: 500;
    transition: color 0.2s;
    letter-spacing: -0.02em;
}

.mobile-menu-nav a:hover {
    color: #d4b88c;
}

.mobile-menu-contacts {
    text-align: center;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.mobile-menu-contacts p {
    margin: 16px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 1rem;
    color: #ccc;
}

.mobile-menu-contacts i {
    color: #d4b88c;
    width: 24px;
    font-size: 1.2rem;
}

.mobile-menu-contacts a {
    color: white;
    text-decoration: none;
}

.mobile-menu-contacts .btn-mobile-book {
    display: inline-block;
    margin-top: 24px;
    padding: 14px 32px;
    background: #d4b88c;
    color: #050505;
    border-radius: 60px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.mobile-menu-contacts .btn-mobile-book:hover {
    background: #c4a87a;
    transform: scale(1.02);
}

/* Скрываем старый nav-links на мобильных */
@media (max-width: 991px) {
    .nav-links {
        display: none !important;
    }
}

/* Адаптация для мобильных */
@media (max-width: 576px) {
    .mobile-menu-nav a {
        font-size: 1.4rem;
    }
    .mobile-menu-contacts p {
        font-size: 0.85rem;
        flex-wrap: wrap;
        justify-content: center;
    }
}
.section-in {
  padding: 20px 0 !important;
}
        .container {
            max-width: 1440px;
            margin: 0 auto;
            padding: 0 32px;
        }

        @media (max-width: 768px) {
            .container {
                padding: 0 20px;
            }
        }

        /* Typography */
        .section-title {
            font-size: 3.2rem;
            font-weight: 700;
            letter-spacing: -0.02em;
            text-align: center;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #ffffff, #a0a0a0);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .section-subtitle {
            text-align: center;
            color: #8a8a8a;
            max-width: 680px;
            margin: 0 auto 2.5rem auto;
            font-size: 1rem;
        }

        @media (max-width: 768px) {
            .section-title {
                font-size: 2.2rem;
            }
        }

        /* Buttons */
        .btn-primary {
            display: inline-block;
            padding: 14px 36px;
            background: #ffffff;
            color: #000000;
            border-radius: 60px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
            font-size: 0.9rem;
            letter-spacing: 0.5px;
        }

        .btn-primary:hover {
            background: #e0e0e0;
            transform: translateY(-3px);
            box-shadow: 0 12px 25px rgba(255, 255, 255, 0.1);
        }

        .btn-outline {
            display: inline-block;
            padding: 14px 36px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            background: transparent;
            color: #ffffff;
            border-radius: 60px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .btn-outline:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: #ffffff;
            transform: translateY(-2px);
        }
/* ===== ХЛЕБНЫЕ КРОШКИ — минимал ===== */
.breadcrumbs {
    padding: 16px 0;
}
.section-bread {padding: 10px 0;}
.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.breadcrumb li {
    font-size: 0.8rem;
}

.breadcrumb li:not(:last-child)::after {
    content: "/";
    margin-left: 6px;
    color: #555;
}

.breadcrumb a {
    color: #888;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #d4b88c;
}

.breadcrumb .active span {
    color: #fff;
}
        /* Header */
   /* ХЕДЕР — ОБЫЧНЫЙ (relative), фиксится только при скролле */
        .header {
            position: relative;
            background: #0a0a0a;
            z-index: 1000;
            padding: 16px 0;
            border-bottom: 1px solid rgba(255,255,255,0.06);
            transition: all 0.3s ease;
        }

        /* КЛАСС ДЛЯ ФИКСИРОВАННОГО ХЕДЕРА (появляется при скролле) */
        .header.fixed {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(5, 5, 5, 0.98);
            backdrop-filter: blur(12px);
            box-shadow: 0 4px 20px rgba(0,0,0,0.5);
            border-bottom-color: rgba(212, 184, 140, 0.3);
            animation: slideDown 0.4s ease;
        }

        @keyframes slideDown {
            from {
                transform: translateY(-100%);
            }
            to {
                transform: translateY(0);
            }
        }

        /* ОТСТУП ДЛЯ КОНТЕНТА, КОГДА ХЕДЕР ФИКСИРОВАН */
        body.header-fixed {
            padding-top: 80px;
        }

        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo img {
            height: 70px;
            filter: brightness(0) invert(1);
        }

        .nav-links {
            display: none;
            gap: 42px;
        }

        .nav-links a {
            color: #eaeaea;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            transition: 0.2s;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 0;
            height: 2px;
            background: #d4b88c;
            transition: 0.25s;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-links a:hover {
            color: #ffffff;
        }

        .header-actions {
            display: flex;
            gap: 24px;
            align-items: center;
        }

        .phone-link {
            color: white;
            font-weight: 600;
            text-decoration: none;
            font-size: 0.95rem;
        }

        .menu-toggle {
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }

        @media (min-width: 992px) {
            .nav-links {
                display: flex;
            }
            .menu-toggle {
                display: none;
            }
        }

        /* Hero Slider */
        .hero-slider {
            height: 85vh;
            min-height: 600px;
            position: relative;
            overflow: hidden;
        }

        .slider-container {
            width: 100%;
            height: 100%;
            position: relative;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1.2s ease;
            background-size: cover;
            background-position: center;
        }

        .slide.active {
            opacity: 1;
            z-index: 2;
        }

 /* Затемнение для слайдов — легкое, элегантное */
.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.25) 50%, rgba(0, 0, 0, 0.15) 100%);
    z-index: 3;
    pointer-events: none;
}

/* Контент поверх затемнения */
.hero-content {
    position: absolute;
    bottom: 50%;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 10;
}


        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-content h1 {
            font-size: 4.5rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            color: white;
            text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
        }

        .hero-content p {
            font-size: 1.2rem;
            color: #d0d0d0;
            margin-top: 1rem;
        }

        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }
        }

        .slider-nav {
            position: absolute;
            bottom: 30px;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            gap: 12px;
            z-index: 10;
        }

        .slider-dot {
            width: 10px;
            height: 10px;
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.4);
            cursor: pointer;
            transition: 0.3s;
        }

        .slider-dot.active {
            width: 28px;
            background: #d4b88c;
        }

        /* About Section */
        .about-text {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .about-text p {
            margin-bottom: 1.5rem;
            color: #b0b0b0;
            line-height: 1.6;
        }

        /* Service Cards - новые современные иконки */
        .service-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin: 60px 0 30px;
        }

        .service-card {
            background: #0c0c0c;
            border-radius: 28px;
            padding: 42px 28px;
            text-align: center;
            border: 1px solid #1f1f1f;
            transition: all 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-8px);
            border-color: #d4b88c;
            background: #111111;
        }

        .service-card i {
            font-size: 2.8rem;
            color: #d4b88c;
            margin-bottom: 24px;
        }

        .service-card h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 12px;
        }

        .service-card p {
            color: #9a9a9a;
            font-size: 0.9rem;
        }

        @media (max-width: 992px) {
            .service-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 576px) {
            .service-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Venues Section — с картинками у каждой площадки */
        .venues-hero {
            position: relative;
            background: #030303;
            padding: 80px 0;
        }

        .venues-grid-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-top: 40px;
        }

        .venue-card-item {
            background: #0c0c0c;
            border-radius: 24px;
            overflow: hidden;
            transition: all 0.3s ease;
            border: 1px solid #1f1f1f;
        }

        .venue-card-item:hover {
            transform: translateY(-6px);
            border-color: #d4b88c;
        }

        .venue-img {
            height: 220px;
            overflow: hidden;
        }

        .venue-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s;
        }

        .venue-card-item:hover .venue-img img {
            transform: scale(1.05);
        }

        .venue-info {
            padding: 24px;
            text-align: center;
        }

        .venue-info h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .venue-info p {
            color: #9a9a9a;
            font-size: 0.85rem;
        }

        @media (max-width: 992px) {
            .venues-grid-cards {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 576px) {
            .venues-grid-cards {
                grid-template-columns: 1fr;
            }
        }

        /* Gallery */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin: 48px 0;
        }

        .gallery-item {
            border-radius: 24px;
            overflow: hidden;
            aspect-ratio: 4 / 3;
            cursor: pointer;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.06);
        }

        @media (max-width: 992px) {
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 576px) {
            .gallery-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Menu */
        .menu-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
            margin: 48px 0;
        }

        .menu-card {
            background: #0c0c0c;
            border-radius: 24px;
            overflow: hidden;
            border: 1px solid #242424;
            transition: all 0.3s ease;
        }

        .menu-card:hover {
            transform: translateY(-6px);
            border-color: #d4b88c;
        }

        .menu-img {
            height: 220px;
            overflow: hidden;
        }

        .menu-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s;
        }

        .menu-card:hover .menu-img img {
            transform: scale(1.06);
        }

        .menu-content {
            padding: 22px;
        }

        .menu-header {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            margin-bottom: 8px;
        }

        .menu-header h4 {
            font-size: 1.1rem;
            font-weight: 600;
        }

        .price {
            color: #d4b88c;
            font-weight: 700;
        }

        .desc {
            color: #9a9a9a;
            font-size: 0.8rem;
        }

        @media (max-width: 992px) {
            .menu-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 576px) {
            .menu-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Info Cards — новые иконки вместо старых картинок */
        .info-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 28px;
            margin: 48px 0;
        }

        .info-card {
            background: #0c0c0c;
            border-radius: 24px;
            padding: 32px 24px;
            text-align: center;
            border: 1px solid #1f1f1f;
            transition: all 0.3s;
        }

        .info-card:hover {
            border-color: #d4b88c;
            transform: translateY(-4px);
        }

        .info-card i {
            font-size: 2.2rem;
            color: #d4b88c;
            margin-bottom: 20px;
        }

        .info-card h3 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 12px;
        }

        .info-card p {
            color: #9a9a9a;
            font-size: 0.85rem;
        }

        @media (max-width: 992px) {
            .info-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 576px) {
            .info-grid {
                grid-template-columns: 1fr;
            }
        }

        /* News Section — с фото, датой, заголовком */
        .news-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin: 48px 0;
        }

        .news-card {
            background: #0c0c0c;
            border-radius: 24px;
            overflow: hidden;
            border: 1px solid #1f1f1f;
            transition: all 0.3s ease;
        }

        .news-card:hover {
            transform: translateY(-6px);
            border-color: #d4b88c;
        }

        .news-img {
            height: 240px;
            overflow: hidden;
        }

        .news-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s;
        }

        .news-card:hover .news-img img {
            transform: scale(1.05);
        }

        .news-content {
            padding: 24px;
        }

        .news-date {
            font-size: 0.8rem;
            color: #d4b88c;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .news-date i {
            font-size: 0.8rem;
        }

        .news-content h3 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 12px;
            line-height: 1.4;
        }

        .news-content p {
            color: #9a9a9a;
            font-size: 0.85rem;
            margin-bottom: 16px;
        }

        .news-link {
            color: #d4b88c;
            text-decoration: none;
            font-size: 0.85rem;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: gap 0.3s;
        }

        .news-link:hover {
            gap: 12px;
        }

        @media (max-width: 992px) {
            .news-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 576px) {
            .news-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Events */
        .events-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 48px;
            margin: 48px 0;
        }

        .events-card {
            flex: 1;
            background: #0c0c0c;
            border-radius: 28px;
            padding: 32px;
            border: 1px solid #222;
        }

        .events-card h3 {
            font-size: 1.6rem;
            margin-bottom: 24px;
        }

        .events-card ul {
            list-style: none;
        }

        .events-card li {
            margin-bottom: 14px;
        }

        /* Contacts */
        .contact-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 48px;
            margin: 48px 0;
        }

        .contact-info {
            flex: 1;
            background: #0a0a0a;
            padding: 36px;
            border-radius: 28px;
            border: 1px solid #1f1f1f;
        }

        .contact-info p {
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .map-container {
            flex: 1;
            border-radius: 28px;
            overflow: hidden;
            min-height: 360px;
        }

        /* Footer */
        .footer {
            background: #020202;
            padding: 60px 0 40px;
            border-top: 1px solid #181818;
            text-align: center;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
            margin: 30px 0;
        }

        .footer-links a {
            color: #a0a0a0;
            text-decoration: none;
            font-size: 0.85rem;
            transition: 0.2s;
        }

        .footer-links a:hover {
            color: #ffffff;
        }

        .copyright {
            color: #6a6a6a;
            font-size: 0.75rem;
        }

        section {
            padding: 80px 0;
        }

        .bg-dark-alt {
            background: #030303;
        }