/* ==========================================================================
   БЛОКИ — Андерсон: Игровые зоны (Gaming тема)
   ========================================================================== */

/* ==========================================================================
   0. BODY — Убираем голубой фон при загрузке
   ========================================================================== */
body {
    background-color: #FFFFFF;
}

/* Бордовый фон для мобильной версии */
@media (max-width: 767px) {
    body {
        background-color: #192D14;
    }
}

/* ==========================================================================
   1. CONTAINER
   ========================================================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================================
   2. HEADER
   ========================================================================== */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #192D14;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.header__container {
    width: 100%;
    padding: 12px 32px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 20px;
    box-sizing: border-box;
}

.header__left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.header__phone {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 16px;
    color: var(--color-white);
    text-decoration: none;
    transition: opacity var(--transition-fast);
}

.header__phone:hover {
    color: #DCC669;
}

.header__phone-sub {
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.8);
}

.header__center {
    display: flex;
    justify-content: center;
}

.header__logo {
    width: 160px;
    height: auto;
    transition: transform var(--transition-base);
    filter: brightness(0) invert(1);
}

.header__logo:hover {
    transform: scale(1.1);
}

.header__right {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.header .btn {
    background: #192D14;
    color: var(--color-white);
    border-color: #192D14;
}

.header .btn:hover {
    background: #0F1A0A;
    border-color: #0F1A0A;
}

.header .btn--secondary {
    background: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

.header .btn--secondary:hover {
    background: var(--color-white);
    color: #192D14;
}

@media (max-width: 768px) {
    .header__container {
        grid-template-columns: auto 1fr auto;
        gap: 10px;
        padding: 10px 15px;
    }

    .header__phone {
        font-size: 13px;
    }

    .header__phone-sub {
        display: none;
    }

    .header__logo {
        width: 100px;
    }

    .header__right .btn {
        font-size: 10px;
        padding: 8px 12px;
    }
}

/* ==========================================================================
   3. HERO
   ========================================================================== */
.hero {
    position: relative;
    min-height: 95vh;
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
}

/* Птички на фоне Hero для мобильной версии */
.hero__bird-1,
.hero__bird-2,
.hero__bird-3,
.hero__bird-4,
.hero__bird-5,
.hero__bird-6 {
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.15;
    z-index: 1;
    pointer-events: none;
    animation: float 8s ease-in-out infinite;
}

.hero__bird-1 {
    width: 90px;
    height: 90px;
    top: 5%;
    left: 3%;
    background-image: url('../assets/mascot/bird blue.png');
    animation-delay: -1s;
}

.hero__bird-2 {
    width: 70px;
    height: 70px;
    top: 10%;
    right: 5%;
    background-image: url('../assets/mascot/bird caramel.png');
    animation-delay: -3s;
}

.hero__bird-3 {
    width: 80px;
    height: 80px;
    bottom: 5%;
    left: 8%;
    background-image: url('../assets/mascot/berd red.png');
    animation-delay: -2s;
}

.hero__bird-4 {
    width: 60px;
    height: 60px;
    bottom: 8%;
    right: 6%;
    background-image: url('../assets/mascot/bird green.png');
    animation-delay: -4s;
}

.hero__bird-5 {
    width: 75px;
    height: 75px;
    top: 3%;
    left: 85%;
    background-image: url('../assets/mascot/bird blue.png');
    animation-delay: -5s;
}

.hero__bird-6 {
    width: 65px;
    height: 65px;
    bottom: 3%;
    right: 10%;
    background-image: url('../assets/mascot/bird caramel.png');
    animation-delay: -6s;
}

@media (min-width: 768px) {
    .hero__bird-1,
    .hero__bird-2,
    .hero__bird-3,
    .hero__bird-4,
    .hero__bird-5,
    .hero__bird-6 {
        display: none;
    }
}

.hero__photo {
    flex: 1;
    min-height: 60.5%;
    overflow: hidden;
}

.hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__content {
    flex: 1;
    min-height: 45%;
    z-index: 10;
    width: 100%;
    padding: 35px 20px 50px;
    display: flex;
    align-items: center;
}

.hero__card {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 40px 40px 100px 40px;
    padding: calc(var(--spacing-xl) * 0.8) calc(var(--spacing-lg) * 0.8);
    max-width: 374px;
    box-shadow: var(--shadow-lg);
}

/* Тёмно-бордовый фон для мобильной версии */
@media (max-width: 767px) {
    .hero {
        background-color: #192D14;
        min-height: auto;
        padding: 15px 0 25px;
    }

    .hero__photo {
        display: none;
    }

    .hero__content {
        min-height: auto;
        padding: 12px;
        justify-content: center;
    }

    .hero__card {
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 20px;
        padding: 10px 8px;
        max-width: 70%;
        text-align: center;
    }

    .hero__title {
        color: #FFFFFF;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        font-size: 0.9rem;
    }

    .hero__subtitle {
        color: rgba(255, 255, 255, 0.95);
        text-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
        font-size: 0.6rem;
    }

    .hero__buttons {
        gap: 6px;
    }

    .hero__buttons .btn {
        font-size: 11px;
        padding: 11px 20px;
    }
}

.hero__title {
    font-family: var(--font-headline);
    font-weight: 700;
    font-size: clamp(1.2rem, 3.2vw, 1.76rem);
    line-height: 1.2;
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-sm);
}

.hero__subtitle {
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: clamp(0.72rem, 1.6vw, 0.8rem);
    line-height: 1.5;
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-md);
}

.hero__promo {
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 11px;
    line-height: 1.6;
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-md);
}

/* Gaming тема: белый текст для промо */
[data-theme="gaming"] .hero__promo {
    color: rgba(255, 255, 255, 0.9);
}

/* Gaming тема: белый текст с тенью для читаемости */
[data-theme="gaming"] .hero__title {
    color: #FFFFFF;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

[data-theme="gaming"] .hero__subtitle {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
}

[data-theme="gaming"] .hero__promo {
    color: rgba(255, 255, 255, 0.9);
}

.hero__buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Кнопка в Hero-блоке - бордовая */
.hero__buttons .btn {
    background: #192D14;
    color: var(--color-white);
    border-color: #192D14;
}

.hero__buttons .btn:hover {
    background: #0F1A0A;
    border-color: #0F1A0A;
}

@media (min-width: 768px) {
    .hero {
        min-height: 100vh;
        flex-direction: row;
        align-items: center;
    }

    .hero__photo {
        position: absolute;
        inset: 0;
        z-index: 1;
    }

    .hero__img {
        transform: scale(1.15);
        transform-origin: center center;
    }

    .hero__content {
        position: relative;
        z-index: 10;
        padding: 100px 60px 80px 30px;
        align-items: flex-end;
        min-height: auto;
        flex: none;
    }

    .hero__card {
        max-width: 408px;
        padding: calc(var(--spacing-2xl) * 0.8) calc(var(--spacing-xl) * 0.8);
        border-radius: 40px 40px 120px 40px;
    }
}

/* ==========================================================================
   4. КНОПКИ
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 11px;
    padding: 11px 22px;
    border-radius: var(--radius-md);
    background: var(--color-accent);
    color: var(--color-white);
    border: 1px solid var(--color-accent);
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn--secondary {
    background: transparent;
    color: var(--color-accent);
    border: 1px solid var(--color-accent);
}

.btn--secondary:hover {
    background: var(--color-accent);
    color: var(--color-white);
}

.btn--small {
    padding: 8px 16px;
    font-size: 10px;
}

.btn--red {
    background: #192D14;
    color: var(--color-white);
    border-color: #192D14;
}

.btn--red:hover {
    background: #0F1A0A;
    border-color: #0F1A0A;
}

/* ==========================================================================
   5. FEATURES (Преимущества)
   ========================================================================== */
.features {
    position: relative;
    padding: var(--spacing-2xl) 20px;
    background: #DCC669;
    overflow: hidden;
}

.features__container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.features__header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.features__subtitle {
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.features__title {
    font-family: var(--font-headline);
    font-weight: 700;
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--color-white);
    margin-bottom: var(--spacing-xl);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.features__content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

.features__column {
    background: #192D14;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.features__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features__item {
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 16px;
    color: var(--color-white);
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: all var(--transition-base);
    line-height: 1.5;
}

.features__item:hover {
    transform: translateX(8px);
}

.features__item:last-child {
    border-bottom: none;
}

.features__item::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #DCC669;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 8px;
}

.features__photo {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    aspect-ratio: 4/3;
    max-height: 100%;
    overflow: hidden;
    height: 100%;
}

.features__gallery {
    width: 100%;
    height: 100%;
    display: flex;
    gap: 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
}

.features__gallery::-webkit-scrollbar {
    display: none;
}

.features__slide {
    flex: 0 0 auto;
    width: 100%;
    height: 100%;
    scroll-snap-align: start;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.features__photo-img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    object-fit: contain;
}

.features__dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
}

