:root {
    --bg: #07070c;
    --panel: #11111c;
    --panel-2: #171323;
    --text: #f8f7ff;
    --muted: #b9b2c9;
    --cyan: #26f4ff;
    --pink: #ff2fb3;
    --yellow: #ffe45c;
    --lime: #a7ff4f;
    --line: rgba(255, 255, 255, 0.14);
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 72%);
    z-index: -1;
}

a {
    color: inherit;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

.shell {
    width: calc(100% - 40px);
    max-width: 1160px;
    margin-inline: auto;
}

.skip-link,
.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

.skip-link:focus {
    width: auto;
    height: auto;
    clip: auto;
    z-index: 100;
    top: 12px;
    left: 12px;
    padding: 10px 14px;
    background: var(--yellow);
    color: #07070c;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: background 180ms ease, border-color 180ms ease;
    border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
    background: rgba(7, 7, 12, 0.86);
    border-bottom-color: var(--line);
    backdrop-filter: blur(18px);
}

.header-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-weight: 900;
    letter-spacing: 0;
    white-space: nowrap;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--pink), var(--cyan));
    color: #07070c;
    border-radius: 8px;
    box-shadow: 0 0 24px rgba(255, 47, 179, 0.4);
}

.brand-text,
.footer-brand {
    font-family: "Space Grotesk", Inter, sans-serif;
    font-size: 1.18rem;
    text-transform: uppercase;
}

.site-nav {
    margin-left: auto;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-list a {
    display: block;
    padding: 10px 12px;
    color: rgba(248, 247, 255, 0.86);
    font-size: 0.92rem;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
}

.nav-list a:hover {
    color: var(--cyan);
}

.header-cta,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 18px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
    line-height: 1.1;
}

.header-cta,
.button-primary {
    background: linear-gradient(135deg, var(--yellow), var(--pink));
    color: #07070c;
    box-shadow: 0 0 36px rgba(255, 47, 179, 0.34);
}

.button-secondary {
    border-color: rgba(38, 244, 255, 0.52);
    color: var(--cyan);
    background: rgba(38, 244, 255, 0.08);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    padding: 10px;
}

.nav-toggle span:not(.screen-reader-text) {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: var(--text);
}

.hero {
    position: relative;
    min-height: 96vh;
    display: grid;
    align-items: end;
    overflow: hidden;
    background:
        radial-gradient(circle at 22% 30%, rgba(255, 47, 179, 0.28), transparent 34%),
        radial-gradient(circle at 75% 22%, rgba(38, 244, 255, 0.24), transparent 30%),
        #07070c;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.38;
    filter: saturate(1.25) contrast(1.05);
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(7, 7, 12, 0.96), rgba(7, 7, 12, 0.42) 48%, rgba(7, 7, 12, 0.74)),
        linear-gradient(to top, var(--bg), transparent 34%);
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 42px;
    align-items: end;
    justify-content: space-between;
    padding: 150px 0 118px;
}

.hero-copy {
    flex: 1 1 640px;
    min-width: 0;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--cyan);
    font-size: 0.8rem;
    font-weight: 900;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    font-family: "Space Grotesk", Inter, sans-serif;
    line-height: 1.02;
    letter-spacing: 0;
}

h1 {
    margin: 0;
    max-width: 820px;
    font-size: 6rem;
    font-size: clamp(4rem, 10vw, 8.8rem);
    text-transform: uppercase;
    text-shadow: 0 0 28px rgba(255, 47, 179, 0.42);
}

h2 {
    margin: 0;
    font-size: 3.6rem;
    font-size: clamp(2.25rem, 5vw, 4.8rem);
}

h3 {
    margin: 0 0 12px;
    font-size: 1.5rem;
}

.hero-lede {
    max-width: 710px;
    margin: 24px 0 0;
    color: rgba(248, 247, 255, 0.86);
    font-size: clamp(1.05rem, 2vw, 1.28rem);
}

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

.hero-media {
    flex: 0 1 470px;
    align-self: end;
    filter: drop-shadow(0 28px 60px rgba(0, 0, 0, 0.58));
}

.hero-media img {
    width: 100%;
    max-width: 470px;
    margin-left: auto;
}

.hero-strip {
    position: absolute;
    z-index: 3;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    overflow: hidden;
    padding: 14px 20px;
    background: linear-gradient(90deg, var(--pink), var(--yellow), var(--cyan));
    color: #07070c;
    font-weight: 900;
    text-transform: uppercase;
    white-space: nowrap;
}

.hero-strip span {
    margin-right: 28px;
}

.section {
    padding: 104px 0;
}

