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

:root {
  --bg:             oklch(7% 0.025 160);
  --bg-surface:     oklch(11% 0.02 160);
  --bg-card:        oklch(14% 0.02 160);
  --purple:         oklch(48% 0.18 310);
  --purple-soft:    oklch(58% 0.14 310);
  --amber:          oklch(68% 0.18 65);
  --green:          oklch(55% 0.14 160);
  --text:           oklch(94% 0.008 100);
  --text-muted:     oklch(80% 0.012 160);
  --text-dim:       oklch(62% 0.012 160);
  --border:         oklch(22% 0.02 160);
  --border-subtle:  oklch(16% 0.015 160);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-mono:    'JetBrains Mono', 'Courier New', monospace;
  --font-body:    'Manrope', system-ui, sans-serif;

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

section {
  scroll-margin-top: 5rem;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  padding-bottom: 5rem;
}

/* ── NAV ─────────────────────────────────────────────── */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2rem;
  background: oklch(7% 0.025 160 / 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-subtle);
}

.nav-brand {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  font-style: italic;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.01em;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-link {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s var(--ease);
  padding: 0.25rem 0;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.nav-link:hover {
  color: var(--text);
}

.nav-link--external {
  color: var(--text);
}

.nav-link--external span {
  font-size: 0.85em;
  margin-left: 0.15em;
  opacity: 0.7;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  display: inline-block;
}

.nav-link--external:hover span {
  opacity: 1;
  transform: translate(2px, -2px);
}

/* ── HERO ─────────────────────────────────────────────── */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg);
  text-align: center;
  padding: 6rem 2rem 4rem;
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 2s ease-in-out;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 70% 55% at 50% 55%, oklch(5% 0.02 160 / 0.3) 0%, transparent 70%),
    linear-gradient(
      to bottom,
      oklch(7% 0.025 160 / 0.35) 0%,
      oklch(7% 0.025 160 / 0.2) 45%,
      oklch(7% 0.025 160 / 0.65) 100%
    );
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(90px);
  z-index: 2;
}

.hero-glow--purple {
  width: 65vw;
  height: 65vw;
  bottom: -15%;
  left: 50%;
  transform: translateX(-50%);
  background: oklch(48% 0.18 310 / 0.18);
  animation: glowPulse 12s ease-in-out infinite;
}

.hero-glow--amber {
  width: 42vw;
  height: 42vw;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: oklch(68% 0.18 65 / 0.1);
  animation: glowPulse 12s ease-in-out infinite reverse;
  animation-delay: -6s;
}

@keyframes glowPulse {
  0%, 100% {
    opacity: 0.65;
    transform: translateX(-50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) scale(1.14);
  }
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 920px;
  text-shadow:
    0 2px 30px oklch(5% 0.02 160 / 0.9),
    0 1px 8px  oklch(5% 0.02 160 / 0.7);
}

.hero-dots {
  position: absolute;
  bottom: 5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 0;
  align-items: center;
}

.hero-dot {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

.hero-dot::after {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: oklch(70% 0.01 160 / 0.4);
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}

.hero-dot.is-active::after {
  background: var(--text);
  transform: scale(1.5);
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: oklch(78% 0.015 160);
  margin-bottom: 2rem;
}

.hero-rule {
  display: block;
  width: 36px;
  height: 1px;
  background: oklch(60% 0.015 160 / 0.6);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 8rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 2rem;
}

.hero-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--purple-soft);
}

.hero-italic {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  font-weight: 400;
  font-style: italic;
  color: var(--text);
  line-height: 1.4;
  margin: 0 auto 1.25rem;
  max-width: 640px;
}

.hero-italic em {
  font-style: italic;
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.01em;
  color: oklch(85% 0.01 160);
  line-height: 1.55;
  max-width: 580px;
  margin: 0 auto 3.5rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 2.5rem;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: oklch(60% 0.015 160 / 0.5);
  flex-shrink: 0;
}

.stat-value {
  font-family: var(--font-mono);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--text);
  line-height: 1;
  margin-bottom: 0.55rem;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: oklch(80% 0.012 160);
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: var(--text-dim);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  transition: color 0.3s var(--ease);
  animation: nudgeDown 3s ease-in-out infinite;
}

.hero-scroll:hover {
  color: var(--text-muted);
}

@keyframes nudgeDown {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  55%       { transform: translateX(-50%) translateY(7px); }
}

/* ── ABOUT ────────────────────────────────────────────── */