.features__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all var(--transition-base);
}

.features__dot.active {
    background: var(--color-white);
    transform: scale(1.3);
}

.features__badges {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
    justify-content: center;
    margin-top: var(--spacing-lg);
}

.features__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 15px;
    padding: 10px 19px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.85);
    color: #192D14;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.features__badge--age {
    background: var(--color-white);
    color: #192D14;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 13px;
    padding: 8px 16px;
}

@media (min-width: 768px) {
    .features__content {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-2xl);
        align-items: stretch;
        min-height: 400px;
    }

    .features__column {
        order: 1;
    }

    .features__photo {
        order: 2;
    }
}

@media (max-width: 767px) {
    .features__content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .features__column {
        width: 100%;
        padding: 20px;
    }

    .features__photo {
        order: -1;
        width: 100%;
        aspect-ratio: 4/3;
        max-height: 280px;
        margin-bottom: 0;
    }

    .features__gallery {
        width: 100%;
        height: 100%;
    }

    .features__slide {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .features__photo-img {
        border: 2px solid rgba(255, 255, 255, 0.6);
        max-width: 90%;
        max-height: 100%;
        object-fit: contain;
    }

    .features__dots {
        display: flex;
        gap: 8px;
    }
}

/* Красивый переход между Hero и Features */
.features::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, transparent 100%);
    z-index: 1;
}

.features__badge--age {
    background: var(--color-surface);
    color: var(--color-white);
    border: 1px solid var(--color-white-30);
}

/* Ойки на фоне Features */
.features__bird-1,
.features__bird-2,
.features__bird-3,
.features__bird-4,
.features__bird-5,
.features__bird-6,
.features__bird-7,
.features__bird-8 {
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.09;
    z-index: 1;
    pointer-events: none;
    animation: float 10s ease-in-out infinite;
}

.features__bird-1 {
    width: 115px;
    height: 115px;
    top: 12%;
    left: 6%;
    background-image: url('../assets/mascot/bird blue.png');
    animation-delay: -1s;
}

.features__bird-2 {
    width: 95px;
    height: 95px;
    bottom: 18%;
    right: 9%;
    background-image: url('../assets/mascot/bird caramel.png');
    animation-delay: -3s;
}

.features__bird-3 {
    width: 85px;
    height: 85px;
    top: 58%;
    left: 72%;
    background-image: url('../assets/mascot/berd red.png');
    animation-delay: -5s;
}

.features__bird-4 {
    width: 110px;
    height: 110px;
    top: 28%;
    right: 18%;
    background-image: url('../assets/mascot/bird green.png');
    animation-delay: -2s;
}

.features__bird-5 {
    width: 80px;
    height: 80px;
    bottom: 32%;
    left: 14%;
    background-image: url('../assets/mascot/bird blue.png');
    animation-delay: -4s;
}

.features__bird-6 {
    width: 92px;
    height: 92px;
    top: 72%;
    right: 22%;
    background-image: url('../assets/mascot/bird caramel.png');
    animation-delay: -6s;
}

.features__bird-7 {
    width: 78px;
    height: 78px;
    top: 42%;
    left: 28%;
    background-image: url('../assets/mascot/berd red.png');
    animation-delay: -7s;
}

.features__bird-8 {
    width: 100px;
    height: 100px;
    bottom: 10%;
    left: 58%;
    background-image: url('../assets/mascot/bird green.png');
    animation-delay: -8s;
}

.features__mascot {
    position: absolute;
    top: 40px;
    right: 40px;
    z-index: 5;
}

.floating-mascot {
    width: 60px;
    height: auto;
    animation: float 4s ease-in-out infinite;
}

@media (min-width: 768px) {
    .features__columns {
        grid-template-columns: 1fr 1fr;
    }

    .features__mascot {
        width: 100px;
    }

    .floating-mascot {
        width: 100px;
    }
}

/* ==========================================================================
   6. BENEFITS (УТП)
   ========================================================================== */
.benefits {
    position: relative;
    padding: var(--spacing-xl) 20px;
    background: #DCC669;
    overflow: hidden;
}

.benefits::before,
.benefits::after {
    content: '';
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.08;
    z-index: 1;
    pointer-events: none;
    animation: float 8s ease-in-out infinite;
}

.benefits::before {
    width: 180px;
    height: 180px;
    top: 5%;
    left: 3%;
    transform: rotate(-15deg);
    background-image: url('../assets/mascot/bird blue.png');
}

.benefits::after {
    width: 140px;
    height: 140px;
    bottom: 8%;
    right: 4%;
    transform: rotate(20deg);
    background-image: url('../assets/mascot/bird caramel.png');
    animation-delay: -2s;
}

.benefits__bird-1,
.benefits__bird-2 {
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.06;
    z-index: 1;
    pointer-events: none;
    animation: float 10s ease-in-out infinite;
}

.benefits__bird-1 {
    width: 120px;
    height: 120px;
    top: 40%;
    left: 85%;
    background-image: url('../assets/mascot/berd red.png');
    animation-delay: -1s;
}

.benefits__bird-2 {
    width: 100px;
    height: 100px;
    top: 75%;
    left: 15%;
    background-image: url('../assets/mascot/bird green.png');
    animation-delay: -3s;
}

.benefits__container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.benefits__header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.benefits__title {
    font-family: var(--font-headline);
    font-weight: 700;
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    color: var(--color-white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.benefits__grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: var(--spacing-md);
    padding: var(--spacing-sm) 60px var(--spacing-sm) 60px;
    margin: calc(var(--spacing-sm) * -1) -60px calc(var(--spacing-sm) * -1) -60px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scroll-padding: 0 50px;
}

.benefits__grid::-webkit-scrollbar {
    height: 6px;
    width: 6px;
}

.benefits__grid::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.benefits__grid::-webkit-scrollbar-thumb {
    background: var(--color-white);
    border-radius: 3px;
}

.benefits__grid::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.8);
}

.benefits__card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    transition: all var(--transition-base);
    min-height: auto;
    flex: 0 0 auto;
    width: 70%;
    scroll-snap-align: center;
}

