:root {
    --red: #d71920;
    --ink: #171717;
    --muted: #6a6f76;
    --line: rgba(23, 23, 23, 0.12);
    --paper: #ffffff;
    --soft: #f5f6f8;
    --mint: #dff4ec;
    --gold: #f1c75b;
    --blue: #dcecff;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
    color: var(--ink);
    background: var(--paper);
}

a {
    color: inherit;
    text-decoration: none;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px clamp(20px, 5vw, 72px);
    background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,255,255,0.7));
    backdrop-filter: blur(18px);
    transition: transform 0.5s ease, opacity 0.4s ease;
}

.site-header.is-hidden {
    transform: translateY(-100%);
    opacity: 0;
}

.brand img {
    width: min(190px, 45vw);
    display: block;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.main-nav a {
    position: relative;
    padding: 10px 0;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 4px;
    height: 2px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.main-nav a:hover::after {
    transform: scaleX(1);
}

.nav-group {
    position: relative;
    padding-bottom: 18px;
    margin-bottom: -18px;
}

.nav-child {
    position: absolute;
    top: 32px;
    right: -20px;
    display: grid;
    min-width: 170px;
    padding: 12px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.92);
    box-shadow: 0 20px 45px rgba(18, 18, 18, 0.12);
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: 0.25s ease;
}

.nav-child::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -18px;
    height: 18px;
}

.nav-group:hover .nav-child {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.dot-nav {
    position: fixed;
    top: 50%;
    right: 24px;
    z-index: 30;
    display: grid;
    gap: 16px;
    opacity: 0;
    pointer-events: none;
    transform: translate(18px, -50%);
    transition: 0.35s ease;
}

.dot-nav.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translate(0, -50%);
}

.dot-nav a {
    position: relative;
    display: grid;
    place-items: center;
    width: 18px;
    height: 18px;
}

.dot-nav span {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #b4bac1;
    transition: 0.25s ease;
}

.dot-nav a::before {
    content: attr(data-label);
    position: absolute;
    right: 26px;
    width: max-content;
    padding: 7px 10px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.9);
    color: var(--ink);
    font-size: 12px;
    font-weight: 800;
    opacity: 0;
    transform: translateX(8px);
    transition: 0.2s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.dot-nav a:hover::before,
.dot-nav a.is-active::before {
    opacity: 1;
    transform: translateX(0);
}

.dot-nav a:hover span,
.dot-nav a.is-active span {
    width: 12px;
    height: 12px;
    background: var(--red);
}

.panel {
    min-height: 100vh;
    padding: clamp(96px, 11vw, 148px) clamp(22px, 7vw, 96px);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.image-panel::before,
.image-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.image-panel::before {
    z-index: 0;
    background-image: var(--section-bg);
    background-position: center;
    background-size: cover;
    opacity: 0.4;
    transform: scale(1.03);
}

.image-panel::after {
    z-index: 0;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.7) 18%, rgba(255,255,255,0.66) 72%, rgba(255,255,255,0.96) 100%),
        radial-gradient(circle at 18% 24%, rgba(215,25,32,0.12), transparent 28%),
        radial-gradient(circle at 84% 70%, rgba(241,199,91,0.14), transparent 26%);
}

.image-panel > * {
    position: relative;
    z-index: 1;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    align-items: center;
    gap: clamp(36px, 7vw, 96px);
    background:
        radial-gradient(circle at 16% 22%, rgba(215,25,32,0.12), transparent 32%),
        linear-gradient(135deg, rgba(255,255,255,0.82) 0%, rgba(247,248,250,0.72) 44%, rgba(255,255,255,0.86) 100%);
}

.hero h1,
.about h2,
.past h2,
.contact h2 {
    margin: 0;
    max-width: 880px;
    font-size: clamp(42px, 9vw, 118px);
    line-height: 0.9;
    letter-spacing: 0;
}

.hero p,
.about-card p,
.contact-copy p,
.featured-show p {
    color: var(--muted);
    font-size: clamp(16px, 1.5vw, 21px);
    line-height: 1.7;
}

.eyebrow,
.section-kicker {
    margin: 0 0 18px;
    color: var(--red);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.button,
.contact-form button {
    border: 1px solid var(--ink);
    padding: 14px 22px;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 12px;
    cursor: pointer;
    transition: 0.25s ease;
}

.button.primary,
.contact-form button {
    background: var(--ink);
    color: #fff;
}

.button.ghost {
    background: transparent;
}

.button:hover,
.contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(0,0,0,0.14);
}

.hero-stage {
    position: relative;
    min-height: 500px;
}

