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

[hidden] { display: none !important; }

/* ==================== PRELOADER ==================== */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  opacity: 1;
  transition: opacity .5s ease, visibility .5s ease;
}
.preloader.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader-box {
  position: relative;
  width: clamp(136px, 20.8vw, 200px);
}
.preloader-logo {
  width: 100%;
  height: auto;
  display: block;
  opacity: .19;
  filter: grayscale(1) contrast(1.15) brightness(1.1);
}
.preloader-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.preloader-label {
  font-family: var(--scrawl);
  font-size: 15px;
  color: var(--gold);
  letter-spacing: 1px;
  animation: preload-pulse 1.1s ease-in-out infinite;
}
.preloader-pct {
  font-family: var(--disp);
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--muted);
}
@keyframes preload-pulse {
  0%, 100% { opacity: .45; }
  50% { opacity: 1; }
}

html { scroll-behavior: auto; } /* Lenis smooth scroll handles anchor jumps */
.reveal {
  opacity: 0;
  transform: translateY(72px);
  will-change: transform, opacity;
  transition: opacity .9s ease, transform .9s cubic-bezier(.23,1,.32,1);
  transition-delay: var(--d, 0s);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
.doll .doll-stage.reveal { transform: translateY(72px); }
.doll .doll-stage.reveal.in-view { transform: translateY(0); }
.doll:nth-of-type(even) .doll-stage.reveal { transform: translateX(-70px) translateY(72px); }
.doll:nth-of-type(even) .doll-stage.reveal.in-view { transform: translateX(-70px) translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

:root {
  --bg: #0b0a08;
  --bg-2: #131009;
  --burlap: #d8c9a3;
  --bone: #ece5d2;
  --rust: #b0382c;
  --gold: #d8a84e;
  --muted: #8a7f66;
  --line: rgba(216,201,163,.16);
  --disp: 'Unbounded', system-ui, sans-serif;
  --body: 'Inter Tight', system-ui, sans-serif;
  --scrawl: 'Permanent Marker', cursive;
}

html { overflow-x: clip; }

body {
  background: var(--bg);
  color: var(--bone);
  font-family: var(--body);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  cursor: auto;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
::selection { background: var(--rust); color: var(--bone); }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--muted); border-radius: 2px; }
::-webkit-scrollbar-thumb:hover { background: var(--rust); }

/* ==================== THREAD CANVAS ==================== */
#threads {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  z-index: 0;
  pointer-events: none;
}

/* ==================== NAV ==================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 34px;
  min-height: 69px;
}
.nav-logo {
  position: absolute;
  left: clamp(14px, 3vw, 34px);
  top: 50%;
  transform: translateY(calc(-50% + 10px));
}
.nav-logo img {
  height: 49px;
  width: auto;
  display: block;
  filter: contrast(1.22) saturate(1.12) brightness(1.12) drop-shadow(0 2px 6px rgba(0,0,0,.6)) drop-shadow(0 0 26px rgba(216,168,78,.16));
}

.nav-eq {
  position: absolute;
  right: clamp(14px, 3vw, 34px);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 14px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  cursor: pointer;
  transition: opacity .4s, visibility .4s;
}
.nav-eq.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.nav-eq.visible:not(.playing) { opacity: .55; }
.nav-eq.visible:not(.playing):hover { opacity: .85; }
.nav-eq.playing { opacity: 1; }
.nav-eq.playing:hover { opacity: .75; }
.nav-eq i {
  width: 2px;
  height: 30%;
  background: linear-gradient(var(--rust), var(--gold));
}
.nav-eq.playing {
  opacity: 1;
  visibility: visible;
}
.nav-eq.playing i {
  animation: eqbar 0.8s ease-in-out infinite;
}
.nav-eq.playing i:nth-child(2n) { animation-delay: 0.15s; }
.nav-eq.playing i:nth-child(3n) { animation-delay: 0.3s; }

/* burger (2 lines) — always visible on mobile, opens the dropdown */
.nav-burger {
  display: none;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 32px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  z-index: 2;
}
.nav-burger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.6px;
  background: var(--bone);
  border-radius: 2px;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), opacity .3s;
}
.nav-burger span:first-child { top: 11px; }
.nav-burger span:last-child { bottom: 11px; }
.nav-burger:hover span { background: var(--bone); }
.nav.nav-open .nav-burger span:first-child { transform: translateY(4.2px) rotate(45deg); }
.nav.nav-open .nav-burger span:last-child { transform: translateY(-4.2px) rotate(-45deg); }