.benefits__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.benefits__icon {
    width: 360px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefits__icon--large {
    width: 414px;
    height: 230px;
}

.benefits__icon--small {
    width: 288px;
    height: 160px;
}

.benefits__icon-img {
    width: 360px;
    height: 360px;
    object-fit: contain;
}

.benefits__icon-img--large {
    width: 414px;
    height: 414px;
}

.benefits__icon-img--small {
    width: 288px;
    height: 288px;
}

@media (max-width: 767px) {
    .benefits__card {
        width: 60%;
        aspect-ratio: 1 / 1;
        padding: 16px;
        gap: 12px;
        justify-content: center;
        align-items: center;
    }

    /* Иконки - уменьшены для компактных квадратов */
    .benefits__card:nth-child(2) .benefits__icon-img,
    .benefits__card:nth-child(3) .benefits__icon-img,
    .benefits__card:nth-child(6) .benefits__icon-img {
        width: 200px;
        height: 200px;
    }

    .benefits__card:nth-child(1) .benefits__icon-img,
    .benefits__card:nth-child(4) .benefits__icon-img,
    .benefits__card:nth-child(5) .benefits__icon-img {
        width: 180px;
        height: 180px;
    }

    .benefits__card-title {
        font-size: 13px;
    }

    .benefits__card-desc {
        font-size: 11px;
    }
}

.benefits__content {
    width: 100%;
}

.benefits__card-title {
    font-family: var(--font-headline);
    font-weight: 700;
    font-size: 16px;
    color: #192D14;
    margin-bottom: 6px;
}

.benefits__card-desc {
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 14px;
    color: #3A5A35;
    line-height: 1.5;
}

@media (min-width: 640px) {
    .benefits__card {
        width: 48%;
    }
}

@media (min-width: 768px) {
    .benefits__grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-lg);
        padding: 0;
        margin: 0;
        overflow: visible;
    }

    .benefits__card {
        width: 100%;
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        min-height: 100px;
        padding: 16px 20px;
        gap: 16px;
        overflow: visible;
    }

    /* Единый размер контейнера иконок для всех карточек */
    .benefits__icon {
        width: 160px;
        height: 120px;
        flex-shrink: 0;
        overflow: visible;
    }

    .benefits__icon--large,
    .benefits__icon--small {
        width: 160px;
        height: 120px;
    }

    .benefits__icon-img {
        width: 160px;
        height: 160px;
    }

    .benefits__icon-img--large,
    .benefits__icon-img--small {
        width: 160px;
        height: 160px;
    }

    /* Текстовая область занимает всё оставшееся место */
    .benefits__content {
        flex: 1;
        min-width: 0;
    }

    .benefits__card-title {
        font-size: 20px;
    }

    .benefits__card-desc {
        font-size: 16px;
    }

    /* Иконки +35%: кафе, игровые */
    .benefits__card:nth-child(1) .benefits__icon-img,
    .benefits__card:nth-child(2) .benefits__icon-img {
        transform: scale(1.35);
    }

    /* Кафе, Игровые, МК: текст ниже на 10% */
    .benefits__card:nth-child(1) .benefits__content,
    .benefits__card:nth-child(2) .benefits__content,
    .benefits__card:nth-child(4) .benefits__content {
        transform: translateY(10%);
    }

    /* Праздники: иконка x1.8, чуть вверх и влево */
    .benefits__card:nth-child(3) .benefits__icon-img {
        transform: scale(1.8) translate(-4px, -4px);
    }

    /* Праздники: текст ниже на 15% */
    .benefits__card:nth-child(3) .benefits__content {
        transform: translateY(15%);
    }

    /* Кондитерская: иконка +15%, влево на 10% */
    .benefits__card:nth-child(5) .benefits__icon-img {
        transform: scale(1.15) translateX(-10%);
    }

    /* Кондитерская: текст левее на 20% и ниже на 10% */
    .benefits__card:nth-child(5) .benefits__content {
        transform: translate(-20%, 10%);
    }

    /* Клуб друзей: иконка +55% */
    .benefits__card:nth-child(6) .benefits__icon-img {
        transform: scale(1.55);
    }

    /* Клуб друзей: текст ниже на 10% */
    .benefits__card:nth-child(6) .benefits__content {
        transform: translateY(10%);
    }
}

@media (min-width: 1024px) {
    .benefits__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-xl);
    }

    .benefits__card {
        min-height: 110px;
        padding: 18px 24px;
    }

    /* Единый размер контейнера иконок */
    .benefits__icon {
        width: 170px;
        height: 120px;
    }

    .benefits__icon--large,
    .benefits__icon--small {
        width: 170px;
        height: 120px;
    }

    .benefits__icon-img {
        width: 170px;
        height: 170px;
    }

    .benefits__icon-img--large,
    .benefits__icon-img--small {
        width: 170px;
        height: 170px;
    }

    .benefits__card-title {
        font-size: 22px;
    }

    .benefits__card-desc {
        font-size: 17px;
    }

    /* Иконки +35%: кафе, игровые */
    .benefits__card:nth-child(1) .benefits__icon-img,
    .benefits__card:nth-child(2) .benefits__icon-img {
        transform: scale(1.35);
    }

    /* Кафе, Игровые, МК: текст ниже на 10% */
    .benefits__card:nth-child(1) .benefits__content,
    .benefits__card:nth-child(2) .benefits__content,
    .benefits__card:nth-child(4) .benefits__content {
        transform: translateY(10%);
    }

    /* Праздники: иконка x1.8, чуть вверх и влево */
    .benefits__card:nth-child(3) .benefits__icon-img {
        transform: scale(1.8) translate(-4px, -4px);
    }

    /* Праздники: текст ниже на 15% */
    .benefits__card:nth-child(3) .benefits__content {
        transform: translateY(15%);
    }

    /* Кондитерская: иконка +15%, влево на 10% */
    .benefits__card:nth-child(5) .benefits__icon-img {
        transform: scale(1.15) translateX(-10%);
    }

    /* Кондитерская: текст левее на 20% и ниже на 10% */
    .benefits__card:nth-child(5) .benefits__content {
        transform: translate(-20%, 10%);
    }

    /* Клуб друзей: иконка +55% */
    .benefits__card:nth-child(6) .benefits__icon-img {
        transform: scale(1.55);
    }

    /* Клуб друзей: текст ниже на 10% */
    .benefits__card:nth-child(6) .benefits__content {
        transform: translateY(10%);
    }
}

/* Стрелочки для УТП (только на мобильной) */
.benefits__container {
    position: relative;
}

/* Точки навигации для Benefits */
.benefits__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: var(--spacing-md);
}

.benefits__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all var(--transition-base);
}

.benefits__dot.active {
    background: var(--color-white);
    transform: scale(1.3);
}

@media (min-width: 768px) {
    .benefits__dots {
        display: none;
    }
}

.benefits__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    color: #192D14;
    font-size: 18px;
    cursor: pointer;
    transition: all var(--transition-base);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
}

.benefits__arrow:hover {
    opacity: 1;
    background: var(--color-white);
    border-color: var(--color-white);
}

.benefits__arrow--prev {
    left: 10px;
}

.benefits__arrow--next {
    right: 10px;
}

@media (min-width: 768px) {
    .benefits__arrow {
        display: none;
    }
}

/* ==========================================================================
   7. LOCATIONS (Локации)
   ========================================================================== */
.locations {
    position: relative;
    padding: 40px 20px 0.8rem 20px;
    background: var(--color-white);
    overflow: hidden;
}

.locations__container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.locations__title {
    font-family: var(--font-headline);
    font-weight: 700;
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: #192D14;
    text-align: center;
    margin-bottom: 0.8rem;
}