.record {
    position: absolute;
    inset: 52px 20px auto auto;
    width: min(420px, 82vw);
    aspect-ratio: 1;
    border-radius: 999px;
    background:
        radial-gradient(circle, #fff 0 8%, var(--red) 9% 13%, #141414 14% 18%, #242424 19% 100%);
    box-shadow: 0 34px 80px rgba(0,0,0,0.24);
    animation: spin 12s linear infinite;
}

.record::before {
    content: "";
    position: absolute;
    inset: 13%;
    border-radius: inherit;
    border: 1px solid rgba(255,255,255,0.18);
    box-shadow: inset 0 0 0 26px rgba(255,255,255,0.04), inset 0 0 0 64px rgba(255,255,255,0.035);
}

.equalizer {
    position: absolute;
    left: 8%;
    bottom: 14%;
    display: flex;
    align-items: end;
    gap: 9px;
    height: 118px;
}

.equalizer i {
    display: block;
    width: 15px;
    background: var(--red);
    animation: bars 1.1s ease-in-out infinite alternate;
}

.equalizer i:nth-child(2) { animation-delay: 0.1s; background: var(--gold); }
.equalizer i:nth-child(3) { animation-delay: 0.2s; background: var(--ink); }
.equalizer i:nth-child(4) { animation-delay: 0.3s; background: #36a884; }
.equalizer i:nth-child(5) { animation-delay: 0.4s; background: var(--red); }

.sound-line {
    position: absolute;
    border: 2px solid rgba(215,25,32,0.18);
    border-left: 0;
    border-bottom: 0;
    border-radius: 0 180px 0 0;
    animation: pulse 2.8s ease-in-out infinite;
}

.line-a {
    width: 270px;
    height: 190px;
    right: 8%;
    top: 24%;
}

.line-b {
    width: 180px;
    height: 120px;
    left: 10%;
    top: 16%;
    animation-delay: 0.7s;
}

.note {
    position: absolute;
    color: var(--red);
    font-weight: 900;
    animation: float 5s ease-in-out infinite;
}

.note-a {
    top: 10%;
    left: 18%;
    font-size: 42px;
}

.note-b {
    right: 4%;
    bottom: 10%;
    font-size: 58px;
    animation-delay: 1.4s;
}

.about {
    background: linear-gradient(180deg, rgba(255,255,255,0.92) 0%, rgba(245,246,248,0.86) 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 520px);
    gap: clamp(28px, 6vw, 82px);
    align-items: end;
}

.about h2,
.past h2,
.contact h2 {
    font-size: clamp(36px, 6vw, 76px);
}

.about-card {
    padding: clamp(24px, 4vw, 44px);
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.72);
    backdrop-filter: blur(18px);
}

.metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 30px;
}

.metrics span {
    padding-top: 14px;
    border-top: 2px solid var(--red);
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.metrics strong {
    display: block;
    color: var(--ink);
    font-size: 28px;
}

.shows-intro {
    min-height: 38vh;
    display: grid;
    place-items: center;
    background: var(--ink);
    color: #fff;
}

.marquee {
    display: flex;
    width: max-content;
    gap: 42px;
    margin: 0;
    font-size: clamp(34px, 8vw, 96px);
    font-weight: 900;
    white-space: nowrap;
    animation: marquee 26s linear infinite;
}

.marquee span:nth-child(2n) {
    color: var(--gold);
}

.marquee span:nth-child(3n) {
    color: #9ee0cc;
}

.upcoming {
    display: grid;
    align-content: center;
    overflow: visible;
    z-index: 2;
    padding-bottom: clamp(190px, 19vw, 310px);
    background: #f7f7f7;
}

.poster-wash {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(90deg, rgba(255,255,255,0.96), rgba(255,255,255,0.72), rgba(255,255,255,0.96)), var(--poster-bg);
    background-position: center;
    background-size: cover;
    opacity: 0.25;
}

.section-fade {
    position: absolute;
    left: 0;
    right: 0;
    bottom: clamp(-150px, -10vw, -90px);
    height: clamp(360px, 34vw, 560px);
    z-index: 1;
    pointer-events: none;
}

.fade-to-past {
    background:
        linear-gradient(180deg, rgba(247,247,247,0) 0%, rgba(255,255,255,0.34) 24%, rgba(255,255,255,0.82) 56%, rgba(255,255,255,1) 78%, rgba(255,255,255,0) 100%),
        radial-gradient(ellipse at 50% 48%, rgba(255,255,255,0.96), transparent 70%);
}

.featured-show {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(360px, 0.9fr) minmax(360px, 0.78fr);
    gap: clamp(34px, 6vw, 92px);
    align-items: center;
    width: min(100%, 1560px);
    margin: 0 auto;
}

.featured-copy {
    align-self: center;
}

.featured-show h2 {
    margin: 0;
    max-width: 820px;
    font-size: clamp(52px, 9vw, 132px);
    line-height: 0.92;
}

.featured-show .venue {
    color: var(--ink);
    font-weight: 900;
    text-transform: uppercase;
}

.featured-poster {
    justify-self: center;
    width: min(100%, 520px);
}

.featured-show img,
.show-card img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    box-shadow: 0 36px 90px rgba(0,0,0,0.24);
}

.show-strip {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    width: min(100%, 1560px);
    margin-top: 46px;
    margin-left: auto;
    margin-right: auto;
}

.show-card {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    padding: 14px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(12px);
}