/* centered logo on the dark bar (mobile) */
.nav-mini {
  display: none;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.nav-mini img {
  height: 43px;
  width: auto;
  display: block;
}

/* mobile nav = always-on dark bar: burger opens a fullscreen centered menu */
@media (max-width: 900px) {
  .nav {
    background: rgba(11, 10, 8, .70);
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
  }
  .nav-logo { display: none; }
  .nav-burger,
  .nav-mini {
    display: block;
    opacity: 1;
    transition: opacity .45s ease;
  }

  /* closed: plain bar, no links */
  .nav .nav-links { display: none; }

  /* open: fullscreen dark panel, links stacked vertically in the center */
  .nav.nav-open .nav-links {
    display: flex;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100vw;
    height: 100vh;
    transform: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin: 0;
    padding-bottom: 100px;
    background: rgba(11, 10, 8, .97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 400;
  }
  .nav.nav-open .nav-links a {
    display: block;
    width: max-content;
    font-family: var(--disp);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--bone);
    opacity: 1;
  }
  .nav.nav-open .nav-links a:hover { color: var(--gold); }
  .nav.nav-open .nav-close { display: block; }
  .nav.nav-open .nav-links .nav-mail {
    display: block;
    position: absolute;
    left: 0; right: 0;
    bottom: 136px;
    text-align: center;
    font-family: var(--body);
    font-size: 9.6px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    white-space: nowrap;
    color: var(--muted);
  }
  .nav.nav-open .nav-links .nav-mail a {
    display: inline;
    width: auto;
    font-family: var(--body);
    font-size: 9.6px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: color .3s;
  }
  .nav.nav-open .nav-links .nav-mail a:hover { color: var(--rust); }
}
/* close X pinned top-right of the fullscreen menu (mobile only) */
.nav-close {
  display: none;
  position: absolute;
  top: 22px;
  right: 22px;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  z-index: 401;
}
.nav-close span {
  position: absolute;
  left: 0; top: 50%;
  width: 100%;
  height: 2px;
  background: var(--rust);
  border-radius: 2px;
  transition: background .3s;
  transform-origin: center;
}
.nav-close span:first-child { transform: translateY(-50%) rotate(45deg); }
.nav-close span:last-child { transform: translateY(-50%) rotate(-45deg); }
.nav-close:hover span { background: var(--rust); }
.nav-mail { display: none; }
.nav.nav-open .nav-mini,
.nav.nav-open .nav-eq { opacity: 0; }

/* ============ doll info modal — same look as the fullscreen menu (mobile + desktop) ============ */
.doll-modal {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(11, 10, 8, .97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 400;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.doll-modal.open { display: block; }
.doll-modal-close {
  position: fixed;
  top: 22px;
  right: 22px;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  z-index: 401;
}
.doll-modal-close span {
  position: absolute;
  left: 0; top: 50%;
  width: 100%;
  height: 2px;
  background: var(--rust);
  border-radius: 2px;
  transform-origin: center;
}
.doll-modal-close span:first-child { transform: translateY(-50%) rotate(45deg); }
.doll-modal-close span:last-child { transform: translateY(-50%) rotate(-45deg); }
.doll-modal-close:hover span { background: var(--rust); }
.doll-modal-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 90px 24px 60px;
  text-align: left;
}
.doll-modal-box > * { width: 100%; max-width: 1100px; }
.doll-modal-box h3 {
  font-family: var(--disp);
  font-weight: 900;
  font-size: clamp(26px, 5.5vw, 40px);
  line-height: 1.25;
  letter-spacing: 2px;
  color: var(--bone);
  text-align: left;
}
.doll-modal-box .doll-role { text-align: left; line-height: 1.3; }
.doll-modal-box .doll-title { font-size: 18px; line-height: 1.5; text-align: left; }
@media (min-width: 901px) {
  .doll-modal-box .doll-title { font-size: 26px; }
  .doll-modal-box > * { max-width: 1214px; }

  /* scroll scrim behind the fixed desktop nav — darker at top, fading to transparent */
  .nav::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 140px;
    background: linear-gradient(rgba(11,10,8,.74), rgba(11,10,8,0));
    pointer-events: none;
    opacity: 0;
    transition: opacity .35s ease;
    z-index: -1;
  }
  .nav.nav-shadow::before { opacity: 1; }
}
.doll-modal-body {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 34px;
}
.doll-bio-photo {
  flex: 0 0 min(34%, 380px);
  max-width: 380px;
  margin: 0;
}
.doll-bio-photo img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
}
.doll-bio-text {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 15px;
  line-height: 1.85;
  color: var(--muted);
  text-align: left;
}
.doll-bio-text > p:not(.doll-role) {
  margin-top: 24px;
  font-size: 15px;
  line-height: 1.85;
  color: var(--muted);
  text-align: justify;
  text-wrap: wrap;
  hyphens: auto;
}
.doll-modal-body p + p { margin-top: 14px; }
.doll-modal-box .doll-scrawl {
  display: block;
  width: 100%;
  margin-top: 28px;
  padding-top: 14px;
  font-size: 15px;
  text-align: left;
}
@media (max-width: 900px) {
  .doll-modal-box { align-items: center; text-align: center; }
  .doll-modal-box > * { width: 100%; }
  .doll-modal-box h3,
  .doll-modal-box .doll-role,
  .doll-modal-box .doll-title,
  .doll-modal-box .doll-scrawl { text-align: center; }
  .doll-modal-body { flex-direction: column; align-items: center; gap: 0; }
  .doll-bio-text { display: contents; }
  .doll-bio-text > p:not(.doll-role) { margin-top: 0; }
  .doll-bio-text > p:not(.doll-role) + p { margin-top: 18px; }
  .doll-bio-photo { flex: 0 0 auto; align-self: center; width: 100%; max-width: 300px; margin: 22px 0; }
  .doll-bio-photo img { width: 100%; height: auto; }
  .doll-modal-box .doll-role { order: -3; }
  .doll-modal-box .doll-bio-text h3 { order: -2; }
  .doll-modal-box .doll-bio-text .doll-title { order: -1; }
}

.nav-links {
  display: flex;
  gap: 26px;
  transform: translateY(10px);
}
.nav-links a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--bone);
  opacity: .75;
  position: relative;
  transition: opacity .3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 50%; top: calc(100% + 4px);
  transform: translateX(-50%) scaleX(0);
  width: 100%;
  height: 2px;
  background: var(--rust);
  opacity: 0;
  transition: opacity .45s, transform .525s cubic-bezier(.2,.8,.2,1);
}
.nav-links a:hover { opacity: 1; color: var(--rust); }
.nav-links a:hover::after {
  opacity: .9;
  transform: translateX(-50%) scaleX(1);
}
.bug {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--bone);
  font-family: var(--disp);
  font-size: 11px;
  letter-spacing: 2px;
  padding: 9px 14px;
  cursor: auto;
  transition: transform .3s;
}
.bug:hover { transform: rotate(-2deg) scale(1.025); }


