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

:root {
  --fg: #f2f0ff;
  --fg-dim: rgba(242, 240, 255, 0.55);
  --glass: rgba(20, 16, 34, 0.35);
  --glass-border: rgba(255, 255, 255, 0.14);
  --accent: #d6ff4f;
}

html, body {
  width: 100%;
  height: 100%;
  background: #000;
  overflow: hidden;
  font-family: 'Helvetica Neue', Helvetica, Arial, system-ui, sans-serif;
  color: var(--fg);
}

#glcanvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

/* subtle scanline / grain overlay for texture */
.scan {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  mix-blend-mode: overlay;
  opacity: 0.5;
  background-image: repeating-linear-gradient(
    to bottom,
    rgba(255,255,255,0.035) 0px,
    rgba(255,255,255,0.035) 1px,
    transparent 1px,
    transparent 3px
  );
}

.vignette-edge {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  box-shadow: inset 0 0 18vw 2vw rgba(0,0,0,0.75);
}

.hud {
  position: fixed;
  inset: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  pointer-events: none;
  padding: clamp(16px, 3vw, 40px);
}

.hud a, .hud button, .hud input {
  pointer-events: auto;
}

/* ---------- top bar ---------- */
.hud-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translate(calc(var(--parx, 0) * -5px), calc(var(--pary, 0) * -4px));
}

.brand-mark {
  color: var(--accent);
  font-size: 14px;
  filter: drop-shadow(0 0 6px var(--accent));
  animation: pulseMark 2.4s ease-in-out infinite;
}

@keyframes pulseMark {
  0%, 100% { opacity: 0.5; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.15); }
}

.brand h1 {
  font-size: clamp(13px, 1.6vw, 16px);
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.icon-btn {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--fg);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.icon-btn svg { width: 18px; height: 18px; }
.icon-btn:hover { background: rgba(255,255,255,0.12); transform: scale(1.06); }

/* ---------- center ---------- */
.hud-center {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.brand-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}

/* JS drives --parx / --pary from smoothed mouse position (parallax) */
.release {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 9px;
  transform: translate(calc(var(--parx, 0) * -12px), calc(var(--pary, 0) * -9px));
}

.tagline {
  font-size: clamp(10px, 1.1vw, 12px);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--fg-dim);
}

.release-title {
  font-family: Georgia, 'Palatino Linotype', 'Times New Roman', serif;
  font-weight: 400;
  font-size: clamp(22px, 3.1vw, 42px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(248, 241, 228, 0.92);
  text-shadow:
    0 0 22px rgba(255, 194, 116, 0.35),
    0 0 64px rgba(255, 168, 82, 0.16);
}

.release-title em {
  font-style: italic;           /* Georgia's italic ampersand */
  letter-spacing: 0;
  color: rgba(255, 210, 150, 0.9);
}

/* faint but recognizable play affordance, pinned to the plate's true center
   (the plate is viewport-centered and leans with the parallax — so does this) */
.center-play {
  pointer-events: auto;
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 11;
  --cpx: calc(-50% + var(--parx, 0) * 0.8vw);
  --cpy: calc(-50% + var(--pary, 0) * 0.65vh);
  transform: translate(var(--cpx), var(--cpy));
  width: 78px;
  height: 78px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: rgba(248, 241, 228, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0.75;
  animation: playBreathe 3.2s ease-in-out infinite;
  transition: opacity 0.7s ease, background 0.25s ease;
}
.center-play svg { width: 30px; height: 30px; margin-left: 4px; }
.center-play:hover {
  opacity: 1;
  transform: translate(var(--cpx), var(--cpy)) scale(1.06);
  background: rgba(255, 255, 255, 0.09);
  animation-play-state: paused;
}
.center-play.hidden {
  opacity: 0;
  pointer-events: none;
  animation-play-state: paused;
}

@keyframes playBreathe {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 200, 130, 0.0); }
  50% { box-shadow: 0 0 34px 4px rgba(255, 200, 130, 0.16); }
}

