/* =============================================================
   mandoerik.com — visual system
   Espresso & walnut · honey-gold & brass · parchment
   Fraunces (display) · Inter (body) · mono (labels)
   ============================================================= */

:root {
  /* surfaces — deep warm browns */
  --ink-900: #120d09;   /* deepest background */
  --ink-850: #17110b;
  --ink-800: #1c150e;   /* page base */
  --ink-700: #251c12;   /* panels */
  --ink-650: #2d2316;
  --ink-600: #382a19;   /* raised / borders */

  /* text — parchment / cream */
  --cream:     #f3ead8;
  --cream-dim: #cdbd9f;
  --cream-mute:#9b8d72;

  /* accents — honey, gold, brass */
  --gold:       #e3ab5b;
  --gold-bright:#f4cc7e;
  --brass:      #c0883b;
  --ember:      #b9692a;

  /* lines */
  --hair: rgba(227, 171, 91, 0.16);
  --hair-soft: rgba(243, 234, 216, 0.08);

  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 72px);

  --grain: 0.5; /* tweakable 0..1, multiplied into overlay opacity */

  --serif: "Fraunces", "Playfair Display", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--ink-800);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* warm ambient base: candlelight glows fixed behind everything */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(70% 50% at 78% 8%, rgba(201, 138, 60, 0.20), transparent 60%),
    radial-gradient(60% 60% at 12% 88%, rgba(185, 105, 42, 0.16), transparent 62%),
    radial-gradient(90% 70% at 50% 50%, rgba(18, 13, 9, 0) 30%, rgba(11, 8, 5, 0.55) 100%);
}

/* film grain overlay — full page, intensity tweakable */
.grain {
  position: fixed;
  inset: -120%;
  z-index: 60;
  pointer-events: none;
  opacity: calc(var(--grain) * 0.42);
  background-image: var(--grain-img);
  background-size: 220px 220px;
  mix-blend-mode: overlay;
  animation: grainshift 7s steps(6) infinite;
  will-change: transform;
}
@keyframes grainshift {
  0%   { transform: translate(0,0); }
  20%  { transform: translate(-6%, 4%); }
  40%  { transform: translate(4%, -5%); }
  60%  { transform: translate(-3%, 3%); }
  80%  { transform: translate(5%, 2%); }
  100% { transform: translate(0,0); }
}
@media (prefers-reduced-motion: reduce) { .grain { animation: none; } }

main, header, footer { position: relative; z-index: 1; }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ---------- shared layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }
section { padding-block: clamp(72px, 11vh, 150px); }