/* ============ mobile performance (one shot) ============ */
/* cap draw/repaint budget on small screens */
@media (max-width: 900px) {
  :root { --dpr-cap: 1.5; }
  .preloader-logo, .orbit-ring, .sway-field, .marquee-2 { will-change: auto; }
}
@media (max-width: 720px) {
  /* kill redundant drop-shadow/blur passes: posterize filters drop to near-flat */
  .hero-eq, .nav-eq { filter: none; }
  .doll-sway img, .doll-card img, .hero-logo { filter: none; }
  .doll-card, .manifesto { box-shadow: none; }
  /* no hover glow behind characters + no ember particles on mobile */
  .doll-fx { display: none; }
  .dolls-word { background-attachment: scroll; } /* kill iOS fixed-bg repaint each scroll */
  .thread-doll, .doll-soul { opacity: .9; }
}
@media (max-width: 520px) {
  .hero-scroll, .orbit-eq, .roundel { display: none; }
}
/* universal typography — balanced wrapping + centered copy */
:where(h1, h2, h3, h4, h5, h6, p, blockquote, figcaption, label, dt, dd, th, td, summary) {
  text-wrap: balance;
  text-align: center;
}
/* dense edges: binomial widths for many two-digit numbers */
.doll-card .count,
.track-stat em,
.track-time,
.footer-pct { font-variant-numeric: tabular-nums; }
/* folder-y dividers line up tight */
.code-line { letter-spacing: .3px; }

@media (max-width: 900px) {
  .nav-links { gap: 16px; }
  .nav-links a { font-size: 10px; letter-spacing: 2px; }
}
@media (max-width: 720px) {
  .nav { padding: 14px 10px; }
  .nav-links { gap: 10px; flex-wrap: wrap; }
  .nav-links a { font-size: 9px; letter-spacing: 1px; }
  .nav-logo { display: none; }
}

/* ==================== HERO ==================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}

.hero-logo {
  position: relative;
  z-index: 2;
  width: min(654px, 74vw);
  margin-inline: auto;
  display: block;
  filter: contrast(1.22) saturate(1.12) drop-shadow(0 0 30px rgba(216,168,78,.06));
  animation: hero-logo-float 8s ease-in-out infinite;
}
@media (min-width: 681px) {
  .hero-logo { width: min(817px, 74vw); }
}
@keyframes hero-logo-float {
  0%, 100% {
    translate: 0 -8px;
    rotate: -0.6deg;
    scale: 0.99;
  }
  50% {
    translate: 0 8px;
    rotate: 0.6deg;
    scale: 1.02;
  }
}

.hero-tag {
  position: relative;
  z-index: 2;
  margin-top: 30px;
  margin-inline: auto;
  width: max-content;
  max-width: 92vw;
  text-align: center;
  font-family: var(--scrawl);
  font-size: clamp(22px, 4vw, 34px);
  color: var(--burlap);
  text-wrap: balance;
}
.hero-sub {
  position: relative;
  z-index: 2;
  margin-top: 18px;
  margin-inline: auto;
  width: max-content;
  max-width: 560px;
  text-align: center;
  font-size: clamp(13px, 1.6vw, 15px);
  line-height: 1.9;
  color: var(--muted);
  text-wrap: balance;
}
.hero-cta { position: relative; z-index: 2; margin-top: 44px; }

.hero-eq {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 20px;
  margin-top: 30px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
}
.hero-eq i {
  width: 2px;
  height: 30%;
  background: linear-gradient(var(--rust), var(--gold));
}
.hero-eq.playing i {
  animation: eqbar 0.8s ease-in-out infinite;
}
.hero-eq.playing i:nth-child(2n) { animation-delay: 0.15s; }
.hero-eq.playing i:nth-child(3n) { animation-delay: 0.3s; }
@keyframes eqbar {
  0%, 100% { height: 30%; }
  50% { height: 100%; }
}

.stitch-btn {
  display: inline-block;
  position: relative;
  font-family: var(--disp);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 3px;
  color: var(--bone);
  border: 1px solid var(--burlap);
  padding: 18px 34px;
  transition: color .35s, transform .35s, box-shadow .35s;
  transform: skewX(-6deg);
}
.stitch-btn:hover {
  background: rgba(176,56,44,.5);
  color: var(--bone);
  transform: skewX(-6deg) translateY(-1.5px);
  box-shadow: 3px 3px 0 rgba(176,56,44,.28);
}
.stitch-btn span { display: inline-block; transform: skewX(6deg); }

.hero-scroll {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  animation: float-down 2.4s ease-in-out infinite;
}
.hero-scroll span { font-size: 10px; }
.scroll-line { width: 1px; height: 46px; background: linear-gradient(var(--rust), transparent); }
@keyframes float-down { 0%,100% { transform: translate(-50%,0); } 50% { transform: translate(-50%,8px); } }

/* ==================== MANIFESTO ==================== */
.manifesto {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  grid-template-areas:
    "title text"
    "sign .";
  column-gap: clamp(20px, 5vw, 70px);
  row-gap: 10px;
  align-items: start;
  padding: clamp(30px, 14vh, 110px) 24px;
  text-align: left;
}
.manifesto-title,
.manifesto-body,
.manifesto-sign {
  text-align: left;
}
.manifesto-title {
  grid-area: title;
  font-family: var(--disp);
  font-weight: 900;
  font-size: clamp(27.2px, 4.29vw, 57.5px);
  line-height: 1.15;
  letter-spacing: -1px;
  color: var(--bone);
}
.manifesto-text {
  position: relative;
  grid-area: text;
  font-size: clamp(14px, 2vw, 16.5px);
  line-height: 1.9;
  color: var(--muted);
}
.manifesto-body {
  margin-top: 20px;
  max-width: 500px;
  font-weight: 500;
  font-size: clamp(15px, 2.1vw, 17.5px);
}
.manifesto-body:first-child { margin-top: 0; }
.mark {
  color: var(--bone);
  font-weight: 500;
  background: linear-gradient(transparent 62%, rgba(176,56,44,.38) 62%);
  padding: 0 2px;
}
.manifesto-sign {
  grid-area: sign;
  margin-top: 26px;
  font-family: var(--scrawl);
  font-size: 20px;
  color: var(--gold);
}

@media (max-width: 820px) {
  .manifesto {
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "text"
      "sign";
    padding: clamp(30px, 14vh, 110px) 24px;
  }
}