.show-card img {
    aspect-ratio: 1;
}

.show-card h3 {
    margin: 0 0 8px;
    font-size: 20px;
}

.show-card p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.past {
    z-index: 3;
    margin-top: clamp(-150px, -10vw, -90px);
    min-height: auto;
    padding-top: clamp(160px, 14vw, 230px);
    padding-bottom: clamp(76px, 7vw, 104px);
    background:
        linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.74) 18%, rgba(255,255,255,0) 42%),
        linear-gradient(135deg, rgba(255,255,255,0.94) 0%, rgba(248,248,248,0.84) 45%, rgba(255,255,255,0.94) 100%);
}

.past > * {
    position: relative;
    z-index: 4;
}

.past h2 {
    max-width: 760px;
    font-size: clamp(34px, 5vw, 64px);
}

.artist-cloud {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    align-content: center;
    gap: clamp(8px, 1.4vw, 18px) clamp(12px, 2.2vw, 34px);
    min-height: 0;
    margin-top: clamp(24px, 3vw, 36px);
    padding: clamp(22px, 3.6vw, 48px);
    border: 1px solid rgba(23,23,23,0.08);
    background:
        radial-gradient(circle at 50% 46%, rgba(255,255,255,0.86), rgba(255,255,255,0.46) 54%, rgba(255,255,255,0.16)),
        rgba(255,255,255,0.48);
}

.artist-name {
    display: inline-block;
    max-width: min(88vw, 560px);
    color: var(--ink);
    font-weight: 900;
    line-height: 0.88;
    text-transform: uppercase;
    text-align: center;
    text-wrap: balance;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.artist-name:hover {
    transform: translateY(-4px);
    opacity: 0.82;
}

.size-1 { font-size: clamp(30px, 5.2vw, 78px); }
.size-2 { font-size: clamp(24px, 4.1vw, 58px); }
.size-3 { font-size: clamp(20px, 3.2vw, 44px); }
.size-4 { font-size: clamp(18px, 2.7vw, 34px); }
.size-5 { font-size: clamp(26px, 4.6vw, 66px); }
.size-6 { font-size: clamp(16px, 2.2vw, 28px); }

.tone-1 { color: var(--red); }
.tone-2 { color: #171717; }
.tone-3 { color: #2f7b62; }
.tone-4 { color: #315f9d; }
.tone-5 { color: #a47b21; }

.contact {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(300px, 520px);
    gap: clamp(28px, 6vw, 72px);
    align-items: center;
    background:
        radial-gradient(circle at 82% 22%, rgba(215,25,32,0.1), transparent 28%),
        linear-gradient(180deg, rgba(255,255,255,0.9), rgba(248,248,248,0.86));
}

.contact-form {
    display: grid;
    gap: 16px;
    padding: clamp(22px, 4vw, 40px);
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.86);
    box-shadow: 0 30px 80px rgba(0,0,0,0.08);
}

.contact-form label {
    display: grid;
    gap: 8px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    padding: 14px;
    background: #fff;
    color: var(--ink);
    font: inherit;
    resize: vertical;
}

.alert {
    padding: 12px 14px;
    font-size: 13px;
    font-weight: 800;
}

.alert.success {
    background: var(--mint);
}

.alert.error {
    background: #ffe2e2;
}

.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes bars {
    0% { height: 24px; }
    100% { height: 112px; }
}

@keyframes pulse {
    0%, 100% { transform: scale(0.92); opacity: 0.3; }
    50% { transform: scale(1.05); opacity: 0.9; }
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(-8deg); }
    50% { transform: translateY(-26px) rotate(8deg); }
}

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

@media (max-width: 820px) {
    .site-header {
        align-items: flex-start;
        gap: 16px;
        padding: 18px 18px 20px;
    }

    .main-nav {
        gap: 14px;
        font-size: 11px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .nav-child {
        right: 0;
    }

    .dot-nav {
        right: 12px;
    }

    .panel {
        min-height: auto;
        padding: 96px 20px;
    }

    .hero.panel {
        padding-top: 210px;
    }

    .hero,
    .about-grid,
    .featured-show,
    .contact {
        grid-template-columns: 1fr;
    }

    .upcoming {
        align-content: start;
    }

    .past {
        padding-top: clamp(130px, 20vw, 170px);
    }

    .hero-stage {
        min-height: 340px;
    }

    .record {
        inset: 20px auto auto 50%;
        transform: translateX(-50%);
        width: min(320px, 78vw);
        animation-name: spin-mobile;
    }

    .metrics {
        grid-template-columns: 1fr;
    }

    .featured-poster {
        width: min(100%, 390px);
        justify-self: start;
    }

    .artist-cloud {
        min-height: auto;
        justify-content: flex-start;
        padding: 20px 16px;
        gap: 10px 16px;
    }

    .artist-name {
        max-width: 100%;
        text-align: left;
    }
}

@keyframes spin-mobile {
    from { transform: translateX(-50%) rotate(0); }
    to { transform: translateX(-50%) rotate(360deg); }
}
