* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0b0a0a;
    color: #e8e3db;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    line-height: 1.7;
    background-image: radial-gradient(circle at 20% 30%, #1f1a18 0%, #0b0a0a 80%);
    min-height: 100vh;
}

h1, h2, h3, .serif {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 80px 0;
    border-bottom: 1px solid rgba(232, 227, 219, 0.05);
}

/* Hero */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, #0b0a0a 90%);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 2s ease-out;
}
.hero-name {
    font-size: clamp(4rem, 15vw, 8rem);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.1;
    color: #f0ebe4;
    text-shadow: 0 0 50px rgba(0,0,0,0.7);
    letter-spacing: 8px;
    margin-bottom: 20px;
}
.hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 1.1rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #b8a99a;
    margin-bottom: 30px;
    opacity: 0.8;
}
.hero-quote {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
    font-size: 1.2rem;
    color: #b8a99a;
}
.quote-line {
    display: block;
    width: 80px;
    height: 1px;
    background: #b8a99a;
}
.hero-scroll-hint {
    font-size: 0.8rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #7a6e63;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
}
.hero-scroll-hint:hover {
    opacity: 1;
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Language Switcher + Chat link */
.lang-switcher {
    position: fixed;
    top: 25px;
    right: 30px;
    z-index: 1001;
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(20, 18, 17, 0.6);
    backdrop-filter: blur(8px);
    padding: 6px 12px;
    border-radius: 40px;
    border: 1px solid rgba(184, 169, 154, 0.2);
}
.lang-btn {
    background: transparent;
    border: none;
    color: #b8a99a;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 1px;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 20px;
    transition: all 0.2s;
}
.lang-btn:hover { color: #f0ebe4; }
.lang-btn.active { background: rgba(184, 169, 154, 0.2); color: #f0ebe4; }
.lang-divider { width: 1px; height: 16px; background: rgba(184, 169, 154, 0.3); margin: 0 2px; }
.chat-link {
    background: rgba(184, 169, 154, 0.2);
    padding: 4px 12px;
    border-radius: 20px;
    color: #f0ebe4;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.2s;
}
.chat-link:hover {
    background: #b8a99a;
    color: #0b0a0a;
}

/* Logo */
.logo-container {
    text-align: center;
    margin-top: 70px;
    margin-bottom: 20px;
}
.logo {
    max-width: 180px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    transition: transform 0.3s;
    border: 1px solid rgba(184, 169, 154, 0.2);
}
.logo:hover { transform: scale(1.03); }

/* Bio */
.section-title {
    font-size: 3.5rem;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60%;
    height: 2px;
    background: #b8a99a;
}
.bio-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: start;
}
.bio-text { font-size: 1.05rem; }
.lead {
    font-size: 1.3rem;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: #d4c9bc;
    margin-bottom: 30px;
}
.signature {
    margin-top: 40px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-style: italic;
    text-align: right;
    color: #b8a99a;
}
.bio-image { position: sticky; top: 20px; }
.image-placeholder {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(184, 169, 154, 0.2);
    border-radius: 4px;
    padding: 10px;
    backdrop-filter: blur(5px);
}
.image-placeholder img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    transition: transform 0.3s;
    display: block;
}
.image-placeholder:hover img { transform: scale(1.02); }

/* Music Styles */
.music-styles { padding: 80px 0; }
.styles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.style-card {
    background: rgba(20, 18, 17, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(184, 169, 154, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, border-color 0.3s;
}
.style-card:hover {
    transform: translateY(-6px);
    border-color: rgba(184, 169, 154, 0.3);
}
.style-cover {
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    border-bottom: 1px solid rgba(184, 169, 154, 0.1);
}
.style-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.style-card:hover .style-cover img { transform: scale(1.05); }
.style-info { padding: 20px 15px; }
.style-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #f0ebe4;
}
.style-desc {
    font-size: 0.85rem;
    color: #b8a99a;
    margin-bottom: 20px;
}
.style-player {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0,0,0,0.2);
    padding: 8px 12px;
    border-radius: 30px;
    border: 1px solid rgba(184, 169, 154, 0.2);
    flex-wrap: wrap;
}
.mini-play-btn, .mini-list-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid #b8a99a;
    color: #b8a99a;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    font-size: 14px;
}
.mini-play-btn:hover, .mini-list-btn:hover {
    background: #b8a99a;
    color: #0b0a0a;
}
.mini-track-name {
    font-size: 0.8rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #d4c9bc;
    flex: 1;
}