.about {
  padding: 10rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 0.63rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-dim);
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.about-lead {
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.65;
  color: var(--text);
  margin: 0 0 2.5rem;
  padding: 0.5rem 0 0 1.75rem;
  border-left: 1px solid oklch(35% 0.06 310);
}

.about-lead em {
  font-style: italic;
  color: var(--purple-soft);
  font-weight: 400;
}

.about-lead-attr {
  display: block;
  margin-top: 1.25rem;
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-dim);
}

.about-body {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  font-weight: 400;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.about-body em {
  color: var(--text);
  font-style: italic;
}

.about-body:last-child {
  margin-bottom: 0;
}

.about-credit {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  color: var(--text-dim);
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
}

.about-credit em {
  color: var(--text-muted);
}

.about-details {
  border-top: 1px solid var(--border-subtle);
}

.detail-block {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border-subtle);
}

.detail-label {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-dim);
}

.detail-value {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── VIGNETTES ────────────────────────────────────────── */

.vignettes {
  padding-bottom: 10rem;
}

.vignettes-header {
  padding: 0 2rem;
  max-width: 1200px;
  margin: 0 auto 2rem;
}

.vignettes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 320px;
  grid-auto-flow: dense;
  gap: 3px;
}

.vignette {
  overflow: hidden;
  position: relative;
  background: var(--bg-surface);
}

.vignette--large {
  grid-column: span 2;
}

.vignette--tall {
  grid-row: span 2;
}

.vignette img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease), filter 0.5s var(--ease);
  filter: brightness(0.92) saturate(0.95);
}

.vignette:hover img {
  transform: scale(1.03);
  filter: brightness(1) saturate(1);
}

.vignette-label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  color: oklch(90% 0.01 160);
  background: oklch(8% 0.02 160 / 0.75);
  padding: 0.3rem 0.65rem;
  backdrop-filter: blur(4px);
}

/* ── INSTRUMENTS ──────────────────────────────────────── */

.instruments {
  padding: 0 2rem 10rem;
  max-width: 1200px;
  margin: 0 auto;
}

.instruments-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.instruments-specs {
  margin-top: 2.5rem;
  border-top: 1px solid var(--border-subtle);
}

.spec-row {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-subtle);
}

.spec-label {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-dim);
}

.spec-value {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.instruments-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
}

.instruments-photo--main {
  grid-column: span 2;
}

.instruments-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 4/3;
  transition: filter 0.5s var(--ease);
  filter: brightness(0.9) saturate(0.9);
}

.instruments-photo--main img {
  aspect-ratio: 16/9;
}

.instruments-photo:hover img {
  filter: brightness(1) saturate(1);
}

/* ── LISTEN ───────────────────────────────────────────── */

.listen {
  padding: 0 2rem 10rem;
  max-width: 1200px;
  margin: 0 auto;
}

.listen-inner {
  border-top: 1px solid var(--border-subtle);
  padding-top: 2.5rem;
}

.listen-note {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 560px;
}

.listen-desc {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 720px;
  margin-bottom: 2.5rem;
}

.listen-desc em {
  color: var(--text);
}

.listen-desc--small {
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  color: var(--text-dim);
  margin-top: -1rem;
  margin-bottom: 2.5rem;
  padding-left: 1.25rem;
  border-left: 1px solid oklch(35% 0.06 310);
}

.listen-desc--small em {
  color: var(--purple-soft);
  font-weight: 400;
}

.player {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  max-width: 720px;
}

.player-nowplaying {
  padding: 2rem 2.5rem 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

.player-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.player-sub {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.player-key {
  color: var(--purple-soft);
}

.player-sep {
  color: var(--border);
}

.player-controls {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem 2.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

.player-playpause {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: oklch(15% 0.025 160);
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease);
  -webkit-tap-highlight-color: transparent;
}

.player-playpause:hover {
  background: var(--purple);
  border-color: var(--purple);
  color: var(--text);
}

.player-playpause.is-playing {
  background: oklch(20% 0.06 310);
  border-color: var(--purple);
}

.player-scrubber {
  flex: 1;
  padding: 1rem 0;
  cursor: pointer;
}

.player-progress {
  position: relative;
  height: 2px;
  background: var(--border);
  border-radius: 2px;
}

.player-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: var(--purple-soft);
  border-radius: 2px;
  width: 0%;
  transition: width 0.1s linear;
  pointer-events: none;
}

.player-thumb {
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--text);
  opacity: 0;
  transition: opacity 0.2s var(--ease), left 0.1s linear;
  pointer-events: none;
}

