@font-face {
          font-family: 'Alumni Sans SC';
          src: url(../fonts/AlumniSansSC-VariableFont_wght.woff2) format('woff2');
          font-display: swap; 
        }

        @font-face {
            font-family: 'Open Sans';
            src: url('../fonts/OpenSans-Regular.woff2') format('woff2');
            font-weight: normal;
            font-style: normal;
            font-display: swap;
        }

        @font-face {
            font-family: 'Oswald';
            src: url('../fonts/oswald-500-cyrillic-ext.woff2') format('woff2');
            font-weight: 500;
            font-style: normal;
            font-display: swap;
            unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
        }

        @font-face {
            font-family: 'Oswald';
            src: url('../fonts/oswald-500-cyrillic.woff2') format('woff2');
            font-weight: 500;
            font-style: normal;
            font-display: swap;
            unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
        }

        @font-face {
            font-family: 'Oswald';
            src: url('../fonts/oswald-600-cyrillic-ext.woff2') format('woff2');
            font-weight: 600;
            font-style: normal;
            font-display: swap;
            unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
        }

        @font-face {
            font-family: 'Oswald';
            src: url('../fonts/oswald-600-cyrillic.woff2') format('woff2');
            font-weight: 600;
            font-style: normal;
            font-display: swap;
            unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
        }

        @font-face {
            font-family: 'Rawline';
            src: url('../fonts/rawline-300.woff2') format('woff2');
            font-weight: 300;
            font-style: normal;
            font-display: swap;
        }

        @font-face {
            font-family: 'Rawline';
            src: url('../fonts/rawline-400.woff2') format('woff2');
            font-weight: 400;
            font-style: normal;
            font-display: swap;
        }

        @font-face {
            font-family: 'Rawline';
            src: url('../fonts/rawline-600.woff2') format('woff2');
            font-weight: 600;
            font-style: normal;
            font-display: swap;
        }

        @font-face {
            font-family: 'Rawline';
            src: url('../fonts/rawline-700.woff2') format('woff2');
            font-weight: 700;
            font-style: normal;
            font-display: swap;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Alumni Sans SC", sans-serif;
        }

        p {
            font-family: "Open Sans", sans-serif;
        }

        body {
            overflow-x: hidden;
            color: #fff;
            background-color: #000;
            line-height: 1.6;
        }

        html {
            scroll-behavior: smooth;
        }

        a {
            color: #d4af37;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        a:hover {
            color: #f4cf37;
            text-decoration: none;
        }

        /* Первый экран: слайдер ровно на высоту окна, полоса CTA ниже; белый фон под отступами вокруг полосы */
        .hero {
            width: 100%;
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: stretch;
            background-color: #fff;
        }

        .hero-main {
            position: relative;
            height: 100vh;
            min-height: 100vh;
            width: 100%;
            flex-shrink: 0;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .hero-main::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 3;
            pointer-events: none;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transform: scale(1) translate(0,0);
            transition: opacity 2s ease-in-out;
            z-index: 1;
        }

        .slide:first-child {
            opacity: 1;
            z-index: 2;
        }

        .slide.active {
            opacity: 1;
            z-index: 2;
            animation: zoomPan 8s linear forwards;
        }

        .slide picture, 
        .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        @keyframes zoomPan {
            0% { transform: scale(1) translate(0,0); }
            25% { transform: scale(1.1) translate(5px,2px); }
            50% { transform: scale(1.2) translate(10px,5px); }
            75% { transform: scale(1.3) translate(15px,8px); }
            100% { transform: scale(1.4) translate(20px,10px); }
        }

        /* Навигация */
        .nav-container { 
            position: absolute; 
            top: 0; 
            width: 100%; 
            padding: 30px 40px; 
            z-index: 10;
        } 

        .nav-top { 
            display: flex; 
            justify-content: space-between; 
            align-items: center; 
            margin-bottom: 0px; 
        }

        .museum-text {
            font-size: 18px;
            font-weight: 500;
            letter-spacing: 3px;
        }

        .museum-text .museum-text-link {
            color: inherit;
            text-decoration: none;
            font: inherit;
            font-size: inherit;
            font-weight: inherit;
            letter-spacing: inherit;
            line-height: inherit;
        }

        .museum-text .museum-text-link:hover,
        .museum-text .museum-text-link:focus,
        .museum-text .museum-text-link:active,
        .museum-text .museum-text-link:visited,
        .museum-text .museum-text-link:focus-visible {
            color: inherit;
            text-decoration: none;
        }

        .nav-line {
            margin-top: -20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .line {
            flex-grow: 1;
            height: 1px;
            background-color: white;
        }

        .logo {
            margin: 0 5px;
            font-size: 24px;
            font-weight: 600;
            letter-spacing: 2px;
            text-align: center;
        }

        .logo-img {
            width: 100px;
            height: 100px;
            display: block;
            margin: 0 auto;
            object-fit: contain;
        }

        /* Основной контент */
        .hero-content {
            text-align: center;
            z-index: 4;
            margin-top: 60px;
        }

        .welcome-text {
            font-size: 36px;
            font-weight: 300;
            letter-spacing: 4px;
            margin-bottom: 40px;
            padding: 0 20px;
        }

        .btn {
            background-color: transparent;
            border: 1px solid white;
            color: white;
            padding: 12px 30px;
            font-size: 14px;
            font-weight: 500;
            letter-spacing: 2px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }

        /* Меню */
        .menu-toggle { 
            position: absolute;
            right: 40px; 
            width: 30px; 
            height: 21px; 
            cursor: pointer; 
            z-index: 1000;
            display: flex; 
            flex-direction: column; 
            justify-content: center;
            align-items: flex-end;
            gap: 10px;
            overflow: visible;
        }

        .menu-toggle span { 
            display: block; 
            height: 2px; 
            width: 100%; 
            background: white; 
            border-radius: 3px; 
            transition: all 0.3s ease; 
        }

        .menu-toggle span:nth-child(1) {
            width: 133.3334%;
        }

        .menu-toggle span:nth-child(2) {
            width: 200%;
        }

        .menu-toggle span:nth-child(n+3) {
            display: none;
        }

        .overlay-menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.95);
            z-index: 99;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.5s ease, visibility 0.5s;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        body.menu-open .overlay-menu {
            opacity: 1;
            visibility: visible;
        }

        .menu-close {
            position: fixed;
            top: 30px;
            right: 40px;
            width: 30px;
            height: 30px;
            cursor: pointer;
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .menu-close::before,
        .menu-close::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 3px;
            background: white;
            border-radius: 3px;
        }

        .menu-close::before {
            transform: rotate(45deg);
        }

        .menu-close::after {
            transform: rotate(-45deg);
        }

        /* Адаптивность */
        @media (max-width: 768px) {
            .nav-container {
                padding: 20px;
            }
            
            .nav-top {
                margin-bottom: 0px;
            }
            
            .museum-text {
                font-size: 14px;
                letter-spacing: 2px;
            }
            
            .menu-toggle {
                font-size: 30px;
                right: 20px!important;
                position: absolute;
            }
            
            .logo {
                font-size: 20px;
                margin: 0 5px;
            }

            .logo-img {
                width: 70px;
                height: 70px;
            }
            
            .welcome-text {
                font-size: 36px;
            }
        }

