        :root {
            --color-bg: #faf8f5;
            --color-text: #2c2c2c;
            --color-text-light: #6b6b6b;
            --color-accent: #8b4513;
            --color-accent-light: #a0522d;
            --color-highlight: #f5e6d3;
            --font-body: 'Lora', serif;
            --font-heading: 'Playfair Display', serif;
            --font-ui: 'Inter', sans-serif;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: var(--font-body);
            font-size: 1.2rem;
            line-height: 1.9;
            color: var(--color-text);
            background-color: var(--color-bg);
        }

        a {
            color: var(--color-accent);
            text-decoration: none;
            transition: 0.3s;
        }

        a:hover {
            color: var(--color-accent-light);
        }

        img {
            max-width: 100%;
            display: block;
        }

        /* ПРОГРЕСС-БАР ЧТЕНИЯ */
        .reading-progress {
            position: fixed;
            top: 0;
            left: 0;
            width: 0%;
            height: 3px;
            background: var(--color-accent);
            z-index: 1000;
            transition: width 0.1s;
        }

        /* ШАПКА */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(250, 248, 245, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            z-index: 100;
            padding: 1rem 2rem;
        }

        .header-content {
            max-width: 800px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .visually-hidden {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip-path: inset(50%);
            white-space: nowrap;
            border: 0;
        }

        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
        }

        .logo img {
            height: 45px;
            width: auto;
            display: block;
            transition: opacity 0.3s;
            transition: transform 0.3s;
        }

        .logo:hover img {
            opacity: 0.7;
            transform: scale(1.05);
        }

        nav {
            display: flex;
            gap: 2rem;
            font-family: var(--font-ui);
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        nav a {
            color: var(--color-text-light);
            font-weight: 600;
        }

        nav a:hover {
            color: var(--color-accent);
        }

        .lang-switcher {
            display: flex;
            gap: 0.5rem;
            margin-left: 1rem;
            padding-left: 1rem;
            border-left: 1px solid var(--color-text-light);
        }

        .lang-btn {
            background: none;
            border: none;
            color: var(--color-text-light);
            cursor: pointer;
            font-family: var(--font-ui);
            font-size: 0.8rem;
            font-weight: 600;
            padding: 0.2rem 0.4rem;
            transition: 0.3s;
        }

        .lang-btn:hover,
        .lang-btn.active {
            color: var(--color-accent);
        }

        /* БУРГЕР-КНОПКА */
        .burger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
            z-index: 101;
        }

        .burger span {
            width: 25px;
            height: 2px;
            background: var(--color-accent);
            transition: 0.3s;
        }

        .burger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .burger.active span:nth-child(2) {
            opacity: 0;
        }

        .burger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }

        /* МОБИЛЬНОЕ МЕНЮ */
        .mobile-menu {
            display: none;
            position: fixed;
            top: 60px;
            left: 0;
            width: 100%;
            background: rgba(250, 248, 245, 0.98);
            backdrop-filter: blur(10px);
            padding: 2rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            z-index: 99;
        }

        .mobile-menu.active {
            display: block;
            animation: slideDown 0.3s ease;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .mobile-menu nav {
            flex-direction: column;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .mobile-menu nav a {
            font-size: 1rem;
            padding: 0.5rem 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

        .mobile-menu .lang-switcher {
            margin-left: 0;
            padding-left: 0;
            border-left: none;
            justify-content: center;
            padding-top: 1rem;
            border-top: 1px solid rgba(0, 0, 0, 0.1);
        }

        .mobile-menu .lang-btn {
            font-size: 0.9rem;
            padding: 0.5rem 1rem;
        }

        .logo,
        nav,
        .lang-switcher {
            opacity: 0;
            transform: translateY(15px);
            animation: fadeSlideUp 0.6s ease-out forwards;
        }

        .logo {
            animation-delay: 0s;
        }

        nav {
            animation-delay: 0.15s;
        }

        .lang-switcher {
            animation-delay: 0.3s;
        }

        @keyframes fadeSlideUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ГЛАВНЫЙ КОНТЕЙНЕР */
        .story {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* ТИТУЛЬНАЯ СТРАНИЦА */
        .title-section {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 6rem 2rem;
            margin-top: 60px;
        }

        .title-section h1 {
            font-family: var(--font-heading);
            font-size: 5rem;
            font-weight: 900;
            color: var(--color-accent);
            letter-spacing: 8px;
            margin-bottom: 1rem;
        }

        .hero-logo {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 2rem;
        }

        .hero-logo img {
            max-width: 100%;
            height: auto;
            max-height: 280px;
            width: auto;
            display: block;
            animation: fadeInUp 1s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .title-section .subtitle {
            font-family: var(--font-body);
            font-style: italic;
            font-size: 1.5rem;
            color: var(--color-text-light);
            margin-bottom: 3rem;
        }

        .title-section .author {
            font-family: var(--font-ui);
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: var(--color-text-light);
            margin-bottom: 4rem;
        }

        .scroll-hint {
            position: absolute;
            bottom: 3rem;
            font-family: var(--font-ui);
            font-size: 0.8rem;
            color: var(--color-text-light);
            letter-spacing: 2px;
            animation: bounce 2s infinite;
        }

        @keyframes bounce {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-10px);
            }
        }

        /* ГЛАВЫ */
        .chapter {
            padding: 6rem 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        }

        .chapter:last-child {
            border-bottom: none;
        }

        .chapter-number {
            font-family: var(--font-ui);
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 4px;
            color: var(--color-accent);
            margin-bottom: 1rem;
            display: block;
        }

        .chapter h2 {
            font-family: var(--font-heading);
            font-size: 3rem;
            font-weight: 700;
            color: var(--color-text);
            margin-bottom: 2rem;
            line-height: 1.2;
        }

        .chapter p {
            margin-bottom: 1.8rem;
            text-align: justify;
            hyphens: auto;
        }

        .chapter p.lead {
            font-size: 1.4rem;
            line-height: 1.7;
            color: var(--color-text);
            font-weight: 400;
            margin-bottom: 2.5rem;
        }

        .chapter p.lead::first-letter {
            font-size: 3.5rem;
            font-weight: 700;
            float: left;
            line-height: 0.8;
            margin-right: 0.5rem;
            margin-top: 0.2rem;
            color: var(--color-accent);
        }

        /* ЦИТАТЫ */
        blockquote {
            margin: 3rem 0;
            padding: 2rem 3rem;
            background: var(--color-highlight);
            border-left: 4px solid var(--color-accent);
            font-style: italic;
            font-size: 1.3rem;
            line-height: 1.6;
            color: var(--color-text);
        }

        blockquote cite {
            display: block;
            margin-top: 1rem;
            font-size: 0.9rem;
            font-style: normal;
            color: var(--color-text-light);
        }

        /* ИЗОБРАЖЕНИЯ */
        .story-image {
            margin: 3rem 0;
            text-align: center;
        }

        .story-image img {
            width: 100%;
            max-width: 600px;
            margin: 0 auto;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        }

        .story-image figcaption {
            margin-top: 1rem;
            font-size: 0.9rem;
            font-style: italic;
            color: var(--color-text-light);
        }

        /* СПИСКИ ДОСТИЖЕНИЙ */
        .achievements-list {
            margin: 2rem 0;
            padding: 0;
            list-style: none;
        }

        .achievements-list li {
            padding: 1rem 0 1rem 2.5rem;
            position: relative;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

        .achievements-list li:last-child {
            border-bottom: none;
        }

        .achievements-list li::before {
            content: '→';
            position: absolute;
            left: 0;
            color: var(--color-accent);
            font-weight: 700;
            font-size: 1.2rem;
        }

        /* АЛЬБОМЫ */
        .albums-section {
            margin: 3rem 0;
        }

        .album {
            margin-bottom: 3rem;
            padding: 2rem;
            background: white;
            border: 1px solid rgba(0, 0, 0, 0.08);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        }

        .album-header {
            display: flex;
            gap: 2rem;
            align-items: start;
            margin-bottom: 1.5rem;
        }

        .album-cover {
            width: 150px;
            height: 150px;
            background: var(--color-highlight);
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            border-radius: 4px;
        }

        .album-cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .album-info h3 {
            font-family: var(--font-heading);
            font-size: 1.8rem;
            color: var(--color-text);
            margin-bottom: 0.5rem;
        }

        .album-info .meta {
            font-size: 0.9rem;
            color: var(--color-text-light);
            margin-bottom: 1rem;
        }

        .streaming-links {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-top: 1rem;
        }

        .stream-btn {
            padding: 0.5rem 1rem;
            background: var(--color-highlight);
            border: 1px solid var(--color-accent);
            font-family: var(--font-ui);
            font-size: 0.8rem;
            color: var(--color-accent);
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: 0.3s;
        }

        .stream-btn:hover {
            background: var(--color-accent);
            color: white;
        }

        /* ВИДЕО */
        .videos-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }

        .video-wrapper {
            position: relative;
            width: 100%;
            padding-bottom: 56.25%;
            /* Соотношение сторон 16:9 */
            height: 0;
            overflow: hidden;
            background: #000;
            border-radius: 4px;
            margin-bottom: 1rem;
        }

        .video-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }

        .frame {
            border: none;
        }

        .video-item {
            text-align: center;
        }

        .video-item .video-wrapper {
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }

        .video-placeholder {
            aspect-ratio: 16/9;
            background: #1a1a1a;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2rem;
            margin-bottom: 0.8rem;
        }

        .video-item p {
            font-size: 0.95rem;
            color: var(--color-text-light);
            font-style: italic;
        }

        /* ГАЛЕРЕЯ */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
            margin: 3rem 0;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 4px;
            cursor: pointer;
            aspect-ratio: 1;
            background: var(--color-highlight);
            transition: 0.3s;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .gallery-item:hover {
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
            transform: translateY(-4px);
        }

        .gallery-item:hover img {
            transform: scale(1.05);
        }

        .lightbox {
            display: none;
            position: fixed;
            z-index: 9999;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            justify-content: center;
            align-items: center;
            animation: fadeIn 0.3s;
        }

        .lightbox.active {
            display: flex;
        }

        .lightbox img {
            max-width: 90%;
            max-height: 90%;
            object-fit: contain;
            border-radius: 4px;
        }

        .lightbox-close {
            position: absolute;
            top: 2rem;
            right: 2rem;
            color: white;
            font-size: 3rem;
            cursor: pointer;
            line-height: 1;
            transition: 0.3s;
        }

        .lightbox-close:hover {
            color: var(--color-accent);
            transform: scale(1.2);
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        /* БУКИНГ */
        .booking-section {
            background: var(--color-highlight);
            margin: 3rem -2rem;
            padding: 3rem 2rem;
        }

        .epk-box {
            text-align: center;
            padding: 3rem;
            background: white;
            border: 2px solid var(--color-accent);
            margin-bottom: 3rem;
        }

        .epk-box h3 {
            font-family: var(--font-heading);
            font-size: 2rem;
            color: var(--color-text);
            margin-bottom: 1rem;
        }

        .epk-box p {
            color: var(--color-text-light);
            margin-bottom: 1.5rem;
        }

        .btn {
            display: inline-block;
            padding: 1rem 2.5rem;
            background: var(--color-accent);
            color: white;
            font-family: var(--font-ui);
            font-size: 0.9rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            border: none;
            cursor: pointer;
            transition: 0.3s;
        }

        .btn:hover {
            background: var(--color-accent-light);
            color: white;
        }

        .contact-form {
            max-width: 600px;
            margin: 0 auto;
        }

        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 1rem;
            margin-bottom: 1rem;
            border: 1px solid rgba(0, 0, 0, 0.15);
            background: white;
            font-family: var(--font-body);
            font-size: 1rem;
        }

        .contact-form textarea {
            min-height: 120px;
            resize: vertical;
        }

        /* КИТАЙ */
        .china-section {
            border-top: 3px solid #c41e3a;
            padding-top: 4rem;
        }

        .china-platforms {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }

        .china-btn {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 2rem 1rem;
            background: white;
            border: 1px solid rgba(0, 0, 0, 0.1);
            text-align: center;
            transition: 0.3s;
        }

        .china-btn:hover {
            border-color: #c41e3a;
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        }

        .china-btn .icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .china-btn strong {
            font-family: var(--font-heading);
            font-size: 1.1rem;
            color: var(--color-text);
            margin-bottom: 0.3rem;
        }

        .china-btn .chinese {
            font-size: 0.9rem;
            color: var(--color-text-light);
        }

        .qr-section {
            text-align: center;
            margin: 3rem 0;
        }

        .qr-section p {
            text-align: center;
        }

        .qr-placeholder {
            width: 250px;
            height: 250px;
            background: white;
            border: 2px solid var(--color-accent);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
        }

        .qr-placeholder img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            padding: 10px;
            background: white;
        }

        /* ФИНАЛ */
        .ending {
            text-align: center;
            padding: 6rem 2rem;
            background: var(--color-highlight);
            margin: 0 -2rem;
        }

        .ending h2 {
            font-family: var(--font-heading);
            font-size: 2.5rem;
            color: var(--color-text);
            margin-bottom: 1.5rem;
        }

        .ending p {
            font-style: italic;
            color: var(--color-text-light);
            max-width: 600px;
            margin: 0 auto 2rem;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin: 2rem 0;
            font-family: var(--font-ui);
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .copyright {
            text-align: center;
            padding: 3rem 2rem;
            font-size: 0.85rem;
            color: var(--color-text-light);
        }

        /* АДАПТИВ */
        @media (max-width: 1024px) {
            .hero-logo img {
                max-height: 220px;
            }

            .story {
                padding: 0 1.5rem;
            }

            .chapter h2 {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 768px) {
            body {
                font-size: 1.05rem;
            }

            header nav {
                display: none;
            }

            .burger {
                display: flex;
            }

            .title-section {
                margin-top: 70px;
                padding: 4rem 1rem;
            }

            .title-section h1 {
                font-size: 3rem;
                letter-spacing: 4px;
            }

            .title-section .subtitle {
                font-size: 1.2rem;
            }

            .chapter {
                padding: 4rem 0;
            }

            .chapter h2 {
                font-size: 2rem;
            }

            .chapter p.lead {
                font-size: 1.2rem;
            }

            .album-header {
                flex-direction: column;
            }

            .album-cover {
                width: 100%;
                height: 200px;
            }

            .booking-section {
                margin: 2rem -1rem;
                padding: 2rem 1rem;
            }

            .epk-box {
                padding: 2rem 1.5rem;
            }

            .ending {
                margin: 0 -1rem;
                padding: 4rem 1rem;
            }

            blockquote {
                padding: 1.5rem;
                margin: 2rem 0;
                font-size: 1.1rem;
            }

            .logo img {
                height: 35px;
            }

            .hero-logo img {
                max-height: 160px;
            }

            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 0.8rem;
            }

            .videos-grid,
            .video-grid {
                gap: 1.5rem;
            }

            .video-wrapper {
                padding-bottom: 50%;
            }

            .qr-placeholder {
                width: 250px;
                height: 250px;
            }
        }

        @media (max-width: 480px) {
            .hero-logo img {
                max-height: 120px;
            }

            .title-section h1 {
                font-size: 2.5rem;
                letter-spacing: 3px;
            }

            .chapter {
                padding: 3rem 0;
            }

            .chapter h2 {
                font-size: 1.8rem;
            }

            .chapter p.lead {
                font-size: 1.1rem;
            }

            .chapter p.lead::first-letter {
                font-size: 2.8rem;
            }

            /* Галерея */
            .gallery-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .gallery-item {
                aspect-ratio: 4/3;
            }

            .booking-section {
                margin: 2rem 0;
                padding: 2rem 1rem;
            }

            .epk-box {
                padding: 1.5rem 1rem;
            }

            .ending {
                margin: 0;
                padding: 4rem 1rem;
            }

            blockquote {
                padding: 1.2rem;
                margin: 1.5rem 0;
            }

            .qr-placeholder {
                width: 250px;
                height: 250px;
            }

            .social-links {
                flex-direction: column;
                gap: 1rem;
            }
        }

        @media (prefers-reduced-motion: reduce) {

            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
                scroll-behavior: auto !important;
            }
        }

        @media (prefers-reduced-motion: reduce) {

            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
                scroll-behavior: auto !important;
            }
        }
