/* =========================================================================
   One Man Band — Site Styles
   Editorial poster × cinematic stage × playful toy.
   Built on tokens.css. No frameworks. Static-host friendly.
   ========================================================================= */

/* ---------------- Reset niceties + paper texture ---------------- */
*,*::before,*::after{ box-sizing:border-box; }

html{ scroll-behavior:smooth; }

body{
  background: var(--c-paper);
  color: var(--c-ink);
  overflow-x: hidden;
  /* paper grain — subtle, never overpowering */
  background-image:
    radial-gradient(circle at 20% 30%, rgba(20,23,31,0.022) 0 1px, transparent 1.2px),
    radial-gradient(circle at 70% 80%, rgba(20,23,31,0.018) 0 1px, transparent 1.2px);
  background-size: 3px 3px, 5px 5px;
}

body.is-stage{ background: var(--c-stage); color: var(--c-on-dark); }

/* Halftone helper — dotted poster wash */
.halftone{
  background-image: radial-gradient(rgba(20,23,31,0.18) 1px, transparent 1.4px);
  background-size: 8px 8px;
}
.halftone--light{
  background-image: radial-gradient(rgba(244,239,227,0.16) 1px, transparent 1.4px);
  background-size: 8px 8px;
}

/* Container */
.wrap{ width:100%; max-width: var(--container); margin:0 auto; padding: 0 var(--gutter); }
.wrap--narrow{ max-width: var(--container-narrow); }

/* ---------------- Top "ticket" marquee (draggable) ---------------- */
.ticker{
  position: relative;
  background: var(--c-ink);
  color: var(--c-paper);
  border-bottom: var(--bw-3) solid var(--c-ink);
  overflow: hidden;
  user-select: none;
  cursor: grab;
}
.ticker:active{ cursor: grabbing; }
.ticker__track{
  display: flex;
  gap: 48px;
  white-space: nowrap;
  padding: 10px 0;
  font-family: var(--ff-poster);
  font-weight: 700;
  font-size: clamp(20px, 2.2vw, 32px);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  will-change: transform;
}
.ticker__track > span{ display:inline-flex; align-items:center; gap: 48px; }
.ticker__dot{
  display:inline-block; width: 12px; height: 12px; border-radius:50%;
  background: var(--c-saffron);
  vertical-align: middle;
}
.ticker__star{ color: var(--c-saffron); }
.ticker--paper{ background: var(--c-paper); color: var(--c-ink); border-bottom-color: var(--c-ink); }
.ticker--paper .ticker__dot{ background: var(--c-ink); }
.ticker--bottom{ border-bottom: 0; border-top: var(--bw-3) solid var(--c-ink); }

