:root {
    --accent: #ffcf00;
    --accent-dark: #e6b900;
    --text: #181818;
    --text-light: #686868;
    --background: #ffffff;
    --background-soft: #f7f8fa;
    --border: #e6e7ea;
    --white: #ffffff;
    --dark: #1a1a1a;
    --dark-soft: #252525;
    --shadow: 0 12px 40px rgba(20, 20, 20, 0.08);
    --radius: 20px;
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: var(--background);
    line-height: 1.5;
}
body.popup-open {
    overflow: hidden;
}
img {
    display: block;
    max-width: 100%;
}
button,
input,
select {
    font: inherit;
}
button {
    cursor: pointer;
}
a {
    color: inherit;
    text-decoration: none;
}
.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}
/* ========================================
HEADER
======================================== */
.header {
    position: relative;
    z-index: 20;
    padding: 18px 0;
    background: var(--dark);
    border-bottom: 1px solid var(--dark-soft);
}
.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}
.header__logo {
    display: inline-flex;
    align-items: center;
}
.header__logo img {
    width: 150px;
    height: auto;
    max-height: 48px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}
.header__right {
    display: flex;
    align-items: center;
    gap: 24px;
}
.phone-link {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    transition: color 0.2s ease;
}
.phone-link:hover {
    color: var(--accent);
}
.header__details {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 12px;
    line-height: 1.35;
    color: #a0a0a0;
    text-align: right;
}
/* BUTTONS */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 28px;
    border: 0;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.button:hover {
    transform: translateY(-2px);
}
.button--small {
    min-height: 44px;
    padding: 0 20px;
    background: var(--accent);
    color: var(--text);
}
.button--small:hover {
    background: var(--accent-dark);
}
.button--primary {
    background: var(--accent);
    color: var(--text);
    box-shadow: 0 8px 25px rgba(255, 207, 0, 0.25);
}
.button--primary:hover {
    background: var(--accent-dark);
    box-shadow: 0 12px 30px rgba(255, 207, 0, 0.32);
}
.button--secondary {
    background: var(--text);
    color: var(--white);
}
.button--secondary:hover {
    background: #303030;
}
.button--full {
    width: 100%;
}
/* HERO */
.hero {
    position: relative;
    overflow: hidden;
    padding: 70px 0 90px;
    background:
        radial-gradient(900px 420px at 90% -10%, rgba(255, 207, 0, 0.14), transparent 65%),
        radial-gradient(700px 380px at -10% 40%, rgba(255, 207, 0, 0.10), transparent 60%),
        linear-gradient(180deg, #fffdf6 0%, #ffffff 100%);
}
.hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.8fr);
    gap: 60px;
    align-items: center;
}
.hero__badge {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    margin-bottom: 22px;
    border-radius: 100px;
    background: #fff3bd;
    color: #695500;
    font-size: 13px;
    font-weight: 700;
}
.hero h1 {
    max-width: 650px;
    margin: 0 0 22px;
    font-size: clamp(46px, 5vw, 72px);
    line-height: 1.02;
    letter-spacing: -2px;
}
.hero h1 span {
    display: block;
}
.hero__subtitle {
    max-width: 600px;
    margin: 0 0 28px;
    font-size: 20px;
    line-height: 1.5;
    color: var(--text-light);
}
.hero__price {
    display: flex;
    align-items: baseline;
    gap: 14px;
    margin-bottom: 25px;
}
.hero__price-label {
    font-size: 16px;
    font-weight: 700;
}
.hero__price-old {
    color: var(--text-light);
    text-decoration: line-through;
}
.hero__price strong {
    font-size: 34px;
    line-height: 1;
}
.hero__button {
    min-width: 330px;
}
.hero__note {
    margin: 12px 0 0;
    font-size: 13px;
    color: var(--text-light);
}
.hero__visual {
    display: flex;
    justify-content: center;
}
.hero__image {
    display: block;
    width: auto;
    height: min(74vh, 700px);
    max-width: 100%;
    filter: drop-shadow(0 18px 40px rgba(20, 20, 20, 0.28));
    will-change: transform;
    transition: transform 3s ease-in-out;
}
/* SECTIONS */
section {
    padding: 95px 0;
}
.section-heading {
    max-width: 720px;
    margin-bottom: 45px;
}
.section-heading--center {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}
.section-label {
    display: block;
    margin-bottom: 12px;
    color: #9a7c00;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.section-heading h2,
.exposition__content h2,
.location__content h2,
.final-cta h2 {
    margin: 0 0 18px;
    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.08;
    letter-spacing: -1px;
}
.section-heading p {
    margin: 0;
    font-size: 18px;
    color: var(--text-light);
}
/* BENEFITS */
.benefits {
    background: var(--background-soft);
}
.benefits__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.benefit-card {
    padding: 34px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}
.benefit-card__number {
    margin-bottom: 4px;
    font-size: 38px;
    font-weight: 800;
    letter-spacing: -1px;
}
.benefit-card h3 {
    margin: 0 0 10px;
    font-size: 21px;
}
.benefit-card p {
    margin: 0;
    color: var(--text-light);
}
/* GALLERY */
.gallery {
    background: var(--white);
}
.gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.gallery__item {
    overflow: hidden;
    border-radius: 16px;
}
.gallery__item--large {
    grid-column: span 2;
    grid-row: span 2;
}
.gallery__item img {
    width: 100%;
    height: 100%;
    min-height: 260px;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.gallery__item--large img {
    min-height: 536px;
}
.gallery__item:hover img {
    transform: scale(1.03);
}
/* EXPOSITION */
.exposition {
    background: var(--background-soft);
}
.exposition__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 70px;
    align-items: center;
}
.exposition__image img {
    width: 100%;
    aspect-ratio: 1 / 0.9;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.exposition__content > p {
    max-width: 560px;
    margin: 0 0 25px;
    font-size: 18px;
    color: var(--text-light);
}
.check-list {
    padding: 0;
    margin: 0 0 30px;
    list-style: none;
}
.check-list li {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
    font-weight: 600;
}
.check-list li span {
    color: #9a7c00;
    font-weight: 900;
}
/* TICKETS */
.tickets {
    background: var(--white);
}
.tickets__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.ticket-card {
    position: relative;
    padding: 32px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.ticket-card::before,
.ticket-card::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 50%;
    top: 58%;
    transform: translateY(-50%);
}
.ticket-card::before {
    left: -13px;
    clip-path: inset(0 0 0 0);
    background: radial-gradient(circle at left, var(--white) 60%, transparent 61%);
    border: 0;
    box-shadow: inset -1px 0 0 var(--border);
    background: var(--white);
}
.ticket-card::after {
    right: -13px;
    border: 0;
    box-shadow: inset 1px 0 0 var(--border);
    background: var(--white);
}
.ticket-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.ticket-card__header {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 2px dashed var(--border);
}
.ticket-card__title {
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.ticket-card__price {
    font-size: 36px;
    font-weight: 800;
}
.ticket-card__body {
    min-height: 66px;
}
.ticket-card__body p {
    margin: 0 0 8px;
    color: var(--text-light);
}
.ticket-card__body small {
    display: block;
    font-size: 12px;
    line-height: 1.45;
    color: #858585;
}
.tickets__action {
    margin-top: 35px;
    text-align: center;
}
.tickets__action p {
    margin: 12px 0 0;
    font-size: 13px;
    color: var(--text-light);
}
/* HOW IT WORKS */
.how-it-works {
    background: var(--background-soft);
}
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.step {
    padding: 30px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}
.step__number {
    display: block;
    margin-bottom: 28px;
    color: #9a7c00;
    font-size: 13px;
    font-weight: 800;
}
.step h3 {
    margin: 0 0 10px;
    font-size: 20px;
}
.step p {
    margin: 0;
    color: var(--text-light);
}
/* REVIEWS */
.reviews {
    background: var(--white);
}
.reviews__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.review-card {
    padding: 30px;
    background: var(--background-soft);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
}
.review-card__rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border);
}
.review-card__yandex {
    width: 20px;
    height: 20px;
}
.review-card__stars {
    color: #d9ad00;
    letter-spacing: 2px;
    font-size: 16px;
}
.review-card__score {
    font-size: 14px;
    font-weight: 700;
}
.review-card__text {
    margin: 0 0 20px;
    color: #4d4d4d;
    line-height: 1.6;
    flex-grow: 1;
}
.review-card__author {
    display: block;
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 700;
}
.review-card__link {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: #9a7c00;
    transition: color 0.2s ease;
}
.review-card__link:hover {
    color: #695500;
}
/* LOCATION */
.location {
    background: var(--background-soft);
}
.location__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 70px;
    align-items: center;
}
.location__details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 30px 0;
}
.location__detail {
    display: flex;
    gap: 15px;
}
.location__detail > span {
    font-size: 24px;
}
.location__detail strong {
    display: block;
    margin-bottom: 3px;
}
.location__detail p {
    margin: 0;
    color: var(--text-light);
}
.location__visual {
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.location__map {
    display: block;
    width: 100%;
    height: 600px;
    border: 0;
}
/* FAQ */
.faq {
    background: var(--white);
}
.faq__list {
    max-width: 850px;
    margin: 0 auto;
}
.faq details {
    padding: 22px 0;
    border-bottom: 1px solid var(--border);
}
.faq summary {
    cursor: pointer;
    list-style: none;
    font-size: 18px;
    font-weight: 700;
}
.faq summary::-webkit-details-marker {
    display: none;
}
.faq summary::after {
    content: "+";
    float: right;
    font-size: 24px;
    font-weight: 400;
    color: #777;
}
.faq details[open] summary::after {
    content: "−";
}
.faq details p {
    max-width: 750px;
    margin: 15px 0 0;
    color: var(--text-light);
}
/* FINAL CTA */
.final-cta {
    padding: 90px 0;
    text-align: center;
    background: linear-gradient(135deg, #fff9e3 0%, #ffefc2 55%, #ffe59a 100%);
}
.final-cta > .container > p {
    margin: 0 auto 28px;
    color: #6b6b6b;
    font-size: 18px;
}
.final-cta .button--primary {
    background: var(--text);
    color: var(--white);
    box-shadow: 0 10px 26px rgba(24, 24, 24, 0.22);
}
.final-cta .button--primary:hover {
    background: #000;
}
/* FOOTER */
.footer {
    padding: 35px 0;
    background: var(--dark);
}
.footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}
.footer__logo {
    width: 120px;
}
.footer__logo img {
    filter: brightness(0) invert(1);
}
.footer p {
    margin: 5px 0 0;
    font-size: 13px;
    color: #a0a0a0;
}
.footer__info {
    text-align: right;
}
.footer__social {
    display: flex;
    gap: 12px;
}
.footer__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--dark-soft);
    color: #cfcfcf;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.footer__social a:hover {
    background: var(--accent);
    color: var(--text);
    transform: translateY(-2px);
}
.footer__social svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}
.footer-credit {
    padding: 12px 0;
    background: #0a0a0a;
    text-align: center;
}
.footer-credit p {
    margin: 0;
    font-size: 12px;
    color: #666;
}
.footer-credit a {
    color: var(--accent);
    transition: color 0.2s ease;
}
.footer-credit a:hover {
    color: var(--accent-dark);
}
/* COOKIE BANNER */
.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 90;
    padding: 14px 0;
    background: rgba(26, 26, 26, 0.96);
    backdrop-filter: blur(6px);
}
.cookie-banner[hidden] {
    display: none;
}
.cookie-banner .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.cookie-banner p {
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
    color: #e6e6e6;
}
/* TO TOP */
.to-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 80;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: var(--dark);
    color: var(--white);
    font-size: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
}
.to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: none;
}
.to-top:hover {
    background: #000;
}
/* SCROLL REVEAL */
.reveal {
    opacity: 0;
}
.reveal.is-visible {
    opacity: 1;
    animation: reveal-in 0.6s ease backwards;
}
@keyframes reveal-in {
    from {
        opacity: 0;
        transform: translateY(26px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
    }
    .reveal.is-visible {
        animation: none;
    }
}
/* POPUP */
.popup {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.popup.is-open {
    display: flex;
}
.popup__overlay {
    position: absolute;
    inset: 0;
    background: rgba(20, 20, 20, 0.48);
    backdrop-filter: blur(5px);
}
.popup__window {
    position: relative;
    z-index: 1;
    width: min(100%, 520px);
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    padding: 35px;
    border-radius: 24px;
    background: var(--white);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}
.popup__close {
    position: absolute;
    top: 14px;
    right: 18px;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #f2f2f2;
    font-size: 28px;
    line-height: 1;
    color: #555;
}
.popup__header {
    padding-right: 35px;
    margin-bottom: 25px;
}
.popup__label {
    display: inline-block;
    margin-bottom: 8px;
    color: #9a7c00;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}
.popup__header h2 {
    margin: 0 0 5px;
    font-size: 30px;
    line-height: 1.1;
}
.popup__header p {
    margin: 0;
    font-size: 14px;
    color: var(--text-light);
}
/* FORM */
.form-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 25px;
}
.form-field:first-child {
    grid-column: span 2;
}
.form-field label {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    font-weight: 700;
}
.form-field input {
    width: 100%;
    height: 48px;
    padding: 0 14px;
    border: 1px solid #d6d7da;
    border-radius: 10px;
    outline: none;
    background: #fff;
    transition: border 0.2s ease, box-shadow 0.2s ease;
}
.form-field input:focus {
    border-color: #bca000;
    box-shadow: 0 0 0 3px rgba(255, 207, 0, 0.18);
}
.tickets-selector {
    margin-bottom: 25px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.ticket-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 17px 0;
    border-bottom: 1px solid var(--border);
}
.ticket-row:last-child {
    border-bottom: 0;
}
.ticket-row__info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.ticket-row__info strong {
    font-size: 15px;
}
.ticket-row__info span {
    font-size: 13px;
    color: var(--text-light);
}
.quantity {
    display: flex;
    align-items: center;
    gap: 12px;
}
.quantity__button {
    width: 36px;
    height: 36px;
    padding: 0;
    border: 1px solid #d7d7d7;
    border-radius: 9px;
    background: #fff;
    font-size: 21px;
    line-height: 1;
}
.quantity__button:hover {
    background: #f5f5f5;
}
.quantity__value {
    width: 20px;
    text-align: center;
    font-weight: 700;
}
.order-total {
    padding: 5px 0 25px;
}
.order-total__old {
    margin-bottom: 5px;
    font-size: 13px;
    color: var(--text-light);
}
.order-total__new {
    font-size: 16px;
}
.order-total__new strong {
    font-size: 27px;
    font-weight: 800;
}
.order-total__saving {
    margin-top: 5px;
    font-size: 13px;
    color: #4c8b34;
}
.form-agreement {
    margin: 10px 0 0;
    text-align: center;
    font-size: 11px;
    line-height: 1.4;
    color: #8a8a8a;
}
.payment-note {
    margin: 8px 0 0;
    text-align: center;
    font-size: 12px;
    color: var(--text-light);
}

/* ========================================
POPUP SUCCESS STATE
======================================== */
.popup__success {
    text-align: center;
    padding: 10px 0;
}
.popup__success-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--text);
    font-size: 38px;
    font-weight: 800;
    box-shadow: 0 10px 28px rgba(255, 207, 0, 0.35);
}
.popup__success h2 {
    margin: 0 0 12px;
    font-size: 28px;
    line-height: 1.15;
}
.popup__success p {
    margin: 0 0 20px;
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.5;
}
.popup__success-phone {
    display: inline-block;
    padding: 14px 28px;
    margin: 0 auto 16px;
    border-radius: 12px;
    background: var(--background-soft);
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0.5px;
}
.popup__success-note {
    margin: 0 0 24px;
    font-size: 13px;
    color: #858585;
}
.form-error {
    padding: 12px 14px;
    margin-bottom: 16px;
    border-radius: 10px;
    background: #ffe9e9;
    color: #b22222;
    font-size: 13px;
    line-height: 1.45;
    display: none;
}