/* ---------- bottom ---------- */
.hud-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hud-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ---------- discreet private-booking entrance ---------- */
.booking-btn {
  position: fixed;
  right: clamp(14px, 2.4vw, 30px);
  bottom: clamp(14px, 2.4vw, 30px);
  z-index: 12;
  width: 34px;
  height: 34px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: var(--fg);
  opacity: 0.18;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.35s ease, transform 0.2s ease;
}
.booking-btn svg { width: 17px; height: 17px; }
.booking-btn:hover { opacity: 0.8; transform: scale(1.08); }

/* ---------- overlay panels ---------- */
.panel {
  position: fixed;
  z-index: 20;
  width: min(340px, 86vw);
  padding: 22px 24px 18px;
  border-radius: 16px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  box-shadow: 0 12px 44px rgba(0, 0, 0, 0.5);
}
.panel-top-right { top: clamp(70px, 9vh, 100px); right: clamp(16px, 3vw, 40px); }
.panel-bottom-right { bottom: clamp(58px, 8vh, 84px); right: clamp(16px, 3vw, 40px); }

.panel-title {
  font-family: Georgia, 'Palatino Linotype', 'Times New Roman', serif;
  font-weight: 400;
  font-size: 19px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(248, 241, 228, 0.92);
  margin-bottom: 10px;
}
.panel-body {
  font-size: 12.5px;
  line-height: 1.65;
  color: var(--fg-dim);
  margin-bottom: 14px;
}
.panel-body em { color: rgba(255, 210, 150, 0.85); font-style: italic; }
.panel-links {
  display: flex;
  gap: 16px;
  margin-bottom: 14px;
}
.panel-links a {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  padding-bottom: 2px;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.panel-links a:hover { color: var(--accent); border-color: var(--accent); }
.panel-foot {
  font-size: 10.5px;
  letter-spacing: 0.08em;
  color: var(--fg-dim);
}

/* admin edit mode */
body.cb-editing [data-cb] {
  outline: 1px dashed var(--accent);
  outline-offset: 4px;
  cursor: text;
  border-radius: 2px;
}
body.cb-editing [data-cb]:focus {
  outline: 2px solid var(--accent);
}
.admin-bar {
  position: fixed;
  z-index: 60;
  bottom: clamp(16px, 3vh, 28px);
  left: clamp(16px, 3vw, 40px);
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg);
}
.admin-bar button {
  background: none;
  border: none;
  color: var(--accent);
  cursor: pointer;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  padding: 0;
}

#bookingForm {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}
#bookingForm input {
  flex: 1;
  min-width: 0;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  padding: 8px 14px;
  color: var(--fg);
  font-size: 12px;
  letter-spacing: 0.08em;
  outline: none;
}
#bookingForm input:focus { border-color: rgba(255, 255, 255, 0.35); }
#bookingForm button {
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.08);
  color: var(--fg);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease;
}
#bookingForm button:hover { background: rgba(255, 255, 255, 0.16); }

/* ---------- full-screen overlays: press room & portal ---------- */
.overlay {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(4, 3, 2, 0.82);
  backdrop-filter: blur(22px) saturate(1.2);
  -webkit-backdrop-filter: blur(22px) saturate(1.2);
}
.overlay-scroll {
  height: 100%;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: clamp(48px, 8vh, 90px) clamp(20px, 6vw, 64px) 80px;
  max-width: 860px;
  margin: 0 auto;
}
.overlay-close {
  position: fixed;
  top: clamp(14px, 3vh, 28px);
  right: clamp(16px, 3vw, 36px);
  z-index: 41;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  background: var(--glass);
  color: var(--fg);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.overlay-close:hover { background: rgba(255,255,255,0.12); transform: scale(1.06); }

.pr-hero { text-align: center; margin-bottom: clamp(40px, 7vh, 70px); }
.pr-kicker {
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin-bottom: 16px;
}
.pr-name {
  font-family: Georgia, 'Palatino Linotype', serif;
  font-weight: 400;
  font-size: clamp(38px, 7vw, 72px);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(248, 241, 228, 0.95);
  text-shadow: 0 0 30px rgba(255, 194, 116, 0.25);
  margin-bottom: 14px;
}
.pr-motto {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: clamp(13px, 1.6vw, 16px);
  color: rgba(255, 210, 150, 0.75);
  margin-bottom: 30px;
}
.pr-ctas { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.cta {
  display: inline-block;
  padding: 11px 24px;
  border-radius: 999px;
  background: var(--accent);
  color: #101018;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.2s ease;
}
.cta:hover { transform: translateY(-1px); }
.cta.ghost {
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--glass-border);
  color: var(--fg);
}
.cta.ghost:hover { background: rgba(255,255,255,0.14); }

.pr-section { margin-bottom: clamp(36px, 6vh, 56px); }
.pr-h {
  font-family: Georgia, serif;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 210, 150, 0.8);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}