/* Класс для ссылки с золотым подчеркиванием */
.gold-underline-link {
    font-family: 'Open Sans', sans-serif;
    font-weight: normal;
    font-style: normal;
    color: #333333;
    text-decoration: none;
    border-bottom: 2px solid #d4af37;
    transition: color 0.3s ease, border-bottom-color 0.3s ease;
    display: inline-block;
    padding-bottom: 2px;
}

.gold-underline-link:hover {
    color: #d4af37; /* Текст становится золотым */
    border-bottom-color: transparent; /* Линия плавно исчезает */
}
    
    
        .cookie-notification {
            position: fixed;
            bottom: 20px;
            left: 20px;
            background-color: #ffffff;
            color: #333333;
            padding: 10px 24px;
            border-radius: 40px; 
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
            display: flex;
            align-items: center;
            gap: 24px;
            z-index: 1000;
            line-height: 1.4;
            border: 1px solid rgba(0, 0, 0, 0.05);
            backdrop-filter: blur(10px); 
            background-color: rgba(255, 255, 255, 0.90);
            transition: opacity 0.3s ease, transform 0.3s ease;
            max-width: 90%;
            box-sizing: border-box;
        }

        .cookie-text {
            font-family: 'Open Sans', sans-serif;
            font-size: 13px;
            margin: 0;
            font-weight: 400;
            white-space: nowrap; /* Чтобы текст был в одну строку на больших экранах */
        }

        .cookie-button {
            font-family: 'Open Sans', sans-serif;
            background-color: transparent;
            border: 1px solid #cccccc;
            color: #333333;
            padding: 8px 20px;
            border-radius: 40px;
            cursor: pointer;
            font-size: 13px;
            font-weight: 500;
            transition: background-color 0.2s, border-color 0.2s;
            flex-shrink: 0;
            background-color: #f5f5f5;
        }

        .cookie-button:hover {
            background-color: #e0e0e0;
            border-color: #999999;
        }

        /* Адаптация для мобильных устройств */
        @media (max-width: 600px) {
            .cookie-notification {
                left: 10px;
                bottom: 10px;
                padding: 12px 16px;
                gap: 16px;
                font-size: 13px;
                border-radius: 30px;
                flex-wrap: wrap; /* Если не хватает места, кнопка уйдет вниз */
                justify-content: center;
                text-align: center;
            }
            .cookie-text {
                white-space: normal; /* Перенос текста на мобильных */
            }
        }
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        


/* Блок Медовой масленицы */
.maslenitsa-block {
    margin-bottom: 60px;
    background-color: #fff;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.maslenitsa-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
}

.maslenitsa-text {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.maslenitsa-text a {
font-family: "Open Sans", sans-serif;
 color: #000;
 text-decoration: underline ;
}

.maslenitsa-text h3 {
    margin-bottom: 20px;
}

/* Как у .about-heading «МУЗЕЙ ИСТОРИИ…»: десктоп 32px, без увеличения относительно блока */
.maslenitsa-text h3:not(.maslenitsa-subtitle) {
    font-size: 32px;
    font-family: 'Oswald', 'Alumni Sans SC', Arial, sans-serif;
    line-height: 1.25;
    font-weight: 600;
    text-transform: uppercase;
    color: #d4af37;
    text-align: left;
    letter-spacing: normal;
    white-space: normal;
}

@media (max-width: 1100px) {
    .maslenitsa-text h3:not(.maslenitsa-subtitle) {
        font-size: clamp(22px, 3.4vw, 32px);
    }
}

.maslenitsa-text .maslenitsa-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: #000;

    font-family: "Open Sans", sans-serif;
}

.maslenitsa-text p {
    text-indent: 2em;
    font-size: 14px;
    line-height: 1.8;
    color: #000;

    font-family: "Open Sans", sans-serif;
}



.maslenitsa-button {
    margin-top: auto;
}

.maslenitsa-button .btn_honey {
    background-color: transparent;
    border: 1px solid #d4af37;
    color: #d4af37;
    padding: 14px 40px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
    text-transform: uppercase;
    font-family: "Oswald", "Alumni Sans SC", sans-serif;
}

.maslenitsa-button .btn_honey:hover {
    background-color: #d4af37;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.maslenitsa-image {
    height: 100%;
    min-height: 400px;
    max-height: 650px;
    overflow: hidden;
}

.maslenitsa-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.maslenitsa-image:hover img {
    transform: scale(1.05);
}

/* Адаптивность для мобильных устройств: текст слева, фото справа, в одну строку */
@media (max-width: 768px) {
    .maslenitsa-grid {
        grid-template-columns: minmax(0, 1fr) minmax(112px, 40%);
        gap: 10px 12px;
        align-items: stretch;
    }

    .maslenitsa-text {
        grid-column: 1;
        grid-row: 1;
        padding: 16px 8px 16px 16px;
        min-width: 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        justify-self: stretch;
    }

    .maslenitsa-image {
        grid-column: 2;
        grid-row: 1;
        min-height: 0;
        max-height: none;
        align-self: stretch;
    }

    .maslenitsa-image img {
        width: 100%;
        height: 100%;
        min-height: 200px;
        object-fit: cover;
        object-position: left center;
    }

    .maslenitsa-text h3 {
        margin-bottom: 10px;
    }

    .maslenitsa-text h3:not(.maslenitsa-subtitle) {
        font-size: clamp(24px, 6vw, 36px);
        text-align: left;
    }

    .maslenitsa-text .maslenitsa-subtitle {
        font-size: 14px;
        text-align: justify;
        text-wrap: pretty;
    }

    .maslenitsa-text p {
        font-size: 13px;
        line-height: 1.55;
        text-indent: 1em;
        text-align: justify;
        text-wrap: pretty;
    }

    .maslenitsa-meta {
        margin-bottom: 10px;
    }

    .maslenitsa-button {
        margin-top: 12px;
    }

    .maslenitsa-button .btn_honey {
        padding: 10px 18px;
        font-size: 13px;
        letter-spacing: 1px;
    }
}

