@font-face {
    font-family: 'Tropika';
    src: url('/assets/fonts/Tropika.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

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

:root {
    --bg: #080808;
    --fg: hsl(45 15% 90%);
    --bg-card: hsl(0 5% 6%);
    --border: hsl(0 5% 12%);
    --border-light: hsl(0 5% 16%);
    --muted: hsl(0 3% 50%);
    --muted-bg: hsl(0 5% 9%);
    --font-display: 'Righteous', cursive;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: 'Space Mono', 'JetBrains Mono', monospace;
    --spotify: #1DB954;
    --youtube: #FF0000;
    --instagram: #E4405F;
    --apple: #FA243C;
    --bandcamp: #629AA9;
    --radius: 0.375rem;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg);
    color: var(--fg);
    line-height: 1.7;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; transition: color 0.3s ease, opacity 0.3s ease; }
img { max-width: 100%; height: auto; display: block; }
main { flex: 1; }

.container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ─── NAV ─── */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background-color: transparent;
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
}
.nav.scrolled {
    background-color: rgba(8,8,8,0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}
.nav-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    flex-direction: column;
}
.nav-row {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.nav-mobile { display: none !important; }
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    position: fixed;
    right: 1.5rem;
    top: 1.5rem;
}
.nav-toggle span {
    width: 28px;
    height: 2px;
    background-color: var(--fg);
    transition: all 0.3s ease;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}
.nav-menu a {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: rgba(255,255,255,0.7);
    transition: color 0.3s ease;
}
.nav-menu a:hover, .nav-menu a.active { color: #fff; }

/* ─── HERO ─── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}
.hero-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.3) 50%, rgba(8,8,8,0.9) 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 56rem;
    padding: 5rem 1.5rem 4rem;
}
@media (min-width: 640px) {
    .hero-content { padding-top: 8rem; }
}
@media (min-width: 1024px) {
    .hero-content { padding-top: 10rem; }
}
.hero-genre {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: rgba(255,255,255,0.7);
    margin-bottom: 1.5rem;
    font-family: var(--font-mono);
}
.hero-logo-wrap {
    animation: waveGlow 8s ease-in-out infinite;
    will-change: filter;
    max-width: 600px;
    margin: 0 auto 2rem;
}
.hero-logo-canvas {
    width: 100%;
    aspect-ratio: 4.5 / 1;
}
@keyframes waveGlow {
    0%, 100% { filter: drop-shadow(0 0 8px rgba(180, 100, 255, 0.4)); }
    33% { filter: drop-shadow(0 0 14px rgba(255, 80, 180, 0.5)); }
    66% { filter: drop-shadow(0 0 12px rgba(80, 200, 255, 0.45)); }
}
.hero-bio {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    max-width: 42rem;
    margin: 0 auto 2.5rem;
}
.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.hero-socials {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    margin-top: 2rem;
}
.hero-socials a {
    color: rgba(255,255,255,0.5);
    transition: color 0.3s ease;
}
.hero-socials a:hover { color: #fff; }

/* ─── BUTTONS ─── */
.btn {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--fg);
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: var(--radius);
}
.btn:hover { border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.03); }
.btn-primary {
    background: var(--fg);
    color: var(--bg);
    border-color: var(--fg);
}
.btn-primary:hover { background: rgba(232,230,227,0.9); }
.btn-outline { border-color: rgba(255,255,255,0.15); }
.btn-outline:hover { border-color: rgba(255,255,255,0.4); }
.btn-sm { font-size: 0.65rem; padding: 0.5rem 1rem; }
.btn-stream {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius);
    color: #fff;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: opacity 0.3s;
}
.btn-stream:hover { opacity: 0.85; }
.btn-spotify { background: var(--spotify); }
.btn-apple { background: var(--apple); }
.btn-bandcamp { background: var(--bandcamp); }

