@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=IBM+Plex+Mono:wght@300;400;500;600;700&display=swap');

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

:root {
  --accent:       #d4500f;
  --accent-light: #e8601a;
  --accent-glow:  rgba(212,80,15,.22);
  --accent-dim:   rgba(212,80,15,.10);
  --bg:           #080807;
  --card-bg:      #101010;
  --card-bg-2:    #0c0c0b;
  --card-border:  #1e1e1c;
  --input-bg:     #0b0b0a;
  --input-border: #242420;
  --text:         #ece8e1;
  --text-mid:     #7a7570;
  --text-dim:     #46433f;
  --line:         #242420;
  --good:         #35b96f;
  --danger:       #b94a35;
  --nav-h:        56px;
  --max:          1120px;
}

html { scroll-behavior: smooth; }
html, body { min-height: 100%; }

body {
  font-family: 'IBM Plex Mono', 'Courier New', monospace;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

/* Noise texture overlay */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23g)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* Ambient glow */
body::after {
  content: '';
  position: fixed;
  width: 900px; height: 900px;
  top: 12%; left: 50%; transform: translateX(-50%);
  background: radial-gradient(ellipse at center,
    rgba(212,80,15,.09) 0%,
    rgba(212,80,15,.03) 36%,
    transparent 68%
  );
  pointer-events: none;
  z-index: 0;
}

/* ── Typography ───────────────────────────────────────────────────────────── */
h1, h2, h3, h4,
.eyebrow, .kicker,
.btn, .playBtn, .playerBtn, .btnSmall {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  letter-spacing: .12em;
  font-weight: 400;
}

h1 {
  font-size: clamp(40px, 5.7vw, 78px);
  line-height: .95;
  text-transform: uppercase;
  background: linear-gradient(180deg, #fff4e9 0%, #c4bfb8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 14px;
}

h2 {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 14px;
}

h3 {
  font-size: 24px;
  line-height: 1;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 12px;
}

p { line-height: 1.62; color: rgba(236,232,225,.82); font-size: 13.5px; }
ul { padding-left: 18px; }
li { margin: 7px 0; line-height: 1.62; color: rgba(236,232,225,.82); font-size: 13.5px; }
b, strong { color: var(--text); font-weight: 600; }
a { color: var(--accent-light); text-decoration: none; }
a:hover { color: var(--text); }

.lead {
  font-size: 15px;
  line-height: 1.72;
  color: rgba(236,232,225,.86);
  max-width: 850px;
  margin-bottom: 16px;
}

.small {
  font-size: 12px;
  line-height: 1.55;
  color: var(--text-mid);
}

.muted { color: var(--text-mid); font-size: 12px; line-height: 1.55; }

.eyebrow, .kicker {
  color: var(--accent-light);
  font-size: 15px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: .28em;
}

.kicker { font-size: 10px; font-weight: 500; }

/* ── Navigation ───────────────────────────────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(8,8,7,.96);
  border-bottom: 1px solid var(--card-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-inner {
  width: min(var(--max), calc(100% - 34px));
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-pick {
  width: 16px; height: 20px;
  filter: drop-shadow(0 1px 6px rgba(212,80,15,.55));
  flex-shrink: 0;
}

.nav-name {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-size: 22px;
  letter-spacing: .18em;
  background: linear-gradient(180deg, #ece8e1 0%, #c4bfb8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  padding: 0; margin: 0;
}

.nav-links a {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-size: 15px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-mid);
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 2px;
  transition: color .15s, background .15s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: var(--accent-dim);
}

.nav-links a.nav-cta {
  color: var(--accent-light);
  border: 1px solid rgba(212,80,15,.38);
  margin-left: 6px;
}

.nav-links a.nav-cta:hover {
  background: var(--accent-dim);
  color: #fff;
  border-color: rgba(212,80,15,.6);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text-mid);
  border-radius: 1px;
  transition: .2s;
}

@media (max-width: 780px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    background: rgba(8,8,7,.98);
    border-bottom: 1px solid var(--card-border);
    padding: 10px 17px 16px;
    gap: 2px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 10px 8px; font-size: 18px; }
  .nav-links a.nav-cta { margin-left: 0; }
}

/* ── Page layout ──────────────────────────────────────────────────────────── */
.container {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 34px));
  margin: 0 auto;
  padding: 40px 0 120px;
  animation: rise .55s cubic-bezier(.22,1,.36,1) both;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.page-narrow {
  max-width: 820px;
}

