: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;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--ink);
    background: rgba(255,255,255,0.86);
    cursor: pointer;
    place-items: center;
    padding: 10px;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 3px 0;
    background: var(--ink);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.is-open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

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

.nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.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(36px, 6vw, 78px);
    line-height: 0.95;
    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: clamp(26px, 2.2vw, 36px);
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero-kicker {
    font-size: clamp(42px, 3.2vw, 48px);
}

.about-logo-kicker img {
    display: block;
    width: min(300px, 62vw);
    height: auto;
}

.featured-show .eyebrow,
.featured-show .venue {
    font-size: clamp(14px, 1.35vw, 22px);
}

.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;
    perspective: 1100px;
}

.speaker-rig {
    position: absolute;
    inset: clamp(-96px, -7vw, -58px) 4% auto auto;
    width: min(430px, 76vw);
    height: min(620px, 92vw);
    transform-style: preserve-3d;
    animation: rig-sway 4.8s ease-in-out infinite;
    transform-origin: 50% 0;
}

.rig-chain {
    position: absolute;
    left: 50%;
    top: 0;
    width: 18px;
    height: 96px;
    background:
        repeating-linear-gradient(180deg, #0b0b0b 0 10px, transparent 10px 15px),
        linear-gradient(90deg, transparent 0 5px, #242424 5px 13px, transparent 13px 18px);
    border-radius: 999px;
    transform: translateX(-50%);
}

.rig-chain::before,
.rig-chain::after {
    content: "";
    position: absolute;
    left: 50%;
    border: 5px solid #111;
    transform: translateX(-50%);
}

.rig-chain::before {
    top: 74px;
    width: 46px;
    height: 34px;
    border-radius: 999px;
}

.rig-chain::after {
    top: 112px;
    width: 34px;
    height: 24px;
    border-radius: 6px 6px 2px 2px;
    background: #111;
}

.rig-yoke {
    position: absolute;
    left: 50%;
    top: 128px;
    z-index: 4;
    width: 238px;
    height: 46px;
    border: 10px solid #101010;
    border-bottom: 0;
    transform: translateX(-50%);
    box-shadow: 0 18px 34px rgba(0,0,0,0.22);
}

.speaker-cabinet {
    position: absolute;
    left: 50%;
    z-index: 3;
    width: 292px;
    height: 82px;
    border: 6px solid #111;
    border-radius: 8px 14px 14px 8px;
    background:
        linear-gradient(90deg, transparent calc(100% - 58px), rgba(255,255,255,0.05) calc(100% - 58px)),
        repeating-linear-gradient(52deg, rgba(255,255,255,0.08) 0 1px, rgba(0,0,0,0) 1px 5px),
        linear-gradient(145deg, #343434 0%, #151515 58%, #090909 100%);
    box-shadow:
        inset -36px 0 0 rgba(0,0,0,0.28),
        inset 0 0 0 1px rgba(255,255,255,0.08),
        0 28px 54px rgba(0,0,0,0.22);
    transform: translateX(-50%) rotateY(-18deg) rotateZ(var(--angle)) translateZ(var(--depth));
    transform-origin: 50% -12px;
    animation: cabinet-beat 1.12s ease-in-out infinite;
    animation-delay: var(--delay);
}

.speaker-cabinet::before,
.speaker-cabinet::after {
    content: "";
    position: absolute;
    background: #080808;
}

.speaker-cabinet::before {
    top: 12px;
    right: -23px;
    width: 54px;
    height: 58px;
    border-radius: 4px 10px 10px 4px;
    transform: skewY(-10deg);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
}

.speaker-cabinet::after {
    left: 22px;
    bottom: 10px;
    width: 28px;
    height: 5px;
    border-radius: 999px;
    background: rgba(215,25,32,0.88);
}

.speaker-cabinet i {
    position: absolute;
    inset: 13px 66px 13px 14px;
    border-radius: 4px;
    background:
        repeating-linear-gradient(90deg, rgba(255,255,255,0.13) 0 1px, transparent 1px 6px),
        repeating-linear-gradient(0deg, rgba(255,255,255,0.08) 0 1px, transparent 1px 6px);
}

.cabinet-1 { top: 166px; --angle: -2deg; --depth: 36px; --delay: 0s; }
.cabinet-2 { top: 241px; --angle: -3deg; --depth: 22px; --delay: 0.05s; }
.cabinet-3 { top: 316px; --angle: -5deg; --depth: 8px; --delay: 0.1s; }
.cabinet-4 { top: 392px; --angle: -8deg; --depth: -8px; --delay: 0.15s; }
.cabinet-5 { top: 469px; --angle: -12deg; --depth: -22px; --delay: 0.2s; }
.cabinet-6 { top: 548px; --angle: -16deg; --depth: -36px; --delay: 0.25s; }

.cabinet-4,
.cabinet-5,
.cabinet-6 {
    width: 282px;
}

.sound-line {
    position: absolute;
    border: 3px solid rgba(215,25,32,0.24);
    border-bottom: 0;
    filter: drop-shadow(0 0 16px rgba(215,25,32,0.18));
    opacity: 0;
}

.line-a {
    width: 340px;
    height: 230px;
    right: -2%;
    top: 28%;
    border-left: 0;
    border-radius: 0 180px 0 0;
    animation: sound-wave-right 1.65s ease-out infinite;
}

.line-b {
    width: 310px;
    height: 210px;
    left: 12%;
    top: 40%;
    border-right: 0;
    border-top: 0;
    border-bottom: 3px solid rgba(215,25,32,0.24);
    border-radius: 0 0 0 180px;
    animation: sound-wave-left 1.65s ease-out infinite;
    animation-delay: 0.45s;
}

.soundwave {
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 8px;
    height: 112px;
    pointer-events: none;
    opacity: 0.9;
    filter: drop-shadow(0 0 14px rgba(215,25,32,0.24));
}

.soundwave span {
    width: 7px;
    height: 28px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(215,25,32,0.92), rgba(241,199,91,0.62));
    transform-origin: center;
    animation: sound-bar 0.86s ease-in-out infinite;
}

.soundwave span:nth-child(2) { animation-delay: 0.1s; }
.soundwave span:nth-child(3) { animation-delay: 0.2s; }
.soundwave span:nth-child(4) { animation-delay: 0.04s; }
.soundwave span:nth-child(5) { animation-delay: 0.16s; }
.soundwave span:nth-child(6) { animation-delay: 0.26s; }

.soundwave-left {
    left: 3%;
    top: 31%;
    transform: rotate(-8deg);
}

.soundwave-right {
    right: -8%;
    top: 46%;
    transform: rotate(8deg);
}

.soundwave-right span {
    animation-duration: 0.72s;
}

.note {
    position: absolute;
    color: var(--red);
    font-weight: 900;
    text-shadow: 0 14px 28px rgba(215,25,32,0.18);
    animation: note-drift 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;
}

.note-c {
    top: 24%;
    right: 16%;
    color: #a47b21;
    font-size: 36px;
    animation-delay: 0.7s;
}

.note-d {
    left: 8%;
    bottom: 22%;
    color: #2f7b62;
    font-size: 34px;
    animation-delay: 2.1s;
}

.note-e {
    right: 22%;
    top: 70%;
    color: #315f9d;
    font-size: 30px;
    animation-delay: 3s;
}

.note-f {
    left: 30%;
    top: 22%;
    color: #315f9d;
    font-size: 32px;
    animation-delay: 1.05s;
}

.note-g {
    right: 2%;
    top: 8%;
    color: #171717;
    font-size: 28px;
    animation-delay: 2.55s;
}

.note-h {
    left: 24%;
    bottom: 6%;
    color: var(--gold);
    font-size: 38px;
    animation-delay: 3.45s;
}

.about {
    display: grid;
    align-items: center;
    background: linear-gradient(180deg, rgba(255,255,255,0.92) 0%, rgba(245,246,248,0.86) 100%);
    scroll-margin-top: 0;
}

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

.about h2,
.past h2,
.contact h2 {
    font-size: clamp(34px, 5vw, 68px);
    line-height: 1;
}

.about h2 {
    font-size: clamp(30px, 4.2vw, 58px);
    color: var(--ink);
    text-align: left;
}

.about-card p {
    text-align: left;
}

.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: clamp(150px, 20vh, 230px);
    padding-top: clamp(34px, 5vw, 58px);
    padding-bottom: clamp(34px, 5vw, 58px);
    display: grid;
    place-items: center;
    background: var(--ink);
    color: #fff;
}

.marquee {
    display: flex;
    width: max-content;
    gap: 24px;
    margin: 0;
    font-size: clamp(20px, 4.8vw, 50px);
    font-weight: 900;
    white-space: nowrap;
    animation: marquee 50s linear infinite;
}

.marquee span {
    display: inline-flex;
    align-items: center;
    min-height: 1.12em;
    padding: 0 0.28em;
}

.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;
}