/* Slider */
.photo-slider-section { padding: 60px 0; }
.slider-container {
    position: relative;
    max-width: 800px;
    margin: 40px auto 0;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
    border: 1px solid rgba(184, 169, 154, 0.2);
}
.slider { display: flex; transition: transform 0.5s ease; }
.slider img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    flex-shrink: 0;
    background: #1a1817;
}
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(20, 18, 17, 0.7);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(184, 169, 154, 0.3);
    color: #f0ebe4;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    z-index: 10;
}
.slider-btn:hover { background: #b8a99a; color: #0b0a0a; }
.prev { left: 20px; }
.next { right: 20px; }
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}
.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: 1px solid rgba(184, 169, 154, 0.5);
    cursor: pointer;
    transition: background 0.2s;
}
.dot.active { background: #b8a99a; }

/* Contacts */
.contacts { padding: 80px 0; text-align: center; }
.contacts-intro {
    font-size: 1.4rem;
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 40px;
    color: #d4c9bc;
}
.contacts-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 30px;
}
.contact-link {
    display: inline-flex;
    align-items: center;
    padding: 12px 28px;
    border: 1px solid #b8a99a;
    border-radius: 40px;
    color: #f0ebe4;
    text-decoration: none;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
    background: rgba(184, 169, 154, 0.05);
    backdrop-filter: blur(5px);
    transition: all 0.3s;
}
.contact-link:hover {
    background: #b8a99a;
    color: #0b0a0a;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}
.contact-link.email { text-transform: none; }

/* Audio Player with progress bar */
.audio-player {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 800px;
    margin: 0 auto;
    background: rgba(20, 18, 17, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 60px;
    padding: 8px 20px;
    border: 1px solid rgba(184, 169, 154, 0.2);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
    z-index: 1000;
}
.player-inner {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.play-btn, .prev-btn, .next-btn {
    background: none;
    border: 1.5px solid #b8a99a;
    color: #b8a99a;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}
.play-btn:hover, .prev-btn:hover, .next-btn:hover {
    background: #b8a99a;
    color: #0b0a0a;
}
.track-details {
    flex: 2;
    min-width: 120px;
}
.track-name {
    font-weight: 500;
    font-size: 0.95rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.track-album {
    font-size: 0.7rem;
    opacity: 0.6;
    letter-spacing: 1px;
}
.progress-container {
    flex: 3;
    position: relative;
    height: 30px;
    cursor: pointer;
    background: rgba(184, 169, 154, 0.1);
    border-radius: 15px;
    overflow: hidden;
}
.progress-bar {
    width: 0%;
    height: 100%;
    background: #b8a99a;
    border-radius: 15px;
    pointer-events: none;
}
.progress-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}
.time-display {
    font-size: 0.8rem;
    opacity: 0.7;
    min-width: 90px;
    text-align: right;
}

/* Модальное окно */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    backdrop-filter: blur(8px);
}
.modal-content {
    background: rgba(20,18,17,0.95);
    margin: 10% auto;
    padding: 20px;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    border: 1px solid #b8a99a;
    color: #e8e3db;
}
.modal-close {
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #b8a99a;
}
.modal-close:hover {
    color: #fff;
}
.track-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    max-height: 400px;
    overflow-y: auto;
}
.track-list li {
    padding: 10px;
    border-bottom: 1px solid rgba(184,169,154,0.3);
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    gap: 10px;
}
.track-list li:hover {
    background: rgba(184,169,154,0.2);
}
.track-list li:before {
    content: "🎵";
    font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .bio-content { grid-template-columns: 1fr; }
    .bio-image { order: -1; position: static; }
    .section-title { font-size: 2.5rem; }
    .slider img { height: 300px; }
    .audio-player { max-width: 95%; padding: 8px 12px; }
    .progress-container { display: none; }
    .player-inner { gap: 8px; }
}
@media (max-width: 600px) {
    .lang-switcher { top: 15px; right: 15px; }
    .logo { max-width: 140px; }
    .slider-btn { width: 40px; height: 40px; font-size: 20px; }
}