/* Основные стили для сайта актёра и музыканта */

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

:root {
    --primary-color: #FFAC1D;
    --secondary-color: #EDD4C2;
    --accent-color: #FFAC1D;
    --accent-secondary: #8A4C55;
    --accent-tertiary: #FFF0EE;
    --text-color: #8A4C55;
    --text-light: #8A4C55;
    --text-on-accent: #8A4C55;
    --text-on-dark: #EDD4C2;
    --bg-color: #FFF0EE;
    --bg-light: #FFF0EE;
    --bg-medium: #EDD4C2;
    --bg-dark: #8A4C55;
    --bg-accent: #FFAC1D;
    --border-color: #EDD4C2;
    --gradient-primary: linear-gradient(135deg, #8A4C55 0%, #7a3f48 100%);
    --gradient-accent: linear-gradient(135deg, #FFAC1D 0%, #e89a15 100%);
    --gradient-cool: linear-gradient(135deg, #EDD4C2 0%, #FFF0EE 100%);
    --gradient-dark: linear-gradient(135deg, #8A4C55 0%, #7a3f48 100%);
    --shadow: 0 10px 40px rgba(138, 76, 85, 0.15);
    --shadow-hover: 0 20px 60px rgba(138, 76, 85, 0.2);
    --shadow-glow: 0 0 30px rgba(255, 172, 29, 0.3);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--bg-color);
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 25%, rgba(138, 76, 85, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(237, 212, 194, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 240, 238, 0.04) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Обновленная геометричная навигация с яркими акцентами */
.navbar {
    background: rgba(138, 76, 85, 0.95);
    backdrop-filter: blur(15px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(237, 212, 194, 0.2);
    transition: all 0.3s ease;
}

.navbar::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-bright);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    text-decoration: none;
    color: #EDD4C2;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.7rem 1.5rem;
    border-radius: 6px;
    transition: all 0.2s ease;
    position: relative;
    background: transparent;
    border: 1px solid transparent;
}

.nav-menu a:hover {
    color: #EDD4C2;
    background: rgba(237, 212, 194, 0.1);
    border-color: rgba(237, 212, 194, 0.2);
}

.nav-menu a.active {
    color: #EDD4C2;
    background: rgba(237, 212, 194, 0.15);
    border-color: rgba(237, 212, 194, 0.3);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-brand h1 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #EDD4C2;
    margin: 0;
    font-weight: 400;
    transition: color 0.2s ease;
}

.nav-brand h1:hover {
    color: #EDD4C2;
}

/* Мобильное меню */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #EDD4C2;
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

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

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

/* Обновленная авангардная главная секция с яркими акцентами */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #8A4C55 0%, #7a3f48 100%);
    color: #EDD4C2;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, 
            rgba(138, 76, 85, 0.08) 0%, 
            transparent 25%, 
            rgba(237, 212, 194, 0.06) 50%, 
            transparent 75%, 
            rgba(138, 76, 85, 0.08) 100%
        ),
        radial-gradient(circle at 30% 20%, rgba(138, 76, 85, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(237, 212, 194, 0.08) 0%, transparent 60%);
    z-index: 1;
    animation: subtleShift 20s ease-in-out infinite;
}

/* Авангардный фоновый элемент с новым фото */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        url('images/photo_2025-10-04 23.47.56.jpeg') center/cover,
        radial-gradient(circle at 20% 30%, rgba(138, 76, 85, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(237, 212, 194, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(138, 76, 85, 0.03) 0%, transparent 60%);
    z-index: 2;
    opacity: 0.25;
    filter: grayscale(60%) contrast(1.1) blur(1px) brightness(1.3);
    animation: photoShift 20s ease-in-out infinite;
}

@keyframes photoShift {
    0%, 100% { 
        transform: scale(1) rotate(0deg);
        opacity: 0.15;
    }
    25% { 
        transform: scale(1.05) rotate(0.5deg);
        opacity: 0.2;
    }
    50% { 
        transform: scale(0.95) rotate(-0.3deg);
        opacity: 0.1;
    }
    75% { 
        transform: scale(1.02) rotate(0.2deg);
        opacity: 0.18;
    }
}

@keyframes subtleShift {
    0%, 100% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(10px) translateY(-5px); }
    50% { transform: translateX(-5px) translateY(10px); }
    75% { transform: translateX(-10px) translateY(-5px); }
}

/* Абсурдный плавающий элемент с фото */
.floating-photo {
    position: fixed;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: url('images/photo_2025-10-04 23.47.56.jpeg') center/cover;
    border: 3px solid rgba(138, 76, 85, 0.3);
    box-shadow: 0 0 30px rgba(138, 76, 85, 0.4);
    z-index: 100;
    opacity: 0;
    animation: floatingPhotoAppear 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes floatingPhotoAppear {
    0%, 90%, 100% { 
        opacity: 0;
        transform: scale(0) rotate(0deg);
    }
    5% { 
        opacity: 0.8;
        transform: scale(1) rotate(360deg);
    }
    85% { 
        opacity: 0.8;
        transform: scale(1) rotate(0deg);
    }
}

.floating-photo:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-photo:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 3s;
}

.floating-photo:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 6s;
}

.floating-photo:nth-child(4) {
    top: 40%;
    left: 50%;
    animation-delay: 9s;
    background: url('images/photo_2025-10-05 00.31.14.jpeg') center/cover;
    filter: hue-rotate(180deg) saturate(1.3) contrast(1.1);
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin: 0 auto;
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 20px;
    background: rgba(237, 212, 194, 0.1);
    border: 1px solid rgba(237, 212, 194, 0.2);
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
}

.hero-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    background: rgba(237, 212, 194, 0.15);
    border-color: rgba(237, 212, 194, 0.3);
}

@keyframes heroWiggle {
    0%, 100% { 
        transform: rotate(-0.3deg) translateX(3px) translateY(0); 
    }
    25% { 
        transform: rotate(0.2deg) translateX(-2px) translateY(-1px); 
    }
    50% { 
        transform: rotate(-0.2deg) translateX(4px) translateY(1px); 
    }
    75% { 
        transform: rotate(0.1deg) translateX(-3px) translateY(-0.5px); 
    }
}

/* Геометрические элементы для hero-content */

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 15px;
    background: rgba(237, 212, 194, 0.5);
    border: 1px solid rgba(138, 76, 85, 0.3);
}

/* Удалено - перенесено в раздел изысканных элементов */

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 2px;
    opacity: 0;
    animation: fadeInUp 1s ease 0.5s forwards;
}

