/* ============================================================
 * Evixtion Bookings — dark hardstyle theme.
 * No build step: utility + component CSS targeting the classes
 * used in the PHP views. Keep lean and readable.
 * ============================================================ */

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    background: #000;
    color: #fff;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
h1, h2, h3, h4 { font-weight: 800; letter-spacing: -0.02em; margin: 0; line-height: 1.1; }
h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.4rem; }
p  { margin: 0 0 1rem; color: rgba(255,255,255,0.75); }

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

/* Tailwind-ish utility subset used in templates */
.min-h-screen { min-height: 100vh; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-1 { flex: 1 1 0; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 0.25rem; } .gap-2 { gap: 0.5rem; } .gap-3 { gap: 0.75rem; } .gap-4 { gap: 1rem; } .gap-6 { gap: 1.5rem; } .gap-8 { gap: 2rem; } .gap-10 { gap: 2.5rem; }
.grid { display: grid; }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 767px) {
    .md\\:grid-cols-2, .md\\:grid-cols-3, .md\\:grid-cols-4 { grid-template-columns: 1fr; }
}
@media (min-width: 768px) {
    .md\\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .md\\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .md\\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .md\\:col-span-2 { grid-column: span 2 / span 2; }
    .md\\:flex { display: flex; }
    .md\\:hidden { display: none; }
}
.hidden { display: none; }
.block { display: block; }
.inline-flex { display: inline-flex; }
.sticky { position: sticky; } .top-0 { top: 0; } .z-50 { z-index: 50; }
.relative { position: relative; } .absolute { position: absolute; }
.w-6 { width: 1.5rem; } .h-6 { height: 1.5rem; } .h-8 { height: 2rem; }
.w-full { width: 100%; } .max-w-md { max-width: 28rem; } .max-w-xl { max-width: 36rem; } .max-w-2xl { max-width: 42rem; } .max-w-3xl { max-width: 48rem; } .max-w-5xl { max-width: 64rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-2 { margin-top: 0.5rem; } .mt-4 { margin-top: 1rem; } .mt-6 { margin-top: 1.5rem; } .mt-8 { margin-top: 2rem; } .mt-10 { margin-top: 2.5rem; } .mt-12 { margin-top: 3rem; } .mt-20 { margin-top: 5rem; }
.mb-2 { margin-bottom: 0.5rem; } .mb-3 { margin-bottom: 0.75rem; } .mb-4 { margin-bottom: 1rem; } .mb-6 { margin-bottom: 1.5rem; } .mb-8 { margin-bottom: 2rem; } .mb-10 { margin-bottom: 2.5rem; } .mb-12 { margin-bottom: 3rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; } .py-3 { padding: 0.75rem 0; } .py-4 { padding: 1rem 0; } .py-6 { padding: 1.5rem 0; } .py-8 { padding: 2rem 0; } .py-10 { padding: 2.5rem 0; } .py-16 { padding: 4rem 0; } .py-20 { padding: 5rem 0; } .py-24 { padding: 6rem 0; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; } .px-4 { padding-left: 1rem; padding-right: 1rem; } .px-6 { padding-left: 1.5rem; padding-right: 1.5rem; } .p-4 { padding: 1rem; } .p-6 { padding: 1.5rem; } .p-8 { padding: 2rem; } .pt-4 { padding-top: 1rem; } .pt-6 { padding-top: 1.5rem; }
.text-center { text-align: center; } .text-left { text-align: left; } .text-right { text-align: right; }
.text-xs { font-size: 0.75rem; } .text-sm { font-size: 0.875rem; } .text-base { font-size: 1rem; } .text-lg { font-size: 1.125rem; } .text-xl { font-size: 1.25rem; } .text-2xl { font-size: 1.5rem; } .text-3xl { font-size: 1.875rem; } .text-4xl { font-size: 2.25rem; } .text-5xl { font-size: 3rem; }
.font-bold { font-weight: 700; } .font-semibold { font-weight: 600; } .font-extrabold { font-weight: 800; } .font-black { font-weight: 900; }
.uppercase { text-transform: uppercase; }
.tracking-wide { letter-spacing: 0.025em; } .tracking-wider { letter-spacing: 0.05em; } .tracking-widest { letter-spacing: 0.1em; }
.text-white { color: #fff; }
.text-white\/40 { color: rgba(255,255,255,0.4); }
.text-white\/60 { color: rgba(255,255,255,0.6); }
.text-white\/70 { color: rgba(255,255,255,0.7); }
.text-red-500 { color: #ef4444; }
.text-red-400 { color: #f87171; }
.text-green-400 { color: #4ade80; }
.text-yellow-400 { color: #facc15; }
.bg-black { background: #000; }
.bg-black\/90 { background: rgba(0,0,0,0.9); }
.bg-red-600 { background: #dc2626; }
.bg-red-500 { background: #ef4444; }
.bg-white\/5 { background: rgba(255,255,255,0.05); }
.bg-white\/10 { background: rgba(255,255,255,0.1); }
.border { border: 1px solid rgba(255,255,255,0.1); }
.border-t { border-top: 1px solid rgba(255,255,255,0.1); }
.border-b { border-bottom: 1px solid rgba(255,255,255,0.1); }
.border-red-900\/30 { border-color: rgba(127, 29, 29, 0.3); }
.border-red-500\/30 { border-color: rgba(239, 68, 68, 0.3); }
.border-white\/10 { border-color: rgba(255,255,255,0.1); }
.rounded { border-radius: 0.25rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-full { border-radius: 9999px; }
.overflow-hidden { overflow: hidden; }
.aspect-video { aspect-ratio: 16 / 9; }
.aspect-square { aspect-ratio: 1 / 1; }
.object-cover { object-fit: cover; }
.backdrop-blur { backdrop-filter: blur(12px); }
.transition { transition: all 0.2s ease; }
.hover\:text-red-500:hover { color: #ef4444; }
.hover\:text-white:hover { color: #fff; }
.hover\:bg-red-500:hover { background: #ef4444; }
.hover\:bg-white\/5:hover { background: rgba(255,255,255,0.05); }
.cursor-pointer { cursor: pointer; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }

/* Components */
.btn-primary {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 0.65rem 1.5rem; background: #dc2626; color: #fff;
    font-weight: 700; font-size: 0.85rem; letter-spacing: 0.1em;
    text-transform: uppercase; border-radius: 4px; transition: all 0.15s;
    border: 2px solid #dc2626;
}
.btn-primary:hover { background: #b91c1c; border-color: #b91c1c; transform: translateY(-1px); }
.btn-secondary {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 0.65rem 1.5rem; background: transparent; color: #fff;
    font-weight: 700; font-size: 0.85rem; letter-spacing: 0.1em;
    text-transform: uppercase; border-radius: 4px; transition: all 0.15s;
    border: 2px solid rgba(255,255,255,0.3);
}
.btn-secondary:hover { border-color: #fff; background: rgba(255,255,255,0.05); }
.btn-ghost {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 0.5rem 1rem; color: rgba(255,255,255,0.8);
    font-size: 0.875rem; transition: all 0.15s;
    border-radius: 4px;
}
.btn-ghost:hover { background: rgba(255,255,255,0.05); color: #fff; }

/* Hero */
.hero {
    position: relative;
    padding: 8rem 0 6rem;
    background:
        radial-gradient(1200px 600px at 50% 20%, rgba(220, 38, 38, 0.25), transparent 60%),
        linear-gradient(180deg, #0a0000 0%, #000 100%);
    overflow: hidden;
}
.hero::before {
    content: ''; position: absolute; inset: 0;
    background:
        repeating-linear-gradient(0deg, rgba(220,38,38,0.03) 0 1px, transparent 1px 40px),
        repeating-linear-gradient(90deg, rgba(220,38,38,0.03) 0 1px, transparent 1px 40px);
    pointer-events: none;
}
.hero h1 { font-size: clamp(3rem, 8vw, 7rem); line-height: 0.95; text-transform: uppercase; }
.hero h1 span.accent { color: #dc2626; display: block; }
.hero .tagline {
    margin-top: 1.5rem;
    font-size: 1.1rem; color: rgba(255,255,255,0.7);
    max-width: 600px;
}

/* Card */
.card {
    background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.2s;
}
.card:hover { border-color: rgba(220, 38, 38, 0.5); transform: translateY(-2px); }
.card-body { padding: 1.25rem; }

/* Artist / Release cards */
.artist-card .art, .release-card .art {
    aspect-ratio: 1 / 1;
    background: #1a0000 center/cover no-repeat;
    position: relative;
    overflow: hidden;
}
.release-card .art { aspect-ratio: 1 / 1; }
.artist-card .art::after, .release-card .art::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.8));
    pointer-events: none;
}

/* Flash messages */
.flash { padding: 0.75rem 1rem; border-radius: 4px; margin-bottom: 0.75rem; font-size: 0.875rem; }
.flash-success { background: rgba(74, 222, 128, 0.1); border: 1px solid rgba(74, 222, 128, 0.3); color: #4ade80; }
.flash-danger { background: rgba(239, 68, 68, 0.1); border: 1px solid rgba(239, 68, 68, 0.3); color: #f87171; }
.flash-warning { background: rgba(250, 204, 21, 0.1); border: 1px solid rgba(250, 204, 21, 0.3); color: #fbbf24; }
.flash-info { background: rgba(96, 165, 250, 0.1); border: 1px solid rgba(96, 165, 250, 0.3); color: #60a5fa; }

/* Forms */
.form-group { margin-bottom: 1rem; }
.form-label { display: block; margin-bottom: 0.4rem; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; color: rgba(255,255,255,0.6); }
.form-input, .form-textarea, .form-select {
    width: 100%; padding: 0.65rem 0.85rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff; font-size: 0.95rem; font-family: inherit;
    border-radius: 4px; transition: all 0.15s;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
    outline: 0; border-color: #dc2626;
    background: rgba(255,255,255,0.06);
}
.form-textarea { resize: vertical; min-height: 100px; }

/* Section heading */
.section-heading {
    margin-bottom: 2rem;
    display: flex; align-items: baseline; justify-content: space-between;
    gap: 1rem; flex-wrap: wrap;
}
.section-heading h2 {
    text-transform: uppercase;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    position: relative; padding-left: 1.5rem;
}
.section-heading h2::before {
    content: ''; position: absolute; left: 0; top: 0.25em; bottom: 0.25em;
    width: 4px; background: #dc2626;
}

/* Stat grid */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; max-width: 700px; margin: 3rem auto 0; }
.stat { text-align: center; }
.stat-num { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; color: #dc2626; display: block; line-height: 1; }
.stat-lbl { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.15em; color: rgba(255,255,255,0.5); margin-top: 0.4rem; }

/* Admin sidebar layout */
.admin-layout { display: flex; min-height: 100vh; }
.admin-sidebar {
    width: 240px; background: #0a0000; border-right: 1px solid rgba(255,255,255,0.1);
    padding: 1.5rem 1rem; flex-shrink: 0;
}
.admin-sidebar a {
    display: block; padding: 0.6rem 0.85rem; margin-bottom: 0.15rem;
    font-size: 0.9rem; color: rgba(255,255,255,0.7); border-radius: 4px;
}
.admin-sidebar a:hover, .admin-sidebar a.active { background: rgba(220, 38, 38, 0.15); color: #fff; }
.admin-main { flex: 1; padding: 2rem; overflow-x: auto; }

/* Tables */
.table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.table th, .table td { padding: 0.75rem 0.85rem; border-bottom: 1px solid rgba(255,255,255,0.08); text-align: left; }
.table th { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.5); font-weight: 700; }
.table tr:hover td { background: rgba(255,255,255,0.02); }

/* Status badges */
.badge { display: inline-block; padding: 0.15rem 0.5rem; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; border-radius: 3px; }
.badge-new, .badge-inquiry { background: rgba(96, 165, 250, 0.15); color: #60a5fa; }
.badge-pending, .badge-contacted { background: rgba(250, 204, 21, 0.15); color: #fbbf24; }
.badge-confirmed, .badge-qualified, .badge-contracted, .badge-paid, .badge-fully_paid, .badge-closed { background: rgba(74, 222, 128, 0.15); color: #4ade80; }
.badge-completed { background: rgba(96, 165, 250, 0.15); color: #60a5fa; }
.badge-cancelled, .badge-inactive, .badge-overdue, .badge-unpaid { background: rgba(239, 68, 68, 0.15); color: #f87171; }
.badge-deposit_paid, .badge-negotiating { background: rgba(168, 85, 247, 0.15); color: #c084fc; }
.badge-draft, .badge-sent { background: rgba(156, 163, 175, 0.15); color: #9ca3af; }
.badge-published, .badge-active { background: rgba(74, 222, 128, 0.15); color: #4ade80; }
.badge-urgent, .badge-high { background: rgba(239, 68, 68, 0.2); color: #f87171; }
.badge-medium { background: rgba(250, 204, 21, 0.15); color: #fbbf24; }
.badge-low { background: rgba(156, 163, 175, 0.15); color: #9ca3af; }

/* ============================================================
 * BKJN-STYLE OVERRIDES — Evixtion Bookings
 * Heavy condensed display, full-bleed hero, alternating rows.
 * ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow+Condensed:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root {
    --reckless-red: #d72027;
    --reckless-red-deep: #a51820;
    --reckless-bg: #050505;
    --reckless-row-alt: #0c0c0c;
    --reckless-line: rgba(255,255,255,0.08);
}

body { background: var(--reckless-bg); }

h1, h2, h3, h4 {
    font-family: 'Barlow Condensed', 'Inter', sans-serif;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}
h1 { font-size: clamp(2rem, 4.5vw, 3.8rem); line-height: 1; }
h2 { font-size: clamp(1.6rem, 3vw, 2.5rem); line-height: 1.05; }
h3 { font-size: clamp(1.05rem, 1.4vw, 1.35rem); }

/* ----- HEADER override ----- */
header.bkjn-header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--reckless-line);
}
.bkjn-header .container {
    display: flex; align-items: center; justify-content: space-between;
    padding: 0.95rem 1rem;
    max-width: 1320px;
    gap: 1rem;
}
.wordmark {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #fff;
    font-size: 1.05rem;
    white-space: nowrap;
}
@media (min-width: 640px) { .wordmark { font-size: 1.25rem; letter-spacing: 0.18em; } }
@media (min-width: 900px) { .wordmark { font-size: 1.45rem; } }
.wordmark .suffix { display: none; }
@media (min-width: 480px) { .wordmark .suffix { display: inline; } }
.wordmark .dot { color: var(--reckless-red); }
.bkjn-nav {
    display: none;
    align-items: center;
    gap: 2.2rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.bkjn-nav a { color: rgba(255,255,255,0.85); transition: color 0.15s; }
.bkjn-nav a:hover { color: #fff; }
.bkjn-nav a.active { color: #fff; border-bottom: 2px solid var(--reckless-red); padding-bottom: 2px; }
.bkjn-cta {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 0.55rem 1.2rem;
    background: var(--reckless-red);
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700; font-size: 1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 0;
    transition: all 0.15s;
    border: 1px solid var(--reckless-red);
}
.bkjn-cta:hover { background: var(--reckless-red-deep); border-color: var(--reckless-red-deep); }
.bkjn-socials {
    display: none;
    align-items: center; gap: 1rem;
    color: rgba(255,255,255,0.75);
}
.bkjn-socials a:hover { color: #fff; }
.bkjn-socials svg { width: 18px; height: 18px; }
@media (min-width: 900px) {
    .bkjn-nav { display: flex; }
    .bkjn-socials { display: flex; }
}

/* ----- HERO override ----- */
.hero-bkjn {
    position: relative;
    min-height: 92vh;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
    isolation: isolate;
    background: #000;
}
.hero-bkjn::before {
    content: ''; position: absolute; inset: 0; z-index: -2;
    background-image:
        radial-gradient(ellipse 60% 80% at 50% 70%, rgba(215, 32, 39, 0.25), transparent 60%),
        url('https://images.unsplash.com/photo-1429962714451-bb934ecdc4ec?auto=format&fit=crop&w=2400&q=80');
    background-size: cover;
    background-position: center;
    filter: contrast(1.1) saturate(0.85) brightness(0.55);
}
.hero-bkjn::after {
    content: ''; position: absolute; inset: 0; z-index: -1;
    background:
        linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.4) 40%, rgba(5,5,5,1) 100%);
}
.hero-bkjn .hero-content {
    text-align: center;
    padding: 4rem 1rem 6rem;
    max-width: 1100px;
}
.hero-bkjn h1 {
    font-size: clamp(2.4rem, 6vw, 5rem);
    line-height: 0.95;
    color: #fff;
    text-shadow: 0 8px 40px rgba(0,0,0,0.6);
    font-weight: 800;
    letter-spacing: 0.01em;
}
.hero-bkjn h1 span.accent {
    display: block;
    color: var(--reckless-red);
}
.hero-bkjn .tagline {
    margin: 1.8rem auto 0;
    max-width: 620px;
    font-size: 1.05rem;
    color: rgba(255,255,255,0.75);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}
.hero-bkjn .hero-actions {
    margin-top: 2.4rem;
    display: flex; gap: 0.9rem;
    justify-content: center;
    flex-wrap: wrap;
}
.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.55);
    animation: bobble 2.4s ease-in-out infinite;
}
.scroll-indicator svg { width: 28px; height: 28px; }
@keyframes bobble {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, 8px); }
}

/* ----- BUTTONS (square BKJN box style) ----- */
.btn-primary, .btn-secondary, .btn-tickets, .btn-info {
    border-radius: 2px !important;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 0.85rem 2rem;
    font-size: 0.95rem;
}
.btn-primary { background: var(--reckless-red); border: 1px solid var(--reckless-red); }
.btn-primary:hover { background: var(--reckless-red-deep); border-color: var(--reckless-red-deep); transform: none; }
.btn-secondary {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.5);
}
.btn-secondary:hover { background: rgba(255,255,255,0.07); border-color: #fff; }

.btn-tickets, .btn-info {
    display: inline-flex; align-items: center; justify-content: center;
    color: #fff;
    text-transform: uppercase;
    transition: all 0.15s;
    min-width: 130px;
}
.btn-tickets { background: var(--reckless-red); border: 1px solid var(--reckless-red); }
.btn-tickets:hover { background: var(--reckless-red-deep); border-color: var(--reckless-red-deep); }
.btn-info { background: transparent; border: 1px solid var(--reckless-red); }
.btn-info:hover { background: var(--reckless-red); }

/* ----- SECTION HEADINGS override ----- */
.section-heading h2 {
    text-transform: uppercase;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    line-height: 1;
    padding-left: 0;
}
.section-heading h2::before { display: none; }

.section-eyebrow {
    display: inline-flex; align-items: center; gap: 0.6rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--reckless-red);
    margin-bottom: 0.6rem;
}
.section-eyebrow::before {
    content: ''; width: 28px; height: 2px; background: var(--reckless-red);
}

/* ----- ROSTER ROW (BKJN event-row style) ----- */
.roster-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2rem 1.25rem;
    border-top: 1px solid var(--reckless-line);
    align-items: center;
    transition: background 0.2s;
}
.roster-row:nth-child(even) { background: var(--reckless-row-alt); }
.roster-row:hover { background: rgba(215, 32, 39, 0.06); }
.roster-row:last-of-type { border-bottom: 1px solid var(--reckless-line); }

@media (min-width: 768px) {
    .roster-row {
        grid-template-columns: 220px 1fr auto;
        gap: 2.5rem;
        padding: 2.4rem 1.5rem;
    }
}
.roster-row .poster {
    aspect-ratio: 1 / 1;
    background: #1a0006 center/cover no-repeat;
    border: 1px solid var(--reckless-line);
    overflow: hidden;
    position: relative;
    width: 100%;
    max-width: 220px;
}
.roster-row .poster::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.5));
}
.roster-row .meta { min-width: 0; }
.roster-row .meta h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(1.25rem, 2vw, 1.75rem);
    line-height: 1.05;
    color: #fff;
    margin-bottom: 0.3rem;
    text-transform: uppercase;
}
.roster-row .meta .genre {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.55);
    margin-bottom: 0.9rem;
}
.roster-row .meta .info-row {
    display: flex; flex-wrap: wrap;
    gap: 1.3rem;
    color: rgba(255,255,255,0.75);
    font-size: 0.9rem;
}
.roster-row .meta .info-row .icon-line {
    display: inline-flex; align-items: center; gap: 0.55rem;
}
.roster-row .meta .info-row svg { width: 16px; height: 16px; color: var(--reckless-red); }
.roster-row .actions {
    display: flex; flex-direction: column; gap: 0.5rem;
}

/* ----- RELEASES CATALOG GRID ----- */
.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}
.catalog-card {
    position: relative;
    border: 1px solid var(--reckless-line);
    background: #0a0a0a;
    overflow: hidden;
    transition: all 0.18s;
}
.catalog-card:hover {
    border-color: var(--reckless-red);
    transform: translateY(-3px);
}
.catalog-card .art {
    aspect-ratio: 1 / 1;
    background: #150004 center/cover no-repeat;
    position: relative;
}
.catalog-card .art::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.85));
    pointer-events: none;
}
.catalog-card .body {
    padding: 1rem 1.1rem 1.2rem;
}
.catalog-card .body .type {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--reckless-red);
    margin-bottom: 0.5rem;
}
.catalog-card .body h3 {
    font-size: 1.2rem;
    line-height: 1.1;
    margin-bottom: 0.35rem;
    color: #fff;
}
.catalog-card .body .artist {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.6);
}

/* ----- BIG CTA STRIP ----- */
.cta-strip {
    position: relative;
    padding: 6rem 1rem;
    text-align: center;
    border-top: 1px solid var(--reckless-line);
    border-bottom: 1px solid var(--reckless-line);
    background:
        radial-gradient(ellipse at center, rgba(215,32,39,0.18) 0%, transparent 65%),
        #050505;
}
.cta-strip h2 {
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    line-height: 1.05;
    color: #fff;
    margin-bottom: 1rem;
}
.cta-strip h2 .accent { color: var(--reckless-red); display: block; }
.cta-strip p {
    max-width: 620px;
    margin: 0 auto 2rem;
    font-size: 1.05rem;
    color: rgba(255,255,255,0.7);
}

/* ----- FOOTER newsletter ----- */
footer.bkjn-footer {
    background: #050505;
    border-top: 1px solid var(--reckless-line);
}
footer.bkjn-footer .footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 5rem 1rem 3rem;
    max-width: 1320px;
    margin: 0 auto;
}
@media (min-width: 768px) {
    footer.bkjn-footer .footer-grid {
        grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
        gap: 4rem;
        padding: 6rem 1rem 3rem;
    }
}
.bkjn-footer h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.05rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--reckless-red);
    margin-bottom: 1.1rem;
    font-weight: 700;
}
.bkjn-footer ul { list-style: none; padding: 0; margin: 0; }
.bkjn-footer ul li { margin-bottom: 0.5rem; }
.bkjn-footer ul a {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    transition: color 0.15s;
}
.bkjn-footer ul a:hover { color: #fff; }
.bkjn-footer .newsletter input {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--reckless-line);
    color: #fff;
    padding: 0.7rem 0.9rem;
    margin-bottom: 0.6rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
}
.bkjn-footer .newsletter input:focus {
    outline: 0;
    border-color: var(--reckless-red);
}
.bkjn-footer .newsletter button {
    width: 100%;
    cursor: pointer;
}
.bkjn-footer .footer-bottom {
    border-top: 1px solid var(--reckless-line);
    padding: 1.2rem 1rem;
}
.bkjn-footer .footer-bottom .container {
    max-width: 1320px;
    display: flex; flex-wrap: wrap; gap: 1rem;
    justify-content: space-between;
    color: rgba(255,255,255,0.4);
    font-size: 0.8rem;
}
.bkjn-footer .footer-brand {
    display: flex; flex-direction: column; gap: 1rem;
}
.bkjn-footer .footer-brand .wordmark { font-size: 1.6rem; }
.bkjn-footer .socials {
    display: flex; gap: 0.9rem;
    color: rgba(255,255,255,0.7);
}
.bkjn-footer .socials a { color: inherit; }
.bkjn-footer .socials a:hover { color: #fff; }
.bkjn-footer .socials svg { width: 20px; height: 20px; }

/* mobile hamburger button */
.mobile-trigger {
    display: inline-flex;
    align-items: center; justify-content: center;
    width: 42px; height: 42px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--reckless-line);
    color: #fff;
    cursor: pointer;
    border-radius: 0;
    transition: all 0.15s;
    flex-shrink: 0;
}
.mobile-trigger:hover, .mobile-trigger:focus-visible {
    background: var(--reckless-red);
    border-color: var(--reckless-red);
    outline: 0;
}
.mobile-trigger svg { width: 20px; height: 20px; }
@media (min-width: 900px) {
    .mobile-trigger { display: none; }
}

/* mobile dropdown nav (floats over content with slide animation) */
#mobile-nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    z-index: 49;
    background: rgba(5,5,5,0.97);
    backdrop-filter: blur(16px);
    border-top: 1px solid var(--reckless-line);
    border-bottom: 1px solid var(--reckless-line);
    box-shadow: 0 24px 60px rgba(0,0,0,0.55);
    font-family: 'Barlow Condensed', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    display: flex; flex-direction: column;
    transform-origin: top center;
    animation: navDrop 0.22s ease-out;
    overflow: hidden;
}
@keyframes navDrop {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}
#mobile-nav.hidden { display: none; }
@media (min-width: 900px) { #mobile-nav { display: none !important; } }

/* dropdown backdrop — click outside to close */
#mobile-nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 48;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(2px);
    animation: fadeIn 0.18s ease-out;
}
#mobile-nav-backdrop.hidden { display: none; }
@media (min-width: 900px) { #mobile-nav-backdrop { display: none !important; } }
@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

#mobile-nav a {
    padding: 1.1rem 1.4rem;
    border-bottom: 1px solid var(--reckless-line);
    font-size: 1.05rem;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    transition: all 0.15s;
    display: flex; align-items: center; justify-content: space-between;
}
#mobile-nav a::after {
    content: '→';
    color: rgba(255,255,255,0.25);
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    transition: transform 0.15s, color 0.15s;
}
#mobile-nav a:hover, #mobile-nav a:active {
    background: rgba(215,32,39,0.12);
    color: #fff;
    padding-left: 1.7rem;
}
#mobile-nav a:hover::after { color: var(--reckless-red); transform: translateX(4px); }
#mobile-nav a.cta {
    background: var(--reckless-red);
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.14em;
}
#mobile-nav a.cta::after { color: rgba(255,255,255,0.7); }
#mobile-nav a.cta:hover { background: var(--reckless-red-deep); padding-left: 1.7rem; }
#mobile-nav a.cta:hover::after { color: #fff; }
#mobile-nav .socials-row {
    display: flex; gap: 1.4rem; padding: 1.2rem 1.4rem;
    color: rgba(255,255,255,0.65);
    border-top: 1px solid var(--reckless-line);
    background: rgba(0,0,0,0.3);
}
#mobile-nav .socials-row a {
    padding: 0; border: 0; display: inline-flex;
    color: inherit;
}
#mobile-nav .socials-row a::after { content: none; }
#mobile-nav .socials-row a:hover { padding-left: 0; color: var(--reckless-red); background: transparent; transform: translateY(-1px); }
#mobile-nav .socials-row svg { width: 22px; height: 22px; }

/* hamburger morphs to X when nav open */
.mobile-trigger[aria-expanded="true"] {
    background: var(--reckless-red);
    border-color: var(--reckless-red);
}
.mobile-trigger[aria-expanded="true"] svg .top    { transform: translateY(6px) rotate(45deg);  }
.mobile-trigger[aria-expanded="true"] svg .middle { opacity: 0; }
.mobile-trigger[aria-expanded="true"] svg .bottom { transform: translateY(-6px) rotate(-45deg); }
.mobile-trigger svg .top, .mobile-trigger svg .middle, .mobile-trigger svg .bottom {
    transition: transform 0.2s, opacity 0.15s;
    transform-origin: center;
}

