:root {
    --ink: #fff8ef;
    --paper: #130d12;
    --stage: #211017;
    --muted: #d9c7b7;
    --gold: #f5ba35;
    --hot: #f03b7a;
    --orange: #f26b24;
    --line: rgba(255, 255, 255, 0.14);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    font-family: Inter, Arial, Helvetica, sans-serif;
    background: var(--paper);
}

a {
    color: inherit;
}

.skip-link {
    position: absolute;
    left: 1rem;
    top: -4rem;
    z-index: 20;
    padding: 0.6rem 0.9rem;
    color: #1b1012;
    background: var(--gold);
}

.skip-link:focus {
    top: 1rem;
}

.site-header {
    position: absolute;
    top: 0;
    z-index: 10;
    width: 100%;
    padding: 1rem 0;
    background: linear-gradient(180deg, rgba(9, 4, 8, 0.78), rgba(9, 4, 8, 0));
}

.site-header__inner,
.site-footer__inner {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: inline-grid;
    color: #ffffff;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
}

.brand span {
    font-size: 1.35rem;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.brand small {
    color: var(--gold);
    font-weight: 800;
    letter-spacing: 0.38em;
}

.site-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem 1.25rem;
    font-size: 0.92rem;
    font-weight: 800;
    text-transform: uppercase;
}

.site-nav a {
    text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus {
    color: var(--gold);
}

.hero {
    position: relative;
    display: grid;
    min-height: 92vh;
    align-items: end;
    overflow: hidden;
}

.hero__image {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(10, 4, 7, 0.88), rgba(10, 4, 7, 0.38) 44%, rgba(10, 4, 7, 0.08)),
        linear-gradient(0deg, rgba(19, 13, 18, 0.96), rgba(19, 13, 18, 0.1) 45%),
        url("assets/img/live/w3.webp") center right / cover no-repeat;
}

.hero__content {
    position: relative;
    max-width: 1180px;
    padding-top: 8rem;
    padding-bottom: 6rem;
}

.eyebrow {
    margin: 0 0 0.8rem;
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    margin: 0;
    font-weight: 900;
    line-height: 1.03;
}

h1 {
    max-width: 900px;
    font-size: clamp(3rem, 9vw, 7rem);
}

h2 {
    max-width: 780px;
    font-size: clamp(2rem, 5vw, 4rem);
}

h3 {
    font-size: 1.15rem;
}

p {
    line-height: 1.7;
}

.hero__lead {
    max-width: 690px;
    margin: 1.3rem 0 0;
    color: #f2ded0;
    font-size: 1.25rem;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    margin-top: 2rem;
}

.button,
.booking__phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.25rem;
    padding: 0.85rem 1.2rem;
    color: #1a0e0d;
    font-weight: 900;
    text-decoration: none;
    background: var(--gold);
    border-radius: 0.2rem;
}

.text-link {
    color: #ffffff;
    font-weight: 900;
    text-decoration-thickness: 0.08em;
    text-underline-offset: 0.24em;
}

.section {
    padding: 5rem 0;
}

.intro-copy {
    background: linear-gradient(180deg, #130d12, #1d1117);
}

.intro-copy__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
    gap: 2.5rem;
}

.intro-copy p,
.setlist p,
.booking p {
    color: var(--muted);
}

.photo-band {
    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr;
    gap: 0.35rem;
    background: #080507;
}

.photo-band img,
.gallery-grid img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-band img {
    height: clamp(240px, 36vw, 460px);
}

.section-heading {
    margin-bottom: 2rem;
}

.setlist {
    background: #1b1015;
}

.setlist__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}

.setlist__grid article {
    min-height: 210px;
    padding: 1.5rem;
    background: #241319;
}

.setlist__grid h3 {
    color: var(--gold);
}

.media {
    background: #100a0e;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.video-card {
    background: #1d1117;
    border: 1px solid var(--line);
}

.video-card video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000000;
}

.video-card h3 {
    padding: 1rem;
    color: var(--gold);
}

.gallery {
    background: #1d1117;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.6rem;
}

.gallery-grid img {
    min-height: 240px;
}

.booking {
    padding: 5rem 0;
    color: #1a0e0d;
    background: linear-gradient(135deg, var(--gold), var(--orange) 55%, var(--hot));
}

.booking .eyebrow,
.booking p {
    color: #2a120b;
}

.booking__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 2rem;
    align-items: center;
}

.booking__phone {
    color: #ffffff;
    font-size: 1.5rem;
    background: #130d12;
}

.site-footer {
    padding: 2rem 0;
    color: #bcaea5;
    background: #080507;
}

.site-footer p {
    margin: 0;
}

@media (max-width: 991.98px) {
    .intro-copy__grid,
    .setlist__grid,
    .booking__inner {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .site-header {
        position: relative;
        background: #100a0e;
        border-bottom: 1px solid var(--line);
    }

    .site-header__inner,
    .site-footer__inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .hero {
        min-height: 760px;
    }

    .hero__image {
        background:
            linear-gradient(0deg, rgba(19, 13, 18, 0.98), rgba(19, 13, 18, 0.2) 62%),
            url("assets/img/live/w3.webp") 62% top / cover no-repeat;
    }

    .hero__content {
        padding-top: 18rem;
        padding-bottom: 3rem;
    }

    .hero__lead {
        font-size: 1.08rem;
    }

    .photo-band,
    .video-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}