/* ─── SECTIONS ─── */
.section {
    padding: 5rem 0 5rem;
    border-top: 1px solid var(--border);
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.01em;
    margin-bottom: 0.5rem;
}
.section-header {
    margin-bottom: 3rem;
}

/* ─── BADGE ─── */
.badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    padding: 0.25rem 0.75rem;
    background: var(--muted-bg);
    color: var(--fg);
    border-radius: var(--radius);
    margin-bottom: 1rem;
}

/* ─── BAND INTRO ─── */
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.intro-text h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
}
.intro-text p {
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}
.intro-photo {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
}
.intro-photo img { width: 100%; height: auto; object-fit: cover; }

/* ─── RELEASES / DISCOGRAPHY ─── */
.release-featured-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}
.release-cover {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
}
.release-cover img { width: 100%; height: auto; object-fit: cover; }
.release-slider-wrap { align-self: center; }
.release-slider {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--card);
    cursor: grab;
    user-select: none;
}
.release-slider:active { cursor: grabbing; }
.release-slider-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}
.release-slider-img.active { opacity: 1; }
.release-slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}
.release-slider-dot {
    width: 0.625rem;
    height: 0.625rem;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    padding: 0;
    transition: all 0.2s ease;
}
.release-slider-dot:hover { background: rgba(255,255,255,0.5); }
.release-slider-dot.active {
    background: #fff;
    transform: scale(1.15);
}
.release-info .badge { margin-bottom: 1rem; }
.release-info h3 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
}
.release-date {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--muted);
    margin-bottom: 1rem;
}
.release-desc {
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 2rem;
}
.release-links {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}
.release-embed {
    margin-top: 2rem;
    border-radius: var(--radius);
    overflow: hidden;
}
.release-embed iframe { width: 100%; min-height: 352px; border: 0; }

.releases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}
.release-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.release-card:hover { transform: translateY(-3px); border-color: var(--border-light); }
.release-card-cover {
    aspect-ratio: 1;
    overflow: hidden;
}
.release-card-cover img { width: 100%; height: 100%; object-fit: cover; }
.release-card-info { padding: 1rem; }
.release-card-type {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--muted);
}
.release-card-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-top: 0.25rem;
}
.release-card-date {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--muted);
    margin-top: 0.25rem;
}

/* ─── SHOWS ─── */
.shows-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.show-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}
.show-card:hover { border-color: var(--border-light); }
.show-card-past { opacity: 0.8; }
.show-flyer {
    aspect-ratio: 4/5;
    background: #000;
    padding: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.show-flyer img { max-width: 100%; max-height: 100%; object-fit: contain; }
.show-flyer-empty {
    aspect-ratio: 4/5;
    background: var(--muted-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.15);
}
.show-card-info { padding: 0.75rem 1rem; }
.show-card-title {
    font-weight: 800;
    font-size: 0.8rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.show-card-date {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--muted);
    margin-top: 0.25rem;
}
.show-card-venue {
    font-size: 0.7rem;
    color: var(--muted);
    margin-top: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}
.show-card-venue svg { flex-shrink: 0; }
.show-empty {
    text-align: center;
    padding: 4rem 2rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
}
.show-empty p {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.85rem;
    color: var(--muted);
}

/* ─── STREAMING / MEDIA ─── */
.media-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.media-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.media-card-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}
.media-card-embed iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: 0;
}
.media-card-info { padding: 1rem; }
.media-card-title { font-weight: 800; font-size: 0.85rem; }
.media-card-desc { font-size: 0.8rem; color: var(--muted); margin-top: 0.4rem; line-height: 1.6; }

