:root {
    --bg: #ffffff;
    --surface: #ffffff;
    --text: #23202f;
    --muted: #6c6775;
    --accent: #b33487;
    --accent-dark: #972d71;
    --accent-soft: #f7e8f1;
    --border: #f0e6ee;
    --border-strong: #e7d5e1;
    --shadow: 0 14px 36px rgba(113, 73, 110, 0.07);
    --shadow-soft: 0 8px 22px rgba(113, 73, 110, 0.06);
    --radius-xl: 30px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 14px;
    --max-width: 1600px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px;
}

body {
    margin: 0;
    font-family: "Manrope", "Segoe UI", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 0 18%, rgba(248, 233, 241, 0.8), transparent 15%),
        radial-gradient(circle at 100% 36%, rgba(241, 236, 248, 0.75), transparent 16%),
        linear-gradient(180deg, #ffffff 0%, #fffdfd 100%);
    animation: site-body-intro 0.52s ease-out both;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

.page-shell {
    width: min(calc(100% - 72px), var(--max-width));
    margin: 0 auto;
    padding: 24px 0 30px;
    opacity: 0;
    transform: translate3d(0, 18px, 0) scale(0.992);
    animation: page-shell-intro 0.82s cubic-bezier(0.22, 1, 0.36, 1) 0.04s forwards;
    will-change: opacity, transform;
}

@keyframes site-body-intro {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes page-shell-intro {
    0% {
        opacity: 0;
        transform: translate3d(0, 18px, 0) scale(0.992);
    }

    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
    }
}

.site-header {
    position: sticky;
    top: 12px;
    z-index: 40;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 38px;
    padding: 16px 20px;
    border: 1px solid rgba(231, 213, 225, 0.75);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(16px);
    box-shadow: 0 14px 30px rgba(113, 73, 110, 0.05);
    transition:
        box-shadow 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease;
}
.brand img{
    max-width: 150px
}

.site-header.site-header--stuck {
    background: rgba(255, 255, 255, 0.96);
    border-color: var(--border-strong);
    box-shadow: 0 18px 34px rgba(113, 73, 110, 0.1);
}


.brand {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 135px;
    line-height: 0.82;
    flex-shrink: 0;
}

.brand__script {
    font-family: "Marck Script", cursive;
    font-size: 3.2rem;
    color: #272331;
}

.brand__sub {
    padding-left: 10px;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent);
}

.site-nav {
    display: flex;
    flex: 1;
    justify-content: center;
    gap: clamp(16px, 2vw, 38px);
    min-width: 0;
}

.site-nav a {
    position: relative;
    color: #43404d;
    font-size: 0.94rem;
    font-weight: 600;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 2px;
    border-radius: 999px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    color: var(--accent-dark);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
    transform: scaleX(1);
}

.nav-toggle {
    display: none;
    position: relative;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid var(--border-strong);
    border-radius: 50%;
    background: #ffffff;
    color: var(--accent);
    cursor: pointer;
    appearance: none;
}

.nav-toggle span {
    position: absolute;
    left: 50%;
    width: 18px;
    height: 2px;
    margin: 0;
    border-radius: 999px;
    background: currentColor;
    flex-shrink: 0;
    transform: translateX(-50%);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle span:nth-child(1) {
    top: 14px;
}

.nav-toggle span:nth-child(2) {
    top: 22px;
}

.nav-toggle span:nth-child(3) {
    top: 30px;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateX(-50%) translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateX(-50%) translateY(-8px) rotate(-45deg);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 32px;
    border: 1px solid transparent;
    border-radius: 15px;
    font-size: 1rem;
    font-weight: 700;
    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-1px);
}

