*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --black: #080808;
    --dark: #111111;
    --red: #CC0000;
    --red-dim: #660000;
    --off-white: #E2D8CC;
    --grey: #777770;
    --light-grey: #AAAAAA;
    --mid-grey: #333330;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--black);
    color: var(--off-white);
    font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
    overflow-x: hidden;
}

/* Grain overlay */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    background-size: 300px 300px;
    opacity: 0.8;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: overlay;
}

/* =====================
   HERO
===================== */
.hero {
    position: relative;
    background: var(--black);
    overflow: hidden;
}

.hero-promo {
    width: 100%;
    height: auto;
    display: block;
    filter: contrast(1.08) brightness(0.75);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(8, 8, 8, 0.35) 0%,
            rgba(8, 8, 8, 0.1) 40%,
            rgba(8, 8, 8, 0.55) 80%,
            var(--black) 100%);
    z-index: 1;
}

.hero-stripes {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(-55deg,
            transparent,
            transparent 60px,
            rgba(255, 255, 255, 0.006) 60px,
            rgba(255, 255, 255, 0.006) 61px);
    pointer-events: none;
    z-index: 2;
}

.hero-logo-wrap {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    z-index: 3;
    padding: 0 6% 6%;
}

.hero-logo {
    width: min(720px, 78vw);
    height: auto;
    display: block;
    filter: drop-shadow(0 4px 60px rgba(0, 0, 0, 0.9));
}

.hero-tagline {
    font-family: 'Bebas Neue', 'Impact', sans-serif;
    font-size: clamp(11px, 2vw, 16px);
    letter-spacing: 0.7em;
    color: var(--red);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 24px;
}

.hero-tagline::before,
.hero-tagline::after {
    content: '';
    display: block;
    width: 36px;
    height: 1px;
    background: var(--red-dim);
}

.hero-edge {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, transparent 0%, var(--red) 20%, var(--red) 80%, transparent 100%);
    z-index: 4;
}

/* =====================
   BAND BIO
===================== */
.band-bio {
    padding: 96px 24px;
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.eyebrow {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 10px;
    letter-spacing: 0.6em;
    color: var(--red);
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
}

.band-bio h2 {
    font-family: 'Bebas Neue', 'Impact', sans-serif;
    font-size: clamp(52px, 10vw, 96px);
    letter-spacing: 0.06em;
    line-height: 0.9;
    color: var(--off-white);
    margin-bottom: 36px;
    text-shadow: 0 0 80px rgba(180, 0, 0, 0.15);
}

.band-bio p {
    font-size: clamp(15px, 2.2vw, 18px);
    line-height: 1.8;
    font-weight: 300;
    color: var(--light-grey);
    letter-spacing: 0.025em;
}

/* =====================
   DIVIDER
===================== */
.section-divider {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 0 5%;
}

.section-divider::before,
.section-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(180, 0, 0, 0.4));
}

.section-divider::after {
    background: linear-gradient(to left, transparent, rgba(180, 0, 0, 0.4));
}

.section-divider-icon {
    width: 8px;
    height: 8px;
    background: var(--red);
    transform: rotate(45deg);
    margin: 0 20px;
    flex-shrink: 0;
}

/* =====================
   MEMBERS
===================== */
.members-label {
    padding: 60px 24px 0;
    text-align: center;
}

.members-label span {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 10px;
    letter-spacing: 0.6em;
    color: var(--grey);
    text-transform: uppercase;
}

.member {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "photo content";
    min-height: 80vh;
    position: relative;
    overflow: hidden;
}

.member.reverse {
    grid-template-areas: "content photo";
}

.member::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 8%;
    right: 8%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(180, 0, 0, 0.25), transparent);
}

.member-photo-wrap {
    grid-area: photo;
    position: relative;
    overflow: hidden;
}

.member:not(.reverse) .member-photo-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(8, 8, 8, 0) 30%, rgba(8, 8, 8, 0.7) 70%, var(--black) 100%);
    pointer-events: none;
}

.member.reverse .member-photo-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to left, rgba(8, 8, 8, 0) 30%, rgba(8, 8, 8, 0.7) 70%, var(--black) 100%);
    pointer-events: none;
}

.member-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    filter: grayscale(25%) contrast(1.1) brightness(0.8);
    min-height: 560px;
}

.member-content {
    grid-area: content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 52px;
    position: relative;
}

.member-bg-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 200px;
    color: rgba(255, 255, 255, 0.025);
    line-height: 1;
    position: absolute;
    bottom: -20px;
    right: -10px;
    user-select: none;
    pointer-events: none;
    letter-spacing: -0.05em;
}

.member.reverse .member-bg-num {
    right: auto;
    left: -10px;
}