@keyframes titleGlow {
    0% { filter: drop-shadow(0 0 10px rgba(138, 76, 85, 0.3)); }
    100% { filter: drop-shadow(0 0 20px rgba(138, 76, 85, 0.4)); }
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0;
    color: #EDD4C2;
    animation: fadeInUp 1s ease 0.2s forwards;
    text-shadow: 0 0 15px rgba(138, 76, 85, 0.3);
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    line-height: 1.8;
    opacity: 0;
    color: #EDD4C2;
    animation: fadeInUp 1s ease 0.4s forwards;
    text-shadow: 0 0 10px rgba(138, 76, 85, 0.2);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s ease 0.6s forwards;
}

@keyframes buttonsChaos {
    0%, 100% { 
        transform: rotate(-0.3deg) translateX(3px) translateY(0); 
    }
    25% { 
        transform: rotate(0.2deg) translateX(-2px) translateY(-1px); 
    }
    50% { 
        transform: rotate(-0.2deg) translateX(4px) translateY(0.5px); 
    }
    75% { 
        transform: rotate(0.1deg) translateX(-3px) translateY(-0.5px); 
    }
}

/* Обновленные авангардные кнопки с яркими акцентами */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    text-transform: lowercase;
    letter-spacing: 1px;
    border: 1px solid;
}

.btn-primary {
    background: var(--gradient-bright);
    color: #8A4C55;
    border-color: var(--bright-secondary);
    box-shadow: var(--shadow-bright);
}

.btn-secondary {
    background: transparent;
    color: #EDD4C2;
    border-color: rgba(237, 212, 194, 0.3);
    backdrop-filter: blur(10px);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-primary:hover {
    background: var(--gradient-bright);
    color: #8A4C55;
    border-color: var(--bright-tertiary);
    box-shadow: var(--shadow-bright);
}

.btn-secondary:hover {
    background: rgba(237, 212, 194, 0.1);
    color: #EDD4C2;
    border-color: rgba(237, 212, 194, 0.5);
}

/* Авангардные секции */
.about-section, .afisha-section, .creativity-section, .reviews-section, .contact-section {
    padding: 8rem 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.about-section {
    background: 
        repeating-linear-gradient(45deg, transparent, transparent 100px, rgba(138, 76, 85, 0.01) 100px, rgba(138, 76, 85, 0.01) 200px),
        linear-gradient(135deg, rgba(138, 76, 85, 0.04) 0%, transparent 40%, rgba(237, 212, 194, 0.03) 60%, transparent 100%),
        linear-gradient(45deg, rgba(237, 212, 194, 0.02) 0%, transparent 50%),
        radial-gradient(ellipse at 25% 75%, rgba(138, 76, 85, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 75% 25%, rgba(237, 212, 194, 0.05) 0%, transparent 60%),
        radial-gradient(circle at 50% 50%, rgba(138, 76, 85, 0.02) 0%, transparent 70%),
        var(--bg-light);
    position: relative;
    overflow: hidden;
}

.afisha-section {
    background: 
        repeating-linear-gradient(90deg, transparent, transparent 120px, rgba(138, 76, 85, 0.008) 120px, rgba(138, 76, 85, 0.008) 240px),
        linear-gradient(135deg, rgba(138, 76, 85, 0.05) 0%, transparent 35%, rgba(237, 212, 194, 0.04) 65%, transparent 100%),
        linear-gradient(45deg, rgba(237, 212, 194, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 80%, rgba(138, 76, 85, 0.07) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 20%, rgba(237, 212, 194, 0.06) 0%, transparent 55%),
        radial-gradient(circle at 50% 50%, rgba(138, 76, 85, 0.02) 0%, transparent 65%),
        var(--bg-light);
    position: relative;
    overflow: hidden;
}

.creativity-section {
    background: 
        repeating-linear-gradient(135deg, transparent, transparent 150px, rgba(138, 76, 85, 0.01) 150px, rgba(138, 76, 85, 0.01) 300px),
        linear-gradient(135deg, rgba(138, 76, 85, 0.04) 0%, transparent 40%, rgba(237, 212, 194, 0.03) 60%, transparent 100%),
        linear-gradient(45deg, rgba(237, 212, 194, 0.02) 0%, transparent 50%),
        radial-gradient(ellipse at 30% 70%, rgba(138, 76, 85, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 30%, rgba(237, 212, 194, 0.05) 0%, transparent 60%),
        radial-gradient(circle at 50% 50%, rgba(138, 76, 85, 0.02) 0%, transparent 70%),
        var(--bg-light);
    position: relative;
    overflow: hidden;
}

.music-section {
    background: linear-gradient(45deg, 
        var(--bg-light) 0%, 
        rgba(138, 76, 85, 0.02) 30%, 
        var(--bg-light) 70%, 
        rgba(138, 76, 85, 0.01) 100%
    );
}

.immersive-walks-section {
    background: linear-gradient(225deg, 
        rgba(138, 76, 85, 0.01) 0%, 
        var(--bg-light) 25%, 
        rgba(138, 76, 85, 0.02) 75%, 
        var(--bg-light) 100%
    );
}

/* Стили для подразделов творчества */
.creativity-subsection {
    margin-bottom: 4rem;
}

.creativity-subsection h3 {
    font-size: 2rem;
    color: #8A4C55;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    font-weight: 600;
}

.creativity-subsection h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #8A4C55;
    border-radius: 2px;
}

.reviews-section {
    background: 
        repeating-linear-gradient(75deg, transparent, transparent 130px, rgba(138, 76, 85, 0.008) 130px, rgba(138, 76, 85, 0.008) 260px),
        linear-gradient(180deg, rgba(237, 212, 194, 0.04) 0%, transparent 40%, rgba(138, 76, 85, 0.03) 60%, transparent 100%),
        linear-gradient(90deg, rgba(138, 76, 85, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(237, 212, 194, 0.06) 0%, transparent 55%),
        radial-gradient(ellipse at 30% 70%, rgba(138, 76, 85, 0.05) 0%, transparent 55%),
        radial-gradient(circle at 70% 30%, rgba(138, 76, 85, 0.02) 0%, transparent 65%),
        var(--bg-light);
    position: relative;
    overflow: hidden;
}

.contact-section {
    background: 
        repeating-linear-gradient(60deg, transparent, transparent 110px, rgba(237, 212, 194, 0.008) 110px, rgba(237, 212, 194, 0.008) 220px),
        linear-gradient(225deg, rgba(237, 212, 194, 0.04) 0%, transparent 35%, rgba(138, 76, 85, 0.03) 65%, transparent 100%),
        linear-gradient(135deg, rgba(138, 76, 85, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 40% 60%, rgba(237, 212, 194, 0.06) 0%, transparent 55%),
        radial-gradient(ellipse at 60% 40%, rgba(138, 76, 85, 0.05) 0%, transparent 55%),
        radial-gradient(circle at 50% 50%, rgba(138, 76, 85, 0.02) 0%, transparent 65%),
        var(--bg-light);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 800px 600px at 20% 30%, rgba(138, 76, 85, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse 700px 500px at 80% 70%, rgba(237, 212, 194, 0.05) 0%, transparent 65%),
        radial-gradient(ellipse 600px 400px at 50% 50%, rgba(138, 76, 85, 0.03) 0%, transparent 70%);
    z-index: 0;
    animation: asymmetricShift 40s ease-in-out infinite;
    pointer-events: none;
}

.afisha-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 900px 700px at 15% 25%, rgba(138, 76, 85, 0.07) 0%, transparent 55%),
        radial-gradient(ellipse 750px 550px at 85% 75%, rgba(237, 212, 194, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse 650px 450px at 50% 50%, rgba(138, 76, 85, 0.03) 0%, transparent 65%);
    z-index: 0;
    animation: asymmetricShift 35s ease-in-out infinite reverse;
    pointer-events: none;
}

.creativity-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 850px 650px at 25% 35%, rgba(138, 76, 85, 0.06) 0%, transparent 58%),
        radial-gradient(ellipse 750px 550px at 75% 65%, rgba(237, 212, 194, 0.05) 0%, transparent 62%),
        radial-gradient(ellipse 600px 400px at 50% 50%, rgba(138, 76, 85, 0.03) 0%, transparent 68%);
    z-index: 0;
    animation: asymmetricShift 45s ease-in-out infinite;
    pointer-events: none;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 800px 600px at 35% 40%, rgba(237, 212, 194, 0.06) 0%, transparent 57%),
        radial-gradient(ellipse 700px 500px at 65% 60%, rgba(138, 76, 85, 0.05) 0%, transparent 63%),
        radial-gradient(ellipse 600px 400px at 50% 50%, rgba(138, 76, 85, 0.03) 0%, transparent 70%);
    z-index: 0;
    animation: asymmetricShift 38s ease-in-out infinite reverse;
    pointer-events: none;
}

/* Абсурдный элемент в секции "Обо мне" */
.about-section::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 200px;
    height: 200px;
    background: url('images/photo_2025-10-04 23.47.56.jpeg') center/cover;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    filter: hue-rotate(45deg) saturate(1.5) contrast(1.2);
    opacity: 0.2;
    z-index: 1;
    animation: distortedPhoto 15s ease-in-out infinite;
    pointer-events: none;
}

/* Авангардные фоновые элементы в секции афиши */
.afisha-section::after {
    content: '';
    position: absolute;
    top: 15%;
    left: 5%;
    width: 180px;
    height: 180px;
    background: url('images/photo_2025-10-05 00.31.06.jpeg') center/cover;
    border-radius: 50% 20% 80% 30% / 30% 80% 20% 70%;
    filter: sepia(0.8) hue-rotate(60deg) saturate(1.3) contrast(1.1);
    opacity: 0.15;
    z-index: 1;
    animation: worksPhotoFloat 18s ease-in-out infinite;
    pointer-events: none;
}

/* Авангардные фоновые элементы в секции контактов */
.contact-section::after {
    content: '';
    position: absolute;
    bottom: 20%;
    right: 8%;
    width: 160px;
    height: 160px;
    background: url('images/photo_2025-10-05 00.31.10.jpeg') center/cover;
    border-radius: 40% 60% 30% 70% / 60% 40% 70% 30%;
    filter: invert(0.2) hue-rotate(300deg) saturate(1.4) contrast(1.2);
    opacity: 0.18;
    z-index: 1;
    animation: contactPhotoFloat 22s ease-in-out infinite;
    pointer-events: none;
}

@keyframes contactPhotoFloat {
    0%, 100% { 
        transform: scale(1) rotate(0deg) translateX(0);
        border-radius: 40% 60% 30% 70% / 60% 40% 70% 30%;
        filter: invert(0.2) hue-rotate(300deg) saturate(1.4) contrast(1.2);
    }
    25% { 
        transform: scale(1.15) rotate(120deg) translateX(15px);
        border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
        filter: invert(0.1) hue-rotate(60deg) saturate(1.7) contrast(1.4);
    }
    50% { 
        transform: scale(0.85) rotate(240deg) translateX(-10px);
        border-radius: 30% 70% 40% 60% / 70% 30% 60% 40%;
        filter: invert(0.3) hue-rotate(180deg) saturate(1.1) contrast(1);
    }
    75% { 
        transform: scale(1.08) rotate(360deg) translateX(8px);
        border-radius: 70% 30% 60% 40% / 30% 70% 40% 60%;
        filter: invert(0.15) hue-rotate(240deg) saturate(1.5) contrast(1.3);
    }
}

/* Изысканные авангардные элементы */

/* Обновленный авангардный заголовок с яркими акцентами */
.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0;
    color: #EDD4C2;
    position: relative;
    font-weight: 400;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(237, 212, 194, 0.3), 0 0 40px rgba(138, 76, 85, 0.2);
    animation: fadeInUp 1s ease forwards, titleGlow 4s ease-in-out infinite 1s;
    transition: all 0.3s ease;
}