/* ── Brand header (used on solos & standalone pages) ─────────────────────── */
.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  margin-bottom: 32px;
}

.logo-pick {
  width: 26px; height: 32px;
  margin-bottom: 2px;
  filter: drop-shadow(0 2px 8px rgba(212,80,15,.50));
}

.brand-name {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-size: clamp(46px, 7vw, 82px);
  letter-spacing: .14em;
  line-height: .92;
  background: linear-gradient(180deg, #ece8e1 0%, #c4bfb8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
}

.brand-sub {
  font-size: 10px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 300;
}

/* ── Cards & panels ───────────────────────────────────────────────────────── */
.card, .panel {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-top: 2px solid var(--accent);
  border-radius: 3px;
  box-shadow:
    0 24px 64px rgba(0,0,0,.70),
    0 1px 0 rgba(255,255,255,.025) inset,
    0 -1px 0 rgba(0,0,0,.50) inset;
}

.card  { padding: 28px; }
.panel { padding: 22px; margin-top: 18px; }

.mini {
  background: rgba(0,0,0,.18);
  border: 1px solid var(--card-border);
  border-radius: 3px;
  padding: 16px;
}
.mini + .mini { margin-top: 10px; }
.mini strong {
  display: block;
  color: var(--text);
  font-size: 13px;
  margin-bottom: 8px;
  letter-spacing: .04em;
}

/* ── Buttons ──────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 2px;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  padding: 13px 18px 11px;
  color: #fff;
  background: var(--accent);
  font-size: 20px;
  box-shadow: 0 4px 18px rgba(212,80,15,.35);
  transition: background .15s, box-shadow .15s, transform .10s, border-color .15s;
}
.btn:hover { background: var(--accent-light); box-shadow: 0 6px 24px rgba(212,80,15,.48); transform: translateY(-1px); color: #fff; }
.btn:active { transform: translateY(0); box-shadow: 0 2px 8px rgba(212,80,15,.30); }

.btn-secondary, .btnSecondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--input-border);
  box-shadow: none;
}
.btn-secondary:hover, .btnSecondary:hover {
  background: var(--accent-dim);
  border-color: rgba(212,80,15,.50);
  box-shadow: 0 0 16px rgba(212,80,15,.10);
  color: var(--text);
}

.btn.secondary {
  background: transparent;
  color: var(--accent-light);
  border: 1px solid rgba(212,80,15,.42);
  box-shadow: none;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: .05em;
  padding: 12px 15px;
}
.btn.secondary:hover { background: var(--accent-dim); box-shadow: 0 0 14px rgba(212,80,15,.10); color: var(--accent-light); }

.btnSmall {
  padding: 8px 11px 6px;
  background: transparent;
  color: var(--text-mid);
  border: 1px solid var(--input-border);
  border-radius: 2px;
  cursor: pointer;
  font-size: 15px;
  text-transform: uppercase;
  box-shadow: none;
}
.btnSmall:hover { color: var(--text); border-color: rgba(212,80,15,.55); background: var(--accent-dim); }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

/* ── Badges & tags ────────────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--input-border);
  background: rgba(0,0,0,.18);
  color: var(--text-mid);
  padding: 8px 10px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.badge::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent-glow);
  flex: 0 0 auto;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 20px;
}

/* Price badge */
.price-badge {
  display: inline-flex;
  width: max-content;
  border: 1px solid rgba(212,80,15,.28);
  background: var(--accent-dim);
  color: #e07040;
  border-radius: 2px;
  padding: 6px 9px;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* ── Section layout ───────────────────────────────────────────────────────── */
.section { margin-top: 20px; }

.section-header {
  margin: 42px 0 12px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
}
.section-header p { max-width: 620px; color: var(--text-mid); font-size: 12px; }

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.grid.three { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .grid, .grid.three { grid-template-columns: 1fr; } }

.hero-grid {
  display: grid;
  grid-template-columns: 1.35fr .82fr;
  gap: 18px;
  align-items: stretch;
  margin-bottom: 18px;
}
@media (max-width: 920px) { .hero-grid { grid-template-columns: 1fr; } }

.cta-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
}
.cta-panel p { color: var(--text-mid); }
.cta-stack { display: flex; flex-direction: column; gap: 10px; margin-top: 6px; }

.featureList li::marker { color: var(--accent); }

/* ── Home page – hero ─────────────────────────────────────────────────────── */
.home-hero {
  text-align: center;
  padding: 56px 0 48px;
}

.home-pick {
  width: 44px; height: 54px;
  margin: 0 auto 14px;
  display: block;
  filter: drop-shadow(0 4px 18px rgba(212,80,15,.60));
}

.home-name {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-size: clamp(56px, 10vw, 110px);
  letter-spacing: .12em;
  line-height: .9;
  text-transform: uppercase;
  background: linear-gradient(180deg, #fff4e9 0%, #c8c2ba 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.home-titles {
  font-size: 11px;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 20px;
}

.home-tagline {
  font-size: 15px;
  color: rgba(236,232,225,.72);
  max-width: 620px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

/* Service tiles */
.service-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 8px;
}
@media (max-width: 860px) { .service-tiles { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .service-tiles { grid-template-columns: 1fr; } }

.service-tile {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-top: 2px solid var(--accent);
  border-radius: 3px;
  padding: 20px 16px 18px;
  text-decoration: none;
  transition: border-top-color .18s, background .18s, box-shadow .18s, transform .12s;
  box-shadow: 0 12px 36px rgba(0,0,0,.50);
}
.service-tile:hover {
  background: rgba(18,18,16,1);
  border-top-color: var(--accent-light);
  box-shadow: 0 16px 48px rgba(0,0,0,.65), 0 0 0 1px rgba(212,80,15,.18);
  transform: translateY(-2px);
}

.tile-icon {
  font-size: 22px;
  margin-bottom: 10px;
  display: block;
}

.tile-title {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-size: 22px;
  letter-spacing: .10em;
  color: var(--text);
  display: block;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.tile-desc {
  font-size: 11.5px;
  color: var(--text-mid);
  line-height: 1.55;
}

/* ── About strip ──────────────────────────────────────────────────────────── */
.about-strip {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  align-items: start;
}
@media (max-width: 680px) { .about-strip { grid-template-columns: 1fr; } }

.about-photo {
  width: 100%;
  border-radius: 3px;
  border: 1px solid var(--input-border);
  box-shadow: 0 18px 44px rgba(0,0,0,.55);
  display: block;
}

/* ── Discography ──────────────────────────────────────────────────────────── */
.disco-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .disco-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .disco-grid { grid-template-columns: 1fr; } }

.disco-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-top: 2px solid var(--accent);
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0,0,0,.50);
  transition: transform .15s, box-shadow .15s;
}
.disco-card:hover { transform: translateY(-2px); box-shadow: 0 20px 48px rgba(0,0,0,.65); }

.disco-cover {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid var(--card-border);
}

.disco-info {
  padding: 14px;
}
.disco-title {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-size: 18px;
  letter-spacing: .08em;
  color: var(--text);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.disco-year { font-size: 11px; color: var(--accent-light); margin-bottom: 6px; }
.disco-credits { font-size: 11px; color: var(--text-dim); line-height: 1.45; font-style: italic; }

/* Guest credits table */
.guest-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 680px) { .guest-grid { grid-template-columns: 1fr; } }

.guest-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px;
  background: var(--card-bg-2);
  border: 1px solid var(--card-border);
  border-radius: 3px;
}