/* ==================== DOLLS ==================== */
.dolls {
  position: relative;
  z-index: 2;
  padding: 40px 24px 0;
}
.dolls-heading {
  text-align: center;
  font-family: var(--disp);
  font-weight: 900;
  font-size: clamp(44px, 7vw, 84px);
  letter-spacing: 2px;
  color: var(--bone);
  margin-bottom: 10px;
}
.dolls-thread {
  position: absolute;
  top: 0; bottom: 0; left: 50%;
  width: 1.5px;
  background: repeating-linear-gradient(var(--line) 0 6px, transparent 6px 12px);
  z-index: 0;
}

.dolls-thread::before {
  content: '';
  position: absolute;
  top: -500px; left: 50%;
  width: 1.5px;
  height: 500px;
  background: repeating-linear-gradient(var(--line) 0 6px, transparent 6px 12px);
  transform: translateX(-50%);
}
.dolls-thread i {
  display: block;
  width: 9.6px; height: 9.6px;
  margin: 0 auto;
  background: var(--rust);
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

/* member names marquee */
.names-marquee {
  display: flex;
  gap: 26px;
  align-items: center;
  overflow: hidden;
  white-space: nowrap;
  padding: 18px 0;
  margin: 26px 0 10px;
  border-top: 1px dashed var(--line);
  border-bottom: 1px dashed var(--line);
}
.names-marquee span {
  font-family: var(--disp);
  font-weight: 800;
  font-size: clamp(16px, 2.6vw, 30px);
  letter-spacing: 6px;
  color: transparent;
  -webkit-text-stroke: 1px var(--burlap);
  animation: names-scroll 22s linear infinite;
}
.names-marquee em {
  font-style: normal;
  color: var(--rust);
  font-size: 14px;
  animation: names-scroll 22s linear infinite;
}
@keyframes names-scroll { to { transform: translateX(-50%); } }

/* per-doll accent */
.doll[data-doll="melvin"] { --acc: #a83660; --glow: rgba(168,54,96,.7); }
.doll[data-doll="rusty"]  { --acc: #d8a84e; --glow: rgba(216,168,78,.7); }
.doll[data-doll="voice"]  { --acc: #e0d5b6; --glow: rgba(224,213,182,.7); }
.doll[data-doll="pulse"]  { --acc: #b0382c; --glow: rgba(176,56,44,.7); }

.doll {
  position: relative;
  z-index: 2;
  min-height: 115vh;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: center;
  gap: clamp(20px, 5vw, 70px);
  max-width: 1500px;
  margin: 0 auto;
  padding: 90px 0;
}

.doll-stage {
  position: relative;
  z-index: 1;
  order: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.doll:nth-of-type(even) .doll-stage { order: 2; transform: translateX(-70px); }
.doll:nth-of-type(even) .doll-card  { order: 1; }

/* big faint button behind the manifesto text block */
.manifesto-btn {
  position: absolute;
  z-index: 0;
  top: calc(50% + 50px);
  left: calc(50% + 300px);
  translate: -50% -50%;
  width: clamp(468px, 54vw, 756px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: url('button.webp') center / contain no-repeat;
  opacity: .06;
  animation: button-spin-rot 90s linear infinite;
  will-change: translate;
  pointer-events: none;
}
@keyframes button-spin-rot { to { rotate: 360deg; } }

/* big faint button behind the tracks, bottom-left */
.tracks-btn {
  position: absolute;
  z-index: 0;
  bottom: -180px;
  left: -140px;
  width: clamp(468px, 54vw, 756px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: url('button.webp') center / contain no-repeat;
  opacity: .08;
  animation: button-spin-rot 90s linear infinite;
  will-change: translate;
  pointer-events: none;
}

.doll-sway {
  display: block;
  position: relative;
  z-index: 1;
  will-change: transform;
}
.doll-sway img {
  position: relative;
  z-index: 1;
  height: min(94vh, 1104px);
  width: auto;
  max-width: 64vw;
  object-fit: contain;
  filter: drop-shadow(0 40px 70px rgba(0,0,0,.75));
  transition: filter .5s ease-in-out, transform .4s cubic-bezier(.2,.8,.2,1);
}
.doll.hovering .doll-sway img {
  filter: drop-shadow(0 40px 90px var(--glow));
  transition: filter .5s ease-in-out, transform .4s cubic-bezier(.2,.8,.2,1);
}
.doll-fx {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* spinning roundel badge — removed */

.doll-noose {
  position: absolute;
  top: -10px; left: 50%;
  width: 3px; height: 56px;
  background: var(--burlap);
  border-radius: 2px;
}
.doll-noose::after {
  content: '';
  position: absolute;
  bottom: -12px; left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 18px; height: 18px;
  border: 3px solid var(--burlap);
  border-left-color: transparent;
  border-top-color: transparent;
}

.doll-card { position: relative; z-index: 1; order: 2; padding: 30px 0; text-align: left; }
.doll-card h3,
.doll-card .doll-role,
.doll-card .doll-title,
.doll-card .doll-bio,
.doll-card .doll-scrawl {
  text-align: left;
}
.doll-role {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--acc);
  margin-bottom: 16px;
}
.doll-card h3 {
  font-family: var(--disp);
  font-weight: 900;
  font-size: clamp(27px, 4.16vw, 51px);
  letter-spacing: 2px;
  color: var(--bone);
}
.doll-title {
  display: inline-block;
  margin-top: 10px;
  font-family: var(--scrawl);
  font-size: 16px;
  color: var(--acc);
  transform: none;
}
.doll-bio {
  margin-top: 22px;
  font-size: clamp(14px, 1.8vw, 16px);
  line-height: 1.9;
  color: var(--muted);
  max-width: 500px;
}
.doll-scrawl {
  display: inline-block;
  margin-top: 26px;
  font-family: var(--scrawl);
  font-size: 15px;
  color: var(--burlap);
  opacity: .75;
  border-top: 1px dashed var(--line);
  padding-top: 14px;
}

/* mini stitch button under each doll bio — like the hero CTA, 1.5x smaller */
.doll-more {
  display: block;
  width: fit-content;
  margin: 44px 0 0;
  cursor: pointer;
  font-family: var(--disp);
  font-weight: 800;
  font-size: 9px;
  letter-spacing: 2px;
  line-height: 44px;
  color: var(--bone);
  border: 1px solid var(--burlap);
  min-height: 46px;
  padding: 0 22px;
  transform: skewX(-6deg);
  transition: color .35s, transform .35s, box-shadow .35s, background .35s;
}
.doll-more:hover,
.doll-more:active {
  background: color-mix(in srgb, var(--acc) 50%, transparent);
  color: #fff;
  transform: skewX(-6deg) translateY(-1.5px);
  box-shadow: 3px 3px 0 color-mix(in srgb, var(--acc) 28%, transparent);
}
.doll-more-main { display: inline-block; transform: skewX(6deg); }

/* case-file stamp on the card */
.doll-stamp {
  display: inline-block;
  margin: 20px 0 0 14px;
  font-family: var(--disp);
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--acc);
  border: 2px solid var(--acc);
  border-radius: 4px;
  padding: 4px 10px;
  transform: rotate(6deg);
  opacity: .85;
}
.doll-stamp--gold { color: var(--gold); border-color: var(--gold); transform: rotate(-5deg); }
.doll-stamp--bone { color: var(--burlap); border-color: var(--burlap); transform: rotate(3deg); }
.doll-stamp--rust { color: var(--rust); border-color: var(--rust); transform: rotate(-7deg); }

@media (max-width: 820px) {
  .doll { grid-template-columns: 1fr; min-height: 0; padding: 47px 0 14px; gap: 50px; }
  .doll:first-of-type { padding-top: 93px; }
  .doll + .doll { margin-top: 10px; }
  .doll-card { padding-top: 0; }
  .doll-stage, .doll:nth-of-type(even) .doll-stage,
  .doll-card, .doll:nth-of-type(even) .doll-card { order: 0; }
  .doll-stage,
  .doll:nth-of-type(even) .doll-stage,
  .doll .doll-stage.reveal,
  .doll .doll-stage.reveal.in-view,
  .doll:nth-of-type(even) .doll .doll-stage.reveal,
  .doll:nth-of-type(even) .doll .doll-stage.reveal.in-view { transform: none; }
  .doll-sway img { display: block; width: 84%; height: auto; max-width: 100%; margin: 0 auto; }
  .doll[data-doll="rusty"] .doll-sway img { width: 98.4%; }
  .doll[data-doll="voice"] .doll-sway img { width: 74.4%; }
  .doll[data-doll="pulse"] .doll-sway img { width: 70.8%; }
  .dolls-thread { display: none; }
}

/* ==================== SHOWREEL ==================== */
.showreel {
  position: relative;
  z-index: 2;
  padding: clamp(60px, 10vh, 120px) 0;
  background: var(--bg);
  box-shadow: inset 0 0 clamp(60px, 10vw, 180px) rgba(0, 0, 0, 0.55);
  overflow: hidden;
}
.showreel::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: .38;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.4 0.48' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 1 0  0 0 0 1 0  0 0 0 1 0  0 0 0 1 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 0.55s steps(6) infinite;
}
@keyframes grain {
  0%   { background-position: 0 0; }
  20%  { background-position: -40px 30px; }
  40%  { background-position: 30px -20px; }
  60%  { background-position: -15px -35px; }
  80%  { background-position: 45px 15px; }
  100% { background-position: 0 0; }
}
.showreel-heading {
  text-align: center;
  font-family: var(--disp);
  font-weight: 900;
  font-size: clamp(44px, 7vw, 84px);
  letter-spacing: 2px;
  color: var(--bone);
  margin-bottom: 10px;
}
.showreel-note {
  text-align: center;
  margin-top: 14px;
  font-size: 13px;
  color: var(--muted);
}
.drag-hint {
  font-family: var(--scrawl);
  color: var(--gold);
  font-size: 15px;
}
.reel-wrap { position: relative; margin-top: 50px; }
.reel {
  overflow-x: auto;
  scrollbar-width: none;
  cursor: grab;
  position: relative;
}
.reel::-webkit-scrollbar { display: none; }
.reel.dragging { cursor: grabbing; }
.reel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 53px; height: 53px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--burlap);
  font-size: 21px;
  line-height: 1;
  cursor: pointer;
  transition: color .3s, border-color .3s, transform .3s, background .3s;
}
.reel-prev { left: 8px; }
.reel-next { right: 8px; }
.reel-nav:hover { color: var(--rust); border-color: var(--rust); transform: translateY(-50%) scale(1.04); }
.reel-nav:disabled { opacity: .3; pointer-events: none; }
.reel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 18px;
  font-family: var(--scrawl);
  font-size: 15px;
  color: var(--muted);
  user-select: none;
}
.reel-nav-bottom {
  width: 53px; height: 53px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--burlap);
  font-size: 21px;
  line-height: 1;
  cursor: pointer;
  transition: color .3s, border-color .3s, transform .3s;
}
.reel-nav-bottom:hover { color: var(--rust); border-color: var(--rust); transform: scale(1.04); }
.reel-nav-bottom:disabled { opacity: .3; pointer-events: none; }
.reel-track {
  display: flex;
  gap: 22px;
  width: max-content;
  padding: 20px 40px;
}
.reel-track img {
  height: clamp(220px, 40vh, 400px);
  width: auto;
  object-fit: cover;
  filter: saturate(.7) contrast(1.05);
  transition: transform .45s cubic-bezier(.2,.8,.2,1), filter .4s, box-shadow .4s;
  transform-origin: center;
}
.reel-track img:hover {
  transform: scale(1.02) rotate(-.3deg);
  filter: saturate(.85) contrast(1.05);
  box-shadow: 4px 4px 0 rgba(176,56,44,.35);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 20000;
  background: #0b0a08;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
  animation: fade-in .3s ease;
}
.lightbox img {
  max-width: 92vw;
  max-height: 80vh;
  object-fit: contain;
}
.lightbox p { margin-top: 16px; font-family: var(--scrawl); color: var(--gold); font-size: 18px; }
.lightbox-stage {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lightbox-close,
.lightbox-nav {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  line-height: 1;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--burlap);
  cursor: pointer;
  transition: color .3s, border-color .3s, transform .3s;
}
.lightbox-close { top: -16px; right: -16px; width: 36px; height: 36px; font-size: 14px; }
.lightbox-prev { left: 22px; top: 50%; transform: translateY(-50%); font-size: 24px; }
.lightbox-next { right: 22px; top: 50%; transform: translateY(-50%); font-size: 24px; }
.lightbox-nav:hover { transform: translateY(-50%) scale(1.05); color: var(--rust); border-color: var(--rust); }
.lightbox-close:hover { transform: rotate(45deg) scale(1.05); color: var(--rust); border-color: var(--rust); }
@media (min-width: 901px) {
  .lightbox-close {
    position: fixed;
    top: 22px;
    right: 22px;
    width: 34px;
    height: 34px;
    padding: 0;
    border: 0;
    background: transparent;
    font-size: 0;
  }
  .lightbox-close .lb-glyph { display: none; }
  .lightbox-close .lb-bar {
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 2px;
    background: var(--rust);
    border-radius: 2px;
    transform-origin: center;
  }
  .lightbox-close .lb-a { transform: translateY(-50%) rotate(45deg); }
  .lightbox-close .lb-b { transform: translateY(-50%) rotate(-45deg); }
  .lightbox-close:hover { transform: none; border-color: transparent; }
  .lightbox-close:hover .lb-bar { background: var(--rust); }
}
@media (max-width: 900px) {
  .lightbox-close {
    position: fixed;
    top: 22px;
    right: 22px;
    width: 34px;
    height: 34px;
    padding: 0;
    border: 0;
    background: transparent;
    font-size: 0;
  }
  .lightbox-close .lb-glyph { display: none; }
  .lightbox-close .lb-bar {
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 2px;
    background: var(--rust);
    border-radius: 2px;
    transform-origin: center;
  }
  .lightbox-close .lb-a { transform: translateY(-50%) rotate(45deg); }
  .lightbox-close .lb-b { transform: translateY(-50%) rotate(-45deg); }
  .lightbox-close:hover { transform: none; border-color: transparent; }
  .lightbox-close:hover .lb-bar { background: var(--rust); }
}
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }

/* ==================== TRACKS ==================== */
.tracks {
  position: relative;
  z-index: 2;
  padding: clamp(60px, 10vh, 120px) 0 90px;
  background: transparent;
  overflow: hidden;
}
.tracks-heading {
  text-align: center;
  font-family: var(--disp);
  font-weight: 900;
  font-size: clamp(44px, 7vw, 84px);
  letter-spacing: 2px;
  color: var(--bone);
  margin-bottom: 10px;
}
.tracks-note {
  text-align: center;
  margin-top: 14px;
  font-size: 13px;
  color: var(--muted);
}
.tracks-note--foot {
  margin-top: 40px;
  font-family: var(--scrawl);
  font-size: 13.5px;
  color: var(--gold);
  opacity: .9;
}

.track-list {
  list-style: none;
  max-width: 1180px;
  margin: 54px auto 0;
  padding: 0 clamp(24px, 6vw, 90px);
}
.track-row {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr auto auto;
  align-items: center;
  gap: 22px;
  padding: 19.8px 14px;
  border-top: 1px dashed var(--line);
  cursor: pointer;
  transition: background .35s, padding-left .35s;
  overflow: hidden;
}
.track-row:first-child { border-top: none; }
.track-row:last-child { border-bottom: 1px dashed var(--line); }
.track-row:hover { background: rgba(216,201,163,.01); padding-left: 24px; }
.track-num {
  font-family: var(--disp);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 3px;
  color: var(--muted);
  transition: color .3s;
}
.track-row:hover .track-num { color: var(--rust); }
.track-row.playing .track-num { color: var(--rust); }
.track-title {
  font-family: var(--disp);
  font-weight: 423;
  font-size: clamp(13.5px, 1.8vw, 16.4px);
  letter-spacing: .5px;
  color: var(--bone);
  transition: color .3s;
}
.track-row.playing .track-title { color: var(--rust); }
.track-row.paused .track-title { color: var(--burlap); }
.track-meta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.track-time-lab {
  font-family: var(--body);
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}
.track-play {
  position: relative;
  width: 42px; height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--burlap);
  font-size: 12px;
  line-height: 1;
  cursor: pointer;
  transition: color .3s, border-color .3s, background .3s, transform .3s;
}
.track-play:hover { color: var(--rust); border-color: var(--rust); transform: scale(1.05); }
.track-play-ic { display: flex; transform: translateX(1px); }
.track-play::after {
  content: '❚❚';
  position: absolute;
  font-size: 10px;
  opacity: 0;
  transition: opacity .2s;
}
.track-row.playing .track-play {
  background: var(--rust);
  border-color: var(--rust);
  color: var(--bone);
}
.track-row.playing .track-play-ic { opacity: 0; }
.track-row.playing .track-play::after { opacity: 1; }

