/* ═══════════════════════════════════════════
   KENNY LEE LEWIS — Site Stylesheet
   Dark rock aesthetic, based on n477S mockup
════════════════════════════════════════════ */

/* ── Reset & Base ─────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --black:      #0a0a0a;
    --dark:       #111111;
    --dark-mid:   #1a1a1a;
    --mid:        #222222;
    --border:     #2e2e2e;
    --accent:     #c8102e;      /* deep red */
    --accent-hov: #e01030;
    --gold:       #c9a84c;
    --white:      #ffffff;
    --light:      #e0e0e0;
    --muted:      #888888;
    --font-head:  'Oswald', sans-serif;
    --font-body:  'Open Sans', sans-serif;
    --header-h:   68px;
    --trans:      0.25s ease;
}

html { scroll-behavior: smooth; }

body {
    background: var(--black);
    color: var(--light);
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Buttons ──────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 30px;
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 2px solid transparent;
    cursor: pointer;
    transition: background var(--trans), color var(--trans), border-color var(--trans);
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}
.btn-primary:hover {
    background: var(--accent-hov);
    border-color: var(--accent-hov);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
    font-size: 13px;
    padding: 10px 22px;
}
.btn-outline:hover {
    background: var(--white);
    color: var(--black);
}

/* ── HEADER ───────────────────────────────── */
#site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--header-h);
    background: rgba(10, 10, 10, 0.96);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(8px);
}

.header-inner {
    display: flex;
    align-items: center;
    height: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 clamp(80px, 8vw, 200px);
    gap: 20px;
}

/* Logo */
.logo a { display: flex; align-items: center; }
.logo-text {
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--white);
    white-space: nowrap;
}

/* Main Nav */
.main-nav { flex: 1; display: flex; justify-content: center; }
.main-nav > ul { display: flex; align-items: center; gap: 2px; }
.main-nav > ul > li { position: relative; }

.main-nav > ul > li > a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 14px;
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--light);
    transition: color var(--trans);
}
.main-nav > ul > li > a:hover,
.main-nav > ul > li.active > a { color: var(--accent); }

/* Dropdowns */
.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
    background: var(--dark-mid);
    border: 1px solid var(--border);
    border-top: 2px solid var(--accent);
    padding: 8px 0;
    z-index: 200;
}
.has-dropdown:hover .dropdown { display: block; }
.dropdown li a {
    display: block;
    padding: 9px 18px;
    font-size: 13px;
    color: var(--light);
    transition: background var(--trans), color var(--trans);
}
.dropdown li a:hover {
    background: var(--mid);
    color: var(--accent);
}

/* Social icons in header */
.social-icons { display: flex; align-items: center; gap: 14px; }
.social-icons a {
    color: var(--muted);
    font-size: 14px;
    transition: color var(--trans);
}
.social-icons a:hover { color: var(--white); }

/* Mobile toggle (hidden by default) */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px; height: 18px;
    background: none; border: none; cursor: pointer; padding: 0;
}
.nav-toggle span {
    display: block;
    width: 100%; height: 2px;
    background: var(--white);
    transition: transform var(--trans), opacity var(--trans);
}

/* ── HERO SECTION ─────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: var(--header-h);
    background: var(--black);
}

/* Textured dark gradient background */
.hero-bg {
    position: absolute;
    inset: 0;
    background:
  black;
    z-index: 0;
}

/* Decorative noise / grain overlay */
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: 0.35;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    flex: 0 0 55%;
    padding: 80px 60px 80px calc(clamp(80px, 8vw, 200px) + max(0px, (100vw - 1440px) / 2));
}

.hero-name {
    font-family: var(--font-head);
    font-size: clamp(42px, 6vw, 78px);
    font-weight: 700;
    letter-spacing: 0.06em;
    line-height: 1.0;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 16px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.8);
}

.hero-tagline {
    font-family: var(--font-body);
    font-size: clamp(14px, 1.5vw, 17px);
    font-weight: 300;
    color: var(--light);
    letter-spacing: 0.04em;
    margin-bottom: 36px;
    opacity: 0.9;
}

/* Hero image (right side) */
.hero-image {
    position: absolute;
    right: 0;
    top: var(--header-h);
    bottom: 0;
    width: 90%;
    z-index: 1;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: brightness(0.88) contrast(1.05);
}

