:root{
  --bg:#16130f;
  --bg-alt:#1d1710;
  --ink:#f3ead9;
  --ink-dim:#b6a88d;
  --accent:#d98f3a;
  --accent-2:#8a3324;
  --line:rgba(243,234,217,.14);
  --serif:"Fraunces",ui-serif,Georgia,serif;
  --sans:"Manrope",ui-sans-serif,system-ui,sans-serif;
  --mono:"Space Mono",ui-monospace,"SFMono-Regular",Menlo,monospace;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--bg);
  color:var(--ink);
  font-family:var(--sans);
  font-weight:300;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
h1,h2{font-family:var(--serif);font-weight:500;margin:0;letter-spacing:-.01em}
em{font-style:italic;color:var(--accent);font-weight:400}
a{color:inherit;text-decoration:none}
.eyebrow{
  font-size:.72rem;letter-spacing:.14em;text-transform:uppercase;
  color:var(--accent);margin:0 0 1rem;font-weight:500;
}
code{background:rgba(243,234,217,.08);padding:.15em .4em;border-radius:4px;font-size:.85em}

.grain{
  position:fixed;inset:0;z-index:999;pointer-events:none;opacity:.05;mix-blend-mode:overlay;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* SITE LOADER — two phases in the same fixed overlay. Phase 1: four note
   values (eighth/quarter/half/whole, drawn as SVG rather than relying on
   font glyph support for half/whole notes) bounce with a squash-stretch
   "gravity" animation, on loop, for 5s with no way to skip. Phase 2: a
   brief headphones reminder. Each phase reveals its own "Click to
   continue" and only advances on an actual click — no keyboard shortcut,
   so it can't be skipped by accident while typing. */
.site-loader{
  position:fixed;inset:0;z-index:9999;background:var(--bg);
  display:flex;align-items:center;justify-content:center;
  transition:opacity 1.1s ease, filter 1.1s ease, transform 1.1s ease;
}
.loader-phase{display:none;flex-direction:column;align-items:center;gap:2.6rem}
.site-loader[data-phase="bounce"] .phase-bounce{display:flex}
.site-loader[data-phase="headphones"] .phase-headphones{display:flex}
/* A dissolve rather than a flat fade — blur and a slight scale-up read as
   the scene "clearing" instead of an abrupt cut to the page underneath. */
.site-loader.is-hidden{
  opacity:0;visibility:hidden;pointer-events:none;
  filter:blur(10px);transform:scale(1.06);
}
.site-loader.is-clickable{cursor:pointer}

.kinetic-notes{display:flex;align-items:flex-end;gap:1.8rem}
.kinetic-col{position:relative;display:flex;flex-direction:column;align-items:center;justify-content:flex-end;height:84px;width:34px}
.kinetic-bounce{
  position:relative;z-index:2;color:var(--accent);
  animation:gravity-bounce 1.4s cubic-bezier(.45,.05,.55,.95) infinite;
  animation-delay:var(--d,0s);
}
.kinetic-note-svg{
  display:block;width:22px;height:34px;transform-origin:bottom center;
  filter:drop-shadow(0 0 6px rgba(217,143,58,.5));
  animation:rubber-morph 1.4s linear infinite;
  animation-delay:var(--d,0s);
}
.kinetic-ripple{
  position:absolute;bottom:0;width:36px;height:10px;border-radius:100%;opacity:0;
  border:1px solid rgba(217,143,58,.4);
  animation:ripple-expand 1.4s linear infinite;
  animation-delay:var(--d,0s);
}
.kinetic-shadow{
  position:absolute;bottom:-4px;width:20px;height:5px;border-radius:100%;
  background:rgba(217,143,58,.4);filter:blur(2px);
  animation:shadow-breathe 1.4s cubic-bezier(.45,.05,.55,.95) infinite;
  animation-delay:var(--d,0s);
}
@keyframes gravity-bounce{
  0%{transform:translateY(0);animation-timing-function:cubic-bezier(.33,1,.68,1)}
  50%{transform:translateY(-40px);animation-timing-function:cubic-bezier(.32,0,.67,0)}
  100%{transform:translateY(0)}
}
@keyframes rubber-morph{
  0%{transform:scale(1.3,.65)}
  5%{transform:scale(.92,1.08)}
  15%{transform:scale(1,1)}
  50%{transform:scale(1,1)}
  85%{transform:scale(.92,1.08)}
  100%{transform:scale(1.3,.65)}
}
@keyframes shadow-breathe{
  0%{transform:scale(1.3);opacity:.55}
  50%{transform:scale(.5);opacity:.12}
  100%{transform:scale(1.3);opacity:.55}
}
@keyframes ripple-expand{
  0%{transform:scale(.5);opacity:0;border-width:3px}
  5%{opacity:.8}
  30%{transform:scale(1.5);opacity:0;border-width:0}
  100%{transform:scale(1.5);opacity:0}
}

.loader-continue{
  margin:0;font-family:var(--mono);font-size:.72rem;letter-spacing:.14em;text-transform:uppercase;
  color:var(--ink-dim);opacity:0;transition:opacity .6s ease;
}
.loader-continue.visible{opacity:1}

.headphone-icon{
  width:44px;height:44px;color:var(--accent);
  filter:drop-shadow(0 0 8px rgba(217,143,58,.5));
}
.headphone-msg{
  margin:0;max-width:280px;text-align:center;font-family:var(--serif);font-style:italic;
  font-size:1.15rem;line-height:1.5;color:var(--ink);
}

#note-trail{position:fixed;inset:0;z-index:9999;pointer-events:none;}

/* NAV */
.nav{
  position:fixed;top:0;left:0;right:0;z-index:100;
  display:flex;justify-content:space-between;align-items:center;
  padding:1.6rem clamp(1.5rem,5vw,4rem);
  mix-blend-mode:difference;
}
.wordmark{font-family:var(--serif);font-style:italic;font-size:1.3rem;font-weight:500;color:var(--ink)}
.wordmark-dot{color:var(--accent)}
.nav-links{display:flex;gap:2rem}
.nav-links a{font-size:.82rem;letter-spacing:.04em;color:var(--ink);opacity:.8;position:relative;padding-bottom:3px}
.nav-links a:hover{opacity:1}
.nav-links a::after{content:"";position:absolute;left:0;bottom:0;height:1px;width:0;background:var(--ink);transition:width .3s}
.nav-links a:hover::after{width:100%}

/* HERO */
.hero-wrap{
  position:relative;opacity:0;transform:scale(1.02);
  transition:opacity 1.2s ease .2s, transform 1.2s ease .2s;
}
body.site-revealed .hero-wrap{opacity:1;transform:scale(1)}
.hero-stage{
  position:relative;height:100vh;overflow:hidden;
  display:flex;flex-direction:column;justify-content:center;
  background:var(--bg);
}
.hero-video{
  position:absolute;inset:0;width:100%;height:100%;object-fit:cover;z-index:0;
  background:var(--bg);
}
.hero-scrim{
  position:absolute;inset:0;z-index:1;pointer-events:none;
  background:
    /* Solid --bg right at the very bottom edge so the video's own black
       (which never matches our exact bg hex) can't create a seam against
       whatever sits below the hero. Listed first (on top) so it fully
       occludes the horizontal gradient below at that band — otherwise the
       horizontal tint (strong on the left, transparent past 66%) bled
       through unevenly, darkening the left side more than the right and
       creating a seam that only showed up on one side. */
    linear-gradient(0deg, var(--bg) 0%, var(--bg) 5%, transparent 24%, transparent 78%, rgba(12,9,5,.55) 100%),
    linear-gradient(100deg, rgba(12,9,5,.92) 0%, rgba(12,9,5,.72) 26%, rgba(12,9,5,.28) 48%, transparent 66%);
}
.hero-copy{
  position:relative;z-index:5;max-width:560px;
  padding:0 clamp(1.5rem,6vw,5rem);
  min-height:clamp(240px,36vh,320px);
  display:flex;align-items:center;
}
.hero-beat{
  position:absolute;left:clamp(1.5rem,6vw,5rem);right:1.5rem;
  opacity:0;pointer-events:none;transform:translateY(12px);
  transition:opacity .7s ease, transform .7s ease;
}
[data-state="idle"] .beat-idle{opacity:1;pointer-events:auto;transform:translateY(0)}
[data-state="ended"] .beat-final{opacity:1;pointer-events:auto;transform:translateY(0)}

.hero-beat h1{font-size:clamp(2.2rem,5.2vw,3.8rem);line-height:1.06;margin:0}
.beat-final h2{font-family:var(--serif);font-weight:500;font-size:clamp(1.5rem,3vw,2.1rem);line-height:1.2;margin:.5rem 0 .8rem;max-width:480px}
.lede{max-width:440px;margin:0 0 1.4rem;color:var(--ink-dim);font-size:.98rem;line-height:1.6}
.cta{
  display:inline-block;border-bottom:1px solid var(--accent);color:var(--accent);
  font-size:.9rem;letter-spacing:.03em;padding-bottom:4px;transition:opacity .3s;
}
.cta:hover{opacity:.7}
.beat-final-actions{display:flex;align-items:center;gap:1.6rem;flex-wrap:wrap}
.replay-btn{
  background:none;border:none;padding:0;cursor:pointer;font-family:var(--mono);
  font-size:.76rem;letter-spacing:.03em;color:var(--ink-dim);transition:color .25s;
}
.replay-btn:hover{color:var(--accent)}

/* MID-PLAYBACK CAPTION */
.mid-caption{
  position:absolute;left:clamp(1.5rem,6vw,5rem);right:1.5rem;top:0;bottom:0;z-index:5;
  display:flex;align-items:center;max-width:480px;
  font-family:var(--serif);font-style:italic;font-weight:500;color:var(--ink);
  font-size:clamp(1.3rem,2.8vw,1.9rem);line-height:1.35;margin:0;
  opacity:0;transform:translateY(12px);transition:opacity .7s ease, transform .7s ease;
  pointer-events:none;
}
.mid-caption.visible{opacity:1;transform:translateY(0)}

/* PRESS BUTTON */
.press-btn{
  margin-top:2rem;background:none;border:none;padding:0;cursor:pointer;
  display:inline-flex;flex-direction:column;align-items:center;gap:.8rem;
  -webkit-tap-highlight-color:transparent;
}
.press-disc{
  position:relative;width:84px;height:84px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  background:repeating-radial-gradient(circle at 50% 50%, #201a13 0 2px, #100d09 3px, #201a13 4px);
  box-shadow:0 18px 40px rgba(0,0,0,.55), inset 0 0 0 1px rgba(255,255,255,.06);
  transition:transform .25s cubic-bezier(.34,1.56,.64,1), box-shadow .25s ease;
}
.press-grooves{
  position:absolute;inset:15%;border-radius:50%;
  background:conic-gradient(from 200deg,var(--accent),var(--accent-2) 40%,var(--accent) 75%,var(--accent-2));
}
.press-icon{position:relative;width:20px;height:20px;fill:#1a1006;margin-left:3px}
.press-label{
  font-family:var(--mono);font-size:.72rem;letter-spacing:.18em;text-transform:uppercase;color:var(--accent);
}
.press-btn:hover .press-disc{
  transform:scale(1.08);
  box-shadow:0 22px 50px rgba(0,0,0,.6), 0 0 0 8px rgba(217,143,58,.14), inset 0 0 0 1px rgba(255,255,255,.08);
}
.press-btn:hover .press-grooves{animation:spin-slow 6s linear infinite}
.press-btn:active .press-disc{transform:scale(.9)}
.press-btn:focus-visible{outline:none}
.press-btn:focus-visible .press-disc{outline:2px solid var(--accent);outline-offset:4px}
.press-disc::after{
  content:"";position:absolute;inset:-10px;border-radius:50%;border:1px solid var(--accent);
  opacity:0;pointer-events:none;
}
.press-btn.pressed .press-disc::after{animation:press-ripple .7s ease-out forwards}
.press-btn.pressed .press-disc{animation:press-kick .35s cubic-bezier(.34,1.56,.64,1)}
@keyframes press-ripple{0%{opacity:.9;transform:scale(1)}100%{opacity:0;transform:scale(1.9)}}
@keyframes press-kick{0%{transform:scale(1)}35%{transform:scale(.82)}100%{transform:scale(1)}}

/* DIVIDER — a long, continuous run of bass fretboard, no headstock, both
   ends cropped flush so it reads as a line rather than an object. The crop
   was already decided once, on the file itself — shown here at its own
   natural aspect ratio, not re-cropped live by a fixed-height container.
   Background-removed (transparent PNG) so the page's own dark background
   shows through around the neck and vines instead of a visible black box. */
.divider{
  width:100%;margin-top:1%;
  box-shadow:0 1px 0 rgba(217,143,58,.18);
}
.divider-img{
  display:block;width:100%;height:auto;
  filter:saturate(1.05) contrast(1.03);
  /* A couple of vine curls graze the true edges of the source photo (left/
     right, and a small one top-left) — soft fades on all four sides let
     them dissolve into the page instead of showing a hard-cut edge. Two
     mask layers, intersected, so both the horizontal and vertical fades
     apply together. */
  -webkit-mask-image:
    linear-gradient(to right, transparent 0%, #000 5%, #000 95%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, #000 12%, #000 94%, transparent 100%);
  mask-image:
    linear-gradient(to right, transparent 0%, #000 5%, #000 95%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, #000 12%, #000 94%, transparent 100%);
  -webkit-mask-composite:source-in;
  mask-composite:intersect;
}

.vinyl-label{
  position:absolute;inset:33%;border-radius:50%;
  background:conic-gradient(from 200deg,var(--accent),var(--accent-2) 40%,var(--accent) 75%,var(--accent-2));
  display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;
  color:#1a1006;
}
.vinyl-label span{font-family:var(--serif);font-weight:600;font-size:.85em;letter-spacing:.04em}
.vinyl-label-sub{font-family:var(--sans)!important;font-weight:500;font-size:.55em!important;opacity:.75;margin-top:.2em}
.vinyl-hole{position:absolute;left:50%;top:50%;width:5%;height:5%;background:var(--bg);border-radius:50%;transform:translate(-50%,-50%)}

/* MUSIC */
.music{padding:8rem clamp(1.5rem,6vw,5rem) 6rem;position:relative;z-index:3;background:var(--bg)}
.section-head{max-width:640px;margin-bottom:3.5rem}
.section-head h2{font-size:clamp(2rem,4vw,2.8rem)}
.section-sub{color:var(--ink-dim);font-size:.92rem;line-height:1.6;margin-top:1rem}

.shelf-nav{
  flex:0 0 auto;width:42px;height:42px;border-radius:50%;border:1px solid var(--line);
  background:transparent;color:var(--ink);font-size:1.2rem;cursor:pointer;transition:.3s;
}
.shelf-nav:hover{background:var(--accent);color:#1a1006;border-color:var(--accent)}

/* COVERFLOW — a tilted 3D deck of "record" tiles, like flipping through crates */
.coverflow-wrap{display:flex;align-items:center;gap:1rem}
.coverflow{
  --cf-w:clamp(140px,20vw,220px);
  flex:1;position:relative;perspective:1200px;touch-action:pan-y;
  /* box-sizing:border-box (global reset) makes `height` include padding, so
     add the padding back on top — otherwise cards (sized to --cf-w via
     aspect-ratio) are taller than the content box and get clipped. */
  height:calc(var(--cf-w) + 4rem);
  padding:1.5rem 0 2.5rem;overflow:hidden;
}
.cf-track{position:relative;width:100%;height:100%;transform-style:preserve-3d;cursor:grab;outline:none}
.cf-track:active{cursor:grabbing}
.cf-card{
  position:absolute;left:50%;top:0;width:var(--cf-w);aspect-ratio:1;
  margin-left:calc(var(--cf-w) / -2);border-radius:22px;overflow:hidden;
  cursor:pointer;will-change:transform;
  background:
    radial-gradient(circle at 50% 50%, #0c0c0c 0 22%, transparent 22.3%),
    repeating-radial-gradient(circle at 50% 50%, #201a13 0 2px, #100d09 3px, #201a13 4px);
  box-shadow:0 20px 44px rgba(0,0,0,.55), inset 0 0 0 1px rgba(255,255,255,.07);
}
.cf-card.center{box-shadow:0 20px 44px rgba(0,0,0,.55), 0 0 0 2px var(--accent), inset 0 0 0 1px rgba(255,255,255,.07)}
.cf-card-label{
  position:absolute;inset:28%;border-radius:50%;
  background:conic-gradient(from 200deg,var(--cf-color,var(--accent)),var(--accent-2) 40%,var(--cf-color,var(--accent)) 75%,var(--accent-2));
}
.cf-card-hole{position:absolute;left:50%;top:50%;width:6%;height:6%;background:#100d09;border-radius:50%;transform:translate(-50%,-50%)}
.cf-caption{
  text-align:center;margin:0 0 0;font-size:.82rem;color:var(--ink-dim);
  min-height:1.4em;opacity:0;transition:opacity .35s ease;
}
.cf-caption.visible{opacity:1}
.cf-caption b{color:var(--ink);font-weight:500}
.cf-caption em{color:var(--accent);font-style:italic;font-family:var(--serif)}

.player{
  margin-top:3.5rem;display:flex;flex-direction:column;align-items:center;text-align:center;
  padding:3rem clamp(1.5rem,5vw,3rem);background:var(--bg-alt);border:1px solid var(--line);border-radius:24px;
}
.player-vinyl{
  position:relative;width:min(46vw,220px);aspect-ratio:1;border-radius:50%;margin-bottom:1.6rem;
  background:repeating-radial-gradient(circle at 50% 50%, #201a13 0 2px, #100d09 3px, #201a13 4px);
  box-shadow:0 30px 60px rgba(0,0,0,.5);
}
.player-vinyl.is-spinning{animation:spin-slow 9s linear infinite}
@keyframes spin-slow{to{transform:rotate(360deg)}}
.player-vinyl .vinyl-label{position:absolute;inset:33%}
.player-vinyl .vinyl-hole{position:absolute;left:50%;top:50%;width:6%;height:6%;background:var(--bg-alt);border-radius:50%;transform:translate(-50%,-50%)}
.player-title{font-family:var(--serif);font-style:italic;font-weight:500;font-size:clamp(1.5rem,3vw,2.1rem);margin:0;color:var(--ink)}
.player-sub{color:var(--ink-dim);font-size:.85rem;margin:.5rem 0 2rem}

.transport{display:flex;gap:1rem;margin-bottom:2rem}
.transport button{
  font-family:var(--mono);font-size:.72rem;letter-spacing:.06em;text-transform:uppercase;
  background:transparent;border:1px solid var(--line);color:var(--ink);border-radius:999px;
  padding:.6rem 1.2rem;cursor:pointer;transition:.25s;
}
.transport button:hover{background:var(--accent);border-color:var(--accent);color:#1a1006}
#btn-play{background:var(--accent);border-color:var(--accent);color:#1a1006}

.readout{
  display:flex;flex-direction:column;gap:.35rem;font-family:var(--mono);font-size:.7rem;
  color:var(--ink-dim);border-top:1px dashed var(--line);padding-top:1.2rem;width:100%;max-width:420px;
}
.readout b{color:var(--accent);font-weight:700}
.readout .ro-row:first-child{color:var(--accent);opacity:.6;letter-spacing:.02em}

/* ABOUT */
.about{
  display:grid;grid-template-columns:.9fr 1fr;gap:clamp(4rem,9vw,7rem);align-items:center;
  padding:8rem clamp(1.5rem,6vw,5rem);position:relative;z-index:3;background:var(--bg-alt);
}
.about-visual{justify-self:center;overflow:visible;display:flex;flex-direction:column;align-items:center}

/* The record starts hidden behind the cover, then slides out to the right.
   Rotation is handled entirely in JS (drag-to-spin, with a gentle ambient
   idle spin when you leave it alone) — ported from a found CSS demo,
   recolored to the site palette and using our own grain instead of
   hot-linked images. */
.lp-frame{
  --lp-s:clamp(190px,22vw,280px);
  position:relative;width:var(--lp-s);aspect-ratio:1;
}
.lp-vinyl{
  position:absolute;top:0;left:0;width:100%;height:100%;z-index:0;border-radius:50%;
  background:repeating-radial-gradient(circle at 50% 50%, #201a13 0 3px, #120e0a 4px, #201a13 5px);
  box-shadow:0 14px 34px rgba(0,0,0,.6);
  animation:lp-slide-out 1.1s cubic-bezier(.25,.8,.3,1) .6s forwards;
  cursor:grab;touch-action:none;user-select:none;
}
.lp-vinyl:active{cursor:grabbing}
.lp-vinyl-tex{position:absolute;inset:0;border-radius:50%;box-shadow:inset 0 0 0 1px rgba(255,255,255,.05)}
.lp-sheen{
  position:absolute;inset:0;border-radius:50%;pointer-events:none;mix-blend-mode:screen;
  background:linear-gradient(115deg, rgba(255,255,255,.18) 0%, transparent 32%, transparent 68%, rgba(255,255,255,.08) 100%);
}
.lp-label{
  position:absolute;inset:33%;border-radius:50%;
  background:conic-gradient(from 200deg,var(--accent),var(--accent-2) 40%,var(--accent) 75%,var(--accent-2));
  box-shadow:inset 0 0 0 4px rgba(0,0,0,.35);
  display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;
  color:#1a1006;pointer-events:none;
}
.lp-label span{font-family:var(--serif);font-weight:600;font-size:.8em;letter-spacing:.04em}
.lp-label-sub{font-family:var(--sans)!important;font-weight:500;font-size:.5em!important;opacity:.75;margin-top:.2em}
.lp-hole{position:absolute;left:50%;top:50%;width:4%;height:4%;background:#100d09;border-radius:50%;transform:translate(-50%,-50%);z-index:2;pointer-events:none}
@keyframes lp-slide-out{from{left:0}to{left:58%}}

.lp-cover{
  position:absolute;inset:0;z-index:1;border-radius:6px;overflow:hidden;
  box-shadow:6px 0 26px rgba(0,0,0,.55), inset 0 0 12px 6px rgba(255,255,255,.06), inset 0 0 6px 3px rgba(0,0,0,.3);
}
.lp-cover img{width:100%;height:100%;object-fit:cover;filter:grayscale(1) contrast(1.15) brightness(.95)}
.av-grain{
  position:absolute;inset:0;opacity:.4;mix-blend-mode:overlay;pointer-events:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='90' height='90'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3CfeComponentTransfer%3E%3CfeFuncA type='linear' slope='1.6' intercept='-.15'/%3E%3C/feComponentTransfer%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size:180px 180px;
}
.av-vignette{
  position:absolute;inset:0;pointer-events:none;
  background:radial-gradient(ellipse at 50% 45%, transparent 45%, rgba(0,0,0,.4) 100%);
}

.about-copy .eyebrow{margin-bottom:.8rem}
.about-copy h2{font-size:clamp(2rem,4vw,2.6rem);margin-bottom:1.4rem}
.about-copy p{color:var(--ink-dim);line-height:1.7;font-size:.98rem;margin:0 0 1.1rem;max-width:520px}
.pull-quote{font-family:var(--mono);font-style:normal;letter-spacing:.01em;color:var(--accent);font-size:1.05rem;line-height:1.6;margin:2rem 0 .6rem;max-width:480px;text-shadow:0 0 18px rgba(217,143,58,.45),0 0 40px rgba(217,143,58,.2);white-space:pre-wrap}
.signature{color:var(--accent)!important;font-size:.82rem!important}

/* CONTACT */
.contact{
  padding:8rem clamp(1.5rem,6vw,5rem) 10rem;text-align:center;position:relative;z-index:3;
}
.contact h2{font-size:clamp(2rem,4vw,2.6rem);margin:0 auto 1rem}
.contact .section-sub{margin:0 auto 3rem;max-width:440px}
.contact-inner{max-width:480px;margin:0 auto}

.song-picker{display:flex;flex-direction:column;align-items:center;gap:.9rem;margin-bottom:4rem}
.song-btn{
  background:none;border:none;cursor:pointer;font-family:var(--serif);font-weight:400;
  font-size:clamp(1.1rem,2.4vw,1.4rem);color:var(--ink-dim);opacity:.55;
  transition:color .3s,opacity .3s,transform .3s;padding:.15rem 0;
}
.song-btn:hover{opacity:.85}
.song-btn.active{color:var(--accent);opacity:1;font-style:italic;transform:scale(1.04)}
.song-btn span{
  display:inline-block;margin-left:.6rem;font-family:var(--mono);font-style:normal;
  font-size:.62em;letter-spacing:.04em;color:var(--ink-dim);vertical-align:middle;
}

/* BACKING TRACK TRANSPORT — play/pause, restart, two independent mutes,
   and an upward-only bar visualizer reflecting whichever key is active. */
.backing-transport{
  display:flex;flex-direction:column;align-items:center;gap:.9rem;margin-bottom:3rem;
}
.bt-buttons{display:flex;flex-wrap:wrap;justify-content:center;gap:.6rem}
.bt-btn{
  font-family:var(--mono);font-size:.68rem;letter-spacing:.04em;text-transform:uppercase;
  background:transparent;border:1px solid var(--line);color:var(--ink-dim);border-radius:999px;
  padding:.5rem 1.1rem;cursor:pointer;transition:border-color .25s,color .25s,background .25s;
}
.bt-btn:hover{border-color:var(--accent);color:var(--ink)}
.bt-btn.is-active{background:var(--accent);border-color:var(--accent);color:#1a1006}

.bt-volumes{display:flex;flex-wrap:wrap;justify-content:center;gap:1.6rem}
.bt-vol{
  display:flex;align-items:center;gap:.6rem;
  font-family:var(--mono);font-size:.66rem;letter-spacing:.04em;text-transform:uppercase;
  color:var(--ink-dim);
}
.bt-vol input[type="range"]{
  width:100px;height:2px;appearance:none;-webkit-appearance:none;
  background:var(--line);border-radius:2px;outline:none;cursor:pointer;
}
.bt-vol input[type="range"]::-webkit-slider-thumb{
  appearance:none;-webkit-appearance:none;width:12px;height:12px;border-radius:50%;
  background:var(--accent);cursor:pointer;transition:transform .15s;
}
.bt-vol input[type="range"]::-webkit-slider-thumb:hover{transform:scale(1.2)}
.bt-vol input[type="range"]::-moz-range-thumb{
  width:12px;height:12px;border-radius:50%;background:var(--accent);border:none;cursor:pointer;
}
.bt-hint{
  max-width:380px;margin:0;text-align:center;font-size:.72rem;line-height:1.5;
  color:var(--ink-dim);opacity:.75;
}
/* A five-line staff standing in for the "road" — an eighth note travels
   left-to-right across it as the backing track plays (progress), and
   pulses/rotates/tints gold on high-frequency content (reactivity). */
.staff-track{
  position:relative;
  /* vw-based, not %, so it doesn't depend on the parent flex container
     resolving a definite width first (a % width on a child of a shrink-
     to-fit flex column has nothing to resolve against and collapses). */
  width:clamp(200px,70vw,320px);height:40px;
}
.staff-lines{position:absolute;inset:0;width:100%;height:100%}
.staff-lines line{stroke:var(--line);stroke-width:1}
.staff-note{
  position:absolute;top:50%;left:0;
  font-family:var(--serif);font-size:1.5rem;line-height:1;
  color:#221b12;
  /* A dark fill alone reads as invisible against a near-black page — the
     glow gives it a visible silhouette at all times (JS scales this up
     further as the reactive energy rises). */
  text-shadow:0 0 7px rgba(217,143,58,.55), 0 0 2px rgba(243,234,217,.4);
  transform:translate(-50%,-50%) rotate(0deg) scale(1);
  will-change:transform,color,text-shadow;
}
.song-btn.active span{color:var(--accent);opacity:.75}

.contact-form{display:flex;flex-direction:column;gap:1.6rem;text-align:left}
.field{display:flex;flex-direction:column;gap:.5rem}
.field label{
  font-family:var(--mono);font-size:.68rem;letter-spacing:.14em;text-transform:uppercase;color:var(--ink-dim);
}
.field input,.field textarea{
  background:transparent;border:none;border-bottom:1px solid var(--line);
  color:var(--ink);font-family:var(--sans);font-size:1rem;font-weight:300;
  padding:.5rem .1rem;transition:border-color .25s;
}
.field input:focus,.field textarea:focus{outline:none;border-color:var(--accent)}
.field textarea{
  resize:none;overflow:hidden;line-height:1.5;min-height:calc(1em * 1.5 + 1rem);
}
.field input::placeholder,.field textarea::placeholder{color:var(--ink-dim);opacity:.6}

.contact-submit{
  align-self:flex-start;margin-top:.6rem;background:none;font-family:var(--sans);cursor:pointer;
  appearance:none;-webkit-appearance:none;border-top:0;border-left:0;border-right:0;border-radius:0;
  transition:opacity .25s;
}
.contact-submit:disabled{opacity:.35;cursor:not-allowed}
/* Honeypot — off-screen rather than display:none, since some spam bots
   skip fields hidden that obviously; real users and screen readers never
   encounter this either way. */
.hp-field{position:absolute;left:-9999px;top:-9999px;opacity:0;height:0;overflow:hidden;pointer-events:none}
.contact-note{
  font-size:.8rem;color:var(--accent);min-height:1.2em;margin:0;
  opacity:0;transition:opacity .4s;
}
.contact-note.visible{opacity:1}

.footer{
  display:flex;justify-content:center;padding:2rem clamp(1.5rem,6vw,5rem);
  border-top:1px solid var(--line);color:var(--ink-dim);font-size:.72rem;letter-spacing:.04em;
  position:relative;z-index:3;background:var(--bg);
}

@media (max-width:860px){
  .about{grid-template-columns:1fr;text-align:center;overflow-x:hidden}
  .about-copy p,.pull-quote{margin-left:auto;margin-right:auto}
  .hero-copy{max-width:100%}
  .nav-links{gap:1.1rem}
  .nav-links a{font-size:.72rem}
  .hero-scrim{
    background:
      linear-gradient(180deg, rgba(12,9,5,.78) 0%, rgba(12,9,5,.55) 40%, rgba(12,9,5,.55) 65%, rgba(12,9,5,.85) 100%);
  }
}