.kicker {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  margin: 0 0 26px;
}
.kicker::before {
  content: "";
  width: 26px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

h1, h2, h3 { font-family: var(--serif); font-weight: 500; letter-spacing: -0.01em; line-height: 1.04; margin: 0; }
.section-head h2 {
  font-size: clamp(30px, 4.6vw, 58px);
  font-optical-sizing: auto;
  max-width: 16ch;
  text-wrap: balance;
}
.section-head { margin-bottom: clamp(40px, 6vh, 72px); }

em { font-style: italic; }

/* ---------- film-photo frame ---------- */
.photo {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: var(--ink-700);
  box-shadow: 0 30px 70px -30px rgba(0,0,0,0.8), inset 0 0 0 1px var(--hair-soft);
}
.photo image-slot {
  width: 100%;
  height: 100%;
  display: block;
  /* sepia / warm duotone treatment */
  filter: sepia(0.32) saturate(1.05) contrast(1.04) brightness(0.96);
}
.photo.bw image-slot { filter: grayscale(1) contrast(1.08) brightness(0.98); }
.photo img { width: 100%; height: 100%; display: block; object-fit: cover; filter: sepia(0.32) saturate(1.05) contrast(1.04) brightness(0.96); }
.photo.bw img { filter: grayscale(1) contrast(1.08) brightness(0.98); }
.photo::after { /* vignette + warm wash */
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  background:
    radial-gradient(120% 120% at 50% 30%, transparent 50%, rgba(18,13,9,0.5) 100%),
    linear-gradient(0deg, rgba(120,70,25,0.10), transparent 55%);
  mix-blend-mode: multiply;
}
.photo .credit {
  position: absolute;
  right: 10px; bottom: 9px;
  z-index: 3;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: rgba(243,234,216,0.62);
  text-shadow: 0 1px 4px rgba(0,0,0,0.7);
  pointer-events: none;
}

/* =============================================================
   NAV
   ============================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px var(--gutter);
  transition: background .4s ease, backdrop-filter .4s ease, padding .4s ease, border-color .4s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(18, 13, 9, 0.72);
  backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid var(--hair);
  padding-block: 12px;
}
.brand { display: flex; align-items: baseline; gap: 10px; white-space: nowrap; }
.brand .mark { font-family: var(--serif); font-size: 21px; font-weight: 600; letter-spacing: -0.01em; }
.brand .at { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; color: var(--gold); text-transform: lowercase; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-size: 13.5px; letter-spacing: 0.04em; color: var(--cream-dim);
  position: relative; padding-block: 4px; transition: color .25s ease;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--gold); transition: width .3s ease;
}
.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { width: 100%; }

.menu-btn {
  display: none; background: none; border: 0; cursor: pointer; padding: 8px;
  flex-direction: column; gap: 5px;
}
.menu-btn span { width: 24px; height: 1.5px; background: var(--cream); transition: transform .3s ease, opacity .3s ease; }
.menu-btn.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-btn.open span:nth-child(2) { opacity: 0; }
.menu-btn.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 45;
  background: rgba(15, 11, 7, 0.97);
  backdrop-filter: blur(10px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  opacity: 0; visibility: hidden; transition: opacity .35s ease, visibility .35s ease;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu a {
  font-family: var(--serif); font-size: clamp(30px, 9vw, 46px); color: var(--cream);
  padding: 8px 20px; opacity: 0.85; transition: color .2s, opacity .2s;
}
.mobile-menu a:hover { color: var(--gold); opacity: 1; }

/* =============================================================
   HERO
   ============================================================= */
.hero { min-height: 100svh; display: flex; align-items: flex-end; position: relative; padding-bottom: clamp(40px, 7vh, 90px); overflow: hidden; }
.hero-photo {
  position: absolute; inset: 0; z-index: 0;
}
.hero-photo image-slot { width: 100%; height: 100%; filter: sepia(0.4) saturate(1.1) contrast(1.05) brightness(0.62); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; filter: sepia(0.4) saturate(1.1) contrast(1.05) brightness(0.62); }
.hero-photo::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(18,13,9,0.55) 0%, rgba(18,13,9,0.15) 35%, rgba(18,13,9,0.85) 100%),
    radial-gradient(80% 60% at 75% 20%, rgba(201,138,60,0.28), transparent 65%);
}
.hero-photo .credit { right: 14px; bottom: 12px; }

.hero-inner { position: relative; z-index: 2; width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }
.hero .eyebrow {
  font-family: var(--mono); font-size: 13px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); margin: 0 0 22px; display: flex; align-items: center; gap: 12px;
}
.hero .eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 14px var(--gold); }
.hero h1 {
  font-size: clamp(56px, 13.5vw, 188px);
  font-weight: 460;
  letter-spacing: -0.025em;
  line-height: 0.92;
  font-optical-sizing: auto;
  margin: 0;
}
.hero h1 .last { font-style: italic; color: var(--gold-bright); font-weight: 380; }
.hero .tagline {
  font-family: var(--serif); font-style: italic; font-weight: 360;
  font-size: clamp(20px, 3vw, 33px); color: var(--cream-dim);
  max-width: 22ch; margin: 26px 0 0; line-height: 1.25;
}
.hero-cta { display: flex; flex-wrap: wrap; align-items: center; gap: 16px 26px; margin-top: 42px; }

/* buttons */
.btn {
  display: inline-flex; align-items: center; gap: 11px;
  font-family: var(--sans); font-size: 15px; font-weight: 500; letter-spacing: 0.02em;
  padding: 15px 26px; border-radius: 2px; cursor: pointer;
  transition: transform .25s ease, box-shadow .3s ease, background .3s ease, color .3s ease;
}
.btn-primary {
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  color: #2a1c0c; border: 1px solid var(--gold-bright);
  box-shadow: 0 12px 30px -12px rgba(227,171,91,0.6);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -12px rgba(227,171,91,0.7); }
.btn-primary .play { width: 9px; height: 11px; clip-path: polygon(0 0, 100% 50%, 0 100%); background: #2a1c0c; }
.btn-ghost { color: var(--cream); border: 1px solid var(--hair); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-bright); }
.btn-link { color: var(--cream-dim); padding: 6px 0; gap: 9px; }
.btn-link .arrow { transition: transform .25s ease; }
.btn-link:hover { color: var(--gold-bright); }
.btn-link:hover .arrow { transform: translateX(5px); }

