﻿*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    overflow-x: clip;
    -webkit-user-select: none;
    user-select: none;
}

input,
textarea,
select,
button,
[contenteditable="true"],
[contenteditable=""] {
    -webkit-user-select: text;
    user-select: text;
}

/* ===== АНИМАЦИИ ===== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.96);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes heroKenBurns {
    from {
        transform: scale(1.03);
    }
    to {
        transform: scale(1.1);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.28);
    }
    50% {
        box-shadow: 0 8px 40px rgba(255, 255, 255, 0.18);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition:
        opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-delay, 0s);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal--scale {
    transform: translateY(24px) scale(0.97);
}

.reveal--scale.is-visible {
    transform: translateY(0) scale(1);
}

.reveal--left {
    transform: translateX(-32px);
}

.reveal--left.is-visible {
    transform: translateX(0);
}

.reveal--right {
    transform: translateX(32px);
}

.reveal--right.is-visible {
    transform: translateX(0);
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .header-bg img,
    .header-line > *,
    .header-title > *,
    .btn-primary {
        animation: none !important;
    }
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding-inline: clamp(20px, 5vw, 80px);
}

.header {
    position: relative;
    isolation: isolate;
    min-height: 100vh;
    min-height: 100dvh;
    overflow: hidden;
}

.header-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.header-bg img {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center;
    transform: scale(1.03);
    animation: heroKenBurns 22s ease-in-out infinite alternate;
}

.header-line > * {
    animation: fadeDown 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.header-line .nav-toggle {
    animation-delay: 0s;
}

.header-line .header-brand {
    animation-delay: 0.08s;
}

.header-line .nav {
    animation-delay: 0.16s;
}

.header-line .btn-login {
    animation-delay: 0.24s;
}

.header-title > * {
    animation: fadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.header-subtitle {
    animation-delay: 0.35s !important;
}

.header-title h1 {
    animation-delay: 0.5s !important;
}

.header-description {
    animation-delay: 0.65s !important;
}

.header-title .btn-primary {
    animation:
        fadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.8s both,
        pulseGlow 3s ease-in-out 1.8s infinite;
}

.header-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.05) 40%, rgba(0, 0, 0, 0.25) 100%);
    pointer-events: none;
}

.header .container {
    position: relative;
    z-index: 2;
}

.header-line {
    padding-top: clamp(16px, 3vw, 30px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.header-brand {
    font-family: "Audiowide", sans-serif;
    color: #fff;
    text-decoration: none;
    font-size: clamp(16px, 2.2vw, 24px);
    letter-spacing: 0.06em;
    flex-shrink: 0;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
    transition: opacity 0.3s ease;
}

.header-brand:hover {
    opacity: 0.85;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    cursor: pointer;
    flex-shrink: 0;
}

.nav-toggle-bar {
    display: block;
    width: 20px;
    height: 2px;
    margin: 0 auto;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.header.nav-open .nav-toggle-bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.header.nav-open .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}

.header.nav-open .nav-toggle-bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    margin: 0;
}

.nav-item {
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    font-size: 16px;
    margin-right: clamp(24px, 4vw, 73px);
    white-space: nowrap;
    position: relative;
    transition: color 0.25s ease, opacity 0.25s ease;
}

.nav-item::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #e74c3c, rgba(255, 255, 255, 0.8));
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-item:hover {
    color: #fff;
    opacity: 0.92;
}

.nav-item:hover::after {
    transform: scaleX(1);
}

.nav-item:last-child {
    margin-right: 0;
}

.nav-item--memo {
    border: none;
    background: none;
    font-family: inherit;
    cursor: pointer;
    padding: 0;
}

.nav-item--memo:focus-visible {
    outline: 2px solid rgba(231, 76, 60, 0.9);
    outline-offset: 6px;
    border-radius: 10px;
}

.memo-modal-open {
    overflow: hidden;
}

.memo-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: memoFadeIn 0.2s ease;
}

@keyframes memoFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.memo-modal {
    width: min(920px, 100%);
    max-height: min(82vh, 820px);
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
    overflow: hidden;
    animation: fadeInScale 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.memo-modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    background: #f8f9fb;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.memo-modal-title {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
    color: #0d1117;
    line-height: 1.25;
}

.memo-modal-close {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    background: #ffffff;
    cursor: pointer;
    font-size: 24px;
    line-height: 1;
    color: rgba(0, 0, 0, 0.7);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    flex-shrink: 0;
}

.memo-modal-close:hover {
    transform: translateY(-1px);
    border-color: rgba(0, 0, 0, 0.18);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}

.memo-modal-close:active {
    transform: translateY(0);
    box-shadow: none;
}

.memo-modal-body {
    padding: 18px 20px 22px;
    overflow: auto;
    max-height: calc(min(82vh, 820px) - 78px);
    color: rgba(0, 0, 0, 0.78);
    line-height: 1.7;
    font-size: 15px;
}

.memo-modal-body h3 {
    margin: 18px 0 10px;
    color: #0d1117;
    font-size: 16px;
}

.memo-modal-body p {
    margin: 0 0 10px;
}

.memo-modal-body ul {
    margin: 0 0 14px;
    padding-left: 18px;
}

.memo-modal-body li {
    margin: 6px 0;
}

.btn-login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(16px);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
    min-width: 100px;
    height: clamp(42px, 6.5vw, 48px);
    padding: 0 18px;
    text-decoration: none;
    color: #fff;
    font-size: clamp(13px, 1.6vw, 15px);
    font-weight: 600;
    letter-spacing: 0.03em;
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    flex-shrink: 0;
}

.btn-login .btn-icon {
    width: clamp(18px, 2.5vw, 20px);
    height: clamp(18px, 2.5vw, 20px);
    padding: 0;
    flex-shrink: 0;
    background: none;
    border-radius: 0;
    box-sizing: border-box;
    object-fit: contain;
    opacity: 0.9;
}

.btn-login:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
}

.btn-login:active {
    transform: translateY(0);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.btn-login--logged-in {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(231, 76, 60, 0.45);
    box-shadow: 0 4px 20px rgba(231, 76, 60, 0.15);
}

.btn-login--logged-in:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(231, 76, 60, 0.65);
    box-shadow: 0 6px 24px rgba(231, 76, 60, 0.2);
}

.btn-login--logged-in .btn-icon {
    background: none;
    opacity: 1;
}

.header-content {
    display: flex;
    align-items: center;
    min-height: calc(100vh - 140px);
    min-height: calc(100dvh - 140px);
    padding-bottom: 40px;
}

.header-title h1 {
    color: #fff;
    font-size: clamp(32px, 6vw, 72px);
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 20px 0;
    text-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
}

.header-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: clamp(14px, 2vw, 16px);
    margin: 0 0 12px 0;
}

.header-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: clamp(16px, 2.2vw, 20px);
    max-width: min(550px, 100%);
    line-height: 1.6;
    margin: 0 0 clamp(24px, 4vw, 40px) 0;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 50px;
    background: #fff;
    color: #0d1117;
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.28);
    min-width: 190px;
    height: clamp(52px, 8vw, 60px);
    padding: 0 32px;
    text-decoration: none;
    font-size: clamp(15px, 2vw, 17px);
    font-weight: 700;
    letter-spacing: 0.02em;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-primary::after {
    content: "→";
    font-size: 18px;
    line-height: 1;
    transition: transform 0.25s ease;
}

.btn-primary:hover {
    background: #f4f4f4;
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
}

.btn-primary:hover::after {
    transform: translateX(5px);
}

.btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* ====== СЕКЦИЯ РЕГИОНОВ ====== */
.locations-section {
    padding: clamp(72px, 10vw, 110px) 0 clamp(88px, 12vw, 130px);
    background: #f4f5f7;
    position: relative;
    overflow: hidden;
}