/* Ойки на фоне Locations */
.locations__bird-1,
.locations__bird-2,
.locations__bird-3 {
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.08;
    z-index: 1;
    pointer-events: none;
    animation: float 9s ease-in-out infinite;
}

.locations__bird-1 {
    width: 130px;
    height: 130px;
    top: 10%;
    left: 5%;
    background-image: url('../assets/mascot/bird blue.png');
    animation-delay: -1s;
}

.locations__bird-2 {
    width: 100px;
    height: 100px;
    top: 60%;
    right: 8%;
    background-image: url('../assets/mascot/bird caramel.png');
    animation-delay: -3s;
}

.locations__bird-3 {
    width: 90px;
    height: 90px;
    bottom: 15%;
    left: 70%;
    background-image: url('../assets/mascot/berd red.png');
    animation-delay: -5s;
}

.locations__slider {
    display: flex;
    gap: 0.8rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: var(--spacing-sm) 60px var(--spacing-sm) 60px;
    scroll-behavior: smooth;
}

.locations__slider::-webkit-scrollbar {
    display: none;
}

.location-card {
    width: 90vw;
    max-width: 550px;
    scroll-snap-align: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0.65) 100%);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 32px !important;
    overflow: visible;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(27, 37, 64, 0.15), 0 8px 20px rgba(27, 37, 64, 0.1);
}

.location-card__gallery {
    position: relative;
    overflow: hidden;
    height: 220px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 32px 32px 0 0;
}

.gallery__slider {
    display: flex;
    gap: 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    height: 100%;
}

.gallery__slider::-webkit-scrollbar {
    display: none;
}

.gallery__slide {
    flex: 0 0 auto;
    width: 100%;
    height: 100%;
    scroll-snap-align: start;
}

.gallery__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.gallery__dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 5;
}

.gallery__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-white-50);
    cursor: pointer;
    transition: all var(--transition-base);
}

.gallery__dot.active {
    background: var(--color-white);
    transform: scale(1.3);
}

.location-card__info {
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.5) 100%);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-top: none;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    flex: 1;
    min-height: 280px;
    overflow-y: auto;
    box-shadow: 0 8px 32px rgba(115, 25, 42, 0.08);
}

.location-card__name {
    font-family: var(--font-headline);
    font-weight: 700;
    font-size: 18px;
    color: #192D14;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.location-card__exclusive {
    font-family: var(--font-primary);
    background: linear-gradient(135deg, rgba(221, 153, 142, 0.25) 0%, rgba(221, 153, 142, 0.15) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(221, 153, 142, 0.3);
    border-radius: 16px;
    padding: 10px 12px;
    margin: 8px 0 6px 0;
    color: #192D14;
}

.location-card__exclusive-title {
    font-weight: 700;
    font-size: 12px;
    margin-bottom: 5px;
    line-height: 1.25;
    letter-spacing: -0.01em;
}

.location-card__exclusive-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 11px;
    font-weight: 400;
    line-height: 1.3;
}

.location-card__label {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 11px;
    color: #DCC669;
    display: inline;
    letter-spacing: 0.02em;
    line-height: 1.3;
}

.location-card__address,
.location-card__metro,
.location-card__hours,
.location-card__phones,
.location-card__halls,
.location-card__manager,
.location-card__animator,
.location-card__cleaning {
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 11px;
    color: var(--color-text-secondary);
    line-height: 1.4;
    padding: 2px 0;
    margin-bottom: 2px;
}

.location-card__phone {
    display: inline;
    color: var(--color-accent);
    text-decoration: none;
    transition: color var(--transition-base);
    font-size: 11px;
    font-weight: 500;
    margin-left: 2px;
    line-height: 1.3;
}

.location-card__phone:hover {
    color: #192D14;
}

.location-card__phones {
    margin-bottom: 2px;
}

.location-card__btn {
    width: 100%;
    margin-top: auto;
    font-size: 14px;
    font-weight: 500;
    padding: 12px 24px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(115, 25, 42, 0.95) 0%, rgba(115, 25, 42, 0.85) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-base);
    letter-spacing: 0.01em;
    box-shadow: 0 4px 15px rgba(115, 25, 42, 0.15);
    line-height: 1.2;
}

.location-card__btn:hover {
    background: linear-gradient(135deg, rgba(115, 25, 42, 1) 0%, rgba(115, 25, 42, 0.9) 100%);
    transform: translateY(-2px);
    color: white;
    box-shadow: 0 6px 20px rgba(115, 25, 42, 0.2);
}

@media (min-width: 768px) {
    .location-card {
        max-width: 700px;
    }

    .location-card__gallery {
        height: 280px;
    }

    .location-card__info {
        min-height: 280px;
    }
}

/* Индикаторы для локаций */
.locations__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 0.8rem;
}

.locations__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-accent-30);
    cursor: pointer;
    transition: all var(--transition-base);
}

.locations__dot.active {
    background: var(--color-accent);
    transform: scale(1.3);
}

@media (min-width: 768px) {
    .locations__dots {
        display: none;
    }

    /* Одна карточка локации — центровка */
    .locations__slider:has(.location-card:only-child) {
        justify-content: center;
    }

    .locations__slider:has(.location-card:only-child) .location-card {
        max-width: 700px;
        width: 100%;
    }
}

/* ==========================================================================
   8. DISCOUNT (Скидка)
   ========================================================================== */
.discount {
    position: relative;
    padding: var(--spacing-2xl) 20px;
    background: #DCC669;
    overflow: hidden;
}

