/* ==========================================================================
   dillonderosa.com — stylesheet
   --------------------------------------------------------------------------
   THEME SYSTEM
   Every color on the site is a CSS variable defined in :root (light theme).
   `html.dark` overrides those variables for dark mode — nothing else changes.
   The sun/moon button in the nav toggles the `dark` class (see js/main.js).

   SCALING SYSTEM
   All layout sizes are in rem. The root font-size steps up on wider screens
   so the whole site renders like "150% zoom" on large monitors. To make the
   site bigger or smaller globally, tune the four font-size breakpoints below.
   ========================================================================== */

:root {
  /* Declares that this page manages its own light/dark rendering — stops
     browsers from force-darkening it, and themes form controls correctly. */
  color-scheme: light;
  --white:        #f3f3f3;
  --accent:       #ce9244;
  --accent-2:     #b8792e;
  --secondary:    #f2c9df;
  --secondary-2:  #e8aacb;
  --bg:           #f3f3f3;
  --surface:      #ffffff;
  --text:         #1a1410;
  --text-mid:     #3d2e1e;
  --text-muted:   #8a7060;
  --border:       rgba(206,146,68,0.18);
  --border-light: rgba(0,0,0,0.06);
  --glass:        rgba(243,243,243,0.82);
  --watermark:    rgba(206,146,68,0.08);
  --shadow-card:  0 12px 36px rgba(26,20,16,0.10);
  --ease-out:     cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out:  cubic-bezier(0.77, 0, 0.175, 1);
}

html.dark {
  color-scheme: dark;
  --bg:           #14100c;
  --surface:      #1e1813;
  --text:         #f3ede6;
  --text-mid:     #d9cdbf;
  --text-muted:   #9c8a76;
  --border:       rgba(206,146,68,0.26);
  --border-light: rgba(255,255,255,0.07);
  --glass:        rgba(26,20,16,0.72);
  --watermark:    rgba(206,146,68,0.07);
  --shadow-card:  0 14px 40px rgba(0,0,0,0.5);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* Fluid upscaling — page renders like "150% browser zoom" on big screens. */
html { font-size: 16px; }
@media (min-width: 1500px) { html { font-size: 18px; } }
@media (min-width: 1750px) { html { font-size: 21px; } }
@media (min-width: 2100px) { html { font-size: 24px; } }

body {
  font-family: 'Barlow', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; }

/* ============ ACCESSIBILITY ============ */
.skip-link {
  position: fixed;
  top: -100px; left: 1rem;
  z-index: 300;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.65rem 1.3rem;
  border-radius: 0 0 12px 12px;
  transition: top 150ms ease;
}
.skip-link:focus { top: 0; }

a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.9rem clamp(1.25rem, 4vw, 3rem);
  background: var(--glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(206,146,68,0.08);
}
.nav-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
}
.nav-logo span { color: var(--accent); }
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(0.9rem, 2.2vw, 2rem);
  list-style: none;
}
.nav-links a {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-mid);
  text-decoration: none;
  transition: color 150ms ease;
}
@media (hover: hover) and (pointer: fine) {
  .nav-links a:hover { color: var(--accent-2); }
}
.nav-right { display: flex; align-items: center; gap: 0.7rem; }

/* sun / moon toggle */
.theme-btn {
  flex: none;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--text-mid);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 160ms var(--ease-out), border-color 150ms ease, color 150ms ease;
}
.theme-btn:active { transform: scale(0.92); }
@media (hover: hover) and (pointer: fine) {
  .theme-btn:hover { border-color: var(--accent); color: var(--accent-2); }
}
.theme-btn svg { width: 17px; height: 17px; fill: currentColor; }
.theme-btn .ico-sun { display: none; }
html.dark .theme-btn .ico-sun { display: block; }
html.dark .theme-btn .ico-moon { display: none; }

/* hamburger (mobile only) */
.burger {
  display: none;
  flex: none;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.burger i {
  width: 15px; height: 2px;
  background: var(--text-mid);
  border-radius: 2px;
  transition: transform 200ms var(--ease-out), opacity 150ms ease;
}
.burger.open i:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger.open i:nth-child(2) { opacity: 0; }
.burger.open i:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  top: 4.2rem;
  left: 0.8rem; right: 0.8rem;
  z-index: 99;
  background: var(--glass);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow-card);
  padding: 0.6rem;
  display: none;
}
.mobile-menu.open { display: block; animation: menuIn 220ms var(--ease-out); }
@keyframes menuIn { from { opacity: 0; transform: translateY(-8px); } }
.mobile-menu a {
  display: block;
  padding: 0.8rem 1.1rem;
  border-radius: 12px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-mid);
  text-decoration: none;
}
.mobile-menu a:active { background: var(--border); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: 'Barlow', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 20px;
  padding: 0.72rem 1.5rem;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  transition: transform 160ms var(--ease-out), background 150ms ease, box-shadow 150ms ease, color 150ms ease, border-color 150ms ease;
}
.btn:active { transform: scale(0.97); }
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 18px rgba(206,146,68,0.35);
}
@media (hover: hover) and (pointer: fine) {
  .btn-primary:hover { background: var(--accent-2); box-shadow: 0 6px 22px rgba(184,121,46,0.4); }
}
.btn-ghost {
  background: transparent;
  color: var(--text-mid);
  border: 1.5px solid var(--border);
}
@media (hover: hover) and (pointer: fine) {
  .btn-ghost:hover { border-color: var(--accent); color: var(--accent-2); }
}
.nav .btn { padding: 0.55rem 1.25rem; font-size: 0.7rem; }
.btn-lg { padding: 0.95rem 1.9rem; font-size: 0.82rem; }