.locations-section-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 50% at 10% 20%, rgba(231, 76, 60, 0.06) 0%, transparent 55%),
        radial-gradient(ellipse 60% 40% at 90% 80%, rgba(100, 140, 200, 0.08) 0%, transparent 50%),
        repeating-linear-gradient(
            -12deg,
            transparent,
            transparent 80px,
            rgba(0, 0, 0, 0.025) 80px,
            rgba(0, 0, 0, 0.025) 81px
        );
    pointer-events: none;
}

.locations-header {
    margin-bottom: clamp(40px, 6vw, 56px);
    position: relative;
    z-index: 1;
}

.locations-eyebrow {
    display: inline-block;
    margin-bottom: 20px;
    padding-left: 14px;
    border-left: 3px solid #e74c3c;
    color: rgba(0, 0, 0, 0.45);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.locations-header-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(24px, 5vw, 64px);
    align-items: end;
}

.locations-header-split .section-title {
    text-align: left;
    margin: 0;
    font-size: clamp(36px, 5.5vw, 56px);
    line-height: 1.05;
    color: #0d1117;
}

.locations-header-split .section-subtitle {
    text-align: left;
    margin: 0;
    max-width: none;
    margin-inline: 0;
    font-size: clamp(15px, 1.8vw, 17px);
    color: rgba(0, 0, 0, 0.5);
}