.pr-p { font-size: 13.5px; line-height: 1.8; color: rgba(242, 240, 255, 0.75); margin-bottom: 14px; }
.pr-note { font-size: 11px; color: var(--fg-dim); letter-spacing: 0.06em; margin-top: 10px; }

.pr-soundcloud {
  width: 100%;
  height: 300px;
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  display: block;
}

.pr-hero-media {
  margin-top: 34px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.pr-hero-media img { width: 100%; display: block; cursor: zoom-in; }

.pr-gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 12px; }
.pr-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  cursor: zoom-in;
}
.pr-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.pr-photo:hover img { transform: scale(1.04); }
.pr-photo figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 22px 12px 10px;
  background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(242,240,255,0.85);
  pointer-events: none;
}

/* author display rules would otherwise override the hidden attribute */
.lightbox[hidden], .overlay[hidden], .panel[hidden], .toast[hidden] { display: none !important; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(0, 0, 0, 0.93);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}
.lightbox img {
  max-width: 93vw;
  max-height: 93vh;
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(0,0,0,0.7);
}

.pr-shows { list-style: none; }
.pr-shows li {
  display: flex;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 12.5px;
  color: rgba(242,240,255,0.75);
}
.pr-show-date { color: var(--accent); letter-spacing: 0.08em; min-width: 46px; }

.pr-contacts { list-style: none; }
.pr-contacts li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 12.5px;
}
.pr-contacts li span:first-child { color: var(--fg-dim); letter-spacing: 0.1em; text-transform: uppercase; font-size: 11px; }
.pr-contacts a { color: var(--fg); text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.2); }
.pr-contacts a:hover { color: var(--accent); border-color: var(--accent); }

.pr-footer { display: flex; flex-direction: column; align-items: center; gap: 26px; margin-top: 60px; }
.pr-socials { display: flex; flex-wrap: wrap; gap: 18px; justify-content: center; }
.pr-socials a {
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-dim);
  text-decoration: none;
}
.pr-socials a:hover { color: var(--fg); }
.pr-network {
  font-size: 10px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: rgba(214, 255, 79, 0.28);
  text-decoration: none;
  transition: color 0.4s ease, text-shadow 0.4s ease;
}
.pr-network:hover { color: var(--accent); text-shadow: 0 0 14px var(--accent); }

/* portal-specific */
.qs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 12px; }
.qs {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 16px 18px;
  border-radius: 12px;
  border: 1px solid var(--glass-border);
  background: rgba(255,255,255,0.05);
  color: var(--fg);
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
}
.qs:hover { background: rgba(255,255,255,0.11); transform: translateY(-1px); }
.qs span { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fg-dim); }

.folder-tree { list-style: none; }
.folder-tree li {
  padding: 9px 0 9px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 12.5px;
  color: rgba(242,240,255,0.8);
  position: relative;
}
.folder-tree li::before { content: '▸'; position: absolute; left: 0; color: rgba(255,210,150,0.5); }
.folder-tree em { font-style: normal; color: var(--fg-dim); font-size: 11px; margin-left: 8px; }