.guest-thumb {
  width: 60px; height: 60px;
  object-fit: cover;
  border-radius: 2px;
  border: 1px solid var(--input-border);
  flex-shrink: 0;
}

.guest-info { min-width: 0; }
.guest-title { font-size: 12.5px; font-weight: 600; color: var(--text); margin-bottom: 3px; line-height: 1.3; }
.guest-year  { font-size: 10.5px; color: var(--accent-light); margin-bottom: 4px; }
.guest-role  { font-size: 11px; color: var(--text-dim); line-height: 1.4; font-style: italic; }

/* ── Solo portfolio (solos page) ──────────────────────────────────────────── */
.albums-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 960px) { .albums-grid { grid-template-columns: 1fr; } }

.album-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-top: 2px solid var(--accent);
  border-radius: 3px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 158px 1fr;
  box-shadow: 0 18px 44px rgba(0,0,0,.52), 0 1px 0 rgba(255,255,255,.025) inset;
}
@media (max-width: 620px) { .album-card { grid-template-columns: 1fr; } }

.cover-col {
  background: linear-gradient(180deg, #0c0c0b, #080807);
  border-right: 1px solid var(--card-border);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px;
}
@media (max-width: 620px) { .cover-col { border-right: none; border-bottom: 1px solid var(--card-border); } }

.cover-col img {
  width: 100%;
  max-width: 132px;
  border-radius: 2px;
  border: 1px solid var(--input-border);
  box-shadow: 0 16px 32px rgba(0,0,0,.60);
}

.track-list {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.track-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 10px;
  border-radius: 2px;
  border: 1px solid var(--input-border);
  background: rgba(0,0,0,.16);
  cursor: pointer;
  transition: border-color .16s, background .16s, box-shadow .16s;
}
.track-row:hover {
  border-color: rgba(212,80,15,.42);
  background: rgba(212,80,15,.06);
  box-shadow: 0 0 0 3px rgba(212,80,15,.05);
}
.track-row.playing {
  border-color: rgba(212,80,15,.55);
  background: rgba(212,80,15,.08);
}

.track-title-col { min-width: 0; }
.track-name {
  color: rgba(236,232,225,.92);
  font-weight: 600;
  font-size: 12.5px;
  line-height: 1.35;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.track-sub {
  margin-top: 3px;
  font-size: 10.5px;
  color: var(--text-dim);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.playBtn {
  padding: 9px 12px 7px;
  background: var(--accent);
  color: #fff;
  font-size: 17px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(212,80,15,.25);
  transition: background .15s, transform .10s, box-shadow .15s;
}
.playBtn:hover { background: var(--accent-light); box-shadow: 0 6px 20px rgba(212,80,15,.36); transform: translateY(-1px); }
.playBtn:active { transform: translateY(0); }

/* ── Booking grid ─────────────────────────────────────────────────────────── */
.booking-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
}
@media (max-width: 760px) {
  .booking-grid { grid-template-columns: 1fr; }
  .booking-grid .cta-stack { width: 100%; }
  .booking-grid .btn { width: 100%; }
}

/* ── Payment cards ────────────────────────────────────────────────────────── */
.price-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 16px;
}
@media (max-width: 760px) { .price-cards { grid-template-columns: 1fr; } }

.price-card {
  border: 1px solid var(--card-border);
  background: var(--card-bg-2);
  padding: 18px;
  border-radius: 3px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.price-amount {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-size: 42px;
  letter-spacing: .06em;
  color: #fff;
  line-height: 1;
}

/* ── Forms ────────────────────────────────────────────────────────────────── */
.field { margin-bottom: 15px; }

label {
  display: block;
  font-size: 9.5px;
  letter-spacing: .20em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 7px;
  font-weight: 500;
}

input, textarea, select {
  width: 100%;
  background: var(--input-bg);
  border: 1px solid var(--input-border);
  border-radius: 2px;
  color: var(--text);
  font-family: 'IBM Plex Mono', 'Courier New', monospace;
  font-size: 13.5px;
  padding: 10px 13px;
  outline: none;
  transition: border-color .18s, box-shadow .18s;
  -webkit-appearance: none;
}
textarea { min-height: 115px; resize: vertical; }
input::placeholder, textarea::placeholder { color: var(--text-dim); }
input:focus, textarea:focus, select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
}

/* ── Utility components ───────────────────────────────────────────────────── */
.notice {
  background: rgba(212,80,15,.07);
  border: 1px solid rgba(212,80,15,.28);
  border-radius: 2px;
  padding: 12px 14px;
  color: #d0c8be;
  font-size: 12px;
  line-height: 1.55;
  margin-top: 16px;
}

.divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 22px 0;
  color: var(--text-dim);
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
}
.divider::before, .divider::after {
  content: '';
  flex: 1;
  height: 1px;
}
.divider::before { background: linear-gradient(to right, transparent, var(--card-border)); }
.divider::after  { background: linear-gradient(to left,  transparent, var(--card-border)); }