/* Gradient fade from left to make photo blend with dark bg */
.hero-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--black) 0%, rgba(10,10,10,0.6) 22%, transparent 42%);
    z-index: 2;
}

/* Bottom gradient for transition into panels */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 120px;
    background: linear-gradient(to bottom, transparent, var(--dark-mid));
    z-index: 3;
    pointer-events: none;
}

/* Right arrow nav button */
.hero-arrow {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--white);
    width: 42px; height: 42px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    font-size: 14px;
    transition: background var(--trans);
}
.hero-arrow:hover { background: rgba(255,255,255,0.18); }

/* Hero credential badges */
.hero-credentials {
    list-style: none;
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.hero-credentials li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
}
.hero-credentials li em {
    font-style: italic;
    color: var(--gold);
    text-transform: none;
    letter-spacing: 0.04em;
}
.cred-bullet {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--accent);
    flex-shrink: 0;
}

/* ── PANELS (bottom strip) ────────────────── */
.panels {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--dark-mid);
    border-top: 2px solid var(--border);
}

.panel {
    padding: 28px 26px 32px;
    border-right: 1px solid var(--border);
    transition: background var(--trans);
}
.panel:last-child { border-right: none; }
.panel:hover { background: rgba(255,255,255,0.03); }

.panel h3 {
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 18px;
}

.panel h3 .arrow {
    color: var(--accent);
    font-size: 18px;
    line-height: 1;
}

.panel-bio-wrap {
    overflow: hidden;
    margin: 10px 0;
}

.panel-bio {
    font-size: 16px;
    color: var(--light);
    line-height: 1.65;
    margin: 0 0 10px;
}
.panel-bio-img {
    float: right;
    width: 42%;
    margin: 0 0 8px 12px;
    display: block;
    border-radius: 2px;
    filter: brightness(0.88) contrast(1.05);
}
.panel-bio em { color: var(--gold); font-style: italic; }

/* BandsInTown widget panels */
.panel-bit { overflow: hidden; }

/* Force widget text/backgrounds to match dark theme */
.panel-bit .bit-widget,
.panel-bit .bit-widget-container,
.panel-bit .bit-event,
.panel-bit .bit-event__body,
.panel-bit .bit-event__venue,
.panel-bit .bit-event__location,
.panel-bit .bit-event__date-container,
.panel-bit .bit-event__date,
.panel-bit .bit-event__month,
.panel-bit .bit-event__day,
.panel-bit [class*="bit-"] {
    background: transparent !important;
    background-color: transparent !important;
    color: var(--light) !important;
}

.panel-bit .bit-event__date,
.panel-bit .bit-event__month,
.panel-bit .bit-event__day {
    color: var(--white) !important;
}

.panel-bit .bit-event__venue-name,
.panel-bit .bit-event__location {
    color: var(--muted) !important;
}

.panel-bit .bit-event {
    border-bottom: 1px solid var(--border) !important;
    border-top: none !important;
    box-shadow: none !important;
}

.panel-smb .bit-rsvp-button,
.panel-smb .bit-event__buttons a {
    background: var(--accent) !important;
    color: var(--white) !important;
    border-color: var(--accent) !important;
}
.panel-smb .bit-rsvp-button:hover,
.panel-smb .bit-event__buttons a:hover {
    background: var(--accent-hov) !important;
}

.panel-fillmore .bit-rsvp-button,
.panel-fillmore .bit-event__buttons a {
    background: transparent !important;
    color: var(--gold) !important;
    border-color: var(--gold) !important;
}
.panel-fillmore .bit-rsvp-button:hover,
.panel-fillmore .bit-event__buttons a:hover {
    background: var(--gold) !important;
    color: var(--black) !important;
}

/* Panel 2: Music grid */
.music-grid { display: flex; flex-direction: column; gap: 10px; }
.music-item {
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 8px;
}
.music-item:last-child { border-bottom: none; }
.music-date {
    font-family: var(--font-head);
    font-size: 11px;
    letter-spacing: 0.06em;
    color: var(--accent);
    min-width: 36px;
}
.music-title { font-size: 12px; color: var(--light); }