.hero-title:hover {
    transform: scale(1.02);
    text-shadow: 0 0 30px rgba(237, 212, 194, 0.5), 0 0 60px rgba(138, 76, 85, 0.3);
}

@keyframes titleGlow {
    0%, 100% { 
        text-shadow: 0 0 20px rgba(237, 212, 194, 0.3), 0 0 40px rgba(138, 76, 85, 0.2);
    }
    50% { 
        text-shadow: 0 0 30px rgba(237, 212, 194, 0.4), 0 0 60px rgba(138, 76, 85, 0.25);
    }
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--gradient-bright);
    border-radius: 2px;
    opacity: 0;
    animation: fadeInUp 1s ease 0.5s forwards, underlineChaos 6s ease-in-out infinite 1.5s;
}

@keyframes titleChaos {
    0%, 100% { 
        transform: rotate(-0.5deg) translateX(5px) translateY(0); 
    }
    25% { 
        transform: rotate(0.3deg) translateX(-2px) translateY(-1px); 
    }
    50% { 
        transform: rotate(-0.3deg) translateX(6px) translateY(1px); 
    }
    75% { 
        transform: rotate(0.2deg) translateX(-3px) translateY(-0.5px); 
    }
}

@keyframes underlineChaos {
    0%, 100% { 
        transform: translateX(-50%) rotate(0deg) scaleX(1); 
    }
    25% { 
        transform: translateX(-50%) rotate(2deg) scaleX(1.2); 
    }
    50% { 
        transform: translateX(-50%) rotate(-1deg) scaleX(0.8); 
    }
    75% { 
        transform: translateX(-50%) rotate(1deg) scaleX(1.1); 
    }
}