.button--primary {
    background: linear-gradient(180deg, #bc3d92 0%, #a72d7c 100%);
    color: #ffffff;
}

.button--ghost {
    border: 1.5px solid #c3629f;
    background: #ffffff;
    color: var(--accent-dark);
}

.button--compact {
    min-height: 54px;
    padding: 0 30px;
}

.button--full {
    width: 100%;
    margin-top: auto;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    align-items: center;
    gap: 52px;
    padding: 8px 0 46px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 26px;
    padding: 7px 12px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: #ffffff;
    color: #676270;
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.eyebrow span {
    color: var(--accent);
}

.hero h1 {
    margin: 0;
    font-size: clamp(4rem, 5.6vw, 6rem);
    line-height: 0.95;
    letter-spacing: -0.05em;
    font-weight: 800;
}

.hero h1 span {
    color: var(--accent);
}

.hero__lead {
    margin: 28px 0 34px;
    color: #56515e;
    font-size: 1.28rem;
    line-height: 1.48;
}

.hero__features {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.feature-item {
    display: grid;
    justify-items: center;
    gap: 10px;
    text-align: center;
}

.feature-item p {
    margin: 0;
    color: #615c69;
    font-size: 0.95rem;
    line-height: 1.38;
}

.feature-item__icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: none;
    box-shadow: none;
}

.feature-item__icon::before {
    content: "";
    position: absolute;
    inset: 10px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(179, 52, 135, 0.08) 0%, rgba(179, 52, 135, 0.03) 48%, rgba(179, 52, 135, 0) 78%);
}

.feature-item__icon svg {
    position: relative;
    z-index: 1;
    width: 29px;
    height: 29px;
    stroke: var(--accent);
    stroke-width: 1.65;
    filter: none;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.info-card__icon svg,
.slider-button svg {
    width: 30px;
    height: 30px;
    stroke: var(--accent);
    stroke-width: 1.8;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 34px;
}

.content-section {
    padding: 38px 0 18px;
}

.content-section--about {
    padding-top: 8px;
}

.about-block {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 22px;
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: 26px;
    background:
        radial-gradient(circle at 0 0, rgba(247, 232, 241, 0.72), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #fffafb 100%);
    box-shadow: var(--shadow-soft);
}

.about-label {
    display: inline-flex;
    align-items: center;
    margin: 0 0 16px;
    padding: 7px 14px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: #ffffff;
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.about-copy h2 {
    margin: 0 0 18px;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.about-copy p {
    margin: 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.65;
}

.about-copy p + p {
    margin-top: 14px;
}

.about-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    perspective: 1200px;
}

.about-point {
    position: relative;
    overflow: hidden;
    padding: 22px 20px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: linear-gradient(180deg, #ffffff 0%, #fff7fb 100%);
    box-shadow: 0 12px 28px rgba(113, 73, 110, 0.05);
    transition:
        transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.24s ease,
        border-color 0.24s ease,
        opacity 0.42s ease,
        filter 0.42s ease;
    isolation: isolate;
    --about-enter-x: 0px;
    --about-enter-y: 18px;
    --about-tilt: 0deg;
    --about-delay: 0s;
    will-change: transform, opacity, filter;
}

.about-point::before {
    content: "";
    position: absolute;
    top: -42px;
    right: -28px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(179, 52, 135, 0.18) 0%, rgba(179, 52, 135, 0.08) 34%, rgba(179, 52, 135, 0) 72%);
    opacity: 0.9;
    transform: translate3d(0, 0, 0) scale(1);
    animation: about-point-glow 6.2s ease-in-out infinite;
    animation-delay: var(--about-delay);
    pointer-events: none;
}

.about-point > * {
    position: relative;
    z-index: 1;
}

.about-point:nth-child(1) {
    --about-enter-x: -24px;
    --about-enter-y: 20px;
    --about-tilt: -6deg;
    --about-delay: 0s;
}

.about-point:nth-child(2) {
    --about-enter-x: 26px;
    --about-enter-y: 16px;
    --about-tilt: 6deg;
    --about-delay: 0.07s;
}

.about-point:nth-child(3) {
    --about-enter-x: -22px;
    --about-enter-y: 22px;
    --about-tilt: -4deg;
    --about-delay: 0.14s;
}

.about-point:nth-child(4) {
    --about-enter-x: 24px;
    --about-enter-y: 18px;
    --about-tilt: 5deg;
    --about-delay: 0.21s;
}

.about-point--ready {
    opacity: 0;
    filter: blur(5px);
    transform: translate3d(var(--about-enter-x), var(--about-enter-y), 0) rotate(var(--about-tilt)) scale(0.94);
}

.about-point--ready.is-visible {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
    transition-delay: var(--about-delay);
}

.about-point:hover,
.about-point:focus-within {
    border-color: rgba(179, 52, 135, 0.28);
    box-shadow: 0 24px 46px rgba(113, 73, 110, 0.14);
    transform: translateY(-6px);
}

.about-point:hover::before,
.about-point:focus-within::before {
    opacity: 1;
}

.about-point h3 {
    position: relative;
    margin: 0 0 10px;
    padding-left: 16px;
    font-size: 1.1rem;
    line-height: 1.25;
}

.about-point h3::before {
    content: "";
    position: absolute;
    top: 0.45em;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    animation: about-point-dot 2.8s ease-in-out infinite;
    animation-delay: calc(var(--about-delay) + 0.25s);
}

.about-point p {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
}

@keyframes about-point-glow {
    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1);
        opacity: 0.72;
    }

    50% {
        transform: translate3d(-14px, 12px, 0) scale(1.12);
        opacity: 1;
    }
}

@keyframes about-point-dot {
    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(179, 52, 135, 0.2);
    }

    50% {
        transform: scale(1.28);
        box-shadow: 0 0 0 8px rgba(179, 52, 135, 0);
    }
}

.section-heading {
    display: grid;
    justify-items: center;
    gap: 10px;
    margin-bottom: 32px;
    text-align: center;
}

.section-heading--left {
    justify-items: center;
    text-align: center;
}

.section-heading h2 {
    margin: 0;
    font-size: clamp(2.1rem, 2.5vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    text-transform: uppercase;
}

.section-heading span {
    width: 52px;
    height: 3px;
    border-radius: 999px;
    background: var(--accent);
}

.media-placeholder {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    overflow: hidden;
    padding: 32px;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    background: linear-gradient(180deg, #faf7fa 0%, #f3eef3 100%);
    box-shadow: var(--shadow-soft);
    text-align: center;
}

.media-placeholder::before,
.media-placeholder::after {
    content: "";
    position: absolute;
}

.media-placeholder::before {
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0) 52%);
}

.media-placeholder::after {
    inset: 16px;
    border: 1px dashed rgba(179, 52, 135, 0.16);
    border-radius: 20px;
}

.media-placeholder__tag,
.media-placeholder__caption {
    position: relative;
    z-index: 1;
}

.media-placeholder__tag {
    padding: 9px 15px;
    border: 1px solid var(--border-strong);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--accent-dark);
    font-size: 0.83rem;
    font-weight: 700;
    line-height: 1.2;
}