/* Panel 3: Tour grid */
.tour-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 12px;
}
.tour-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.tour-date {
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.04em;
}
.tour-city {
    font-size: 11px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Panel 4: Lessons / TrueFire */
.truefire-badge {
    margin-bottom: 14px;
}
.truefire-logo {
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.03em;
}
.truefire-logo em {
    font-style: normal;
    color: var(--gold);
}
.panel-lessons p {
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 18px;
    line-height: 1.5;
}

.panel-cta {
    display: inline-block;
    margin-top: 14px;
    font-family: var(--font-head);
    font-size: 12px;
    letter-spacing: 0.06em;
    color: var(--accent);
    transition: color var(--trans);
}
.panel-cta:hover { color: var(--accent-hov); }

/* ── VIDEO STRIP ──────────────────────────── */
.video-strip {
    background: var(--dark);
    padding: 70px 0;
    border-top: 1px solid var(--border);
}

.section-title {
    font-family: var(--font-head);
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--white);
    text-align: center;
    margin-bottom: 10px;
}
.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--accent);
    margin: 14px auto 40px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.video-card {
    cursor: pointer;
}
.video-card p {
    margin-top: 12px;
    font-size: 13px;
    color: var(--light);
    text-align: center;
}

.video-thumb {
    position: relative;
    overflow: hidden;
    border-radius: 3px;
    aspect-ratio: 16/9;
    background: var(--mid);
}
.video-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, filter 0.4s ease;
    filter: brightness(0.65);
}
.video-card:hover .video-thumb img {
    transform: scale(1.05);
    filter: brightness(0.5);
}
.video-thumb .fa-play-circle {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-size: 52px;
    color: rgba(255,255,255,0.85);
    z-index: 2;
    transition: color var(--trans), transform var(--trans);
}
.video-card:hover .video-thumb .fa-play-circle {
    color: var(--accent);
    transform: translate(-50%, -50%) scale(1.12);
}

/* ── VIDEO MODAL ──────────────────────────── */
.video-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0,0,0,0.92);
    align-items: center;
    justify-content: center;
}
.video-modal.active { display: flex; }

.video-modal-inner {
    width: 90vw;
    max-width: 960px;
}

.video-modal-embed {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
}
.video-modal-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.video-modal-footer {
    display: none;
    text-align: center;
    margin-top: 16px;
}
.video-modal-footer a {
    font-family: var(--font-head);
    font-size: 14px;
    letter-spacing: 0.08em;
    color: var(--gold);
    text-decoration: none;
    transition: color var(--trans);
}
.video-modal-footer a:hover {
    color: var(--white);
}

.video-modal-close {
    position: fixed;
    top: 24px;
    right: 28px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 38px;
    line-height: 1;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity var(--trans);
    z-index: 10;
}
.video-modal-close:hover { opacity: 1; }

/* ── PAGE BANNER (interior pages) ────────── */
.page-banner {
    position: relative;
    padding: calc(var(--header-h) + 60px) 0 60px;
    background: var(--dark);
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}

.page-banner__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0f00 60%, #0a0a0a 100%);
    opacity: 0.8;
}

.page-banner__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--accent) 0%, transparent 4px);
    opacity: 0.6;
}

.page-banner__content {
    position: relative;
    z-index: 1;
}

.page-banner__super {
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 10px;
}

.page-banner__title {
    font-family: var(--font-head);
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--white);
    line-height: 1;
}

/* ── ABOUT PAGE ───────────────────────────── */

/* Lead section: photo left, text right */
.about-lead {
    padding: 72px 0 64px;
    background: var(--black);
}

.about-lead__inner {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 60px;
    align-items: start;
}

.about-lead__photo {
    position: sticky;
    top: calc(var(--header-h) + 24px);
}

.about-lead__photo img {
    width: 100%;
    border-radius: 2px;
    filter: brightness(0.92) contrast(1.05);
}

.about-lead__photo-caption {
    margin-top: 12px;
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 0.05em;
    text-align: center;
}

.about-kicker {
    display: block;
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
}

.about-lead__text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--light);
}

.about-lead__text strong { color: var(--white); font-weight: 600; }
.about-lead__text em { color: var(--gold); font-style: italic; }

/* Bio sections */
.about-section {
    padding: 64px 0;
    border-top: 1px solid var(--border);
    background: var(--black);
}

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

.about-section__inner {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 48px;
    align-items: start;
}

.section-badge {
    display: inline-block;
    font-family: var(--font-head);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    border: 1px solid var(--accent);
    padding: 5px 10px;
    margin-top: 8px;
}