@media (max-width: 767px) {
    .discount {
        padding: 40px 20px;
    }

    .discount__card {
        flex-direction: row;
        min-height: auto;
        overflow: hidden;
    }

    .discount__content {
        flex: 0 0 45%;
        padding: 16px 10px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        overflow: hidden;
    }

    .discount__title {
        font-size: 0.8rem;
        line-height: 1.2;
        margin-bottom: 6px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .discount__text {
        font-size: 9px;
        line-height: 1.3;
        margin-bottom: 6px;
        overflow-y: auto;
        max-height: 60px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .discount__btn {
        padding: 8px 12px;
        font-size: 9px;
        align-self: flex-start;
        white-space: nowrap;
    }

    .discount__image {
        flex: 0 0 55%;
        overflow: hidden;
    }

    .discount__image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
}

.discount__container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.discount__card {
    display: flex;
    flex-direction: column;
    background: var(--color-glass-strong);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    max-width: 1000px;
    margin: 0 auto;
}

/* Ойки на фоне Discount */
.discount__bird-1,
.discount__bird-2,
.discount__bird-3,
.discount__bird-4 {
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.08;
    z-index: 1;
    pointer-events: none;
    animation: float 9s ease-in-out infinite;
}

.discount__bird-1 {
    width: 140px;
    height: 140px;
    top: 10%;
    left: 4%;
    background-image: url('../assets/mascot/bird blue.png');
    animation-delay: -1s;
}

.discount__bird-2 {
    width: 110px;
    height: 110px;
    top: 60%;
    right: 6%;
    background-image: url('../assets/mascot/bird caramel.png');
    animation-delay: -3s;
}

.discount__bird-3 {
    width: 95px;
    height: 95px;
    bottom: 15%;
    left: 75%;
    background-image: url('../assets/mascot/berd red.png');
    animation-delay: -4s;
}

.discount__bird-4 {
    width: 105px;
    height: 105px;
    top: 30%;
    right: 25%;
    background-image: url('../assets/mascot/bird green.png');
    animation-delay: -2s;
}

.discount__content {
    flex: 0 0 60%;
    padding: var(--spacing-xl);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.discount__title {
    font-family: var(--font-headline);
    font-weight: 700;
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    color: var(--color-accent);
    margin-bottom: var(--spacing-md);
    line-height: 1.3;
}

.discount__text {
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

.discount__promo {
    background: rgba(115, 25, 42, 0.08);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.discount__promo-label {
    display: block;
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 13px;
    color: #192D14;
    margin-bottom: 4px;
}

.discount__promo-code {
    display: block;
    font-family: var(--font-headline);
    font-weight: 700;
    font-size: 24px;
    color: #192D14;
}

.discount__btn {
    align-self: flex-start;
    font-family: var(--font-headline);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 16px 32px;
}

.discount__image {
    flex: 0 0 40%;
    position: relative;
    overflow: hidden;
    aspect-ratio: 2/1;
}

.discount__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 768px) {
    .discount__card {
        flex-direction: row;
        min-height: 400px;
    }

    .discount__content {
        flex: 0 0 55%;
    }

    .discount__image {
        flex: 0 0 45%;
    }
}

/* ==========================================================================
   Мобильная версия локаций - вертикальный список с каруселями
   ========================================================================== */
@media (max-width: 767px) {
    .locations {
        padding: 32px 16px 16px 16px;
    }

    .locations__container {
        max-width: 100%;
        padding: 0;
    }

    .locations__title {
        font-size: 18px;
        margin-bottom: 16px;
    }

    /* Убираем горизонтальный слайдер */
    .locations__slider {
        display: flex;
        flex-direction: column;
        gap: 12px;
        overflow: visible;
        padding: 0;
        scroll-snap-type: none;
    }

    .locations__slider::-webkit-scrollbar {
        display: none;
    }

    .location-card {
        flex: none;
        width: 100%;
        scroll-snap-align: none;
        display: flex;
        flex-direction: column;
        gap: 6px;
        padding: 0;
        background: transparent;
        border: none;
        border-radius: 0;
        box-shadow: none;
    }

    .location-card__gallery {
        width: 100%;
        height: 160px; /* 16:9 компактная высота */
        position: relative;
        border-radius: 12px;
        overflow: hidden;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border: 1px solid rgba(115, 25, 42, 0.15);
        box-shadow: 0 4px 16px rgba(27, 37, 64, 0.08);
    }

    .gallery__slider {
        width: 100%;
        height: 100%;
        gap: 0;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
    }

    .gallery__slider::-webkit-scrollbar {
        display: none;
    }

    .gallery__slide {
        flex: 0 0 100%;
        width: 100%;
        height: 100%;
        scroll-snap-align: start;
    }

    .gallery__slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
    }

    /* Точки для карусели локаций */
    .location-card__gallery .gallery__dots {
        display: flex;
        gap: 4px;
        bottom: 8px;
    }

    .gallery__dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.6);
        cursor: pointer;
        transition: all var(--transition-base);
    }

    .gallery__dot.active {
        background: #192D14;
        transform: scale(1.2);
    }

    /* Инфо под каруселью: название слева, кнопка справа */
    .location-card__info {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
        width: 100%;
        margin: 0;
        padding: 0;
        background: transparent;
        border: none;
        min-height: auto;
    }

    .location-card__name {
        font-family: var(--font-headline);
        font-weight: 700;
        font-size: 14px;
        color: #192D14;
        margin: 0;
        padding: 0;
        background: transparent;
        border: none;
        text-align: left;
    }

    /* Кнопка "Подробнее" с тонкой рамкой */
    .location-card__btn.btn--more {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        padding: 6px 14px;
        background: transparent;
        border: 1px solid rgba(115, 25, 42, 0.3);
        color: #192D14;
        border-radius: 12px;
        margin: 0;
        font-weight: 500;
        text-decoration: none;
        transition: all var(--transition-fast);
        width: auto;
    }

    .location-card__btn.btn--more:hover {
        background: rgba(115, 25, 42, 0.08);
        border-color: rgba(115, 25, 42, 0.5);
    }

    /* Скрываем детали локации на мобильной (показываются в модалке) */
    .location-card__address,
    .location-card__metro,
    .location-card__hours,
    .location-card__phones,
    .location-card__halls,
    .location-card__manager,
    .location-card__animator,
    .location-card__cleaning,
    .location-card__exclusive,
    .location-card__label {
        display: none;
    }

    /* Скрываем общую кнопку Telegram на мобильной */
    .location-card__btn:not(.btn--more) {
        display: none;
    }

    /* Скрываем общие точки навигации */
    .locations__dots {
        display: none;
    }
}

/* Скрыть кнопку "Подробнее" на ПК */
@media (min-width: 768px) {
    .location-card__btn.btn--more {
        display: none !important;
    }
}

/* ==========================================================================
   МОДАЛЬНОЕ ОКНО ДЛЯ ЛОКАЦИИ
   ========================================================================== */
.location-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.location-modal.active {
    opacity: 1;
    visibility: visible;
}

.location-modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    cursor: pointer;
}

.location-modal__content {
    position: relative;
    width: 100%;
    max-height: 85vh;
    background: var(--color-white);
    border-radius: 24px 24px 0 0;
    padding: 20px 16px 24px 16px;
    overflow-y: auto;
    box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    transition: transform var(--transition-base);
}

.location-modal.active .location-modal__content {
    transform: translateY(0);
}

.location-modal__handle {
    width: 40px;
    height: 4px;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 2px;
    margin: 0 auto 16px auto;
}

.location-modal__header {
    text-align: center;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.location-modal__name {
    font-family: var(--font-headline);
    font-weight: 700;
    font-size: 20px;
    color: #192D14;
    margin-bottom: 4px;
}

.location-modal__metro {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 13px;
    color: #DCC669;
}

.location-modal__body {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
}

.location-modal__row {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.location-modal__label {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 12px;
    color: rgba(0, 0, 0, 0.6);
}

.location-modal__text {
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.85);
    line-height: 1.4;
}

.location-modal__phone {
    color: #192D14;
    text-decoration: none;
    font-weight: 500;
}

.location-modal__exclusive {
    background: linear-gradient(135deg, rgba(221, 153, 142, 0.12) 0%, rgba(221, 153, 142, 0.06) 100%);
    border: 1px solid rgba(221, 153, 142, 0.2);
    border-radius: 12px;
    padding: 12px;
    margin-top: 8px;
}

.location-modal__exclusive-title {
    font-family: var(--font-headline);
    font-weight: 700;
    font-size: 13px;
    color: #192D14;
    margin-bottom: 8px;
}

.location-modal__exclusive-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.location-modal__exclusive-item {
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 12px;
    color: rgba(0, 0, 0, 0.75);
    padding-left: 12px;
    position: relative;
}

.location-modal__exclusive-item::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #DCC669;
}

.location-modal__footer {
    margin-top: 8px;
}

.location-modal__btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px 20px;
    background: linear-gradient(135deg, rgba(115, 25, 42, 0.95) 0%, rgba(115, 25, 42, 0.85) 100%);
    color: white;
    text-decoration: none;
    border-radius: 16px;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 14px;
    transition: all var(--transition-base);
}

.location-modal__btn:hover {
    background: linear-gradient(135deg, rgba(115, 25, 42, 1) 0%, rgba(115, 25, 42, 0.95) 100%);
    transform: translateY(-2px);
}

@media (min-width: 768px) {
    .location-modal {
        align-items: center;
    }

    .location-modal__content {
        width: 90%;
        max-width: 500px;
        border-radius: var(--radius-xl);
        padding: var(--spacing-xl);
    }

    .location-modal__handle {
        display: none;
    }
}