.locations-showcase {
    display: flex;
    gap: 10px;
    height: clamp(400px, 52vw, 540px);
    position: relative;
    z-index: 1;
}

.locations-card {
    position: relative;
    flex: 1;
    min-width: 0;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    transition: flex 0.65s cubic-bezier(0.22, 1, 0.36, 1),
                border-color 0.4s ease,
                box-shadow 0.4s ease,
                transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.locations-card.is-visible:hover {
    transform: translateY(-6px);
}

.locations-showcase:hover .locations-card {
    flex: 0.75;
}

.locations-showcase .locations-card:hover {
    flex: 3;
    border-color: rgba(231, 76, 60, 0.4);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18),
                0 0 0 1px rgba(231, 76, 60, 0.2);
}

.locations-image {
    position: absolute;
    inset: 0;
}

.locations-image img {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
                filter 0.5s ease;
}

.locations-card:hover .locations-image img {
    transform: scale(1.08);
    filter: brightness(1.05);
}

.locations-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(0, 0, 0, 0.55) 0%,
        rgba(0, 0, 0, 0.1) 45%,
        rgba(0, 0, 0, 0.88) 100%
    );
    transition: background 0.5s ease;
    z-index: 1;
}

.locations-card:hover .locations-overlay {
    background: linear-gradient(
        160deg,
        rgba(0, 0, 0, 0.35) 0%,
        rgba(0, 0, 0, 0.05) 50%,
        rgba(0, 0, 0, 0.92) 100%
    );
}

.locations-index {
    position: absolute;
    top: clamp(16px, 2.5vw, 24px);
    left: clamp(16px, 2.5vw, 24px);
    z-index: 3;
    font-family: "Audiowide", sans-serif;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1;
    color: rgba(255, 255, 255, 0.12);
    transition: color 0.4s ease, transform 0.4s ease;
    pointer-events: none;
}

.locations-card:hover .locations-index {
    color: rgba(231, 76, 60, 0.55);
    transform: scale(1.05);
}

.locations-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: clamp(20px, 3vw, 28px);
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.locations-badge {
    display: inline-flex;
    align-self: flex-start;
    padding: 5px 12px;
    border-radius: 20px;
    background: rgba(231, 76, 60, 0.2);
    border: 1px solid rgba(231, 76, 60, 0.35);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.35s ease 0.1s, transform 0.35s ease 0.1s;
}

.locations-card:hover .locations-badge {
    opacity: 1;
    transform: translateY(0);
}

.locations-title {
    color: #fff;
    font-size: clamp(15px, 2vw, 22px);
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: font-size 0.4s ease;
}

.locations-card:hover .locations-title {
    font-size: clamp(20px, 2.8vw, 28px);
    white-space: normal;
}

.locations-desc {
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    margin: 0;
    line-height: 1.55;
    max-width: 420px;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.4s ease 0.15s, max-height 0.5s ease 0.1s;
}

.locations-card:hover .locations-desc {
    opacity: 1;
    max-height: 80px;
}

.locations-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
    color: #e74c3c;
    font-size: 14px;
    font-weight: 700;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.35s ease 0.25s, transform 0.35s ease 0.25s;
}

.locations-card:hover .locations-cta {
    opacity: 1;
    transform: translateY(0);
}