/* ---------------- Top Nav ---------------- */
.nav{
  position: sticky; top: 0; z-index: 50;
  background: var(--c-paper); /* fallback for Safari < 16.2 */
  background: color-mix(in srgb, var(--c-paper) 78%, transparent);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.nav__inner{
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav__brand{
  display: flex; align-items: center; gap: 12px;
  font-family: var(--ff-display);
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.nav__brand img{ width: 40px; height: 40px; }
.nav__brand-text{ font-size: 14px; line-height: 1; }
.nav__brand-text small{ display:block; color: var(--c-ink-3); font-family: var(--ff-body); font-weight: 700; font-size: 10px; letter-spacing: 0.18em; margin-top:3px; }
.nav__links{
  display: flex; gap: 4px; align-items: center;
}
.nav__links a{
  display: inline-flex; align-items: center;
  padding: 10px 16px;
  font-weight: 700; font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--c-ink-2);
  transition: color var(--dur-fast);
}
.nav__links a:hover{ color: var(--c-ink); }
.nav__links a.is-active{ color: var(--c-saffron); }
.nav__cta{ display:flex; gap: 10px; align-items:center; }

/* mobile nav */
.nav__burger{ display:none; }
@media (max-width: 880px){
  .nav__links{ display:none; }
  .nav__burger{
    display: inline-flex; align-items:center; justify-content:center;
    width: 44px; height: 44px;
    background: var(--c-ink); color: var(--c-paper);
    border: 0; cursor: pointer; border-radius: var(--r-2);
  }
  .nav__burger svg{ width: 22px; height: 22px; }
  .nav--open .nav__links{
    display:flex; flex-direction: column; gap: 0;
    position: absolute; top: 72px; left: 0; right: 0;
    background: var(--c-paper); border-bottom: var(--bw-3) solid var(--c-ink);
    padding: 16px var(--gutter);
  }
  .nav--open .nav__links a{ padding: 16px 0; border-bottom: 1px solid var(--line); width: 100%; }
}

/* ---------------- Buttons ---------------- */
.btn{
  display:inline-flex; align-items:center; gap: 10px;
  padding: 14px 22px;
  font-family: var(--ff-body);
  font-weight: 800; font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase;
  border-radius: var(--r-2);
  border: 0; cursor: pointer;
  transition: transform var(--dur-fast), background var(--dur-base), color var(--dur-base), box-shadow var(--dur-base);
  text-decoration: none;
  line-height: 1;
}
.btn:active{ transform: scale(0.98); }
.btn--saffron{ background: var(--c-saffron); color: var(--c-ink); }
.btn--saffron:hover{ background: var(--c-saffron-deep); color: var(--c-bone); box-shadow: var(--sh-glow-saffron); }
.btn--ink{ background: var(--c-ink); color: var(--c-paper); }
.btn--ink:hover{ background: #000; }
.btn--ghost{ background: transparent; color: var(--c-ink); box-shadow: inset 0 0 0 2px var(--c-ink); }
.btn--ghost:hover{ background: var(--c-ink); color: var(--c-paper); }
.btn--paper{ background: var(--c-paper); color: var(--c-ink); }
.btn--lg{ padding: 18px 28px; font-size: 14px; }
.btn--xl{ padding: 22px 34px; font-size: 16px; }

/* ---------------- Eyebrow tag w/ saffron mark ---------------- */
.tag{
  display: inline-flex; align-items:center; gap: 10px;
  font-family: var(--ff-body); font-weight:800;
  text-transform: uppercase; letter-spacing: var(--ls-eyebrow); font-size: 12px;
  color: var(--c-ink-2);
}
.tag::before{
  content:""; display:inline-block; width: 22px; height: 2px; background: var(--c-saffron);
}
.tag--paper{ color: var(--c-on-dark-2); }
.tag--paper::before{ background: var(--c-saffron); }

/* ---------------- Section frame ---------------- */
section{ position: relative; }
.section{ padding: clamp(64px, 9vw, 144px) 0; }
.section--tight{ padding: clamp(40px, 6vw, 80px) 0; }
.section--stage{ background: var(--c-stage); color: var(--c-on-dark); }
.section--stage h1,
.section--stage h2,
.section--stage h3,
.section--stage h4 { color: var(--c-on-dark); }

.divider-stub{
  height: 4px; background: var(--c-ink); border:0; margin: 0;
}
.divider-stub--paper{ background: var(--c-paper); }

/* ---------------- HERO ---------------- */
.hero{
  position: relative;
  padding: clamp(40px, 6vw, 100px) 0 clamp(64px, 9vw, 140px);
  overflow: hidden;
}
.hero__grid{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(24px, 4vw, 72px);
  align-items: end;
}
@media (max-width: 880px){
  .hero__grid{ grid-template-columns: 1fr; }
}
.hero__eyebrow{
  display:flex; align-items:center; gap: 14px;
  font-family: var(--ff-body); font-weight: 800; font-size: 13px;
  letter-spacing: 0.2em; text-transform: uppercase;
  margin-bottom: clamp(20px, 3vw, 36px);
}
.hero__eyebrow span:first-child{ color: var(--c-saffron); }
.hero__eyebrow .pipe{ width: 1px; height: 14px; background: var(--c-ink-3); }
.hero__title{
  font-family: var(--ff-display);
  font-size: clamp(64px, 9vw, 120px);
  line-height: 0.82;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  margin: 0;
}
.hero__title .row{ display:block; }
.hero__title .row--saffron{ color: var(--c-saffron); }
.hero__title .row--outline{
  -webkit-text-stroke: 2px var(--c-ink);
  color: transparent;
  font-family: var(--ff-display);
}
.hero__title .num{
  display: inline-block;
  font-family: var(--ff-display);
  background: var(--c-ink);
  color: var(--c-saffron);
  padding: 0 12px;
  margin-left: 4px;
  transform: translateY(-0.08em);
}
.hero__sub{
  display:flex; gap: 24px; flex-wrap: wrap;
  margin-top: clamp(20px, 3vw, 32px);
  font-family: var(--ff-body); font-size: clamp(15px, 1.2vw, 18px);
  color: var(--c-ink-2);
  max-width: 56ch;
}
.hero__lead{ font-size: clamp(17px, 1.5vw, 22px); line-height: 1.45; color: var(--c-ink-2); max-width: 38ch; }
.hero__cta-row{
  display:flex; gap: 14px; flex-wrap: wrap;
  margin-top: clamp(24px, 3.5vw, 40px);
}

/* hero photo column — poster-on-corkboard treatment */
.hero__photo{
  position: relative;
  aspect-ratio: 3 / 4;
  background: var(--c-ink);
  box-shadow: 14px 14px 0 var(--c-saffron), 14px 14px 0 2px var(--c-ink);
  transform: rotate(-1.2deg);
}
.hero__photo img{
  width: 100%; height: 100%; object-fit: cover;
  filter: contrast(1.04) saturate(1.05);
}
.hero__photo::after{
  /* corner ticket */
  content: "EST. 2014";
  position: absolute; top: 12px; left: 12px;
  background: var(--c-paper); color: var(--c-ink);
  font-family: var(--ff-body); font-weight: 800; font-size: 11px;
  letter-spacing: 0.18em; padding: 6px 10px;
}
.hero__photo-stamp{
  position: absolute; right: -28px; bottom: -28px;
  width: 130px; height: 130px;
  background: var(--c-saffron); color: var(--c-ink);
  border-radius: 50%;
  display:grid; place-items:center; text-align:center;
  font-family: var(--ff-display); font-size: 13px; line-height: 1;
  text-transform: uppercase; padding: 12px;
  transform: rotate(-12deg);
  box-shadow: 0 14px 28px -10px rgba(20,23,31,0.35);
  animation: stampSpin 24s linear infinite;
}
.hero__photo-stamp strong{
  display:block; font-size: 38px; line-height: 1; margin-bottom: 4px;
}
@keyframes stampSpin{
  /* The text inside doesn't actually rotate — only the wrapper does on hover. */
  0%,100%{ transform: rotate(-12deg); }
  50%{ transform: rotate(-7deg); }
}

/* Hero background — exploded instruments */
.hero__svg-bg{
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}
.hero__grid, .hero__eyebrow, .hero__cta-row{ position: relative; z-index: 2; }

/* drum disc behind type */
.hero__disc{
  position: absolute; left: -8%; bottom: -28%;
  width: 720px; height: 720px;
  border: 2px solid var(--c-ink);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.35;
}
.hero__disc::before{
  content:""; position:absolute; inset: 28px;
  border: 1px solid var(--c-ink); border-radius: 50%;
}
.hero__disc::after{
  content:""; position:absolute; inset: 60px;
  border: 1px solid var(--c-ink); border-radius: 50%;
}

/* Exploded instruments around center — each is an absolutely-placed SVG */
.instrument{
  position: absolute;
  pointer-events: auto;
  transform-origin: center;
  transition: transform 200ms var(--ease-pop);
}
.instrument svg{ width: 100%; height: 100%; display:block; }
.instrument:hover{ transform: scale(1.18) rotate(var(--rot, 0deg)); }

/* ---------------- Stat slab ---------------- */
.stat-strip{
  background: var(--c-ink);
  color: var(--c-paper);
  padding: clamp(40px, 6vw, 72px) 0;
  border-top: var(--bw-3) solid var(--c-ink);
  border-bottom: var(--bw-3) solid var(--c-ink);
  position: relative;
  overflow: hidden;
}
.stat-strip::before{
  content:""; position:absolute; inset:0;
  background-image: radial-gradient(rgba(244,239,227,0.05) 1.2px, transparent 1.5px);
  background-size: 14px 14px;
  pointer-events: none;
}
.stat-grid{
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 3vw, 48px);
  position: relative;
}
@media (max-width: 760px){ .stat-grid{ grid-template-columns: repeat(2, 1fr); } }
.stat__num{
  font-family: var(--ff-display);
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1;
  color: var(--c-paper);
  letter-spacing: -0.02em;
}
.stat__num em{ font-style: normal; color: var(--c-saffron); }
.stat__lbl{
  font-family: var(--ff-body); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.18em; font-size: 12px;
  color: var(--c-on-dark-2);
  margin-top: 12px;
}
.stat__rule{ height: 2px; background: var(--c-saffron); width: 64px; margin-top: 14px; }

/* ---------------- Services / "Book us for" ---------------- */
.services{ padding: clamp(72px, 9vw, 144px) 0; }
.services__head{
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
  margin-bottom: clamp(32px, 4vw, 56px);
}
@media (max-width: 760px){ .services__head{ grid-template-columns: 1fr; } }
.services__title{ font-size: clamp(40px, 6vw, 80px); line-height: 0.92; }
.svc-grid{
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 1.6vw, 24px);
}
@media (max-width: 980px){ .svc-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px){ .svc-grid{ grid-template-columns: 1fr; } }

.svc{
  position: relative;
  background: var(--c-bone);
  border: 1px solid var(--line);
  padding: 22px;
  display:flex; flex-direction:column; gap: 14px;
  min-height: 360px;
  overflow:hidden;
  transition: transform var(--dur-base) var(--ease-out-soft), box-shadow var(--dur-base);
}
.svc:hover{ transform: translateY(-4px); box-shadow: var(--sh-lift); }
.svc__num{
  font-family: var(--ff-display); font-size: 14px; color: var(--c-ink-3);
  letter-spacing: 0.18em;
}
.svc__title{
  font-family: var(--ff-poster); font-size: clamp(28px, 2.6vw, 38px);
  text-transform: uppercase; line-height: 0.92;
  letter-spacing: 0.005em;
}
.svc__desc{ font-size: 14px; color: var(--c-ink-2); line-height: 1.5; }
.svc__photo{
  margin-top: auto;
  aspect-ratio: 4/3;
  background: var(--c-ink);
  overflow:hidden;
  position: relative;
}
.svc__photo img{ width:100%; height:100%; object-fit:cover; filter: contrast(1.05) saturate(1.05); transition: transform 600ms var(--ease-out-soft); }
.svc:hover .svc__photo img{ transform: scale(1.06); }
.svc__photo-tag{
  position:absolute; left: 10px; bottom: 10px;
  background: var(--c-saffron); color: var(--c-ink);
  font-family: var(--ff-body); font-weight: 800; font-size: 10px;
  padding: 4px 8px; letter-spacing: 0.16em;
}

/* ---------------- Sampler ("Play the Band") ---------------- */
.sampler{
  background: var(--c-stage);
  color: var(--c-on-dark);
  padding: clamp(72px, 9vw, 140px) 0;
  position: relative;
  overflow:hidden;
}
.sampler::before{
  content:""; position:absolute; inset:0;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1.2px, transparent 1.5px);
  background-size: 14px 14px;
  pointer-events: none;
}
.sampler__head{
  display:grid; grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(24px, 4vw, 64px);
  align-items: end;
  margin-bottom: clamp(28px, 4vw, 48px);
}
@media (max-width: 880px){ .sampler__head{ grid-template-columns: 1fr; } }
.sampler__title{
  font-family: var(--ff-display);
  font-size: clamp(48px, 8vw, 120px);
  line-height: 0.86;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.sampler__title em{
  color: var(--c-saffron);
  font-style: normal;
}
.sampler__title .stroked{
  -webkit-text-stroke: 2px var(--c-paper);
  color: transparent;
}
.sampler__sub{
  font-size: 16px; color: var(--c-on-dark-2); line-height: 1.55;
}
.sampler__sub strong{ color: var(--c-paper); }

.pad-grid{
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
}
@media (max-width: 980px){ .pad-grid{ grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 520px){ .pad-grid{ grid-template-columns: repeat(3, 1fr); } }

.pad{
  position: relative;
  aspect-ratio: 1/1;
  background: var(--c-stage-2);
  border: 1px solid var(--c-stage-3);
  border-radius: var(--r-3);
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap: 8px;
  color: var(--c-on-dark);
  cursor: pointer;
  transition: transform 80ms var(--ease-pop), background 200ms, box-shadow 200ms;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.pad svg{ width: 38%; height: 38%; }
.pad:hover{ background: var(--c-stage-3); }
.pad.is-active{
  background: var(--c-saffron);
  color: var(--c-ink);
  box-shadow: 0 0 0 2px var(--c-saffron), 0 0 36px rgba(224,122,31,0.55);
}
.pad.is-hit{ animation: padHit 360ms var(--ease-pop); }
@keyframes padHit{
  0%{ transform: scale(1.0); }
  20%{ transform: scale(1.12); box-shadow: 0 0 0 4px var(--c-saffron), 0 0 60px rgba(224,122,31,0.85); }
  100%{ transform: scale(1.0); }
}
.pad__lbl{
  font-family: var(--ff-body); font-weight: 800; font-size: 10px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: inherit; opacity: 0.85;
}
.pad__key{
  position:absolute; top: 8px; right: 10px;
  font-family: var(--ff-body); font-weight: 800; font-size: 10px;
  color: var(--c-on-dark-3);
  letter-spacing: 0.1em;
}
.pad.is-active .pad__key{ color: var(--c-ink); }

/* sampler transport */
.transport{
  display:flex; align-items:center; gap: 16px;
  margin-top: clamp(20px, 3vw, 28px);
  padding: 14px 16px;
  background: var(--c-stage-2);
  border: 1px solid var(--c-stage-3);
  border-radius: var(--r-3);
}
.transport__steps{
  flex: 1;
  display:grid; grid-template-columns: repeat(16, 1fr);
  gap: 4px;
}
.step{
  height: 12px; border-radius: 2px;
  background: var(--c-stage-3);
  transition: background 80ms, transform 80ms;
}
.step.is-now{ background: var(--c-saffron); transform: scaleY(1.4); }
.step.is-beat{ background: rgba(244,239,227,0.18); }
.transport__btn{
  background: var(--c-saffron); color: var(--c-ink);
  border:0; cursor: pointer;
  width: 44px; height: 44px;
  border-radius: 50%;
  display:grid; place-items:center;
}
.transport__btn:hover{ background: var(--c-saffron-deep); color: var(--c-bone); }
.transport__btn svg{ width: 18px; height: 18px; }
.transport__bpm{ font-family: var(--ff-display); font-size: 22px; color: var(--c-paper); }
.transport__bpm small{ font-family: var(--ff-body); font-weight:700; font-size: 11px; color: var(--c-on-dark-2); letter-spacing: 0.16em; }
.transport__reset{
  background: transparent; color: var(--c-on-dark-2); border:0; cursor:pointer;
  font-family: var(--ff-body); font-weight: 800; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
}
.transport__reset:hover{ color: var(--c-paper); }
.transport__keys{
  display: none;
  font-family: var(--ff-body); font-size: 11px; color: var(--c-on-dark-3);
  letter-spacing: 0.16em;
}
@media (min-width: 980px){ .transport__keys{ display:inline; } }

/* ---------------- Press strip ---------------- */
.press{ padding: clamp(56px, 7vw, 96px) 0; background: var(--c-paper-2); }
.press__lbl{
  font-family: var(--ff-body); font-weight: 800; font-size: 12px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--c-ink-3);
  margin-bottom: 28px;
}
.press__strip{
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.press__track{
  display: flex; gap: 56px;
  align-items:center;
  animation: marquee 60s linear infinite;
  font-family: var(--ff-poster);
  font-size: clamp(22px, 2.4vw, 32px);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.press__track:hover{ animation-play-state: paused; }
.press__track > span{ display:inline-flex; align-items:center; gap: 56px; color: var(--c-ink); }
.press__track > span::after{ content:"●"; color: var(--c-saffron); font-size: 0.6em; }
@keyframes marquee{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}

/* ---------------- Quote / pull-quote ---------------- */
.pullquote{
  padding: clamp(64px, 8vw, 120px) 0;
  background: var(--c-paper);
  border-top: var(--bw-3) solid var(--c-ink);
  border-bottom: var(--bw-3) solid var(--c-ink);
}
.pullquote__q{
  font-family: var(--ff-display);
  font-size: clamp(28px, 4.5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  max-width: 22ch;
}
.pullquote__q span{ color: var(--c-saffron); }
.pullquote__cite{
  margin-top: 28px; font-family: var(--ff-body); font-weight: 800; font-size: 13px;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--c-ink-3);
}

/* ---------------- YouTube reel ---------------- */
.reel{
  background: var(--c-stage);
  color: var(--c-on-dark);
  padding: clamp(72px, 9vw, 144px) 0;
}
.reel__frame{
  position: relative;
  aspect-ratio: 16/9;
  background: #000;
  border: 1px solid var(--c-stage-3);
  overflow: hidden;
  margin-top: clamp(28px, 4vw, 48px);
  cursor: pointer;
}
.reel__frame img{ width:100%; height:100%; object-fit:cover; filter: brightness(0.7) contrast(1.1); }
.reel__play{
  position:absolute; inset:0;
  display:grid; place-items:center;
}
.reel__play-btn{
  width: clamp(80px, 9vw, 140px); height: clamp(80px, 9vw, 140px);
  border-radius: 50%;
  background: var(--c-saffron); color: var(--c-ink);
  display:grid; place-items:center;
  font-family: var(--ff-display); font-size: 13px; letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: transform var(--dur-base) var(--ease-pop);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.6);
}
.reel__frame:hover .reel__play-btn{ transform: scale(1.08); }
.reel__play-icon{ width: 28%; height: 28%; }
.reel__corner{
  position: absolute; top: 16px; right: 16px;
  display:flex; align-items:center; gap: 8px;
  font-family: var(--ff-body); font-weight: 800; font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--c-paper);
}
.reel__live{
  display:inline-block; width: 10px; height: 10px; border-radius:50%;
  background: var(--c-magenta);
  box-shadow: 0 0 0 0 rgba(224,64,124,0.7);
  animation: livePulse 1.6s infinite;
}
@keyframes livePulse{
  0%{ box-shadow: 0 0 0 0 rgba(224,64,124,0.7); }
  70%{ box-shadow: 0 0 0 12px rgba(224,64,124,0); }
  100%{ box-shadow: 0 0 0 0 rgba(224,64,124,0); }
}

/* ---------------- Instagram grid ---------------- */
.ig{ padding: clamp(72px, 9vw, 144px) 0; }
.ig__grid{
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
@media (max-width: 980px){ .ig__grid{ grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px){ .ig__grid{ grid-template-columns: repeat(2, 1fr); } }

.ig__cell{
  position: relative;
  aspect-ratio: 9/16;
  background: var(--c-ink);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--dur-base) var(--ease-out-soft);
}
.ig__cell:hover{ transform: scale(0.98); }
.ig__cell img{ width: 100%; height: 100%; object-fit: cover; transition: transform 700ms var(--ease-out-soft); filter: contrast(1.05) saturate(1.05); }
.ig__cell:hover img{ transform: scale(1.06); }
.ig__cell::after{
  content:""; position:absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65), transparent 50%);
}
.ig__meta{
  position:absolute; left: 10px; right: 10px; bottom: 10px;
  display:flex; align-items:center; justify-content: space-between;
  color: var(--c-paper); font-family: var(--ff-body); font-weight: 700; font-size: 11px;
  z-index: 1;
  letter-spacing: 0.04em;
}
.ig__meta svg{ width: 14px; height: 14px; }
.ig__meta-l{ display:flex; align-items:center; gap: 6px; }

/* ---------------- CTA block ---------------- */
.cta-panel{
  background: var(--c-saffron);
  color: var(--c-ink);
  padding: clamp(72px, 9vw, 140px) 0;
  position: relative;
  overflow:hidden;
}
.cta-panel::before{
  content:""; position:absolute; inset:0;
  background-image: radial-gradient(rgba(20,23,31,0.08) 1px, transparent 1.4px);
  background-size: 12px 12px;
  pointer-events:none;
}
.cta-panel__inner{
  position: relative;
  display:grid; grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
}
@media (max-width: 880px){ .cta-panel__inner{ grid-template-columns: 1fr; } }
.cta-panel__title{
  font-family: var(--ff-display);
  font-size: clamp(48px, 8vw, 120px);
  line-height: 0.86; letter-spacing: -0.02em; text-transform: uppercase;
}
.cta-panel__title .row--ink{ color: var(--c-ink); }
.cta-panel__sub{ font-size: clamp(16px, 1.4vw, 18px); line-height: 1.5; max-width: 36ch; margin-top: 20px; }
.cta-panel__buttons{ display:flex; flex-direction: column; gap: 12px; }
.cta-panel__buttons .btn{ justify-content: space-between; padding: 22px 26px; }
.cta-panel__buttons .btn small{ display:block; font-size: 10px; letter-spacing: 0.16em; color: inherit; opacity: 0.7; margin-top: 2px; }

/* ---------------- Footer ---------------- */
.foot{
  background: var(--c-stage);
  color: var(--c-on-dark-2);
  padding: clamp(64px, 8vw, 120px) 0 32px;
}
.foot__grid{
  display:grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(24px, 4vw, 56px);
}
@media (max-width: 880px){ .foot__grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px){ .foot__grid{ grid-template-columns: 1fr; } }
.foot h5{
  font-family: var(--ff-body); font-weight: 800; font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--c-on-dark);
  margin-bottom: 18px;
}
.foot a{ display:block; color: var(--c-on-dark-2); padding: 6px 0; font-size: 14px; }
.foot a:hover{ color: var(--c-saffron); }
.foot__brand{
  font-family: var(--ff-display); font-size: 32px; line-height: 1; color: var(--c-paper);
  text-transform: uppercase; letter-spacing: -0.005em;
}
.foot__brand span{ color: var(--c-saffron); }
.foot__sig{
  font-family: var(--ff-hand); font-size: 32px; color: var(--c-on-dark-2);
  margin-top: 12px;
}
.foot__bottom{
  margin-top: clamp(36px, 5vw, 64px);
  padding-top: 24px;
  border-top: 1px solid var(--c-stage-3);
  display:flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: var(--c-on-dark-3); flex-wrap: wrap; gap: 12px;
}