/* ==========================================================================
   9. REVIEWS (Отзывы)
   ========================================================================== */
.reviews {
    position: relative;
    padding: var(--spacing-2xl) 20px;
    background: var(--color-white);
    overflow: hidden;
}

.reviews__container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.reviews__header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.reviews__title {
    font-family: var(--font-headline);
    font-weight: 700;
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: var(--color-text-primary);
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.reviews__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: var(--color-glass-strong);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(143, 168, 157, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    font-size: 18px;
    cursor: pointer;
    transition: all var(--transition-fast);
    z-index: 10;
}

.reviews__arrow:hover {
    background: var(--color-accent);
    color: var(--color-white);
    transform: translateY(-50%) scale(1.1);
}

.reviews__arrow--prev {
    left: 10px;
}

.reviews__arrow--next {
    right: 10px;
}

/* Ойки на фоне Reviews */
.reviews__bird-1,
.reviews__bird-2,
.reviews__bird-3,
.reviews__bird-4,
.reviews__bird-5,
.reviews__bird-6,
.reviews__bird-7,
.reviews__bird-8 {
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.09;
    z-index: 1;
    pointer-events: none;
    animation: float 11s ease-in-out infinite;
}

.reviews__bird-1 {
    width: 130px;
    height: 130px;
    top: 8%;
    left: 4%;
    background-image: url('../assets/mascot/berd red.png');
    animation-delay: -1.5s;
}

.reviews__bird-2 {
    width: 100px;
    height: 100px;
    top: 65%;
    right: 6%;
    background-image: url('../assets/mascot/bird blue.png');
    animation-delay: -3.5s;
}

.reviews__bird-3 {
    width: 85px;
    height: 85px;
    bottom: 20%;
    left: 75%;
    background-image: url('../assets/mascot/bird green.png');
    animation-delay: -5.5s;
}

.reviews__bird-4 {
    width: 115px;
    height: 115px;
    top: 30%;
    right: 20%;
    background-image: url('../assets/mascot/bird caramel.png');
    animation-delay: -2.5s;
}

.reviews__bird-5 {
    width: 90px;
    height: 90px;
    bottom: 40%;
    left: 15%;
    background-image: url('../assets/mascot/berd red.png');
    animation-delay: -4.5s;
}

.reviews__bird-6 {
    width: 105px;
    height: 105px;
    top: 50%;
    right: 12%;
    background-image: url('../assets/mascot/bird blue.png');
    animation-delay: -6.5s;
}

.reviews__bird-7 {
    width: 80px;
    height: 80px;
    top: 75%;
    left: 5%;
    background-image: url('../assets/mascot/bird green.png');
    animation-delay: -7.5s;
}

.reviews__bird-8 {
    width: 95px;
    height: 95px;
    bottom: 8%;
    right: 30%;
    background-image: url('../assets/mascot/bird caramel.png');
    animation-delay: -8.5s;
}

.reviews__slider {
    display: flex;
    gap: var(--spacing-md);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: var(--spacing-sm) 0;
}

.reviews__slider::-webkit-scrollbar {
    height: 4px;
}

.reviews__slider::-webkit-scrollbar-track {
    background: var(--color-surface);
    border-radius: 2px;
}

.reviews__slider::-webkit-scrollbar-thumb {
    background: var(--color-accent);
    border-radius: 2px;
}

.review-card {
    flex: 0 0 auto;
    width: 85vw;
    max-width: 380px;
    height: 480px;
    scroll-snap-align: center;
    perspective: 1000px;
    cursor: pointer;
}

@media (max-width: 767px) {
    .review-card {
        width: 75vw;
        height: 420px;
    }

    .review-card__front {
        padding: 12px 16px;
        justify-content: flex-start;
        gap: 6px;
    }

    .review-card__logo {
        margin-bottom: 0;
        order: 1;
    }

    .review-card__logo img:first-child {
        width: 28px;
    }

    .review-card__yandex-logo {
        width: 20px;
    }

    .review-card__stars {
        margin-bottom: 0;
        order: 2;
    }

    .star-icon {
        width: 10px;
        height: 10px;
    }

    .review-card__text {
        font-family: var(--font-primary);
        font-weight: 300;
        font-size: 11px;
        line-height: 1.4;
        color: var(--color-text-secondary);
        max-height: 280px;
        margin: 0;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 18;
        -webkit-box-orient: vertical;
        text-overflow: ellipsis;
        word-wrap: break-word;
        overflow-wrap: break-word;
        flex: 1;
        order: 3;
    }

    .review-card__author {
        font-size: 10px;
        margin-bottom: 0;
        order: 4;
    }

    .review-card__links {
        margin: 0;
        order: 5;
    }

    .review-card__review-link {
        font-size: 10px;
        padding: 5px 10px;
        font-weight: 500;
    }

    .review-card__location {
        font-size: 9px;
        margin-top: 0;
        order: 6;
    }

    .review-card__more-btn {
        display: inline-block;
        padding: 6px 12px;
        font-size: 10px;
        font-weight: 500;
    }

    /* Убираем стрелочки навигации на мобильной */
    .reviews__arrow {
        display: none;
    }
}

    /* Минималистичные стрелки навигации */
    .reviews__arrow {
        width: 32px;
        height: 32px;
        font-size: 16px;
        background: rgba(255, 255, 255, 0.9);
        border: 1px solid rgba(115, 25, 42, 0.2);
        color: #192D14;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .reviews__arrow:hover {
        background: #192D14;
        color: white;
        border-color: #192D14;
    }

    .reviews__arrow--prev {
        left: 5px;
    }

    .reviews__arrow--next {
        right: 5px;
    }
}

.review-card__inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-card.flipped .review-card__inner {
    transform: rotateY(180deg);
}

.review-card__front,
.review-card__back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl) var(--spacing-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.review-card__front {
    background: var(--color-glass-strong);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1.5px solid rgba(143, 168, 157, 0.15);
}

.review-card__back {
    background: #8FA89D;
    transform: rotateY(180deg);
}

.review-card--red .review-card__back {
    background: #192D14;
}

.review-card--blue .review-card__back {
    background: #192D14;
}

.review-card--pink .review-card__back {
    background: #DCC669;
}

.review-card__logo {
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-card__logo img:first-child {
    width: 60px;
    height: auto;
}

.review-card__yandex-logo {
    width: 45px;
    height: 45px;
    opacity: 0.9;
    flex-shrink: 0;
}

.review-card__stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: var(--spacing-md);
}

.review-card__star {
    display: flex;
    align-items: center;
}

.star-icon {
    width: 18px;
    height: 18px;
    color: var(--color-gold);
}

.review-card__text {
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 12px;
    line-height: 1.4;
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-xs);
    flex: 1;
    overflow-y: auto;
    max-height: 160px;
    scrollbar-width: thin;
}

.review-card__text::-webkit-scrollbar {
    width: 3px;
}

.review-card__text::-webkit-scrollbar-thumb {
    background: var(--color-accent-20);
    border-radius: 3px;
}

.review-card__author {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 14px;
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-sm);
}