/* Сложные градиентные паттерны */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, 
            rgba(138, 76, 85, 0.08) 0%, 
            transparent 15%, 
            rgba(138, 76, 85, 0.06) 30%, 
            transparent 45%, 
            rgba(138, 76, 85, 0.04) 60%, 
            transparent 75%, 
            rgba(138, 76, 85, 0.08) 100%
        ),
        linear-gradient(-45deg, 
            transparent 0%, 
            rgba(138, 76, 85, 0.03) 20%, 
            transparent 40%, 
            rgba(138, 76, 85, 0.05) 60%, 
            transparent 80%, 
            rgba(138, 76, 85, 0.03) 100%
        ),
        radial-gradient(circle at 30% 20%, rgba(138, 76, 85, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 70% 80%, rgba(138, 76, 85, 0.08) 0%, transparent 50%);
    z-index: 1;
}

/* Микроанимации для секций */
.about-section {
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, 
            transparent 0%, 
            rgba(138, 76, 85, 0.02) 25%, 
            transparent 50%, 
            rgba(138, 76, 85, 0.02) 75%, 
            transparent 100%
        );
    animation: subtleShift 15s ease-in-out infinite;
    z-index: 0;
}

@keyframes subtleShift {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(10px); }
}

/* Асимметричные акценты */
.works-section {
    position: relative;
}

.works-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(138, 76, 85, 0.05) 0%, 
        transparent 30%, 
        rgba(138, 76, 85, 0.03) 70%, 
        transparent 100%
    );
    z-index: 0;
}

.contact-section {
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(0deg, 
        rgba(138, 76, 85, 0.04) 0%, 
        transparent 50%
    );
    z-index: 0;
}

/* Скрытие элементов */
.hidden {
    display: none !important;
}

/* Авангардные карточки работ */
.work-card {
    background: linear-gradient(135deg, rgba(255, 240, 238, 0.95) 0%, rgba(237, 212, 194, 0.9) 100%);
    backdrop-filter: blur(15px);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 1px solid rgba(138, 76, 85, 0.2);
    position: relative;
    overflow: hidden;
    margin: 0; /* Убираем возможные отступы */
}

.work-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-bright);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s ease;
}

.work-card:hover {
    transform: translateY(-8px) rotateX(2deg);
    box-shadow: 0 25px 50px rgba(138, 76, 85, 0.2);
    border-color: rgba(138, 76, 85, 0.3);
}

.work-card:hover::before {
    transform: scaleY(1);
    transform-origin: top;
}

/* Тонкие микроанимации для фотографий */
.main-photo-container {
    position: relative;
}

.main-photo-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(138, 76, 85, 0.1) 0%, 
        transparent 50%, 
        rgba(138, 76, 85, 0.1) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.main-photo-container:hover::after {
    opacity: 1;
}

/* Поп-арт стиль - агрессивный и сумасшедший дизайн */

/* Skeleton loaders */
.skeleton-text {
    background: linear-gradient(90deg, #e0e0e0 25%, #f0f0f0 50%, #e0e0e0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 4px;
    min-height: 1em;
    vertical-align: middle;
}

.skeleton-bio {
    line-height: 1.8;
}

.skeleton-bio .skeleton-text {
    height: 1.2em;
    border-radius: 4px;
}

.skeleton-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.skeleton-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(90deg, #e0e0e0 25%, #f0f0f0 50%, #e0e0e0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 0;
}

.skeleton-content {
    padding: 1.5rem;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* Индикатор загрузки (для обратной совместимости) */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(237, 212, 194, 0.3), transparent);
    animation: loading-shine 1.5s infinite;
}

@keyframes loading-shine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

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

/* Обновленная авангардная цветовая палитра с ярким акцентом */
:root {
    --primary-color: #FFAC1D;
    --secondary-color: #EDD4C2;
    --accent-color: #FFAC1D;
    --accent-secondary: #8A4C55;
    --accent-tertiary: #FFF0EE;
    --bright-accent: #FFAC1D;
    --bright-secondary: #EDD4C2;
    --bright-tertiary: #8A4C55;
    --text-color: #8A4C55;
    --text-light: #8A4C55;
    --text-on-accent: #8A4C55;
    --text-on-dark: #EDD4C2;
    --bg-color: #FFF0EE;
    --bg-light: #FFF0EE;
    --bg-medium: #EDD4C2;
    --bg-dark: #8A4C55;
    --bg-accent: #FFAC1D;
    --border-color: #EDD4C2;
    --gradient-primary: linear-gradient(135deg, #8A4C55 0%, #7a3f48 100%);
    --gradient-accent: linear-gradient(135deg, #FFAC1D 0%, #e89a15 100%);
    --gradient-cool: linear-gradient(135deg, #EDD4C2 0%, #FFF0EE 100%);
    --gradient-dark: linear-gradient(135deg, #8A4C55 0%, #7a3f48 100%);
    --gradient-bright: linear-gradient(135deg, #FFAC1D 0%, #e89a15 100%);
    --shadow: 0 10px 40px rgba(138, 76, 85, 0.15);
    --shadow-hover: 0 20px 60px rgba(138, 76, 85, 0.2);
    --shadow-glow: 0 0 30px rgba(255, 172, 29, 0.3);
    --shadow-bright: 0 0 20px rgba(255, 172, 29, 0.4);
}

.about-section h2,
.afisha-section h2,
.creativity-section h2,
.reviews-section h2,
.contact-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    text-transform: lowercase;
    letter-spacing: 2px;
    font-weight: 400;
    z-index: 1;
    animation: fadeInUp 1s ease forwards;
}

/* Эффект вырезок из газет для заголовков */
.newspaper-heading {
    display: block;
    text-align: center;
    line-height: 1.2;
    width: 100%;
}

.newspaper-letter {
    display: inline-block;
    position: relative;
    color: #8A4C55;
    font-weight: 400;
    /* Используем переменные для случайных размеров padding */
    padding: var(--padding-top, 0.12em) var(--padding-right, 0.1em) var(--padding-bottom, 0.12em) var(--padding-left, 0.1em);
    margin: 0 0.08em;
    background: #EDD4C2;
    transform-origin: center;
    /* Неровная обводка через псевдоэлемент */
    overflow: visible;
    /* Статичные случайные повороты и смещения */
    transform: rotate(var(--letter-rotate, 0deg)) translateY(var(--letter-lift, 0px));
    /* Рваные внутренние края */
    clip-path: var(--clip-path-inner, polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%));
    /* Тени для выделения на фоне */
    box-shadow: 
        0 2px 8px rgba(138, 76, 85, 0.2),
        0 4px 12px rgba(138, 76, 85, 0.15),
        0 1px 3px rgba(0, 0, 0, 0.1);
}

.newspaper-letter::before {
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    background: #8A4C55;
    z-index: -1;
    /* Используем уникальный clip-path для внешней обводки из JavaScript */
    clip-path: var(--clip-path-outer, polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%));
}

.newspaper-letter::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #EDD4C2;
    z-index: -1;
    /* Рваные внутренние края для ::after тоже */
    clip-path: var(--clip-path-inner, polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%));
}

