/* ============================================================
   GEORGE D. BROWN MUSIC — SITE STYLES
   Color palette extracted from GBSUIT01_ - 1.png:
   Navy blues, chocolate browns, amber golds, teal greens
   ============================================================ */

:root {
    --color-bg:          #0d0d14;
    --color-bg-alt:      #12121c;
    --color-bg-card:     #161622;
    --color-surface:     #1c1c2e;
    --color-navy:        #2c3e6b;
    --color-navy-light:  #3a5289;
    --color-gold:        #c8963e;
    --color-gold-light:  #e0b45a;
    --color-gold-dim:    #9a7430;
    --color-teal:        #4a7c6f;
    --color-teal-light:  #5ea08f;
    --color-brown:       #5c3a21;
    --color-brown-light: #7a5438;
    --color-cream:       #f5efe6;
    --color-cream-dim:   #c4baa8;
    --color-text:        #e8e2d8;
    --color-text-muted:  #8a8494;
    --color-border:      rgba(200, 150, 62, 0.15);
    --color-overlay:     rgba(13, 13, 20, 0.85);

    --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono:    'JetBrains Mono', 'Fira Code', monospace;

    --space-xs:  0.25rem;
    --space-sm:  0.5rem;
    --space-md:  1rem;
    --space-lg:  2rem;
    --space-xl:  4rem;
    --space-2xl: 6rem;
    --space-3xl: 10rem;

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --transition-fast:   150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base:   300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow:   600ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: 500ms cubic-bezier(0.175, 0.885, 0.32, 1.275);

    --header-height: 80px;
}

/* ---- RESET & BASE ---- */

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    color: var(--color-gold);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-gold-light);
}

a:focus-visible, button:focus-visible, input:focus-visible,
textarea:focus-visible, select:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 3px;
}

::selection {
    background: var(--color-gold);
    color: var(--color-bg);
}

/* ---- SKIP LINK ---- */

.skip-link {
    position: absolute;
    top: -100%;
    left: var(--space-md);
    padding: var(--space-sm) var(--space-md);
    background: var(--color-gold);
    color: var(--color-bg);
    font-weight: 600;
    border-radius: var(--radius-sm);
    z-index: 10000;
    transition: top var(--transition-fast);
}

.skip-link:focus {
    top: var(--space-md);
}

/* ---- SCREEN READER ONLY ---- */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ---- CONTAINER ---- */

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* ---- BUTTONS ---- */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.btn:hover::after {
    opacity: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dim));
    color: var(--color-bg);
}

.btn-primary:hover {
    color: var(--color-bg);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(200, 150, 62, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--color-gold);
    border: 1.5px solid var(--color-gold);
}

.btn-outline:hover {
    background: var(--color-gold);
    color: var(--color-bg);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 0.625rem 1.25rem;
    font-size: 0.75rem;
}

.btn-full {
    width: 100%;
}

/* ---- SECTION UTILITIES ---- */

.section {
    padding: var(--space-3xl) 0;
    position: relative;
}

.section-label {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: var(--space-md);
    position: relative;
    padding-left: 2rem;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 1.25rem;
    height: 1px;
    background: var(--color-gold);
}

.section-heading {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--color-cream);
    margin-bottom: var(--space-lg);
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto var(--space-xl);
}

.section-header .section-label {
    padding-left: 0;
}

.section-header .section-label::before {
    display: none;
}

.section-description {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    line-height: 1.8;
}

/* ============================================================
   HEADER / NAV
   ============================================================ */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    z-index: 1000;
    transition: all var(--transition-base);
    background: transparent;
}

.site-header.scrolled {
    background: rgba(13, 13, 20, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 var(--color-border);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    height: 100%;
}

.nav-logo img {
    height: 45px;
    width: auto;
    transition: opacity var(--transition-fast);
}

.nav-logo:hover img {
    opacity: 0.85;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--space-xs);
}