.media-placeholder__caption {
    max-width: 320px;
    margin: 0;
    color: var(--muted);
    font-size: 0.96rem;
    font-weight: 600;
    line-height: 1.45;
}

.media-placeholder__caption span {
    display: block;
    margin-top: 4px;
    font-size: 0.9rem;
    font-weight: 500;
}

.media-placeholder--hero {
    min-height: 590px;
    background: linear-gradient(180deg, #faf8fb 0%, #f1ecf1 100%);
}

.hero-slider {
    position: relative;
    min-height: 590px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    background: #f3eef3;
    box-shadow: var(--shadow-soft);
}

.hero-slider__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.035);
    transition: opacity 1.15s ease, transform 6s ease;
}

.hero-slider__image.is-active {
    z-index: 1;
    opacity: 1;
    transform: scale(1);
}

@media (prefers-reduced-motion: reduce) {
    body,
    .page-shell {
        animation: none;
    }

    .page-shell {
        opacity: 1;
        transform: none;
    }

    .hero-slider__image {
        transition: none;
    }

    .about-point,
    .about-point::before,
    .about-point h3::before {
        animation: none;
        transition: none;
    }
}

.media-placeholder--card {
    min-height: 258px;
    border-radius: 22px 22px 0 0;
    box-shadow: none;
}

.media-placeholder--card::after,
.media-placeholder--event::after {
    inset: 14px;
    border-radius: 16px;
}

.media-placeholder--warm {
    background: linear-gradient(180deg, #f8f2f0 0%, #efe3e1 100%);
}

.media-placeholder--play {
    background: linear-gradient(180deg, #f1f7f6 0%, #dff0ea 100%);
}

.media-placeholder--party {
    background: linear-gradient(180deg, #fbf2e7 0%, #f6dfcf 100%);
}

.media-placeholder--photo {
    background: linear-gradient(180deg, #faf1f7 0%, #eddce9 100%);
}

.zones-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}
.zones-grid img{
    max-width: 25px;
}
.info-card,
.pricing-card,
.package-card,
.rules-card,
.contacts-card {
    border: 1px solid var(--border);
    border-radius: 22px;
    background: var(--surface);
    box-shadow: var(--shadow-soft);
}

.info-card {
    overflow: hidden;
}

.zone-card {
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.zone-card:hover,
.zone-card:focus-visible {
    transform: translateY(-4px);
    box-shadow: 0 20px 42px rgba(113, 73, 110, 0.14);
    outline: none;
}

.zone-card__cover {
    height: 258px;
    overflow: hidden;
    background: #f3eef3;
}

.zone-card__cover img {
    width: 100%;
    max-width: none;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.zone-card:hover .zone-card__cover img,
.zone-card:focus-visible .zone-card__cover img {
    transform: scale(1.035);
}

.info-card__content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    padding: 18px 20px 22px;
}

.info-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--border-strong);
    border-radius: 50%;
    background: #ffffff;
    align-self: start;
}

.info-card__icon svg {
    width: 22px;
    height: 22px;
}

.info-card__content h3 {
    margin: 0 0 6px;
    font-size: 1.36rem;
    line-height: 1.2;
}

.info-card__content p {
    margin: 0 0 12px;
    color: var(--muted);
    line-height: 1.45;
}

.card-link {
    color: var(--accent);
    font-size: 0.95rem;
    font-weight: 700;
}

body.has-open-modal {
    overflow: hidden;
}

.zone-modal[hidden] {
    display: none;
}

.zone-modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: grid;
    place-items: center;
    padding: 24px;
}

.zone-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(30, 22, 31, 0.72);
    backdrop-filter: blur(7px);
}

.zone-modal__window {
    position: relative;
    z-index: 1;
    width: min(960px, 100%);
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    padding: 28px;
    border-radius: 26px;
    background: #ffffff;
    box-shadow: 0 28px 80px rgba(30, 22, 31, 0.32);
}

.zone-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 3;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: var(--accent-dark);
    font: inherit;
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
}

.zone-modal__copy {
    padding-right: 48px;
}