.copyline {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
  background: var(--input-bg);
  border: 1px solid var(--input-border);
  padding: 10px;
  border-radius: 2px;
  margin-top: 8px;
}
.copyline code {
  font-family: 'IBM Plex Mono', monospace;
  color: var(--text);
  font-size: 12px;
  overflow-wrap: anywhere;
}
.copybtn {
  border: 1px solid rgba(212,80,15,.42);
  background: transparent;
  color: var(--accent-light);
  border-radius: 2px;
  padding: 7px 9px;
  font-size: 11px;
  font-family: 'IBM Plex Mono', monospace;
  cursor: pointer;
  white-space: nowrap;
}
.copybtn:hover { background: var(--accent-dim); }

/* ── Fixed audio player bar ───────────────────────────────────────────────── */
.player-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 9999;
  background: rgba(8,8,7,.94);
  border-top: 1px solid var(--card-border);
  box-shadow: 0 -18px 50px rgba(0,0,0,.62);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.player-inner {
  width: min(var(--max), calc(100% - 34px));
  margin: 0 auto;
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.player-meta {
  min-width: 0;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.player-meta .now {
  font-size: 12px;
  font-weight: 600;
  color: rgba(236,232,225,.94);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.player-meta .file {
  font-size: 10.5px;
  color: var(--text-dim);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.player-controls { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; }

.playerBtn {
  width: 40px; height: 40px;
  border-radius: 2px;
  border: 1px solid var(--input-border);
  background: var(--card-bg);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  transition: border-color .15s, background .15s, transform .10s;
}
.playerBtn:hover { border-color: rgba(212,80,15,.55); background: var(--accent-dim); }
.playerBtn:active { transform: translateY(1px); }

.seek-wrap {
  flex: 1 1 420px;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.time {
  font-variant-numeric: tabular-nums;
  font-size: 11px;
  color: var(--text-mid);
  width: 48px;
  text-align: center;
  flex: 0 0 auto;
}
input[type="range"] {
  width: 100%;
  accent-color: var(--accent);
  cursor: pointer;
  padding: 0;
  border: none;
  background: none;
  box-shadow: none;
}

/* ── Footer ───────────────────────────────────────────────────────────────── */
.site-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--card-border);
  padding: 28px 0 24px;
  margin-top: 60px;
}

.footer-inner {
  width: min(var(--max), calc(100% - 34px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: .05em;
}

.footer-links {
  display: flex;
  gap: 16px;
  list-style: none;
}
.footer-links a {
  font-size: 11px;
  color: var(--text-dim);
  text-decoration: none;
  transition: color .15s;
}
.footer-links a:hover { color: var(--text-mid); }

/* ── Responsive video embeds ─────────────────────────────────────────────── */
.video-wrap {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: 3px;
  border: 1px solid var(--card-border);
  background: #000;
}
.video-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* ── Bulk discount notice ────────────────────────────────────────────────── */
.bulk-notice {
  margin-top: 24px;
  padding: 16px 20px;
  border: 1px solid var(--accent);
  border-radius: 3px;
  background: rgba(212,80,15,.07);
  font-size: 14px;
  line-height: 1.6;
  color: var(--text);
}
.bulk-notice strong { color: var(--accent-light); }
.bulk-notice a {
  display: inline-block;
  margin-top: 6px;
  color: var(--accent);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: .04em;
}
.bulk-notice a:hover { text-decoration: underline; }

/* ── News feed (public) ───────────────────────────────────────────────────── */
.news-feed {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.news-card {
  border-bottom: 1px solid var(--card-border);
  padding: 32px 0;
}
.news-card:first-child { padding-top: 0; }
.news-card:last-child  { border-bottom: none; }

.news-card-meta { margin-bottom: 8px; }

.news-date {
  font-size: 12px;
  color: var(--accent);
  letter-spacing: .08em;
  font-family: var(--font-mono);
}

.news-card-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(22px, 3.5vw, 32px);
  letter-spacing: .04em;
  margin-bottom: 12px;
  line-height: 1.1;
}
.news-card-title a {
  color: var(--text);
  text-decoration: none;
  transition: color .15s;
}
.news-card-title a:hover { color: var(--accent); }

.news-card-body {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-mid);
  margin-bottom: 16px;
}
.news-card-body a { color: var(--accent); }

.news-card-media {
  margin-bottom: 16px;
}
.news-card-media img {
  max-width: 280px;
  width: 100%;
  border-radius: 3px;
  border: 1px solid var(--card-border);
  display: block;
}
.news-card-video {
  margin-bottom: 16px;
  max-width: 600px;
}
.news-card-embed {
  margin-bottom: 16px;
  max-width: 600px;
}

.news-post-image {
  margin-bottom: 24px;
}
.news-post-image img {
  max-width: 360px;
  width: 100%;
  border-radius: 4px;
  border: 1px solid var(--card-border);
}

.news-post-body {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text);
}
.news-post-body a { color: var(--accent); }

.news-read-more {
  font-size: 12px;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: .06em;
  transition: opacity .15s;
}
.news-read-more:hover { opacity: .7; }

.news-post-body {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text);
}
.news-post-body a { color: var(--accent); }

/* ── News admin list ──────────────────────────────────────────────────────── */
.news-admin-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.news-admin-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--card-border);
  flex-wrap: wrap;
}
.news-admin-row:last-child { border-bottom: none; }
.news-admin-row.unpublished { opacity: .55; }
.news-admin-info {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}
.news-admin-title {
  font-size: 14px;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news-admin-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.btn-sm {
  padding: 5px 12px;
  font-size: 11px;
}
.btn-danger {
  background: transparent;
  border-color: var(--danger);
  color: var(--danger);
}
.btn-danger:hover { background: rgba(185,74,53,.12); }

/* ── disco-card as link ───────────────────────────────────────────────────── */
a.disco-card-link {
  text-decoration: none;
  display: block;
  cursor: pointer;
}
a.disco-card-link:hover { border-top-color: var(--accent-light); }
a.disco-card-link:hover .disco-title { color: var(--accent-light); }

/* ── Album detail page ────────────────────────────────────────────────────── */
.album-nav { margin-bottom: 28px; }
.album-back {
  font-size: 11px;
  color: var(--text-mid);
  text-decoration: none;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.album-back:hover { color: var(--accent-light); }

.album-hero {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 40px;
}
@media (max-width: 800px) {
  .album-hero { grid-template-columns: 1fr; gap: 28px; }
}

.album-artwork-wrap {
  position: sticky;
  top: calc(var(--nav-h) + 20px);
}
.album-artwork {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 3px;
  border: 1px solid var(--card-border);
  box-shadow: 0 24px 64px rgba(0,0,0,.75);
  display: block;
}

.album-title {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-size: clamp(36px, 6vw, 56px);
  letter-spacing: .06em;
  line-height: 1;
  color: var(--text);
  margin-bottom: 6px;
}
.album-meta {
  font-size: 11px;
  color: var(--accent-light);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.album-tracks { display: flex; flex-direction: column; gap: 18px; margin-bottom: 28px; }
.album-track { display: flex; flex-direction: column; gap: 8px; }
.track-title {
  font-size: 12px;
  color: var(--text-mid);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.track-player {
  width: 100%;
  height: 36px;
  accent-color: var(--accent);
  border-radius: 2px;
  background: var(--card-bg);
}
/* Style native audio in supporting browsers */
audio::-webkit-media-controls-panel { background: var(--card-bg); }

.album-buy { margin-top: 8px; }

.album-notes { margin-top: 0; }
.album-notes-body {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.7;
}
.album-notes-body p { margin-bottom: 10px; }
.album-notes-body ol, .album-notes-body ul { margin-left: 20px; margin-bottom: 10px; }
.album-notes-body a { color: var(--accent-light); }

/* ── Misc / responsive ────────────────────────────────────────────────────── */
@media (max-width: 720px) {
  .seek-wrap { display: none; }
  .player-inner { gap: 10px; }
  .player-meta .file { display: none; }
}
@media (max-width: 520px) {
  .track-sub { display: none; }
  .card, .panel { padding: 20px; }
  .brand-name { letter-spacing: .10em; }
}