.show-card .show-venue {
    margin-top: 5px;
    color: var(--ink);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.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: none;
    font-size: clamp(30px, 4.2vw, 54px);
    line-height: 1.05;
    white-space: nowrap;
}

.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));
}

.site-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 28px;
    padding: 34px clamp(22px, 7vw, 96px);
    border-top: 1px solid var(--line);
    background: #171717;
    color: #fff;
}

.site-footer img {
    display: block;
    width: min(170px, 50vw);
    filter: brightness(0) invert(1);
}

.site-footer__brand {
    display: grid;
    gap: 14px;
    justify-items: start;
}

.site-footer p,
.site-footer address {
    margin: 0;
    color: rgba(255,255,255,0.78);
    font-style: normal;
    font-weight: 300;
}

.site-footer address {
    max-width: 460px;
    text-align: left;
}

.site-footer__copyright {
    text-align: right;
    font-size: 0.7em;
}

.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 pulse {
    0%, 100% { transform: scale(0.92); opacity: 0.3; }
    50% { transform: scale(1.05); opacity: 0.9; }
}

@keyframes rig-sway {
    0%, 100% { transform: rotate(-1.3deg); }
    50% { transform: rotate(1.1deg); }
}

@keyframes cabinet-beat {
    0%, 100% {
        transform: translateX(-50%) rotateY(-18deg) rotateZ(var(--angle)) translateZ(var(--depth)) scale(1);
        box-shadow: 0 34px 80px rgba(0,0,0,0.24);
    }
    18% {
        transform: translateX(-50%) rotateY(-18deg) rotateZ(var(--angle)) translateZ(var(--depth)) scale(1.018);
        box-shadow: 0 42px 96px rgba(0,0,0,0.3), 0 0 0 12px rgba(215,25,32,0.08);
    }
    34% {
        transform: translateX(-50%) rotateY(-18deg) rotateZ(var(--angle)) translateZ(var(--depth)) scale(0.996);
    }
    52% {
        transform: translateX(-50%) rotateY(-18deg) rotateZ(var(--angle)) translateZ(var(--depth)) scale(1.01);
        box-shadow: 0 38px 88px rgba(0,0,0,0.28), 0 0 0 7px rgba(215,25,32,0.06);
    }
}