@media (max-width: 480px) {
    .maslenitsa-grid {
        grid-template-columns: minmax(0, 1fr) minmax(96px, 38%);
        gap: 8px 10px;
    }

    .maslenitsa-text {
        padding: 12px 4px 12px 12px;
    }

    .maslenitsa-text h3:not(.maslenitsa-subtitle) {
        font-size: clamp(22px, 5.5vw, 32px);
        text-align: left;
    }

    .maslenitsa-text .maslenitsa-subtitle {
        font-size: 13px;
    }

    .maslenitsa-text p {
        font-size: 12px;
        text-indent: 0;
    }

    .maslenitsa-image img {
        min-height: 160px;
        object-position: left center;
    }

    .maslenitsa-button .btn_honey {
        padding: 8px 14px;
        font-size: 12px;
    }
}




.maslenitsa-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.badge {
    display: inline-block;
    background-color: #d4af37;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 12px;
    border-radius: 30px;
    font-family: "Open Sans", sans-serif;
}

.dates {
    font-size: 16px;
    color: #666;
    font-family: "Open Sans", sans-serif;
    font-weight: 500;
}

@media (max-width: 480px) {
    .maslenitsa-meta {
        gap: 10px;
    }
    
    .badge {
        font-size: 12px;
        padding: 4px 10px;
    }
    
    .dates {
        font-size: 14px;
    }
}

/* Текст на слайде */
        .slide-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            opacity: 0;
            transition: opacity 2s ease-in-out, transform 2s ease-in-out;
            text-align: center;
            color: white;
        }

        .slide.active .slide-content {
            opacity: 1;
            transform: translate(-50%, -50%) translateY(0);
        }

        .logo-icon {
            width: 50px;
            height: 50px;
            background-color: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 10px;
        }

        .btn_honey {
            background-color: transparent;
            border: 1px solid #d4af37;
            color: #d4af37;
            padding: 12px 30px;
            font-size: 14px;
            font-weight: 500;
            letter-spacing: 2px;
            cursor: pointer;
            transition: all 0.3s ease;
            border-radius: 8px;
        }

        .btn_honey:hover {
            background-color: #fff;
        }   
        
        .btn_map {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            max-width: 100%;
            box-sizing: border-box;
            margin-top: 0;
            padding: 16px 20px;
            font-size: clamp(12px, 2.6vw, 16px);
            font-weight: 500;
            letter-spacing: 2px;
            font-family: "Oswald", "Alumni Sans SC", sans-serif;
            text-align: center;
            text-decoration: none;
            text-transform: uppercase;
            line-height: 1.2;
            background-color: #d4af37;
            color: #fff;
            border: 1px solid #d4af37;
            border-radius: 8px;
            cursor: pointer;
            transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
        }

        .btn_map:hover {
            background-color: transparent;
            color: #d4af37;
            border-color: #d4af37;
        }

        .btn_map:focus-visible {
            outline: 2px solid #d4af37;
            outline-offset: 3px;
        }         

        /* Второй экран */
        .contacts {
            min-height: 30vh;
            background-color: #fff;
            padding: 30px 30px;
            display: flex;
            flex-direction: column;
           
        }
        
        .contacts a {
            font-size: 16px;
            line-height: 1.6;
            font-family: "Open Sans", sans-serif;
            font-weight: 200;
        }

        .contacts-title {
            font-size: 38px;
            font-weight: 400;
            margin-bottom: 40px;
            text-align: center;
            letter-spacing: 3px;
            color: #000;
        }

        .contacts-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 0px;
        }

        .contact-item {
            padding: 20px;
            background-color: #f0f0f0;
            border-radius: 8px;
            color: #000;
        }

        .contact-item h3 {
            font-size: 24px;
            font-weight: 500;
            margin-bottom: 15px;
            color: #000;
        }

        .contact-item p {
            font-size: 16px;
            line-height: 1.6;
            color: #000;
            font-family: "Open Sans", sans-serif;
        }
        
        .contact-item a {
            font-size: 16px;
            line-height: 1.6;
            font-family: "Open Sans", sans-serif;
        }

        .map-container {
            width: 100%;
            height: 400px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        /* Меню */
        .menu-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 100%;
            width: 100%;
            position: relative;
        }

        .menu-items {
            list-style: none;
            text-align: center;
            margin: 0;
            padding: 0;
            flex: 0 0 auto;
        }

        .menu-items li {
            margin: 25px 0;
        }

        .menu-items a {
            color: white;
            text-decoration: none;
            font-size: 24px;
            font-weight: 300;
            letter-spacing: 3px;
            transition: color 0.3s ease;
        }

        .menu-items a:hover {
            color: #d4af37;
        }

        .menu-phone {
            flex: 0 0 auto;
            margin: 40px 0; 
        }

        .menu-phone a {
            color: #d4af37;
            font-size: 18px;
            font-weight: 400;
            letter-spacing: 2px;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .menu-phone a:hover {
            color: #f4cf37;
        }

        .menu-button-container {
            flex: 0 0 auto;
        }

        .menu-button-container .btn {
            background-color: transparent;
            border: 1px solid white;
            color: white;
            padding: 12px 30px;
            font-size: 14px;
            font-weight: 500;
            letter-spacing: 2px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .menu-button-container .btn:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }

        /* Скрываем бургер при открытом меню */
        body.menu-open .menu-toggle {
            opacity: 0;
            visibility: hidden;
        }

        /* Стили для нового блока */
        .about-honey {
            min-height: 50vh;
            background-color: #f0f0f0;
            padding: 80px 40px;
            display: flex;
            align-items: center;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            align-items: center;
        }

        .about-heading {
            grid-column: 1 / -1;
            margin: 0 0 28px;
            padding: 0;
            text-align: left;
            font-size: 82px;
            font-family: 'Oswald', 'Alumni Sans SC', Arial, sans-serif;
            line-height: 1.1;
            font-weight: 600;
            text-transform: uppercase;
            color: #d4af37;
            white-space: normal;
        }

        @media (max-width: 1100px) {
            .about-heading {
                font-size: clamp(48px, 7.5vw, 82px);
            }
        }

        #about-honey .about-heading {
            line-height: 1.25;
        }

        /* Стили для текстовой части */
        .about-text {
            padding-left: 0;
            padding-right: 40px;
        }

        .about-title {
            font-size: 42px;
            font-weight: 500;
            letter-spacing: 1px;
            margin-bottom: 10px;
            color: #d4af37;
            line-height: 1.6;
        }

        .about-description {
            font-size: 18px;
            line-height: 1.4;
            margin-bottom: 20px;
            color: #000;
            font-family: "Open Sans", sans-serif;
        }

        /* Главная, колонка текста: без отступов между абзацами */
        #about-honey .about-text .about-description {
            margin-top: 0;
            margin-bottom: 0;
            text-align: justify;
        }

        /* Девиз: плотный межстрочный интервал между строками с <br> */
        .about-title.about-motto {
            line-height: 1.25;
        }

        #about-honey .btn-museum-more {
            margin-top: 24px;
            padding: 16px 44px;
            font-size: 22px;
            font-weight: 500;
            letter-spacing: 2px;
            text-align: center;
            text-decoration: none;
            box-sizing: border-box;
            background-color: #d4af37;
            color: #fff;
            border: 1px solid #d4af37;
            border-radius: 8px;
            cursor: pointer;
            transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
        }

        #about-honey .btn-museum-more:hover {
            background-color: transparent;
            color: #d4af37;
            border-color: #d4af37;
        }

        #about-honey .btn-museum-more:focus-visible {
            outline: 2px solid #d4af37;
            outline-offset: 3px;
        }

        .honey-facts {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-top: 40px;
        }

        .fact-item {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .fact-number {
            font-size: 24px;
            font-weight: 600;
            color: #d4af37;
            min-width: 80px;
        }

        .fact-text {
            font-size: 14px;
            color: #ccc;
            letter-spacing: 1px;
        }


/* Слайдер мёда (второй блок): смена справа налево; окно 560×380, исходники webp */
.about-slider {
  position: relative;
  display: flex;
  justify-content: center;
}

.honey-slider {
  position: relative;
  width: 100%;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.honey-slider-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 100%;
  position: relative;
}

.honey-slider-viewport {
  position: relative;
  width: 560px;
  max-width: 100%;
  aspect-ratio: 560 / 380;
  height: auto;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  cursor: pointer;
  flex-shrink: 0;
}

.honey-slider-track,
.slider-container.honey-slider-track {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.honey-frame {
  position: absolute;
  inset: 0;
  margin: 0;
  transition: transform 0.55s cubic-bezier(0.33, 1, 0.68, 1);
  will-change: transform;
}

.honey-frame--on {
  transform: translateX(0);
  z-index: 2;
  pointer-events: auto;
}

.honey-frame--off-right {
  transform: translateX(100%);
  z-index: 1;
  pointer-events: none;
}

.honey-frame--off-left {
  transform: translateX(-100%);
  z-index: 1;
  pointer-events: none;
}

.honey-frame--anim-in {
  z-index: 3;
}

.honey-slider.honey-slider--no-trans .honey-frame {
  transition: none;
}

.honey-frame picture,
.honey-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* Стрелки блока мёда: белый фон, чёрные иконки */
.slider-arrow.slider-arrow--honey {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: #111;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  z-index: 4;
}

.honey-slider-row .prev-arrow.slider-arrow--honey {
  left: 16px;
}

.honey-slider-row .next-arrow.slider-arrow--honey {
  right: 16px;
}

.slider-arrow.slider-arrow--honey:hover {
  background: #f5f5f5;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.16);
}

.slider-arrow.slider-arrow--honey:active {
  transform: translateY(-50%) scale(0.96);
}

.slider-arrow.slider-arrow--honey:focus-visible {
  outline: 2px solid #111;
  outline-offset: 3px;
}

.slider-arrow-icon {
  display: block;
}

/* Точки под слайдером, по центру */
.honey-slider .slider-dots {
  position: relative;
  bottom: auto;
  left: auto;
  transform: none;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  z-index: 4;
  width: 100%;
  padding: 0;
  margin: 0;
}

.honey-slider .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.22);
  cursor: pointer;
  transition: transform 0.25s ease, background-color 0.25s ease;
  border: none;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
  display: inline-block;
  vertical-align: middle;
}