.nav-link {
    display: inline-block;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-cream-dim);
    transition: color var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background: var(--color-gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-gold);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-cream);
    transition: all var(--transition-base);
    transform-origin: center;
}

.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================================
   HERO
   ============================================================ */

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-wrapper {
    position: absolute;
    inset: 0;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 20%;
    background-repeat: no-repeat;
    transform: scale(1.05);
    transition: transform 8s ease-out;
}

.hero-section.loaded .hero-bg {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(13, 13, 20, 0.92) 0%, rgba(13, 13, 20, 0.5) 50%, rgba(13, 13, 20, 0.75) 100%),
        linear-gradient(to top, var(--color-bg) 0%, transparent 30%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: calc(var(--header-height) + var(--space-xl)) var(--space-lg) var(--space-xl);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    justify-content: center;
}

.hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-xl);
}

.hero-logo-col {
    flex-shrink: 0;
}

.hero-logo-v {
    width: 280px;
    height: auto;
    filter: drop-shadow(0 20px 60px rgba(0,0,0,0.6));
    animation: heroLogoFloat 6s ease-in-out infinite;
    opacity: 0;
    animation: heroFadeUp 1s ease forwards 1.1s, heroLogoFloat 6s ease-in-out infinite 2s;
}

@keyframes heroLogoFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-12px); }
}

.hero-tagline {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: var(--space-md);
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeUp 0.8s ease forwards 0.3s;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3.5rem, 10vw, 8rem);
    font-weight: 900;
    line-height: 0.95;
    color: var(--color-cream);
    margin-bottom: var(--space-lg);
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeUp 0.8s ease forwards 0.5s;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--color-cream-dim);
    max-width: 500px;
    line-height: 1.8;
    margin-bottom: var(--space-xl);
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeUp 0.8s ease forwards 0.7s;
}

.hero-cta-group {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeUp 0.8s ease forwards 0.9s;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: var(--space-lg);
    right: var(--space-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    opacity: 0;
    animation: heroFadeUp 0.8s ease forwards 1.2s;
}

.scroll-text {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-cream-dim);
    writing-mode: vertical-rl;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--color-gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes heroFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.5); transform-origin: top; }
    50%      { opacity: 1;   transform: scaleY(1); }
}

/* ============================================================
   ABOUT
   ============================================================ */

.about-section {
    background: var(--color-bg);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: var(--space-xl);
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-image-wrapper img {
    border-radius: var(--radius-md);
    width: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.image-accent-border {
    position: absolute;
    top: -12px;
    left: -12px;
    right: 12px;
    bottom: 12px;
    border: 2px solid var(--color-gold);
    border-radius: var(--radius-md);
    opacity: 0.4;
    z-index: 0;
}

.about-body p {
    margin-bottom: var(--space-md);
    color: var(--color-cream-dim);
    font-size: 1.05rem;
}

.about-body p:first-child {
    font-size: 1.15rem;
    color: var(--color-text);
}

.about-stats {
    display: flex;
    gap: var(--space-xl);
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--color-border);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-gold);
    line-height: 1;
}

.stat-suffix {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-gold);
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-top: var(--space-xs);
}

/* ============================================================
   MUSIC
   ============================================================ */

.music-section {
    background: var(--color-bg-alt);
}

.music-player-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.music-player {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--space-xl);
    gap: var(--space-lg);
}

.player-album-art {
    position: relative;
    width: 220px;
    height: auto;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.player-album-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vinyl-ring {
    position: absolute;
    inset: -4px;
    border-radius: var(--radius-md);
    border: 2px solid rgba(200, 150, 62, 0.3);
    pointer-events: none;
}

.player-controls {
    width: 100%;
    text-align: center;
}

.player-track-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--color-cream);
    margin-bottom: 0.25rem;
}

.player-track-artist {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: var(--space-md);
}

.player-progress-wrapper {
    margin-bottom: var(--space-md);
}

.player-progress-bar {
    width: 100%;
    height: 4px;
    background: var(--color-surface);
    border-radius: 2px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.player-progress-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
    border-radius: 2px;
    transition: width 0.1s linear;
}