.newspaper-space {
    display: inline-block;
    width: 0.3em;
}

/* Статичные случайные повороты и смещения для разных букв */
.newspaper-letter:nth-child(1) { --letter-rotate: -2deg; --letter-lift: -2px; }
.newspaper-letter:nth-child(2) { --letter-rotate: 1.5deg; --letter-lift: 1px; }
.newspaper-letter:nth-child(3) { --letter-rotate: -1deg; --letter-lift: -3px; }
.newspaper-letter:nth-child(4) { --letter-rotate: 2.5deg; --letter-lift: 0px; }
.newspaper-letter:nth-child(5) { --letter-rotate: -1.5deg; --letter-lift: -1px; }
.newspaper-letter:nth-child(6) { --letter-rotate: 1deg; --letter-lift: 2px; }
.newspaper-letter:nth-child(7) { --letter-rotate: -2.5deg; --letter-lift: -2px; }
.newspaper-letter:nth-child(8) { --letter-rotate: 0.5deg; --letter-lift: 1px; }
.newspaper-letter:nth-child(9) { --letter-rotate: -1.8deg; --letter-lift: -1px; }
.newspaper-letter:nth-child(10) { --letter-rotate: 2deg; --letter-lift: 0px; }
.newspaper-letter:nth-child(11) { --letter-rotate: -0.5deg; --letter-lift: -2px; }
.newspaper-letter:nth-child(12) { --letter-rotate: 1.8deg; --letter-lift: 1px; }
.newspaper-letter:nth-child(13) { --letter-rotate: -2.2deg; --letter-lift: -1px; }
.newspaper-letter:nth-child(14) { --letter-rotate: 0.8deg; --letter-lift: 2px; }
.newspaper-letter:nth-child(15) { --letter-rotate: -1.2deg; --letter-lift: -2px; }
.newspaper-letter:nth-child(16) { --letter-rotate: 2.2deg; --letter-lift: 0px; }
.newspaper-letter:nth-child(17) { --letter-rotate: -0.8deg; --letter-lift: -1px; }
.newspaper-letter:nth-child(18) { --letter-rotate: 1.2deg; --letter-lift: 1px; }
.newspaper-letter:nth-child(19) { --letter-rotate: -2.8deg; --letter-lift: -3px; }
.newspaper-letter:nth-child(20) { --letter-rotate: 1.3deg; --letter-lift: 0px; }

/* Для букв после 20-й применяем циклический паттерн */
.newspaper-letter:nth-child(n+21):nth-child(odd) { --letter-rotate: -1.5deg; --letter-lift: -1px; }
.newspaper-letter:nth-child(n+21):nth-child(even) { --letter-rotate: 1.5deg; --letter-lift: 1px; }
.newspaper-letter:nth-child(n+21):nth-child(3n) { --letter-rotate: -2deg; --letter-lift: -2px; }
.newspaper-letter:nth-child(n+21):nth-child(4n) { --letter-rotate: 2deg; --letter-lift: 2px; }
.newspaper-letter:nth-child(n+21):nth-child(5n) { --letter-rotate: -0.5deg; --letter-lift: 0px; }

/* Clip-path теперь генерируется индивидуально для каждой буквы через JavaScript */

.about-section h2 {
    animation-delay: 0s;
}

.afisha-section h2 {
    animation-delay: 0.1s;
}

.creativity-section h2 {
    animation-delay: 0.2s;
}

.reviews-section h2 {
    animation-delay: 0.3s;
}

.contact-section h2 {
    animation-delay: 0.4s;
}

@keyframes sectionTitleChaos {
    0%, 100% { 
        transform: rotate(-0.3deg) translateX(6px) translateY(0); 
    }
    25% { 
        transform: rotate(0.3deg) translateX(-3px) translateY(-1px); 
    }
    50% { 
        transform: rotate(-0.4deg) translateX(7px) translateY(1px); 
    }
    75% { 
        transform: rotate(0.2deg) translateX(-4px) translateY(-0.5px); 
    }
}

/* Полоска под заголовками убрана */
.about-section h2::after,
.afisha-section h2::after,
.creativity-section h2::after,
.reviews-section h2::after,
.contact-section h2::after {
    display: none;
}

/* Обо мне */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-content:nth-child(even) {
    grid-template-columns: 1fr 1fr;
}

.about-text {
    transform: translateX(0);
    opacity: 1 !important;
    visibility: visible !important;
    text-align: left;
}

.about-photo {
    transform: translateX(0);
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(0);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(0);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.about-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.about-text p:last-child {
    margin-bottom: 0;
}

#about-bio {
    opacity: 1;
    visibility: visible;
}

#about-bio p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    opacity: 1;
    visibility: visible;
}

#about-bio p:last-child {
    margin-bottom: 0;
}

.about-image {
    text-align: center;
}

/* Главная фотография */
.main-photo-container {
    width: 300px;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    margin: 0 auto 30px;
    position: relative;
    box-shadow: 0 15px 35px rgba(138, 76, 85, 0.3);
    border: 2px solid rgba(138, 76, 85, 0.2);
    transition: all 0.4s ease;
}

.main-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, opacity 0.3s ease;
}

.main-photo-container:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 25px 50px rgba(138, 76, 85, 0.4);
    border-color: rgba(138, 76, 85, 0.4);
}

.main-photo-container:hover .main-photo {
    transform: scale(1.1);
}