.honey-slider .dot:hover {
  background: rgba(0, 0, 0, 0.38);
}

.honey-slider .dot.active {
  background: #111;
  transform: scale(1.25);
}

/* Стили для полноэкранного просмотрщика */
.fullscreen-viewer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 1000;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.fullscreen-viewer.active {
  display: flex;
  opacity: 1;
}

.viewer-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.viewer-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.9);
  border: none;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 40px;
  cursor: pointer;
  z-index: 1001;
  transition: all 0.3s ease;
}

.viewer-close:hover {
  background: rgba(212, 175, 55, 0.8);
  transform: scale(1.1);
}

.viewer-slider {
  position: relative;
  width: 90%;
  height: 90%;
  max-width: 1200px;
  max-height: 800px;
}

.viewer-slides {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 10px;
}

.viewer-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.viewer-slide.active {
  opacity: 1;
}

.viewer-slide img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Стрелки в просмотрщике */
.viewer-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  z-index: 1001;
  transition: all 0.3s ease;
}

.viewer-arrow:hover {
  background: rgba(212, 175, 55, 0.8);
  transform: translateY(-50%) scale(1.1);
}

.viewer-prev-arrow {
  left: 20px;
}

.viewer-next-arrow {
  right: 20px;
}

/* Счетчик изображений */
.viewer-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 16px;
  z-index: 1001;
}

        /* Блок "Наши экскурсии" - Новый современный дизайн */
        .excursions-section {
            min-height: 50vh;
            background-color: #FFF;
            padding: 80px 40px;
            color: #000;
            position: relative;
        }

        .section-title-excursions {
            font-size: 38px;
            font-weight: 500;
            letter-spacing: 3px;
            margin-bottom: 60px;
            text-align: center;
            color: #d4af37;
        }

        .excursions-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .excursion-card:focus {
            outline: none;
        }

        .excursion-card:focus-visible {
            outline: 2px solid #d4af37;
            outline-offset: 4px;
        }

        .excursion-card {
            cursor: pointer;
            background: #fff;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            display: flex;
            flex-direction: column;
        }

        .excursion-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 40px rgba(212, 175, 55, 0.2);
        }

        .excursion-card-image {
            width: 100%;
            aspect-ratio: 433 / 251;
            overflow: hidden;
            position: relative;
        }

        .excursion-card-image::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.3) 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .excursion-card:hover .excursion-card-image::after {
            opacity: 1;
        }

        .excursion-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .excursion-card:hover .excursion-card-image img {
            transform: scale(1.1);
        }

        .excursion-card-title {
            padding: 24px 20px;
            font-size: 18px;
            font-weight: 500;
            color: #000;
            text-align: center;
            line-height: 1.4;
            font-family: "Open Sans", sans-serif;
            letter-spacing: 0.5px;
            transition: color 0.3s ease;
        }

        .excursion-card:hover .excursion-card-title {
            color: #d4af37;
        }

        /* Модальное окно */
        .excursion-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 10000;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 20px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .excursion-modal.active {
            display: flex;
            opacity: 1;
        }

        .excursion-modal-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(8px);
        }

        .excursion-modal-content {
            position: relative;
            background: #fff;
            border-radius: 24px;
            max-width: 900px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            transform: scale(0.9);
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 10001;
        }

        .excursion-modal.active .excursion-modal-content {
            transform: scale(1);
        }

        .excursion-modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            border: none;
            background: rgba(0, 0, 0, 0.1);
            color: #000;
            font-size: 28px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 10002;
            line-height: 1;
        }

        .excursion-modal-close:hover {
            background: #d4af37;
            color: #fff;
            transform: rotate(90deg);
        }

        .excursion-modal-body {
            padding: 50px 40px;
        }

        .modal-excursion-image {
            width: 100%;
            height: 400px;
            border-radius: 16px;
            overflow: hidden;
            margin-bottom: 30px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
        }

        .modal-excursion-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .modal-excursion-title {
            font-size: 32px;
            font-weight: 500;
            color: #d4af37;
            margin-bottom: 20px;
            letter-spacing: 2px;
            line-height: 1.3;
        }

        .modal-excursion-age {
            font-size: 16px;
            color: #d4af37;
            margin-bottom: 10px;
            font-weight: 500;
            font-family: "Open Sans", sans-serif;
        }

        .modal-excursion-age.age-restriction {
            color: #ff6b6b;
            font-weight: 600;
        }

        .modal-excursion-duration {
            font-size: 16px;
            color: #666;
            margin-bottom: 20px;
            font-family: "Open Sans", sans-serif;
        }

        .modal-excursion-description {
            font-size: 16px;
            line-height: 1.8;
            color: #000;
            margin-bottom: 20px;
            font-family: "Open Sans", sans-serif;
        }

        .modal-excursion-list {
            margin: 20px 0;
            padding-left: 25px;
            color: #000;
            font-family: "Open Sans", sans-serif;
        }

        .modal-excursion-list li {
            margin-bottom: 12px;
            line-height: 1.8;
            font-size: 16px;
            font-family: "Open Sans", sans-serif;
        }

        .modal-excursion-note {
            font-size: 14px;
            color: #666;
            font-style: italic;
            margin-bottom: 15px;
            line-height: 1.6;
            font-family: "Open Sans", sans-serif;
        }
        
        .modal-excursion-note a{
            font-size: 14px;
            
            font-style: italic;
            margin-bottom: 15px;
            line-height: 1.6;
            font-family: "Open Sans", sans-serif;
        }


        .modal-excursion-pricing {
            margin: 30px 0;
            padding: 24px;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
            border-radius: 12px;
            border-left: 4px solid #d4af37;
        }

        .modal-price-item {
            margin-bottom: 1px;
            font-size: 16px;
            line-height: 1.0;
            font-family: "Open Sans", sans-serif;
        }

        .modal-price-item:last-child {
            margin-bottom: 0;
        }

        .modal-price-label {
            font-family: "Open Sans", sans-serif;
            font-weight: 400;
            font-size: 14px;
            color: #000;
            margin-right: 8px;
        }

        .modal-price-value {
            font-weight: 600;
            color: #d4af37;
            font-size: 14px;
            font-family: "Open Sans", sans-serif;
        }

        .modal-price-value.free {
            color: #4caf50;
            font-family: "Open Sans", sans-serif;
        }

        .modal-price-note {
            font-size: 14px;
            color: #666;
            margin-left: 8px;
            font-family: "Open Sans", sans-serif;
        }

        .modal-book-button {
            margin-top: 30px;
            padding: 14px 40px;
            font-size: 14px;
            font-weight: 500;
            color: #d4af37;
            background-color: transparent;
            border: 2px solid #d4af37;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-family: "Oswald", "Alumni Sans SC", sans-serif;
            display: inline-block;
        }

        .modal-book-button:hover:not(:disabled) {
            background-color: #d4af37;
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
        }

        .modal-book-button:disabled {
            border-color: #ccc;
            color: #999;
            cursor: not-allowed;
            opacity: 0.6;
        }

