/* ============================================
   HEADER.CSS — VILIYA PARK PREMIUM v6.0
   Хедер + BURGER-MENU (12 частей)
============================================ */

/* ============================================
   1. БАЗОВЫЙ ХЕДЕР
============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 18px 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: transparent;
    border-bottom: 1px solid transparent;
}
.site-header.scrolled {
    background: rgba(21, 23, 25, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

/* ============================================
   2. ЛЕВАЯ ЧАСТЬ (БУРГЕР + МЕНЮ ПК)
============================================ */
.header-left {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 2;
}

/* --- БУРГЕР (ВИДЕН ВСЕГДА) --- */
.burger-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.12);
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
    flex-shrink: 0;
}
.burger-toggle:hover {
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.05);
}
.burger-line {
    width: 24px;
    height: 2px;
    background: #FFFFFF;
    transition: all 0.3s ease;
    border-radius: 2px;
}
.burger-toggle.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.burger-toggle.active .burger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.burger-toggle.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* --- НАВИГАЦИЯ (ПК) --- */
.header-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 18px;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
    border-radius: 4px;
    white-space: nowrap;
    cursor: pointer;
}
.nav-link:hover {
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.06);
}

.dropdown-arrow {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    transition: transform 0.3s ease;
}
.nav-item--mega:hover .dropdown-arrow,
.nav-item--dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* ============================================
   3. МЕГА-МЕНЮ С КАРТИНКОЙ
============================================ */
.mega-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 800px;
    max-width: 90vw;
    background: #1e1c19;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}
.nav-item--mega:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}

.mega-menu-inner {
    padding: 10px;
}

.mega-menu-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.mega-menu-left {
    padding: 20px;
}

.mega-menu-title {
    font-family: var(--font-serif);
    font-size: 16px;
    font-weight: 500;
    color: var(--amber);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.mega-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mega-menu-link {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 16px;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}
.mega-menu-link:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.06);
    transform: translateX(4px);
}
.mega-menu-link svg {
    width: 22px;
    height: 22px;
    stroke: var(--amber);
    stroke-width: 1.5;
    fill: none;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.3s ease;
}
.mega-menu-link:hover svg {
    stroke: #d4b088;
    transform: scale(1.1);
}
.mega-menu-link div {
    display: flex;
    flex-direction: column;
}
.mega-menu-link-title {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 500;
    color: #FFFFFF;
    margin-bottom: 3px;
}
.mega-menu-link-desc {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.45);
}

.mega-menu-right {
    position: relative;
}

.mega-menu-image {
    position: relative;
    height: 100%;
    min-height: 320px;
    border-radius: 8px;
    overflow: hidden;
}
.mega-menu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.nav-item--mega:hover .mega-menu-image img {
    transform: scale(1.05);
}
.mega-menu-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 24px 24px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.mega-menu-image-title {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 500;
    color: #FFFFFF;
}
.mega-menu-image-subtitle {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}
.mega-menu-image-btn {
    display: inline-block;
    padding: 8px 20px;
    background: var(--amber);
    color: #FFFFFF;
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    align-self: flex-start;
}
.mega-menu-image-btn:hover {
    background: #d4b088;
    transform: translateY(-2px);
}

/* ============================================
   4. ВЫПАДАЮЩЕЕ МЕНЮ (ПРОСТОЕ)
============================================ */
.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 220px;
    background: #1e1c19;
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 8px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}
.nav-item--dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}

.dropdown-link {
    display: block;
    padding: 12px 24px;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.2s ease;
    position: relative;
}
.dropdown-link:hover {
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.04);
    padding-left: 30px;
}
.dropdown-link::before {
    content: '';
    position: absolute;
    left: 18px;
    top: 50%;
    width: 0;
    height: 1px;
    background: var(--amber);
    transition: all 0.3s ease;
    transform: translateY(-50%);
}
.dropdown-link:hover::before {
    width: 8px;
}

/* ============================================
   5. ЦЕНТР (ЛОГОТИП) — СТРОГО ПО ЦЕНТРУ
============================================ */
.header-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.logo-link {
    display: block;
    text-decoration: none;
    line-height: 0;
}

.logo-image {
    display: block;
    width: auto;
    height: 50px;
    transition: height 0.4s ease;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
}

.site-header.scrolled .logo-image {
    height: 40px;
}

/* ============================================
   6. ПРАВАЯ ЧАСТЬ (ЯЗЫКИ + КНОПКА)
============================================ */
.header-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    z-index: 2;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* --- ЯЗЫКИ --- */
.header-lang {
    position: relative;
}
.lang-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 12px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
}
.lang-toggle:hover {
    border-color: rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
}
.lang-arrow {
    width: 12px;
    height: 12px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    transition: transform 0.3s ease;
}
.header-lang:hover .lang-arrow {
    transform: rotate(180deg);
}
.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 140px;
    background: #1e1c19;
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 6px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.3s ease;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.header-lang:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.lang-link {
    display: block;
    padding: 8px 20px;
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.2s ease;
}
.lang-link:hover {
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.04);
}
.lang-link.active {
    color: var(--amber);
}