.zone-modal__copy h2 {
    margin: 0 0 8px;
    font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.zone-modal__copy p {
    margin: 0 0 22px;
    color: var(--muted);
    line-height: 1.55;
}

.zone-modal__stage {
    position: relative;
    display: grid;
    place-items: center;
    height: min(56vh, 570px);
    min-height: 340px;
    overflow: hidden;
    border-radius: 20px;
}

.zone-modal__stage > img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    min-width: 0;
    min-height: 0;
    object-fit: scale-down !important;
    object-position: center;
    transform: none !important;
}

.zone-modal__arrow {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: var(--accent-dark);
    font: inherit;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    transform: translateY(-50%);
}

.zone-modal__arrow--prev {
    left: 14px;
}

.zone-modal__arrow--next {
    right: 14px;
}

.zone-modal__counter {
    position: absolute;
    right: 14px;
    bottom: 12px;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(30, 22, 31, 0.72);
    color: #ffffff;
    font-size: 0.82rem;
}

.zone-modal__thumbs {
    display: flex;
    gap: 10px;
    margin-top: 12px;
    padding-bottom: 4px;
    overflow-x: auto;
}

.zone-modal__thumb {
    flex: 0 0 86px;
    height: 62px;
    padding: 0;
    overflow: hidden;
    border: 2px solid transparent;
    border-radius: 10px;
    background: #eee7ed;
    cursor: pointer;
    opacity: 0.68;
}

.zone-modal__thumb.is-active {
    border-color: var(--accent);
    opacity: 1;
}

.zone-modal__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    max-width: 1120px;
    margin: 0 auto;
}

.pricing-card {
    padding: 28px 30px;
    border-radius: 24px;
}

.pricing-card h3 {
    margin: 0 0 18px;
    color: var(--accent);
    font-size: 0.96rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.pricing-block + .pricing-block {
    margin-top: 26px;
    padding-top: 26px;
    border-top: 1px solid var(--border);
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 18px;
    padding: 11px 0;
}

.price-row + .price-row {
    border-top: 1px dashed var(--border);
}

.price-row span {
    color: #5f5967;
    line-height: 1.45;
}

.price-row strong {
    font-size: 1.54rem;
    line-height: 1;
    white-space: nowrap;
}

.pricing-note {
    position: relative;
    margin: 22px 0 0;
    padding-left: 28px;
    color: var(--muted);
    line-height: 1.5;
}

.pricing-note::before {
    content: "";
    position: absolute;
    top: 4px;
    left: 0;
    width: 16px;
    height: 16px;
    border: 2px solid var(--accent);
    border-radius: 50%;
}

.pricing-note::after {
    content: "";
    position: absolute;
    top: 8px;
    left: 6px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--accent);
}

.check-list,
.package-list {
    display: grid;
    gap: 11px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.check-list li,
.package-list li {
    position: relative;
    padding-left: 26px;
    color: var(--muted);
    line-height: 1.48;
}

.check-list li::before,
.package-list li::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    width: 11px;
    height: 11px;
    border: 2px solid var(--accent);
    border-top: 0;
    border-left: 0;
    transform: rotate(45deg);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}

.package-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 100%;
    padding: 214px 22px 22px;
    border-radius: 24px;
    cursor: pointer;
}

.package-card:focus-visible {
    outline: 3px solid rgba(179, 52, 135, 0.32);
    outline-offset: 4px;
}

.package-card__cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 190px;
    object-fit: cover;
    border-radius: 22px 22px 0 0;
}

.package-card__cover--portrait {
    object-position: center 42%;
}

.package-card__icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--border-strong);
    border-radius: 14px;
    background: linear-gradient(180deg, #ffffff 0%, #fbf0f6 100%);
    color: var(--accent);
}

.package-card__icon svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.package-card--featured {
    border: 2px solid #d57daf;
}

.package-badge {
    position: absolute;
    z-index: 2;
    top: -18px;
    left: 50%;
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(180deg, #bf4798 0%, #a9307e 100%);
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    transform: translateX(-50%);
    box-shadow: 0 12px 24px rgba(179, 52, 135, 0.18);
}

.package-card h3 {
    margin: 0;
    font-size: 1.42rem;
    line-height: 1.2;
}

.package-price {
    margin: 0;
    color: var(--accent);
    font-size: 1.98rem;
    font-weight: 800;
    line-height: 1;
}

.package-subtitle {
    margin: 0 0 2px;
    color: var(--muted);
    line-height: 1.45;
}

.package-list {
    margin-bottom: 18px;
}

.package-list li {
    font-size: 0.94rem;
}

.package-modal[hidden],
.package-order[hidden] {
    display: none;
}

.package-modal {
    position: fixed;
    inset: 0;
    z-index: 110;
    display: grid;
    place-items: center;
    padding: 24px;
}

.package-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(30, 22, 31, 0.72);
    backdrop-filter: blur(7px);
}

.package-modal__window {
    position: relative;
    z-index: 1;
    width: min(760px, 100%);
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    padding: 30px;
    border-radius: 26px;
    background: #ffffff;
    box-shadow: 0 28px 80px rgba(30, 22, 31, 0.32);
}

.package-modal__close {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    margin: 0 0 12px auto;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #fbf0f6;
    color: var(--accent-dark);
    font: inherit;
    font-size: 1.8rem;
    cursor: pointer;
}