/* Адаптивность */
@media (max-width: 968px) {
  .viewer-arrow {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .excursions-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1400px;
  }

  .excursion-card-image {
    aspect-ratio: 433 / 251;
  }
}

@media (max-width: 768px) {
  .slider-arrow.slider-arrow--honey {
    width: 42px;
    height: 42px;
  }

  .slider-arrow.slider-arrow--honey .slider-arrow-icon {
    width: 18px;
    height: 18px;
  }

  .honey-slider-row {
    gap: 8px;
  }
  
  .viewer-slider {
    width: 95%;
    height: 95%;
  }
  
  .viewer-arrow {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
  
  .viewer-close {
    width: 60px;
    height: 60px;
    font-size: 40px;
    top: 20px;
    right: 20px;
  }

  .excursions-section {
    padding: 60px 20px;
  }

  .section-title-excursions {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .excursions-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 1400px;
  }

  .excursion-card-image {
    aspect-ratio: 433 / 251;
  }

  .excursion-card-title {
    font-size: 16px;
    padding: 20px 16px;
  }

  .excursion-modal-content {
    max-width: 100%;
    border-radius: 16px;
  }

  .excursion-modal-body {
    padding: 40px 24px;
  }

  .modal-excursion-image {
    height: 250px;
    margin-bottom: 24px;
  }

  .modal-excursion-title {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .viewer-arrow {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .section-title-excursions {
    font-size: 24px;
  }

  .excursion-card-image {
    aspect-ratio: 433 / 251;
  }

  .excursion-card-title {
    font-size: 15px;
    padding: 16px 12px;
  }

  .modal-excursion-image {
    height: 200px;
  }

  .modal-excursion-title {
    font-size: 20px;
  }

  .modal-excursion-pricing {
    padding: 20px;
  }
}




        .menu-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 100vh;
            padding: 0 20px;
        }

        .menu-logo {
            margin-bottom: 60px;
        }

        .menu-logo img {
            height: 240px;
            width: auto;
        }

        .menu-phone {
            margin-bottom: 40px;
        }

        .menu-phone a {
            color: #d4af37;
            font-size: 18px;
            font-weight: 400;
            letter-spacing: 2px;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .menu-phone a:hover {
            color: #f4cf37;
        }

        .menu-button .btn {
            background-color: transparent;
            border: 1px solid white;
            color: white;
            padding: 12px 30px;
            font-size: 14px;
            font-weight: 500;
            letter-spacing: 2px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .menu-button .btn:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }

        .footer {
            background-color: #1a1a1a;
            padding: 30px 20px;
            text-align: center;
            border-top: 1px solid #333;
            margin-top: 60px;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer p {
            color: #ccc;
            font-size: 14px;
            font-weight: 300;
            letter-spacing: 1px;
            margin: 0;
        }

        #current-year {
            font-family: inherit;
        }

        .footer a {
            color: #d4af37;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer a:hover {
            color: #f4cf37;
        }

        .mobile-text {
            display: none;
        }

        @media (max-width: 768px) {
            .desktop-text {
                display: none;
            }
            
            .mobile-text {
                display: block;
                font-size: 36px;
                line-height: 1.3;
                letter-spacing: 2px;
            }

            .btn-hero-cta {
                font-size: 12px;
                padding: 13px 13px;
                letter-spacing: 2px;
            }
            
            .contacts {
                padding: 10px 10px;
            }
            
            .contacts-title {
                font-size: 28px;
            }
            
            .contacts-grid {
                grid-template-columns: 1fr;
            }
            
            /* Мобильное полноэкранное меню: компактная вёрстка + прокрутка при очень низкой высоте */
            .overlay-menu {
                align-items: flex-start;
                justify-content: center;
                overflow-y: auto;
                -webkit-overflow-scrolling: touch;
            }

            .menu-content {
                height: auto;
                min-height: 100%;
                justify-content: flex-start;
                padding: 72px 20px calc(28px + env(safe-area-inset-bottom, 0));
                box-sizing: border-box;
            }

            .menu-close {
                top: 20px;
                right: 20px;
            }

            .menu-logo {
                margin-bottom: 16px;
            }

            .menu-logo img {
                height: 96px;
                width: auto;
            }

            .menu-items {
                margin-bottom: 16px;
            }

            .menu-items li {
                margin: 8px 0;
            }

            .menu-items a {
                font-size: clamp(15px, 4.2vw, 18px);
                letter-spacing: 2px;
            }

            .menu-phone {
                margin-bottom: 16px;
            }

            .menu-phone a {
                font-size: 16px;
                letter-spacing: 1px;
            }

            .menu-button-container .btn {
                width: 100%;
                max-width: 280px;
                padding: 10px 20px;
                font-size: 13px;
            }
            
            .footer {
                padding: 20px 15px;
            }
            
            .footer p {
                font-size: 12px;
            }
            
            .about-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .about-text {
                padding-right: 0;
            }
            
            .about-honey {
                padding: 60px 32px;
            }
            
            .about-title {
                font-size: 28px;
            }

            .about-heading {
                text-align: left;
                font-size: clamp(32px, 8vw, 82px);
                margin-bottom: 20px;
            }

            /* Второй блок: порядок — заголовок → слайдер → текст; без горизонтального вылезания */
            #about-honey {
                overflow-x: hidden;
                overflow-x: clip;
                padding-top: 50px;
            }

            .page-museum-subpage #about-honey {
                padding-top: 1px !important;
            }

            #about-honey .about-content {
                align-items: stretch;
                gap: 20px;
            }

            #about-honey .about-heading {
                order: 1;
                font-size: clamp(43px, 11vw, 110px);
                margin-top: 0;
                margin-bottom: 4px;
            }

            #about-honey .about-slider {
                order: 2;
                width: 100%;
                max-width: 100%;
                min-width: 0;
                box-sizing: border-box;
            }

            #about-honey .about-text {
                order: 3;
                min-width: 0;
                padding-left: 0;
                overflow-wrap: break-word;
                word-wrap: break-word;
                hyphens: none;
                -webkit-hyphens: none;
            }

            #about-honey .about-text .about-description {
                font-size: 15px;
                line-height: 1.55;
            }

            #about-honey .honey-slider {
                width: 100%;
                max-width: 100%;
                min-width: 0;
                box-sizing: border-box;
                gap: 12px;
            }

            #about-honey .honey-slider-row {
                width: 100%;
                max-width: 100%;
                min-width: 0;
                box-sizing: border-box;
                gap: 0;
            }

            #about-honey .honey-slider-viewport {
                flex: 1 1 auto;
                min-width: 0;
                width: auto;
                max-width: none;
            }

            #about-honey .slider-arrow.slider-arrow--honey {
                width: 36px;
                height: 36px;
                flex-shrink: 0;
            }

            #about-honey .honey-slider-row .prev-arrow.slider-arrow--honey {
                left: 10px;
            }

            #about-honey .honey-slider-row .next-arrow.slider-arrow--honey {
                right: 10px;
            }

            #about-honey .slider-arrow.slider-arrow--honey .slider-arrow-icon {
                width: 18px;
                height: 18px;
            }

            #about-honey .about-title.about-motto {
                font-size: clamp(20px, 5.5vw, 38px);
            }
            
            .honey-facts {
                gap: 15px;
            }
            
            .fact-item {
                flex-direction: column;
                align-items: flex-start;
                gap: 5px;
            }
        }

        @media (max-width: 480px) {
            .btn-hero-cta {
                font-size: 12px;
                padding: 13px 13px;
                letter-spacing: 2px;
            }
        }

        .slideshow {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            background-color: #000;
            z-index: 0;
        }

        .hero-cta-strip {
            width: 100%;
            height: 160px;
            min-height: 160px;
            flex-shrink: 0;
            margin-top: 90px;
            margin-bottom: 90px;
            background-color: #667f2e;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 20px;
            box-sizing: border-box;
            z-index: 5;
            position: relative;
        }

        .btn-hero-cta {
            background-color: transparent;
            border: none;
            color: #fff;
            font-family: 'Oswald', 'Alumni Sans SC', Arial, sans-serif;
            padding: 36px 88px;
            font-size: 40px;
            font-weight: 500;
            letter-spacing: 6px;
            cursor: pointer;
            transition: background-color 0.3s ease, color 0.3s ease;
            text-align: center;
            text-decoration: none;
            box-sizing: border-box;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.75em;
        }

        .hero-cta-arrow {
            flex-shrink: 0;
            width: 3.35em;
            height: auto;
            aspect-ratio: 108 / 24;
            display: block;
            transition: transform 0.35s cubic-bezier(0.34, 1.4, 0.64, 1);
        }

        .btn-hero-cta:hover .hero-cta-arrow {
            transform: translateX(5px);
        }

        .btn-hero-cta:hover {
            background-color: #fff;
            color: #667f2e;
        }

        .btn-hero-cta:focus-visible {
            outline: 6px solid #fff;
            outline-offset: 8px;
        }

        @media (max-width: 768px) {
            .hero-cta-strip {
                height: 80px;
                min-height: 80px;
                padding: 0;
            }

            .btn-hero-cta {
                padding: 13px 13px;
                font-size: 20px;
                letter-spacing: 2px;
                line-height: 1;
            }
        }

        @media (max-width: 480px) {
            .btn-hero-cta {
                padding: 13px 13px;
                font-size: 20px;
                letter-spacing: 2px;
                line-height: 1;
            }
        }
        
