* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #050509;
    color: #eee;
    line-height: 1.6;
}

/* HEADER */

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: rgba(5,5,9,0.95);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    z-index: 1000;
    border-bottom: 1px solid #222;
}

.logo {
    letter-spacing: 0.2em;
    font-size: 0.9rem;
}

.main-nav a {
    margin: 0 12px;
    text-decoration: none;
    color: #bbb;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.main-nav a:hover {
    color: #fff;
}

.header-controls {
    display: flex;
    gap: 8px;
}

.lang-btn,
.listen-btn {
    background: #111;
    border: 1px solid #333;
    color: #ccc;
    padding: 6px 10px;
    font-size: 0.8rem;
    cursor: pointer;
}

.lang-btn.active {
    background: #fff;
    color: #000;
}

.listen-btn {
    border-radius: 999px;
}

/* HERO */

.hero {
    position: relative;
    height: 90vh;
    background: url("img/portrait.jpg") center/cover no-repeat fixed;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 120px;
    margin-top: 70px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0.1));
}

.hero-content {
    position: relative;
    text-align: center;
    z-index: 1;
}

.hero h1 {
    font-size: 3rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
}

.hero p {
    margin-top: 10px;
    font-size: 0.95rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #aaa;
}

/* GENERAL SECTIONS */

.section {
    padding: 80px 8vw;
    border-top: 1px solid #181818;
}

.section h2 {
    font-size: 1.6rem;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.25em;
}

/* FRONT BLOCK */

.front-block {
    padding: 60px 8vw;
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 40px;
    border-top: 1px solid #181818;
}

.front-column h2 {
    font-size: 1.1rem;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.performance-list {
    list-style: none;
}

.performance-list li {
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.perf-date {
    display: block;
    color: #888;
}

/* DOWNLOAD LIST */

.downloads ul {
    list-style: none;
}

.downloads li {
    margin-bottom: 6px;
}

.downloads a {
    color: #ddd;
    text-decoration: none;
    font-size: 0.9rem;
}

.downloads a:hover {
    color: #fff;
}

/* PROJECTS */

.project-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
}

.project-card {
    background: #101018;
    padding: 18px;
    border: 1px solid #222;
}

.project-card h3 {
    margin-bottom: 10px;
}

.project-meta {
    margin-top: 8px;
    font-size: 0.85rem;
    color: #aaa;
}

/* REPERTOIRE */

.rep-filters {
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.rep-filter {
    background: #12121a;
    border: 1px solid #333;
    color: #ccc;
    padding: 6px 10px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
}

.rep-filter.active {
    background: #fff;
    color: #000;
}

.rep-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
    gap: 12px;
}

.rep-item {
    background: #101018;
    padding: 10px 14px;
    border: 1px solid #222;
}

/* MEDIA */

.main-video video {
    width: 100%;
    display: block;
    margin-bottom: 20px;
}

.media-row {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 16px;
}

.media-row video,
.audio-list audio {
    width: 100%;
}

/* CONTACT */

.contact-form {
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-form input,
.contact-form textarea {
    background: #101018;
    border: 1px solid #333;
    color: #eee;
    padding: 8px;
    font-family: inherit;
}

.contact-form button {
    align-self: flex-start;
    padding: 8px 14px;
    background: #fff;
    color: #000;
    border: none;
    cursor: pointer;
}

/* PRESENTER LINK */

.presenter-link {
    text-align: center;
    border-top: 1px solid #181818;
    padding-bottom: 60px;
}

.presenter-link a {
    color: #aaa;
    text-decoration: none;
}

.presenter-link a:hover {
    color: #fff;
}

/* LISTENING MODE */

.listening-mode {
    background: #000;
}

.listening-mode header,
.listening-mode .section,
.listening-mode .front-block {
    opacity: 0.1;
}

.listening-mode #media,
.listening-mode #media * {
    opacity: 1;
}

/* RESPONSIVE */

@media (max-width: 900px) {
    .main-header {
        padding: 0 20px;
    }
    .main-nav {
        display: none;
    }
    .front-block {
        grid-template-columns: 1fr;
    }
}