/* RESPONSIVE */
@media (max-width: 1000px) {
    .header__right {
        gap: 15px;
    }
    .hero__grid,
    .exposition__grid,
    .location__grid {
        gap: 40px;
    }
    .steps {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 800px) {
    .container {
        width: min(100% - 30px, 600px);
    }
    section {
        padding: 65px 0;
    }
        .header {
        padding: 14px 0;
    }
    .header__inner {
        gap: 15px;
    }
    .header__logo img {
        width: 125px;
    }
    .header__right {
        margin-left: auto;
    }
    .phone-link {
        font-size: 13px;
    }
    .header__details {
        display: none;
    }
    .hero__content,
    .exposition__content,
    .location__content,
    .final-cta {
        text-align: center;
    }
    .location__details {
        align-items: center;
    }
    .hero__visual {
        position: absolute;
        inset: 0;
        display: block;
    }
    .hero__image {
        width: 100%;
        height: 100%;
        max-width: none;
        border-radius: 0;
        box-shadow: none;
        object-fit: cover;
        object-position: center 20%;
        opacity: 0.16;
        filter: none;
    }
    .hero__content {
        position: relative;
        z-index: 1;
    }
    .hero__price {
        justify-content: center;
    }
    .hero__button {
        width: 100%;
        min-width: 0;
    }
    .check-list {
        display: inline-block;
        text-align: left;
    }
    .hero {
        padding: 40px 0 60px;
    }
    .hero__grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .hero h1 {
        font-size: 44px;
        letter-spacing: -1.5px;
    }
    .hero__subtitle {
        font-size: 18px;
    }
    .benefits__grid,
    .tickets__grid,
    .reviews__grid {
        grid-template-columns: 1fr;
    }
    .gallery__grid {
        grid-template-columns: 1fr 1fr;
    }
    .gallery__item--large {
        grid-column: span 2;
        grid-row: span 1;
    }
    .gallery__item--large img {
        min-height: 280px;
    }
    .gallery__item img {
        min-height: 170px;
    }
    .exposition__grid,
    .location__grid {
        grid-template-columns: 1fr;
    }
    .exposition__image {
        order: -1;
    }
    .steps {
        grid-template-columns: 1fr 1fr;
    }
    .location__map {
        height: 420px;
    }
    .popup {
        padding: 10px;
    }
    .popup__window {
        max-height: calc(100vh - 20px);
        padding: 28px 20px 22px;
        border-radius: 20px;
    }
    .popup__header h2 {
        font-size: 26px;
    }
    .form-fields {
        grid-template-columns: 1fr;
    }
    .form-field:first-child {
        grid-column: auto;
    }
    .footer__inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer__info {
        text-align: center;
    }
    .cookie-banner .container {
        flex-direction: column;
        text-align: center;
    }
}
@media (max-width: 500px) {
    .header__logo img {
        width: 110px;
    }
    .hero h1 {
        font-size: 38px;
    }
    .hero__price strong {
        font-size: 30px;
    }
    .section-heading h2,
    .exposition__content h2,
    .location__content h2 {
        font-size: 34px;
    }
    .gallery__grid {
        gap: 8px;
    }
    .gallery__item img,
    .gallery__item--large img {
        min-height: 150px;
    }
    .steps {
        grid-template-columns: 1fr;
    }
    .ticket-row {
        gap: 10px;
    }
    .ticket-row__info strong {
        font-size: 14px;
    }
    .quantity {
        gap: 7px;
    }
    .quantity__button {
        width: 34px;
        height: 34px;
    }
    .popup__window {
        padding: 25px 16px 18px;
    }
    .to-top {
        right: 14px;
        bottom: 14px;
    }
    .location__map {
        height: 340px;
    }
}