:root {
    --black: #000;
    --white: #fff;
    --white-dim: rgba(255, 255, 255, 0.5);
    --divider: rgba(255, 255, 255, 0.14);
    --font-body: 'Inter', sans-serif;
    --font-mono: 'IBM Plex Mono', 'Courier New', monospace;
    --max: 1100px;
    --pad: clamp(1.5rem, 5vw, 4rem);
}

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

body {
    background: var(--black);
    color: var(--white);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ─── Document Header ─────────────────────────────── */

.doc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem var(--pad);
    border-bottom: 1px solid var(--divider);
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--white-dim);
    max-width: var(--max);
    margin: 0 auto;
}

.doc-contact {
    color: var(--white-dim);
    text-decoration: none;
}
.doc-contact:hover { color: var(--white); }

/* ─── Layout ──────────────────────────────────────── */

main {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--pad);
}

main > section {
    margin-bottom: 4rem;
}

.section-label {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--white-dim);
    margin-bottom: 1.5rem;
}

/* ─── Hero ────────────────────────────────────────── */

.hero {
    padding: 4rem 0 4rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
}

.hero-logo {
    width: 200px;
    height: auto;
}

.hero-tagline {
    font-size: 1rem;
    font-weight: 400;
    color: var(--white-dim);
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

/* ─── Buttons ─────────────────────────────────────── */

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.75rem;
    background: var(--white);
    color: var(--black);
    text-decoration: none;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    border-radius: 0;
    transition: opacity 0.15s;
}
.btn-download:hover { opacity: 0.82; }
.btn-download svg { flex-shrink: 0; }

.btn-download--large {
    padding: 0.9rem 2rem;
}

.btn-booking {
    color: var(--white-dim);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.15s;
}
.btn-booking:hover { color: var(--white); }

/* ─── Bio + Ensemble ──────────────────────────────── */

.bio-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 5rem;
    align-items: start;
}

.bio-text p {
    font-size: 0.975rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.82);
    margin-bottom: 1.2em;
}
.bio-text p:last-child { margin-bottom: 0; }

.ensemble-list {
    list-style: none;
}

.ensemble-list li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--divider);
}
.ensemble-list li:first-child {
    border-top: 1px solid var(--divider);
}

.member-name {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.member-role {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--white-dim);
    text-align: right;
    flex-shrink: 0;
}

/* ─── Stages ──────────────────────────────────────── */

.stages-section {
    overflow: hidden;
}

.stages-marquee-wrap {
    overflow: hidden;
    margin: 0 calc(-1 * var(--pad));
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.stages-track {
    display: flex;
    white-space: nowrap;
    animation: marquee 22s linear infinite;
    padding: 0.75rem 0;
}
.stages-track:hover {
    animation-play-state: paused;
}

.stage-item {
    font-family: var(--font-mono);
    font-size: 1.15rem;
    color: rgba(255,255,255,0.82);
    letter-spacing: 0.04em;
    padding: 0.25rem 0.75rem 0.25rem 0;
}

.stage-sep {
    color: rgba(255,255,255,0.3);
    font-size: 1.15rem;
    padding-right: 0.75rem;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ─── Videos ──────────────────────────────────────── */

.videos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.video-wrap {
    position: relative;
    padding-bottom: 56.25%;
    border: 1px solid var(--divider);
    border-radius: 0;
    overflow: hidden;
    background: rgba(255,255,255,0.02);
}
.video-wrap iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: 0;
}

/* ─── Concerts ────────────────────────────────────── */

.concert-row {
    display: grid;
    grid-template-columns: 110px 1fr auto;
    align-items: center;
    gap: 2rem;
    padding: 1.1rem 0;
    border-bottom: 1px solid var(--divider);
}
.concert-row:first-child { border-top: 1px solid var(--divider); }

.concert-date {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--white-dim);
}

.concert-name {
    display: block;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 0.15rem;
}
.concert-location {
    font-size: 0.78rem;
    color: var(--white-dim);
}

.concert-link {
    font-family: var(--font-mono);
    color: var(--white-dim);
    text-decoration: none;
    font-size: 0.7rem;
    white-space: nowrap;
    transition: color 0.15s;
}
.concert-link:hover { color: var(--white); }

/* ─── Press Kit ───────────────────────────────────── */

.presskit-section {
    margin-bottom: 6rem;
}

.presskit-desc {
    font-size: 0.9rem;
    color: var(--white-dim);
    margin-bottom: 1.75rem;
}

/* ─── Footer ──────────────────────────────────────── */

.site-footer {
    border-top: 1px solid var(--divider);
    padding: 1.75rem var(--pad);
    max-width: var(--max);
    margin: 0 auto;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.footer-links,
.footer-legal {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    align-items: center;
}

.footer-links a,
.footer-legal a {
    font-family: var(--font-mono);
    color: var(--white-dim);
    text-decoration: none;
    font-size: 0.7rem;
    transition: color 0.15s;
}
.footer-links a:hover,
.footer-legal a:hover { color: var(--white); }

/* ─── Responsive ──────────────────────────────────── */

@media (max-width: 860px) {
    .bio-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .videos-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .concert-row {
        grid-template-columns: 1fr auto;
        grid-template-rows: auto auto;
        gap: 0.3rem 1rem;
    }
    .concert-date {
        grid-column: 1 / -1;
        grid-row: 1;
    }
    .concert-info { grid-column: 1; grid-row: 2; }
    .concert-link { grid-column: 2; grid-row: 2; align-self: center; }

    .hero { padding: 2.5rem 0; }
    .hero-logo { width: 150px; }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

@media (max-width: 420px) {
    .hero-actions { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
}