.player-time {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--color-text-muted);
    margin-top: 0.5rem;
}

.player-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
}

.player-btn {
    background: none;
    border: none;
    color: var(--color-cream-dim);
    cursor: pointer;
    transition: all var(--transition-fast);
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.player-btn:hover {
    color: var(--color-gold);
    transform: scale(1.1);
}

.player-btn-play {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dim));
    color: var(--color-bg) !important;
}

.player-btn-play:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 30px rgba(200, 150, 62, 0.3);
}

.track-list {
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.track-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
    border-bottom: 1px solid rgba(255,255,255,0.03);
}

.track-item:last-child {
    border-bottom: none;
}

.track-item:hover,
.track-item.active {
    background: rgba(200, 150, 62, 0.08);
}

.track-item.active .track-name {
    color: var(--color-gold);
}

.track-number {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--color-text-muted);
    min-width: 2rem;
}

.track-name {
    flex: 1;
    font-size: 0.95rem;
    color: var(--color-cream-dim);
    transition: color var(--transition-fast);
}

.track-duration {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.streaming-links {
    text-align: center;
    margin-top: var(--space-xl);
}

.streaming-label {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-bottom: var(--space-md);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.streaming-icons {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
}

.streaming-link {
    color: var(--color-cream-dim);
    transition: all var(--transition-fast);
    padding: 0.5rem;
}

.streaming-link:hover {
    color: var(--color-gold);
    transform: translateY(-2px);
}

/* ============================================================
   SHOWS
   ============================================================ */

.shows-section {
    background: var(--color-bg);
}

.shows-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.show-card {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding: var(--space-lg);
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.show-card:hover {
    border-color: var(--color-gold);
    transform: translateX(8px);
    box-shadow: 0 8px 40px rgba(0,0,0,0.3);
}

.show-date-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
    padding: var(--space-md);
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dim));
    border-radius: var(--radius-sm);
}

.show-month {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-bg);
}

.show-day {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    color: var(--color-bg);
    line-height: 1;
}

.show-year {
    font-size: 0.65rem;
    color: rgba(13, 13, 20, 0.6);
    font-weight: 600;
}

.show-details {
    flex: 1;
}

.show-venue {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--color-cream);
    margin-bottom: 0.25rem;
}

.show-location {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.show-time {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--color-teal-light);
    margin-top: 0.25rem;
}

/* Show Detail Modal */

.show-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-md);
}

.show-modal[hidden] {
    display: none;
}

.show-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.show-modal-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 520px;
    max-height: 90vh;
    overflow-y: auto;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
    animation: modalSlideIn 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modalSlideIn {
    from { opacity: 0; transform: translateY(30px) scale(0.96); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.show-modal-close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: none;
    border: none;
    color: var(--color-cream-dim);
    font-size: 1.75rem;
    cursor: pointer;
    line-height: 1;
    z-index: 2;
    transition: color var(--transition-fast);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.show-modal-close:hover {
    color: var(--color-gold);
}

.show-modal-header {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding: var(--space-xl) var(--space-xl) var(--space-lg);
    border-bottom: 1px solid var(--color-border);
}

.show-modal-date-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 70px;
    padding: var(--space-md);
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dim));
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.show-modal-month {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-bg);
}

.show-modal-day {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--color-bg);
    line-height: 1;
}

.show-modal-venue {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-cream);
    margin-bottom: 0.25rem;
}

.show-modal-city {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.show-modal-info {
    padding: var(--space-lg) var(--space-xl);
}

.show-modal-description {
    color: var(--color-cream-dim);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: var(--space-lg);
}

.show-modal-meta {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.show-modal-meta-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.9rem;
    color: var(--color-cream-dim);
    padding: var(--space-sm) 0;
}

.show-modal-meta-item svg {
    color: var(--color-gold);
    flex-shrink: 0;
}

.show-modal-footer {
    padding: var(--space-lg) var(--space-xl) var(--space-xl);
    border-top: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
}

.show-modal-warmth {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--color-gold);
    text-align: center;
}