/* --- КНОПКА --- */
.header-btn {
    padding: 10px 24px;
    background: var(--amber);
    color: #FFFFFF;
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}
.header-btn:hover {
    background: #d4b088;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(196, 154, 108, 0.3);
}
/* ============================================
   BURGER-OVERLAY — ПОЛНОЭКРАННОЕ МЕНЮ (ПК)
   НА МОБИЛКЕ — ВЫЕЗЖАЕТ СПРАВА
============================================ */

.burger-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 999;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    align-items: center;
    justify-content: center;
}
.burger-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.burger-overlay-container {
    width: 100%;
    max-width: 1400px;
    height: 100vh;
    padding: 100px 60px 40px;
    display: flex;
    flex-direction: column;
}

.burger-overlay-inner {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* --- КНОПКА ЗАКРЫТИЯ --- */
.burger-overlay-top {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 40px;
}
.burger-overlay-close {
    display: flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 12px 24px;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 400;
}
.burger-overlay-close:hover {
    border-color: rgba(255, 255, 255, 0.25);
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.05);
}
.burger-overlay-close svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

/* --- ОСНОВНОЙ КОНТЕНТ: ДВЕ КОЛОНКИ --- */
.burger-overlay-content {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    overflow-y: auto;
    padding-bottom: 20px;
}

/* --- ЛЕВАЯ КОЛОНКА --- */
.burger-overlay-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.burger-overlay-logo-image {
    height: 55px;
    width: auto;
}

.burger-overlay-contacts-top {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.burger-overlay-contact-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
}
.burger-overlay-contact-row svg {
    width: 16px;
    height: 16px;
    stroke: rgba(255, 255, 255, 0.3);
    fill: none;
    stroke-width: 1.5;
    flex-shrink: 0;
}
.burger-overlay-contact-row a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}
.burger-overlay-contact-row a:hover {
    color: var(--amber);
}

/* --- НАВИГАЦИЯ --- */
.burger-overlay-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.burger-overlay-nav-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.burger-overlay-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px 0;
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}
.burger-overlay-nav-link:hover {
    color: #FFFFFF;
    padding-left: 12px;
}
.burger-overlay-nav-link svg {
    width: 20px;
    height: 20px;
    stroke: rgba(255, 255, 255, 0.3);
    fill: none;
    stroke-width: 2;
    transition: transform 0.3s ease;
}
.burger-overlay-nav-link.active svg {
    transform: rotate(180deg);
}

.burger-overlay-dropdown {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding-left: 16px;
}
.burger-overlay-dropdown.open {
    max-height: 300px;
}
.burger-overlay-dropdown-link {
    display: block;
    padding: 10px 0;
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: all 0.2s ease;
}
.burger-overlay-dropdown-link:hover {
    color: #FFFFFF;
    padding-left: 8px;
}

/* --- ПОСТОЯННЫЕ ССЫЛКИ --- */
.burger-overlay-links {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}
.burger-overlay-link {
    display: block;
    padding: 8px 0;
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.2s ease;
}
.burger-overlay-link:hover {
    color: #FFFFFF;
    padding-left: 8px;
}

/* --- ПРАВАЯ КОЛОНКА --- */
.burger-overlay-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.burger-overlay-picture {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 16/9;
}
.burger-overlay-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.burger-overlay.active .burger-overlay-picture img {
    transform: scale(1.05);
}
.burger-overlay-picture-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 28px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
}
.burger-overlay-picture-label {
    display: block;
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 500;
    color: #FFFFFF;
}
.burger-overlay-picture-desc {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
}

.burger-overlay-btn {
    display: block;
    padding: 16px 32px;
    background: var(--amber);
    color: #FFFFFF;
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    text-align: center;
    border-radius: 4px;
    transition: all 0.3s ease;
}
.burger-overlay-btn:hover {
    background: #d4b088;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(196, 154, 108, 0.3);
}