/* ---------------- Reveal-on-scroll ---------------- */
.reveal{ opacity: 0; transform: translateY(18px); transition: opacity 700ms var(--ease-out-soft), transform 700ms var(--ease-out-soft); }
.reveal.is-in{ opacity:1; transform: none; }

/* ---------------- Konami stage light show ---------------- */
.lightshow{
  position: fixed; inset: 0; z-index: 9999; pointer-events: none;
  display: none;
}
.lightshow.is-on{ display: block; }
.lightshow__beam{
  position:absolute; top: -10%; transform-origin: top center;
  width: 220px; height: 160vh;
  background: linear-gradient(to bottom, rgba(255,255,255,0.0), rgba(255,255,255,0.08) 25%, rgba(255,255,255,0.0) 80%);
  mix-blend-mode: screen;
  filter: blur(8px);
  animation: beamSweep 6s ease-in-out infinite alternate;
}
.lightshow__beam--magenta{ background: linear-gradient(to bottom, rgba(224,64,124,0), rgba(224,64,124,0.22) 25%, rgba(224,64,124,0) 80%); }
.lightshow__beam--electric{ background: linear-gradient(to bottom, rgba(79,184,255,0), rgba(79,184,255,0.22) 25%, rgba(79,184,255,0) 80%); }
.lightshow__beam--saffron{ background: linear-gradient(to bottom, rgba(224,122,31,0), rgba(224,122,31,0.28) 25%, rgba(224,122,31,0) 80%); }
.lightshow__beam--mint{ background: linear-gradient(to bottom, rgba(41,196,138,0), rgba(41,196,138,0.22) 25%, rgba(41,196,138,0) 80%); }
.lightshow__beam:nth-child(1){ left: 8%; animation-delay: 0s; }
.lightshow__beam:nth-child(2){ left: 28%; animation-delay: -1s; animation-duration: 5s; }
.lightshow__beam:nth-child(3){ left: 48%; animation-delay: -2s; animation-duration: 7s; }
.lightshow__beam:nth-child(4){ left: 68%; animation-delay: -0.5s; animation-duration: 5.5s; }
.lightshow__beam:nth-child(5){ left: 88%; animation-delay: -1.5s; animation-duration: 6.5s; }
@keyframes beamSweep{
  0%{ transform: rotate(-22deg); opacity: 0.4; }
  50%{ transform: rotate(8deg); opacity: 0.85; }
  100%{ transform: rotate(28deg); opacity: 0.4; }
}
.lightshow__flicker{
  position:absolute; inset:0;
  background: radial-gradient(80% 60% at 50% 0%, rgba(255,255,255,0.07), transparent);
  mix-blend-mode: screen;
  animation: flicker 1.6s steps(2) infinite;
}
@keyframes flicker{
  0%,100%{ opacity: 0.6; }
  50%{ opacity: 0.95; }
}
.lightshow__hint{
  position: fixed; right: 24px; bottom: 24px;
  background: var(--c-ink); color: var(--c-saffron);
  font-family: var(--ff-display); font-size: 13px; letter-spacing: 0.18em;
  padding: 14px 18px;
  text-transform: uppercase;
  pointer-events: auto; cursor: pointer;
  animation: hintPop 200ms var(--ease-pop);
}
@keyframes hintPop{ from{ transform: translateY(20px); opacity: 0; } to{ transform: none; opacity:1; } }