.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(138, 76, 85, 0.1) 0%, rgba(138, 76, 85, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.main-photo-container:hover .photo-overlay {
    opacity: 1;
}

/* Галерея фотографий */
.photo-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    max-width: 300px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    height: 80px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.gallery-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-photo {
    transform: scale(1.1);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(138, 76, 85, 0.2) 0%, rgba(138, 76, 85, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.gallery-item:hover::before {
    opacity: 1;
}

/* Фотографии в работах */
.work-photo {
    margin: 1rem 0;
    text-align: center;
}

.work-photo img {
    max-width: 100%;
    max-height: 200px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    object-fit: cover;
    transition: transform 0.3s ease;
}

.work-photo img:hover {
    transform: scale(1.02);
}

/* Ссылки в описаниях работ */
.work-description a {
    color: #8A4C55;
    text-decoration: underline;
    transition: color 0.3s ease;
    font-weight: 500;
}

.work-description a:hover {
    color: #FFAC1D;
}

/* Стили для Афиши */
.events-container {
    margin-bottom: 3rem;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.event-card {
    background: linear-gradient(135deg, rgba(255, 240, 238, 0.95) 0%, rgba(237, 212, 194, 0.9) 100%);
    backdrop-filter: blur(15px);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 1px solid rgba(237, 212, 194, 0.2);
    position: relative;
    overflow: hidden;
}

.event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-accent);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s ease;
}

.event-card:hover {
    transform: translateY(-8px) rotateX(2deg);
    box-shadow: 0 25px 50px rgba(138, 76, 85, 0.2);
    border-color: rgba(138, 76, 85, 0.3);
}

.event-card:hover::before {
    transform: scaleY(1);
    transform-origin: top;
}

.event-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.event-date {
    display: inline-block;
    background: rgba(138, 76, 85, 0.15);
    color: #8A4C55;
    padding: 0.4rem 1rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(138, 76, 85, 0.2);
}

.event-type {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition: all 0.2s ease;
}

.event-type-theater {
    background: rgba(138, 76, 85, 0.2) !important;
    color: #8A4C55 !important;
    border: 1px solid rgba(138, 76, 85, 0.3) !important;
}

.event-type-cinema {
    background: rgba(138, 76, 85, 0.2) !important;
    color: #8A4C55 !important;
    border: 1px solid rgba(138, 76, 85, 0.3) !important;
}

.event-type-music {
    background: rgba(138, 76, 85, 0.2) !important;
    color: #8A4C55 !important;
    border: 1px solid rgba(138, 76, 85, 0.3) !important;
}

.event-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #8A4C55;
}

.event-role {
    color: #8A4C55;
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.event-photo {
    margin: 1rem 0;
    text-align: center;
}

.event-photo img {
    max-width: 100%;
    max-height: 200px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    object-fit: cover;
    transition: transform 0.3s ease;
}

.event-photo img:hover {
    transform: scale(1.02);
}

.event-description {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

.event-description a {
    color: #8A4C55;
    text-decoration: underline;
    transition: color 0.3s ease;
    font-weight: 500;
}

.event-description a:hover {
    color: #FFAC1D;
}

/* Архив событий */
.archive-container {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid rgba(138, 76, 85, 0.1);
}

.archive-container h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    text-align: center;
    opacity: 0.8;
}

/* Сообщение о пустых событиях */
.no-events-message {
    text-align: center;
    padding: 3rem 2rem;
    color: var(--text-light);
    background: rgba(237, 212, 194, 0.05);
    border-radius: 15px;
    margin: 2rem 0;
}

.no-events-message h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.no-events-message p {
    font-size: 1rem;
    opacity: 0.8;
}

/* Стили для спектаклей */
.performances-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.performance-card {
    background: linear-gradient(135deg, rgba(255, 240, 238, 0.95) 0%, rgba(237, 212, 194, 0.9) 100%);
    backdrop-filter: blur(15px);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(237, 212, 194, 0.2);
    position: relative;
    overflow: hidden;
}

.performance-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-cool);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s ease;
}

.performance-card:hover::before {
    transform: scaleY(1);
    transform-origin: top;
}

.performance-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.performance-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #8A4C55;
}

.performance-date {
    background: rgba(138, 76, 85, 0.15);
    color: #8A4C55;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(138, 76, 85, 0.2);
}

.performance-description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.performance-photos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.performance-photos img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.performance-photos img:hover {
    transform: scale(1.02);
}

.performance-videos {
    margin-top: 1.5rem;
}

.video-player {
    margin-bottom: 1.5rem;
}

.video-player h4 {
    font-size: 1.1rem;
    color: #8A4C55;
    margin-bottom: 0.5rem;
}

.video-player iframe {
    width: 100%;
    height: 250px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.video-link {
    display: inline-block;
    background: rgba(138, 76, 85, 0.15);
    color: #8A4C55;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(138, 76, 85, 0.2);
}

.video-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Стили для музыки */
.music-player-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.track-card {
    background: linear-gradient(135deg, rgba(255, 240, 238, 0.95) 0%, rgba(237, 212, 194, 0.9) 100%);
    backdrop-filter: blur(15px);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(237, 212, 194, 0.2);
    position: relative;
    overflow: hidden;
}

.track-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-tertiary);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s ease;
}

.track-card:hover::before {
    transform: scaleY(1);
    transform-origin: top;
}

.track-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #8A4C55;
    margin-bottom: 0.5rem;
}

.track-description {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.track-platform {
    margin-bottom: 1rem;
}

.platform-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.platform-spotify {
    background: rgba(30, 215, 96, 0.1);
    color: #1ed760;
    border: 1px solid rgba(30, 215, 96, 0.3);
}

.platform-yandex {
    background: rgba(255, 0, 0, 0.1);
    color: #ff0000;
    border: 1px solid rgba(255, 0, 0, 0.3);
}

.track-player {
    text-align: center;
}

.track-player iframe {
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.music-link {
    display: inline-block;
    background: rgba(138, 76, 85, 0.15);
    color: #8A4C55;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(138, 76, 85, 0.2);
}

.music-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Яндекс.Музыка плеер */
.yandex-music-player {
    width: 100%;
    margin-bottom: 1rem;
}

.yandex-music-placeholder {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 0, 0, 0.05);
    border-radius: 12px;
    border: 2px dashed rgba(255, 0, 0, 0.3);
}

.yandex-music-placeholder svg {
    margin: 0 auto;
}

/* Стили для иммерсивных прогулок */
.immersive-walks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.walk-card {
    background: linear-gradient(135deg, rgba(255, 240, 238, 0.95) 0%, rgba(237, 212, 194, 0.9) 100%);
    backdrop-filter: blur(15px);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(237, 212, 194, 0.2);
    position: relative;
    overflow: hidden;
}

.walk-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-accent);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s ease;
}

.walk-card:hover::before {
    transform: scaleY(1);
    transform-origin: top;
}

.walk-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.walk-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #8A4C55;
}

.walk-date {
    background: rgba(138, 76, 85, 0.15);
    color: #8A4C55;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(138, 76, 85, 0.2);
}

.walk-description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.walk-photos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.walk-photos img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.walk-photos img:hover {
    transform: scale(1.02);
}

.walk-videos {
    margin-top: 1.5rem;
}

.works-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(52, 73, 94, 0.8) 100%);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 0.6rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem;
    border: 1px solid rgba(237, 212, 194, 0.1);
    position: relative;
}

.works-tabs::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-accent);
    border-radius: 27px;
    z-index: -1;
    opacity: 0.5;
}

.work-tab {
    flex: 1;
    padding: 1rem 1.8rem;
    border: none;
    background: transparent;
    color: rgba(237, 212, 194, 0.7);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 20px;
    text-transform: lowercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.work-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-accent);
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 20px;
    z-index: -1;
}

.work-tab.active {
    color: #EDD4C2;
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(138, 76, 85, 0.4);
}

.work-tab.active::before {
    opacity: 1;
    transform: scale(1);
}

.work-tab:hover:not(.active) {
    color: rgba(237, 212, 194, 0.9);
    transform: translateY(-1px);
    background: rgba(237, 212, 194, 0.05);
}

