:root {
  --bg: #08080c;
  --bg-soft: #101017;
  --surface: rgba(255, 255, 255, 0.055);
  --surface-strong: #171720;
  --surface-light: #20202c;
  --text: #f7f5ff;
  --muted: #aaa6b7;
  --gold: #d7ad4b;
  --gold-soft: #f0d58a;
  --purple: #8b3dff;
  --purple-bright: #b778ff;
  --danger: #ff5c78;
  --success: #46d99e;
  --border: rgba(255, 255, 255, 0.11);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 32px;
  --container: 1180px;
  --font-display: "Arial Black", "Trebuchet MS", Arial, sans-serif;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 84% 8%, rgba(139, 61, 255, 0.16), transparent 30%),
    radial-gradient(circle at 8% 34%, rgba(215, 173, 75, 0.1), transparent 28%),
    var(--bg);
  font-family: var(--font-body);
  line-height: 1.6;
  min-height: 100vh;
}
body.no-scroll { overflow: hidden; }
.not-found-page { position:relative; min-height:100vh; display:grid; place-items:center; overflow:hidden; padding:110px 20px 50px; }
.not-found-brand { position:absolute; top:24px; left:clamp(20px,5vw,70px); }
.not-found-glow { position:absolute; width:min(70vw,720px); aspect-ratio:1; border-radius:50%; background:radial-gradient(circle,rgba(139,61,255,.3),rgba(215,173,75,.08) 42%,transparent 68%); filter:blur(24px); }
.not-found-card { position:relative; z-index:1; width:min(100%,860px); padding:clamp(34px,7vw,80px); text-align:center; }
.not-found-code { display:block; font-family:var(--font-display); font-size:clamp(8rem,28vw,19rem); line-height:.65; color:rgba(255,255,255,.045); letter-spacing:-.07em; }
.not-found-card h1 { margin:25px 0 12px; font-family:var(--font-display); font-size:clamp(2.5rem,7vw,5.5rem); line-height:.9; text-transform:uppercase; }
.not-found-card p { width:min(100%,590px); margin:0 auto; color:var(--muted); }
.not-found-card .hero-actions { justify-content:center; }
:root[data-theme="light"] .not-found-code { color:rgba(29,22,15,.06); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
input[type="file"], input[type="file"]::file-selector-button { cursor: pointer; }
:focus-visible { outline: 3px solid var(--purple-bright); outline-offset: 3px; }

.container { width: min(calc(100% - 36px), var(--container)); margin-inline: auto; }
.section { padding: 96px 0; position: relative; }
.section-sm { padding: 64px 0; }
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-soft);
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.19em;
  margin-bottom: 14px;
}
.section-kicker::before { content: ""; width: 26px; height: 1px; background: var(--gold); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4.5rem);
  letter-spacing: -0.05em;
  line-height: 0.98;
  margin: 0;
  text-transform: uppercase;
}
.section-copy { max-width: 680px; color: var(--muted); font-size: 1.04rem; margin-top: 18px; }
.section-heading { display: flex; justify-content: space-between; gap: 28px; align-items: end; margin-bottom: 38px; }
.eyebrow { color: var(--gold-soft); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.18em; font-weight: 800; }
.muted { color: var(--muted); }
.text-gradient { background: linear-gradient(90deg, #fff, var(--gold-soft), var(--purple-bright)); -webkit-background-clip: text; color: transparent; }

.btn {
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 800;
  transition: transform .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #0b0910; background: linear-gradient(135deg, var(--gold-soft), var(--gold)); box-shadow: 0 12px 36px rgba(215, 173, 75, .22); }
.btn-secondary { color: #fff; background: linear-gradient(135deg, var(--purple), #5a1fc6); box-shadow: 0 12px 36px rgba(139, 61, 255, .28); }
.btn-ghost { background: rgba(255,255,255,.035); border-color: var(--border); color: #fff; }
.btn-danger { background: rgba(255,92,120,.12); border-color: rgba(255,92,120,.35); color: #ff9caf; }
.btn-sm { min-height: 38px; padding: 0 15px; font-size: .88rem; }
.icon-btn { width: 46px; height: 46px; padding: 0; border-radius: 50%; border: 1px solid var(--border); background: rgba(255,255,255,.05); color: #fff; display: grid; place-items: center; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  transition: background .3s ease, border-color .3s ease, backdrop-filter .3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled { background: rgba(8,8,12,.84); backdrop-filter: blur(18px); border-color: var(--border); }
.nav-wrap { height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-display); letter-spacing: -.04em; font-size: 1.1rem; }
.brand-mark { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; background: linear-gradient(145deg, var(--gold), var(--purple)); box-shadow: 0 0 26px rgba(139,61,255,.28); font-size: .78rem; color: white; }
.main-nav { display: flex; align-items: center; gap: 22px; }
.main-nav a { color: #d9d5e3; font-size: .9rem; font-weight: 700; position: relative; }
.main-nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -8px; height: 2px; transform: scaleX(0); transform-origin: left; background: linear-gradient(90deg,var(--gold),var(--purple)); transition: transform .25s ease; }
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.menu-toggle { display: none; }
.mobile-menu { display: none; }

.hero {
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: 150px 0 74px;
  overflow: hidden;
  position: relative;
}
.hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,8,12,.97) 0%, rgba(8,8,12,.72) 43%, rgba(8,8,12,.15) 78%), linear-gradient(0deg, var(--bg), transparent 40%); z-index: 1; }
.hero-bg { position:absolute; inset:0; background-color:#08080c; background-image:url('../images/hero-studio-session.png'); background-position:right center; background-size:cover; background-repeat:no-repeat; filter:saturate(.92); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.2fr .8fr; gap: 44px; align-items: end; }
.hero-title { font-family: var(--font-display); font-size: clamp(3.4rem, 9vw, 8.5rem); letter-spacing: -.075em; line-height: .82; text-transform: uppercase; margin: 0; max-width: 920px; }
.hero-title span { display: block; }
.hero-copy { max-width: 600px; color: #d1cbdc; font-size: clamp(1rem, 2vw, 1.2rem); margin: 26px 0 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-card { margin-left: auto; width: min(100%, 380px); background: rgba(12,12,18,.64); backdrop-filter: blur(18px); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 22px; box-shadow: var(--shadow); }
.hero-card img { aspect-ratio: 1.2; object-fit: cover; border-radius: 20px; }
.hero-card-meta { display: flex; justify-content: space-between; align-items: center; margin-top: 18px; gap: 15px; }
.hero-card h3 { margin: 0; font-size: 1.35rem; }
.hero-card p { margin: 3px 0 0; color: var(--muted); }
.sound-wave { display: flex; align-items: center; gap: 4px; height: 52px; margin-top: 28px; }
.sound-wave span { width: 3px; height: 14px; border-radius: 8px; background: linear-gradient(var(--gold-soft), var(--purple)); animation: wave 1.2s ease-in-out infinite; animation-delay: calc(var(--i) * -0.08s); }
@keyframes wave { 0%,100% { height: 11px; opacity: .55; } 50% { height: 48px; opacity: 1; } }

.glass-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); backdrop-filter: blur(14px); }
.card-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 22px; }
.artist-card { position: relative; min-height: 440px; overflow: hidden; border-radius: var(--radius-lg); border: 1px solid var(--border); background: var(--surface-strong); }
.artist-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.artist-card img[style*="contain"], .hero-card img[style*="contain"], .artist-week-visual img[style*="contain"], .artist-profile-image img[style*="contain"] { background:var(--surface-strong); }
.artist-card:hover img { transform: scale(1.045); }
.artist-card::after { content: ""; position: absolute; inset: 35% 0 0; background: linear-gradient(transparent, rgba(7,7,10,.98)); }
.artist-card-content { position: absolute; inset: auto 24px 24px; z-index: 2; }
.artist-card h3 { margin: 0; font-size: 1.7rem; letter-spacing: -.03em; }
.artist-card p { color: #c4bfcc; margin: 4px 0 17px; }
.badge { display: inline-flex; align-items: center; min-height: 28px; padding: 0 10px; border-radius: 999px; background: rgba(139,61,255,.18); border: 1px solid rgba(183,120,255,.28); color: #dbc1ff; font-size: .76rem; font-weight: 800; }

.release-feature { display: grid; grid-template-columns: .95fr 1.05fr; gap: 44px; align-items: center; }
.release-cover { position: relative; }
.release-cover img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.vinyl { position: absolute; width: 72%; aspect-ratio: 1; border-radius: 50%; background: repeating-radial-gradient(circle, #111 0 4px, #202024 5px 8px); right: -14%; top: 14%; z-index: -1; box-shadow: 0 20px 70px #000; }
.release-meta h2 { font-family: var(--font-display); font-size: clamp(2.8rem, 6vw, 6rem); line-height: .9; letter-spacing: -.06em; margin: 10px 0 18px; text-transform: uppercase; }
.meta-row { display: flex; flex-wrap: wrap; gap: 12px 22px; color: var(--muted); margin-bottom: 26px; }

.track-list { display: grid; gap: 10px; }
.track-row { display: grid; grid-template-columns: 44px 56px 1fr auto auto; gap: 14px; align-items: center; padding: 12px 14px; border-radius: 15px; border: 1px solid transparent; transition: background .25s ease, border-color .25s ease; }
.track-row:hover { background: rgba(255,255,255,.045); border-color: var(--border); }
.track-row img { width: 56px; aspect-ratio: 1; object-fit: cover; border-radius: 10px; }
.track-title { font-weight: 800; }
.track-artist, .track-duration { color: var(--muted); font-size: .88rem; }
.play-track { width: 38px; height: 38px; border: 0; border-radius: 50%; background: rgba(139,61,255,.15); color: #fff; }

.story-grid, .two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: center; }
.story-media { position: relative; }
.story-media img { border-radius: var(--radius-lg); }
.story-stat { position: absolute; right: -18px; bottom: 28px; padding: 20px; min-width: 180px; }
.story-stat strong { display: block; font-size: 2.7rem; font-family: var(--font-display); color: var(--gold-soft); }
.services-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 18px; }
.service-card { padding: 28px; min-height: 260px; transition: transform .25s ease, border-color .25s ease; }
.service-card:hover { transform: translateY(-7px); border-color: rgba(183,120,255,.4); }
.service-icon { width: 48px; height: 48px; border-radius: 15px; display: grid; place-items: center; background: linear-gradient(145deg, rgba(215,173,75,.2), rgba(139,61,255,.24)); margin-bottom: 44px; font-weight: 900; }
.service-card h3 { margin: 0 0 8px; }
.service-card p { color: var(--muted); margin: 0; }

.events-list { display: grid; gap: 14px; }
.event-row { display: grid; grid-template-columns: 110px 1fr auto; align-items: center; gap: 24px; padding: 24px; border-radius: var(--radius); border: 1px solid var(--border); background: rgba(255,255,255,.035); }
.event-date { display: grid; place-items: center; border-right: 1px solid var(--border); }
.event-date strong { font-size: 2rem; line-height: 1; color: var(--gold-soft); }
.event-date span { text-transform: uppercase; letter-spacing: .14em; color: var(--muted); font-size: .72rem; }
.event-row h3 { margin: 0; }
.event-row p { margin: 4px 0 0; color: var(--muted); }

.news-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 22px; }
.news-card { overflow: hidden; }
.news-card img { width: 100%; aspect-ratio: 1.55; object-fit: cover; }
.news-card-content { padding: 22px; }
.news-card h3 { margin: 9px 0 8px; font-size: 1.2rem; }
.news-card p { margin: 0; color: var(--muted); }

.cta-panel { padding: clamp(34px, 6vw, 78px); border-radius: 40px; overflow: hidden; position: relative; background: linear-gradient(135deg, rgba(139,61,255,.35), rgba(215,173,75,.14)), var(--surface-strong); border: 1px solid var(--border); }
.cta-panel::after { content: ""; position: absolute; width: 300px; height: 300px; border-radius: 50%; background: var(--purple); filter: blur(120px); opacity: .2; right: -60px; top: -100px; }
.cta-panel h2 { font-family: var(--font-display); font-size: clamp(2.6rem, 7vw, 6.5rem); line-height: .88; letter-spacing: -.06em; margin: 0 0 20px; max-width: 850px; text-transform: uppercase; }
.cta-panel p { color: #d5cfdf; max-width: 620px; }

.newsletter { display: grid; grid-template-columns: 1fr auto; gap: 12px; padding: 10px; border: 1px solid var(--border); background: rgba(255,255,255,.04); border-radius: 999px; max-width: 660px; }
.newsletter input { width: 100%; border: 0; background: transparent; color: white; padding: 0 16px; min-width: 0; }
.newsletter input:focus { outline: 0; }

.page-hero { min-height: 55vh; padding: 170px 0 80px; display: grid; align-items: end; position: relative; overflow: hidden; }
.page-hero::before { content:""; position:absolute; inset:0; background: radial-gradient(circle at 75% 25%, rgba(139,61,255,.24), transparent 30%), linear-gradient(180deg, transparent, var(--bg)); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(3.4rem, 10vw, 8.8rem); line-height: .83; letter-spacing: -.07em; text-transform: uppercase; margin: 0; }
.page-hero p { max-width: 680px; color: var(--muted); font-size: 1.1rem; }

.filters { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-bottom: 30px; }
.search-input, .field input, .field textarea, .field select {
  width: 100%;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.045);
  color: var(--text);
  border-radius: 14px;
  min-height: 50px;
  padding: 12px 14px;
}
.search-wrap { flex: 1; min-width: 240px; }
.filter-btn { border: 1px solid var(--border); background: rgba(255,255,255,.035); color: #d9d5e3; min-height: 42px; padding: 0 15px; border-radius: 999px; }
.filter-btn.active { background: rgba(139,61,255,.22); border-color: rgba(183,120,255,.45); color: #fff; }

.artist-profile-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 54px; align-items: start; }
.artist-profile-image { position: sticky; top: 110px; }
.artist-profile-image img { border-radius: var(--radius-lg); width: 100%; }
.artist-profile h1 { font-family: var(--font-display); font-size: clamp(3.5rem, 8vw, 7rem); line-height: .88; letter-spacing: -.06em; margin: 10px 0 20px; text-transform: uppercase; }
.social-links { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0; }
.social-links a { padding: 9px 13px; border: 1px solid var(--border); border-radius: 999px; color: #d8d2e0; font-size: .86rem; }
.video-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
.video-card { aspect-ratio: 16/9; border-radius: var(--radius); overflow: hidden; display: grid; place-items: center; position: relative; background: linear-gradient(135deg, rgba(139,61,255,.3), rgba(215,173,75,.15)); border: 1px solid var(--border); }
.video-card::before { content: "▶"; width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; background: rgba(8,8,12,.72); }

.form-card { max-width: 900px; padding: clamp(24px, 5vw, 46px); margin-inline: auto; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 20px; }
.field { display: grid; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-weight: 800; font-size: .9rem; }
.field small { color: var(--muted); }
.field textarea { min-height: 140px; resize: vertical; }
.field select option { background: #171720; }
.checkbox-dropdown { position:relative; border:1px solid var(--border); border-radius:14px; background:rgba(255,255,255,.045); }
.checkbox-dropdown summary { min-height:50px; display:flex; align-items:center; justify-content:space-between; gap:16px; padding:12px 14px; cursor:pointer; list-style:none; }
.checkbox-dropdown summary::-webkit-details-marker { display:none; }
.checkbox-dropdown summary [data-multiselect-label] { overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.checkbox-options { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:4px; max-height:260px; overflow:auto; padding:8px; border-top:1px solid var(--border); }
.checkbox-options label { display:flex; align-items:center; gap:10px; padding:9px 10px; border-radius:9px; cursor:pointer; color:var(--muted); }
.checkbox-options label:hover { background:rgba(139,61,255,.1); color:var(--text); }
.checkbox-options input { width:17px; height:17px; accent-color:var(--purple); }
.checkbox { display: flex; align-items: flex-start; gap: 10px; color: var(--muted); }
.checkbox input { margin-top: 5px; }
.upload-zone { border: 1px dashed rgba(183,120,255,.45); border-radius: var(--radius); padding: 32px; text-align: center; background: rgba(139,61,255,.055); }
.form-message { display: none; padding: 13px 15px; border-radius: 12px; margin-top: 18px; }
.form-message.show { display: block; }
.form-message.success { background: rgba(70,217,158,.12); border: 1px solid rgba(70,217,158,.35); color: #aaf2d4; }
.form-message.error { background: rgba(255,92,120,.1); border: 1px solid rgba(255,92,120,.35); color: #ffc0cb; }

.about-values { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.program-hero { min-height: 72vh; }
.program-hero p { margin-bottom: 28px; }
.programme-stats { border-block: 1px solid var(--border); background: rgba(255,255,255,.02); }
.stat-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 1px; background: var(--border); }
.stat-grid article { min-height: 180px; padding: 30px; display: grid; align-content: center; background: var(--bg); }
.stat-grid strong { display: block; font-family: var(--font-display); font-size: clamp(2.8rem, 6vw, 5.5rem); line-height: .9; color: var(--gold-soft); }
.stat-grid span { color: var(--muted); margin-top: 12px; max-width: 170px; }
.pillar-grid { display: grid; grid-template-columns: repeat(6, minmax(0,1fr)); gap: 18px; }
.pillar-grid .service-card { grid-column: span 2; }
.pillar-grid .service-card:nth-child(4) { grid-column: 2 / span 2; }
.commitment-panel { padding: clamp(30px, 6vw, 70px); border: 1px solid var(--border); border-radius: 40px; background: linear-gradient(135deg, rgba(139,61,255,.14), rgba(215,173,75,.06)); }
.commitment-list ul { margin: 18px 0 0; padding-left: 20px; color: var(--muted); }
.commitment-list li { margin: 11px 0; padding-left: 5px; }
.value-card { padding: 30px; }
.value-card strong { font-family: var(--font-display); color: var(--gold-soft); font-size: 3rem; }
.timeline { position: relative; display: grid; gap: 22px; }
.timeline::before { content: ""; position: absolute; left: 15px; top: 0; bottom: 0; width: 1px; background: var(--border); }
.timeline-item { padding-left: 48px; position: relative; }
.timeline-item::before { content: ""; position: absolute; left: 8px; top: 8px; width: 15px; height: 15px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 24px rgba(215,173,75,.45); }
.timeline-item h3 { margin: 0; }
.timeline-item p { color: var(--muted); }

.site-footer { padding: 80px 0 28px; border-top: 1px solid var(--border); background: #07070a; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, .7fr); gap: 42px; }
.footer-brand p { max-width: 360px; color: var(--muted); }
.footer-col h4 { margin: 0 0 15px; }
.footer-col a { display: block; color: var(--muted); margin: 8px 0; }
.footer-col a:hover { color: #fff; }
.footer-bottom { margin-top: 48px; padding-top: 22px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; gap: 20px; color: var(--muted); font-size: .85rem; }

.audio-player {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  width: min(calc(100% - 28px), 980px);
  min-height: 78px;
  z-index: 950;
  padding: 10px 16px;
  border: 1px solid var(--border);
  background: rgba(11,11,16,.91);
  backdrop-filter: blur(22px);
  border-radius: 22px;
  box-shadow: 0 20px 70px rgba(0,0,0,.54);
  display: grid;
  grid-template-columns: 230px 1fr 180px;
  align-items: center;
  gap: 18px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 24px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
}
.audio-player.visible { opacity: 1; visibility: visible; pointer-events: auto; transform: translate(-50%, 0); }
.player-track { display: flex; align-items: center; gap: 12px; min-width: 0; }
.player-track img { width: 54px; height: 54px; border-radius: 12px; object-fit: cover; }
.player-track-meta { min-width: 0; }
.player-track-meta strong, .player-track-meta span { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.player-track-meta span { color: var(--muted); font-size: .8rem; }
.player-center { display: grid; gap: 6px; }
.player-controls { display: flex; justify-content: center; align-items: center; gap: 8px; }
.player-controls button { border: 0; color: #fff; background: transparent; width: 34px; height: 34px; border-radius: 50%; }
.player-controls .main-play { background: #fff; color: #0a0910; width: 40px; height: 40px; }
.progress-wrap { display: grid; grid-template-columns: 42px 1fr 42px; gap: 8px; align-items: center; color: var(--muted); font-size: .72rem; }
input[type="range"] { accent-color: var(--purple-bright); }
.player-volume { display: flex; align-items: center; gap: 8px; }
.player-volume input { width: 100%; }
.player-close { width: 34px; height: 34px; flex: 0 0 34px; border: 0; border-radius: 50%; color: var(--text); background: rgba(255,255,255,.08); font-size: 1.2rem; }
.queue-panel { position: fixed; right: 18px; bottom: 108px; width: min(calc(100% - 36px), 380px); max-height: 460px; overflow: auto; z-index: 949; display: none; padding: 18px; }
.queue-panel.open { display: block; }
.queue-panel h3 { margin: 0 0 12px; }
.queue-item { display: grid; grid-template-columns: 44px 1fr auto; gap: 10px; align-items: center; padding: 10px; border-radius: 12px; }
.queue-item.active { background: rgba(139,61,255,.16); }
.queue-item img { width: 44px; height: 44px; object-fit: cover; border-radius: 9px; }
.queue-item button { border: 0; background: transparent; color: #fff; text-align: left; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.empty-state, .loading-state, .error-state { padding: 50px 24px; text-align: center; border: 1px dashed var(--border); border-radius: var(--radius); color: var(--muted); }
.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; }

@media (max-width: 1024px) {
  .main-nav { display: none; }
  .menu-toggle { display: grid; }
  .mobile-menu { position: fixed; inset: 82px 18px auto; z-index: 999; padding: 18px; background: rgba(14,14,20,.98); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); }
  .mobile-menu.open { display: grid; }
  .mobile-menu a { padding: 13px 10px; border-bottom: 1px solid var(--border); }
  .hero-grid, .release-feature, .story-grid, .two-col, .artist-profile-grid { grid-template-columns: 1fr; }
  .hero-card { margin: 0; }
  .card-grid, .news-grid { grid-template-columns: repeat(2,1fr); }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .stat-grid { grid-template-columns: repeat(2,1fr); }
  .pillar-grid { grid-template-columns: repeat(2,1fr); }
  .pillar-grid .service-card, .pillar-grid .service-card:nth-child(4) { grid-column: auto; }
  .footer-grid { grid-template-columns: 1.4fr repeat(2,1fr); }
  .audio-player { grid-template-columns: 190px 1fr 120px; }
  .artist-profile-image { position: static; max-width: 620px; }
}

@media (max-width: 700px) {
  .section { padding: 72px 0; }
  .nav-actions .btn { display: none; }
  .hero { padding-top: 120px; }
  .hero::before { background: linear-gradient(0deg, var(--bg) 0%, rgba(8,8,12,.74) 65%, rgba(8,8,12,.25)); }
  .hero-grid { gap: 24px; }
  .hero-card { width: 100%; }
  .section-heading { display: block; }
  .section-heading .btn { margin-top: 18px; }
  .card-grid, .news-grid, .services-grid, .about-values, .video-grid { grid-template-columns: 1fr; }
  .stat-grid, .pillar-grid { grid-template-columns: 1fr; }
  .artist-card { min-height: 410px; }
  .event-row { grid-template-columns: 70px 1fr; }
  .event-row .btn { grid-column: 1 / -1; }
  .event-date { border-right: 0; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { display: block; }
  .audio-player { grid-template-columns: 1fr auto; min-height: 72px; }
  .player-center { grid-column: 1 / -1; grid-row: 2; }
  .player-volume input { display: none; }
  .player-volume { justify-content: end; }
  .progress-wrap { grid-template-columns: 35px 1fr 35px; }
  .track-row { grid-template-columns: 38px 50px 1fr auto; }
  .track-duration { display: none; }
  .newsletter { grid-template-columns: 1fr; border-radius: 22px; }
  .newsletter .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Approved Derby Sounds logo variants and colour themes */
:root[data-theme="light"] {
  --bg: #f4f0e7;
  --bg-soft: #e9e2d5;
  --surface: rgba(255,255,255,.88);
  --surface-strong: #fff;
  --surface-light: #e5ddcf;
  --text: #1b1814;
  --muted: #686157;
  --gold: #9b680b;
  --gold-soft: #805508;
  --purple: #6630bd;
  --purple-bright: #6f35cb;
  --border: rgba(48,37,23,.12);
  --shadow: 0 18px 55px rgba(55,40,18,.1);
  color-scheme: light;
}
:root[data-theme="dark"] { color-scheme: dark; }

.brand-logo { width: 110px; height: 68px; object-fit: contain; }
.logo-white { display: block; }
.footer-logo .brand-logo { width: 150px; height: 120px; object-position: left center; }
:root[data-theme="light"] .site-header .brand,
:root[data-theme="light"] .footer-logo { padding:2px 10px; border-radius:12px; background:#111016; }

:root[data-theme="light"] body {
  background: radial-gradient(circle at 90% 4%, rgba(102,48,189,.07), transparent 26%), radial-gradient(circle at 4% 38%, rgba(155,104,11,.08), transparent 25%), var(--bg);
}
:root[data-theme="light"] .site-header.scrolled { background: rgba(244,240,231,.94); box-shadow: 0 8px 30px rgba(55,40,18,.06); }
:root[data-theme="light"] .main-nav a { color: #4e473e; }
:root[data-theme="light"] .theme-toggle,
:root[data-theme="light"] .menu-toggle { color: var(--text); background: rgba(255,255,255,.65); }
:root[data-theme="light"] .btn-ghost { background: rgba(255,255,255,.72); color: var(--text); }
:root[data-theme="light"] .hero-bg { opacity:.82; filter:saturate(.78) contrast(.94); }
:root[data-theme="light"] .hero::before { background:linear-gradient(90deg,rgba(244,240,231,.98) 0%,rgba(244,240,231,.9) 37%,rgba(244,240,231,.34) 68%,rgba(244,240,231,.08) 100%),linear-gradient(0deg,var(--bg),transparent 42%); }
:root[data-theme="light"] .text-gradient { background: linear-gradient(90deg, #3d2b0d, #a06b0d, #6630bd); -webkit-background-clip: text; color: transparent; }
:root[data-theme="light"] .hero-copy { color: #514a40; }
:root[data-theme="light"] .hero-card { background: #17151b; border-color: rgba(27,24,20,.15); color: #fff; }
:root[data-theme="light"] .hero-card p { color: #bdb6c7; }
:root[data-theme="light"] .glass-card { backdrop-filter: none; }
:root[data-theme="light"] .artist-card { color: #fff; border-color: rgba(27,24,20,.16); }
:root[data-theme="light"] .track-row:hover,
:root[data-theme="light"] .event-row { background: rgba(255,255,255,.68); }
:root[data-theme="light"] .play-track { color: #fff; background: var(--purple); }
:root[data-theme="light"] .cta-panel { background: linear-gradient(135deg, #2b1749, #3f225d 58%, #6e4b12); color: #fff; border: 0; }
:root[data-theme="light"] .cta-panel p { color: #ddd5e8; }
:root[data-theme="light"] .newsletter { background: #fff; }
:root[data-theme="light"] .newsletter input { color: var(--text); }
:root[data-theme="light"] .filter-btn { color: #514a40; background: rgba(255,255,255,.65); }
:root[data-theme="light"] .filter-btn.active { color: #fff; background: var(--purple); }
:root[data-theme="light"] .field input,
:root[data-theme="light"] .field textarea,
:root[data-theme="light"] .field select,
:root[data-theme="light"] .search-input { background: #fff; color: var(--text); }
:root[data-theme="light"] .field select option { background: #fff; }
:root[data-theme="light"] .checkbox-dropdown { background:#fff; }
:root[data-theme="light"] .site-footer { background: #eee8dc; }
:root[data-theme="light"] .footer-col a:hover { color: #17130d; }
:root[data-theme="light"] .audio-player { background: rgba(255,255,255,.93); }
:root[data-theme="light"] .player-controls button,
:root[data-theme="light"] .queue-item button { color: var(--text); }
:root[data-theme="light"] .player-controls .main-play { background: #17130d; color: #fff; }
:root[data-theme="light"] .mobile-menu { background: rgba(248,245,238,.98); }
:root[data-theme="light"] .page-hero::before { background: radial-gradient(circle at 75% 25%, rgba(102,48,189,.09), transparent 30%), linear-gradient(180deg, transparent, var(--bg)); }

@media (max-width: 700px) {
  .brand-logo { width: 92px; height: 58px; }
  .hero-bg { background-position:72% center; }
  :root[data-theme="light"] .hero-bg { opacity:.68; }
  :root[data-theme="light"] .hero::before { background:linear-gradient(0deg,var(--bg) 0%,rgba(244,240,231,.88) 58%,rgba(244,240,231,.28) 100%); }
}

/* Artist of the Week */
.artist-week-section { overflow: hidden; }
.artist-week-card { position: relative; isolation: isolate; display: grid; grid-template-columns: .85fr 1.15fr; min-height: 620px; overflow: hidden; border: 1px solid rgba(240,213,138,.24); border-radius: 42px; background: linear-gradient(135deg,#120d18 0%,#25103f 55%,#5a3c0a 130%); box-shadow: var(--shadow); }
.artist-week-glow { position: absolute; width: 420px; height: 420px; right: -8%; top: -18%; border-radius: 50%; background: var(--purple); filter: blur(130px); opacity: .26; z-index: -1; animation: spotlightGlow 5s ease-in-out infinite; }
.artist-week-visual { position: relative; min-height: 620px; overflow: hidden; }
.artist-week-visual::after { content:""; position:absolute; inset:30% 0 0; background:linear-gradient(transparent,rgba(12,8,17,.9)); }
.artist-week-visual img { width:100%; height:100%; object-fit:cover; filter:saturate(.95) contrast(1.05); transition:transform .7s ease; }
.artist-week-card:hover .artist-week-visual img { transform:scale(1.035); }
.artist-week-stamp { position:absolute; z-index:3; top:26px; left:26px; width:104px; aspect-ratio:1; border-radius:50%; display:grid; place-items:center; text-align:center; text-transform:uppercase; letter-spacing:.12em; line-height:1.1; font-weight:900; font-size:.68rem; color:#120d18; background:var(--gold-soft); transform:rotate(-8deg); box-shadow:0 12px 40px rgba(0,0,0,.3); animation:stampFloat 3.6s ease-in-out infinite; }
.artist-week-bars { position:absolute; z-index:3; inset:auto 28px 30px; height:64px; display:flex; align-items:end; gap:5px; }
.artist-week-bars span { flex:1; max-width:8px; height:calc(12px + (var(--bar) % 7) * 7px); border-radius:8px; background:linear-gradient(var(--gold-soft),var(--purple-bright)); animation:artistBar 1.1s ease-in-out infinite alternate; animation-delay:calc(var(--bar) * -.08s); }
.artist-week-copy { padding:clamp(36px,6vw,82px); align-self:center; color:#fff; }
.artist-week-overline { margin:0; color:#d4cadc; text-transform:uppercase; letter-spacing:.22em; font-size:.75rem; font-weight:900; }
.artist-week-copy h2 { margin:8px 0 20px; font-family:var(--font-display); font-size:clamp(3.5rem,8vw,8rem); line-height:.8; letter-spacing:-.07em; text-transform:uppercase; }
.artist-week-copy .section-copy { color:#d6cfdf; }
.artist-week-meta { display:flex; flex-wrap:wrap; gap:10px; margin:25px 0; }
.artist-week-meta span { padding:8px 12px; border:1px solid rgba(255,255,255,.15); border-radius:999px; color:#ddd5e6; font-size:.8rem; }
@keyframes artistBar { to { height:18px; opacity:.55; } }
@keyframes stampFloat { 50% { transform:rotate(-3deg) translateY(-8px); } }
@keyframes spotlightGlow { 50% { transform:scale(1.18) translate(-8%,8%); opacity:.34; } }

/* Founders */
.founders-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:20px; }
.founder-card { position:relative; min-height:390px; display:grid; grid-template-columns:minmax(150px,.78fr) 1.22fr; align-items:stretch; overflow:hidden; border:1px solid var(--border); border-radius:var(--radius-lg); background:var(--surface); }
.founder-card::after { content:""; position:absolute; width:190px; height:190px; right:-60px; top:-70px; border-radius:50%; background:var(--purple); filter:blur(90px); opacity:.18; }
.founder-primary { background:linear-gradient(145deg,rgba(215,173,75,.15),rgba(139,61,255,.09)),var(--surface); }
.founder-number { align-self:flex-start; font-family:var(--font-display); font-size:clamp(4rem,9vw,8rem); line-height:.75; color:rgba(240,213,138,.18); }
.founder-image { width:100%; height:100%; min-height:390px; object-fit:cover; object-position:center; }
.founder-content { position:relative; z-index:1; align-self:end; padding:clamp(28px,4vw,48px); }
.founder-card h3 { margin:8px 0; font-family:var(--font-display); font-size:clamp(2rem,4vw,3.8rem); line-height:.9; letter-spacing:-.05em; text-transform:uppercase; }
.founder-card p { max-width:420px; margin:0; color:var(--muted); }
:root[data-theme="light"] .artist-week-card { border-color:rgba(102,48,189,.14); }
:root[data-theme="light"] .founder-card { background:#fff; }
:root[data-theme="light"] .founder-primary { background:linear-gradient(145deg,rgba(155,104,11,.1),rgba(102,48,189,.06)),#fff; }

@media (max-width: 900px) {
  .artist-week-card { grid-template-columns:1fr; }
  .artist-week-visual { min-height:520px; }
  .founders-grid { grid-template-columns:1fr; }
}
@media (max-width: 560px) {
  .artist-week-card { border-radius:28px; }
  .artist-week-visual { min-height:420px; }
  .artist-week-copy { padding:30px 24px 38px; }
  .artist-week-copy h2 { font-size:clamp(3rem,18vw,5.4rem); }
  .founder-card { min-height:0; display:grid; grid-template-columns:1fr; }
  .founder-image { height:340px; min-height:0; }
  .founder-number { display:block; margin-bottom:40px; }
}

/* Production empty states */
.artist-placeholder img { filter:saturate(.72); }
.artist-placeholder .artist-card-content { max-width:290px; }
.catalogue-placeholder { min-height:120px; display:flex; align-items:center; gap:18px; padding:18px; }
.catalogue-placeholder img { width:82px; height:82px; border-radius:14px; object-fit:cover; }
.catalogue-placeholder strong,
.catalogue-placeholder span { display:block; }
.catalogue-placeholder span { margin-top:5px; color:var(--muted); }
.release-placeholder img { filter:saturate(.65); }
.profile-placeholder-panel { display:grid; grid-template-columns:minmax(260px,.75fr) 1.25fr; align-items:center; gap:clamp(30px,6vw,80px); padding:clamp(24px,5vw,55px); }
.profile-placeholder-panel > img { width:100%; max-height:560px; object-fit:cover; border-radius:var(--radius-lg); }
:root[data-theme="light"] .artist-placeholder { background:#17151b; }

@media (max-width: 760px) {
  .profile-placeholder-panel { grid-template-columns:1fr; }
  .profile-placeholder-panel > img { max-height:440px; }
}