@keyframes sound-wave-right {
    0% {
        transform: translateX(0) scale(0.72);
        opacity: 0;
    }
    18% {
        opacity: 0.82;
    }
    100% {
        transform: translateX(34px) scale(1.18);
        opacity: 0;
    }
}

@keyframes sound-wave-left {
    0% {
        transform: translateX(0) scale(0.72);
        opacity: 0;
    }
    18% {
        opacity: 0.72;
    }
    100% {
        transform: translateX(-34px) scale(1.18);
        opacity: 0;
    }
}

@keyframes sound-bar {
    0%, 100% {
        transform: scaleY(0.56);
        opacity: 0.45;
    }
    32% {
        transform: scaleY(1.85);
        opacity: 0.95;
    }
    62% {
        transform: scaleY(0.92);
        opacity: 0.7;
    }
}

@keyframes note-drift {
    0%, 100% {
        transform: translate3d(0, 0, 0) rotate(-8deg) scale(1);
        opacity: 0.74;
    }
    42% {
        transform: translate3d(18px, -28px, 0) rotate(10deg) scale(1.12);
        opacity: 1;
    }
    72% {
        transform: translate3d(-10px, -16px, 0) rotate(-2deg) scale(0.96);
        opacity: 0.82;
    }
}

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

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

    .nav-toggle {
        display: grid;
    }

    .main-nav {
        position: absolute;
        top: calc(100% - 1px);
        left: 18px;
        right: 18px;
        display: flex;
        padding: 18px;
        border: 1px solid var(--line);
        background: rgba(255,255,255,0.96);
        box-shadow: 0 22px 44px rgba(0,0,0,0.12);
        gap: 14px;
        font-size: 12px;
        flex-direction: column;
        align-items: stretch;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px) scale(0.98);
        transform-origin: top right;
        transition: opacity 0.28s ease, transform 0.28s ease;
    }

    .main-nav.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0) scale(1);
    }

    .main-nav a {
        padding: 12px 0;
        opacity: 0;
        transform: translateY(-6px);
        transition: opacity 0.24s ease, transform 0.24s ease;
    }

    .main-nav.is-open a {
        opacity: 1;
        transform: translateY(0);
    }

    .main-nav.is-open > a:nth-child(1) {
        transition-delay: 0.04s;
    }

    .main-nav.is-open .nav-group {
        transition-delay: 0.08s;
    }

    .main-nav.is-open > a:nth-child(3) {
        transition-delay: 0.12s;
    }

    .nav-group {
        padding-bottom: 0;
        margin-bottom: 0;
        opacity: 0;
        transform: translateY(-6px);
        transition: opacity 0.24s ease, transform 0.24s ease;
    }

    .main-nav.is-open .nav-group {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-child {
        position: static;
        min-width: 0;
        padding: 4px 0 0 16px;
        border: 0;
        background: transparent;
        box-shadow: none;
        opacity: 1;
        pointer-events: auto;
        transform: none;
    }

    .nav-child::before {
        content: none;
    }

    .dot-nav {
        right: 12px;
    }

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

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

    .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: 440px;
    }

    .speaker-rig {
        inset: -58px auto auto 50%;
        width: min(276px, 84vw);
        height: 360px;
        margin-left: -138px;
    }

    .rig-chain {
        height: 58px;
    }

    .rig-chain::before {
        top: 44px;
        width: 34px;
        height: 24px;
        border-width: 4px;
    }

    .rig-chain::after {
        top: 73px;
        width: 28px;
        height: 18px;
    }

    .rig-yoke {
        top: 86px;
        width: 170px;
        height: 34px;
        border-width: 7px;
    }

    .speaker-cabinet {
        width: 198px;
        height: 56px;
        border-width: 4px;
        border-radius: 6px 10px 10px 6px;
    }

    .speaker-cabinet::before {
        top: 8px;
        right: -17px;
        width: 38px;
        height: 40px;
    }

    .speaker-cabinet::after {
        left: 14px;
        bottom: 7px;
        width: 20px;
        height: 4px;
    }

    .speaker-cabinet i {
        inset: 9px 46px 9px 10px;
    }

    .cabinet-1 { top: 112px; }
    .cabinet-2 { top: 164px; }
    .cabinet-3 { top: 216px; }
    .cabinet-4 { top: 269px; width: 192px; }
    .cabinet-5 { top: 322px; width: 188px; }
    .cabinet-6 { top: 375px; width: 184px; }

    .soundwave {
        gap: 5px;
        height: 72px;
    }

    .soundwave span {
        width: 5px;
        height: 20px;
    }

    .soundwave-left {
        left: 0;
        top: 36%;
    }

    .soundwave-right {
        right: -10%;
        top: 51%;
    }

    .note-a {
        left: 4%;
        top: 6%;
        font-size: 32px;
    }

    .note-b {
        right: 0;
        bottom: 8%;
        font-size: 40px;
    }

    .note-c {
        right: 12%;
        top: 22%;
        font-size: 28px;
    }

    .note-d {
        left: 2%;
        bottom: 24%;
        font-size: 26px;
    }

    .note-e {
        right: 24%;
        top: 78%;
        font-size: 24px;
    }

    .note-f {
        left: 18%;
        top: 18%;
        font-size: 24px;
    }

    .note-g {
        right: -2%;
        top: 2%;
        font-size: 22px;
    }

    .note-h {
        left: 18%;
        bottom: 4%;
        font-size: 28px;
    }

    .hero h1 {
        font-size: clamp(32px, 12vw, 52px);
    }

    .section-kicker,
    .hero-kicker {
        font-size: clamp(16px, 5vw, 22px);
        margin-bottom: 12px;
    }

    .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;
    }

    .past h2 {
        white-space: normal;
    }

    .site-footer {
        display: grid;
    }

    .site-footer address,
    .site-footer__copyright {
        text-align: left;
    }
}