.intro-section {
    background: linear-gradient(180deg, #07070c, #11111c);
}

.split,
.setlist-grid,
.media-grid,
.booking-panel {
    display: grid;
    grid-template-columns: 0.86fr 1fr;
    gap: 56px;
    align-items: center;
}

.body-copy {
    color: var(--muted);
    font-size: 1.08rem;
}

.section-heading {
    margin-bottom: 34px;
}

.show-grid,
.service-grid,
.testimonial-grid,
.content-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.show-card,
.service-card,
.testimonial-card,
.content-card {
    min-height: 100%;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
    box-shadow: var(--shadow);
}

.show-tag {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 6px 9px;
    background: rgba(167, 255, 79, 0.12);
    color: var(--lime);
    border: 1px solid rgba(167, 255, 79, 0.28);
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 900;
    text-transform: uppercase;
}

.show-card time {
    display: block;
    color: var(--yellow);
    font-size: 1.7rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 14px;
}

.show-card p,
.service-card p,
.testimonial-card blockquote,
.content-card p {
    margin: 0;
    color: var(--muted);
}

.media-band {
    padding: 104px 0;
    background:
        linear-gradient(135deg, rgba(255, 47, 179, 0.18), rgba(38, 244, 255, 0.12)),
        var(--panel);
}

.media-feature img {
    width: 100%;
    aspect-ratio: 1.28;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.media-copy p {
    color: var(--muted);
}

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

.mini-gallery img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--line);
}

.setlist-section {
    padding: 92px 0;
    background:
        linear-gradient(rgba(7, 7, 12, 0.76), rgba(7, 7, 12, 0.94)),
        url("../img/stage-wide.jpg") center / cover;
}

.setlist {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.setlist li {
    padding: 10px 13px;
    border: 1px solid rgba(255, 228, 92, 0.36);
    border-radius: 8px;
    background: rgba(255, 228, 92, 0.1);
    color: var(--yellow);
    font-weight: 900;
}

.testimonial-card {
    margin: 0;
}

.testimonial-card blockquote {
    font-size: 1.05rem;
}

.testimonial-card figcaption {
    margin-top: 22px;
    color: var(--cyan);
    font-weight: 900;
}

.booking-section {
    padding: 104px 0;
    background: linear-gradient(180deg, #11111c, #07070c);
}

.booking-panel {
    padding: 36px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background:
        linear-gradient(135deg, rgba(255, 47, 179, 0.22), rgba(38, 244, 255, 0.14)),
        rgba(255, 255, 255, 0.055);
    box-shadow: var(--shadow);
}

.booking-panel p {
    color: var(--muted);
}

.booking-actions {
    display: grid;
    gap: 12px;
}

.page-hero {
    padding: 150px 0 70px;
    background:
        linear-gradient(rgba(7, 7, 12, 0.74), rgba(7, 7, 12, 0.96)),
        url("../img/stage-wide.jpg") center / cover;
}

.page-hero h1 {
    font-size: clamp(3rem, 7vw, 6rem);
}

.prose {
    max-width: 780px;
    color: var(--muted);
}

.prose h2,
.prose h3 {
    color: var(--text);
}

.featured-image {
    margin-bottom: 30px;
}

.featured-image img {
    border-radius: 8px;
}

.content-list {
    grid-template-columns: 1fr;
    max-width: 900px;
}

.content-card a,
.text-link {
    color: var(--cyan);
}

.site-footer {
    padding: 56px 0 28px;
    background: #050509;
    border-top: 1px solid var(--line);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.7fr 0.7fr;
    gap: 32px;
}

.footer-grid p,
.footer-bottom {
    color: var(--muted);
}

.footer-grid h2 {
    font-size: 1rem;
    text-transform: uppercase;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 26px;
    margin-top: 26px;
    border-top: 1px solid var(--line);
}

@media (max-width: 920px) {
    .header-inner {
        min-height: 66px;
    }

    .nav-toggle {
        display: block;
        margin-left: auto;
    }

    .site-nav {
        display: none;
        position: absolute;
        left: 20px;
        right: 20px;
        top: 70px;
        margin: 0;
        padding: 12px;
        background: rgba(7, 7, 12, 0.96);
        border: 1px solid var(--line);
        border-radius: 8px;
    }

    .site-nav.is-open {
        display: block;
    }

    .nav-list {
        display: grid;
    }

    .header-cta {
        display: none;
    }

    .hero-inner,
    .split,
    .setlist-grid,
    .media-grid,
    .booking-panel,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-inner {
        display: grid;
        grid-template-columns: 1fr;
        padding-top: 116px;
        gap: 24px;
    }

    .hero-media {
        max-width: 410px;
    }

    .show-grid,
    .service-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {
    .shell {
        width: calc(100% - 28px);
    }

    h1 {
        font-size: 3.5rem;
        font-size: clamp(3.1rem, 17vw, 5rem);
    }

    h2 {
        font-size: 2.4rem;
        font-size: clamp(2rem, 11vw, 3.2rem);
    }

    .section,
    .media-band,
    .booking-section {
        padding: 72px 0;
    }

    .hero {
        min-height: 100vh;
    }

    .hero-inner {
        padding-bottom: 106px;
    }

    .hero-actions,
    .button,
    .footer-bottom {
        width: 100%;
    }

    .button {
        min-height: 50px;
    }

    .mini-gallery {
        grid-template-columns: 1fr 1fr;
    }

    .booking-panel {
        padding: 24px;
    }

    .footer-bottom {
        display: grid;
    }
}