/* ---------------- Cursor trail ---------------- */
.cursor-note{
  position: fixed; pointer-events: none; z-index: 9000;
  font-family: var(--ff-display);
  font-size: 18px;
  color: var(--c-saffron);
  animation: noteFloat 900ms var(--ease-out-soft) forwards;
  user-select: none;
  text-shadow: 0 0 12px rgba(224,122,31,0.6);
}
@keyframes noteFloat{
  0%{ transform: translate(-50%, -50%) scale(0.6); opacity: 0; }
  20%{ opacity: 1; }
  100%{ transform: translate(-50%, -120%) scale(1) rotate(var(--r, 0deg)); opacity: 0; }
}

/* ---------------- Tweaks panel (works with copy_starter, but we hand-roll lite version) ---------------- */
/* (provided by tweaks-panel.jsx) */

/* ---------------- Utility ---------------- */
.hide-on-mobile{ display:initial; }
.show-on-mobile{ display:none; }
@media (max-width: 760px){
  .hide-on-mobile{ display:none; }
  .show-on-mobile{ display:initial; }
}

/* Asymmetric "ticket stub" frame */
.stub{
  border: var(--bw-3) solid var(--c-ink);
  position: relative;
}
.stub::before, .stub::after{
  content:""; position:absolute;
  width: 14px; height: 14px;
  background: var(--c-paper);
  border-radius: 50%;
  top: 50%; transform: translateY(-50%);
}
.stub::before{ left: -7px; }
.stub::after{ right: -7px; }