.member-role {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 10px;
    letter-spacing: 0.6em;
    color: var(--red);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.member-name {
    font-family: 'Bebas Neue', 'Impact', sans-serif;
    font-size: clamp(52px, 6.5vw, 88px);
    line-height: 0.88;
    color: var(--off-white);
    margin-bottom: 28px;
    letter-spacing: 0.025em;
    text-shadow: 0 2px 40px rgba(0, 0, 0, 0.8);
}

.member-name .last {
    color: var(--red);
}

.member-rule {
    width: 56px;
    height: 2px;
    background: var(--red);
    margin-bottom: 28px;
    flex-shrink: 0;
}

.member-bio {
    font-size: clamp(14px, 1.7vw, 16px);
    line-height: 1.8;
    font-weight: 300;
    color: var(--light-grey);
    letter-spacing: 0.02em;
    max-width: 440px;
    position: relative;
    z-index: 1;
}

.member-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 36px;
    position: relative;
    z-index: 1;
}

.stat {
    padding-left: 14px;
    border-left: 2px solid var(--red-dim);
}

.stat-label {
    display: block;
    font-size: 8px;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: var(--grey);
    margin-bottom: 3px;
}

.stat-value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 15px;
    color: var(--off-white);
    letter-spacing: 0.06em;
}

.bio-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 32px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 11px;
    letter-spacing: 0.5em;
    color: var(--grey);
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.2s;
    position: relative;
    z-index: 1;
}

.bio-link::after {
    content: '→';
    font-size: 13px;
    transition: transform 0.2s;
}

.bio-link:hover {
    color: var(--red);
}

.bio-link:hover::after {
    transform: translateX(4px);
}

/* =====================
   LATEST RELEASE
===================== */
.release-section {
    padding: 80px 5%;
    max-width: 1100px;
    margin: 0 auto;
}

.release-header {
    margin-bottom: 48px;
}

.release-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(48px, 6vw, 80px);
    letter-spacing: 0.04em;
    color: var(--off-white);
    line-height: 0.9;
    margin: 8px 0 20px;
}

.release-desc {
    font-size: 17px;
    font-weight: 300;
    color: var(--grey);
    line-height: 1.65;
    max-width: 100%;
    letter-spacing: 0.01em;
}



/* =====================
   MAIN PAGE FOOTER
===================== */
.spa-main-page footer {
    padding: 48px 24px;
    text-align: center;
    position: relative;
}

.spa-main-page footer::before {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent 0%, rgba(180, 0, 0, 0.4) 50%, transparent 100%);
    margin-bottom: 40px;
}

.spa-main-page footer p {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 10px;
    letter-spacing: 0.5em;
    color: var(--grey);
    text-transform: uppercase;
}

.spa-main-page footer .footer-tagline {
    color: var(--red-dim);
    margin-top: 10px;
    font-size: 9px;
    letter-spacing: 0.7em;
}

.spa-main-page footer .footer-ai {
    margin-top: 20px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: #444440;
}

/* =====================
   SCROLL ANIMATIONS
===================== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.left {
    transform: translateX(-40px);
}

.reveal.right {
    transform: translateX(40px);
}

.reveal.visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* =====================
   BIO PAGES (embedded)
===================== */

/* Back nav — shown only on bio pages */
.spa-bio-page nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    padding: 16px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(to bottom, rgba(8, 8, 8, 0.95), transparent);
}

.nav-back {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 12px;
    letter-spacing: 0.4em;
    color: var(--grey);
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.nav-back::before {
    content: '←';
    font-size: 14px;
}

.nav-back:hover {
    color: var(--red);
}

.nav-band {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 13px;
    letter-spacing: 0.4em;
    color: var(--grey);
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
}

/* Bio hero */
.bio-hero {
    position: relative;
    height: 90vh;
    overflow: hidden;
}

.bio-hero-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: grayscale(20%) contrast(1.1) brightness(0.65);
}

.bio-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(8, 8, 8, 0.2) 0%,
            rgba(8, 8, 8, 0.1) 40%,
            rgba(8, 8, 8, 0.7) 75%,
            var(--black) 100%);
}

.bio-hero-content {
    position: absolute;
    bottom: 60px;
    left: 5%;
    right: 5%;
}

.bio-hero-content .role {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 11px;
    letter-spacing: 0.6em;
    color: var(--red);
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.bio-hero-content h1 {
    font-family: 'Bebas Neue', 'Impact', sans-serif;
    font-size: clamp(72px, 14vw, 160px);
    line-height: 0.85;
    color: var(--off-white);
    letter-spacing: 0.03em;
    text-shadow: 0 4px 60px rgba(0, 0, 0, 0.8);
}

.bio-hero-content h1 span {
    color: var(--red);
}

/* Stats strip */
.stats-strip {
    display: flex;
    flex-wrap: wrap;
    border-top: 1px solid var(--red-dim);
    border-bottom: 1px solid var(--mid-grey);
    background: rgba(255, 255, 255, 0.02);
}

.stats-strip-item {
    flex: 1;
    min-width: 120px;
    padding: 20px 28px;
    border-right: 1px solid var(--mid-grey);
}

.stats-strip-item:last-child {
    border-right: none;
}

.stats-strip-item .label {
    display: block;
    font-size: 8px;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: var(--grey);
    margin-bottom: 6px;
}

.stats-strip-item .value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 16px;
    color: var(--off-white);
    letter-spacing: 0.05em;
}