.player-scrubber:hover .player-thumb {
  opacity: 1;
}

.player-time {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-dim);
  letter-spacing: 0.05em;
  min-width: 4.5ch;
  text-align: right;
  flex-shrink: 0;
}

.tracklist {
  display: flex;
  flex-direction: column;
}

.track {
  display: grid;
  grid-template-columns: 2.5rem 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 1rem 2.5rem;
  border-bottom: 1px solid var(--border-subtle);
  cursor: pointer;
  transition: background 0.2s var(--ease);
  -webkit-tap-highlight-color: transparent;
}

.track:last-child {
  border-bottom: none;
}

.track:hover {
  background: oklch(16% 0.025 160);
}

.track.is-active {
  background: oklch(14% 0.03 310);
}

.track-num {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  color: var(--text-dim);
}

.track.is-active .track-num {
  color: var(--purple-soft);
}

.track-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 400;
  color: var(--text-muted);
  transition: color 0.2s var(--ease);
}

.track.is-active .track-title,
.track:hover .track-title {
  color: var(--text);
}

.track-meta {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  text-align: right;
}

.track:focus-visible {
  outline: 2px solid var(--purple-soft);
  outline-offset: -2px;
}

/* ── GALLERY ──────────────────────────────────────────── */

.gallery-section {
  padding-bottom: 10rem;
}

.gallery-header {
  display: flex;
  align-items: center;
  padding: 0 2rem;
  max-width: 1200px;
  margin: 0 auto 2rem;
}

.gallery-count {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--text-dim);
  margin-left: auto;
}

.gallery {
  column-count: 3;
  column-gap: 3px;
  padding: 0 3px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 3px;
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-surface);
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.7s var(--ease), filter 0.5s var(--ease);
  filter: brightness(0.88) saturate(0.88);
}

.gallery-item:hover img {
  transform: scale(1.04);
  filter: brightness(1) saturate(1);
}

.gallery-item:focus-visible {
  outline: 2px solid var(--purple-soft);
  outline-offset: -2px;
  z-index: 1;
}

/* ── LIGHTBOX ─────────────────────────────────────────── */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease);
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: all;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: oklch(4% 0.02 160 / 0.96);
  cursor: pointer;
}

.lightbox-img-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img {
  display: block;
  max-width: 88vw;
  max-height: 88svh;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: opacity 0.2s var(--ease);
}

.lightbox-img.is-loading {
  opacity: 0;
}

.lightbox-btn {
  position: absolute;
  z-index: 2;
  background: oklch(10% 0.02 160 / 0.7);
  border: 1px solid var(--border);
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  font-family: var(--font-body);
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease), background 0.2s var(--ease);
  -webkit-tap-highlight-color: transparent;
}

.lightbox-btn:hover {
  color: var(--text);
  border-color: var(--text-dim);
  background: oklch(18% 0.02 160 / 0.9);
}

.lightbox-close {
  top: 1.5rem;
  right: 1.5rem;
  font-size: 1.75rem;
  line-height: 1;
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.lightbox-prev,
.lightbox-next {
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.2rem;
  line-height: 1;
  width: 52px;
  height: 52px;
  border-radius: 50%;
}

.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

.lightbox-counter {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  color: var(--text-dim);
  white-space: nowrap;
}

/* ── PLAYER BAR ───────────────────────────────────────── */

.player-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 150;
  background: oklch(9% 0.03 160 / 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-subtle);
}

.pbar-progress-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--border-subtle);
  cursor: pointer;
}

.pbar-progress-fill {
  height: 100%;
  background: var(--purple-soft);
  width: 0%;
  transition: width 0.1s linear;
  pointer-events: none;
}

.pbar-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0.8rem 2rem;
  gap: 2rem;
}

.pbar-info {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.pbar-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
  animation: livePulse 2.5s ease-in-out infinite;
}

@keyframes livePulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

.pbar-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.pbar-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pbar-meta {
  font-family: var(--font-mono);
  font-size: 0.54rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pbar-controls {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-shrink: 0;
}

.pbar-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  font-size: 1.6rem;
  line-height: 1;
  transition: color 0.2s var(--ease);
  -webkit-tap-highlight-color: transparent;
  padding: 0;
}

.pbar-btn:hover { color: var(--text); }