/* ============ NAV DOTS (fixed right) ============ */
.dots {
  position: fixed;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.dots a {
  position: relative;
  width: 8px; height: 8px;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  background: transparent;
  transition: transform 200ms var(--ease-out), background 150ms ease, box-shadow 150ms ease;
}
.dots a.active {
  background: var(--accent);
  transform: scale(1.4);
  box-shadow: 0 0 0 3px rgba(206,146,68,0.2);
}
.dots a .tip {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 0.25rem 0.8rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mid);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 150ms ease;
}
@media (hover: hover) and (pointer: fine) {
  .dots a:hover { background: var(--accent); }
  .dots a:hover .tip { opacity: 1; }
}
@media (max-width: 1020px) { .dots { display: none; } }

/* ============ SHARED SECTION CHROME ============ */
.section {
  position: relative;
  padding: clamp(4.5rem, 9vh, 7rem) clamp(1.25rem, 4vw, 3rem);
  overflow: clip;
}
.section-inner { max-width: 80rem; margin: 0 auto; position: relative; z-index: 1; }
.label {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 1.2rem;
}
.label::before {
  content: '';
  width: 34px; height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(2.2rem, 4.6vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
h2 .accent { color: var(--accent); }
.section-sub {
  font-size: 1.02rem;
  color: var(--text-mid);
  max-width: 38rem;
  margin-bottom: 2.6rem;
}

/* Giant background words. JS parallax moves them via transform as you
   scroll (see js/main.js — "watermark parallax"). */
.watermark {
  position: absolute;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--watermark);
  pointer-events: none;
  user-select: none;
  line-height: 0.85;
  z-index: 0;
  will-change: transform;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: clamp(6.5rem, 11vh, 8.5rem) clamp(1.25rem, 4vw, 3rem) 3.5rem;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%; right: -12%;
  width: 58vw; height: 58vw;
  max-width: 880px; max-height: 880px;
  background: radial-gradient(circle at center, rgba(206,146,68,0.16) 0%, rgba(206,146,68,0) 65%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -28%; left: -10%;
  width: 44vw; height: 44vw;
  max-width: 640px; max-height: 640px;
  background: radial-gradient(circle at center, rgba(242,201,223,0.35) 0%, rgba(242,201,223,0) 65%);
  pointer-events: none;
}
html.dark .hero::before { background: radial-gradient(circle at center, rgba(206,146,68,0.13) 0%, rgba(206,146,68,0) 65%); }
html.dark .hero::after  { background: radial-gradient(circle at center, rgba(232,170,203,0.10) 0%, rgba(232,170,203,0) 65%); }

.hero-watermark {
  right: -1.5rem;
  bottom: 4rem;
  font-size: clamp(7rem, 17vw, 15rem);
}
.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 1.4rem;
}
.eyebrow::before {
  content: '';
  width: 34px; height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(3.1rem, 6.6vw, 5.4rem);
  line-height: 0.96;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
h1 .accent { color: var(--accent); }
h1 .quiet {
  display: block;
  font-weight: 700;
  font-style: italic;
  font-size: 0.52em;
  letter-spacing: 0.01em;
  color: var(--text-muted);
  margin-top: 0.45rem;
}
.sub {
  font-size: clamp(1rem, 1.35vw, 1.15rem);
  font-weight: 400;
  color: var(--text-mid);
  max-width: 34rem;
  margin-bottom: 2.1rem;
}
.sub strong { font-weight: 600; color: var(--text); }
.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.6rem;
}
.micro-proof {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 2.6rem;
}
.micro-proof .stars { color: var(--accent); letter-spacing: 0.12em; font-size: 0.85rem; }
.micro-proof em { color: var(--text-mid); font-style: italic; font-weight: 500; }
/* min-width: 0 lets the grid column shrink below the logo track's
   max-content width — without it the marquee blows the hero out sideways
   on small screens. */
.hero-copy { min-width: 0; }
.heard-on { max-width: 36rem; }
.heard-on-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
}
/* Scrolling network/platform logo marquee. The white logo PNGs are inverted
   in light mode so they read as muted ink; hover (or tap) flips a tile to
   show where the music lives. js/main.js builds the faces + the loop. */