.wrp {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.map-box {
    position: absolute;
    top: 90px;
    left: 30px;
    padding: 30px;
    background: #fff;
    border: 1px solid #ddd;
    z-index: 100;
    width: 250px;
    box-shadow: -1px -1px 24px 0px rgba(50, 50, 50, 0.5);
    color: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.map-box h2 {
    margin-top: 0px;
    font-size: 23px;
    line-height: 33px;
    font-weight: 500;
}

.map-box p {
    font-size: 22px;
}

#map {
    width: 100%;
    height: 550px;
}

/* Кнопки-ссылки и сброс для семантических кнопок */
a.btn,
a.btn_honey,
a.btn_map,
a.btn-museum-more,
a.btn-hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
}

button,
input[type="button"],
input[type="submit"],
input[type="reset"],
a.btn,
a.btn_honey,
a.btn_map,
a.btn-museum-more,
a.btn-hero-cta,
a.modal-book-button,
.btn,
.btn_honey,
.btn_map,
.btn-museum-more,
.btn-hero-cta,
.modal-book-button {
    font-family: "Oswald", "Alumni Sans SC", sans-serif;
}

a.modal-book-button {
    display: inline-block;
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
}

button.menu-toggle {
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
    font: inherit;
    color: inherit;
}

button.menu-toggle:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 4px;
}