.about-section__title {
    font-family: var(--font-head);
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 18px;
}

.about-section__body p {
    font-size: 15px;
    line-height: 1.85;
    color: var(--light);
    margin-bottom: 24px;
}

.about-section__body p:last-child { margin-bottom: 0; }
.about-section__body strong { color: var(--white); font-weight: 600; }
.about-section__body em { color: var(--gold); font-style: italic; }

/* Pull quote */
.about-quote {
    border-left: 3px solid var(--accent);
    margin: 28px 0 0;
    padding: 10px 0 10px 24px;
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.03em;
    color: var(--light);
    font-style: italic;
}

/* Band members grid */
.band-members {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
    margin-top: 28px;
}

.band-member {
    background: var(--dark-mid);
    border: 1px solid var(--border);
    border-top: 2px solid var(--accent);
    padding: 14px 16px;
}

.band-member__name {
    display: block;
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.04em;
    margin-bottom: 4px;
}

.band-member__role {
    display: block;
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* About page responsive */
@media (max-width: 900px) {
    .about-lead__inner {
        grid-template-columns: 1fr;
    }
    .about-lead__photo {
        position: static;
        max-width: 320px;
        margin: 0 auto;
    }
    .about-section__inner {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* ── GALLERY PAGE ─────────────────────────── */
.gallery-section {
    background: var(--black);
    padding: 72px 0 80px;
}

.gallery-grid {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.gallery-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: block;
    margin: 0;
}

.gallery-item img {
    width: 100%;
    display: block;
    transition: transform 0.45s ease, filter 0.45s ease;
    filter: brightness(0.9);
}

.gallery-item figcaption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 28px 16px 14px;
    background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, transparent 100%);
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--light);
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.04);
    filter: brightness(0.7);
}

.gallery-item:hover figcaption {
    opacity: 1;
    transform: translateY(0);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.94);
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-inner {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-img {
    display: block;
    max-width: 90vw;
    max-height: 82vh;
    object-fit: contain;
    border: 1px solid var(--border);
}

.lightbox-caption {
    margin-top: 14px;
    font-family: var(--font-head);
    font-size: 13px;
    letter-spacing: 0.08em;
    color: var(--muted);
    text-align: center;
    text-transform: uppercase;
}

.lightbox-close {
    position: fixed;
    top: 24px;
    right: 28px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 38px;
    line-height: 1;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity var(--trans);
    z-index: 10;
}
.lightbox-close:hover { opacity: 1; }

.lightbox-prev,
.lightbox-next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--white);
    font-size: 36px;
    line-height: 1;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background var(--trans);
    z-index: 10;
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255,255,255,0.16); }

@media (max-width: 900px) {
    .gallery-grid { flex-wrap: wrap; }
    .gallery-col { flex: 0 0 calc(50% - 7px); }
}
@media (max-width: 560px) {
    .gallery-grid { flex-direction: column; }
    .gallery-col { flex: 1 1 100%; }
    .lightbox-prev { left: 8px; }
    .lightbox-next { right: 8px; }
}

/* ── FOOTER ───────────────────────────────── */
#site-footer {
    background: var(--black);
    border-top: 1px solid var(--border);
    padding: 50px 0 0;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 40px;
    display: flex;
    align-items: flex-start;
    gap: 48px;
    flex-wrap: wrap;
}

.footer-logo .logo-text {
    font-size: 18px;
    letter-spacing: 0.12em;
    display: block;
    margin-bottom: 10px;
}
.footer-logo p {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.8;
}

.footer-nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 24px;
}
.footer-nav a {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--muted);
    transition: color var(--trans);
}
.footer-nav a:hover { color: var(--white); }

.footer-social {
    display: flex;
    gap: 16px;
    margin-left: auto;
}
.footer-social a {
    color: var(--muted);
    font-size: 16px;
    transition: color var(--trans);
}
.footer-social a:hover { color: var(--white); }

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 18px 24px;
    text-align: center;
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 0.04em;
}

/* ── Header scrolled state ────────────────── */
#site-header.scrolled {
    height: 56px;
    background: rgba(6, 6, 6, 0.99);
    border-bottom-color: var(--accent);
    box-shadow: 0 2px 20px rgba(0,0,0,0.6);
}
#site-header.scrolled .logo-text { font-size: 17px; }