.works-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.works-content.active {
    display: block;
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

@keyframes cardFloatOdd {
    0%, 100% { 
        transform: translateX(-4px) rotate(-0.3deg) translateY(0); 
    }
    50% { 
        transform: translateX(-6px) rotate(-0.4deg) translateY(-3px); 
    }
}

@keyframes cardFloatEven {
    0%, 100% { 
        transform: translateX(4px) rotate(0.3deg) translateY(0); 
    }
    50% { 
        transform: translateX(6px) rotate(0.4deg) translateY(-3px); 
    }
}

.work-card {
    background: linear-gradient(135deg, rgba(255, 240, 238, 0.95) 0%, rgba(237, 212, 194, 0.9) 100%);
    backdrop-filter: blur(15px);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 1px solid rgba(237, 212, 194, 0.2);
    position: relative;
    overflow: hidden;
}

.work-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-accent);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s ease;
}

.work-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.1) 0%, transparent 70%);
    opacity: 0;
    transform: scale(0);
    transition: all 0.4s ease;
    z-index: -1;
}

.work-card:hover {
    transform: translateY(-8px) rotateX(2deg);
    box-shadow: 0 25px 50px rgba(138, 76, 85, 0.2);
    border-color: rgba(138, 76, 85, 0.3);
}

.work-card:hover::before {
    transform: scaleY(1);
    transform-origin: top;
}

.work-card:hover::after {
    opacity: 1;
    transform: scale(1);
}

.work-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #8A4C55;
}

.work-year {
    display: inline-block;
    background: rgba(138, 76, 85, 0.15);
    color: #8A4C55;
    padding: 0.4rem 1rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(138, 76, 85, 0.2);
    position: relative;
    overflow: hidden;
}

.work-year::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(237, 212, 194, 0.3), transparent);
    transition: left 0.6s ease;
}

.work-card:hover .work-year::before {
    left: 100%;
}