.scroll-cue {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 9px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--cream-mute);
}
.scroll-cue .line { width: 1px; height: 44px; background: linear-gradient(var(--gold), transparent); position: relative; overflow: hidden; }
.scroll-cue .line::after { content: ""; position: absolute; top: -50%; left: 0; width: 100%; height: 50%; background: var(--gold-bright); animation: cuedrop 2s ease-in-out infinite; }
@keyframes cuedrop { 0% { top: -50%; } 60%,100% { top: 110%; } }
@media (prefers-reduced-motion: reduce){ .scroll-cue .line::after { animation: none; } }

/* =============================================================
   ABOUT
   ============================================================= */
.about-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(34px, 6vw, 84px); align-items: start; }
.about-portrait { position: relative; }
.about-portrait .photo { aspect-ratio: 3/4; }
.about-portrait .badge {
  position: absolute; left: -18px; bottom: 34px;
  background: var(--ink-700); border: 1px solid var(--hair);
  padding: 14px 18px; border-radius: 3px;
  box-shadow: 0 20px 40px -18px rgba(0,0,0,0.7);
}
.about-portrait .badge .b-num { font-family: var(--serif); font-size: 30px; color: var(--gold-bright); line-height: 1; }
.about-portrait .badge .b-cap { font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--cream-mute); margin-top: 5px; }
.about-bio p { font-size: clamp(16px, 1.25vw, 19px); color: var(--cream-dim); margin: 0 0 22px; max-width: 56ch; }
.about-bio p:first-child { color: var(--cream); font-size: clamp(18px, 1.5vw, 22px); line-height: 1.55; }
.about-bio p em { color: var(--gold-bright); font-style: italic; }
.about-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.chip {
  font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--cream-dim); border: 1px solid var(--hair); border-radius: 100px; padding: 7px 15px;
}

/* =============================================================
   FEATURED RELEASE — centerpiece
   ============================================================= */
.release { background: linear-gradient(180deg, var(--ink-900), var(--ink-850)); position: relative; overflow: hidden; }
.release::before { /* soundhole arc motif */
  content: ""; position: absolute; right: -180px; top: -120px; width: 620px; height: 620px;
  border-radius: 50%;
  border: 1px solid rgba(227,171,91,0.10);
  box-shadow: 0 0 0 60px rgba(227,171,91,0.04), inset 0 0 120px rgba(201,138,60,0.10);
  pointer-events: none;
}
.release-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(34px, 5vw, 70px); align-items: center; }
.release-cover { position: relative; }
.release-cover .photo { aspect-ratio: 1/1; box-shadow: 0 40px 90px -30px rgba(0,0,0,0.85), 0 0 0 1px var(--hair); }
.release-cover image-slot { filter: sepia(0.25) saturate(1.15) contrast(1.05); }
.release-cover .photo img { object-position: center 14%; filter: sepia(0.25) saturate(1.15) contrast(1.05); }
.release-title { font-size: clamp(44px, 7vw, 96px); font-weight: 420; line-height: 1.0; font-style: italic; letter-spacing: -0.02em; }
.release-meta { font-family: var(--mono); font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin: 22px 0 26px; }
.release-meta .sep { color: var(--cream-mute); margin: 0 10px; }
.release-desc { font-size: clamp(16px, 1.35vw, 20px); color: var(--cream-dim); max-width: 48ch; margin: 0 0 28px; }

.personnel { display: flex; flex-wrap: wrap; gap: 22px 34px; margin: 0 0 30px; padding: 0; list-style: none; }
.personnel li { display: flex; flex-direction: column; gap: 2px; }
.personnel .p-name { font-family: var(--serif); font-size: 18px; color: var(--cream); }
.personnel .p-role { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cream-mute); }

.spotify-wrap { margin: 8px 0 26px; border-radius: 12px; overflow: hidden; box-shadow: 0 20px 50px -24px rgba(0,0,0,0.8); }
.spotify-wrap iframe { display: block; width: 100%; border: 0; }

.forfans { border-top: 1px solid var(--hair); padding-top: 22px; }
.forfans .ff-label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--cream-mute); margin: 0 0 12px; }
.forfans .ff-list { display: flex; flex-wrap: wrap; gap: 8px; }
.forfans .ff-list span { font-size: 14px; color: var(--cream-dim); border: 1px solid var(--hair); border-radius: 100px; padding: 6px 14px; transition: border-color .25s, color .25s; }
.forfans .ff-list span:hover { border-color: var(--gold); color: var(--gold-bright); }