/* Bio body layout */
.bio-body {
    max-width: 1200px;
    margin: 0 auto;
    padding: 72px 5% 80px;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 64px;
    align-items: start;
}

.bio-section {
    margin-bottom: 56px;
}

.bio-section:last-child {
    margin-bottom: 0;
}

.section-eyebrow {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.section-eyebrow::before {
    content: '';
    display: block;
    width: 32px;
    height: 2px;
    background: var(--red);
    flex-shrink: 0;
}

.section-eyebrow span {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 10px;
    letter-spacing: 0.6em;
    color: var(--red);
    text-transform: uppercase;
}

.bio-section h2 {
    font-family: 'Bebas Neue', 'Impact', sans-serif;
    font-size: clamp(36px, 5vw, 52px);
    letter-spacing: 0.04em;
    color: var(--off-white);
    margin-bottom: 24px;
    line-height: 1;
}

.bio-section p {
    font-size: clamp(14px, 1.8vw, 17px);
    line-height: 1.85;
    font-weight: 300;
    color: var(--light-grey);
    letter-spacing: 0.02em;
    margin-bottom: 16px;
}

.bio-section p:last-child {
    margin-bottom: 0;
}

/* Sidebar */
.bio-sidebar {
    position: sticky;
    top: 80px;
}

.sidebar-block {
    border: 1px solid var(--mid-grey);
    margin-bottom: 24px;
    background: rgba(255, 255, 255, 0.015);
}

.sidebar-block-header {
    padding: 14px 20px;
    border-bottom: 1px solid var(--mid-grey);
    background: rgba(200, 0, 0, 0.06);
}

.sidebar-block-header span {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 10px;
    letter-spacing: 0.5em;
    color: var(--red);
    text-transform: uppercase;
}

.sidebar-block-body {
    padding: 20px;
}

.sidebar-block-body ul {
    list-style: none;
}

.sidebar-block-body ul li {
    font-size: 14px;
    line-height: 1.6;
    font-weight: 300;
    color: var(--light-grey);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    letter-spacing: 0.02em;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.sidebar-block-body ul li::before {
    content: '//';
    color: var(--red-dim);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 10px;
    letter-spacing: 0.1em;
    margin-top: 2px;
    flex-shrink: 0;
}

.sidebar-block-body ul li:last-child {
    border-bottom: none;
}

/* Bio section divider (scoped — different from main page .section-divider) */
.spa-bio-page .bio-divider {
    height: 1px;
    background: linear-gradient(to right, var(--red-dim), transparent);
    margin-bottom: 56px;
}

/* Pull quote */
.pull-quote {
    border-left: 3px solid var(--red);
    padding: 20px 28px;
    margin: 32px 0;
    background: rgba(200, 0, 0, 0.04);
}

.pull-quote p {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(20px, 2.5vw, 26px) !important;
    letter-spacing: 0.04em;
    color: var(--off-white) !important;
    line-height: 1.3 !important;
    margin: 0 !important;
}

/* Bio footer (scoped) */
.spa-bio-page footer {
    padding: 40px 5%;
    text-align: center;
    border-top: 1px solid var(--mid-grey);
}

.spa-bio-page footer p {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 10px;
    letter-spacing: 0.5em;
    color: var(--grey);
    text-transform: uppercase;
}

/* Bio mobile */
@media (max-width: 900px) {
    .bio-body {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 48px 6% 60px;
    }

    .bio-sidebar {
        position: static;
    }

    .bio-hero {
        height: 70vh;
    }

    .stats-strip-item {
        min-width: 100px;
        padding: 16px 20px;
    }
}

/* =====================
   MOBILE — MAIN PAGE
===================== */
@media (min-width: 801px) and (max-width: 2100px) {
    .hero-logo-wrap {
        padding: 0 6% 4%;
        justify-content: flex-end;
    }

    .hero-logo {
        width: min(480px, 50vw);
    }
}

@media (max-width: 800px) {
    .hero-logo-wrap {
        padding: 0 8% 3%;
    }

    .hero-logo {
        width: min(320px, 55vw);
    }

    .member,
    .member.reverse {
        grid-template-columns: 1fr;
        grid-template-areas: "photo" "content";
        min-height: auto;
    }

    .member-photo {
        min-height: 380px;
    }

    .member:not(.reverse) .member-photo-wrap::after,
    .member.reverse .member-photo-wrap::after {
        background: linear-gradient(to bottom, rgba(8, 8, 8, 0) 50%, var(--black) 100%);
    }

    .member-content {
        padding: 36px 24px 56px;
    }

    .member-bg-num,
    .member.reverse .member-bg-num {
        right: -10px;
        left: auto;
    }

    .member-stats {
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .hero-logo-wrap {
        padding: 0 6% 3%;
    }

    .hero-logo {
        width: min(220px, 58vw);
    }
}