.package-modal__description {
    padding-right: 0;
}

.package-modal__gallery {
    margin: 0 0 24px;
}

.package-modal__stage {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: #f5edf2;
}

.package-modal__stage > img {
    display: block;
    width: 100%;
    height: min(52vh, 470px);
    object-fit: cover;
}

.package-modal__arrow {
    position: absolute;
    z-index: 1;
    top: 50%;
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    padding: 0 0 4px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: var(--accent-dark);
    font: inherit;
    font-size: 2rem;
    cursor: pointer;
    transform: translateY(-50%);
    box-shadow: 0 6px 20px rgba(30, 22, 31, 0.2);
}

.package-modal__arrow--prev { left: 12px; }
.package-modal__arrow--next { right: 12px; }

.package-modal__counter {
    position: absolute;
    right: 12px;
    bottom: 12px;
    padding: 5px 9px;
    border-radius: 999px;
    background: rgba(30, 22, 31, 0.72);
    color: #fff;
    font-size: 0.82rem;
}

.package-modal__thumbs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    margin-top: 10px;
    padding: 2px 2px 7px;
    scrollbar-width: thin;
}

.package-modal__thumb {
    flex: 0 0 88px;
    height: 68px;
    padding: 0;
    overflow: hidden;
    border: 2px solid transparent;
    border-radius: 11px;
    background: none;
    cursor: pointer;
    opacity: 0.72;
}

.package-modal__thumb.is-active {
    border-color: var(--accent);
    opacity: 1;
}

.package-modal__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.package-modal__description h3 {
    margin: 0 0 10px;
    font-size: clamp(1.8rem, 4vw, 2.7rem);
}

.package-modal__description h4 {
    margin: 24px 0 10px;
    color: var(--accent-dark);
    font-size: 1.05rem;
}

.package-modal__lead {
    color: var(--muted);
    line-height: 1.55;
}

.package-modal__description ul {
    display: grid;
    gap: 8px;
    margin: 0;
    padding-left: 22px;
    color: var(--muted);
    line-height: 1.5;
}

.package-modal__prices {
    padding-left: 0 !important;
    list-style: none;
}

.package-modal__prices li {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}

.package-modal__prices strong {
    flex: 0 0 auto;
    color: var(--accent);
}

.package-modal__order-button {
    margin-top: 26px;
}

.package-order {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.package-order__call {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 22px;
    padding: 16px 18px;
    border-radius: 16px;
    background: #fbf0f6;
}

.package-order__call a {
    color: var(--accent-dark);
    font-size: 1.15rem;
    font-weight: 800;
}

.package-order__form {
    display: grid;
    gap: 14px;
}

.package-order__form h3 {
    margin: 0 0 4px;
    font-size: 1.4rem;
}

.package-order__form label {
    display: grid;
    gap: 7px;
    color: #514b57;
    font-size: 0.9rem;
    font-weight: 700;
}

.package-order__form input,
.package-order__form select {
    width: 100%;
    min-height: 50px;
    padding: 0 14px;
    border: 1px solid var(--border-strong);
    border-radius: 12px;
    background: #ffffff;
    color: #302b34;
    font: inherit;
}

.package-order__form input:focus,
.package-order__form select:focus {
    border-color: var(--accent);
    outline: 3px solid rgba(179, 52, 135, 0.12);
}

.package-order__honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.package-order__consent {
    display: grid !important;
    grid-template-columns: auto 1fr;
    align-items: start;
    gap: 10px !important;
    font-size: 0.8rem !important;
    font-weight: 500 !important;
    line-height: 1.4;
}

.package-order__consent input {
    width: 18px;
    min-height: 18px;
    margin: 1px 0 0;
}

.package-order__status {
    min-height: 1.4em;
    margin: 0;
    color: var(--accent-dark);
    line-height: 1.4;
}

.cross-promo-section { padding-top: 0; padding-bottom: 0; }

.cross-promo {
    position: relative;
    isolation: isolate;
    display: grid;
    grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
    min-height: 390px;
    overflow: hidden;
    border: 1px solid rgba(179, 52, 135, 0.16);
    border-radius: var(--radius-xl);
    color: var(--text);
    background: linear-gradient(125deg, #fff8fc 0%, #f7e8f1 55%, #f0e8f7 100%);
    box-shadow: 0 22px 55px rgba(113, 73, 110, 0.14);
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cross-promo:hover,
.cross-promo:focus-visible { transform: translateY(-4px); box-shadow: 0 28px 68px rgba(113, 73, 110, 0.2); }
.cross-promo:focus-visible { outline: 3px solid rgba(179, 52, 135, 0.35); outline-offset: 4px; }
.cross-promo__media { min-height: 390px; overflow: hidden; }
.cross-promo__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s ease; }
.cross-promo:hover .cross-promo__media img { transform: scale(1.035); }

.cross-promo__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: clamp(36px, 6vw, 78px);
}

.cross-promo__eyebrow { margin: 0 0 16px; color: var(--accent-dark); font-size: 0.76rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; }
.cross-promo h2 { max-width: 700px; margin: 0; font-size: clamp(2rem, 4vw, 4rem); line-height: 1.04; letter-spacing: -0.045em; }
.cross-promo__content > p:not(.cross-promo__eyebrow) { max-width: 590px; margin: 20px 0 0; color: var(--muted); font-size: 1.04rem; line-height: 1.7; }

.cross-promo__link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 28px;
    padding: 13px 20px;
    border-radius: 999px;
    color: #fff;
    background: var(--accent);
    font-weight: 800;
}