/* =============================================================
   BANDS — vertical timeline
   ============================================================= */
.timeline { position: relative; margin-top: 16px; }
.timeline::before { content: ""; position: absolute; left: 9px; top: 6px; bottom: 6px; width: 1px; background: linear-gradient(var(--gold), var(--hair) 70%, transparent); }
@media (min-width: 860px){ .timeline::before { left: 50%; transform: translateX(-50%); } }

.tl-item { position: relative; padding-left: 44px; padding-bottom: clamp(44px, 6vh, 72px); }
.tl-item:last-child { padding-bottom: 0; }
.tl-node {
  position: absolute; left: 0; top: 6px; width: 19px; height: 19px; border-radius: 50%;
  background: var(--ink-800); border: 1px solid var(--gold);
  display: grid; place-items: center;
}
.tl-node::after { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--gold-bright); box-shadow: 0 0 12px var(--gold); }
.tl-years { font-family: var(--mono); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.tl-head { display: flex; flex-wrap: wrap; align-items: baseline; gap: 12px; }
.tl-name { font-family: var(--serif); font-size: clamp(24px, 3vw, 34px); font-weight: 500; }
.tl-tag { font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-900); background: var(--gold); border-radius: 100px; padding: 3px 10px; }
.tl-role { font-family: var(--serif); font-style: italic; font-size: 18px; color: var(--cream); margin: 8px 0 10px; }
.tl-body { color: var(--cream-dim); max-width: 60ch; margin: 0; font-size: 16px; }
.tl-body em { color: var(--gold-bright); }
.tl-albums { list-style: none; padding: 0; margin: 16px 0 0; display: flex; flex-direction: column; gap: 7px; }
.tl-albums li { display: flex; align-items: center; gap: 11px; font-size: 14.5px; color: var(--cream-dim); font-family: var(--mono); letter-spacing: 0.02em; }
.tl-albums li::before { content: ""; width: 8px; height: 8px; transform: rotate(45deg); background: transparent; border: 1px solid var(--brass); flex: none; }

/* desktop alternating timeline */
@media (min-width: 860px) {
  .tl-item { width: 50%; padding-left: 0; }
  .tl-item.left  { left: 0; padding-right: 52px; text-align: right; }
  .tl-item.right { left: 50%; padding-left: 52px; }
  .tl-item .tl-node { left: auto; }
  .tl-item.left  .tl-node { right: -10px; left: auto; }
  .tl-item.right .tl-node { left: -10px; }
  .tl-item.left .tl-head, .tl-item.left .tl-albums li { justify-content: flex-end; }
  .tl-item.left .tl-body, .tl-item.left .tl-role { margin-left: auto; }
  .tl-item.left .tl-albums li { flex-direction: row-reverse; }
}

/* =============================================================
   CREDITS
   ============================================================= */
.credits { background: var(--ink-850); border-block: 1px solid var(--hair); }
.credits-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; border: 1px solid var(--hair); border-radius: 4px; overflow: hidden; }
.credit-cell { padding: 30px clamp(22px, 3vw, 38px); border-bottom: 1px solid var(--hair); }
.credit-cell:nth-child(odd) { border-right: 1px solid var(--hair); }
.credit-cell:nth-last-child(-n+2) { border-bottom: 0; }
.credit-cell .lead { font-family: var(--serif); font-size: 22px; color: var(--gold-bright); margin: 0 0 8px; }
.credit-cell .ct { color: var(--cream-dim); margin: 0; font-size: 16px; }
.credit-cell .ct em { color: var(--cream); font-style: italic; }

/* =============================================================
   LISTEN
   ============================================================= */
.listen-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.listen-card {
  display: flex; flex-direction: column; justify-content: space-between; gap: 40px;
  padding: 26px 24px; min-height: 168px; border: 1px solid var(--hair); border-radius: 4px;
  background: linear-gradient(180deg, var(--ink-700), var(--ink-800));
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.listen-card:hover { transform: translateY(-4px); border-color: var(--gold); box-shadow: 0 24px 50px -26px rgba(0,0,0,0.8); }
.listen-card .lc-top { display: flex; justify-content: space-between; align-items: flex-start; }
.listen-card .lc-name { font-family: var(--serif); font-size: 26px; font-weight: 500; }
.listen-card .lc-sub { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--cream-mute); }
.listen-card .lc-arrow { color: var(--gold); font-size: 20px; transition: transform .25s ease; }
.listen-card:hover .lc-arrow { transform: translate(4px, -4px); }