/* seek bar pinned to the bottom of the active row */
.track-bar {
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 14px;
  background: transparent;
  cursor: pointer;
  touch-action: none;
}
.track-row:not(.playing) .track-bar { pointer-events: none; opacity: 0; }
.track-bar::before {
  content: '';
  position: absolute;
  left: 0; bottom: 5px;
  width: 100%;
  height: 2px;
  background: rgba(216,201,163,.16);
}
.track-bar-fill {
  position: absolute;
  left: 0; bottom: 5px;
  height: 2px;
  width: 0%;
  background: var(--rust);
  transition: width .15s linear;
}
.track-bar.dragging .track-bar-fill { transition: none; }
.track-bar-fill::after {
  content: '';
  position: absolute;
  right: -4px; top: 50%;
  transform: translateY(-50%);
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--bone);
  box-shadow: 0 0 0 2px rgba(11,10,8,.8);
  opacity: 0;
  transition: opacity .2s;
}
.track-bar:hover .track-bar-fill::after,
.track-bar.dragging .track-bar-fill::after { opacity: 1; }

/* equalizer in the playing row */
.track-eq {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 12px;
  visibility: hidden;
}
.track-row.playing .track-eq { visibility: visible; }
.track-row.paused .track-eq { visibility: hidden; }
.track-eq i {
  width: 2px;
  height: 30%;
  background: var(--rust);
  animation: eq-bounce 1s ease-in-out infinite;
}
.track-eq i:nth-child(2) { animation-delay: .22s; }
.track-eq i:nth-child(3) { animation-delay: .44s; }
@keyframes eq-bounce {
  0%, 100% { height: 30%; }
  50% { height: 100%; }
}