.logo-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}
.logo-track {
  display: flex;
  gap: 0.7rem;
  width: max-content;
  animation: scrollL 64s linear infinite;
}
@media (hover: hover) and (pointer: fine) {
  .logo-marquee:hover .logo-track { animation-play-state: paused; }
}
.logo-tile {
  flex: none;
  position: relative;
  width: 8.5rem;
  height: 3.6rem;
  perspective: 700px;
  cursor: pointer;
}
.logo-tile .tile-inner {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  transition: transform 480ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .logo-tile:hover .tile-inner { transform: rotateY(180deg); }
}
.logo-tile.flipped .tile-inner { transform: rotateY(180deg); }
.logo-tile img {
  position: absolute;
  inset: 0.55rem 0.9rem;
  width: calc(100% - 1.8rem);
  height: calc(100% - 1.1rem);
  object-fit: contain;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  opacity: 0.78;
  filter: invert(0.62) sepia(0.22) saturate(1.6);
  transition: opacity 150ms ease;
}
html.dark .logo-tile img { filter: none; opacity: 0.6; }
@media (hover: hover) and (pointer: fine) {
  .logo-tile:hover img { opacity: 0.9; }
}
.logo-back {
  position: absolute;
  inset: 0;
  transform: rotateY(180deg);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--glass);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.1rem;
  padding: 0.3rem 0.55rem;
  text-align: center;
  overflow: hidden;
}
.logo-back .lb-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 0.88rem;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-2);
  white-space: nowrap;
}
.logo-back .lb-where {
  font-size: 0.62rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--text-mid);
}