/* ── RESPONSIVE ───────────────────────────── */
@media (max-width: 1024px) {
    .hero-image { width: 60%; }
    .hero-content { padding: 60px 40px 60px 48px; }
    .header-inner { padding: 0 48px; }
    .panels { grid-template-columns: repeat(2, 1fr); }
    .panel { border-bottom: 1px solid var(--border); }
    .panel:nth-child(2) { border-right: none; }
    .video-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    :root { --header-h: 60px; }

    .nav-toggle { display: flex; }

    .main-nav {
        position: fixed;
        top: var(--header-h); left: 0; right: 0;
        background: var(--dark-mid);
        border-bottom: 1px solid var(--border);
        padding: 16px 0;
        transform: translateY(-110%);
        transition: transform 0.3s ease;
        z-index: 999;
        justify-content: flex-start;
        overflow-y: auto;
        max-height: calc(100vh - var(--header-h));
    }
    .main-nav.open { transform: translateY(0); }
    .main-nav ul { flex-direction: column; width: 100%; gap: 0; }
    .main-nav > ul > li > a { padding: 14px 24px; font-size: 15px; }
    .dropdown {
        display: block;
        position: static;
        background: rgba(255,255,255,0.04);
        border: none;
        border-top: none;
        padding: 0;
    }
    .dropdown li a { padding-left: 40px; }

    .social-icons { display: none; }

    .hero-content { flex: 1; padding: 60px 24px 40px; }
    .hero-image {
        opacity: 0.3;
        width: 100%;
    }

    .panels { grid-template-columns: 1fr; }
    .panel { border-right: none; }

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

    .footer-inner { gap: 32px; }
    .footer-social { margin-left: 0; }
}

/* ── SHOWS PAGE ───────────────────────────── */
.shows-page {
    background: var(--black);
}

.shows-section {
    padding: 72px 0 80px;
}

.shows-section + .shows-section {
    border-top: 1px solid var(--border);
}

.shows-divider {
    height: 1px;
    background: var(--border);
    margin: 0;
    position: relative;
}

.shows-divider::before {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gold);
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
}

.shows-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.shows-header__text {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.shows-label {
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
}

.shows-title {
    font-family: var(--font-head);
    font-size: clamp(26px, 4vw, 44px);
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--white);
    line-height: 1;
}

/* Accent rule under the SMB title */
.shows-smb .shows-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: var(--accent);
    margin-top: 12px;
}

/* Accent rule under the Fillmore title */
.shows-fillmore .shows-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: var(--gold);
    margin-top: 12px;
}

.shows-logo-pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    border: 1px solid;
}

.shows-logo-smb {
    color: var(--accent);
    border-color: var(--accent);
}

.shows-logo-fillmore {
    color: var(--gold);
    border-color: var(--gold);
}

/* Widget wrappers — mirror the dark theme overrides from home panels */
.shows-widget,
.shows-widget--fillmore {
    min-height: 80px;
}

.shows-widget .bit-widget,
.shows-widget .bit-widget-container,
.shows-widget .bit-event,
.shows-widget .bit-event__body,
.shows-widget [class*="bit-"],
.shows-widget--fillmore .bit-widget,
.shows-widget--fillmore .bit-widget-container,
.shows-widget--fillmore .bit-event,
.shows-widget--fillmore .bit-event__body,
.shows-widget--fillmore [class*="bit-"] {
    background: transparent !important;
    background-color: transparent !important;
    color: var(--light) !important;
}

.shows-widget .bit-event__date,
.shows-widget .bit-event__month,
.shows-widget .bit-event__day,
.shows-widget--fillmore .bit-event__date,
.shows-widget--fillmore .bit-event__month,
.shows-widget--fillmore .bit-event__day {
    color: var(--white) !important;
}

.shows-widget .bit-event__venue-name,
.shows-widget .bit-event__location,
.shows-widget--fillmore .bit-event__venue-name,
.shows-widget--fillmore .bit-event__location {
    color: var(--muted) !important;
}

.shows-widget .bit-event,
.shows-widget--fillmore .bit-event {
    border-bottom: 1px solid var(--border) !important;
    border-top: none !important;
    box-shadow: none !important;
}

/* SMB — red tickets */
.shows-widget .bit-rsvp-button,
.shows-widget .bit-event__buttons a {
    background: var(--accent) !important;
    color: var(--white) !important;
    border-color: var(--accent) !important;
}
.shows-widget .bit-rsvp-button:hover,
.shows-widget .bit-event__buttons a:hover {
    background: var(--accent-hov) !important;
}