@media (max-width: 720px) {
  .track-row { grid-template-columns: 40px 1fr auto; gap: 14px; padding: 18px 10px; }
  .track-num { font-size: 11px; letter-spacing: 2px; }
  .track-play { width: 38px; height: 38px; }
  .track-eq { display: none; }
}

/* ==================== FOOTER ==================== */
.footer {
  position: relative;
  z-index: 2;
  border-top: none;
  padding: 60px 24px 40px;
  background: var(--bg);
}
.footer-thread {
  position: relative;
  z-index: 2;
  height: 1.4px;
  background: repeating-linear-gradient(90deg, var(--rust) 0 18px, transparent 18px 30px);
}
.footer .footer-thread {
  position: absolute;
  top: -1px; left: 0; right: 0;
}
.footer-grid {
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(16px, 4vw, 56px);
}
.footer-big {
  flex: none;
  line-height: 1;
  text-align: center;
  transition: opacity .35s;
  opacity: .82;
}
.footer-col { display: none; }
.footer-big img {
  width: clamp(182px, 22.4vw, 294px);
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 8px 30px rgba(0,0,0,.6));
}
.footer-big:hover { opacity: 1; }
.footer-line {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 0;
  font-size: 9.6px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}
.footer-line a { color: var(--burlap); transition: color .3s; }
.footer-line a:hover { color: var(--rust); }
.footer-line a.footer-mail { color: var(--muted); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; transition: color .3s; }
.footer-line a.footer-mail:hover { color: var(--rust); }
.footer-mail:hover { color: var(--rust); }
.footer-mail-wrap { white-space: nowrap; }
.footer-line--l {
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.footer-line--r {
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.footer-sway { font-family: var(--scrawl); text-transform: none; letter-spacing: 0; color: var(--gold); font-size: 11.2px; }

/* ==================== UTIL ==================== */
[data-tilt] { transition: transform .4s cubic-bezier(.2,.8,.2,1); will-change: transform; }

/* ==================== RESPONSIVE ==================== */

/* — tablet — */
@media (max-width: 900px) {
  .showreel { padding: clamp(60px, 10vh, 120px) 24px; }
  .track-row { gap: 14px; padding: 18px 0; }
  .track-eq { display: none; }
  .track-list { padding: 0; }
  .tracks { padding: clamp(60px, 10vh, 120px) 24px 90px; }
  .doll-sway img { display: block; width: 84%; height: auto; max-width: 100%; margin: 0 auto; }
  .doll[data-doll="rusty"] .doll-sway img { width: 98.4%; }
  .doll[data-doll="voice"] .doll-sway img { width: 74.4%; }
  .doll[data-doll="pulse"] .doll-sway img { width: 70.8%; }
  .doll-card h3 { font-size: clamp(31px, 4.16vw, 55px); }
  .doll-title { font-size: 18px; }
  .manifesto { padding: clamp(30px, 14vh, 110px) 24px; }
  .manifesto-sign .manifesto-now { display: block; }
  .dolls-heading { white-space: pre-line; font-size: clamp(31px, 4.16vw, 55px); }
  .dolls-heading-band { display: block; font-size: 1.3em; }
  .tracks-btn { display: none; }
}

/* — mobile — */
@media (max-width: 720px) {
  .hero { padding: 100px 20px 60px; min-height: 100vh; min-height: 100svh; }
  .hero-sub { max-width: 92vw; }
  .hero-tag { margin-top: 20px; }

  .dolls { padding: 40px 0 0; }

  .manifesto,
  .manifesto-title,
  .manifesto-body,
  .manifesto-sign,
  .manifesto-text { text-align: center; }

  .doll-card,
  .doll-card h3,
  .doll-card .doll-role,
  .doll-card .doll-title,
  .doll-card .doll-bio,
  .doll-card .doll-scrawl { text-align: center; }
  .doll-more { margin: 44px auto 0; }

  .manifesto { padding: clamp(30px, 10vh, 80px) 20px; }
  .dolls-heading { font-size: clamp(26px, 5.5vw, 40px); }

  .showreel { padding: clamp(60px, 10vh, 120px) 20px; }
  .showreel-note { font-size: 14px; padding: 0 20px; }
  .drag-hint { font-size: 13px; }
  .reel-track { padding: 20px 20px; }
  .reel-track img { height: clamp(180px, 36vh, 300px); }
  .reel-nav { width: 40px; height: 40px; font-size: 18px; }
  .reel-nav-bottom { width: 42px; height: 42px; font-size: 18px; }

  .track-row { grid-template-columns: 28px 1fr auto auto; gap: 10px; padding: 16px 0; }
  .track-num { font-size: 8.7px; letter-spacing: 1.3px; }
  .track-title { font-size: clamp(12.7px, 3.4vw, 15.7px); }
  .track-time-lab { font-size: 10.7px; letter-spacing: 1.7px; }
  .track-play { width: 34px; height: 34px; }
  .track-list { padding: 0; margin-top: 36px; }
  .track-num, .track-title { text-align: left; }

  .doll { padding: 40px 20px 10px; gap: 50px; }
  .doll:first-of-type { padding-top: 80px; }
  .doll + .doll { margin-top: 10px; }
  .doll-card { padding-top: 0; }
  .doll-sway,
  .doll-stage,
  .doll:nth-of-type(even) .doll-stage,
  .doll .doll-stage.reveal,
  .doll .doll-stage.reveal.in-view,
  .doll:nth-of-type(even) .doll-stage.reveal,
  .doll:nth-of-type(even) .doll-stage.reveal.in-view { transform: none; }
  .doll-sway, .doll-stage { min-width: 0; }
  .doll[data-doll="rusty"] .doll-sway { transform: translateX(-5px); }
  .doll[data-doll="rusty"] .doll-sway img { width: 98.4%; }
  .doll[data-doll="voice"] .doll-sway img { width: 74.4%; }
  .doll[data-doll="pulse"] .doll-sway img { width: 70.8%; }
  .doll-sway img { display: block; width: 84%; height: auto; max-width: 100%; margin: 0 auto; filter: none; }
  .doll.hovering .doll-sway img { filter: none; }
  .doll-card h3 { font-size: clamp(26px, 5.5vw, 40px); }
  .doll-title { font-size: 18px; }
  .doll-bio { font-size: 16px; line-height: 1.75; }
  .doll-scrawl { font-size: 13px; margin-top: 18px; }

  .tracks { padding: clamp(40px, 8vh, 80px) 20px 60px; }
  .footer { padding: 40px 20px 30px; }
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 24px;
  }
  .footer-line--l, .footer-line--r {
    align-items: center;
    text-align: center;
  }
  .footer-big { order: -1; }
  .footer-big img { width: clamp(140px, 30vw, 200px); }
  .footer-sway { font-size: 10px; }
}

/* — phones up to 430px (iPhone 16 / SE / small Android) — */
@media (max-width: 430px) {
  .hero { padding: 80px 20px 50px; }
  .hero-tag { font-size: 18px; margin-top: 16px; }
  .hero-sub { font-size: 14px; max-width: 100%; }
  .stitch-btn { font-size: 11px; padding: 14px 24px; letter-spacing: 2px; }
  .hero-scroll { bottom: 16px; }

  .manifesto { padding: clamp(30px, 10vh, 80px) 20px; }
  .manifesto-title { font-size: 27px; }
  .manifesto-text { font-size: 15px; }
  .manifesto-body { font-size: 16px; line-height: 1.8; }
  .manifesto-btn { width: 260px; opacity: .04; }

  .tracks-btn { width: 220px; }

  .dolls-heading { font-size: 24px; letter-spacing: 1px; }
  .dolls-heading-band { font-size: 38px; letter-spacing: 1px; }
  .doll { padding: 32px 20px 12px; gap: 50px; }
  .doll:first-of-type { padding-top: 56px; }
  .doll + .doll { margin-top: 10px; }
  .doll-card { padding-top: 0; }
  .doll-sway,
  .doll-stage,
  .doll:nth-of-type(even) .doll-stage,
  .doll .doll-stage.reveal,
  .doll .doll-stage.reveal.in-view,
  .doll:nth-of-type(even) .doll-stage.reveal,
  .doll:nth-of-type(even) .doll-stage.reveal.in-view { transform: none; }
  .doll-sway, .doll-stage { min-width: 0; }
  .doll[data-doll="rusty"] .doll-sway { transform: translateX(-5px); }
  .doll[data-doll="rusty"] .doll-sway img { width: 98.4%; }
  .doll[data-doll="voice"] .doll-sway img { width: 74.4%; }
  .doll[data-doll="pulse"] .doll-sway img { width: 70.8%; }
  .doll-sway img { display: block; width: 84%; height: auto; max-width: 100%; margin: 0 auto; filter: none; }
  .doll.hovering .doll-sway img { filter: none; }
  .doll-card h3 { font-size: 24px; letter-spacing: 1px; }
  .doll-role { font-size: 9px; letter-spacing: 3px; margin-bottom: 10px; }
  .doll-title { font-size: 17px; margin-top: 6px; }
  .doll-bio { font-size: 15px; line-height: 1.7; margin-top: 16px; }
  .doll-scrawl { font-size: 12px; margin-top: 14px; padding-top: 10px; }
  .doll-more { font-size: 10px; padding: 10px 18px; }

  .showreel { padding: clamp(40px, 8vh, 80px) 20px; }
  .showreel-heading, .tracks-heading { font-size: 38px; }
  .showreel-note { font-size: 13px; padding: 0 20px; }
  .drag-hint { font-size: 12px; }
  .reel-track { gap: 14px; padding: 14px 20px; }
  .reel-track img { height: clamp(160px, 30vh, 240px); }
  .reel-nav { width: 34px; height: 34px; font-size: 16px; }
  .reel-nav-bottom { width: 36px; height: 36px; font-size: 16px; }
  .reel-controls span { font-size: 12px; }

  .tracks { padding: clamp(40px, 8vh, 80px) 20px 60px; }
  .track-list { padding: 0; margin-top: 28px; }
  .track-row { grid-template-columns: 24px 1fr auto auto; gap: 8px; padding: 14px 0; }
  .track-num { font-size: 7.7px; letter-spacing: 1px; }
  .track-title { font-size: 12.7px; }
  .track-time-lab { font-size: 10.7px; letter-spacing: 1px; }
  .track-play { width: 30px; height: 30px; }
  .track-play-ic svg { width: 10px; height: 10px; }
  .tracks-note--foot { font-size: 11px; }

  .footer { padding: 30px 20px 24px; }
  .footer-big img { width: 120px; }
  .footer-line { font-size: 8px; letter-spacing: 1.5px; }
  .footer-mail-wrap { font-size: 8px; }
  .footer-sway { font-size: 9px; }
  .nav.nav-open .nav-links .nav-mail,
  .nav.nav-open .nav-links .nav-mail a { font-size: 8px; letter-spacing: 1.5px; }
}