.locations-arrow {
    display: inline-block;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.locations-card:hover .locations-arrow {
    transform: translateX(6px);
}

.section-title {
    color: #fff;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    margin: 0 0 14px 0;
    line-height: 1.2;
}

.section-subtitle {
    color: rgba(255, 255, 255, 0.55);
    font-size: clamp(15px, 2vw, 18px);
    margin: 0;
    max-width: min(480px, 100%);
    margin-inline: auto;
    line-height: 1.6;
    padding-inline: 8px;
}

.contacts-section .locations-header {
    text-align: center;
}

.contacts-section .section-title {
    text-align: center;
}

.contacts-section .section-subtitle {
    text-align: center;
    margin-inline: auto;
}

/* ====== СЕЗОН / АКЦЕНТ ====== */
.season-banner {
    position: relative;
    z-index: 2;
    margin-top: -1px;
    background: #eef1f5;
    border-top: 1px solid rgba(13, 17, 23, 0.06);
    border-bottom: 1px solid rgba(13, 17, 23, 0.1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.season-banner-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px 24px;
    padding: 18px 0;
}

.season-banner-season {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
    padding-left: 14px;
    border-left: 3px solid #e74c3c;
}

.season-banner-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 12px;
    background: #fff;
    color: #e74c3c;
    border: 1px solid rgba(231, 76, 60, 0.22);
    box-shadow: 0 2px 8px rgba(231, 76, 60, 0.12);
}

.season-banner-title {
    display: block;
    color: #0d1117;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
}

.season-banner-subtitle {
    display: block;
    margin-top: 3px;
    color: rgba(13, 17, 23, 0.68);
    font-size: 13px;
    line-height: 1.45;
}

.season-banner-popular {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 11px 18px;
    border-radius: 999px;
    border: 1px solid rgba(13, 17, 23, 0.12);
    background: #fff;
    color: #0d1117;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 2px 12px rgba(13, 17, 23, 0.08);
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.season-banner-popular svg {
    color: #e74c3c;
    flex-shrink: 0;
}

.season-banner-popular:hover {
    background: #fff;
    border-color: rgba(231, 76, 60, 0.45);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.16);
    transform: translateY(-1px);
}

.season-banner-badge {
    padding: 4px 9px;
    border-radius: 999px;
    background: #e74c3c;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    flex-shrink: 0;
}

.season-banner-popular-text {
    max-width: 220px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #0d1117;
}

/* ====== ПОЧЕМУ МЫ ====== */
.why-section {
    position: relative;
    padding: clamp(72px, 10vw, 100px) 0;
    background: #0a0e14;
    overflow: hidden;
}

.why-section-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 60% at 100% 0%, rgba(231, 76, 60, 0.1) 0%, transparent 55%),
        radial-gradient(ellipse 40% 50% at 0% 100%, rgba(100, 140, 200, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.why-header {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 640px;
    margin: 0 auto clamp(40px, 6vw, 56px);
}

.why-header .section-title,
.why-header .section-subtitle {
    text-align: center;
    margin-inline: auto;
}

.why-eyebrow {
    display: inline-block;
    margin-bottom: 16px;
    padding-left: 14px;
    border-left: 3px solid #e74c3c;
    color: rgba(255, 255, 255, 0.45);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.why-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(14px, 2vw, 20px);
}

.why-card {
    padding: clamp(24px, 3vw, 28px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.4s ease,
        background 0.4s ease;
}

.why-card:hover {
    transform: translateY(-5px);
    border-color: rgba(231, 76, 60, 0.35);
    background: rgba(255, 255, 255, 0.05);
}

.why-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 18px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.2) 0%, rgba(231, 76, 60, 0.06) 100%);
    color: #ff6b57;
}

.why-card h3 {
    margin: 0 0 10px;
    color: #fff;
    font-size: 17px;
    font-weight: 700;
}

.why-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.65;
}