/* Fillmore — gold tickets */
.shows-widget--fillmore .bit-rsvp-button,
.shows-widget--fillmore .bit-event__buttons a {
    background: transparent !important;
    color: var(--gold) !important;
    border-color: var(--gold) !important;
}
.shows-widget--fillmore .bit-rsvp-button:hover,
.shows-widget--fillmore .bit-event__buttons a:hover {
    background: var(--gold) !important;
    color: var(--black) !important;
}

/* Background tinting per section */
.shows-smb {
    background: var(--black);
}
.shows-fillmore {
    background: var(--dark);
}

/* Responsive */
@media (max-width: 600px) {
    .shows-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}

/* Panel trailer thumbnail */
.panel-trailer-thumb {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    margin-bottom: 14px;
    aspect-ratio: 16/9;
    background: var(--mid);
}
.panel-trailer-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
    transition: filter 0.3s ease;
    display: block;
}
.panel-lessons.video-card:hover .panel-trailer-thumb img {
    filter: brightness(0.5);
}
.panel-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    color: rgba(255,255,255,0.85);
    pointer-events: none;
    transition: color 0.25s ease, transform 0.25s ease;
}
.panel-lessons.video-card:hover .panel-play-icon {
    color: var(--gold);
    transform: translate(-50%, -50%) scale(1.1);
}


/* == DISCOGRAPHY PAGE == */

.disc-section {
    padding: 72px 0 80px;
    background: var(--black);
}

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

.disc-heading {
    font-family: var(--font-head);
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 10px;
}

.disc-heading::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: var(--accent);
    margin-top: 12px;
    margin-bottom: 40px;
}

.disc-subhead {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.7;
    max-width: 680px;
    margin-bottom: 40px;
    margin-top: -20px;
}

/* Apple Music embeds side by side */
.disc-embeds {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.disc-embed-card {
    background: var(--dark-mid);
    border: 1px solid var(--border);
    border-top: 2px solid var(--accent);
    overflow: hidden;
}

.disc-embed-card iframe {
    display: block;
    width: 100%;
}

.disc-embed-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    border-top: 1px solid var(--border);
}

.disc-year {
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--accent);
}

.disc-apple-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.07em;
    color: var(--white);
    background: rgba(255,255,255,0.08);
    border: 1px solid var(--border);
    padding: 7px 14px;
    transition: background 0.25s ease, border-color 0.25s ease;
}

.disc-apple-btn:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--white);
}

/* Extra solo album row */
.disc-solo-extra {
    border-top: 1px solid var(--border);
    padding-top: 28px;
}

.disc-album-row {
    display: flex;
    align-items: baseline;
    gap: 20px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

.disc-album-year {
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--accent);
    min-width: 48px;
}

.disc-album-title {
    display: block;
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.03em;
}

.disc-album-note {
    display: block;
    font-size: 12px;
    color: var(--muted);
    margin-top: 3px;
}

/* SMB album grid */
.disc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
}

.disc-card {
    background: var(--dark-mid);
    border: 1px solid var(--border);
    border-left: 3px solid var(--accent);
    display: flex;
    gap: 16px;
    padding: 18px 20px;
    transition: background 0.25s ease;
}

.disc-card:hover {
    background: rgba(255,255,255,0.04);
}

.disc-card-year {
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--accent);
    min-width: 38px;
    padding-top: 3px;
}

.disc-card-title {
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.03em;
    margin-bottom: 6px;
}

.disc-card-note {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.6;
}

/* Session list */
.disc-session-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 10px 24px;
    list-style: none;
    margin-top: 8px;
}

.disc-session-list li {
    font-size: 14px;
    color: var(--light);
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 8px;
}

.disc-session-list li::before {
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    background: var(--accent);
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .disc-embeds {
        grid-template-columns: 1fr;
    }
    .disc-grid {
        grid-template-columns: 1fr;
    }
}


/* == CONTACT PAGE == */

.contact-section {
    background: var(--black);
    padding: 80px 0 100px;
}

.contact-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 64px;
    align-items: start;
}

/* Left col */
.contact-info__heading {
    font-family: var(--font-head);
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 16px;
}

.contact-info__body {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 32px;
}

.contact-info__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 36px;
}