/* ─── GALLERY ─── */
.gallery-filters {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}
.gallery-filter {
    font-family: var(--font-body);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 0.5rem 1.2rem;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--muted);
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: var(--radius);
}
.gallery-filter:hover, .gallery-filter.active {
    border-color: var(--fg);
    color: var(--fg);
    background: rgba(255,255,255,0.04);
}
.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 0.5rem;
}
.gallery-item {
    overflow: hidden;
    position: relative;
    aspect-ratio: 1;
    cursor: pointer;
    border-radius: var(--radius);
}
.gallery-img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.5s ease;
}
.gallery-item:hover .gallery-img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* ─── ABOUT ─── */
.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 3rem;
}
.about-story-photo {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
}
.about-story-photo img { width: 100%; height: auto; object-fit: cover; }
.about-story-text p {
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}
.about-lead {
    font-size: 1.25rem;
    color: var(--fg);
    font-weight: 400;
}
.members-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
.member-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    background: rgba(255,255,255,0.02);
}
.member-photo { aspect-ratio: 16/9; overflow: hidden; }
.member-photo img { width: 100%; height: 100%; object-fit: cover; }
.member-info { padding: 1.5rem; }
.member-name { font-weight: 700; font-size: 1rem; letter-spacing: 0.05em; }
.member-role {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--muted);
    margin-top: 0.25rem;
}

/* ─── CONTACT ─── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}
.contact-heading {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.contact-text { color: var(--muted); margin-bottom: 2rem; }
.contact-detail h3 {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--muted);
    margin-bottom: 0.25rem;
}
.contact-detail p { color: var(--muted); font-size: 0.95rem; }
.contact-photos { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-photo {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
}
.contact-photo img { width: 100%; height: auto; object-fit: cover; }
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--muted);
    display: block;
    margin-bottom: 0.4rem;
}
.form-group input, .form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    background: var(--muted-bg);
    border: 1px solid var(--border);
    color: var(--fg);
    font-family: var(--font-body);
    font-size: 1rem;
    border-radius: var(--radius);
    outline: none;
    transition: border-color 0.3s ease;
}
.form-group input:focus, .form-group textarea:focus { border-color: rgba(255,255,255,0.3); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
    padding: 1rem;
    background: rgba(29,185,84,0.1);
    border: 1px solid rgba(29,185,84,0.3);
    color: var(--spotify);
    border-radius: var(--radius);
    font-size: 0.85rem;
}
.form-error {
    padding: 1rem;
    background: rgba(255,0,0,0.1);
    border: 1px solid rgba(255,0,0,0.3);
    color: #ff6b6b;
    border-radius: var(--radius);
    font-size: 0.85rem;
}

/* ─── STAY CONNECTED ─── */
.cta-section {
    padding: 5rem 0;
    text-align: center;
    border-top: 1px solid var(--border);
}
.cta-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
}
.cta-text { color: var(--muted); max-width: 500px; margin: 0 auto 2rem; }
.cta-socials {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}
.cta-socials a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--muted);
    font-size: 0.85rem;
    transition: color 0.3s ease;
}
.cta-socials a:hover { color: var(--fg); }

/* ─── PAGE HERO ─── */
.page-hero {
    position: relative;
    padding: 10rem 2rem 4rem;
    min-height: 50vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}
.page-hero-photo { background-size: cover; background-position: center; }
.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 50%, var(--bg) 100%);
}
.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 80rem;
    margin: 0 auto;
    width: 100%;
}
.page-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
}
.page-subtitle {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    margin-top: 0.5rem;
    max-width: 500px;
}

/* ─── FOOTER ─── */
.footer {
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border);
    background: var(--bg);
}
.footer-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    text-align: center;
}
.footer-col { display: flex; flex-direction: column; align-items: center; }
.footer-col-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--muted);
    margin-bottom: 1rem;
}
.footer-logo-wrap {
    cursor: pointer;
    opacity: 0.9;
    transition: opacity 0.3s;
    margin-bottom: 1rem;
}
.footer-logo-wrap:hover { opacity: 1; }
.footer-wave-canvas {
    width: 200px;
    height: 44px;
}
.footer-tagline {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.7;
    max-width: 300px;
}
.footer-nav-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.footer-nav-links a {
    font-size: 0.95rem;
    color: var(--muted);
    transition: color 0.3s ease;
}
.footer-nav-links a:hover { color: var(--fg); }
.footer-social-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}
.footer-social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--muted);
    transition: color 0.3s ease;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}
