/* --- ЦВЕТОВАЯ ПАЛИТРА И ПЕРЕМЕННЫЕ --- */
        :root {
            --bg-dark-primary: #101010;
            --bg-dark-secondary: #161616;
            --bg-dark-tertiary: #1C1C1C;
            --bg-light: #F5F0E8;
            --accent-gold: #C9A45C;
            --accent-gold-hover: #D6B56D;
            --accent-bronze: #B8893A;
            --accent-burgundy: #5A1F24;
            --accent-burgundy-hover: #6E252B;
            --accent-burgundy-deep: #2A070B;
            --accent-burgundy-rich: #7A2630;
            --accent-burgundy-muted: #3A1116;
            --burgundy-glow: rgba(122, 38, 48, 0.28);
            --text-light-main: #F7F3EA;
            --text-light-muted: #B8B2A7;
            --text-dark-main: #1A1A1A;
            --text-dark-muted: #55514A;
            --font-title: 'Cormorant Garamond', serif;
            --font-body: 'Manrope', sans-serif;
            --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
        }

        /* --- БАЗОВЫЕ СТИЛИ СБРОСА --- */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-body);
            background-color: var(--bg-dark-primary);
            color: var(--text-light-main);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: var(--transition);
        }

        ul {
            list-style: none;
        }

        button, .btn {
            font-family: var(--font-body);
            cursor: pointer;
            border: none;
            background: none;
            transition: var(--transition);
        }

        /* --- ГЛОБАЛЬНЫЕ КОМПОНЕНТЫ И СЕТКА --- */
        .container {
            width: 100%;
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 24px;
        }

        section {
            padding: 120px 0;
            position: relative;
        }

        .section-title {
            font-family: var(--font-title);
            font-size: clamp(2.5rem, 4vw, 4rem);
            font-weight: 600;
            line-height: 1.1;
            margin-bottom: 40px;
            letter-spacing: -0.02em;
        }

        .light-section .section-title {
            color: var(--text-dark-main);
        }

        /* Кнопки премиум-формата */
        .btn-gold {
            background-color: var(--accent-gold);
            color: #000;
            padding: 16px 36px;
            font-size: 0.9rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            display: inline-block;
            border: 1px solid var(--accent-gold);
        }

        .btn-gold:hover {
            background-color: var(--accent-gold-hover);
            border-color: var(--accent-gold-hover);
            box-shadow: 0 0 25px rgba(201, 164, 92, 0.3);
        }

        .btn-outline {
            border: 1px solid rgba(247, 243, 234, 0.3);
            color: var(--text-light-main);
            padding: 16px 36px;
            font-size: 0.9rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            display: inline-block;
        }

        .btn-outline:hover {
            border-color: var(--text-light-main);
            background: rgba(247, 243, 234, 0.05);
        }

        .btn-dark-outline {
            border: 1px solid rgba(26, 26, 26, 0.3);
            color: var(--text-dark-main);
            padding: 16px 36px;
            font-size: 0.9rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            display: inline-block;
        }

        .btn-dark-outline:hover {
            border-color: var(--text-dark-main);
            background: rgba(26, 26, 26, 0.05);
        }

        /* Плейсхолдеры изображений высокого уровня */
        .media-placeholder {
            background: linear-gradient(135deg, #1C1C1C 0%, #262626 100%);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .media-placeholder::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(201,164,92,0.05) 0%, transparent 70%);
            transform: rotate(30deg);
        }

        /* --- 1. HEADER / ШАПКА --- */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(16, 16, 16, 0.85);
            backdrop-filter: blur(15px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            transition: var(--transition);
        }

        .header-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 20px 24px;
            max-width: 1600px;
            margin: 0 auto;
        }
        /* --- ОРГАНИЗАТОРЫ: ЛОГОТИПЫ В СТИЛЕ САЙТА --- */
        .organizers-section {
            background:
                radial-gradient(circle at 88% 10%, rgba(122, 38, 48, 0.20), transparent 34%),
                radial-gradient(circle at 10% 88%, rgba(201, 164, 92, 0.07), transparent 34%),
                var(--bg-dark-secondary);
            border-top: 1px solid rgba(201, 164, 92, 0.08);
            border-bottom: 1px solid rgba(122, 38, 48, 0.18);
        }

        .organizers-lead {
            max-width: 760px;
            margin-top: -12px;
            color: var(--text-light-muted);
            font-size: 1.02rem;
            font-weight: 300;
            line-height: 1.75;
        }

        .organizers-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 26px;
            margin-top: 44px;
        }

        .organizer-card {
            position: relative;
            min-width: 0;
            min-height: 230px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 42px 38px;
            background:
                linear-gradient(145deg, rgba(16, 16, 16, 0.82), rgba(58, 17, 22, 0.48));
            border: 1px solid rgba(201, 164, 92, 0.12);
            box-shadow: 0 24px 70px rgba(0, 0, 0, 0.20);
            overflow: hidden;
            transition: var(--transition);
        }

        .organizer-card::before {
            content: '';
            position: absolute;
            inset: 1px;
            border: 1px solid rgba(255, 255, 255, 0.035);
            pointer-events: none;
        }

        .organizer-card::after {
            content: '';
            position: absolute;
            left: 24px;
            right: 24px;
            bottom: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, rgba(201, 164, 92, 0.70), transparent);
            opacity: 0.45;
            transition: var(--transition);
        }

        .organizer-card:hover {
            transform: translateY(-4px);
            border-color: rgba(201, 164, 92, 0.28);
            background:
                linear-gradient(145deg, rgba(20, 20, 20, 0.92), rgba(90, 31, 36, 0.56));
            box-shadow: 0 30px 80px rgba(42, 7, 11, 0.30);
        }

        .organizer-card:hover::after {
            opacity: 0.95;
        }

        .organizer-image {
            position: relative;
            z-index: 1;
            width: 100%;
            height: 150px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0;
            overflow: visible;
            background: transparent;
            border: none;
        }

        .organizer-image img {
            width: auto;
            height: auto;
            max-width: 100%;
            max-height: 145px;
            display: block;
            object-fit: contain;
            border: none;
            filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.30));
            transition: transform 0.35s ease, opacity 0.35s ease, filter 0.35s ease;
        }

        .organizer-card:hover .organizer-image img {
            transform: scale(1.045);
            opacity: 0.98;
            filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.38));
        }

        .organizer-image.is-empty {
            min-height: 150px;
        }

        .organizer-logo-placeholder {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            min-height: 150px;
            padding: 20px 22px;
            border: 1px dashed rgba(201, 164, 92, 0.30);
            color: rgba(247, 243, 234, 0.62);
            font-size: 0.72rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.14em;
            text-align: center;
            line-height: 1.45;
            background: rgba(255, 255, 255, 0.025);
        }

        @media (max-width: 1200px) {
            .organizers-grid {
                grid-template-columns: repeat(3, minmax(0, 1fr));
                gap: 18px;
            }

            .organizer-card {
                min-height: 200px;
                padding: 34px 28px;
            }

            .organizer-image {
                height: 130px;
            }

            .organizer-image img {
                max-height: 124px;
            }
        }

        @media (max-width: 768px) {
            .organizers-lead {
                font-size: 0.95rem;
                line-height: 1.68;
            }

            .organizers-grid {
                grid-template-columns: 1fr;
                gap: 16px;
                margin-top: 30px;
            }

            .organizer-card {
                min-height: 170px;
                padding: 28px 24px;
            }

            .organizer-image {
                height: 116px;
            }

            .organizer-image img {
                max-height: 110px;
            }
        }

        @media (max-width: 430px) {
            .organizers-grid {
                grid-template-columns: 1fr;
            }

            .organizer-card {
                min-height: 150px;
            }
        }

        .logo {
            display: flex;
            flex-direction: column;
        }

        .logo-top {
            font-size: 0.65rem;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: var(--text-light-muted);
        }

        .logo-main {
            font-family: var(--font-title);
            font-size: 1.35rem;
            font-weight: 600;
            letter-spacing: 0.02em;
            color: var(--accent-gold);
        }

        .nav-menu {
            display: flex;
            gap: 16px;
            align-items: center;
        }

        .nav-link {
            font-size: 0.74rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: var(--text-light-muted);
        }

        .nav-link:hover, .nav-link.active {
            color: var(--text-light-main);
        }

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

        .lang-switch {
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.05em;
            color: var(--text-light-muted);
        }

        .lang-item.active {
            color: var(--accent-gold);
        }

        .btn-header {
            padding: 10px 20px;
            font-size: 0.75rem;
            letter-spacing: 0.08em;
        }

        .burger {
            display: none;
            flex-direction: column;
            gap: 6px;
            width: 28px;
            z-index: 1001;
        }

        .burger span {
            width: 100%;
            height: 2px;
            background-color: var(--text-light-main);
            transition: var(--transition);
        }

        /* --- 2. HERO SECTION / ПЕРВЫЙ ЭКРАН --- */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding-top: 100px;
            background: radial-gradient(circle at 70% 30%, rgba(90, 31, 36, 0.15) 0%, transparent 60%),
                        radial-gradient(circle at 15% 80%, rgba(201, 164, 92, 0.08) 0%, transparent 50%),
                        #101010;
        }

        .hero-content {
            max-width: 850px;
        }

        .hero-location {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            color: var(--accent-gold);
            margin-bottom: 16px;
            font-weight: 600;
        }

        .hero-title {
            font-family: var(--font-title);
            font-size: clamp(3rem, 6vw, 5.5rem);
            font-weight: 700;
            line-height: 1.05;
            margin-bottom: 32px;
            letter-spacing: -0.01em;
        }

        .hero-description {
            font-size: 1.15rem;
            color: var(--text-light-muted);
            margin-bottom: 40px;
            max-width: 700px;
            font-weight: 300;
        }

        .hero-description strong {
            color: var(--text-light-main);
            font-weight: 500;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            margin-bottom: 40px;
        }

        .hero-deadline {
            font-size: 0.85rem;
            color: var(--text-light-muted);
            display: flex;
            align-items: center;
            gap: 8px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .hero-deadline::before {
            content: '';
            display: inline-block;
            width: 6px;
            height: 6px;
            background-color: var(--accent-gold);
            border-radius: 50%;
        }

        /* --- 3. О ФЕСТИВАЛЕ --- */
        .about {
            background-color: var(--bg-dark-secondary);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .about-text p {
            font-size: 1.1rem;
            color: var(--text-light-muted);
            margin-bottom: 24px;
            font-weight: 300;
        }

        .about-text p:first-of-type {
            font-size: 1.3rem;
            color: var(--text-light-main);
            line-height: 1.5;
            font-family: var(--font-title);
        }

        .about-image {
            height: 500px;
            border-left: 2px solid var(--accent-gold);
        }

        /* --- 4. ЦИФРЫ --- */
        .stats {
            background-color: var(--bg-dark-primary);
            border-bottom: 1px solid rgba(255, 255, 255, 0.03);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
        }

        .stats-item {
            background: var(--bg-dark-tertiary);
            padding: 40px;
            border: 1px solid rgba(255, 255, 255, 0.02);
            transition: var(--transition);
        }

        .stats-item:hover {
            transform: translateY(-5px);
            border-color: rgba(201, 164, 92, 0.2);
        }

        .stats-number {
            font-family: var(--font-title);
            font-size: 4rem;
            font-weight: 700;
            color: var(--accent-gold);
            line-height: 1;
            margin-bottom: 16px;
        }

        .stats-title {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .stats-desc {
            font-size: 0.9rem;
            color: var(--text-light-muted);
            font-weight: 300;
        }

        .stats-item.large {
            grid-column: span 2;
            background: linear-gradient(135deg, var(--bg-dark-tertiary) 0%, var(--accent-burgundy) 300%);
        }

        /* --- 5. ДЛЯ КОГО --- */
        .audience {
            background-color: var(--bg-dark-secondary);
        }

        .audience-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .audience-card {
            background: var(--bg-dark-primary);
            padding: 48px 40px;
            border-top: 3px solid rgba(201, 164, 92, 0.1);
            transition: var(--transition);
        }

        .audience-card:hover {
            border-top-color: var(--accent-gold);
            background: #131313;
        }

        .audience-card h3 {
            font-family: var(--font-title);
            font-size: 1.75rem;
            font-weight: 600;
            margin-bottom: 20px;
            line-height: 1.2;
            height: 70px;
            display: flex;
            align-items: center;
        }

        .audience-card p {
            font-size: 0.95rem;
            color: var(--text-light-muted);
            font-weight: 300;
        }

        /* --- 6. ПРОГРАММА (TIMELINE) --- */
        .program {
            background-color: var(--bg-dark-primary);
        }

        .timeline {
            margin-top: 60px;
            position: relative;
            max-width: 1000px;
        }

        .timeline-item {
            display: grid;
            grid-template-columns: 200px 1fr;
            padding: 32px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            transition: var(--transition);
        }

        .timeline-item:hover {
            background: rgba(255, 255, 255, 0.01);
            padding-left: 16px;
        }

        .timeline-meta {
            font-size: 0.9rem;
        }

        .timeline-date {
            font-weight: 700;
            color: var(--accent-gold);
            margin-bottom: 4px;
        }

        .timeline-venue {
            color: var(--text-light-muted);
            font-size: 0.85rem;
        }

        .timeline-content h3 {
            font-family: var(--font-title);
            font-size: 1.6rem;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .timeline-content p {
            color: var(--text-light-muted);
            font-size: 0.95rem;
            font-weight: 300;
        }

        .program-action {
            margin-top: 48px;
            text-align: center;
        }

        /* --- 7. НОМИНАЦИИ --- */
        .nominations {
            background: var(--bg-light);
            color: var(--text-dark-main);
        }

        .nominations-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            margin-bottom: 50px;
        }

        .nomination-card {
            background: #FFF;
            padding: 40px 32px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.03);
            border: 1px solid rgba(0,0,0,0.03);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .nomination-card h3 {
            font-family: var(--font-title);
            font-size: 1.8rem;
            font-weight: 600;
            margin-bottom: 16px;
            line-height: 1.2;
            color: var(--text-dark-main);
        }

        .nomination-card p {
            font-size: 0.95rem;
            color: var(--text-dark-muted);
            font-weight: 400;
        }

        .nominations-note {
            max-width: 800px;
            font-size: 1.05rem;
            color: var(--text-dark-muted);
            margin-bottom: 32px;
            border-left: 2px solid var(--accent-bronze);
            padding-left: 20px;
        }

        /* --- 8. CTA / ПОДАТЬ ЗАЯВКУ --- */
        .cta-block {
            background: linear-gradient(rgba(16, 16, 16, 0.85), rgba(16, 16, 16, 0.85)),
                        radial-gradient(circle at center, rgba(90, 31, 36, 0.4) 0%, transparent 70%);
            text-align: center;
            padding: 140px 0;
            border-top: 1px solid rgba(201, 164, 92, 0.1);
            border-bottom: 1px solid rgba(201, 164, 92, 0.1);
        }

        .cta-content {
            max-width: 750px;
            margin: 0 auto;
        }

        .cta-content p {
            font-size: 1.2rem;
            color: var(--text-light-muted);
            margin-bottom: 40px;
            font-weight: 300;
        }

        .cta-actions {
            display: flex;
            justify-content: center;
            gap: 24px;
        }

        /* --- 9. ЖЮРИ --- */
        .jury {
            background-color: var(--bg-dark-secondary);
        }

        .jury-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            margin-top: 48px;
        }

        .jury-card {
            background: var(--bg-dark-primary);
            border: 1px solid rgba(255, 255, 255, 0.02);
        }

        .jury-photo {
            height: 380px;
            width: 100%;
        }

        .jury-info {
            padding: 32px;
        }

        .jury-meta {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--accent-gold);
            margin-bottom: 8px;
            display: block;
        }

        .jury-name {
            font-family: var(--font-title);
            font-size: 1.8rem;
            font-weight: 600;
            margin-bottom: 4px;
        }

        .jury-role {
            font-size: 0.9rem;
            color: var(--text-light-muted);
            margin-bottom: 16px;
            font-weight: 500;
        }

        .jury-desc {
            font-size: 0.85rem;
            color: var(--text-light-muted);
            font-weight: 300;
            line-height: 1.5;
        }

        /* --- 10. ПЛОЩАДКИ --- */
        .venues {
            background-color: var(--bg-dark-primary);
        }

        .venues-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-top: 48px;
        }

        .venue-card {
            background: var(--bg-dark-tertiary);
            display: flex;
            flex-direction: column;
        }

        .venue-image {
            height: 220px;
        }

        .venue-info {
            padding: 32px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            flex-grow: 1;
        }

        .venue-tag {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: var(--accent-gold);
            margin-bottom: 12px;
            font-weight: 600;
        }

        .venue-title {
            font-family: var(--font-title);
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .venue-address {
            font-size: 0.85rem;
            color: var(--text-light-muted);
            font-weight: 300;
        }

        /* --- 11 & 12. ОРГАНИЗАТОРЫ И ПАРТНЕРЫ --- */
        .partners-section {
            background-color: var(--bg-dark-secondary);
            border-top: 1px solid rgba(255, 255, 255, 0.03);
        }

        .partners-block {
            margin-bottom: 80px;
        }

        .partners-block:last-child {
            margin-bottom: 0;
        }

        .block-subtitle {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: var(--accent-gold);
            margin-bottom: 32px;
            font-weight: 600;
        }

        .logos-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .logo-item {
            height: 100px;
            padding: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--bg-dark-primary);
            border: 1px solid rgba(255, 255, 255, 0.02);
            color: var(--text-light-muted);
            font-size: 0.9rem;
            font-weight: 500;
            text-align: center;
        }


        /* --- 13. ПОЛОЖЕНИЕ, НОВОСТИ И МЕДИА --- */
        .regulations {
            background-color: var(--bg-dark-primary);
        }

        .regulations-layout {
            display: grid;
            grid-template-columns: 0.9fr 1.2fr;
            gap: 64px;
            align-items: start;
        }

        .regulations-lead {
            font-size: 1.1rem;
            color: var(--text-light-muted);
            font-weight: 300;
            margin-bottom: 32px;
            max-width: 620px;
        }

        .regulations-points {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 18px;
        }

        .regulations-card {
            background: var(--bg-dark-tertiary);
            padding: 30px;
            border: 1px solid rgba(255, 255, 255, 0.04);
            border-left: 2px solid rgba(201, 164, 92, 0.55);
        }

        .regulations-card h3 {
            font-family: var(--font-title);
            font-size: 1.45rem;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .regulations-card p {
            color: var(--text-light-muted);
            font-size: 0.92rem;
            font-weight: 300;
        }

        .news-section {
            background: var(--bg-light);
            color: var(--text-dark-main);
        }

        .news-header,
        .media-header {
            display: flex;
            justify-content: space-between;
            align-items: end;
            gap: 32px;
            margin-bottom: 42px;
        }

        .news-header .section-title,
        .media-header .section-title {
            margin-bottom: 0;
        }

        .news-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .news-card {
            background: #fff;
            padding: 34px;
            min-height: 260px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            border: 1px solid rgba(0, 0, 0, 0.04);
            box-shadow: 0 10px 30px rgba(0,0,0,0.03);
        }

        .news-card-content {
            display: flex;
            flex: 1;
            flex-direction: column;
            justify-content: space-between;
        }

        .news-card.has-image {
            padding: 0;
            overflow: hidden;
        }

        .news-card.has-image .news-card-content {
            padding: 28px 30px 32px;
        }

        .news-card-image {
            display: block;
            width: 100%;
            aspect-ratio: 16 / 10;
            overflow: hidden;
            background: #efe5da;
        }

        .news-card-image img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .35s ease;
        }

        .news-card:hover .news-card-image img {
            transform: scale(1.04);
        }

        .news-all-btn {
            white-space: nowrap;
        }

        .news-date {
            font-size: 0.78rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--accent-bronze);
            font-weight: 700;
            margin-bottom: 18px;
        }

        .news-card h3 {
            font-family: var(--font-title);
            font-size: 1.65rem;
            font-weight: 600;
            line-height: 1.16;
            margin-bottom: 16px;
        }

        .news-card p {
            color: var(--text-dark-muted);
            font-size: 0.95rem;
        }

        .news-link {
            color: var(--text-dark-main);
            font-weight: 700;
            font-size: 0.82rem;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            margin-top: 28px;
        }

        .media-section {
            background-color: var(--bg-dark-primary);
        }

        .media-grid {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr 0.8fr;
            gap: 18px;
        }

        .media-card {
            min-height: 260px;
            padding: 28px;
            align-items: flex-end;
            justify-content: flex-start;
        }

        .media-card.media-large {
            min-height: 540px;
            grid-row: span 2;
        }

        .media-file {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
            transition: transform 0.45s ease;
        }

        .media-card::after {
            content: '';
            position: absolute;
            inset: 0;
            z-index: 0;
            background: linear-gradient(180deg, rgba(16,16,16,0.08) 0%, rgba(16,16,16,0.78) 100%);
            pointer-events: none;
        }

        .media-card:hover .media-file {
            transform: scale(1.04);
        }

        a.media-card {
            color: inherit;
            text-decoration: none;
        }

        .media-label {
            position: relative;
            z-index: 1;
            color: var(--text-light-main);
            font-family: var(--font-title);
            font-size: 1.6rem;
            font-weight: 600;
            line-height: 1.15;
            max-width: 420px;
        }

        .media-type {
            display: block;
            margin-bottom: 10px;
            color: var(--accent-gold);
            font-family: var(--font-body);
            font-size: 0.74rem;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            font-weight: 700;
        }

        @media (max-width: 1320px) {
            .nav-menu {
                gap: 11px;
            }

            .nav-link {
                font-size: 0.68rem;
                letter-spacing: 0.035em;
            }

            .header-actions {
                gap: 14px;
            }

            .btn-header {
                padding: 10px 16px;
            }
        }

        /* --- 13. РЕТРОСПЕКТИВА 2025 --- */
        .history {
            background-color: var(--bg-dark-primary);
        }

        .history-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 64px;
            align-items: start;
        }

        .history-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
            margin-top: 32px;
        }

        .history-stat-box {
            background: var(--bg-dark-secondary);
            padding: 24px;
            border-left: 2px solid var(--accent-burgundy);
        }

        .history-stat-num {
            font-family: var(--font-title);
            font-size: 2rem;
            font-weight: 700;
            color: var(--text-light-main);
        }

        .history-stat-label {
            font-size: 0.85rem;
            color: var(--text-light-muted);
        }

        .history-media {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
        }

        .history-img-large {
            grid-column: span 2;
            height: 300px;
        }

        .history-img-small {
            height: 180px;
        }

        .history-actions {
            margin-top: 40px;
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
        }

        /* --- 14. КОНТАКТЫ И ФОРМА --- */
        .contacts {
            background-color: var(--bg-dark-tertiary);
        }

        .contacts-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 80px;
        }

        .contact-info-block {
            margin-bottom: 40px;
        }

        .contact-label {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--accent-gold);
            margin-bottom: 8px;
        }

        .contact-value {
            font-size: 1.2rem;
            font-weight: 400;
        }

        .social-links {
            display: flex;
            gap: 16px;
            margin-top: 16px;
        }

        .social-btn {
            padding: 12px 24px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.85rem;
        }

        .social-btn:hover {
            border-color: var(--text-light-main);
            background: rgba(255,255,255,0.05);
        }

        /* Премиальная форма */
        .form-group {
            margin-bottom: 24px;
        }

        .form-row {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
        }

        .form-input {
            width: 100%;
            background: rgba(255, 255, 255, 0.03);
            border: none;
            border-bottom: 1px solid rgba(247, 243, 234, 0.2);
            padding: 16px 0;
            color: var(--text-light-main);
            font-family: var(--font-body);
            font-size: 0.95rem;
            transition: var(--transition);
        }

        .form-input:focus {
            outline: none;
            border-bottom-color: var(--accent-gold);
            background: rgba(255, 255, 255, 0.05);
        }

        textarea.form-input {
            height: 120px;
            resize: none;
        }

        /* --- 15. FOOTER / ПОДВАЛ --- */
        .footer {
            background-color: var(--bg-dark-primary);
            padding: 80px 0 40px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            font-size: 0.85rem;
            color: var(--text-light-muted);
        }

        .footer-top {
            display: grid;
            grid-template-columns: 1.5fr 2fr 1fr;
            gap: 64px;
            margin-bottom: 60px;
        }

        .footer-brand p {
            margin-top: 16px;
            font-weight: 300;
            line-height: 1.5;
        }

        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }

        .footer-links a {
            color: var(--text-light-muted);
        }

        .footer-links a:hover {
            color: var(--text-light-main);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding-top: 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .footer-legal {
            display: flex;
            gap: 24px;
        }

        .footer-legal a {
            border-bottom: 1px solid transparent;
        }

        .footer-legal a:hover {
            border-bottom-color: var(--text-light-muted);
        }




        /* --- ДОРОГОЙ БОРДОВЫЙ АКЦЕНТ --- */
        body {
            background:
                radial-gradient(circle at 82% 8%, rgba(90, 31, 36, 0.16) 0%, transparent 34%),
                radial-gradient(circle at 0% 42%, rgba(42, 7, 11, 0.34) 0%, transparent 38%),
                var(--bg-dark-primary);
        }

        .section-title {
            position: relative;
            padding-bottom: 18px;
        }

        .section-title::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 76px;
            height: 2px;
            background: linear-gradient(90deg, var(--accent-burgundy-rich), var(--accent-gold));
            box-shadow: 0 0 22px rgba(122, 38, 48, 0.35);
        }

        .news-header .section-title::after,
        .media-header .section-title::after {
            bottom: -16px;
        }

        .cta-content .section-title::after {
            left: 50%;
            transform: translateX(-50%);
        }

        .header {
            background: linear-gradient(180deg, rgba(22, 12, 13, 0.94), rgba(16, 16, 16, 0.86));
            border-bottom: 1px solid rgba(122, 38, 48, 0.34);
        }

        .header.is-scrolled {
            background: linear-gradient(180deg, rgba(22, 12, 13, 0.98), rgba(14, 14, 14, 0.96));
            border-bottom-color: rgba(201, 164, 92, 0.14);
        }

        .nav-link:hover,
        .nav-link.active {
            color: var(--text-light-main);
            text-shadow: 0 0 18px rgba(122, 38, 48, 0.44);
        }

        .btn-gold {
            box-shadow: 0 14px 40px rgba(90, 31, 36, 0.16);
        }

        .btn-outline:hover,
        .btn-dark-outline:hover {
            border-color: rgba(122, 38, 48, 0.55);
            box-shadow: inset 0 0 0 1px rgba(122, 38, 48, 0.18), 0 18px 42px rgba(42, 7, 11, 0.18);
        }

        .hero {
            overflow: hidden;
            background:
                linear-gradient(115deg, rgba(16, 16, 16, 0.94) 0%, rgba(16, 16, 16, 0.78) 46%, rgba(42, 7, 11, 0.72) 100%),
                radial-gradient(circle at 78% 26%, rgba(122, 38, 48, 0.42) 0%, transparent 36%),
                radial-gradient(circle at 16% 82%, rgba(201, 164, 92, 0.08) 0%, transparent 44%),
                #101010;
        }

        .hero::after {
            content: '';
            position: absolute;
            right: -220px;
            top: 12%;
            width: 560px;
            height: 560px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(122, 38, 48, 0.28) 0%, rgba(122, 38, 48, 0.08) 42%, transparent 70%);
            filter: blur(6px);
            pointer-events: none;
        }

        .hero-content {
            position: relative;
            z-index: 1;
        }

        .hero-location {
            color: #D8B765;
        }

        .hero-deadline {
            padding: 14px 18px;
            width: fit-content;
            background: rgba(90, 31, 36, 0.18);
            border: 1px solid rgba(122, 38, 48, 0.32);
            box-shadow: 0 16px 42px rgba(42, 7, 11, 0.2);
        }

        .about,
        .jury,
        .partners-section {
            background:
                radial-gradient(circle at 92% 8%, rgba(90, 31, 36, 0.20), transparent 32%),
                var(--bg-dark-secondary);
        }

        .about-image,
        .jury-card,
        .venue-card,
        .logo-item,
        .regulations-card,
        .news-card,
        .history-stat-box {
            box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
        }

        .about-image {
            border-left-color: var(--accent-burgundy-rich);
            border-bottom: 1px solid rgba(201, 164, 92, 0.10);
        }

        .media-placeholder {
            background:
                linear-gradient(135deg, rgba(28, 28, 28, 0.96) 0%, rgba(58, 17, 22, 0.86) 100%),
                #1C1C1C;
            border-color: rgba(122, 38, 48, 0.24);
        }

        .media-placeholder::before {
            background:
                radial-gradient(circle at 40% 45%, rgba(201, 164, 92, 0.08) 0%, transparent 38%),
                radial-gradient(circle, rgba(122, 38, 48, 0.18) 0%, transparent 66%);
        }

        .stats {
            background:
                linear-gradient(180deg, var(--bg-dark-primary), rgba(42, 7, 11, 0.24));
        }

        .stats-item {
            background: linear-gradient(145deg, rgba(28, 28, 28, 0.98), rgba(45, 14, 18, 0.62));
            border-color: rgba(122, 38, 48, 0.16);
        }

        .stats-item:hover {
            border-color: rgba(122, 38, 48, 0.50);
            box-shadow: 0 24px 64px rgba(42, 7, 11, 0.26);
        }

        .stats-item.large {
            background:
                linear-gradient(135deg, rgba(28, 28, 28, 0.96) 0%, rgba(90, 31, 36, 0.72) 100%);
            border-color: rgba(201, 164, 92, 0.14);
        }

        .audience {
            background:
                radial-gradient(circle at 8% 12%, rgba(122, 38, 48, 0.18), transparent 30%),
                var(--bg-dark-secondary);
        }

        .audience-card {
            background: linear-gradient(145deg, rgba(16, 16, 16, 0.98), rgba(42, 7, 11, 0.48));
            border-top-color: rgba(122, 38, 48, 0.48);
            border-left: 1px solid rgba(122, 38, 48, 0.12);
        }

        .audience-card:hover {
            border-top-color: var(--accent-gold);
            background: linear-gradient(145deg, rgba(19, 19, 19, 1), rgba(90, 31, 36, 0.40));
            box-shadow: 0 26px 70px rgba(42, 7, 11, 0.24);
        }

        .program {
            background:
                radial-gradient(circle at 88% 50%, rgba(90, 31, 36, 0.18), transparent 34%),
                var(--bg-dark-primary);
        }

        .timeline-item {
            border-bottom-color: rgba(122, 38, 48, 0.18);
        }

        .timeline-item:hover {
            background: linear-gradient(90deg, rgba(90, 31, 36, 0.18), rgba(255, 255, 255, 0.01));
            border-left: 2px solid rgba(201, 164, 92, 0.48);
        }

        .venues {
            background:
                linear-gradient(180deg, var(--bg-dark-primary), rgba(42, 7, 11, 0.25));
        }

        .venue-card,
        .jury-card,
        .logo-item {
            border-color: rgba(122, 38, 48, 0.18);
        }

        .venue-card:hover,
        .jury-card:hover,
        .logo-item:hover {
            border-color: rgba(201, 164, 92, 0.22);
            transform: translateY(-4px);
        }

        .nominations {
            background:
                radial-gradient(circle at 86% 12%, rgba(90, 31, 36, 0.10), transparent 34%),
                var(--bg-light);
        }

        .nomination-card {
            border-top: 3px solid rgba(90, 31, 36, 0.82);
            box-shadow: 0 18px 52px rgba(90, 31, 36, 0.08);
        }

        .nominations-note {
            border-left-color: var(--accent-burgundy-rich);
        }

        .regulations {
            background:
                radial-gradient(circle at 10% 0%, rgba(90, 31, 36, 0.22), transparent 34%),
                var(--bg-dark-primary);
        }

        .regulations-card {
            background: linear-gradient(145deg, rgba(28, 28, 28, 0.96), rgba(58, 17, 22, 0.68));
            border-color: rgba(122, 38, 48, 0.20);
            border-left-color: var(--accent-burgundy-rich);
        }

        .regulations-card:hover {
            border-left-color: var(--accent-gold);
            transform: translateY(-3px);
        }

        .news-section {
            background:
                linear-gradient(180deg, #F5F0E8 0%, #EFE5DA 100%);
        }

        .news-card {
            border-top: 3px solid rgba(90, 31, 36, 0.82);
            box-shadow: 0 22px 60px rgba(90, 31, 36, 0.09);
        }

        .news-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 28px 70px rgba(90, 31, 36, 0.14);
        }

        .news-date,
        .news-link {
            color: var(--accent-burgundy-rich);
        }

        .news-link:hover {
            color: var(--accent-bronze);
        }

        .media-section {
            background:
                radial-gradient(circle at 16% 26%, rgba(122, 38, 48, 0.20), transparent 32%),
                var(--bg-dark-primary);
        }

        .media-card {
            border-color: rgba(122, 38, 48, 0.28);
        }

        .media-card:hover {
            border-color: rgba(201, 164, 92, 0.24);
            transform: translateY(-4px);
        }

        .cta-block {
            background:
                linear-gradient(135deg, rgba(16, 16, 16, 0.94), rgba(42, 7, 11, 0.92)),
                radial-gradient(circle at 50% 50%, rgba(122, 38, 48, 0.52) 0%, transparent 64%);
            border-top: 1px solid rgba(122, 38, 48, 0.42);
            border-bottom: 1px solid rgba(201, 164, 92, 0.18);
            box-shadow: inset 0 1px 0 rgba(201, 164, 92, 0.08), inset 0 -1px 0 rgba(90, 31, 36, 0.32);
        }

        .history {
            background:
                radial-gradient(circle at 92% 24%, rgba(90, 31, 36, 0.24), transparent 36%),
                var(--bg-dark-primary);
        }

        .history-stat-box {
            background: linear-gradient(145deg, var(--bg-dark-secondary), rgba(58, 17, 22, 0.70));
            border-left-color: var(--accent-burgundy-rich);
            border-top: 1px solid rgba(201, 164, 92, 0.06);
        }

        .contacts {
            background:
                linear-gradient(145deg, var(--bg-dark-tertiary), rgba(42, 7, 11, 0.72));
        }

        .form-input:focus {
            border-bottom-color: var(--accent-burgundy-rich);
            box-shadow: 0 12px 34px rgba(42, 7, 11, 0.18);
        }

        .footer {
            background:
                linear-gradient(180deg, rgba(16, 16, 16, 1), rgba(42, 7, 11, 0.72));
            border-top-color: rgba(122, 38, 48, 0.22);
        }

        .mobile-bottom-bar {
            background: linear-gradient(135deg, rgba(16, 16, 16, 0.94), rgba(58, 17, 22, 0.92));
            border-color: rgba(122, 38, 48, 0.32);
        }


        /* --- ДОРАБОТКИ ДЛЯ МОБИЛЬНОЙ ВЕРСИИ --- */

        body.no-scroll {
            overflow: hidden;
            touch-action: none;
        }

        .header.is-scrolled {
            background: rgba(16, 16, 16, 0.96);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
        }

        .header.is-scrolled .header-container {
            padding-top: 12px;
            padding-bottom: 12px;
        }

        .mobile-bottom-bar {
            display: none;
        }

        .burger.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }

        .burger.active span:nth-child(2) {
            opacity: 0;
        }

        .burger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        .nav-menu.mobile-active {
            animation: mobileMenuFade 0.25s ease-out;
        }

        @keyframes mobileMenuFade {
            from {
                opacity: 0;
                transform: translateY(-8px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 1200px) {
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .stats-item.large {
                grid-column: span 2;
            }

            .nominations-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .jury-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .venues-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .logos-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .footer-top {
                grid-template-columns: 1fr 1fr;
            }

            .footer-top > div:last-child {
                grid-column: span 2;
            }
        }

        @media (max-width: 992px) {
            section {
                padding: 80px 0;
            }

            .header-container {
                padding: 16px 22px;
            }

            .nav-menu {
                display: none;
            }

            .burger {
                display: flex;
            }

            .nav-menu.mobile-active {
                display: flex;
                flex-direction: column;
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100dvh;
                background:
                    radial-gradient(circle at 80% 20%, rgba(201, 164, 92, 0.08), transparent 38%),
                    radial-gradient(circle at 10% 90%, rgba(90, 31, 36, 0.24), transparent 45%),
                    var(--bg-dark-primary);
                padding: 110px 28px 120px;
                gap: 0;
                z-index: 999;
                overflow-y: auto;
            }

            .nav-menu.mobile-active .nav-link {
                width: 100%;
                padding: 18px 0;
                font-size: 1.08rem;
                letter-spacing: 0.08em;
                border-bottom: 1px solid rgba(255, 255, 255, 0.07);
                color: var(--text-light-main);
            }

            .nav-menu.mobile-active .nav-link.active {
                color: var(--accent-gold);
            }

            .about-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .about-image {
                height: 360px;
                order: -1;
            }

            .audience-grid {
                grid-template-columns: 1fr 1fr;
            }

            .audience-card {
                padding: 34px;
            }

            .audience-card h3 {
                height: auto;
                min-height: auto;
                margin-bottom: 14px;
            }

            .history-grid {
                grid-template-columns: 1fr;
                gap: 44px;
            }

            .contacts-grid {
                grid-template-columns: 1fr;
                gap: 44px;
            }
        }

        @media (max-width: 768px) {
            html {
                font-size: 15px;
            }

            body {
                padding-bottom: 78px;
            }

            .container {
                padding: 0 18px;
            }

            section {
                padding: 62px 0;
            }

            .section-title {
                font-size: clamp(2.15rem, 11vw, 3rem);
                margin-bottom: 28px;
            }

            .header {
                border-bottom-color: rgba(255, 255, 255, 0.08);
            }

            .header-container {
                padding: 14px 16px;
                gap: 14px;
            }

            .logo {
                max-width: 245px;
                min-width: 0;
            }

            .logo-top {
                font-size: 0.54rem;
                line-height: 1.2;
                letter-spacing: 0.12em;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
            }

            .logo-main {
                font-size: 1.02rem;
                line-height: 1.12;
                display: -webkit-box;
                -webkit-line-clamp: 2;
                -webkit-box-orient: vertical;
                overflow: hidden;
            }

            .header-actions {
                gap: 12px;
                flex-shrink: 0;
            }

            .header-actions .btn-header {
                display: none;
            }

            .lang-switch {
                font-size: 0.72rem;
            }

            .burger {
                width: 30px;
                height: 28px;
                justify-content: center;
                flex-shrink: 0;
            }

            .burger span {
                height: 2px;
                border-radius: 10px;
            }

            .hero {
                min-height: auto;
                text-align: left;
                align-items: flex-start;
                padding: 132px 0 68px;
                background:
                    radial-gradient(circle at 85% 12%, rgba(201, 164, 92, 0.11) 0%, transparent 42%),
                    radial-gradient(circle at 0% 80%, rgba(90, 31, 36, 0.22) 0%, transparent 54%),
                    #101010;
            }

            .hero-content {
                max-width: 100%;
            }

            .hero-location {
                font-size: 0.72rem;
                letter-spacing: 0.16em;
                margin-bottom: 14px;
            }

            .hero-title {
                font-size: clamp(2.35rem, 13vw, 3.45rem);
                line-height: 0.98;
                margin-bottom: 24px;
                letter-spacing: -0.035em;
            }

            .hero-description {
                font-size: 1rem;
                line-height: 1.7;
                margin-bottom: 30px;
            }

            .hero-description br {
                display: none;
            }

            .hero-actions,
            .cta-actions,
            .history-actions {
                flex-direction: column;
                gap: 12px;
                align-items: stretch;
            }

            .hero-actions .btn,
            .cta-actions .btn,
            .history-actions .btn,
            .program-action .btn,
            .nominations .btn,
            .contacts .btn-gold {
                width: 100%;
                text-align: center;
                padding: 15px 18px;
            }

            .hero-deadline {
                align-items: flex-start;
                justify-content: flex-start;
                font-size: 0.76rem;
                line-height: 1.5;
                max-width: 310px;
            }

            .hero-deadline::before {
                flex: 0 0 auto;
                margin-top: 7px;
            }

            .about-text p {
                font-size: 1rem;
                line-height: 1.75;
                margin-bottom: 18px;
            }

            .about-text p:first-of-type {
                font-size: 1.18rem;
            }

            .about-image,
            .jury-photo {
                height: 280px;
            }

            .stats-grid,
            .audience-grid,
            .nominations-grid,
            .jury-grid,
            .venues-grid,
            .contacts-grid,
            .footer-top {
                grid-template-columns: 1fr;
            }

            .stats-item,
            .nomination-card,
            .audience-card,
            .jury-info,
            .venue-info,
            .history-stat-box {
                padding: 26px;
            }

            .stats-item.large,
            .audience-card[style*="grid-column"],
            .footer-top > div:last-child {
                grid-column: auto !important;
            }

            .stats-number {
                font-size: 3.15rem;
            }

            .stats-title {
                font-size: 1rem;
            }

            .audience-card h3,
            .nomination-card h3,
            .jury-name,
            .venue-title {
                font-size: 1.45rem;
            }

            .timeline {
                margin-top: 26px;
            }

            .timeline-item {
                display: block;
                padding: 24px;
                margin-bottom: 14px;
                background: var(--bg-dark-secondary);
                border: 1px solid rgba(255, 255, 255, 0.06);
            }

            .timeline-item:hover {
                transform: none;
                padding-left: 24px;
            }

            .timeline-meta {
                margin-bottom: 14px;
            }

            .timeline-content h3 {
                font-size: 1.35rem;
                line-height: 1.2;
            }

            .timeline-content p {
                line-height: 1.65;
            }

            .nominations-note {
                font-size: 0.98rem;
                line-height: 1.7;
            }

            .cta-block {
                padding: 76px 0;
            }

            .cta-content p {
                font-size: 1rem;
                line-height: 1.75;
                margin-bottom: 28px;
            }

            .venues-grid,
            .jury-grid {
                gap: 18px;
            }

            .venue-image {
                height: 190px;
            }

            .logos-grid {
                grid-template-columns: 1fr;
                gap: 14px;
            }

            .logo-item {
                height: auto;
                min-height: 82px;
                padding: 18px;
            }

            .history-stats {
                grid-template-columns: 1fr 1fr;
                gap: 12px;
            }

            .history-stat-num {
                font-size: 1.75rem;
            }

            .history-media {
                grid-template-columns: 1fr;
            }

            .history-img-large,
            .history-img-small {
                grid-column: auto;
                height: 210px;
            }

            .contact-value {
                font-size: 1.03rem;
                overflow-wrap: anywhere;
            }

            .social-links {
                flex-direction: column;
            }

            .social-btn {
                width: 100%;
                text-align: center;
            }

            .form-row {
                grid-template-columns: 1fr;
                gap: 0;
            }

            .form-input {
                font-size: 1rem;
                padding: 15px 0;
            }

            textarea.form-input {
                min-height: 130px;
            }

            .footer {
                padding: 58px 0 32px;
            }

            .footer-top {
                gap: 34px;
                margin-bottom: 42px;
            }

            .footer-links {
                grid-template-columns: 1fr;
                gap: 28px;
            }

            .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
                text-align: left;
                line-height: 1.65;
            }

            .footer-legal {
                flex-direction: column;
                gap: 10px;
            }

            .mobile-bottom-bar {
                position: fixed;
                left: 12px;
                right: 12px;
                bottom: 12px;
                z-index: 998;
                display: grid;
                grid-template-columns: 1fr 1.2fr;
                gap: 10px;
                padding: 10px;
                background: rgba(16, 16, 16, 0.9);
                border: 1px solid rgba(255, 255, 255, 0.1);
                border-radius: 18px;
                backdrop-filter: blur(18px);
                box-shadow: 0 16px 50px rgba(0, 0, 0, 0.35);
            }

            .mobile-bottom-link {
                display: flex;
                align-items: center;
                justify-content: center;
                min-height: 46px;
                border-radius: 13px;
                border: 1px solid rgba(255, 255, 255, 0.12);
                color: var(--text-light-main);
                font-size: 0.78rem;
                font-weight: 700;
                text-transform: uppercase;
                letter-spacing: 0.08em;
            }

            .mobile-bottom-link-gold {
                background: var(--accent-gold);
                border-color: var(--accent-gold);
                color: #000;
            }
        }


        @media (max-width: 992px) {
            .regulations-layout {
                grid-template-columns: 1fr;
                gap: 38px;
            }

            .news-grid,
            .media-grid {
                grid-template-columns: 1fr;
            }

            .media-card.media-large,
            .media-card {
                min-height: 250px;
                grid-row: auto;
            }
        }

        @media (max-width: 768px) {
            .news-header,
            .media-header {
                display: block;
                margin-bottom: 28px;
            }

            .news-header .btn,
            .media-header .btn {
                width: 100%;
                text-align: center;
                margin-top: 20px;
            }

            .regulations-points {
                grid-template-columns: 1fr;
            }

            .regulations-card,
            .news-card {
                padding: 26px;
            }

            .media-label {
                font-size: 1.35rem;
            }
        }

        @media (max-width: 430px) {
            .container {
                padding: 0 16px;
            }

            .logo {
                max-width: 205px;
            }

            .logo-top {
                display: none;
            }

            .logo-main {
                font-size: 1rem;
                -webkit-line-clamp: 2;
            }

            .hero {
                padding-top: 118px;
            }

            .hero-title {
                font-size: clamp(2.2rem, 14vw, 3rem);
            }

            .btn-gold,
            .btn-outline,
            .btn-dark-outline {
                letter-spacing: 0.075em;
            }

            .stats-item,
            .nomination-card,
            .audience-card,
            .jury-info,
            .venue-info {
                padding: 24px 22px;
            }

            .history-stats {
                grid-template-columns: 1fr;
            }

            .mobile-bottom-bar {
                left: 10px;
                right: 10px;
                bottom: 10px;
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 360px) {
            .hero-title {
                font-size: 2.05rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .header-container {
                padding-left: 12px;
                padding-right: 12px;
            }

            .lang-switch {
                display: none;
            }
        }


        /* --- ОБЩИЕ СТИЛИ ВЫНЕСЕННЫХ HEADER / FOOTER --- */
        .nav-item {
            position: relative;
            display: flex;
            align-items: center;
            padding: 14px 0;
            margin: -14px 0;
        }

        .dropdown-toggle {
            display: inline-flex;
            align-items: center;
            gap: 7px;
        }

        .dropdown-toggle::after {
            content: '';
            width: 6px;
            height: 6px;
            border-right: 1px solid currentColor;
            border-bottom: 1px solid currentColor;
            transform: rotate(45deg) translateY(-2px);
            opacity: 0.75;
            transition: var(--transition);
        }

        .has-dropdown:hover .dropdown-toggle::after {
            transform: rotate(225deg) translate(-1px, -1px);
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%) translateY(8px);
            min-width: 230px;
            padding: 12px;
            background: rgba(16, 16, 16, 0.96);
            border: 1px solid rgba(201, 164, 92, 0.18);
            box-shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
            backdrop-filter: blur(18px);
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: var(--transition);
            z-index: 1100;
        }

        .dropdown-menu::before {
            content: '';
            position: absolute;
            left: 0;
            right: 0;
            top: -18px;
            height: 18px;
        }

        .has-dropdown:hover .dropdown-menu,
        .has-dropdown:focus-within .dropdown-menu {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
            transform: translateX(-50%) translateY(0);
        }

        .dropdown-link {
            display: block;
            padding: 12px 14px;
            color: var(--text-light-muted);
            font-size: 0.78rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .dropdown-link:last-child {
            border-bottom: none;
        }

        .dropdown-link:hover {
            color: var(--text-light-main);
            background: rgba(201, 164, 92, 0.07);
        }

        .footer-logo {
            font-size: 1.5rem;
        }

        .footer-links h4 {
            color: var(--text-light-main);
            margin-bottom: 16px;
            font-weight: 600;
        }

        .footer-links ul {
            display: flex;
            flex-direction: column;
            gap: 8px;
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-legal {
            display: flex;
            gap: 24px;
            flex-wrap: wrap;
        }

        @media (max-width: 1120px) {
            .nav-menu.mobile-active .nav-item {
                width: 100%;
                display: block;
            }

            .nav-menu.mobile-active .dropdown-menu {
                position: static;
                opacity: 1;
                visibility: visible;
                pointer-events: auto;
                transform: none;
                min-width: 100%;
                padding: 0 0 0 16px;
                margin: 0;
                background: transparent;
                border: none;
                box-shadow: none;
                backdrop-filter: none;
            }

            .nav-menu.mobile-active .dropdown-link {
                padding: 13px 0;
                color: var(--text-light-muted);
                border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            }
        }

        @media (max-width: 768px) {
            .footer-top,
            .footer-bottom {
                grid-template-columns: 1fr;
                flex-direction: column;
                align-items: flex-start;
            }

            .footer-links {
                grid-template-columns: 1fr;
            }
        }


        /* --- ПРАВКИ HERO: КАРТИНКА СПРАВА ОТ ТЕКСТА --- */
        .hero > .container {
            position: relative;
            z-index: 2;
        }

        .hero-inner {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
            align-items: center;
            gap: 72px;
            width: 100%;
        }

        .hero-inner .hero-content {
            max-width: 760px;
        }

        .hero-visual {
            position: relative;
            display: flex;
            justify-content: flex-end;
            align-items: center;
            min-width: 0;
        }

        .hero-visual::before {
            content: '';
            position: absolute;
            inset: 8%;
            background: radial-gradient(circle, rgba(201, 164, 92, 0.22) 0%, rgba(122, 38, 48, 0.18) 42%, transparent 72%);
            filter: blur(22px);
            pointer-events: none;
        }

.hero-visual img {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 540px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 34px;
    border: none;
}



        .about-image img {
            position: relative;
            z-index: 1;
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        @media (max-width: 992px) {
            .hero-inner {
                grid-template-columns: 1fr;
                gap: 42px;
            }

            .hero-visual {
                justify-content: center;
            }

            .hero-visual img {
                max-width: 460px;
                border-radius: 28px;
            }
        }

        @media (max-width: 768px) {

        .hero-visual {
    display: none;
}

            .hero-inner {
                grid-template-columns: 1fr;
                gap: 34px;
            }

            .hero-visual {
                justify-content: center;
            }

            .hero-visual img {
                max-width: 100%;
                border-radius: 24px;
            }
        }

        @media (max-width: 430px) {
            .hero-inner {
                gap: 28px;
            }

            .hero-visual img {
                border-radius: 20px;
            }
        }


        .venue-card {
    background: var(--bg-dark-tertiary);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.venue-image {
    height: 220px;
    width: 100%;
    overflow: hidden;
}

.venue-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
@media (max-width: 768px) {
    .hero-visual {
        display: flex !important;
        justify-content: center;
        width: 100%;
        margin-top: 30px;
    }

    .hero-visual img {
        display: block;
        width: 100%;
        max-width: 360px;
        height: auto;
        margin: 0 auto;
    }

    .about-image {
        display: none !important;
    }
}