.review-card__review-link {
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 12px;
    color: var(--color-accent);
    text-decoration: none;
    padding: 6px 12px;
    border: 1px solid var(--color-accent);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.review-card__review-link:hover {
    background: var(--color-accent);
    color: var(--color-white);
}

.review-card__location {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 10px;
    color: #DCC669;
    margin-top: 4px;
    letter-spacing: 0.02em;
}

.review-card__back-logo {
    width: 140px;
    height: auto;
    margin: auto;
    filter: brightness(0) invert(1);
}

.review-card__mascot {
    width: 120px;
    height: auto;
    margin: auto;
    animation: float 4s ease-in-out infinite;
}

.review-card__back-text {
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin-top: var(--spacing-sm);
}

@media (min-width: 640px) {
    .reviews__arrow {
        display: none;
    }
}

@media (min-width: 1024px) {
    .reviews__slider {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: var(--spacing-lg);
        padding: var(--spacing-sm) 0;
        scroll-behavior: smooth;
    }

    .reviews__slider::-webkit-scrollbar {
        display: none;
    }

    .review-card {
        flex: 0 0 calc(33.333% - var(--spacing-lg) * 2 / 3);
        width: calc(33.333% - var(--spacing-lg) * 2 / 3);
        max-width: none;
        height: auto;
        min-height: 450px;
        scroll-snap-align: start;
    }

    .review-card__text {
        overflow-y: auto;
        max-height: 180px;
    }

    .reviews__dots {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-top: var(--spacing-lg);
    }

    .reviews__dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--color-accent-30);
        cursor: pointer;
        transition: all var(--transition-base);
    }

    .reviews__dot.active {
        background: var(--color-accent);
        transform: scale(1.3);
    }
}

@media (min-width: 1280px) {
    .reviews__slider {
        gap: var(--spacing-xl);
    }

    .review-card {
        flex: 0 0 calc(33.333% - var(--spacing-xl) * 2 / 3);
        width: calc(33.333% - var(--spacing-xl) * 2 / 3);
    }
}

/* Индикаторы для отзывов */
.reviews__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: var(--spacing-lg);
}

.reviews__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-accent-30);
    cursor: pointer;
    transition: all var(--transition-base);
}

.reviews__dot.active {
    background: var(--color-accent);
    transform: scale(1.3);
}

@media (min-width: 640px) {
    .reviews__dots {
        display: none;
    }
}

/* Контейнер для кнопок в карточке отзыва */
.review-card__links {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
}

/* Кнопка "Подробнее" в карточке отзыва */
.review-card__more-btn {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 12px;
    color: #192D14;
    background: rgba(115, 25, 42, 0.08);
    border: 1px solid rgba(115, 25, 42, 0.2);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
    white-space: nowrap;
    display: none; /* Скрыто на ПК */
}

.review-card__more-btn:hover {
    background: rgba(115, 25, 42, 0.15);
    border-color: rgba(115, 25, 42, 0.3);
}

/* Модальное окно для отзыва */
.review-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.review-modal.active {
    opacity: 1;
    visibility: visible;
}

.review-modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.review-modal__content {
    position: relative;
    width: 90%;
    max-width: 500px;
    max-height: 85vh;
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: translateY(20px);
    transition: transform var(--transition-base);
}

.review-modal.active .review-modal__content {
    transform: translateY(0);
}

.review-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    font-size: 24px;
    font-weight: 300;
    color: var(--color-text-secondary);
    background: rgba(0, 0, 0, 0.05);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    line-height: 1;
}

.review-modal__close:hover {
    background: rgba(115, 25, 42, 0.1);
    color: #192D14;
}

.review-modal__header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.review-modal__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: var(--spacing-sm);
}

.review-modal__logo img:first-child {
    width: 50px;
    height: auto;
}

.review-modal__yandex-logo {
    width: 40px;
    height: 40px;
    opacity: 0.9;
}

.review-modal__stars {
    display: flex;
    justify-content: center;
    gap: 4px;
}

.review-modal__stars .star-icon {
    width: 16px;
    height: 16px;
}

.review-modal__body {
    margin-bottom: var(--spacing-lg);
}

.review-modal__text {
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-md);
}

.review-modal__author {
    font-family: var(--font-headline);
    font-weight: 600;
    font-size: 14px;
    color: var(--color-text);
    margin-bottom: var(--spacing-xs);
}

.review-modal__location {
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 12px;
    color: #192D14;
}

.review-modal__link {
    display: block;
    text-align: center;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 12px;
    color: #192D14;
    text-decoration: none;
    padding: 10px;
    background: rgba(115, 25, 42, 0.05);
    border-radius: var(--radius-md);
    transition: background var(--transition-fast);
}

.review-modal__link:hover {
    background: rgba(115, 25, 42, 0.1);
}

@media (max-width: 767px) {
    .review-modal__content {
        width: 92%;
        padding: var(--spacing-lg);
        max-height: 80vh;
    }

    .review-modal__logo img:first-child {
        width: 40px;
    }

    .review-modal__yandex-logo {
        width: 32px;
        height: 32px;
    }

    .review-modal__text {
        font-size: 13px;
    }

    .review-modal__author {
        font-size: 13px;
    }

    .review-modal__location {
        font-size: 11px;
    }
}

/* ==========================================================================
   10. MAP SECTION (Карта в стиле брендбука)
   ========================================================================== */
.map-section {
    padding: var(--spacing-2xl) 20px;
    background: var(--color-bg-soft);
    overflow: hidden;
}

.map-section__container {
    max-width: 1200px;
    margin: 0 auto;
}

.map-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.map-header__title {
    font-family: var(--font-headline);
    font-weight: 700;
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    color: var(--map-accent);
    margin-bottom: var(--spacing-sm);
}

.map-header__address {
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 16px;
    color: var(--color-text-secondary);
}

.map-container {
    width: 100%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 2px solid var(--map-border);
    box-shadow: var(--map-glow);
    background: var(--map-bg);
}

.map-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    align-items: stretch;
}

.map-info {
    background: var(--color-glass-strong);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--color-white-70);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl) var(--spacing-lg);
    max-height: 400px;
    overflow-y: auto;
}

.map-info::-webkit-scrollbar {
    width: 6px;
}

.map-info::-webkit-scrollbar-track {
    background: var(--color-surface);
    border-radius: 3px;
}

.map-info::-webkit-scrollbar-thumb {
    background: #0F1A0A;
    border-radius: 3px;
}

.map-info__title {
    font-family: var(--font-headline);
    font-weight: 700;
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    color: var(--map-accent);
    margin-bottom: var(--spacing-md);
}

.map-info__address {
    font-family: var(--font-headline);
    font-weight: 700;
    font-size: 18px;
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-xs);
}

.map-info__full-address {
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 14px;
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-md);
}

.map-info__metro {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: var(--spacing-lg);
    padding: 12px 16px;
    background: var(--color-surface);
    border-radius: var(--radius-md);
}

.map-info__metro-icon {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 14px;
    color: var(--color-text-primary);
}

.map-info__metro-icon::before {
    content: '';
    width: 12px;
    height: 12px;
    background: #50C878;
    border-radius: 50%;
    flex-shrink: 0;
}

.map-info__metro-line {
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 13px;
    color: var(--color-text-muted);
}

.map-info__hours {
    margin-bottom: var(--spacing-lg);
}

.map-info__hours-title {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 14px;
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-xs);
}

.map-info__hours-time {
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 14px;
    color: var(--color-text-secondary);
}

.map-info__contact {
    border-top: 1px solid var(--color-border);
    padding-top: var(--spacing-lg);
}

.map-info__contact-title {
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 14px;
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-sm);
}

.map-info__phone {
    display: inline-block;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 18px;
    color: var(--map-accent);
    text-decoration: none;
    margin-bottom: var(--spacing-md);
    transition: all var(--transition-base);
}

.map-info__phone:hover {
    color: var(--color-accent-light);
}

.map-info__socials {
    display: flex;
    gap: var(--spacing-sm);
}