button.menu-close {
    background: transparent;
    border: none;
}

.map-rating-iframe {
    border: 0;
    display: block;
}

/* Подстраница «О музее» (o-muzee.html): шапка как на главной, без слайдера; светлая подложка */
.page-museum-subpage {
    background-color: #f0f0f0;
    color: #1a1a1a;
}

.page-museum-subpage .hero.page-museum-hero {
    background-color: #f0f0f0;
}

.page-museum-subpage .nav-container {
    position: relative;
}

.page-museum-subpage .museum-text {
    color: #000;
}

.page-museum-subpage .line {
    background-color: #000;
}

.page-museum-subpage .menu-toggle span {
    background: #000;
}

.page-museum-subpage button.menu-toggle:focus-visible {
    outline: 2px solid #000;
    outline-offset: 4px;
}

.page-museum-subpage .about-honey {
    padding: 10px 40px 20px;
}

.page-museum-subpage .page-museum-photo-block {
    margin: 0;
    max-width: 560px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.page-museum-subpage .page-museum-photo-viewport {
    cursor: default;
}

.page-museum-subpage .page-museum-photo-viewport .page-museum-photo-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.page-museum-subpage figcaption.page-museum-photo-caption {
    margin-top: 14px;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    font-family: "Open Sans", sans-serif;
    font-size: 13px;
    line-height: 1.55;
    font-style: italic;
    color: #333;
    text-align: right;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .page-museum-subpage .about-honey {
        padding: 0 32px 20px;
    }

    .page-museum-subpage figcaption.page-museum-photo-caption {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
}

/* Страницы qr/*.html: кадр как у файлов в qr/images — исходные пропорции, без окна 560×380 */
.page-museum-subpage .qr-reading-photo {
    margin-left: auto;
    margin-right: auto;
}

.page-museum-subpage .qr-reading-photo .qr-reading-photo__inner {
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    line-height: 0;
}

.page-museum-subpage .qr-reading-photo .qr-reading-photo__img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
}

/* Страницы qr/*.html без иллюстрации: текст на всю ширину сетки (без пустой второй колонки) */
.page-museum-subpage .about-content.about-content--qr-no-photo {
    grid-template-columns: 1fr;
}

.page-museum-subpage .about-text--qr-format .about-description {
    white-space: pre-wrap;
}

/* ───────────────────────── Залы музея (o-muzee) ───────────────────────── */
.page-museum-subpage .museum-halls {
    padding: 40px 40px 80px;
    background-color: #f0f0f0;
}

.page-museum-subpage .museum-halls .container {
    max-width: 1200px;
    margin: 0 auto;
}

.page-museum-subpage .museum-halls__header {
    text-align: center;
    margin-bottom: 56px;
}

.page-museum-subpage .museum-halls__title {
    margin: 0;
    font-family: 'Oswald', 'Alumni Sans SC', Arial, sans-serif;
    font-weight: 600;
    font-size: clamp(36px, 5.5vw, 64px);
    letter-spacing: 0.02em;
    text-transform: uppercase;
    line-height: 1.1;
    color: #d4af37;
}

.page-museum-subpage .museum-halls__ornament {
    display: block;
    width: 72px;
    height: 2px;
    margin: 20px auto 0;
    background: linear-gradient(90deg, transparent, #d4af37 50%, transparent);
}

.page-museum-subpage .museum-halls__intro {
    max-width: 760px;
    margin: 22px auto 0;
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

.page-museum-subpage .halls-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 22px;
}

.page-museum-subpage .hall-item {
    grid-column: span 2;
}

.page-museum-subpage .hall-item:nth-child(4) {
    grid-column: 2 / span 2;
}

.page-museum-subpage .hall-item:nth-child(5) {
    grid-column: 4 / span 2;
}

.page-museum-subpage .hall-card {
    display: flex;
    flex-direction: column;
    gap: 18px;
    height: 100%;
    padding: 20px 20px 22px;
    text-decoration: none;
    background: #ffffff;
    border: 1px solid rgba(212, 175, 55, 0.16);
    border-radius: 18px;
    box-shadow: 0 14px 36px rgba(17, 23, 34, 0.06);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.page-museum-subpage .hall-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 22px 42px rgba(17, 23, 34, 0.11);
}

.page-museum-subpage .hall-card:focus-visible {
    outline: 3px solid rgba(212, 175, 55, 0.55);
    outline-offset: 3px;
}

.page-museum-subpage .hall-card__media {
    margin: 0;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 14px;
    background: #eee;
}

.page-museum-subpage .hall-card__media picture {
    display: block;
    width: 100%;
    height: 100%;
}

.page-museum-subpage .hall-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.page-museum-subpage .hall-card:hover .hall-card__img {
    transform: scale(1.04);
}

.page-museum-subpage .hall-card__name {
    margin: 0;
    font-family: 'Oswald', 'Alumni Sans SC', Arial, sans-serif;
    font-weight: 500;
    font-size: clamp(22px, 2vw, 30px);
    letter-spacing: 0.02em;
    text-transform: none;
    color: #d4af37;
    line-height: 1.2;
}

.page-museum-subpage .hall-card__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    min-height: 40px;
    padding: 9px 20px;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
    border: 1px solid #d4af37;
    border-radius: 8px;
    color: #ffffff;
    background-color: #d4af37;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.page-museum-subpage .hall-card:hover .hall-card__button {
    background-color: transparent;
    color: #d4af37;
    border-color: #d4af37;
}

.page-museum-subpage .hall-card:focus-visible .hall-card__button {
    background-color: transparent;
    color: #d4af37;
    border-color: #d4af37;
}

@media (max-width: 900px) {
    .page-museum-subpage .museum-halls {
        padding: 30px 24px 60px;
    }

    .page-museum-subpage .museum-halls__header {
        margin-bottom: 40px;
    }

    .page-museum-subpage .halls-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .page-museum-subpage .hall-item,
    .page-museum-subpage .hall-item:nth-child(4),
    .page-museum-subpage .hall-item:nth-child(5) {
        grid-column: span 1;
    }

    .page-museum-subpage .hall-card {
        padding: 18px;
    }
}

@media (max-width: 640px) {
    .page-museum-subpage .halls-list {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .page-museum-subpage .hall-item,
    .page-museum-subpage .hall-item:nth-child(4),
    .page-museum-subpage .hall-item:nth-child(5) {
        grid-column: span 1;
    }

    .page-museum-subpage .hall-card__media {
        aspect-ratio: 16 / 11;
    }

    .page-museum-subpage .hall-card__name {
        font-size: 24px;
    }

    .page-museum-subpage .museum-why__card--info {
        flex-wrap: wrap;
    }

    .page-museum-subpage .museum-why__card-btn {
        margin-left: 0;
        width: 100%;
        text-align: center;
        white-space: normal;
    }
}

/* ───────────────────────── «Почему стоит посетить» (o-muzee) ───────────────────────── */
.page-museum-subpage .museum-why {
    position: relative;
    padding: 72px 40px 88px;
    background: linear-gradient(165deg, #fafaf8 0%, #ffffff 45%, #f3f2ef 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.12);
}

.page-museum-subpage .museum-why::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(720px, 80%);
    height: 3px;
    border-radius: 0 0 4px 4px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.85), transparent);
}