/* hero visual stage */
.stage { position: relative; height: clamp(28.75rem, 62vh, 42rem); }
.stage-frame {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background:
    radial-gradient(120% 90% at 75% 18%, rgba(206,146,68,0.30) 0%, rgba(206,146,68,0.10) 42%, rgba(242,201,223,0.20) 100%),
    var(--surface);
  border: 1px solid var(--border);
  box-shadow: 0 24px 60px rgba(206,146,68,0.16);
  overflow: hidden;
}
html.dark .stage-frame {
  background:
    radial-gradient(120% 90% at 75% 18%, rgba(206,146,68,0.28) 0%, rgba(206,146,68,0.06) 48%, rgba(232,170,203,0.07) 100%),
    var(--surface);
  box-shadow: 0 24px 60px rgba(0,0,0,0.55);
}
.stage-frame::after {
  content: 'COMPOSER · CONDUCTOR · ORCHESTRATOR';
  position: absolute;
  top: 1.1rem; left: 0;
  width: 100%;
  text-align: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(206,146,68,0.30);
  white-space: nowrap;
}
.stage-img {
  position: absolute;
  bottom: 0;
  right: -4%;
  height: 92%;
  z-index: 2;
  filter: drop-shadow(-18px 24px 32px rgba(26,20,16,0.22));
  -webkit-mask-image: linear-gradient(to bottom, #000 86%, transparent 100%);
          mask-image: linear-gradient(to bottom, #000 86%, transparent 100%);
}
html.dark .stage-img { filter: drop-shadow(-18px 24px 32px rgba(0,0,0,0.6)); }

.glass-chip {
  background: var(--glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(206,146,68,0.12);
  border-radius: 14px;
  padding: 0.7rem 1rem;
}
.credit-chip {
  position: absolute;
  top: 3.4rem;
  left: 1.4rem;
  z-index: 3;
  max-width: 15rem;
}
.chip-label {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 0.25rem;
}
.chip-body {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.02rem;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text);
}

/* hero audio player */
.player {
  position: absolute;
  left: -1.6rem;
  bottom: 1.4rem;
  z-index: 4;
  width: min(21rem, 88%);
  background: var(--glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow-card);
  padding: 1.05rem 1.15rem 1.15rem;
}
.player-top { display: flex; align-items: center; gap: 0.85rem; margin-bottom: 0.8rem; }
.play-btn {
  flex: none;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: none;
  background: var(--accent);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(206,146,68,0.4);
  transition: transform 160ms var(--ease-out), background 150ms ease;
}
.play-btn:active { transform: scale(0.94); }
@media (hover: hover) and (pointer: fine) { .play-btn:hover { background: var(--accent-2); } }
.ico-play {
  width: 0; height: 0;
  border-left: 13px solid #fff;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  margin-left: 3px;
}
.ico-pause { display: none; gap: 4px; }
.ico-pause i { width: 4.5px; height: 16px; background: #fff; border-radius: 2px; display: block; }
.playing .ico-play { display: none; }
.playing .ico-pause { display: flex; }
.track-meta { min-width: 0; }
.track-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.06rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--text);
}
.track-from {
  font-size: 0.74rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.eq { display: flex; align-items: flex-end; gap: 3px; height: 30px; margin-bottom: 0.85rem; }
.eq i {
  flex: 1;
  background: linear-gradient(to top, var(--accent), var(--secondary-2));
  border-radius: 2px;
  height: 18%;
  transition: height 300ms var(--ease-out);
}
.playing .eq i { animation: bounce 0.9s ease-in-out infinite alternate; }
.eq i:nth-child(4n+1) { animation-delay: 0ms; }
.eq i:nth-child(4n+2) { animation-delay: 150ms; }
.eq i:nth-child(4n+3) { animation-delay: 300ms; }
.eq i:nth-child(4n+4) { animation-delay: 450ms; }
@keyframes bounce { from { height: 12%; } to { height: 95%; } }

/* waveform seek: two stacked bar layers — the amber layer is revealed by a
   clip-path that tracks playback. Click/drag (or arrow keys) to scrub.
   Real peaks are decoded per-MP3 in js/main.js once a cue starts playing. */
.wave-wrap { margin-bottom: 0.8rem; }
.wave {
  position: relative;
  height: 34px;
  cursor: pointer;
  touch-action: none;
}
.wave:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; border-radius: 4px; }
.wave-layer {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  gap: 3px;
  pointer-events: none;
}
.wave-layer i { flex: 1; min-height: 8%; border-radius: 2px; background: var(--border); }
.wave-fill { clip-path: inset(0 100% 0 0); transition: clip-path 260ms linear; }
.wave-fill i { background: linear-gradient(to top, var(--accent), var(--secondary-2)); }
.wave.scrubbing .wave-fill { transition: none; }
@media (hover: hover) and (pointer: fine) {
  .wave:hover .wave-base i { background: rgba(206, 146, 68, 0.3); }
}
.wave-times {
  display: flex;
  justify-content: space-between;
  margin-top: 0.35rem;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  font-variant-numeric: tabular-nums;
  color: var(--text-muted);
}
.wave-times .wt-cur { color: var(--accent-2); }

.genre-chips { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.genre-chips button {
  font-family: 'Barlow', sans-serif;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.36rem 0.85rem;
  border-radius: 20px;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--text-mid);
  cursor: pointer;
  transition: transform 160ms var(--ease-out), background 150ms ease, color 150ms ease, border-color 150ms ease;
}
.genre-chips button:active { transform: scale(0.96); }
.genre-chips button.active { background: var(--accent); border-color: var(--accent); color: #fff; }
@media (hover: hover) and (pointer: fine) {
  .genre-chips button:not(.active):hover { border-color: var(--accent); color: var(--accent-2); }
}
.chip-more {
  font-family: 'Barlow', sans-serif;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.36rem 1.1rem;
  border-radius: 20px;
  border: 1.5px solid var(--accent);
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms var(--ease-out), background 150ms ease, border-color 150ms ease;
}
.chip-more:active { transform: scale(0.96); }
@media (hover: hover) and (pointer: fine) {
  .chip-more:hover { background: var(--accent-2); border-color: var(--accent-2); }
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 1.3rem;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
}
.scroll-cue::after {
  content: '';
  width: 2px; height: 26px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  border-radius: 2px;
  animation: drip 1.6s var(--ease-in-out) infinite;
}
@keyframes drip {
  0%   { transform: scaleY(0.3); transform-origin: top; opacity: 1; }
  60%  { transform: scaleY(1);   transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1);   transform-origin: top; opacity: 0; }
}

/* ============ ABOUT ============ */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.about-photo { position: relative; }
.about-photo img {
  width: 100%;
  max-width: 26.5rem;
  border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}
.about-photo .glass-chip {
  position: absolute;
  bottom: 1.2rem;
  left: 1.2rem;
  right: 1.2rem;
  max-width: 320px;
}
.about-copy p { color: var(--text-mid); margin-bottom: 1.1rem; max-width: 36rem; }
.about-copy p strong { color: var(--text); font-weight: 600; }
.about-more { margin-top: 1.8rem; }
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 2rem;
  max-width: 36rem;
}
.tile {
  border-radius: 14px;
  padding: 1.1rem 1.15rem;
}
.tile .big {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.9rem;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}
.tile .small {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
}
.tile-amber { background: var(--accent); color: #fff; }
.tile-pink  { background: var(--secondary-2); color: #1a1410; }
.tile-dark  { background: #1a1410; color: #f3f3f3; }
html.dark .tile-dark { background: #2a221a; }

/* ============ FEATURED WORK ============ */
.featured2 {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.5rem;
  align-items: stretch;
}
.work-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  background: #1a1410;
  box-shadow: var(--shadow-card);
  text-decoration: none;
  color: #fff;
}
.work-hero .poster-full {
  position: relative;
  aspect-ratio: 600 / 889;
  overflow: hidden;
}
.work-hero .poster-full img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .work-hero:hover .poster-full img { transform: scale(1.03); }
}
.badge {
  background: var(--accent);
  color: #fff;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 20px;
  padding: 0.3rem 0.8rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}
.work-hero .badge {
  align-self: flex-start;
  margin-bottom: auto;
  font-size: 0.66rem;
  padding: 0.4rem 1rem;
}
.work-hero .hero-meta {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.2rem;
  padding: clamp(1.4rem, 2.2vw, 2rem);
  background:
    radial-gradient(140% 80% at 100% 0%, rgba(206,146,68,0.18) 0%, rgba(206,146,68,0) 55%),
    linear-gradient(200deg, #2a2118 0%, #14100c 100%);
  position: relative;
}
.work-hero .hero-meta::after {
  content: '2025';
  position: absolute;
  top: 0.4rem;
  right: 0.9rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 4.2rem;
  line-height: 1;
  color: rgba(206,146,68,0.14);
  pointer-events: none;
}
.work-hero .h-cta {
  margin-top: 1.1rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
.work-hero .h-role {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.4rem;
}
.work-hero .h-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 0.6rem;
}
.work-hero .h-blurb {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.78);
  max-width: 30rem;
}
.work-side { display: flex; flex-direction: column; gap: 1rem; }
.side-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.work-mini {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 1.1rem;
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 0.9rem 1.1rem;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-card);
  transition: transform 150ms var(--ease-out), box-shadow 150ms ease, border-color 150ms ease;
}
@media (hover: hover) and (pointer: fine) {
  .work-mini:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(206,146,68,0.15);
    border-color: var(--border);
  }
}
.work-mini img {
  width: 4.75rem;
  border-radius: 8px;
  border: 1px solid var(--border-light);
}
.work-mini .m-role {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 0.15rem;
}
.work-mini .m-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 0.15rem;
}
.work-mini .m-type {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ============ DEMOS ============ */
.demos-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: start;
}
.demo-list { display: flex; flex-direction: column; gap: 0.55rem; }