.bio-block {
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 12px;
  padding: 14px 18px;
  margin-bottom: 12px;
  background: rgba(255,255,255,0.03);
}
.bio-block header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.bio-block header span { font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--fg-dim); }
.bio-block p { font-size: 13px; line-height: 1.7; color: rgba(242,240,255,0.78); }
.copy-btn {
  border: 1px solid var(--glass-border);
  background: rgba(255,255,255,0.06);
  color: var(--fg);
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease;
}
.copy-btn:hover { background: rgba(255,255,255,0.14); }

/* ---------- FRAGMENT tiers ---------- */
.fragment-public { text-align: center; }
.fragment-motto {
  font-family: Georgia, serif;
  font-size: clamp(20px, 3vw, 30px);
  font-style: italic;
  line-height: 1.5;
  color: rgba(214, 255, 79, 0.55);
  margin: 18px 0 16px;
  text-shadow: 0 0 24px rgba(214, 255, 79, 0.12);
}
.fragment-pillars { display: flex; gap: 20px; justify-content: center; margin: 18px 0 22px; }
.fragment-pillars span {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--fg-dim);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  padding: 7px 16px;
}

.fragment-locked {
  width: 100%;
  margin-top: 8px;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  border-style: dashed;
  background: rgba(214, 255, 79, 0.04);
}
.fragment-locked:hover { background: rgba(214, 255, 79, 0.09); }
.fragment-form, .inline-form { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; align-items: center; }
.fragment-form input, .inline-form input, .inline-form select {
  flex: 1;
  min-width: 160px;
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  padding: 8px 14px;
  color: var(--fg);
  font-size: 12px;
  letter-spacing: 0.08em;
  outline: none;
}
.inline-form label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--fg-dim);
  white-space: nowrap;
}
.fragment-form button, .inline-form button {
  border: 1px solid var(--glass-border);
  background: rgba(255,255,255,0.08);
  color: var(--fg);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 999px;
  cursor: pointer;
}
.fragment-form .pr-note { flex-basis: 100%; margin: 0; }

.doc-head { text-align: center; margin-bottom: clamp(36px, 6vh, 60px); }
.doc-head .cta { margin-top: 18px; }
.doc-section { margin-bottom: clamp(30px, 5vh, 46px); }
.doc-msg {
  font-family: 'SF Mono', 'Menlo', monospace;
  font-size: 12px;
  line-height: 1.8;
  letter-spacing: 0.06em;
  color: rgba(214, 255, 79, 0.75);
  background: rgba(214, 255, 79, 0.05);
  border-left: 2px solid rgba(214, 255, 79, 0.4);
  border-radius: 0 10px 10px 0;
  padding: 12px 18px;
  margin: 12px 0;
}
.doc-foot { border-top: 1px solid rgba(255,255,255,0.09); padding-top: 18px; }
.doc-foot a { color: var(--fg); }

@media print {
  /* only the OPEN doc overlay prints — .overlay[hidden] above keeps the rest out */
  body > *:not(.doc-overlay) { display: none !important; }
  .doc-overlay { position: static; background: #fff; }
  .doc-overlay .overlay-scroll { height: auto; overflow: visible; }
  .doc-overlay .overlay-close, .doc-print { display: none !important; }
  .doc-overlay, .doc-overlay * { color: #111 !important; text-shadow: none !important; }
  .doc-msg { background: #f2f2e8 !important; border-left-color: #999 !important; }
}

.toast {
  position: fixed;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 60;
  padding: 10px 22px;
  border-radius: 999px;
  background: rgba(20, 16, 34, 0.85);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  color: var(--fg);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  pointer-events: none;
}

/* ---------- drag & drop overlay ---------- */
.drop-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  pointer-events: none;
}
.drop-overlay.active { display: flex; }
.drop-overlay-inner {
  border: 2px dashed var(--accent);
  color: var(--accent);
  padding: 40px 60px;
  border-radius: 24px;
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