.footer-social-link:hover { color: var(--fg); }
.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
.footer-copyright {
    font-size: 0.8rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.footer-credits {
    font-size: 0.8rem;
    color: var(--muted);
}
.footer-credits a { text-decoration: underline; text-underline-offset: 2px; }
.footer-credits a:hover { color: var(--fg); }

/* ─── MODAL ─── */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.95);
    align-items: center;
    justify-content: center;
    padding: 2rem;
}
.modal.active { display: flex; }
.modal-close {
    position: absolute;
    top: 1rem; right: 1.5rem;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 10;
    line-height: 1;
}
.image-modal img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
}

/* ─── EMPTY STATE ─── */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--muted);
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: hsl(0 0% 8%); }
::-webkit-scrollbar-thumb { background: hsl(0 0% 25%); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: hsl(0 0% 35%); }

/* ─── ADMIN ─── */
.admin-panel { max-width: 1000px; margin: 0 auto; padding: 2rem; }
.admin-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border); }
.admin-title { font-family: var(--font-display); font-size: 1.5rem; }
.admin-nav { display: flex; gap: 1rem; margin-bottom: 2rem; flex-wrap: wrap; }
.admin-nav a { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; padding: 0.5rem 1rem; border: 1px solid var(--border); color: var(--muted); border-radius: var(--radius); transition: all 0.3s ease; }
.admin-nav a:hover, .admin-nav a.active { border-color: var(--fg); color: var(--fg); }
.admin-table { width: 100%; border-collapse: collapse; margin-bottom: 2rem; }
.admin-table th, .admin-table td { padding: 0.75rem; text-align: left; border-bottom: 1px solid var(--border); font-size: 0.85rem; }
.admin-table th { color: var(--muted); font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.7rem; }
.admin-form { max-width: 600px; }
.admin-form .form-group { margin-bottom: 1.25rem; }
.admin-form select { width: 100%; padding: 0.85rem 1rem; background: var(--muted-bg); border: 1px solid var(--border); color: var(--fg); font-family: var(--font-body); font-size: 1rem; border-radius: var(--radius); }
.admin-actions { display: flex; gap: 0.5rem; }
.admin-actions .btn { font-size: 0.65rem; padding: 0.4rem 0.8rem; }
.btn-danger { border-color: #ff4444; color: #ff4444; }
.btn-danger:hover { background: rgba(255,68,68,0.1); }
.login-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: var(--bg); }
.login-form { max-width: 360px; width: 100%; padding: 3rem 2rem; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); }
.login-form h1 { font-family: var(--font-display); font-size: 1.5rem; text-align: center; margin-bottom: 2rem; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
    .release-featured-grid, .intro-grid { grid-template-columns: 1fr; }
    .nav-toggle { display: flex; }
    .nav-desktop { display: none !important; }
    .nav-mobile {
        display: none !important;
        flex-direction: column;
        background: rgba(0,0,0,0.75);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-radius: var(--radius);
        padding: 1rem 1.25rem 0.75rem;
        gap: 0;
        margin-top: 1rem;
        border-top: 1px solid rgba(255,255,255,0.1);
        list-style: none;
    }
    .nav-mobile.open { display: flex !important; }
    .nav-mobile a { font-size: 1rem; font-weight: 600; padding: 0.75rem 0; display: block; }
    .shows-grid { grid-template-columns: 1fr; }
    .media-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
    .about-story-grid { grid-template-columns: 1fr; }
    .members-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .gallery-masonry { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
    .hero-logo-wrap { max-width: 280px; }
}

@media (max-width: 480px) {
    .container { padding: 0 1.25rem; }
    .section { padding: 3.5rem 0; }
    .releases-grid { grid-template-columns: 1fr; }
}