.cross-promo__link span { font-size: 1.25em; transition: transform 0.25s ease; }
.cross-promo:hover .cross-promo__link span { transform: translateX(4px); }
.cross-promo--reverse { grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr); }
.cross-promo--reverse .cross-promo__media { grid-column: 2; grid-row: 1; }
.cross-promo--reverse .cross-promo__content { grid-column: 1; grid-row: 1; }
.cross-promo--reverse:hover .cross-promo__link span { transform: translateX(-4px); }

.cross-promo__bubble { position: absolute; z-index: 1; border-radius: 50%; background: rgba(255, 255, 255, 0.46); pointer-events: none; }
.cross-promo__bubble--one { right: 38%; bottom: -54px; width: 150px; height: 150px; }
.cross-promo__bubble--two { top: -35px; right: 3%; width: 94px; height: 94px; }

.events-slider {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr) 52px;
    gap: 16px;
    align-items: center;
}

.slider-button {
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid var(--border-strong);
    border-radius: 50%;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.slider-button:hover,
.slider-button:focus-visible {
    transform: translateY(-1px);
}

.slider-button:disabled {
    opacity: 0.45;
    cursor: default;
}

.events-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 60px) / 4);
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 4px 2px;
}

.events-track::-webkit-scrollbar {
    display: none;
}

.event-card {
    height: 250px;
    overflow: hidden;
    border-radius: 20px;
    background: #f3eef3;
    scroll-snap-align: start;
    box-shadow: var(--shadow-soft);
    cursor: zoom-in;
}

.event-card:focus-visible {
    outline: 3px solid rgba(179, 52, 135, 0.35);
    outline-offset: 2px;
}

.event-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.event-card:hover img {
    transform: scale(1.04);
}

.media-placeholder--event {
    min-height: 250px;
    border-radius: 20px;
    box-shadow: none;
}