.work-description {
    color: var(--text-light);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.work-role {
    font-weight: 500;
    color: #8A4C55;
    margin-bottom: 0.5rem;
}

/* Отзывы */
.reviews-section {
    position: relative;
}

/* Текстовые отзывы - карусель */
.text-reviews-container {
    position: relative;
    margin-bottom: 5rem;
    padding: 3rem 2rem;
    overflow: visible;
}

.text-reviews-carousel {
    display: flex;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 2rem;
    padding: 1rem 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.text-reviews-carousel::-webkit-scrollbar {
    display: none;
}

.text-review-card {
    min-width: calc(100% - 4rem);
    scroll-snap-align: start;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(138, 76, 85, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    flex-shrink: 0;
    margin: 0 2rem;
}

.text-review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.text-review-author {
    font-weight: 600;
    color: #8A4C55;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.text-review-text {
    color: var(--text-color);
    line-height: 1.8;
    font-size: 1.1rem;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.carousel-btn {
    background: rgba(138, 76, 85, 0.9);
    color: #EDD4C2;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
}

.carousel-btn:hover {
    background: #8A4C55;
    transform: scale(1.1);
    box-shadow: var(--shadow-hover);
}

.carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Видео отзывы */
.video-reviews-container {
    margin-top: 3rem;
}

.video-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.video-review-item {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 соотношение */
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: rgba(138, 76, 85, 0.1);
}

.video-review-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.video-review-item iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 15px;
}

/* Контакты */
.contact-section {
    background: var(--bg-light);
    position: relative;
}

/* Обратная связь */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-info {
    display: grid;
    gap: 2rem;
    transform: translateX(0);
}

.contact-form {
    transform: translateX(0);
}

.contact-item {
    background: linear-gradient(135deg, 
        rgba(237, 212, 194, 0.1) 0%, 
        rgba(138, 76, 85, 0.05) 50%, 
        rgba(237, 212, 194, 0.1) 100%
    );
    backdrop-filter: blur(15px);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(138, 76, 85, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.contact-item:nth-child(odd) {
    transform: translateX(-1px);
}

.contact-item:nth-child(even) {
    transform: translateX(1px);
}

.contact-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-hover);
    border-color: rgba(138, 76, 85, 0.4);
}

.contact-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #8A4C55;
}

.contact-item p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.social-links-centered {
    justify-content: center;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: white;
    color: var(--text-color);
    text-decoration: none;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.social-icon {
    font-size: 1.2rem;
    line-height: 1;
}

.social-link-telegram {
    background: linear-gradient(135deg, #0088cc 0%, #229ED9 100%);
    color: #EDD4C2;
}

.social-link-telegram:hover {
    background: linear-gradient(135deg, #0077b5 0%, #1a8cd0 100%);
    color: #EDD4C2;
}

.social-link-instagram {
    background: linear-gradient(135deg, #833AB4 0%, #FD1D1D 50%, #FCAF45 100%);
    color: #EDD4C2;
}

.social-link-instagram:hover {
    background: linear-gradient(135deg, #7229a0 0%, #e01a1a 50%, #e09a3d 100%);
    color: #EDD4C2;
}

/* Форма обратной связи */
.contact-form-wrapper {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.contact-form-wrapper h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #8A4C55;
    text-align: center;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    color: var(--text-color);
    background: white;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(138, 76, 85, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

/* Подвал */
.footer {
    background: rgba(138, 76, 85, 0.95);
    color: #EDD4C2;
    text-align: center;
    padding: 1.5rem 0;
    position: relative;
    border-top: 1px solid rgba(237, 212, 194, 0.2);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-bright);
}

/* Модальное окно */
.modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: white;
    margin: 5% auto;
    padding: 3rem;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    position: relative;
    max-height: 80vh;
    overflow-y: auto;
    animation: modalSlideIn 0.3s ease;
}

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    color: var(--text-light);
    transition: color 0.3s ease;
}

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

#modal-poem-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #8A4C55;
}

#modal-poem-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    white-space: pre-line;
    font-style: italic;
}

/* Анимации */
@keyframes subtitleChaos {
    0%, 100% { 
        transform: rotate(0.3deg) translateX(-3px) translateY(0); 
    }
    25% { 
        transform: rotate(-0.2deg) translateX(2px) translateY(-0.5px); 
    }
    50% { 
        transform: rotate(0.4deg) translateX(-4px) translateY(0.5px); 
    }
    75% { 
        transform: rotate(-0.3deg) translateX(3px) translateY(-0.3px); 
    }
}

@keyframes descriptionChaos {
    0%, 100% { 
        transform: rotate(-0.2deg) translateX(6px) translateY(0); 
    }
    25% { 
        transform: rotate(0.2deg) translateX(-2px) translateY(-0.5px); 
    }
    50% { 
        transform: rotate(-0.3deg) translateX(7px) translateY(0.5px); 
    }
    75% { 
        transform: rotate(0.2deg) translateX(-3px) translateY(-0.3px); 
    }
}

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOutRight {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(100px);
    }
}

/* Дополнительные анимации */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes asymmetricShift {
    0%, 100% { 
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }
    25% { 
        transform: translate(20px, -15px) scale(1.05);
        opacity: 0.95;
    }
    50% { 
        transform: translate(-15px, 20px) scale(0.98);
        opacity: 1;
    }
    75% { 
        transform: translate(15px, 10px) scale(1.02);
        opacity: 0.97;
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Плавающие элементы для декора */
.hero::after {
    animation: float 6s ease-in-out infinite;
}

.work-card:nth-child(odd) {
    animation: float 8s ease-in-out infinite;
}

.work-card:nth-child(even) {
    animation: float 8s ease-in-out infinite reverse;
}

/* Стили для активных пунктов меню остаются в предыдущих правилах */

/* Адаптивность */
/* Мобильная версия - заголовки не переносятся, уменьшаются пропорционально */
@media (max-width: 768px) {
    .newspaper-heading {
        white-space: nowrap;
        overflow: hidden;
        font-size: clamp(1.5rem, 8vw, 3.2rem);
    }
    
    .about-section h2,
    .afisha-section h2,
    .creativity-section h2,
    .reviews-section h2,
    .contact-section h2 {
        font-size: clamp(1.5rem, 8vw, 3.2rem);
        white-space: nowrap;
        overflow: hidden;
    }
    
    .newspaper-letter {
        font-size: inherit;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(138, 76, 85, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 0;
        transition: left 0.3s ease;
        gap: 2rem;
        z-index: 999;
        overflow-y: auto;
    }
    
    .nav-menu a {
        color: rgba(237, 212, 194, 0.9);
        font-size: 1.3rem;
        padding: 1.5rem 2rem;
        width: 280px;
        text-align: center;
        border-radius: 12px;
        background: rgba(237, 212, 194, 0.05);
        border: 1px solid rgba(237, 212, 194, 0.1);
        transition: all 0.3s ease;
        margin: 0;
        display: block;
    }
    
    .nav-menu a:hover {
        background: rgba(237, 212, 194, 0.1);
        border-color: rgba(237, 212, 194, 0.2);
        transform: translateY(-2px);
    }
    
    .nav-menu a.active {
        background: rgba(138, 76, 85, 0.2);
        border-color: rgba(138, 76, 85, 0.4);
        color: #EDD4C2;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 0 1rem;
        max-width: none;
        margin: 0;
        display: flex;
        flex-direction: column;
    }
    
    .about-content .about-text {
        order: 2;
        text-align: center;
        margin-top: 1rem;
    }
    
    .about-content .about-image {
        order: 1;
        margin-bottom: 0;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
        text-align: center;
        max-width: none;
        margin: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .contact-info {
        transform: translateX(0);
        margin: 0;
        width: 100%;
        max-width: 400px;
    }
    
    .contact-form-wrapper {
        transform: translateX(0);
        margin: 0;
        width: 100%;
        max-width: 400px;
    }
    
    .contact-item {
        margin: 0 auto;
        max-width: 400px;
    }
    
    .works-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .work-card {
        margin: 0;
    }
    
    .creativity-section .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .creativity-subsection {
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .creativity-subsection h3 {
        text-align: left !important;
        padding-left: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        font-size: 2rem;
        width: 100% !important;
    }
    
    .creativity-subsection h3::after {
        left: 0 !important;
        transform: none !important;
    }
    
    .performances-grid,
    .music-player-container,
    .immersive-walks-grid {
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        width: 100% !important;
        grid-template-columns: 1fr !important;
    }
    
    .main-photo-container {
        width: 200px;
        height: 200px;
        margin: 0 auto 2rem;
    }
    
    .photo-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-top: 1rem;
    }
    
    .floating-photo {
        display: none;
    }
    
    .about-section::after,
    .works-section::after,
    .contact-section::after {
        display: none;
    }
    
    .works-section {
        padding-top: 6rem;
    }
    
    .works-tabs {
        flex-direction: column;
        max-width: 300px;
        margin: 0 auto 2rem;
        gap: 1rem;
    }
    
    .work-tab {
        margin: 0;
        border-radius: 10px;
        padding: 0.8rem 1.5rem;
    }
    
    .works-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .main-photo-container {
        width: 200px;
        height: 200px;
        margin: 0 auto 2rem;
    }
    
    .photo-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-top: 1rem;
        max-width: none;
    }
    
    .gallery-item {
        height: 70px;
    }
    
    .modal-content {
        margin: 10% auto;
        padding: 2rem;
        width: 95%;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .about-section, .works-section, .reviews-section, .contact-section, .creativity-section {
        min-height: auto;
        padding: 4rem 0;
    }
    
    /* Адаптивные стили для отзывов на мобильных */
    .text-reviews-container {
        padding: 2rem 1rem;
    }
    
    .text-reviews-carousel {
        padding: 0.5rem 0;
    }
    
    .text-review-card {
        min-width: calc(100% - 2rem);
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .text-review-author {
        font-size: 1rem;
    }
    
    .text-review-text {
        font-size: 1rem;
    }
    
    .video-reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .creativity-section .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .creativity-subsection {
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .creativity-subsection h3 {
        text-align: left !important;
        padding-left: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        font-size: 1.8rem;
        width: 100% !important;
    }
    
    .creativity-subsection h3::after {
        left: 0 !important;
        transform: none !important;
    }
    
    .performances-grid,
    .music-player-container,
    .immersive-walks-grid {
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        width: 100% !important;
        grid-template-columns: 1fr !important;
    }
    
    .contact-form-wrapper {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .newspaper-heading {
        font-size: clamp(1.2rem, 6vw, 2.5rem);
    }
    
    .about-section h2,
    .afisha-section h2,
    .creativity-section h2,
    .reviews-section h2,
    .contact-section h2 {
        font-size: clamp(1.2rem, 6vw, 2.5rem);
        white-space: nowrap;
        overflow: hidden;
    }
    
    .works-section h2 {
        font-size: 2rem;
    }
    
    .main-photo-container {
        width: 200px;
        height: 200px;
    }
    
    .photo-gallery {
        max-width: 200px;
    }
    
    .gallery-item {
        height: 60px;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .work-card, .contact-item {
        padding: 1.5rem;
    }
    
    .work-photo img {
        max-height: 150px;
    }
    
    .creativity-section .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .creativity-subsection {
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .creativity-subsection h3 {
        text-align: left !important;
        padding-left: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        font-size: 1.8rem;
        width: 100% !important;
    }
    
    .creativity-subsection h3::after {
        left: 0 !important;
        transform: none !important;
    }
    
    .performances-grid,
    .music-player-container,
    .immersive-walks-grid {
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        width: 100% !important;
        grid-template-columns: 1fr !important;
    }
}