/* ====== КАРТА МАРШРУТОВ ====== */
.map-section {
    position: relative;
    padding: clamp(72px, 10vw, 100px) 0;
    background: linear-gradient(180deg, #0a0e14 0%, #0d1117 100%);
    overflow: hidden;
}

.map-section-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 100%, rgba(231, 76, 60, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.map-header {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 560px;
    margin: 0 auto clamp(36px, 5vw, 48px);
}

.map-header .section-title,
.map-header .section-subtitle {
    text-align: center;
    margin-inline: auto;
}

.map-eyebrow {
    display: inline-block;
    margin-bottom: 16px;
    padding-left: 14px;
    border-left: 3px solid #e74c3c;
    color: rgba(255, 255, 255, 0.45);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.map-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: clamp(20px, 3vw, 28px);
    align-items: stretch;
}

.map-canvas {
    position: relative;
    min-height: 280px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
    overflow: hidden;
}

.map-svg {
    display: block;
    width: 100%;
    height: auto;
}

.map-pins {
    position: absolute;
    inset: 0;
}

.map-pin {
    position: absolute;
    transform: translate(-50%, -100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.map-pin-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #e74c3c;
    border: 3px solid #fff;
    box-shadow: 0 4px 16px rgba(231, 76, 60, 0.5);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.map-pin-label {
    padding: 4px 10px;
    border-radius: 8px;
    background: rgba(13, 17, 23, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.map-pin:hover,
.map-pin.is-active {
    transform: translate(-50%, -100%) scale(1.05);
    z-index: 2;
}

.map-pin:hover .map-pin-dot,
.map-pin.is-active .map-pin-dot {
    transform: scale(1.2);
    box-shadow: 0 6px 24px rgba(231, 76, 60, 0.65);
}

.map-pin:hover .map-pin-label,
.map-pin.is-active .map-pin-label {
    opacity: 1;
    transform: translateY(0);
}

.map-legend {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.map-legend-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 18px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    text-decoration: none;
    color: inherit;
    transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.map-legend-item:hover,
.map-legend-item.is-active {
    border-color: rgba(231, 76, 60, 0.4);
    background: rgba(255, 255, 255, 0.06);
    transform: translateX(4px);
}

.map-legend-name {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
}

.map-legend-meta {
    color: rgba(255, 255, 255, 0.45);
    font-size: 12px;
    margin-top: 2px;
}

.map-legend-arrow {
    flex-shrink: 0;
    color: #e74c3c;
    font-size: 18px;
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.map-legend-item:hover .map-legend-arrow,
.map-legend-item.is-active .map-legend-arrow {
    opacity: 1;
    transform: translateX(0);
}

.map-empty {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    text-align: center;
    padding: 24px;
}

/* ====== СЕКЦИЯ ОТЗЫВОВ ====== */
.reviews-section {
    padding: clamp(72px, 10vw, 110px) 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.reviews-section-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 60% at 100% 0%, rgba(231, 76, 60, 0.05) 0%, transparent 55%),
        radial-gradient(ellipse 40% 50% at 0% 100%, rgba(100, 140, 200, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.reviews-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: clamp(40px, 6vw, 56px);
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

.reviews-header-text .section-title {
    text-align: left;
    margin: 0;
    font-size: clamp(32px, 4.5vw, 48px);
    line-height: 1.1;
    color: #0d1117;
}

.reviews-eyebrow {
    display: inline-block;
    margin-bottom: 16px;
    padding-left: 14px;
    border-left: 3px solid #e74c3c;
    color: rgba(0, 0, 0, 0.45);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.reviews-rating-block {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    padding: 20px 28px;
    border-radius: 16px;
    background: #f4f5f7;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.reviews-rating-value {
    font-family: "Audiowide", sans-serif;
    font-size: clamp(36px, 5vw, 48px);
    color: #0d1117;
    line-height: 1;
}

.reviews-stars {
    color: #e74c3c;
    font-size: 18px;
    letter-spacing: 2px;
}

.reviews-rating-label {
    color: rgba(0, 0, 0, 0.45);
    font-size: 13px;
}

.reviews-layout {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: clamp(14px, 2vw, 20px);
    position: relative;
    z-index: 1;
    align-items: stretch;
}

.reviews-stack {
    display: flex;
    flex-direction: column;
    gap: clamp(14px, 2vw, 20px);
}

.review-card {
    position: relative;
    padding: clamp(28px, 4vw, 40px);
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #f8f9fb;
    overflow: hidden;
    transition:
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.review-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 0, 0, 0.12);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.review-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #e74c3c, rgba(231, 76, 60, 0.2));
    opacity: 0;
    transition: opacity 0.35s ease;
}

.review-card:hover::before {
    opacity: 1;
}

.review-card--featured {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100%;
    background: linear-gradient(145deg, rgba(231, 76, 60, 0.06) 0%, #f8f9fb 60%);
    border-color: rgba(231, 76, 60, 0.2);
}

.review-card--featured::before {
    opacity: 1;
}

.review-quote {
    display: block;
    font-family: Georgia, serif;
    font-size: clamp(64px, 8vw, 96px);
    line-height: 0.8;
    color: rgba(231, 76, 60, 0.15);
    margin-bottom: -16px;
    user-select: none;
}

.review-quote--sm {
    font-size: clamp(40px, 5vw, 56px);
    margin-bottom: -8px;
}

.review-text {
    color: rgba(0, 0, 0, 0.78);
    font-size: clamp(15px, 1.8vw, 17px);
    line-height: 1.75;
    margin: 0 0 24px 0;
    position: relative;
    z-index: 1;
}

.review-card--featured .review-text {
    font-size: clamp(17px, 2.2vw, 22px);
    line-height: 1.7;
}

.review-footer {
    margin-top: auto;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.review-avatar {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(231, 76, 60, 0.12);
    border: 1px solid rgba(231, 76, 60, 0.3);
    color: #e74c3c;
    font-weight: 700;
    font-size: 16px;
}

.review-author > div {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.review-name {
    color: #0d1117;
    font-weight: 700;
    font-size: 15px;
}

.review-region {
    color: rgba(0, 0, 0, 0.45);
    font-size: 13px;
}

.review-card--user {
    border-color: rgba(231, 76, 60, 0.2);
    animation: reviewFadeIn 0.5s ease;
}

.review-card--user::before {
    opacity: 1;
}

.review-user-rating {
    display: inline-flex;
    gap: 2px;
    margin-bottom: 8px;
    color: #e74c3c;
    font-size: 14px;
    letter-spacing: 1px;
}

@keyframes reviewFadeIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.review-form-wrapper {
    margin-top: clamp(40px, 6vw, 56px);
    position: relative;
    z-index: 1;
}

.review-form-card {
    max-width: 720px;
    margin: 0 auto;
    padding: clamp(28px, 4vw, 40px);
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #f8f9fb;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.review-form-title {
    margin: 0 0 8px 0;
    color: #0d1117;
    font-size: clamp(22px, 3vw, 26px);
    font-weight: 700;
}

.review-form-subtitle {
    margin: 0 0 24px 0;
    color: rgba(0, 0, 0, 0.5);
    font-size: 15px;
    line-height: 1.5;
}

.review-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.review-form-group {
    margin-bottom: 20px;
}

.review-form-group label {
    display: block;
    margin-bottom: 8px;
    color: rgba(0, 0, 0, 0.65);
    font-size: 14px;
    font-weight: 600;
}

.review-form-group input,
.review-form-group select,
.review-form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    background: #fff;
    color: #0d1117;
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;
}

.review-form-group input:focus,
.review-form-group select:focus,
.review-form-group textarea:focus {
    outline: none;
    border-color: #e74c3c;
    box-shadow: 0 0 0 4px rgba(231, 76, 60, 0.1);
}

.review-form-group textarea {
    resize: vertical;
    min-height: 110px;
}

.review-stars-input {
    display: flex;
    gap: 6px;
}

.review-star-btn {
    padding: 0;
    border: none;
    background: none;
    color: rgba(0, 0, 0, 0.15);
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    transition: color 0.15s ease, transform 0.15s ease;
}

.review-star-btn:hover,
.review-star-btn.active {
    color: #e74c3c;
    transform: scale(1.1);
}

.review-form-submit {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 12px;
    background: #e74c3c;
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.review-form-submit:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(231, 76, 60, 0.35);
}

.review-form-message {
    margin: 0 0 16px 0;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 14px;
}

.review-form-message--success {
    background: rgba(46, 204, 113, 0.12);
    color: #1e8449;
    border: 1px solid rgba(46, 204, 113, 0.3);
}

.review-form-message--error {
    background: rgba(231, 76, 60, 0.1);
    color: #c0392b;
    border: 1px solid rgba(231, 76, 60, 0.25);
}

/* ====== СЕКЦИЯ КОНТАКТОВ ====== */
.contacts-section {
    position: relative;
    padding: clamp(64px, 9vw, 96px) 0;
    background: #0d1117;
    overflow: hidden;
}

.contacts-section-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 80% at 50% 100%, rgba(231, 76, 60, 0.18) 0%, transparent 60%),
        linear-gradient(180deg, #0d1117 0%, #101620 100%);
    pointer-events: none;
}

.contacts-header {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 560px;
    margin: 0 auto clamp(36px, 5vw, 48px);
}

.contacts-eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    padding-left: 14px;
    border-left: 3px solid #e74c3c;
    color: rgba(255, 255, 255, 0.45);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.contacts-title {
    margin: 0 0 12px;
    font-family: "Audiowide", sans-serif;
    font-size: clamp(28px, 5vw, 42px);
    line-height: 1.15;
    color: #fff;
    letter-spacing: 0.02em;
}

.contacts-lead {
    margin: 0;
    color: rgba(255, 255, 255, 0.55);
    font-size: clamp(15px, 2vw, 17px);
    line-height: 1.6;
}

.contacts-actions {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    max-width: 720px;
    margin-inline: auto;
}

.contacts-action {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: clamp(22px, 3.5vw, 28px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    text-decoration: none;
    transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

a.contacts-action:hover {
    border-color: rgba(231, 76, 60, 0.4);
    background: rgba(255, 255, 255, 0.07);
    transform: translateY(-2px);
}

.contacts-action--phone {
    grid-column: 1 / -1;
    align-items: center;
    text-align: center;
    padding: clamp(28px, 4vw, 36px);
    border-color: rgba(231, 76, 60, 0.25);
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.12) 0%, rgba(255, 255, 255, 0.04) 100%);
}

.contacts-action--phone:hover {
    border-color: rgba(231, 76, 60, 0.55);
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.18) 0%, rgba(255, 255, 255, 0.06) 100%);
}

.contacts-action--phone .contacts-action-value {
    font-family: "Audiowide", sans-serif;
    font-size: clamp(22px, 4.5vw, 32px);
    letter-spacing: 0.03em;
}

.contacts-action--social {
    grid-column: 1 / -1;
    cursor: default;
}

.contacts-action-label {
    color: rgba(255, 255, 255, 0.42);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.contacts-action-value {
    color: #fff;
    font-size: clamp(15px, 2vw, 17px);
    font-weight: 600;
    word-break: break-word;
}

.contacts-social-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.contacts-social-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.88);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: border-color 0.25s ease, background 0.25s ease;
}

.contacts-social-btn:hover {
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.1);
}

.contacts-social-btn img {
    display: block;
    object-fit: contain;
}

.site-footer {
    position: relative;
    padding: clamp(48px, 8vw, 72px) 0 0;
    background: #0a0e14;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.site-footer-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 0% 100%, rgba(231, 76, 60, 0.12) 0%, transparent 55%),
        radial-gradient(ellipse 50% 60% at 100% 0%, rgba(100, 140, 200, 0.08) 0%, transparent 50%),
        repeating-linear-gradient(
            -12deg,
            transparent,
            transparent 60px,
            rgba(255, 255, 255, 0.015) 60px,
            rgba(255, 255, 255, 0.015) 61px
        );
    pointer-events: none;
}

.site-footer .container {
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: clamp(28px, 5vw, 48px);
    padding-bottom: clamp(32px, 5vw, 48px);
}

.footer-brand {
    display: inline-block;
    margin-bottom: 14px;
    font-family: "Audiowide", sans-serif;
    font-size: clamp(16px, 2vw, 20px);
    letter-spacing: 0.06em;
    color: #fff;
    text-decoration: none;
    transition: opacity 0.25s ease;
}

.footer-brand:hover {
    opacity: 0.85;
}

.footer-tagline {
    margin: 0;
    max-width: 320px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    line-height: 1.65;
}

.footer-heading {
    margin: 0 0 16px;
    padding-left: 12px;
    border-left: 3px solid #e74c3c;
    color: rgba(255, 255, 255, 0.85);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav a,
.footer-legal a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.25s ease, transform 0.25s ease;
}

.footer-nav a:hover,
.footer-legal a:hover {
    color: #fff;
    transform: translateX(4px);
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-link {
    display: flex;
    flex-direction: column;
    gap: 3px;
    text-decoration: none;
    transition: transform 0.25s ease;
}

.footer-contact-link:hover {
    transform: translateX(4px);
}

.footer-contact-label {
    color: rgba(255, 255, 255, 0.4);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-contact-value {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.25s ease, background 0.25s ease;
}

.footer-social-link:hover {
    transform: translateY(-3px);
    border-color: rgba(231, 76, 60, 0.4);
    background: rgba(231, 76, 60, 0.1);
    color: #fff;
}

.footer-social-icon {
    width: 22px;
    height: 22px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    padding: 20px 0 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer p {
    margin: 0;
    color: rgba(255, 255, 255, 0.35);
    font-size: 13px;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-legal a:hover {
    transform: none;
}

/* ====== АДАПТИВ ====== */

/* Планшет */
@media (max-width: 1200px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .locations-showcase {
        height: clamp(360px, 50vw, 460px);
    }

    .contacts-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Планшет вертикально — бургер-меню */
@media (max-width: 992px) {
    .header .container {
        z-index: auto;
    }

    .nav-toggle {
        display: flex;
        flex-shrink: 0;
    }

    .header-brand {
        flex: 1;
        text-align: center;
        font-size: clamp(13px, 3.5vw, 18px);
        letter-spacing: 0.04em;
    }

    .btn-login {
        min-width: auto;
        padding: 0 14px;
    }

    .header-line {
        position: relative;
        z-index: 101;
    }

    .header-line .nav {
        animation: none;
    }

    .nav {
        position: fixed;
        top: 0;
        right: 0;
        width: min(300px, 85vw);
        height: 100vh;
        height: 100dvh;
        margin: 0;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 8px;
        padding: 100px 32px 32px;
        background: rgba(13, 17, 23, 0.97);
        backdrop-filter: blur(20px);
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        transform: translateX(100%);
        visibility: hidden;
        pointer-events: none;
        transition: transform 0.35s ease, visibility 0.35s ease;
        z-index: 1002;
    }

    .header.nav-open .nav {
        transform: translateX(0);
        visibility: visible;
        pointer-events: auto;
    }

    .header.nav-open .header-line {
        z-index: 1001;
    }

    .header.nav-open::before {
        content: "";
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.45);
        z-index: 1000;
        pointer-events: auto;
        animation: navOverlayIn 0.3s ease;
    }

    @keyframes navOverlayIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }

    .nav-item {
        margin-right: 0;
        font-size: 20px;
        font-weight: 600;
        padding: 12px 0;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .nav-item--memo {
        width: 100%;
        text-align: left;
    }

    .header-content {
        min-height: calc(100vh - 120px);
        min-height: calc(100dvh - 120px);
        align-items: flex-end;
        padding-bottom: 48px;
    }
}

@media (max-width: 900px) {
    .reviews-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .reviews-rating-block {
        align-items: flex-start;
        width: 100%;
    }

    .reviews-layout {
        grid-template-columns: 1fr;
    }

    .locations-header-split {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .locations-showcase {
        flex-direction: column;
        height: auto;
        gap: 12px;
    }

    .locations-showcase:hover .locations-card,
    .locations-showcase .locations-card:hover {
        flex: none;
    }

    .locations-card {
        min-height: 260px;
    }

    .locations-badge,
    .locations-desc,
    .locations-cta {
        opacity: 1;
        transform: none;
        max-height: none;
    }

    .locations-index {
        color: rgba(231, 76, 60, 0.4);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

    .footer-brand-col {
        grid-column: 1 / -1;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .map-layout {
        grid-template-columns: 1fr;
    }

    .map-canvas {
        min-height: 220px;
    }

    .season-banner-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .season-banner-popular {
        width: 100%;
        justify-content: center;
    }

    .season-banner-popular-text {
        max-width: none;
        flex: 1;
    }
}

/* Мобильный */
@media (max-width: 768px) {
    .review-form-row {
        grid-template-columns: 1fr;
    }

    .contacts-grid {
        grid-template-columns: 1fr;
    }

    .contacts-actions {
        grid-template-columns: 1fr;
    }

    .contacts-social-row {
        flex-direction: column;
    }

    .contacts-social-btn {
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand-col {
        grid-column: auto;
    }

    .footer-tagline {
        margin-inline: auto;
    }

    .footer-heading {
        padding-left: 0;
        border-left: none;
        border-top: 2px solid #e74c3c;
        padding-top: 12px;
    }

    .footer-nav,
    .footer-contacts,
    .footer-social {
        align-items: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }

    .btn-login .btn-login-text {
        display: none;
    }

    .btn-login {
        width: 42px;
        min-width: 42px;
        height: 42px;
        padding: 0;
        border-radius: 50%;
    }

    .btn-login .btn-icon {
        width: 20px;
        height: 20px;
    }
}

/* Маленький экран */
@media (max-width: 480px) {
    .header-title h1 br {
        display: none;
    }
}

/* Устройства без hover (тач) */
@media (hover: none) {
    .locations-showcase:hover .locations-card,
    .locations-showcase .locations-card:hover {
        flex: none;
    }

    .locations-card:hover .locations-image img {
        transform: none;
        filter: none;
    }

    .locations-badge,
    .locations-desc,
    .locations-cta {
        opacity: 1;
        transform: none;
        max-height: none;
    }

    .locations-index {
        color: rgba(231, 76, 60, 0.4);
    }
}