.media-placeholder--soft {
    background: linear-gradient(180deg, #fcf8f6 0%, #eee7f1 100%);
}

.media-placeholder--rose {
    background: linear-gradient(180deg, #fbf3f0 0%, #f9dce5 100%);
}

.media-placeholder--aqua {
    background: linear-gradient(180deg, #f5fdfb 0%, #dcefeb 100%);
}

.media-placeholder--sand {
    background: linear-gradient(180deg, #fbf6ee 0%, #f0e1cd 100%);
}

.media-placeholder--gold {
    background: linear-gradient(180deg, #fdf9ee 0%, #f6e7c2 100%);
}

.content-section--bottom {
    padding-bottom: 6px;
}

.bottom-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 18px;
    align-items: start;
}

.rules-card,
.contacts-card {
    padding: 24px 24px 26px;
}

.contacts-card {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.7fr);
    grid-template-rows: auto minmax(360px, 1fr);
    grid-template-areas:
        "heading heading"
        "map details";
    gap: 22px;
    align-items: stretch;
}

.contacts-card .section-heading {
    grid-area: heading;
    margin-bottom: 0;
}

.rules-list {
    display: grid;
    gap: 10px;
}

.rule-item {
    border: 1px solid var(--border);
    border-radius: 16px;
    background: #ffffff;
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.rule-item[open] {
    border-color: var(--border-strong);
    box-shadow: 0 10px 24px rgba(113, 73, 110, 0.07);
}

.rule-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 16px 18px;
    color: #514b57;
    font-weight: 700;
    line-height: 1.4;
    cursor: pointer;
    list-style: none;
}

.rule-item summary::-webkit-details-marker {
    display: none;
}

.rule-item summary:hover,
.rule-item summary:focus-visible {
    color: var(--accent-dark);
    outline: none;
}

.rule-item__icon {
    flex: 0 0 auto;
    color: #944077;
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1;
    transition: transform 0.2s ease;
}

.rule-item[open] .rule-item__icon {
    transform: rotate(45deg);
}

.rule-item__content {
    display: grid;
    gap: 10px;
    padding: 0 18px 18px;
    border-top: 1px solid rgba(231, 213, 225, 0.65);
}

.rule-item__content p {
    margin: 0;
    padding-top: 14px;
    color: var(--muted);
    line-height: 1.45;
}

.rule-item__content p + p {
    padding-top: 0;
}

.rules-note {
    display: none;
}

.map-placeholder {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    min-height: clamp(280px, 36vw, 420px);
    margin-bottom: 22px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: #f8f3f7;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
}

.map-placeholder iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.contacts-card .map-placeholder {
    grid-area: map;
    height: 100%;
    min-height: 360px;
    margin-bottom: 0;
    aspect-ratio: auto;
}

.contacts-details {
    grid-area: details;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 22px;
    min-width: 0;
}

.contacts-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.contacts-card .contacts-grid {
    grid-template-columns: 1fr;
    gap: 18px;
}

.contacts-grid h3 {
    margin: 0 0 8px;
    color: var(--accent);
    font-size: 0.95rem;
    font-weight: 800;
    text-transform: uppercase;
}

.contacts-grid p {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
}

.socials {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 22px;
}

.contacts-card .socials {
    justify-content: flex-start;
    margin-top: auto;
}

.socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(180deg, #bc3d92 0%, #a72d7c 100%);
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
}

.scroll-top {
    position: fixed;
    right: 22px;
    bottom: calc(22px + env(safe-area-inset-bottom, 0px));
    z-index: 45;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    padding: 0;
    border: 1px solid rgba(231, 213, 225, 0.9);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 16px 30px rgba(113, 73, 110, 0.12);
    color: var(--accent);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(12px);
    transition:
        opacity 0.2s ease,
        visibility 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
    backdrop-filter: blur(14px);
    appearance: none;
}

.scroll-top:hover,
.scroll-top:focus-visible {
    box-shadow: 0 18px 34px rgba(113, 73, 110, 0.18);
}

.scroll-top.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.scroll-top svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    stroke-width: 2.1;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.site-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    padding: 26px 0 4px;
    color: #918a96;
    font-size: 0.9rem;
}

.site-footer__details {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 4px 18px;
    padding-top: 14px;
    border-top: 1px solid rgba(145, 138, 150, 0.24);
    color: #6d6670;
    line-height: 1.6;
}

.site-footer__details p {
    margin: 0;
}

.site-footer__credit {
    width: 100%;
    margin: 8px 0 0;
    padding: 18px 0 10px;
    border-top: 1px solid rgba(145, 138, 150, 0.18);
    text-align: center;
    font-size: 0.82rem;
}

.site-footer__credit a {
    color: var(--accent-dark);
    font-weight: 700;
    text-decoration: none;
}

.site-footer__credit a:hover,
.site-footer__credit a:focus-visible {
    text-decoration: underline;
}

.footer-link {
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    text-decoration: underline;
    cursor: pointer;
}

.cookie-consent[hidden] {
    display: none;
}

.cookie-consent {
    position: fixed;
    right: 18px;
    bottom: 18px;
    left: 18px;
    z-index: 120;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: min(1040px, calc(100% - 36px));
    margin: 0 auto;
    padding: 20px 22px;
    border: 1px solid var(--border-strong);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 22px 65px rgba(59, 35, 54, 0.22);
    backdrop-filter: blur(14px);
}

.cookie-consent__copy {
    max-width: 650px;
}

.cookie-consent__copy strong {
    color: #3e3741;
    font-size: 1.05rem;
}

.cookie-consent__copy p {
    margin: 6px 0 4px;
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.5;
}

.cookie-consent__copy a {
    color: var(--accent-dark);
    font-size: 0.84rem;
    font-weight: 700;
}

.cookie-consent__actions {
    display: flex;
    flex: 0 0 auto;
    gap: 10px;
}

.cookie-consent__actions .button {
    min-height: 46px;
    padding: 0 18px;
    font-size: 0.86rem;
}

.brand--footer .brand__script {
    font-size: 2.2rem;
}

@media (max-width: 1280px) {
    .hero__features,
    .packages-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .zones-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .events-track {
        grid-auto-columns: calc((100% - 20px) / 2.2);
    }
}

@media (min-width: 1025px) and (max-width: 1155px) {
    .site-header {
        gap: 18px;
        padding-right: 16px;
        padding-left: 16px;
    }

    .brand {
        min-width: 112px;
    }

    .brand img {
        max-width: 120px;
    }

    .site-nav {
        gap: clamp(8px, 1vw, 12px);
    }

    .site-nav a {
        font-size: clamp(0.74rem, calc(-0.08rem + 1.28vw), 0.82rem);
    }

    .button--compact {
        min-height: 48px;
        padding: 0 18px;
        font-size: 0.86rem;
    }
}

@media (max-width: 1024px) {
    .site-header {
        top: 10px;
        flex-wrap: wrap;
        gap: 16px;
        padding: 16px 18px;
        border-radius: 24px;
    }

    .nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        order: 3;
    }

    .site-nav {
        display: none;
        order: 4;
        flex-basis: 100%;
        flex-direction: column;
        align-items: center;
        gap: 16px;
        padding-top: 10px;
    }

    .site-nav.is-open {
        display: flex;
    }

    .button--compact {
        order: 2;
        margin-left: auto;
    }
}

@media (max-width: 1024px) {
    .page-shell {
        width: min(calc(100% - 36px), var(--max-width));
    }

    .hero,
    .about-block,
    .pricing-grid,
    .bottom-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        gap: 30px;
        padding-top: 24px;
    }

    .hero__media {
        order: 1;
    }

    .hero__content {
        order: 2;
    }

    .contacts-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contacts-card {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        grid-template-areas:
            "heading"
            "map"
            "details";
        gap: 20px;
    }

    .contacts-card .map-placeholder {
        aspect-ratio: 16 / 9;
        min-height: 320px;
    }

    .contacts-card .contacts-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contacts-card .socials {
        margin-top: 0;
    }
}