.contact-info__list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--light);
}

.contact-info__list a {
    color: var(--accent);
    transition: color 0.25s;
}
.contact-info__list a:hover { color: var(--accent-hov); }

.contact-info__icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-mid);
    border: 1px solid var(--border);
    color: var(--accent);
    font-size: 13px;
    flex-shrink: 0;
}

.contact-info__social {
    display: flex;
    gap: 14px;
}

.contact-info__social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    color: var(--muted);
    font-size: 14px;
    transition: color 0.25s, border-color 0.25s, background 0.25s;
}

.contact-info__social a:hover {
    color: var(--white);
    border-color: var(--white);
    background: rgba(255,255,255,0.06);
}

/* Alerts */
.contact-alert {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    margin-bottom: 28px;
    font-size: 14px;
    font-family: var(--font-body);
    border-left: 3px solid;
}

.contact-alert--success {
    background: rgba(40, 167, 69, 0.1);
    border-color: #28a745;
    color: #7ddf9a;
}

.contact-alert--error {
    background: rgba(200, 16, 46, 0.12);
    border-color: var(--accent);
    color: #f08090;
}

/* Form */
.contact-form-wrap {
    background: var(--dark-mid);
    border: 1px solid var(--border);
    border-top: 2px solid var(--accent);
    padding: 40px 40px 44px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.form-group label {
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--light);
}

.req {
    color: var(--accent);
}

.form-group input,
.form-group textarea {
    background: var(--mid);
    border: 1px solid var(--border);
    color: var(--light);
    font-family: var(--font-body);
    font-size: 14px;
    padding: 12px 16px;
    outline: none;
    transition: border-color 0.25s ease;
    width: 100%;
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--muted);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent);
}

.contact-form .btn {
    margin-top: 8px;
}

/* Responsive */
@media (max-width: 900px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .contact-info {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
        align-items: start;
    }
    .contact-info__heading { grid-column: 1 / -1; margin-bottom: 0; }
    .contact-info__body { grid-column: 1 / -1; margin-bottom: 0; }
}

@media (max-width: 600px) {
    .form-row { grid-template-columns: 1fr; }
    .contact-form-wrap { padding: 28px 22px 32px; }
    .contact-info { grid-template-columns: 1fr; }
}


/* == VIDEOS PAGE == */

.vp-section {
    background: var(--black);
    padding: 72px 0 80px;
}

.vp-section--alt {
    background: var(--dark);
    border-top: 1px solid var(--border);
}

.vp-heading {
    font-family: var(--font-head);
    font-size: clamp(20px, 3vw, 32px);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
}

.vp-heading::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: var(--accent);
    margin-top: 12px;
    margin-bottom: 40px;
}

/* Featured video grid — 3 columns */
.vp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* Shorts grid — centered, max 2 columns, portrait cards */
.vp-shorts-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 320px));
    gap: 28px;
}

/* Cards */
.vp-card {
    cursor: pointer;
}

.vp-thumb {
    position: relative;
    overflow: hidden;
    border-radius: 3px;
    background: var(--mid);
    aspect-ratio: 16 / 9;
}

.vp-thumb--short {
    aspect-ratio: 9 / 16;
    max-height: 480px;
}

.vp-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.7);
    transition: transform 0.4s ease, filter 0.4s ease;
}

.vp-card:hover .vp-thumb img {
    transform: scale(1.04);
    filter: brightness(0.45);
}

.vp-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 52px;
    color: rgba(255,255,255,0.85);
    pointer-events: none;
    transition: color 0.25s ease, transform 0.25s ease;
}

.vp-card--short .vp-play {
    font-size: 44px;
}

.vp-card:hover .vp-play {
    color: var(--accent);
    transform: translate(-50%, -50%) scale(1.1);
}

.vp-title {
    margin-top: 14px;
    font-size: 13px;
    color: var(--light);
    line-height: 1.5;
}

/* Shorts modal — portrait dimensions */
.video-modal-inner--short {
    width: min(420px, 90vw);
}

.video-modal-inner--short .video-modal-embed {
    padding-bottom: 177.78%; /* 9:16 */
}

/* Responsive */
@media (max-width: 900px) {
    .vp-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .vp-grid {
        grid-template-columns: 1fr;
    }
    .vp-shorts-grid {
        grid-template-columns: 1fr;
    }
}