.show-details-btn {
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .show-modal-content {
        max-width: 100%;
        margin: var(--space-md);
        border-radius: var(--radius-md);
    }

    .show-modal-header {
        padding: var(--space-lg);
        flex-direction: column;
        text-align: center;
    }

    .show-modal-info {
        padding: var(--space-md) var(--space-lg);
    }

    .show-modal-footer {
        padding: var(--space-md) var(--space-lg) var(--space-lg);
    }
}

.shows-cta {
    text-align: center;
    margin-top: var(--space-xl);
    padding: var(--space-xl);
    border: 1px dashed var(--color-border);
    border-radius: var(--radius-md);
}

.shows-cta p {
    margin-bottom: var(--space-md);
    color: var(--color-cream-dim);
}

/* ============================================================
   GALLERY
   ============================================================ */

.gallery-section {
    background: var(--color-bg-alt);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    aspect-ratio: 3 / 4;
}

.gallery-item-lg {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-trigger {
    display: block;
    width: 100%;
    height: 100%;
    border: none;
    background: none;
    cursor: pointer;
    padding: 0;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13, 13, 20, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-base);
    color: var(--color-cream);
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

/* Lightbox */

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox[hidden] {
    display: none;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
}

.lightbox-content {
    position: relative;
    z-index: 1;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
    animation: lightboxFadeIn 0.3s ease;
}

@keyframes lightboxFadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to   { opacity: 1; transform: scale(1); }
}

.lightbox-close {
    position: fixed;
    top: var(--space-lg);
    right: var(--space-lg);
    background: none;
    border: none;
    color: var(--color-cream);
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 2;
    line-height: 1;
    transition: color var(--transition-fast);
}

.lightbox-close:hover {
    color: var(--color-gold);
}

.lightbox-prev, .lightbox-next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: none;
    color: var(--color-cream);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    z-index: 2;
}

.lightbox-prev { left: var(--space-lg); }
.lightbox-next { right: var(--space-lg); }

.lightbox-prev:hover, .lightbox-next:hover {
    background: var(--color-gold);
    color: var(--color-bg);
}

.lightbox-counter {
    position: fixed;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--color-cream-dim);
}

/* ============================================================
   CONTACT
   ============================================================ */

.contact-section {
    background: var(--color-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: start;
}

.contact-description {
    color: var(--color-cream-dim);
    font-size: 1.05rem;
    margin-bottom: var(--space-lg);
    line-height: 1.8;
}

.contact-details {
    margin-bottom: var(--space-lg);
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--color-cream-dim);
    margin-bottom: var(--space-sm);
}

.contact-detail-item svg {
    color: var(--color-gold);
    flex-shrink: 0;
}

.social-links {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-surface);
    color: var(--color-cream-dim);
    transition: all var(--transition-base);
}

.social-link:hover {
    background: var(--color-gold);
    color: var(--color-bg);
    transform: translateY(-3px);
}

/* Form */

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.form-label {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-cream-dim);
}

.form-input {
    padding: 0.875rem 1rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-cream);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    -webkit-appearance: none;
}

.form-input::placeholder {
    color: var(--color-text-muted);
}

.form-input:focus {
    border-color: var(--color-gold);
    background: var(--color-bg-card);
    box-shadow: 0 0 0 3px rgba(200, 150, 62, 0.1);
    outline: none;
}

.form-select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%238a8494' stroke-width='2'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-status {
    font-size: 0.85rem;
    padding: var(--space-sm) 0;
    min-height: 1.5rem;
}

.form-status.success {
    color: var(--color-teal-light);
}

.form-status.error {
    color: #e5534b;
}

.newsletter-box {
    margin-top: var(--space-xl);
    padding: var(--space-lg);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
}

.newsletter-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--color-cream);
    margin-bottom: var(--space-sm);
}

