
        @font-face {
            font-family: 'MachineC';
            src: url('../font/machinec.otf') format('opentype');
            font-weight: 300;
            font-style: normal;
            font-display: swap;
        }

        @font-face {
            font-family: 'HeliosC';
            src: url('../font/heliosc.otf') format('opentype');
            font-weight: normal;
            font-style: normal;
            font-display: swap;
        }

        :root {
            --primary: #3d4531;
            --primary-dark: #2a2f20;
            --accent: #d84315;
            --text: #1a1a1a;
            --text-light: #666;
            --bg: #fafaf8;
            --border: #e5e5e0;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html, body {
            overflow-x: hidden;
        }

        body {
            font-family: 'MachineC', sans-serif;
            background: var(--bg);
            color: var(--text);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        /* HEADER */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: transparent;
            border-bottom: 1px solid transparent;
            transition: background 0.3s ease, border-bottom 0.3s ease;
        }

        header.scrolled {
            background: var(--primary);
            border-bottom: none;
        }

        .header-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 80px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 16px;
            text-decoration: none;
            color: white;
        }

        .logo-mark {
            width: 189px;
            height: 263px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            padding: 0px;
            position: relative;
            top: 91px;
            transition: all 0.3s ease;
        }

        .logo-mark img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        header.scrolled .logo-mark {
            width: 0;
            height: 0;
            padding: 0;
            top: 0;
            overflow: hidden;
            opacity: 0;
        }

        header.scrolled .logo-text .logo-text--full {
            display: none;
        }

        header.scrolled .logo-text .logo-text--short {
            display: inline;
        }

        header.scrolled .header-content {
            height: 61px;
        }

        header.scrolled .logo-text-wrap {
            background: var(--logo-scroll-bg, #fff);
            height: 61px;
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: center;
            padding: 0 20px;
            margin-left: -16px;
            gap: 0;
            transition: background 0.3s ease;
            width: 189px;

        }

        header.scrolled .logo-text {
            color: var(--logo-scroll-color, var(--primary));
            transition: color 0.3s ease;
            border-bottom: 1px solid var(--logo-scroll-color, var(--primary));
            border-top: 1px solid var(--logo-scroll-color, var(--primary));

        }

        .logo-mark svg {
            width: 100%;
            height: 100%;
        }

        .logo-text-wrap {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .logo-text {
            font-family: 'MachineC', sans-serif;
            font-size: 16px;
            font-weight: 300;
            letter-spacing: -0.01em;
            line-height: 1.2;
        }

        .logo-text .logo-text--full {
            display: none;
        }

        .logo-text .logo-text--short {
            display: none;
        }

        .logo-subtext {
            font-size: 11px;
            font-weight: 300;
            color: rgba(255, 255, 255, 0.85);
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }

        nav {
            display: flex;
            gap: 48px;
            align-items: center;
        }

        .nav-item {
            position: relative;
        }

        nav a,
        .nav-link {
            color: white;
            text-decoration: none;
            font-size: 15px;
            font-weight: 300;
            letter-spacing: 0.02em;
            position: relative;
            transition: color 0.2s ease;
        }

        nav > a::after,
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 1px;
            background: white;
            transition: width 0.3s ease;
        }

        nav > a:hover,
        .nav-link:hover {
            color: rgba(255, 255, 255, 0.8);
        }

        nav > a:hover::after,
        .nav-link:hover::after {
            width: 100%;
        }

        /* DROPDOWN MENU */
        .nav-dropdown {
            position: absolute;
            top: calc(100% + 8px);
            left: 0;
            background: #eef0ef;
            border: 1px solid var(--border);
            min-width: 240px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-8px);
            transition: all 0.3s ease;
            z-index: 1000;
        }

        .nav-item:hover .nav-dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .nav-dropdown a {
            display: block;
            padding: 10px 24px;
            font-size: 14px;
            font-weight: 300;
            color: var(--text);
            text-decoration: none;
            transition: color 0.2s ease;
            border-bottom: 1px solid var(--border);
        }

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

        .nav-dropdown a:hover {
            color: var(--accent);
        }

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

        .phone-link {
            display: flex;
            align-items: center;
            gap: 8px;
            color: white;
            text-decoration: none;
            font-size: 16px;
            font-weight: 300;
            transition: color 0.2s ease;
        }

        .phone-link svg {
            width: 20px;
            height: 20px;
            color: white;
            transition: color 0.2s ease;
        }

        .phone-link:hover svg {
            color: rgba(255, 255, 255, 0.8);
        }

        .header-search-btn {
            background: none;
            border: none;
            color: rgba(255, 255, 255, 0.8);
            cursor: pointer;
            padding: 0;
            display: flex;
            align-items: center;
            transition: color 0.2s ease;
        }

        .header-search-btn:hover {
            color: white;
        }

        /* SEARCH PANEL */
        .search-panel {
            position: fixed;
            top: 80px;
            left: 0;
            right: 0;
            height: 0;
            background: var(--primary-dark);
            z-index: 999;
            overflow: hidden;
            transition: height 0.4s ease;
        }

        .search-panel.active {
            height: 360px;
        }

        .search-panel-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 80px 40px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 32px;
        }

        .search-panel-title {
            font-family: 'MachineC', sans-serif;
            font-size: 28px;
            font-weight: 300;
            color: white;
            letter-spacing: 0.02em;
        }

        .search-panel-field {
            width: 100%;
            position: relative;
        }

        .search-panel-field input {
            width: 100%;
            padding: 20px 60px 20px 24px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: white;
            font-family: 'MachineC', sans-serif;
            font-size: 18px;
            font-weight: 300;
            outline: none;
            transition: border-color 0.3s ease;
        }

        .search-panel-field input::placeholder {
            color: rgba(255, 255, 255, 0.4);
        }

        .search-panel-field input:focus {
            border-color: rgba(255, 255, 255, 0.5);
        }

        .search-panel-field button {
            position: absolute;
            right: 16px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            padding: 4px;
            display: flex;
            transition: color 0.2s ease;
        }

        .search-panel-field button:hover {
            color: white;
        }

        .header-social-link {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            font-size: 15px;
            font-weight: 300;
            transition: color 0.2s ease;
        }

        .header-social-link:hover {
            color: white;
        }

        .lk-link {
            display: flex;
            align-items: center;
            gap: 8px;
            color: white;
            text-decoration: none;
            font-size: 15px;
            font-weight: 300;
            transition: color 0.2s ease;
        }

        .lk-link svg {
            width: 20px;
            height: 20px;
            color: white;
            transition: color 0.2s ease;
        }

        .lk-link:hover svg {
            color: rgba(255, 255, 255, 0.8);
        }

        .cta-button {
            padding: 12px 28px;
            background: var(--accent);
            color: white;
            border: none;
            font-size: 15px;
            font-weight: 300;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            letter-spacing: 0.03em;
        }

        .cta-button:hover {
            background: #bf360c;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(216, 67, 21, 0.3);
        }

        /* HERO */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            padding-top: 80px;
            overflow: hidden;
            background-image: url('../images/tild3663-6361-4733-a235-646263626337__566_1.jpg');
            background-size: cover;
            background-position: center;
        }

        .hero-video {
            display: none;
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
        }

        .hero.hero--video {
            background-image: none;
            background: #000;
        }

        .hero.hero--video .hero-video {
            display: block;
        }

        /* DEMO SWITCHER */
        .demo-switcher {
            position: fixed;
            right: 0;
            top: 30%;
            transform: translateY(-30%);
            z-index: 9999;
        }

        .demo-switcher__toggle {
            width: 44px;
            height: 44px;
            background: var(--primary);
            border: none;
            color: white;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px 0 0 8px;
            transition: background 0.2s;
        }

        .demo-switcher__toggle:hover {
            background: var(--primary-dark);
        }

        .demo-switcher__toggle svg {
            width: 22px;
            height: 22px;
            animation: spin-slow 4s linear infinite;
        }

        @keyframes spin-slow {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .demo-switcher__panel {
            position: absolute;
            right: 0;
            top: 50px;
            background: white;
            border: 1px solid var(--border);
            border-radius: 8px 0 0 8px;
            padding: 20px;
            min-width: 260px;
            max-height: 80vh;
            overflow-y: auto;
            box-shadow: 0 4px 20px rgba(0,0,0,0.15);
            opacity: 0;
            visibility: hidden;
            transform: translateX(10px);
            transition: all 0.3s ease;
        }

        .demo-switcher.open .demo-switcher__panel {
            opacity: 1;
            visibility: visible;
            transform: translateX(0);
        }

        .demo-switcher__title {
            font-family: 'MachineC', sans-serif;
            font-size: 13px;
            font-weight: 300;
            color: var(--text-light);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 12px;
        }

        .demo-switcher__option {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 8px 0;
            cursor: pointer;
            font-family: 'MachineC', sans-serif;
            font-size: 15px;
            font-weight: 300;
            color: var(--text);
            transition: color 0.2s;
        }

        .demo-switcher__option:hover {
            color: var(--accent);
        }

        .demo-switcher__radio {
            width: 18px;
            height: 18px;
            border: 2px solid var(--border);
            border-radius: 50%;
            position: relative;
            flex-shrink: 0;
        }

        .demo-switcher__option.active .demo-switcher__radio {
            border-color: var(--accent);
        }

        .demo-switcher__option.active .demo-switcher__radio::after {
            content: '';
            position: absolute;
            top: 3px;
            left: 3px;
            width: 8px;
            height: 8px;
            background: var(--accent);
            border-radius: 50%;
        }

        .demo-switcher__colors {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            align-items: center;
        }

        .demo-switcher__color {
            width: 28px;
            height: 28px;
            border: 2px solid var(--border);
            border-radius: 50%;
            cursor: pointer;
            padding: 0;
            transition: transform 0.2s;
        }

        .demo-switcher__color:hover {
            transform: scale(1.15);
        }

        .demo-switcher__color.active {
            border-color: var(--accent);
            box-shadow: 0 0 0 2px var(--accent);
        }

        .demo-switcher__custom-link {
            display: inline-block;
            margin-top: 6px;
            font-size: 12px;
            color: var(--accent, #d84315);
            text-decoration: underline;
            cursor: pointer;
        }

        .demo-switcher__custom-link:hover {
            opacity: 0.7;
        }

        .demo-switcher__picker-wrap {
            position: relative;
            width: 28px;
            height: 28px;
        }

        .demo-switcher__picker {
            width: 28px;
            height: 28px;
            border: 2px solid var(--border);
            border-radius: 50%;
            cursor: pointer;
            padding: 0;
            background: conic-gradient(red, yellow, lime, aqua, blue, magenta, red);
            -webkit-appearance: none;
            appearance: none;
            overflow: hidden;
        }

        .demo-switcher__picker::-webkit-color-swatch-wrapper {
            padding: 0;
        }

        .demo-switcher__picker::-webkit-color-swatch {
            border: none;
            border-radius: 50%;
        }

        .demo-switcher__picker::-moz-color-swatch {
            border: none;
            border-radius: 50%;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.45);
            z-index: 1;
        }

        .hero-content {
            max-width: 1400px;
            margin: 0 auto;
            margin-top: 9rem;
            padding: 0 40px;
            width: 100%;
            position: relative;
            z-index: 2;
        }

        .hero-text {
            max-width: 700px;
        }

        .hero-label {
            font-family: 'MachineC', sans-serif;
            font-size: 13px;
            font-weight: 300;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: white;
            margin-bottom: 24px;
            display: flex;
            align-items: center;
            gap: 12px;
            text-shadow: 0 2px 8px rgba(0,0,0,0.3);
        }

        .hero-label::before {
            content: '';
            width: 40px;
            height: 2px;
            background: var(--accent);
            box-shadow: 0 2px 8px rgba(216, 67, 21, 0.5);
        }

        .hero-title {
            font-family: 'MachineC', sans-serif;
            font-size: 64px;
            font-weight: 300;
            line-height: 1.1;
            margin-bottom: 32px;
            letter-spacing: -0.03em;
            color: white;
            text-shadow: 0 4px 16px rgba(0,0,0,0.4);
        }

        .hero-description {
            font-size: 20px;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.95);
            margin-bottom: 48px;
            text-shadow: 0 2px 8px rgba(0,0,0,0.3);
        }

        .hero-actions {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .btn-primary {
            min-width: 189px;
            text-align: center;
            padding: 18px 40px;
            background: var(--primary);
            color: white;
            border: none;
            font-size: 16px;
            font-weight: 300;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            letter-spacing: 0.02em;
            position: relative;
            overflow: hidden;
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s ease;
        }

        .btn-primary:hover::before {
            left: 100%;
        }

        .btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 12px 32px rgba(61, 69, 49, 0.3);
        }

        .btn-secondary {
            padding: 18px 40px;
            background: transparent;
            color: white;
            border: 2px solid var(--primary);
            font-size: 16px;
            font-weight: 300;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            letter-spacing: 0.02em;
        }

        .btn-secondary:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 12px 32px rgba(61, 69, 49, 0.2);
        }

        /* ABOUT SECTION */
        .about-section {
            padding: 120px 0;
            background: white;
        }

        .about-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
        }

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

        .about-title {
            font-family: 'MachineC', sans-serif;
            font-size: 28px;
            font-weight: 300;
            line-height: 1.4;
            letter-spacing: -0.01em;
            margin-bottom: 40px;
        }

        .about-description {
            font-family: 'HeliosC', sans-serif;
            font-size: 18px;
            line-height: 1.5;
            color: var(--text-light);
        }

        .about-image {
            width: 100%;
            height: 500px;
            overflow: hidden;
        }

        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

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

        /* PROGRAMS SECTION */
        .programs-section {
            padding: 80px 0;
            background: var(--bg);
        }

        .programs-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
        }

        .program-block {
            display: grid;
            grid-template-columns: 1fr 1.3fr;
            gap: 80px;
            align-items: center;
            margin: 80px 0;
        }

        .program-block--reverse {
            grid-template-columns: 1.3fr 1fr;
        }

        .program-text {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .program-title {
            font-family: 'MachineC', sans-serif;
            font-size: 40px;
            font-weight: 300;
            line-height: 1.2;
            letter-spacing: -0.01em;
        }

        .program-description {
            font-family: 'HeliosC', sans-serif;
            font-size: 17px;
            line-height: 1.5;
            color: var(--text-light);
        }

        .program-btn {
            display: inline-block;
            min-width: 189px;
            text-align: center;
            padding: 18px 40px;
            background: var(--primary);
            color: white;
            text-decoration: none;
            font-size: 16px;
            font-weight: 300;
            letter-spacing: 0.02em;
            line-height: 1.2;
            transition: all 0.3s ease;
            align-self: flex-start;
            margin-top: 16px;
        }

        .program-btn:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(61, 69, 49, 0.25);
        }

        .program-image {
            position: relative;
            overflow: hidden;
            border-radius: 4px;
        }

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

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

        .divider-line {
            margin: 60px auto;
            max-width: 83.33%;
            height: 0;
            border-top: 2px solid var(--primary);
            border-bottom: 2px solid var(--primary);
            padding-top: 5px;
            opacity: 0.15;
            position: relative;
        }

        .divider-line::before {
            content: '\2605';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: var(--bg);
            padding: 0 18px;
            color: var(--accent);
            font-size: 14px;
            opacity: 1;
        }

        /* ALTERNATIVE DIVIDER - минималистичный вариант */
        .divider-alt {
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--primary) 20%, var(--primary) 80%, transparent);
            opacity: 0.2;
            margin: 80px auto;
            max-width: 83.33%;
            position: relative;
        }

        .divider-alt::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 4px;
            height: 4px;
            border-radius: 50%;
            background: var(--primary);
            opacity: 0.8;
        }

        /* MEMORY SECTION */
        .memory-section {
            padding: 100px 0;
            background: white;
        }

        .memory-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
        }

        .memory-title {
            font-family: 'MachineC', sans-serif;
            font-size: 48px;
            font-weight: 300;
            text-align: center;
            margin-bottom: 80px;
            letter-spacing: -0.02em;
        }

        .memory-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 60px;
        }

        .memory-card {
            background: var(--bg);
            overflow: hidden;
            transition: all 0.4s ease;
            border: 1px solid var(--border);
        }

        .memory-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 16px 48px rgba(0,0,0,0.1);
            border-color: var(--primary);
        }

        .memory-card__image {
            aspect-ratio: 4/3;
            overflow: hidden;
        }

        .memory-card__image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .memory-card:hover .memory-card__image img {
            transform: scale(1.08);
        }

        .memory-card__content {
            padding: 40px;
        }

        .memory-card__title {
            font-family: 'MachineC', sans-serif;
            font-size: 28px;
            font-weight: 300;
            margin-bottom: 16px;
            letter-spacing: -0.01em;
        }

        .memory-card__text {
            font-family: 'HeliosC', sans-serif;
            font-size: 16px;
            line-height: 1.5;
            color: var(--text-light);
            margin-bottom: 24px;
        }

        .memory-card__link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--primary);
            text-decoration: none;
            font-weight: 300;
            font-size: 16px;
            transition: gap 0.3s ease;
        }

        .memory-card__link:hover {
            gap: 12px;
            color: var(--accent);
        }

        /* MEDIA SECTION */
        .media-section {
            padding-bottom: 100px;
            background: var(--bg);
        }

        .media-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
        }

        .media-title {
            font-family: 'MachineC', sans-serif;
            font-size: 48px;
            font-weight: 300;
            text-align: center;
            margin-bottom: 20px;
            letter-spacing: -0.02em;
        }

        .media-description {
            text-align: center;
            font-size: 18px;
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto 60px;
            line-height: 1.6;
        }

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

        .media-card {
            background: white;
            overflow: hidden;
            transition: all 0.4s ease;
            border: 1px solid var(--border);
            position: relative;
        }

        .media-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 16px 48px rgba(0,0,0,0.1);
            border-color: var(--primary);
        }

        .media-card__tag {
            position: absolute;
            top: 16px;
            left: 16px;
            padding: 8px 16px;
            font-size: 12px;
            font-weight: 300;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            z-index: 2;
            border-radius: 4px;
           display: none;
        }

        .media-card__tag--svo {
            background: var(--accent);
            color: white;
        }

        .media-card__tag--union {
            background: var(--primary);
            color: white;
        }

        .media-card__tag--media {
            background: #2196F3;
            color: white;
        }

        .media-card__image {
            aspect-ratio: 4/3;
            overflow: hidden;
        }

        .media-card__image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .media-card:hover .media-card__image img {
            transform: scale(1.08);
        }

        .media-card__content {
            padding: 32px 28px;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .media-card__date {
            font-size: 13px;
            font-weight: 300;
            color: var(--text-light);
            letter-spacing: 0.03em;
        }

        .media-card__title {
            font-family: 'MachineC', sans-serif;
            font-size: 20px;
            font-weight: 300;
            line-height: 1.3;
            letter-spacing: -0.01em;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
            height: 52px;
        }

        .media-card__text {
            font-family: 'HeliosC', sans-serif;
            font-size: 15px;
            line-height: 1.5;
            color: var(--text-light);
            margin-bottom: 8px;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
            height: 72px;
        }

        .media-card__btn {
            display: inline-block;
            color: var(--text);
            text-decoration: none;
            font-size: 14px;
            font-weight: 300;
            transition: color 0.2s ease;
        }

        .media-card__btn:hover {
            color: var(--accent);
        }

        .media-all-link {
            text-align: center;
            margin-top: 60px;
        }

        /* PARTNERS SECTION */
        .partners-section {
            padding: 100px 0;
            background: white;
            overflow: hidden;
        }

        .partners-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
        }

        .partners-title {
            font-family: 'MachineC', sans-serif;
            font-size: 48px;
            font-weight: 300;
            text-align: center;
            margin-bottom: 80px;
            letter-spacing: -0.02em;
        }

        .partners-carousel {
            position: relative;
            width: 100%;
            overflow: hidden;
            mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
        }

        .partners-track {
            display: flex;
            gap: 60px;
            animation: scroll 30s linear infinite;
        }

        .partner-logo {
            flex-shrink: 0;
            width: 200px;
            height: 120px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--bg);
            border: 1px solid var(--border);
            padding: 20px;
        }

        .partner-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }

        @keyframes scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(calc(-200px * 4 - 60px * 4));
            }
        }

        .partners-track::after {
            content: '';
            display: flex;
            gap: 60px;
        }

        /* PHOTO/VIDEO SECTION */
        .photovideo-section {
            padding: 100px 0;
            background: white;
        }

        .photovideo-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
        }

        .photovideo-title {
            font-family: 'MachineC', sans-serif;
            font-size: 48px;
            font-weight: 300;
            text-align: center;
            margin-bottom: 80px;
            letter-spacing: -0.02em;
        }

        .photovideo-grid {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 40px;
        }

        .media-video {
            width: 100%;
            height: 600px;
            background: var(--bg);
        }

        .media-video iframe,
        .media-video video {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: cover;
        }

        .media-photos-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .media-photo-carousel {
            width: 100%;
            height: 290px;
            position: relative;
        }

        .media-carousel-wrapper {
            width: 100%;
            height: 100%;
            position: relative;
            display: flex;
            align-items: center;
        }

        .media-carousel-track-container {
            width: 100%;
            height: 100%;
            overflow: hidden;
            cursor: pointer;
        }

        .media-carousel-track {
            display: flex;
            height: 100%;
            transition: transform 0.4s ease;
        }

        .media-carousel-track img {
            flex-shrink: 0;
            width: 100%;
            height: 290px;
            object-fit: cover;
        }

        .media-carousel-btn {
            display: none;
        }

        /* CONTACTS SECTION */
        .contacts-section {
            padding: 100px 0;
            background: var(--bg);
        }

        .contacts-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
        }

        .contacts-content {
            display: grid;
            grid-template-columns: 400px 1fr;
            gap: 80px;
            align-items: start;
        }

        .contacts-title {
            font-family: 'MachineC', sans-serif;
            font-size: 48px;
            font-weight: 300;
            letter-spacing: -0.02em;
            margin-bottom: 60px;
        }

        .contacts-list {
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .contact-item {
            font-size: 18px;
            font-weight: 300;
            color: var(--text);
            text-decoration: none;
            padding: 24px 0;
            border-bottom: 1px solid var(--border);
            transition: all 0.3s ease;
        }

        .contact-item:first-child {
            border-top: 1px solid var(--border);
        }

        a.contact-item:hover {
            color: var(--accent);
            padding-left: 12px;
        }

        .contacts-map {
            height: 500px;
            overflow: hidden;
            background: var(--border);
        }

        .contacts-map iframe {
            display: block;
            width: 100%;
            height: 100%;
        }

        /* FOOTER */
        footer {
            background: var(--primary-dark);
            color: rgba(255,255,255,0.8);
            padding: 80px 0 40px;
            position: relative;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
        }

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

        .footer-brand {
            max-width: 320px;
        }

        .footer-logo {
            margin-bottom: 20px;
            display: inline-flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
        }

        .footer-logo-text-wrap {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
        }

        .footer-logo-text {
            font-family: 'MachineC', sans-serif;
            font-size: 18px;
            font-weight: 300;
            color: white;
            line-height: 1.2;
            text-align: center;
        }

        .footer-logo-subtext {
            font-size: 12px;
            font-weight: 300;
            color: rgba(255, 255, 255, 0.6);
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }

        .footer-logo-mark {
            width: 132px;
            height: 165px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .footer-logo-mark img {
            width: 100%;
            height: 100%;
        }

        .footer-description {
            font-family: 'HeliosC', sans-serif;
            font-size: 15px;
            line-height: 1.5;
            color: rgba(255,255,255,0.6);
            margin-bottom: 24px;
        }

        .footer-section h3 {
            font-family: 'MachineC', sans-serif;
            font-size: 14px;
            font-weight: 300;
            color: white;
            margin-bottom: 24px;
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            font-size: 15px;
            transition: all 0.2s ease;
            display: inline-block;
        }

        .footer-links a:hover {
            color: white;
            transform: translateX(4px);
        }

        .footer-bottom {
            padding-top: 40px;
            border-top: 1px solid rgba(255,255,255,0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 14px;
            color: rgba(255,255,255,0.5);
        }

        .footer-social {
            display: flex;
            gap: 20px;
            width: 100%;
        }

        .social-link--max {
            margin-left: auto;
        }

        .social-link {
            min-width: 40px;
            height: 40px;
            padding: 0 12px;
            border: 1px solid rgba(255,255,255,0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 14px;
            font-weight: 300;
        }

        .social-link:hover {
            background: white;
            color: var(--primary-dark);
            border-color: white;
            transform: translateY(-4px);
        }

        /* ANIMATIONS */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-label {
            animation: fadeInUp 0.6s ease 0.1s backwards;
        }

        .hero-title {
            animation: fadeInUp 0.6s ease 0.2s backwards;
        }

        .hero-description {
            animation: fadeInUp 0.6s ease 0.3s backwards;
        }

        .hero-actions {
            animation: fadeInUp 0.6s ease 0.4s backwards;
        }

        /* BURGER & MOBILE MENU */
        .burger-btn {
            display: none;
            flex-direction: column;
            justify-content: center;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 4px;
        }

        .burger-btn span {
            display: block;
            width: 22px;
            height: 2px;
            background: white;
            transition: all 0.3s ease;
        }

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

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

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

        .mobile-menu {
            display: none;
            position: fixed;
            top: 60px;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--primary-dark);
            z-index: 998;
            overflow-y: auto;
            transform: translateX(100%);
            transition: transform 0.3s ease;
        }

        .mobile-menu.active {
            transform: translateX(0);
        }

        .mobile-menu__content {
            padding: 32px 24px;
        }

        .mobile-menu__group {
            margin-bottom: 24px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding-bottom: 24px;
        }

        .mobile-menu__title {
            font-family: 'MachineC', sans-serif;
            font-size: 13px;
            font-weight: 300;
            color: rgba(255, 255, 255, 0.4);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 12px;
        }

        .mobile-menu__group a {
            display: block;
            color: white;
            text-decoration: none;
            font-size: 16px;
            font-weight: 300;
            padding: 8px 0;
            transition: color 0.2s ease;
        }

        .mobile-menu__group a:hover {
            color: var(--accent);
        }

        .mobile-menu__actions {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: 32px;
        }

        .mobile-menu__btn {
            display: block;
            text-align: center;
            padding: 18px 40px;
            font-family: 'MachineC', sans-serif;
            font-size: 16px;
            font-weight: 300;
            letter-spacing: 0.02em;
            line-height: 1.2;
            text-decoration: none;
            color: white;
            border: 1px solid rgba(255, 255, 255, 0.3);
            transition: all 0.2s ease;
        }

        .mobile-menu__btn:hover {
            border-color: white;
        }

        .mobile-menu__btn--accent {
            background: var(--accent);
            border-color: var(--accent);
        }

        .mobile-menu__btn--accent:hover {
            background: #c33a10;
        }

        /* RESPONSIVE */
        @media (max-width: 1024px) {
            .hero-title {
                font-size: 48px;
            }

            .program-block,
            .program-block--reverse {
                grid-template-columns: 1fr;
                gap: 40px;
                margin: 60px 0;
            }

            .program-title {
                font-size: 36px;
            }

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

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

            .media-title {
                font-size: 40px;
            }

            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 40px;
            }

            nav {
                gap: 32px;
            }
        }

        @media (max-width: 768px) {
            .header-content {
                padding: 0 16px;
                height: 60px;
            }

            nav {
                display: none;
            }

            .logo-text {
                display: none;
            }

            header.scrolled .logo-text {
                display: block;
            }

            header.scrolled .logo-text-wrap {
                height: 60px;
                margin-left: -8px;
                width: 189px;
            }

            header.scrolled .header-content {
                height: 60px;
            }

            header.scrolled .logo-mark {
                width: 0;
                height: 0;
                padding: 0;
                top: 0;
                overflow: hidden;
                opacity: 0;
            }

            .logo-mark {
                width: 40px;
                height: 50px;
                background: transparent;
                padding: 0;
                top: 0;
            }

            .header-actions {
                gap: 12px;
            }

            .burger-btn {
                display: flex;
            }

            .mobile-menu {
                display: block;
            }

            .header-social-link {
                display: none;
            }

            .phone-link span {
                display: none;
            }

            .lk-link span {
                display: none;
            }

            .search-panel {
                top: 60px;
            }

            .hero-content {
                padding: 0 24px;
            }

            .hero-title {
                font-size: 40px;
            }

            .hero-description {
                font-size: 18px;
            }

            .about-section {
                padding: 60px 0;
            }

            .about-container {
                padding: 0 24px;
            }

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

            .about-title {
                font-size: 24px;
            }

            .about-description {
                font-size: 16px;
            }

            .about-image {
                height: 300px;
            }

            .programs-section {
                padding: 60px 0;
            }

            .programs-container {
                padding: 0 24px;
            }

            .program-block {
                margin: 40px 0;
            }

            .program-title {
                font-size: 28px;
            }

            .program-description {
                font-size: 16px;
            }

            .memory-section {
                padding: 60px 0;
            }

            .memory-container {
                padding: 0 24px;
            }

            .memory-title {
                font-size: 36px;
                margin-bottom: 40px;
            }

            .memory-card__content {
                padding: 32px 24px;
            }

            .memory-card__title {
                font-size: 24px;
            }

            .media-section {
                padding: 60px 0;
            }

            .media-container {
                padding: 0 24px;
            }

            .media-title {
                font-size: 36px;
                margin-bottom: 40px;
            }

            .media-card__content {
                padding: 28px 24px;
            }

            .media-card__title {
                font-size: 18px;
                min-height: auto;
            }

            .partners-section {
                padding: 60px 0;
            }

            .partners-container {
                padding: 0 24px;
            }

            .partners-title {
                font-size: 36px;
                margin-bottom: 40px;
            }

            .partner-logo {
                width: 160px;
                height: 100px;
            }

            .photovideo-section {
                padding: 60px 0;
            }

            .photovideo-container {
                padding: 0 24px;
            }

            .photovideo-title {
                font-size: 36px;
                margin-bottom: 40px;
            }

            .photovideo-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .media-video {
                height: 300px;
            }

            .media-photos-grid {
                gap: 12px;
            }

            .media-photo-carousel {
                height: 180px;
            }

            .media-carousel-track img {
                height: 180px;
            }

            .contacts-section {
                padding: 60px 0;
            }

            .contacts-container {
                padding: 0 24px;
            }

            .contacts-header {
                margin-bottom: 40px;
            }

            .contacts-title {
                font-size: 36px;
            }

            .contacts-row {
                flex-direction: column;
                gap: 32px;
                padding: 40px 24px;
                margin-bottom: 60px;
            }

            .contact-divider {
                width: 80%;
                height: 1px;
            }

            .contact-link {
                font-size: 16px;
            }

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

            .contacts-map {
                height: 300px;
            }

            .footer-content {
                padding: 0 24px;
            }

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

            .footer-bottom {
                flex-direction: column;
                gap: 24px;
                text-align: center;
            }
        }
  