/* =============================================================
   CONTACT
   ============================================================= */
.contact { text-align: center; position: relative; overflow: hidden; }
.contact::before { content: ""; position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); width: 540px; height: 540px; border-radius: 50%; border: 1px solid rgba(227,171,91,0.10); box-shadow: inset 0 0 120px rgba(201,138,60,0.10); pointer-events: none; }
.contact .kicker { justify-content: center; }
.contact h2 { font-size: clamp(34px, 5.5vw, 70px); margin-bottom: 18px; }
.contact .blurb { color: var(--cream-dim); max-width: 40ch; margin: 0 auto 36px; font-size: clamp(16px,1.3vw,19px); }
.contact .email-btn {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--serif); font-style: italic; font-size: clamp(22px, 3.2vw, 38px);
  color: var(--gold-bright); border-bottom: 1px solid var(--hair); padding-bottom: 8px;
  transition: border-color .3s ease, transform .3s ease;
}
.contact .email-btn:hover { border-color: var(--gold); transform: translateY(-2px); }

/* =============================================================
   FOOTER
   ============================================================= */
.footer { padding: 46px var(--gutter); border-top: 1px solid var(--hair); display: flex; flex-wrap: wrap; gap: 18px 30px; align-items: center; justify-content: space-between; }
.footer .f-brand { font-family: var(--serif); font-size: 19px; }
.footer .f-brand .at { font-family: var(--mono); font-size: 11px; color: var(--gold); letter-spacing: 0.14em; margin-left: 8px; }
.footer .f-note { font-family: var(--serif); font-style: italic; color: var(--cream-mute); font-size: 15px; max-width: 36ch; }
.footer .f-copy { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; color: var(--cream-mute); }

/* =============================================================
   SCROLL REVEAL
   ============================================================= */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1 !important; transform: none !important; } }

/* =============================================================
   TWEAKS PANEL
   ============================================================= */
#tweaks { position: fixed; right: 18px; bottom: 18px; z-index: 80; width: 268px; background: rgba(20,15,10,0.95); backdrop-filter: blur(16px); border: 1px solid var(--hair); border-radius: 10px; padding: 16px 18px 18px; box-shadow: 0 30px 60px -24px rgba(0,0,0,0.85); display: none; }
#tweaks.show { display: block; }
#tweaks .tw-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
#tweaks .tw-title { font-family: var(--mono); font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); }
#tweaks .tw-close { background: none; border: 0; color: var(--cream-mute); cursor: pointer; font-size: 18px; line-height: 1; padding: 2px 4px; }
#tweaks .tw-close:hover { color: var(--cream); }
#tweaks .tw-row label { display: flex; justify-content: space-between; font-size: 12.5px; color: var(--cream-dim); margin-bottom: 9px; }
#tweaks .tw-row label .val { font-family: var(--mono); color: var(--gold-bright); }
#tweaks input[type=range] { width: 100%; -webkit-appearance: none; appearance: none; height: 3px; border-radius: 3px; background: var(--ink-600); outline: none; }
#tweaks input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; width: 16px; height: 16px; border-radius: 50%; background: var(--gold-bright); cursor: pointer; box-shadow: 0 0 10px rgba(227,171,91,0.6); }
#tweaks input[type=range]::-moz-range-thumb { width: 16px; height: 16px; border: 0; border-radius: 50%; background: var(--gold-bright); cursor: pointer; }
#tweaks .tw-hint { font-size: 11px; color: var(--cream-mute); margin-top: 12px; line-height: 1.5; }

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 980px) {
  .listen-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .nav-links { display: none; }
  .menu-btn { display: flex; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-portrait { max-width: 460px; }
  .about-portrait .badge { left: auto; right: 16px; }
  .release-grid { grid-template-columns: 1fr; }
  .release-cover { max-width: 360px; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .credits-grid { grid-template-columns: 1fr; }
  .credit-cell:nth-child(odd) { border-right: 0; }
  .credit-cell { border-bottom: 1px solid var(--hair); }
  .credit-cell:last-child { border-bottom: 0; }
  .listen-grid { grid-template-columns: 1fr; }
  .hero .tagline { max-width: 18ch; }
  #tweaks { left: 14px; right: 14px; width: auto; }
}