.pbar-play {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: oklch(15% 0.025 160);
  font-size: 1rem;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease);
}

.pbar-play:hover {
  background: var(--purple);
  border-color: var(--purple);
  color: var(--text);
}

.pbar-play.is-playing {
  background: oklch(20% 0.06 310);
  border-color: var(--purple);
}

.pbar-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: flex-end;
}

.pbar-scrubber {
  flex: 1;
  max-width: 220px;
  padding: 1rem 0;
  cursor: pointer;
}

.pbar-rail {
  position: relative;
  height: 2px;
  background: var(--border);
  border-radius: 2px;
}

.pbar-rail-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: var(--purple-soft);
  border-radius: 2px;
  width: 0%;
  transition: width 0.1s linear;
  pointer-events: none;
}

.pbar-rail-thumb {
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--text);
  opacity: 0;
  transition: opacity 0.2s var(--ease), left 0.1s linear;
  pointer-events: none;
}

.pbar-scrubber:hover .pbar-rail-thumb { opacity: 1; }

.pbar-time {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: var(--text-dim);
  letter-spacing: 0.05em;
  min-width: 4ch;
  text-align: right;
  flex-shrink: 0;
}

/* ── FOOTER ───────────────────────────────────────────── */

.footer {
  text-align: center;
  padding: 3rem 2rem;
  border-top: 1px solid var(--border-subtle);
}

.footer-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 300;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.footer-credit {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-style: italic;
  color: var(--text-dim);
  margin-bottom: 0.5rem;
}

.footer-sub {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-dim);
  margin-bottom: 0.75rem;
}

.footer-thanks {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-style: italic;
  color: var(--text-dim);
}

.footer-portfolio {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.6rem 1.25rem;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  text-decoration: none;
  border: 1px solid var(--border);
  border-radius: 999px;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease), background 0.25s var(--ease);
}

.footer-portfolio:hover {
  color: var(--text);
  border-color: var(--purple-soft);
  background: oklch(15% 0.04 310 / 0.4);
}

.footer-copyright {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-rights {
  margin-top: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.footer-link {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  transition: color 0.2s var(--ease);
}

.footer-link:hover {
  color: var(--text);
}

.author-link {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  text-decoration-color: oklch(50% 0.05 310 / 0.6);
  transition: color 0.2s var(--ease), text-decoration-color 0.2s var(--ease);
}

.author-link:hover {
  color: var(--purple-soft);
  text-decoration-color: var(--purple-soft);
}

/* ── RESPONSIVE ───────────────────────────────────────── */

@media (max-width: 900px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .instruments-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .vignettes-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 260px;
  }

  .vignette--large {
    grid-column: span 2;
  }

  .vignette--tall {
    grid-row: span 2;
  }

  .gallery {
    column-count: 2;
  }

  .stat { padding: 0 1.5rem; }
}

@media (max-width: 600px) {
  .nav {
    padding: 1rem 1.25rem;
  }

  .nav-links {
    gap: 1.25rem;
  }

  .hero {
    padding: 5rem 1.5rem 3.5rem;
  }

  .hero-tagline br {
    display: none;
  }

  .stat { padding: 0 1rem; }

  .about {
    padding: 5rem 1.5rem;
  }

  .gallery {
    column-count: 1;
  }

  .gallery-header {
    padding: 0 1.5rem;
  }

  .vignettes-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 320px;
  }

  .vignette--large {
    grid-column: span 1;
  }

  .vignette--tall {
    grid-row: span 1;
  }

  .instruments-photos {
    grid-template-columns: 1fr;
  }

  .instruments-photo--main {
    grid-column: span 1;
  }

  .vignettes-header {
    padding: 0 1.5rem;
  }

  .instruments {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .player-nowplaying,
  .player-controls {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .track {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .pbar-inner {
    grid-template-columns: 1fr auto;
    padding: 0.75rem 1.25rem;
    gap: 0.75rem;
  }

  .pbar-right { display: none; }

  .pbar-progress-line { cursor: default; }

  .lightbox-prev { left: 0.75rem; }
  .lightbox-next { right: 0.75rem; }

  .lightbox-close {
    top: 1rem;
    right: 1rem;
  }

  .lightbox-img {
    max-width: 95vw;
    max-height: 80svh;
  }
}

@media (max-width: 400px) {
  .stat { padding: 0 0.75rem; }
  .nav-links { gap: 1rem; }
  .nav-brand { font-size: 0.9rem; }
}