.page-museum-subpage .museum-why .container {
    max-width: 1100px;
    margin: 0 auto;
}

.page-museum-subpage .museum-why__layout {
    --museum-why-stack-gap: 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--museum-why-stack-gap);
    align-items: start;
}

.page-museum-subpage .museum-why__main {
    padding: 36px 40px 36px 36px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
    position: relative;
}

.page-museum-subpage .museum-why__main::before {
    content: "";
    position: absolute;
    left: 0;
    top: 24px;
    bottom: 24px;
    width: 4px;
    border-radius: 0 4px 4px 0;
    background: linear-gradient(180deg, #d4af37, #c9a227);
}

.page-museum-subpage .museum-why__main > p {
    font-family: "Open Sans", Arial, sans-serif;
    margin: 0;
    font-size: 17px;
    line-height: 1.75;
    color: #2d2d2d;
    text-align: justify;
    text-wrap: pretty;
}

.page-museum-subpage .museum-why__main > p + p {
    margin-top: 1em;
}

.page-museum-subpage .museum-why__aside {
    display: flex;
    flex-direction: column;
    gap: var(--museum-why-stack-gap);
    width: 100%;
    min-width: 0;
}

.page-museum-subpage .museum-why__card {
    display: flex;
    align-items: center;
    gap: 16px;
    box-sizing: border-box;
    padding: 22px 22px 22px 20px;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 14px;
    border: 1px solid rgba(212, 175, 55, 0.22);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.page-museum-subpage .museum-why__card:hover {
    border-color: rgba(212, 175, 55, 0.45);
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.1);
}

.page-museum-subpage .museum-why__card--partners {
    border-color: rgba(0, 0, 0, 0.08);
}

.page-museum-subpage .museum-why__card--partners:hover {
    border-color: rgba(212, 175, 55, 0.35);
}

.page-museum-subpage .museum-why__card-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(145deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.06));
    color: #a88416;
}

.page-museum-subpage .museum-why__card--partners .museum-why__card-icon {
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.07), rgba(26, 26, 26, 0.02));
    color: #d4af37;
}

.page-museum-subpage .museum-why__card-text {
    margin: 0;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #333;
    text-align: justify;
    text-wrap: pretty;
}

.page-museum-subpage .museum-why__card--partners .museum-why__card-text {
    font-weight: 700;
}

.page-museum-subpage .museum-why__card--info .museum-why__card-text {
    flex: 1;
}

.page-museum-subpage .museum-why__card-btn {
    margin-left: auto;
    white-space: nowrap;
    flex-shrink: 0;
}

@media (max-width: 900px) {
    .page-museum-subpage .museum-why {
        padding: 52px 28px 64px;
    }

    .page-museum-subpage .museum-why__layout {
        --museum-why-stack-gap: 14px;
    }

    .page-museum-subpage .museum-why__main {
        padding: 28px 24px 28px 28px;
    }
}

@media (max-width: 480px) {
    .page-museum-subpage .museum-why__main::before {
        top: 16px;
        bottom: 16px;
    }

    .page-museum-subpage .museum-why__main > p {
        font-size: 16px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .slide,
    .slide.active,
    .honey-frame,
    .viewer-slide,
    .excursion-modal,
    .excursion-modal-content,
    .overlay-menu {
        transition: none !important;
        animation: none !important;
    }

    .slide.active {
        transform: none !important;
    }

    .maslenitsa-image img {
        transition: none !important;
    }

    .maslenitsa-image:hover img {
        transform: none !important;
    }

    .excursion-card,
    .excursion-card-image img {
        transition: none !important;
    }

    .excursion-card:hover {
        transform: none !important;
    }

    .excursion-card:hover .excursion-card-image img {
        transform: none !important;
    }

    .cookie-notification {
        transition: none !important;
    }

    .page-museum-subpage .hall-card,
    .page-museum-subpage .hall-card::before,
    .page-museum-subpage .hall-card__img {
        transition: none !important;
    }

    .page-museum-subpage .hall-card:hover,
    .page-museum-subpage .hall-card:hover .hall-card__img {
        transform: none !important;
    }

    .page-museum-subpage .museum-why__card {
        transition: none !important;
    }
}
