:root {
    --background: #0b0b0b;
    --surface: #151515;
    --text: #f4f1e8;
    --muted: #aaa69d;
    --accent: #ffffff;
    --border: #333333;
    --max-width: 1180px;
    --header-height: 72px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--background);
    color: var(--text);
    font-family: "Inter", sans-serif;
    line-height: 1.6;
}

a {
    color: inherit;
}

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

h1,
h2,
h3,
.site-logo {
    font-family: "Bebas Neue", sans-serif;
}

h1,
h2,
p {
    margin-top: 0;
}

h1 {
    margin-bottom: 1rem;
    font-size: clamp(3rem, 10vw, 8rem);
    line-height: 0.95;
    text-transform: uppercase;
}

h2 {
    margin-bottom: 1.25rem;
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 1;
    text-transform: uppercase;
}

/* Header */

.site-header {
    position: fixed;
    z-index: 20;
    top: 0;
    left: 0;
    width: 100%;
    min-height: var(--header-height);
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    background: rgba(8, 8, 8, 0.88);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(12px);
}

.site-logo {
    font-weight: 800;
    text-decoration: none;
    letter-spacing: 0.08em;
}

.site-nav {
    display: flex;
    gap: 1.25rem;
}

    .site-nav a {
        color: var(--muted);
        font-size: 0.9rem;
        text-decoration: none;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        transition: color 0.2s ease;
    }

        .site-nav a:hover {
            color: var(--text);
        }

/* Mobile menu button */

.nav-toggle {
    display: none;
    width: 28px;
    padding: 0;
    background: transparent;
    border: 0;
    cursor: pointer;
    appearance: none;
}

    .nav-toggle span {
        display: block;
        width: 100%;
        height: 2px;
        margin: 5px 0;
        background: var(--text);
        transition: transform 0.2s ease, opacity 0.2s ease;
    }

/* Homepage hero */

.hero {
    position: relative;
    min-height: 100vh;
    padding: calc(var(--header-height) + 4rem) 5% 5rem;
    display: grid;
    place-items: center;
    overflow: hidden;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.82)), url("../images/hero.jpg") center center / cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient( circle at center, transparent 20%, rgba(0, 0, 0, 0.5) );
}

.hero-content {
    position: relative;
    z-index: 1;
    width: min(100%, 900px);
}

.eyebrow,
.section-label {
    color: var(--muted);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.22em;
}

.hero-tagline {
    color: var(--muted);
    font-size: clamp(1rem, 2vw, 1.4rem);
}

.hero-actions {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Buttons */

.button {
    min-width: 150px;
    padding: 0.85rem 1.25rem;
    border: 1px solid var(--accent);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

    .button:hover {
        transform: translateY(-2px);
    }

.button-primary {
    background: var(--accent);
    color: var(--background);
}

    .button-primary:hover {
        background: transparent;
        color: var(--text);
    }

.button-secondary {
    background: transparent;
}

    .button-secondary:hover {
        background: var(--accent);
        color: var(--background);
    }

/* Standard page layout */

.page-main {
    padding-top: var(--header-height);
}

.page-hero {
    padding: 6rem 5% 4rem;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
}

    .page-hero .section-inner {
        width: min(100%, var(--max-width));
        margin: 0 auto;
    }

    .page-hero h1 {
        margin: 0 0 1rem;
        font-size: clamp(4rem, 10vw, 8rem);
        line-height: 0.95;
    }

    .page-hero p:last-child {
        max-width: 700px;
        color: var(--muted);
        font-size: 1.1rem;
    }

/* Content sections */

.section {
    padding: 7rem 5%;
}

.section-dark {
    background: var(--surface);
}

.section-inner {
    width: min(100%, var(--max-width));
    margin: 0 auto;
}

.section-copy {
    max-width: 700px;
    color: var(--muted);
    font-size: 1.1rem;
}

.text-link {
    display: inline-block;
    margin-top: 1rem;
    font-weight: 700;
    text-decoration: none;
}

/* Gigs */

.gig-list {
    margin: 2rem 0;
    border-top: 1px solid var(--border);
}

.gig-card {
    padding: 1.5rem 0;
    display: grid;
    grid-template-columns: 150px 1fr auto;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid var(--border);
}

.gig-date,
.gig-location {
    color: var(--muted);
}

/* Music */

.music-placeholder {
    min-height: 220px;
    padding: 2rem;
    display: grid;
    place-items: center;
    color: var(--muted);
    border: 1px dashed var(--border);
}

/* Footer */

.site-footer {
    padding: 2rem 5%;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    background: #050505;
    color: var(--muted);
    border-top: 1px solid var(--border);
}

.footer-links {
    display: flex;
    gap: 1rem;
}

    .footer-links a {
        text-decoration: none;
    }

/* ========================================
   About
   ======================================== */

/* About hero */

.about-hero {
    position: relative;
    min-height: 55vh;
    padding: calc(var(--header-height) + 5rem) 5% 5rem;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.15)), url("../images/about/about-hero.jpg") center center / cover no-repeat;
}

.about-hero-content {
    position: relative;
    z-index: 1;
    width: min(100%, var(--max-width));
    margin: 0 auto;
}

.about-hero h1 {
    margin-bottom: 0.75rem;
}

.about-hero-tagline {
    max-width: 650px;
    margin-bottom: 0;
    color: var(--muted);
    font-size: clamp(1rem, 2vw, 1.3rem);
}

/* Band story */

.about-story-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: 5rem;
}

.about-story-image {
    overflow: hidden;
}

    .about-story-image img {
        width: 100%;
        height: auto;
        object-fit: contain;
        filter: grayscale(100%);
    }