.map-info__social {
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 13px;
    color: var(--color-white);
    padding: 10px 20px;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all var(--transition-base);
}

.map-info__social--telegram {
    background: #0088cc;
}

.map-info__social--telegram:hover {
    background: #0077b3;
}

.map-info__social--vk {
    background: #0077ff;
}

.map-info__social--vk:hover {
    background: #0066dd;
}

.map-info__location {
    padding: var(--spacing-sm) var(--spacing-xs);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    margin-bottom: var(--spacing-md);
    border: 1px solid var(--color-border);
}

.map-info__location:hover {
    background: var(--color-surface);
}

.map-info__metro-icon::before {
    content: '';
    width: 12px;
    height: 12px;
    background: #50C878;
    border-radius: 50%;
    flex-shrink: 0;
}

.map-info__metro-icon--green::before {
    background: #50C878;
}

.map-info__metro-icon--orange::before {
    background: #FF9500;
}

.map-wrapper {
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 2px solid var(--map-border);
    box-shadow: var(--map-glow);
    background: var(--map-bg);
    height: 400px;
}

#interactive-map {
    width: 100%;
    height: 100%;
}

@media (min-width: 768px) {
    .map-content {
        grid-template-columns: 1fr 1fr;
    }
}

/* ==========================================================================
   11. FLOATING ANIMATION
   ========================================================================== */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ==========================================================================
   MAP SECTION (Glassmorphism)
   ========================================================================== */
.map-section {
    position: relative;
    padding: var(--spacing-2xl) 20px;
    background: #192D14;
    overflow: hidden;
}

.map-section::before,
.map-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    z-index: 1;
    pointer-events: none;
}

.map-section::before {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
    background: rgba(255, 255, 255, 0.2);
}

.map-section::after {
    width: 250px;
    height: 250px;
    bottom: 10%;
    right: 5%;
    background: rgba(221, 153, 142, 0.3);
}

.map-section__bird-1,
.map-section__bird-2 {
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.1;
    z-index: 1;
    pointer-events: none;
    animation: float 8s ease-in-out infinite;
}

.map-section__bird-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    background-image: url('../assets/mascot/bird blue.png');
}

.map-section__bird-2 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    right: 10%;
    background-image: url('../assets/mascot/berd red.png');
    animation-delay: -2s;
}

.map-section__subtitle {
    font-family: 'Sacramento', cursive;
    font-size: 28px;
    color: #DCC669;
    text-align: center;
    margin-bottom: 4px;
    letter-spacing: 0.05em;
}

.map-section__title {
    font-family: var(--font-headline);
    font-weight: 700;
    font-size: 32px;
    color: white;
    text-align: center;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.map-section__card {
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.6) 100%);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.2);
}

.map-section__locations {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    flex-shrink: 0;
}

.map-location {
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(221, 153, 142, 0.2);
    border-radius: 16px;
    cursor: pointer;
    transition: all var(--transition-base);
    text-align: center;
}

.map-location:hover {
    background: rgba(221, 153, 142, 0.15);
    border-color: rgba(221, 153, 142, 0.4);
    transform: translateX(4px);
}

.map-location__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}

.map-location__name {
    font-family: var(--font-headline);
    font-weight: 700;
    font-size: 15px;
    color: #192D14;
}

.map-location__metro {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: #DCC669;
    font-weight: 500;
}

.map-location__metro-icon {
    width: 16px;
    height: 16px;
}

.map-location__address {
    font-size: 11px;
    color: var(--color-text-secondary);
    margin-bottom: 10px;
    line-height: 1.3;
}

.map-location__buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.map-location__phone {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: rgba(0, 0, 0, 0.7);
    border-radius: 20px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    transition: all var(--transition-base);
    border: 1px solid rgba(0, 0, 0, 0.25);
}

.map-location__phone svg {
    flex-shrink: 0;
}

.map-location__phone:hover {
    background: rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(115, 25, 42, 0.15);
}

.map-location__telegram {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(29, 161, 242, 0.9) 0%, rgba(29, 161, 242, 0.8) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    border-radius: 20px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    transition: all var(--transition-base);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.map-location__telegram-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.map-location__telegram:hover {
    background: linear-gradient(135deg, rgba(29, 161, 242, 1) 0%, rgba(29, 161, 242, 0.9) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(29, 161, 242, 0.3);
}

.map-section__map {
    height: 280px;
    position: relative;
}

#anderson-map {
    width: 100%;
    height: 100%;
    border-radius: 0 0 32px 32px;
}

@media (min-width: 768px) {
    .map-section__subtitle {
        font-size: 36px;
    }

    .map-section__title {
        font-size: 42px;
        margin-bottom: 32px;
    }

    .map-section__card {
        flex-direction: row;
        height: 350px;
    }

    .map-section__locations {
        width: 40%;
        padding: 24px;
        border-bottom: none;
        border-right: 1px solid rgba(255, 255, 255, 0.5);
        overflow-y: auto;
    }

    /* Одна локация — растянуть на всю высоту */
    .map-section__locations:has(.map-location:only-child) {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .map-section__locations .map-location:only-child {
        width: 100%;
        padding: 24px;
    }

    .map-section__locations .map-location:only-child .map-location__name {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .map-section__locations .map-location:only-child .map-location__address {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .map-section__locations .map-location:only-child .map-location__buttons {
        justify-content: center;
    }

    .map-section__locations::-webkit-scrollbar {
        width: 4px;
    }

    .map-section__locations::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.3);
        border-radius: 4px;
    }

    .map-section__locations::-webkit-scrollbar-thumb {
        background: rgba(221, 153, 142, 0.6);
        border-radius: 4px;
    }

    .map-section__map {
        width: 60%;
        height: 100%;
    }

    #anderson-map {
        border-radius: 0 32px 32px 0;
    }
}

/* ==========================================================================
   ENJOY CAMP
   ========================================================================== */

.enjoy-camp {
    background: #DCC669;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.enjoy-camp__container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.enjoy-camp__card {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 32px;
    padding: 28px;
    display: flex;
    gap: 28px;
    align-items: center;
    width: 85%;
    margin: 0 auto;
    border: 1.5px solid rgba(255, 255, 255, 0.7);
}

.enjoy-camp__photo {
    flex: 0 0 440px;
    aspect-ratio: 3 / 2;
    border-radius: 24px;
    border: 2px solid rgba(220, 198, 105, 0.35);
    overflow: hidden;
    background: rgba(25, 45, 20, 0.05);
}

.enjoy-camp__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.enjoy-camp__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.enjoy-camp__title {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: clamp(1.3rem, 3vw, 1.7rem);
    color: #192D14;
    line-height: 1.3;
}

.enjoy-camp__desc {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 15px;
    line-height: 1.75;
    color: rgba(25, 45, 20, 0.75);
}

.enjoy-camp__badge {
    display: inline-block;
    background: #DCC669;
    border-radius: 12px;
    padding: 10px 18px;
    color: #192D14;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    align-self: flex-start;
}

.enjoy-camp__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #192D14;
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    padding: 14px 28px;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    align-self: flex-start;
    margin-top: 4px;
}

.enjoy-camp__btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.enjoy-camp__bird {
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.18;
    z-index: 0;
    pointer-events: none;
    animation: float 8s ease-in-out infinite;
}

@media (max-width: 767px) {
    .enjoy-camp {
        padding: 60px 16px;
    }

    .enjoy-camp__card {
        width: 100%;
        flex-direction: column;
        padding: 24px;
        gap: 24px;
    }

    .enjoy-camp__photo {
        flex: none;
        width: 100%;
    }
}