/* --- ЯЗЫКИ --- */
.burger-overlay-lang {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.burger-overlay-lang-label {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.burger-overlay-lang-buttons {
    display: flex;
    gap: 8px;
}
.burger-overlay-lang-btn {
    padding: 8px 18px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.5);
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
}
.burger-overlay-lang-btn:hover {
    border-color: rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
}
.burger-overlay-lang-btn.active {
    background: var(--amber);
    border-color: var(--amber);
    color: #FFFFFF;
}

/* --- КОНТАКТЫ --- */
.burger-overlay-contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.burger-overlay-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.burger-overlay-contact-item svg {
    width: 18px;
    height: 18px;
    stroke: rgba(255, 255, 255, 0.3);
    fill: none;
    stroke-width: 1.5;
    flex-shrink: 0;
    margin-top: 2px;
}
.burger-overlay-contact-label {
    display: block;
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}
.burger-overlay-contact-value {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}
a.burger-overlay-contact-value:hover {
    color: var(--amber);
}

/* --- СОЦСЕТИ --- */
.burger-overlay-social {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.burger-overlay-social-label {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.burger-overlay-social-links {
    display: flex;
    gap: 12px;
}
.burger-overlay-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    border-radius: 4px;
}
.burger-overlay-social-link:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.05);
}
.burger-overlay-social-link svg {
    width: 18px;
    height: 18px;
    stroke: rgba(255, 255, 255, 0.5);
    fill: none;
    stroke-width: 1.5;
}
.burger-overlay-social-link:hover svg {
    stroke: var(--amber);
}

/* --- КОПИРАЙТ --- */
.burger-overlay-copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.25);
}
.burger-overlay-copyright-link {
    color: rgba(255, 255, 255, 0.25);
    text-decoration: none;
    transition: color 0.2s;
}
.burger-overlay-copyright-link:hover {
    color: var(--amber);
}

/* --- АНИМАЦИИ ПОЯВЛЕНИЯ --- */
.burger-overlay-content > * {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.burger-overlay.active .burger-overlay-content > * {
    opacity: 1;
    transform: translateY(0);
}
.burger-overlay-left {
    transition-delay: 0.1s;
}
.burger-overlay-right {
    transition-delay: 0.2s;
}

/* ============================================
   АДАПТИВ: НА МОБИЛКЕ ВЫЕЗЖАЕТ СПРАВА
============================================ */
@media (max-width: 1100px) {
    .burger-overlay {
        align-items: stretch;
        justify-content: flex-end;
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
    }
    
    .burger-overlay-container {
        max-width: 480px;
        height: 100vh;
        padding: 0;
        background: #151719;
        transform: translateX(100%);
        transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    .burger-overlay.active .burger-overlay-container {
        transform: translateX(0);
    }
    
    .burger-overlay-inner {
        padding: 24px;
        overflow-y: auto;
    }
    
    .burger-overlay-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .burger-overlay-top {
        margin-bottom: 24px;
    }
    
    .burger-overlay-nav-link {
        font-size: 20px;
        padding: 14px 0;
    }
    
    .burger-overlay-right {
        gap: 20px;
    }
    
    .burger-overlay-content > * {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

@media (max-width: 768px) {
    .burger-overlay-container {
        max-width: 100%;
    }
    
    .burger-overlay-picture {
        aspect-ratio: 16/7;
    }
}

@media (max-width: 480px) {
    .burger-overlay-inner {
        padding: 16px;
    }
    
    .burger-overlay-nav-link {
        font-size: 18px;
    }
}
/* ============================================
   8. АДАПТИВ
============================================ */
@media (max-width: 1100px) {
    .header-nav {
        display: none;
    }
    .header-lang {
        display: none;
    }
}
@media (max-width: 768px) {
    .site-header {
        padding: 14px 0;
    }
    .logo-image {
        height: 40px;
    }
    .site-header.scrolled .logo-image {
        height: 34px;
    }
    .header-btn {
        display: none;
    }
    
    /* Бургер-меню на полную ширину */
    .burger-menu {
        max-width: 100%;
    }
    .burger-inner {
        padding: 20px 24px 30px;
        gap: 20px;
    }
    .burger-logo-image {
        height: 45px;
    }
    .burger-nav-link {
        font-size: 18px;
        padding: 12px 0;
    }
    .burger-picture {
        aspect-ratio: 16/9;
    }
    .burger-copyright {
        flex-direction: column;
        align-items: flex-start;
        font-size: 10px;
    }
}
@media (max-width: 480px) {
    .site-header {
        padding: 10px 0;
    }
    .logo-image {
        height: 36px;
    }
    .site-header.scrolled .logo-image {
        height: 30px;
    }
    
    .burger-inner {
        padding: 16px 16px 24px;
        gap: 16px;
    }
    .burger-logo-image {
        height: 40px;
    }
    .burger-nav-link {
        font-size: 16px;
        padding: 10px 0;
    }
    .burger-picture {
        aspect-ratio: 16/10;
    }
    .burger-social-links {
        gap: 8px;
    }
    .burger-social-link {
        width: 36px;
        height: 36px;
    }
    .burger-social-link svg {
        width: 16px;
        height: 16px;
    }
}