@media (max-width: 760px) {
    .cross-promo,
    .cross-promo--reverse { grid-template-columns: 1fr; min-height: 0; }

    .cross-promo__media,
    .cross-promo--reverse .cross-promo__media { grid-column: 1; grid-row: 1; min-height: 250px; max-height: 310px; }

    .cross-promo__content,
    .cross-promo--reverse .cross-promo__content { grid-column: 1; grid-row: 2; padding: 30px 24px 34px; }

    .brand img{
        max-width: 100px
    }
    .page-shell {
        width: min(calc(100% - 24px), var(--max-width));
        padding-top: 16px;
    }

    .site-header {
        top: 8px;
        padding: 14px 16px;
    }

    .button--compact {
        display: none;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero__lead {
        font-size: 1.08rem;
    }

    .hero__features,
    .zones-grid,
    .packages-grid,
    .contacts-grid {
        grid-template-columns: 1fr;
    }

    .about-block {
        padding: 22px;
    }

    .about-points {
        grid-template-columns: 1fr;
    }

    .hero__features {
        gap: 14px;
    }

    .feature-item {
        grid-template-columns: auto 1fr;
        align-items: center;
        justify-items: start;
        gap: 12px;
        text-align: left;
    }

    .feature-item p {
        font-size: 0.92rem;
        line-height: 1.35;
    }

    .events-slider {
        grid-template-columns: 1fr;
    }

    .slider-button {
        display: none;
    }

    .events-track {
        grid-auto-columns: 84%;
    }

    .map-placeholder {
        aspect-ratio: 4 / 3;
        min-height: 320px;
        margin-bottom: 18px;
        border-radius: 16px;
    }

    .contacts-card {
        gap: 18px;
    }

    .contacts-card .map-placeholder {
        aspect-ratio: 4 / 3;
        min-height: 320px;
    }

    .contacts-card .contacts-grid {
        grid-template-columns: 1fr;
    }

    .site-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .site-footer__details {
        flex-direction: column;
        gap: 2px;
    }

    .cookie-consent {
        align-items: stretch;
        flex-direction: column;
        gap: 14px;
        padding: 17px;
    }

    .cookie-consent__actions {
        width: 100%;
    }

    .cookie-consent__actions .button {
        flex: 1;
    }

    .scroll-top {
        right: 14px;
        bottom: calc(14px + env(safe-area-inset-bottom, 0px));
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 560px) {
    .page-shell {
        width: min(calc(100% - 18px), var(--max-width));
    }

    .map-placeholder {
        aspect-ratio: auto;
        min-height: 260px;
    }

    .contacts-card .map-placeholder {
        aspect-ratio: auto;
        min-height: 260px;
    }

    .hero h1 {
        font-size: 2.7rem;
    }

    .eyebrow {
        font-size: 0.72rem;
    }

    .hero__actions,
    .price-row {
        flex-direction: column;
        align-items: stretch;
    }

    .button {
        width: 100%;
    }

    .media-placeholder--hero {
        min-height: 360px;
    }

    .hero-slider {
        min-height: 360px;
    }

    .pricing-card,
    .package-card,
    .rules-card,
    .contacts-card {
        padding: 20px;
    }

    .rule-item summary {
        padding: 14px 16px;
    }

    .cookie-consent__actions {
        flex-direction: column;
    }

    .rule-item__content {
        padding: 0 16px 16px;
    }

    .zone-modal {
        padding: 8px;
    }

    .zone-modal__window {
        max-height: calc(100vh - 16px);
        padding: 18px;
        border-radius: 20px;
    }

    .zone-modal__copy {
        padding-right: 42px;
    }

    .zone-modal__copy p {
        margin-bottom: 14px;
        font-size: 0.92rem;
    }

    .zone-modal__stage {
        height: 52vh;
        min-height: 260px;
        border-radius: 14px;
    }

    .zone-modal__arrow {
        width: 40px;
        height: 40px;
    }

    .zone-modal__arrow--prev {
        left: 8px;
    }

    .zone-modal__arrow--next {
        right: 8px;
    }

    .package-modal {
        padding: 8px;
    }

    .package-modal__window {
        max-height: calc(100vh - 16px);
        padding: 20px;
        border-radius: 20px;
    }

    .package-modal__description {
        padding-right: 0;
    }

    .package-card__cover {
        height: 175px;
    }

    .package-card {
        padding-top: 199px;
    }

    .package-modal__stage > img {
        height: min(42vh, 350px);
    }

    .package-modal__prices li,
    .package-order__call {
        align-items: flex-start;
        flex-direction: column;
    }
}