.newsletter-text {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: var(--space-md);
}

.newsletter-form {
    display: flex;
    gap: var(--space-sm);
}

.newsletter-form .form-input {
    flex: 1;
}

.newsletter-form .btn {
    white-space: nowrap;
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
    background: var(--color-bg-alt);
    border-top: 1px solid var(--color-border);
    padding: var(--space-xl) 0 var(--space-lg);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--color-border);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-sm);
}

.footer-logo-v {
    width: 60px;
    height: auto;
    margin-bottom: var(--space-xs);
}

.footer-logo-h {
    height: 36px;
    width: auto;
}

.footer-tagline {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    font-style: italic;
}

.footer-nav {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.footer-nav a {
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-cream-dim);
}

.footer-nav a:hover {
    color: var(--color-gold);
}

.footer-social {
    display: flex;
    gap: var(--space-md);
}

.footer-social a {
    color: var(--color-cream-dim);
    transition: color var(--transition-fast);
}

.footer-social a:hover {
    color: var(--color-gold);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.footer-credit {
    font-style: italic;
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

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

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

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .about-image-wrapper {
        max-width: 400px;
        margin: 0 auto;
    }

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

    .music-player-wrapper {
        grid-template-columns: 1fr;
    }
}

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

    .section {
        padding: var(--space-2xl) 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: min(320px, 85vw);
        height: 100vh;
        flex-direction: column;
        background: var(--color-bg-card);
        padding: calc(var(--header-height) + var(--space-lg)) var(--space-lg) var(--space-lg);
        transform: translateX(100%);
        transition: transform var(--transition-base);
        box-shadow: -10px 0 40px rgba(0,0,0,0.5);
        gap: 0;
    }

    .nav-menu.open {
        transform: translateX(0);
    }

    .nav-link {
        padding: var(--space-md);
        font-size: 0.9rem;
        border-bottom: 1px solid var(--color-border);
    }

    .nav-link::after {
        display: none;
    }

    .hero-content {
        padding-left: var(--space-md);
        padding-right: var(--space-md);
    }

    .hero-scroll-indicator {
        display: none;
    }

    .hero-inner {
        flex-direction: column;
    }

    .hero-logo-col {
        order: -1;
    }

    .hero-logo-v {
        width: 160px;
    }

    .footer-brand {
        align-items: center;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-sm);
    }

    .gallery-item-lg {
        grid-column: span 2;
        grid-row: span 1;
        aspect-ratio: 16 / 9;
    }

    .show-card {
        flex-direction: column;
        text-align: center;
        gap: var(--space-md);
    }

    .about-stats {
        justify-content: center;
        gap: var(--space-lg);
    }

    .newsletter-form {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-nav {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .lightbox-prev, .lightbox-next {
        width: 40px;
        height: 40px;
    }

    .lightbox-prev { left: var(--space-sm); }
    .lightbox-next { right: var(--space-sm); }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-md);
    }

    .hero-cta-group {
        flex-direction: column;
    }

    .hero-cta-group .btn {
        width: 100%;
    }

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

    .gallery-item-lg {
        grid-column: span 1;
    }

    .about-stats {
        flex-direction: column;
        gap: var(--space-md);
    }

    .player-album-art {
        width: 160px;
        height: 160px;
    }
}

/* ---- REDUCED MOTION ---- */

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }

    .hero-bg {
        transform: scale(1) !important;
    }

    .hero-tagline, .hero-title, .hero-subtitle, .hero-cta-group, .hero-scroll-indicator,
    .hero-logo-v {
        opacity: 1;
        transform: none;
        animation: none;
    }
}

/* ---- PRINT ---- */

@media print {
    .site-header, .hero-scroll-indicator, .lightbox, .nav-toggle,
    .player-buttons, .streaming-links, .gallery-item-overlay {
        display: none !important;
    }

    body {
        color: #000;
        background: #fff;
    }

    .section {
        padding: 1rem 0;
        break-inside: avoid;
    }
}