.about-story-content p:not(.eyebrow) {
    color: var(--muted);
}

.about-story-content .button {
    display: inline-block;
    margin-top: 1rem;
}

/* Live banner */

.about-live-banner {
    position: relative;
    min-height: 520px;
    padding: 7rem 5%;
    display: flex;
    align-items: center;
    overflow: hidden;
    text-align: left;
    background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.75)), url("../images/gallery/live-banner.jpg") center center / cover no-repeat;
}

.about-live-content {
    position: relative;
    z-index: 1;
    width: min(100%, var(--max-width));
    margin: 0 auto;
}

    .about-live-content h2 {
        margin-bottom: 0;
    }

.about-live-stats {
    margin-top: 3.5rem;
    display: flex;
    justify-content: flex-start;
    gap: clamp(2rem, 8vw, 6rem);
}

.about-live-stat {
    display: flex;
    flex-direction: column;
}

.about-stat-number {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1;
}

.about-stat-label {
    margin-top: 0.5rem;
    color: var(--muted);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

/* Band members */

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

.about-member-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
}

.about-member-card {
    width: 100%;
    min-width: 0;
    overflow: hidden;
}

.about-member-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: var(--surface);
}

    .about-member-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        filter: grayscale(100%);
        transition: transform 0.35s ease, filter 0.35s ease;
    }

.about-member-card:hover .about-member-image img {
    transform: scale(1.03);
    filter: grayscale(0%);
}

.about-member-card h3 {
    margin: 1.25rem 0 0;
    font-size: 2rem;
    line-height: 1;
    text-transform: uppercase;
}

.about-member-role {
    margin: 0.35rem 0 0.75rem;
    color: var(--muted);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.about-member-description {
    margin-bottom: 0;
    color: var(--muted);
}

/* About gallery */

.about-gallery {
    background: var(--surface);
}

.about-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 250px;
    gap: 0.75rem;
}

    .about-gallery-grid img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: grayscale(100%);
        transition: transform 0.3s ease, filter 0.3s ease;
    }

        .about-gallery-grid img:hover {
            transform: scale(1.01);
            filter: grayscale(0%);
        }

.about-gallery-large {
    grid-row: span 2;
}

.about-gallery-wide {
    grid-column: span 2;
}

.about-gallery-link {
    margin-top: 2.5rem;
    text-align: center;
}

/* About CTA */

.about-cta {
    padding: 8rem 5%;
    text-align: center;
}

.about-cta-inner {
    width: min(100%, var(--max-width));
    margin: 0 auto;
}

.about-cta h2 {
    margin-bottom: 1.5rem;
}

.about-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-auto-rows: 260px;
    gap: 1rem;
}

    .gallery-grid img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        filter: grayscale(100%);
        transition: .3s ease;
    }

        .gallery-grid img:hover {
            filter: grayscale(0%);
            transform: scale(1.02);
        }

.gallery-large {
    grid-row: span 2;
}

.gallery-wide {
    grid-column: span 2;
}

@media(max-width:760px) {

    .gallery-grid {
        grid-template-columns: repeat(2,1fr);
        grid-auto-rows: 180px;
    }

    .gallery-wide {
        grid-column: span 2;
    }
}

.gallery-grid video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(100%);
    transition: .3s ease;
}

    .gallery-grid video:hover {
        filter: grayscale(0%);
        transform: scale(1.02);
    }


/* Mobile */

@media (max-width: 760px) {
    :root {
        --header-height: 64px;
    }

    .site-header {
        min-height: var(--header-height);
    }

    .nav-toggle {
        display: block;
        position: relative;
        z-index: 30;
    }

    .site-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 1.5rem 5%;
        display: none;
        flex-direction: column;
        gap: 1rem;
        background: rgba(8, 8, 8, 0.98);
        border-bottom: 1px solid var(--border);
    }

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

        .site-nav a {
            padding: 0.65rem 0;
            font-size: 1rem;
        }

    .hero {
        min-height: 100svh;
        padding: calc(var(--header-height) + 3rem) 1.25rem 3rem;
        background-position: 25% center;
    }

        .hero h1 {
            font-size: clamp(3.5rem, 18vw, 6rem);
        }

    .page-hero {
        padding: 4rem 5% 3rem;
    }

    .section {
        padding: 4.5rem 5%;
    }

    .gig-card {
        grid-template-columns: 1fr;
        gap: 0.25rem;
    }

    /* About mobile */

    .about-hero {
        min-height: 500px;
        padding: calc(var(--header-height) + 4rem) 5% 3.5rem;
        background-position: center;
    }

    .about-story-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-story-image img {

    }

    .about-live-banner {
        min-height: 550px;
        padding: 5rem 5%;
    }

    .about-live-stats {
        flex-direction: column;
        gap: 2rem;
    }

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

    .about-member-image {
        height: auto;
    }

        .about-member-image img {
            height: auto;
            aspect-ratio: 3 / 4;
            object-fit: cover;
        }

    .about-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 180px;
    }

    .about-gallery-wide {
        grid-column: span 2;
    }

    .about-cta {
        padding: 5rem 5%;
    }

    .site-footer {
        flex-direction: column;
    }


}

/* Contact */

.contact-grid {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 2rem;
}

.contact-card {
    padding: 2rem;
    background: var(--surface);
    border: 1px solid var(--border);
}

    .contact-card h3 {
        margin-top: 0;
        margin-bottom: 1rem;
        font-size: 2rem;
    }

    .contact-card p {
        margin-bottom: 0;
        color: var(--muted);
    }

    .contact-card a {
        color: var(--muted);
        text-decoration: none;
        transition: .2s;
    }

        .contact-card a:hover {
            color: var(--text);
        }

@media(max-width:760px) {

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