/* each genre is a card: a .demo-row head that expands to reveal .d-track cues */
.demo-genre {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 150ms var(--ease-out), border-color 150ms ease, box-shadow 150ms ease;
}
@media (hover: hover) and (pointer: fine) {
  .demo-genre:hover {
    transform: translateY(-2px);
    border-color: var(--border);
    box-shadow: 0 10px 28px rgba(206,146,68,0.15);
  }
}
.demo-genre.playing,
.demo-genre.open { border-color: var(--accent); box-shadow: 0 10px 28px rgba(206,146,68,0.2); }

.demo-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 0.8rem 1rem;
  cursor: pointer;
  font-family: 'Barlow', sans-serif;
}
.demo-row .play-btn { width: 38px; height: 38px; }
.demo-row .ico-play { border-left-width: 11px; border-top-width: 7px; border-bottom-width: 7px; }
.demo-row .genre {
  flex: none;
  width: 9rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 0.86rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-2);
  line-height: 1.2;
}
.demo-row .d-meta { min-width: 0; flex: 1; }
.demo-row .d-title {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.demo-row .d-from {
  display: block;
  font-size: 0.74rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.d-count {
  flex: none;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 0.2rem 0.55rem;
  white-space: nowrap;
}
.d-chev {
  flex: none;
  width: 0.55rem;
  height: 0.55rem;
  margin-right: 0.2rem;
  border-right: 2px solid var(--text-muted);
  border-bottom: 2px solid var(--text-muted);
  transform: rotate(45deg);
  transition: transform 220ms var(--ease-out);
}
.demo-genre.open .d-chev { transform: rotate(225deg); }

/* expanding cue list (grid-rows trick keeps it animatable at any height) */
.d-tracks { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 260ms var(--ease-out); }
.demo-genre.open .d-tracks { grid-template-rows: 1fr; }
.d-tracks-inner { overflow: hidden; }
.d-track {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  border-top: 1px solid var(--border-light);
  padding: 0.6rem 1rem 0.6rem 1.4rem;
  cursor: pointer;
  font-family: 'Barlow', sans-serif;
  opacity: 0;
  transform: translateY(6px);
}
.demo-genre.open .d-track { animation: track-in 320ms var(--ease-out) forwards; }
.demo-genre.open .d-track:nth-child(1)  { animation-delay:  30ms; }
.demo-genre.open .d-track:nth-child(2)  { animation-delay:  65ms; }
.demo-genre.open .d-track:nth-child(3)  { animation-delay: 100ms; }
.demo-genre.open .d-track:nth-child(4)  { animation-delay: 135ms; }
.demo-genre.open .d-track:nth-child(5)  { animation-delay: 170ms; }
.demo-genre.open .d-track:nth-child(6)  { animation-delay: 205ms; }
.demo-genre.open .d-track:nth-child(7)  { animation-delay: 240ms; }
.demo-genre.open .d-track:nth-child(8)  { animation-delay: 275ms; }
.demo-genre.open .d-track:nth-child(9)  { animation-delay: 310ms; }
.demo-genre.open .d-track:nth-child(10) { animation-delay: 345ms; }
@keyframes track-in { to { opacity: 1; transform: translateY(0); } }
@media (hover: hover) and (pointer: fine) {
  .d-track:hover { background: rgba(206,146,68,0.07); }
}
.t-num {
  flex: none;
  width: 1rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.t-meta { min-width: 0; flex: 1; }
.t-title {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.t-from {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.t-dur { flex: none; font-size: 0.76rem; color: var(--text-muted); font-variant-numeric: tabular-nums; }
.d-track.active .t-num, .d-track.active .t-title { color: var(--accent-2); }

/* tiny 3-bar equalizer on the playing cue */
.t-eq { flex: none; display: none; align-items: flex-end; gap: 2px; height: 0.8rem; }
.t-eq i {
  width: 3px;
  background: var(--accent);
  border-radius: 1px;
  animation: t-eq 0.9s ease-in-out infinite;
}
.t-eq i:nth-child(1) { height: 40%; animation-delay: -0.3s; }
.t-eq i:nth-child(2) { height: 100%; animation-delay: -0.6s; }
.t-eq i:nth-child(3) { height: 65%; }
@keyframes t-eq { 0%, 100% { transform: scaleY(0.5); } 50% { transform: scaleY(1); } }
.d-track.active.playing .t-eq { display: flex; }
.d-track.active.playing .t-dur { display: none; }

.now-playing {
  position: sticky;
  top: 6rem;
  background: var(--glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow-card);
  padding: 1.6rem 1.6rem 1.7rem;
}
.now-playing .np-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 1rem;
}
.now-playing .eq { height: 64px; margin: 1.1rem 0 1.2rem; }
.now-playing .track-title { font-size: 1.5rem; white-space: normal; }
.now-playing .track-from { font-size: 0.85rem; white-space: normal; }
.np-note { font-size: 0.78rem; color: var(--text-muted); margin-top: 0.9rem; }

/* ============ CREDITS MARQUEE ============ */
.credits-head { text-align: center; }
.credits-head .label { justify-content: center; }
.credits-head .section-sub { margin-left: auto; margin-right: auto; }
.marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  margin-bottom: 1.2rem;
}
.marquee-track {
  display: flex;
  gap: 1.1rem;
  width: max-content;
  animation: scrollL 115s linear infinite;
}
.marquee.rev .marquee-track { animation-name: scrollR; }
@media (hover: hover) and (pointer: fine) {
  .marquee:hover .marquee-track { animation-play-state: paused; }
}
@keyframes scrollL { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes scrollR { from { transform: translateX(-50%); } to { transform: translateX(0); } }
.marquee img {
  height: 14.5rem;
  width: auto;
  border-radius: 12px;
  border: 1px solid var(--border-light);
  box-shadow: 0 8px 24px rgba(26,20,16,0.14);
  transition: transform 150ms var(--ease-out);
}
html.dark .marquee img { box-shadow: 0 8px 24px rgba(0,0,0,0.5); }
.credits-cta { text-align: center; margin-top: 2.2rem; }

/* poster flip cards */
.flip {
  flex: none;
  position: relative;
  perspective: 900px;
  cursor: pointer;
}
.flip-inner {
  position: relative;
  transform-style: preserve-3d;
  transition: transform 550ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .flip:hover .flip-inner { transform: rotateY(180deg); }
}
.flip.flipped .flip-inner { transform: rotateY(180deg); }
.flip img {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.marquee .flip img:hover { transform: none; }
.flip-back {
  position: absolute;
  inset: 0;
  transform: rotateY(180deg);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 12px;
  background: linear-gradient(165deg, #2a2118 0%, #14100c 100%);
  border: 1px solid var(--accent);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  padding: 1rem 0.9rem;
  text-align: center;
}
.flip-back .fb-label {
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(243,243,243,0.45);
}
.flip-back .fb-role {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--accent);
}
.flip-back .fb-title {
  font-size: 0.74rem;
  font-weight: 600;
  color: rgba(243,243,243,0.85);
  line-height: 1.3;
}

/* ============ TESTIMONIALS ============ */
.testi-scroll {
  display: flex;
  gap: 1.3rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0.4rem 0.25rem 1.1rem;
  scrollbar-width: none;
}
.testi-scroll::-webkit-scrollbar { display: none; }
.testi-card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 1.5rem 1.4rem;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: transform 150ms var(--ease-out), box-shadow 150ms ease, border-color 150ms ease;
}
@media (hover: hover) and (pointer: fine) {
  .testi-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(206,146,68,0.15);
    border-color: var(--border);
  }
}
.testi-scroll .testi-card {
  flex: 0 0 clamp(17rem, 26vw, 21.5rem);
  scroll-snap-align: start;
}
.testi-card .t-head {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.45rem;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--accent);
  margin-bottom: 0.8rem;
}
.testi-card .t-body {
  font-size: 0.9rem;
  color: var(--text-mid);
  font-style: italic;
  flex: 1;
  margin-bottom: 1.2rem;
}
.testi-card .t-who { display: flex; align-items: center; gap: 0.75rem; }
.testi-card .t-who img {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent);
}
.testi-card .t-who img.logo { border-radius: 8px; object-fit: contain; background: #fff; padding: 3px; }
.testi-card .t-name { font-weight: 700; font-size: 0.88rem; color: var(--text); line-height: 1.2; }
.testi-card .t-role { font-size: 0.72rem; color: var(--text-muted); }
.testi-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.4rem;
}
.testi-hint {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.testi-btns { display: flex; gap: 0.6rem; }
.testi-btns button {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  background: transparent;
  color: var(--accent-2);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform 160ms var(--ease-out), background 150ms ease, color 150ms ease;
}
.testi-btns button:active { transform: scale(0.94); }
@media (hover: hover) and (pointer: fine) {
  .testi-btns button:hover { background: var(--accent); color: #fff; }
}

/* ============ CONTACT CTA ============ */
.contact-panel {
  background: var(--accent);
  border-radius: 24px;
  padding: clamp(2.5rem, 6vw, 4.5rem);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.contact-panel .watermark {
  right: -1rem;
  bottom: -2.5rem;
  font-size: clamp(6rem, 14vw, 11rem);
  color: rgba(255,255,255,0.08);
}
.contact-panel .label { color: rgba(255,255,255,0.85); justify-content: center; position: relative; z-index: 1; }
.contact-panel .label::before { background: rgba(255,255,255,0.7); }
.contact-panel h2 { color: #fff; position: relative; z-index: 1; }
.contact-panel p {
  color: rgba(255,255,255,0.78);
  max-width: 34rem;
  margin: 0 auto 2.2rem;
  position: relative;
  z-index: 1;
}
.contact-panel .btn-light {
  background: #fff;
  color: var(--accent-2);
  box-shadow: 0 6px 22px rgba(0,0,0,0.18);
}
@media (hover: hover) and (pointer: fine) {
  .contact-panel .btn-light:hover { background: #f7ede0; }
}
.contact-panel .btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.55);
}
@media (hover: hover) and (pointer: fine) {
  .contact-panel .btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.1); }
}
.contact-panel .cta-row { justify-content: center; margin-bottom: 0; position: relative; z-index: 1; }

/* ============ FOOTER ============ */
.footer {
  background: #1a1410;
  padding: 3rem clamp(1.25rem, 4vw, 3rem) 2.6rem;
  text-align: center;
}
html.dark .footer { border-top: 1px solid rgba(206,146,68,0.15); }
.socials {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1.6rem;
}
.socials a {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1.5px solid rgba(243,243,243,0.18);
  color: rgba(243,243,243,0.6);
  display: grid;
  place-items: center;
  transition: transform 160ms var(--ease-out), border-color 150ms ease, color 150ms ease;
}
.socials a svg { width: 18px; height: 18px; fill: currentColor; }
@media (hover: hover) and (pointer: fine) {
  .socials a:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
}
.footer p { font-size: 0.8rem; color: rgba(243,243,243,0.35); margin-bottom: 0.5rem; }
.footer .signoff {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ============ MODALS ============ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: grid;
  place-items: center;
  padding: 1rem;
}
.modal[hidden] { display: none; }
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20,16,12,0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.modal-card {
  position: relative;
  width: min(34rem, 100%);
  max-height: calc(100vh - 2rem);
  max-height: calc(100dvh - 2rem);
  overflow-y: auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.2rem 2.2rem 2rem;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
  animation: modalIn 280ms var(--ease-out);
}
.modal-card.wide { width: min(42rem, 100%); }
@keyframes modalIn { from { opacity: 0; transform: translateY(18px) scale(0.98); } }
.modal-x {
  position: absolute;
  top: 0.9rem; right: 0.9rem;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--surface);
  color: var(--text-mid);
  font-size: 1.05rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform 160ms var(--ease-out), border-color 150ms ease, color 150ms ease;
}
.modal-x:active { transform: scale(0.92); }
@media (hover: hover) and (pointer: fine) {
  .modal-x:hover { border-color: var(--accent); color: var(--accent-2); }
}
.modal h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.modal h3 .accent { color: var(--accent); }
.modal .m-sub { font-size: 0.92rem; color: var(--text-mid); margin-bottom: 0.4rem; }

/* contact form */
.cform { display: flex; flex-direction: column; gap: 0.95rem; margin-top: 1.3rem; }
.cform label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.cform input[type="text"],
.cform input[type="email"],
.cform select,
.cform textarea {
  font-family: 'Barlow', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg);
  border: 1.5px solid var(--border-light);
  border-radius: 10px;
  padding: 0.7rem 0.9rem;
  outline: none;
  transition: border-color 150ms ease, box-shadow 150ms ease;
  width: 100%;
}
.cform textarea { resize: vertical; min-height: 7rem; }
.cform input:focus, .cform select:focus, .cform textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(206,146,68,0.15);
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.95rem;
}
.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.cform .btn { justify-content: center; }
.form-note { font-size: 0.78rem; color: var(--text-muted); text-align: center; }
.form-note a { color: var(--accent-2); font-weight: 600; }
.form-note.error { color: #c0392b; font-weight: 600; }
html.dark .form-note.error { color: #e07b6a; }
.form-success { text-align: center; padding: 2.4rem 0 1.6rem; }
.form-success .big-check {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: grid;
  place-items: center;
  margin: 0 auto 1.2rem;
  font-size: 1.6rem;
  font-weight: 700;
}
.form-success h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.form-success p { font-size: 0.9rem; color: var(--text-mid); }

/* about (bio) modal */
.bio-head {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin-bottom: 1.3rem;
}
/* the four-headshots photobooth strip — rounded rectangle so the 2x2 grid reads */
.bio-head img {
  width: 5.2rem; height: auto;
  border-radius: 10px;
  border: 2px solid var(--accent);
  box-shadow: var(--shadow-card);
}
.bio-body p { font-size: 0.92rem; color: var(--text-mid); margin-bottom: 1rem; }
.bio-body p strong { color: var(--text); font-weight: 600; }
.bio-cta { margin-top: 1.5rem; text-align: center; }

/* ============ STICKY MINI PLAYER ============
   Slides in once a demo is playing and the hero player / Now Playing card
   are out of view. .min collapses it to a pulsing corner bubble. */
.mini-player {
  position: fixed;
  right: 0.9rem;
  bottom: 0.9rem;
  z-index: 150;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  max-width: calc(100vw - 1.8rem);
  background: var(--glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: var(--shadow-card);
  padding: 0.55rem 0.65rem;
  opacity: 0;
  transform: translateY(12px) scale(0.97);
  pointer-events: none;
  transition: opacity 240ms var(--ease-out), transform 240ms var(--ease-out);
}
.mini-player.show {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.mini-player .play-btn { position: relative; width: 40px; height: 40px; }
.mini-ring {
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  background: conic-gradient(var(--accent) calc(var(--p, 0) * 1turn), transparent 0);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 calc(100% - 2.5px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 calc(100% - 2.5px));
  pointer-events: none;
}
.mini-player .ico-play { border-left-width: 11px; border-top-width: 7px; border-bottom-width: 7px; }
.mini-player .track-meta { min-width: 0; max-width: 13rem; }
.mini-player .track-title { font-size: 0.95rem; }
.mini-player .track-from { font-size: 0.68rem; }
.mini-min {
  flex: none;
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  display: grid;
  place-items: center;
  margin-right: 0.15rem;
  transition: transform 160ms var(--ease-out), border-color 150ms ease, color 150ms ease;
}
.mini-min svg { width: 14px; height: 14px; }
.mini-min:active { transform: scale(0.92); }
@media (hover: hover) and (pointer: fine) {
  .mini-min:hover { border-color: var(--accent); color: var(--accent-2); }
}
/* minimized: everything hides except a small eq bubble in the corner */
.mini-bubble {
  display: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: transparent;
  cursor: pointer;
  place-items: center;
  padding: 0;
}
.mini-bubble .eq { height: 16px; width: 18px; margin: 0; gap: 2px; }
.mini-player.min { border-radius: 50%; padding: 0; border: none; background: transparent; backdrop-filter: none; -webkit-backdrop-filter: none; box-shadow: none; }
.mini-player.min .play-btn,
.mini-player.min .track-meta,
.mini-player.min .mini-min { display: none; }
.mini-player.min .mini-bubble {
  display: grid;
  background: var(--glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-card);
}
.mini-player.playing .mini-bubble .eq i { animation: bounce 0.9s ease-in-out infinite alternate; }
.mini-bubble .eq i { height: 30%; }

/* ============ ANIMATIONS ============ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out);
}
.reveal.in { opacity: 1; transform: translateY(0); }

.rise {
  opacity: 0;
  transform: translateY(30px);
  animation: rise 600ms var(--ease-out) forwards;
}
@keyframes rise { to { opacity: 1; transform: translateY(0); } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .rise { animation: fadeOnly 300ms ease forwards; transform: none; }
  @keyframes fadeOnly { to { opacity: 1; } }
  .reveal { transform: none; transition: opacity 300ms ease; }
  .playing .eq i { animation: none; height: 60%; }
  .d-tracks { transition: none; }
  .demo-genre.open .d-track { animation: fadeOnly 200ms ease forwards; transform: none; }
  .t-eq i { animation: none; }
  .wave-fill { transition: none; }
  .scroll-cue::after { animation: none; }
  .marquee-track { animation: none; }
  .logo-track { animation: none; }
  .mini-player.playing .mini-bubble .eq i { animation: none; height: 60%; }
  .modal-card { animation: none; }
  .mobile-menu.open { animation: none; }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1020px) {
  .hero-inner, .about-grid, .demos-grid { grid-template-columns: 1fr; }
  .hero-inner { gap: 3rem; }
  .stage { height: clamp(420px, 55vh, 540px); max-width: 560px; margin: 0 auto; width: 100%; }
  .hero-watermark { font-size: clamp(5rem, 20vw, 9rem); bottom: auto; top: 5.5rem; }
  .nav-links { display: none; }
  .burger { display: inline-flex; }
  .featured2 { grid-template-columns: 1fr; }
  .testi-scroll .testi-card { flex-basis: min(78vw, 320px); }
  .now-playing { position: static; }
  .about-photo { max-width: 420px; }
}
@media (max-width: 700px) {
  .work-hero { grid-template-columns: 1fr; }
  .work-hero .hero-meta { padding-top: 1.6rem; }
}
@media (max-width: 560px) {
  .player { left: 0.8rem; bottom: 0.9rem; }
  .credit-chip { top: 3rem; left: 0.9rem; }
  .stage-img { right: -12%; }
  .nav { gap: 0.5rem; padding-left: 1rem; padding-right: 1rem; }
  .nav-logo { font-size: 0.92rem; letter-spacing: 0.12em; }
  .nav .btn { font-size: 0.58rem; padding: 0.5rem 0.85rem; }
  .theme-btn, .burger { width: 34px; height: 34px; }
  .bento { grid-template-columns: 1fr; }
  .demo-row .genre { width: 5.4rem; font-size: 0.72rem; white-space: normal; line-height: 1.15; }
  .demo-row { gap: 0.7rem; }
  .d-count { display: none; }
  .d-track { padding-left: 1rem; }
  .marquee img { height: 170px; }
  .logo-tile { width: 7.2rem; height: 3.2rem; }
  .mini-player { right: 0.7rem; bottom: 0.7rem; }
  .mini-player .track-meta { max-width: 9.5rem; }
  .field-row { grid-template-columns: 1fr; }
  .modal-card { padding: 1.6rem 1.3rem 1.4rem; }
  .modal h3 { font-size: 1.6rem; padding-right: 2rem; }
  .contact-panel .cta-row { flex-direction: column; }
  .contact-panel .cta-row .btn { width: 100%; justify-content: center; }
}