/* Two-column subhero */
.subhero{
  padding: clamp(48px, 6vw, 96px) 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: end;
}

/* About / story timeline */
.timeline{ position: relative; padding-left: 28px; }
.timeline::before{
  content:""; position:absolute; left: 6px; top: 0; bottom: 0;
  width: 2px; background: var(--c-ink);
}
.timeline__item{ position: relative; padding: 14px 0 28px; }
.timeline__item::before{
  content:""; position:absolute; left: -28px; top: 22px;
  width: 14px; height: 14px; background: var(--c-saffron); border: 2px solid var(--c-ink); border-radius: 50%;
}
.timeline__year{
  font-family: var(--ff-display); font-size: 18px; color: var(--c-ink-3);
  letter-spacing: 0.05em;
}
.timeline__title{ font-family: var(--ff-display); font-size: clamp(20px, 2vw, 26px); margin-top: 4px; }
.timeline__desc{ color: var(--c-ink-2); font-size: 15px; margin-top: 6px; max-width: 60ch; }

/* Form */
.form-grid{
  display:grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
@media (max-width: 720px){ .form-grid{ grid-template-columns: 1fr; } }
.field{ display:flex; flex-direction:column; gap: 6px; }
.field--full{ grid-column: 1 / -1; }
.field label{
  font-family: var(--ff-body); font-weight: 800; font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--c-ink-3);
}
.field input, .field select, .field textarea{
  font-family: var(--ff-body); font-size: 16px;
  padding: 14px 16px;
  border: 1.5px solid var(--c-ink);
  background: var(--c-bone);
  color: var(--c-ink);
  border-radius: var(--r-2);
  transition: box-shadow var(--dur-base), border-color var(--dur-base);
}
.field input:focus, .field select:focus, .field textarea:focus{
  outline: none; border-color: var(--c-saffron); box-shadow: 0 0 0 3px rgba(224,122,31,0.25);
}
.field textarea{ min-height: 140px; resize: vertical; }
.chips{ display:flex; flex-wrap:wrap; gap: 8px; }
.chip{
  display:inline-flex; align-items:center; gap:6px;
  padding: 10px 16px; border-radius: var(--r-pill);
  background: var(--c-paper-2); color: var(--c-ink);
  font-family: var(--ff-body); font-weight: 800; font-size: 12px;
  letter-spacing: 0.12em; text-transform: uppercase;
  cursor: pointer; user-select: none;
  border: 1.5px solid transparent;
}
.chip.is-on{ background: var(--c-ink); color: var(--c-paper); }
.chip:hover{ border-color: var(--c-ink); }

/* Big numbered list */
.numlist{ list-style: none; padding: 0; margin: 0; }
.numlist li{
  display: grid; grid-template-columns: 80px 1fr; gap: 16px; align-items: baseline;
  padding: 18px 0; border-top: 1px solid var(--line);
}
.numlist li:last-child{ border-bottom: 1px solid var(--line); }
.numlist__num{
  font-family: var(--ff-display); font-size: 28px; color: var(--c-saffron);
  letter-spacing: 0;
}
.numlist__t{ font-family: var(--ff-display); font-size: clamp(20px, 2.4vw, 28px); text-transform: uppercase; }

/* Generic photo cuts */
.cut{
  background: var(--c-ink);
  overflow: hidden;
  position: relative;
}
.cut img{ width: 100%; height: 100%; object-fit: cover; }
.cut__caption{
  position: absolute; left: 12px; bottom: 12px;
  background: var(--c-paper); color: var(--c-ink);
  font-family: var(--ff-body); font-weight: 800; font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 6px 10px;
}

/* WhatsApp / Email icon helpers */
.icon-circle{
  width: 44px; height: 44px; border-radius:50%;
  background: var(--c-ink); color: var(--c-paper);
  display:grid; place-items:center;
}
.icon-circle--wa{ background: #25D366; color: var(--c-ink); }

/* Print-style ticket-tear divider */
.tear{
  position: relative;
  height: 24px;
  background: var(--c-paper);
}
.tear::before{
  content:""; position:absolute; inset:0;
  background-image: radial-gradient(circle at 8px 12px, var(--c-stage) 5px, transparent 5.5px);
  background-size: 22px 24px;
}

/* Animations on Hero instruments (CSS only, gentle) */
@keyframes drift-a {
  0%,100% { transform: translate(0,0) rotate(var(--rot,0deg)); }
  50%     { transform: translate(8px,-10px) rotate(calc(var(--rot,0deg) + 4deg)); }
}
@keyframes drift-b {
  0%,100% { transform: translate(0,0) rotate(var(--rot,0deg)); }
  50%     { transform: translate(-10px,6px) rotate(calc(var(--rot,0deg) - 5deg)); }
}
@keyframes drift-c {
  0%,100% { transform: translate(0,0) rotate(var(--rot,0deg)); }
  50%     { transform: translate(6px,8px) rotate(calc(var(--rot,0deg) + 6deg)); }
}
.instrument--a{ animation: drift-a 7s ease-in-out infinite; }
.instrument--b{ animation: drift-b 9s ease-in-out infinite; }
.instrument--c{ animation: drift-c 11s ease-in-out infinite; }

/* Disable heavy motion if user prefers reduced motion */
@media (prefers-reduced-motion: reduce){
  .instrument--a, .instrument--b, .instrument--c, .hero__photo-stamp, .ticker__track, .press__track { animation: none !important; }
  .reveal{ opacity:1; transform: none; transition: none; }
}

/* "Up to 14" feature */
.upto{
  background: var(--c-paper-2);
  padding: clamp(64px, 8vw, 120px) 0;
  border-top: var(--bw-3) solid var(--c-ink);
  border-bottom: var(--bw-3) solid var(--c-ink);
  position: relative;
  overflow: hidden;
}
.upto__inner{
  display:grid; grid-template-columns: 1fr 1.2fr;
  gap: clamp(24px, 4vw, 64px); align-items:center;
}
@media (max-width: 880px){ .upto__inner{ grid-template-columns: 1fr; } }
.upto__big{
  font-family: var(--ff-display);
  font-size: clamp(120px, 22vw, 320px);
  line-height: 0.8;
  letter-spacing: -0.04em;
  color: var(--c-ink);
}
.upto__big em{
  font-style: normal;
  color: var(--c-saffron);
  display:inline-block;
  -webkit-text-stroke: 3px var(--c-ink);
}
.upto__sub{ font-size: clamp(16px, 1.4vw, 20px); max-width: 50ch; line-height: 1.5; color: var(--c-ink-2); }
.upto__list{ display: grid; grid-template-columns: 1fr 1fr; gap: 4px 16px; margin-top: 20px; font-family: var(--ff-body); font-weight: 700; }
.upto__list li{ list-style: none; padding: 6px 0; border-bottom: 1px solid var(--line); font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--c-ink-2); }
.upto__list li::before{ content:"+ "; color: var(--c-saffron); }
