/* ==========================================================================
   FOUNDATION ENTERTAINMENT — "SIGNAL CHAIN"
   High end sound. Low end frequencies.

   Concept: the page is a signal path. Every section is a channel strip
   (CH.01, CH.02 ...), type is set like a tour poster, and the whole thing
   pulses at 140 BPM half-time. Black void + bone paper, sub-green and
   violet pulled straight from the logo mark.
   ========================================================================== */

/* ---------- Fonts (self-hosted) ---------- */
@font-face { font-family: 'Shoulders'; src: url('../fonts/big-shoulders-display-latin-wght-normal.woff2') format('woff2-variations'); font-weight: 100 900; font-display: swap; }
@font-face { font-family: 'Petch'; src: url('../fonts/chakra-petch-latin-500-normal.woff2') format('woff2'); font-weight: 500; font-display: swap; }
@font-face { font-family: 'Petch'; src: url('../fonts/chakra-petch-latin-600-normal.woff2') format('woff2'); font-weight: 600; font-display: swap; }
@font-face { font-family: 'Petch'; src: url('../fonts/chakra-petch-latin-700-normal.woff2') format('woff2'); font-weight: 700; font-display: swap; }
@font-face { font-family: 'Tight'; src: url('../fonts/inter-tight-latin-wght-normal.woff2') format('woff2-variations'); font-weight: 100 900; font-display: swap; }

/* ---------- Tokens ---------- */
:root {
  --void: #050506;
  --coal: #0c0c0f;
  --graphite: #16161b;
  --bone: #ece8df;
  --bone-2: #dcd6ca;
  --ink: #0a0a0b;
  --text: #ece8df;
  --muted: rgba(236, 232, 223, .58);
  --line: rgba(236, 232, 223, .12);
  --sub: #8cff4a;          /* sub green — the bass */
  --sub-deep: #3fae2a;
  --vio: #8b5cf6;          /* violet — the top of the mark */
  --ice: #4f7bff;
  --heat: #ff3d6e;         /* sold out / live */

  --f-display: 'Shoulders', 'Arial Narrow', Impact, sans-serif;
  --f-tech: 'Petch', 'Menlo', monospace;
  --f-body: 'Tight', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --gutter: clamp(16px, 4vw, 64px);
  --rail: clamp(0px, 3.2vw, 56px);
  --radius: 2px;
  --ease: cubic-bezier(.2, .8, .1, 1);
  --ease-io: cubic-bezier(.77, 0, .18, 1);
  --beat: .857s;           /* one beat @ 70 BPM = half-time 140 */
  --header-h: clamp(62px, 5.2vw, 88px);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0; background: var(--void); color: var(--text);
  font-family: var(--f-body); font-size: clamp(15px, .55vw + 12px, 19px); line-height: 1.55;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img, svg, video, canvas { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }
h1, h2, h3, h4, p { margin: 0; }
ul { list-style: none; margin: 0; padding: 0; }
::selection { background: var(--sub); color: var(--ink); }
.sr-only { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
:focus-visible { outline: 2px solid var(--sub); outline-offset: 3px; }
.skip { position: fixed; left: 12px; top: -60px; z-index: 1000; background: var(--sub); color: var(--ink); padding: 10px 16px; font-family: var(--f-tech); font-weight: 700; }
.skip:focus { top: 12px; }

/* ---------- Global texture: grain + vignette ---------- */
.grain {
  position: fixed; inset: -50%; z-index: 90; pointer-events: none;
  background-image: var(--grain, none); opacity: .09; mix-blend-mode: overlay;
  animation: grain .9s steps(6) infinite;
}
@keyframes grain {
  0% { transform: translate(0, 0); } 20% { transform: translate(-3%, 2%); } 40% { transform: translate(2%, -3%); }
  60% { transform: translate(-2%, -1%); } 80% { transform: translate(3%, 3%); } 100% { transform: translate(0, 0); }
}

/* ---------- Type system ---------- */
.eyebrow {
  font-family: var(--f-tech); font-weight: 600; font-size: 12px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--sub); display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: ''; width: 28px; height: 1px; background: currentColor; }
.ch {
  font-family: var(--f-tech); font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted);
  display: flex; align-items: center; gap: 14px;
}
.ch b { color: var(--text); font-weight: 700; }
.ch .led { width: 7px; height: 7px; border-radius: 50%; background: var(--sub); box-shadow: 0 0 12px var(--sub); animation: led var(--beat) steps(2) infinite; }
@keyframes led { 50% { opacity: .25; box-shadow: none; } }

.mega {
  font-family: var(--f-display); font-weight: 900; text-transform: uppercase;
  line-height: .82; letter-spacing: -.01em; font-size: clamp(64px, 14vw, 250px);
}
.display {
  font-family: var(--f-display); font-weight: 850; text-transform: uppercase;
  line-height: .88; letter-spacing: .005em; font-size: clamp(44px, 7.4vw, 128px);
}
.title-lg { font-family: var(--f-display); font-weight: 800; text-transform: uppercase; line-height: .92; font-size: clamp(34px, 4.4vw, 68px); }
.outline { color: transparent; -webkit-text-stroke: 1.5px var(--text); }
.outline-sub { color: transparent; -webkit-text-stroke: 1.5px var(--sub); }
.hl { color: var(--sub); }
.lede { font-size: clamp(18px, 1.5vw, 22px); line-height: 1.5; color: var(--muted); max-width: 46ch; }
.lede strong { color: var(--text); font-weight: 600; }
.mono { font-family: var(--f-tech); }

/* split-char reveal */
.split .w { display: inline-block; white-space: nowrap; }
.split .c { display: inline-block; transform: translateY(105%) rotate(6deg); opacity: 0; transition: transform .9s var(--ease), opacity .9s var(--ease); transition-delay: calc(var(--i) * 22ms); }
/* the mask hides letters until they slide up; the extra top room (cancelled by the negative margin) keeps tall caps
   and outline strokes from being shaved off at these tight line-heights */
.split-mask { overflow: hidden; display: block; padding-top: .12em; margin-top: -.12em; padding-bottom: .06em; margin-bottom: -.02em; }
.display .split, .display .split-mask { display: inline-block; vertical-align: bottom; }
.is-in .split .c, .split.is-in .c { transform: none; opacity: 1; }

/* generic reveal */
[data-reveal] { opacity: 0; transform: translateY(40px); transition: opacity 1s var(--ease), transform 1s var(--ease); transition-delay: var(--d, 0ms); }
[data-reveal].is-in { opacity: 1; transform: none; }
[data-reveal="left"] { transform: translateX(-60px); }
[data-reveal="scale"] { transform: scale(.92); }

/* ---------- Layout ---------- */
.wrap { padding-left: var(--gutter); padding-right: var(--gutter); }
.section { position: relative; padding-top: clamp(48px, 6vw, 110px); padding-bottom: clamp(48px, 6vw, 110px); }
.section--tight-top { padding-top: clamp(36px, 4vw, 70px); }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; margin-bottom: clamp(24px, 3vw, 52px); }
.section-head .ch { margin-bottom: 14px; }
main { position: relative; z-index: 2; }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--sub); --fg: var(--ink);
  position: relative; display: inline-flex; align-items: center; gap: 14px;
  padding: clamp(14px, 1.3vw, 20px) clamp(18px, 1.9vw, 30px); background: var(--bg); color: var(--fg);
  font-family: var(--f-tech); font-weight: 700; font-size: clamp(12px, .95vw, 15px); letter-spacing: .14em; text-transform: uppercase;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
  overflow: hidden; isolation: isolate; transition: color .4s var(--ease);
  will-change: transform;
}
.btn::before {
  content: ''; position: absolute; inset: 0; z-index: -1; background: var(--text);
  transform: translateY(101%); transition: transform .5s var(--ease-io);
}
.btn:hover::before { transform: none; }
.btn .arr { width: 18px; height: 18px; transition: transform .5s var(--ease); }
.btn:hover .arr { transform: translateX(4px) rotate(-45deg); }
.btn--ghost { --bg: transparent; --fg: var(--text); box-shadow: inset 0 0 0 1.5px var(--line); clip-path: none; }
.btn--ghost::before { background: var(--sub); }
.btn--ghost:hover { color: var(--ink); }
.btn--vio { --bg: var(--vio); --fg: #fff; }
.btn--sm { padding: 12px 18px 11px; font-size: 12px; }

.link-u { white-space: nowrap; position: relative; font-family: var(--f-tech); font-weight: 600; letter-spacing: .12em; text-transform: uppercase; font-size: 13px; display: inline-flex; gap: 10px; align-items: center; }
.link-u .arr { width: 16px; height: 16px; flex: none; }
.link-u::after { content: ''; position: absolute; left: 0; right: 0; bottom: -6px; height: 1px; background: currentColor; transform-origin: right; transition: transform .6s var(--ease-io); }
.link-u:hover::after { transform: scaleX(0); transform-origin: left; }

/* ==========================================================================
   PRELOADER — "SUB CHECK"
   ========================================================================== */
.preload {
  position: fixed; inset: 0; z-index: 500; background: var(--void);
  display: grid; place-items: center; color: var(--text);
}
.preload[hidden] { display: none; }
.preload__core { width: min(560px, 86vw); }
.preload__row { display: flex; justify-content: space-between; font-family: var(--f-tech); font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.preload__hz { font-family: var(--f-display); font-weight: 900; font-size: clamp(90px, 20vw, 220px); line-height: .8; margin: 18px 0 10px; font-variant-numeric: tabular-nums; }
.preload__hz small { font-size: .28em; color: var(--sub); margin-left: .12em; letter-spacing: 0; }
.preload__bar { height: 2px; background: var(--line); position: relative; overflow: hidden; }
.preload__bar i { position: absolute; inset: 0; background: var(--sub); transform-origin: left; transform: scaleX(var(--p, 0)); box-shadow: 0 0 18px var(--sub); }
.preload__wave { height: 60px; margin-top: 16px; width: 100%; }
.preload.is-out { clip-path: inset(0 0 100% 0); transition: clip-path 1.1s var(--ease-io); }
.preload.is-drop .preload__hz { animation: shake .35s linear; color: var(--sub); }

/* ==========================================================================
   CURSOR — a speaker cone
   ========================================================================== */
.cursor { position: fixed; left: 0; top: 0; z-index: 400; pointer-events: none; mix-blend-mode: difference; }
.cursor__dot, .cursor__ring { position: absolute; left: 0; top: 0; border-radius: 50%; transform: translate(-50%, -50%); }
.cursor__dot { width: 6px; height: 6px; background: #fff; }
.cursor__ring { width: 38px; height: 38px; border: 1.5px solid #fff; transition: width .35s var(--ease), height .35s var(--ease), background .35s; display: grid; place-items: center; }
.cursor__ring::after { content: ''; position: absolute; inset: 7px; border-radius: 50%; border: 1px solid rgba(255,255,255,.5); animation: cone var(--beat) var(--ease) infinite; }
@keyframes cone { 0% { transform: scale(.7); opacity: 1; } 100% { transform: scale(1.35); opacity: 0; } }
.cursor__label { position: absolute; left: 0; top: 0; transform: translate(-50%, -50%) scale(.4); opacity: 0; font-family: var(--f-tech); font-weight: 700; font-size: 11px; letter-spacing: .16em; color: #000; transition: transform .35s var(--ease), opacity .25s; white-space: nowrap; }
.cursor.is-hover .cursor__ring { width: 64px; height: 64px; }
.cursor.is-label .cursor__ring { width: 96px; height: 96px; background: #fff; }
.cursor.is-label .cursor__label { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.cursor.is-label .cursor__dot { opacity: 0; }
@media (hover: none), (pointer: coarse) { .cursor { display: none; } }
@media (hover: hover) and (pointer: fine) { body.has-cursor, body.has-cursor a, body.has-cursor button { cursor: none; } }
/* Pop-ups sit above everything (even the custom cursor), so while one is open use the normal mouse pointer */
body.has-cursor:has(dialog[open]) .cursor { display: none; }
body.has-cursor dialog[open], body.has-cursor dialog[open] * { cursor: auto; }
body.has-cursor dialog[open] :is(a, button, [role="button"], label, select) { cursor: pointer; }
body.has-cursor dialog[open]::backdrop { cursor: pointer; }

/* ==========================================================================
   HEADER
   ========================================================================== */
.hdr {
  position: fixed; inset: 0 0 auto 0; z-index: 200; height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 0 var(--gutter); transition: transform .6s var(--ease), background .4s;
}
.hdr::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(5,5,6,.85), rgba(5,5,6,0)); pointer-events: none; transition: opacity .4s; }
.hdr.is-solid::before { background: rgba(5,5,6,.78); backdrop-filter: blur(14px) saturate(140%); -webkit-backdrop-filter: blur(14px) saturate(140%); border-bottom: 1px solid var(--line); }
.hdr.is-hidden { transform: translateY(-100%); }
.hdr > * { position: relative; }
.hdr__logo img { height: clamp(26px, 2.6vw, 42px); width: auto; }
.hdr__nav { display: flex; gap: clamp(18px, 2.4vw, 40px); align-items: center; }
.hdr__nav a { font-family: var(--f-tech); font-weight: 600; font-size: clamp(11px, .9vw, 14px); letter-spacing: .16em; text-transform: uppercase; position: relative; padding: 6px 0; overflow: hidden; display: inline-block; }
.hdr__nav a span { display: block; transition: transform .5s var(--ease); }
.hdr__nav a span::after { content: attr(data-t); position: absolute; left: 0; top: 100%; color: var(--sub); }
.hdr__nav a:hover span { transform: translateY(-100%); }
.hdr__nav a[aria-current="page"] { color: var(--sub); }
.hdr__nav a[aria-current="page"]::before { content: ''; position: absolute; left: -12px; top: 50%; width: 5px; height: 5px; background: var(--sub); border-radius: 50%; transform: translateY(-50%); }
.hdr__cta { display: flex; gap: 12px; align-items: center; }
.burger { display: none; width: 48px; height: 48px; position: relative; }
.burger i { position: absolute; left: 12px; right: 12px; height: 2px; background: var(--text); transition: transform .5s var(--ease), top .5s var(--ease); }
.burger i:nth-child(1) { top: 19px; } .burger i:nth-child(2) { top: 27px; }
.nav-open .burger i:nth-child(1) { top: 23px; transform: rotate(45deg); }
.nav-open .burger i:nth-child(2) { top: 23px; transform: rotate(-45deg); }

/* full-screen mobile menu */
.menu {
  position: fixed; inset: 0; z-index: 190; background: var(--sub); color: var(--ink);
  clip-path: circle(0% at calc(100% - 40px) 38px); transition: clip-path .9s var(--ease-io);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 120px var(--gutter) 40px;
}
.nav-open .menu { clip-path: circle(150% at calc(100% - 40px) 38px); }
.menu a.menu__big { font-family: var(--f-display); font-weight: 900; font-size: clamp(56px, 15vw, 120px); line-height: .9; text-transform: uppercase; display: block; transform: translateY(40px); opacity: 0; transition: transform .8s var(--ease), opacity .8s var(--ease); }
.nav-open .menu a.menu__big { transform: none; opacity: 1; }
.nav-open .menu a.menu__big:nth-child(2) { transition-delay: .06s; } .nav-open .menu a.menu__big:nth-child(3) { transition-delay: .12s; }
.nav-open .menu a.menu__big:nth-child(4) { transition-delay: .18s; } .nav-open .menu a.menu__big:nth-child(5) { transition-delay: .24s; }
.menu__meta { margin-top: 40px; font-family: var(--f-tech); font-size: 13px; letter-spacing: .12em; text-transform: uppercase; display: flex; flex-wrap: wrap; gap: 10px 24px; }
@media (max-width: 900px) {
  .hdr__nav, .hdr__cta .btn { display: none; }
  .burger { display: block; }
}
@media (min-width: 901px) { .menu { display: none; } }

/* side rail: live readout */
.rail {
  position: fixed; left: 0; top: 0; bottom: 0; width: var(--rail); z-index: 150; pointer-events: none;
  display: flex; align-items: center; justify-content: center;
}
.rail__txt { writing-mode: vertical-rl; transform: rotate(180deg); font-family: var(--f-tech); font-size: 11px; letter-spacing: .3em; text-transform: uppercase; color: var(--muted); white-space: nowrap; mix-blend-mode: difference; }
.rail__txt b { color: var(--sub); font-weight: 700; font-variant-numeric: tabular-nums; }
.rail--r { left: auto; right: 0; }
.rail__meter { width: 2px; height: 32vh; background: var(--line); position: relative; overflow: hidden; }
.rail__meter i { position: absolute; left: 0; right: 0; bottom: 0; height: 100%; background: linear-gradient(to top, var(--sub), var(--vio)); transform-origin: bottom; transform: scaleY(var(--prog, 0)); }
@media (max-width: 900px) { .rail { display: none; } }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero { position: relative; min-height: 100svh; overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end; isolation: isolate; }
.hero__bg { position: absolute; inset: -6% 0 0 0; z-index: -3; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.25) brightness(.55); transform: scale(1.12); animation: kenburns 24s var(--ease) infinite alternate; }
@keyframes kenburns { to { transform: scale(1.22) translate3d(-2%, -1.5%, 0); } }
.hero__tone { position: absolute; inset: 0; z-index: -2; background:
  radial-gradient(120% 70% at 10% 100%, rgba(140, 255, 74, .32), transparent 55%),
  radial-gradient(90% 60% at 100% 0%, rgba(139, 92, 246, .45), transparent 60%),
  linear-gradient(180deg, rgba(5,5,6,.35) 0%, rgba(5,5,6,.2) 40%, var(--void) 100%);
  mix-blend-mode: normal; }
.hero__canvas { position: absolute; inset: 0; z-index: -1; width: 100%; height: 100%; mix-blend-mode: screen; opacity: .9; }
.hero__inner { padding: calc(var(--header-h) + 40px) var(--gutter) clamp(28px, 4vw, 48px); }
.hero__kicker { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; margin-bottom: clamp(20px, 3vw, 40px); }
.hero__title { font-family: var(--f-display); font-weight: 900; text-transform: uppercase; line-height: .8; letter-spacing: -.012em; }
.hero__title .l1 { font-size: clamp(54px, 10.4vw, 196px); display: block; }
.hero__title .l2 { font-size: clamp(88px, 21vw, 400px); display: block; overflow: visible; color: transparent; -webkit-text-stroke: 2px var(--text); position: relative; }
.hero__title .l2 .fill { position: absolute; inset: 0; color: var(--sub); -webkit-text-stroke: 0; clip-path: inset(var(--fill-top, 100%) 0 0 0); transition: clip-path .2s linear; text-shadow: 0 0 60px rgba(140,255,74,.35); }
.hero__title .l3 { font-size: clamp(54px, 10.4vw, 196px); display: flex; align-items: center; gap: .18em; }
.hero__title .l3 .pill { font-family: var(--f-tech); font-size: clamp(12px, 1.1vw, 16px); letter-spacing: .18em; line-height: 1.3; font-weight: 600; max-width: 22ch; color: var(--muted); -webkit-text-stroke: 0; text-transform: uppercase; }
.hero__bottom { margin-top: clamp(24px, 3.5vw, 48px); display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: end; border-top: 1px solid var(--line); padding-top: 22px; }
.hero__next { display: flex; gap: 18px; align-items: center; min-width: 0; }
.hero__next .date { font-family: var(--f-display); font-weight: 900; font-size: clamp(40px, 4vw, 64px); line-height: .8; color: var(--sub); }
.hero__next .date small { display: block; font-family: var(--f-tech); font-size: 11px; letter-spacing: .2em; color: var(--muted); font-weight: 600; margin-top: 6px; }
.hero__next .t { font-family: var(--f-tech); font-weight: 700; letter-spacing: .06em; text-transform: uppercase; font-size: 15px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hero__next .v { color: var(--muted); font-size: 14px; }
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; }
.scroll-cue { position: absolute; right: var(--gutter); top: 50%; transform: translateY(-50%); writing-mode: vertical-rl; font-family: var(--f-tech); font-size: 11px; letter-spacing: .3em; color: var(--muted); display: flex; align-items: center; gap: 14px; }
.scroll-cue::after { content: ''; width: 1px; height: 80px; background: linear-gradient(var(--sub), transparent); animation: cue 2s var(--ease) infinite; transform-origin: top; }
@keyframes cue { 0% { transform: scaleY(0); } 50% { transform: scaleY(1); } 100% { transform: scaleY(1); opacity: 0; } }
@media (max-width: 760px) {
  .hero__bottom { grid-template-columns: 1fr; }
  .hero__actions { justify-content: flex-start; }
  .scroll-cue { display: none; }
  .hero__title .l2 { -webkit-text-stroke-width: 1.2px; }
  .hero__title .l3 { flex-wrap: wrap; gap: 10px; }
  .hero__title .l3 .pill { flex-basis: 100%; }
  .reel__head { flex-direction: column; align-items: flex-start; }
}

/* the DROP button */
.drop {
  position: relative; display: inline-flex; align-items: center; gap: 12px; padding: 14px 20px 14px 14px;
  border: 1.5px solid var(--line); font-family: var(--f-tech); font-weight: 700; font-size: 13px; letter-spacing: .14em; text-transform: uppercase;
  transition: border-color .3s, background .3s;
}
.drop:hover { border-color: var(--sub); background: rgba(140,255,74,.06); }
.drop__cone { width: 34px; height: 34px; border-radius: 50%; border: 2px solid var(--sub); display: grid; place-items: center; position: relative; }
.drop__cone::before { content: ''; width: 12px; height: 12px; border-radius: 50%; background: var(--sub); }
.drop__cone::after { content: ''; position: absolute; inset: -2px; border-radius: 50%; border: 2px solid var(--sub); animation: cone var(--beat) var(--ease) infinite; }
.drop.is-on { background: var(--sub); color: var(--ink); border-color: var(--sub); }
.drop.is-on .drop__cone { border-color: var(--ink); }
.drop.is-on .drop__cone::before { background: var(--ink); }
.drop.is-on .drop__cone::after { border-color: var(--ink); }

/* shockwave + shake on drop */
.shock { position: fixed; left: 50%; top: 50%; width: 20px; height: 20px; border-radius: 50%; border: 3px solid var(--sub); z-index: 350; pointer-events: none; transform: translate(-50%, -50%); animation: shock 1.1s var(--ease) forwards; box-shadow: 0 0 40px var(--sub), inset 0 0 40px var(--sub); }
@keyframes shock { to { width: 260vmax; height: 260vmax; opacity: 0; border-width: 1px; } }
.is-shaking main, .is-shaking .hdr { animation: shake .45s linear; }
@keyframes shake {
  0%,100% { transform: translate(0,0); } 10% { transform: translate(-6px, 3px); } 20% { transform: translate(5px,-4px); }
  30% { transform: translate(-4px,-2px); } 40% { transform: translate(4px,3px); } 55% { transform: translate(-3px,1px); }
  70% { transform: translate(2px,-2px); } 85% { transform: translate(-1px,1px); }
}

/* ==========================================================================
   MARQUEE
   ========================================================================== */
.marquee { position: relative; overflow: hidden; border-block: 1px solid var(--line); background: var(--void); z-index: 3; }
.marquee--sub { background: var(--sub); color: var(--ink); border: 0; transform: rotate(-2deg) scale(1.04); margin: -10px 0; box-shadow: 0 20px 80px rgba(140,255,74,.25); }
.marquee--vio { background: transparent; transform: rotate(1.4deg) scale(1.04); margin-top: -8px; }
.marquee__track { display: flex; width: max-content; will-change: transform; }
.marquee__item { display: flex; align-items: center; gap: 34px; padding: 18px 34px 16px 0; font-family: var(--f-display); font-weight: 900; text-transform: uppercase; font-size: clamp(34px, 4.6vw, 72px); line-height: 1; white-space: nowrap; }
.marquee--vio .marquee__item { color: transparent; -webkit-text-stroke: 1.2px var(--vio); }
.marquee__item svg { width: .5em; height: .5em; flex: none; }

/* ==========================================================================
   NEXT SHOW (headliner)
   ========================================================================== */
.headliner { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: clamp(32px, 6vw, 110px); align-items: center; }
.headliner__art { position: relative; perspective: 1200px; }
.headliner__glow { position: absolute; inset: 8% -6% -6% 8%; background: var(--poster-glow, radial-gradient(circle, rgba(140,255,74,.45), rgba(139,92,246,.35) 50%, transparent 70%)); filter: blur(60px); z-index: -1; opacity: .8; animation: breathe calc(var(--beat) * 2) ease-in-out infinite; }
@keyframes breathe { 50% { transform: scale(1.06); opacity: 1; } }
.tilt { transform-style: preserve-3d; transition: transform .6s var(--ease); will-change: transform; }
.tilt__glare { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at var(--gx, 50%) var(--gy, 50%), rgba(255,255,255,.35), transparent 45%); mix-blend-mode: overlay; opacity: 0; transition: opacity .4s; }
.tilt:hover .tilt__glare { opacity: 1; }
.poster { position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: var(--graphite); box-shadow: 0 40px 100px rgba(0,0,0,.6), 0 0 0 1px var(--line); }
.poster img { width: 100%; height: 100%; object-fit: cover; }
.poster__stamp { position: absolute; top: 18px; right: -44px; transform: rotate(45deg); background: var(--heat); color: #fff; font-family: var(--f-tech); font-weight: 700; letter-spacing: .2em; font-size: 12px; padding: 8px 56px; z-index: 3; }

/* type-poster fallback when a show has no flyer yet */
.tposter { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: space-between; padding: 8%; color: var(--text); overflow: hidden; background:
  radial-gradient(120% 80% at 0% 100%, rgba(140,255,74,.55), transparent 55%),
  radial-gradient(90% 70% at 100% 0%, rgba(139,92,246,.7), transparent 60%),
  linear-gradient(160deg, #111016, #050506); }
.tposter::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(0deg, transparent 0 3px, rgba(255,255,255,.035) 3px 4px); }
.tposter::after { content: ''; position: absolute; right: -18%; bottom: -12%; width: 80%; aspect-ratio: 1; background: url('../img/brand/mark.webp') center / contain no-repeat; opacity: .16; transform: rotate(-12deg); }
.tposter__top { font-family: var(--f-tech); font-size: clamp(9px, 1vw, 12px); letter-spacing: .24em; text-transform: uppercase; display: flex; justify-content: space-between; position: relative; z-index: 1; }
.tposter__title { position: relative; z-index: 1; font-family: var(--f-display); font-weight: 900; text-transform: uppercase; line-height: .86; font-size: clamp(28px, 4.4vw, 78px); overflow-wrap: anywhere; }
.tposter--sm .tposter__title { font-size: clamp(22px, 2.6vw, 40px); }
.tposter__date { position: relative; z-index: 1; display: flex; justify-content: space-between; align-items: flex-end; font-family: var(--f-tech); text-transform: uppercase; letter-spacing: .12em; font-size: clamp(10px, 1vw, 13px); }
.tposter__date b { font-family: var(--f-display); font-size: 3.4em; letter-spacing: 0; line-height: .8; color: var(--sub); }

.headliner__meta { display: flex; flex-direction: column; gap: 28px; }
.bigdate { display: flex; align-items: flex-end; gap: 18px; }
.bigdate__d { font-family: var(--f-display); font-weight: 900; font-size: clamp(110px, 13vw, 220px); line-height: .76; color: var(--sub); letter-spacing: -.02em; }
.bigdate__m { font-family: var(--f-tech); font-weight: 700; text-transform: uppercase; letter-spacing: .14em; line-height: 1.4; padding-bottom: 8px; }
.bigdate__m span { display: block; color: var(--muted); font-weight: 500; }
.acts { display: flex; flex-wrap: wrap; gap: 8px; }
.acts li { font-family: var(--f-tech); font-weight: 600; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; padding: 8px 14px; border: 1px solid var(--line); transition: background .3s, color .3s, border-color .3s; }
.acts li:first-child { background: var(--text); color: var(--ink); border-color: var(--text); }
.acts li:hover { border-color: var(--sub); color: var(--sub); }
.acts li:first-child:hover { background: var(--sub); color: var(--ink); }
.facts { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line); }
.facts > div { padding: 16px 16px 0 0; }
.facts dt { font-family: var(--f-tech); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.facts dd { margin: 6px 0 0; font-weight: 600; }
@media (max-width: 900px) { .headliner { grid-template-columns: 1fr; } .headliner__art { max-width: 520px; } }
@media (max-width: 520px) { .facts { grid-template-columns: 1fr 1fr; } }

/* countdown */
.count { display: flex; gap: 10px; }
.count__cell { flex: 1 1 0; max-width: 110px; min-width: 0; padding: clamp(8px, 1vw, 14px) 6px; background: var(--coal); border: 1px solid var(--line); text-align: center; position: relative; overflow: hidden; }
.count__cell::after { content: ''; position: absolute; left: 0; right: 0; top: 50%; height: 1px; background: rgba(0,0,0,.6); }
.count__n { display: block; font-family: var(--f-display); font-weight: 900; font-size: clamp(30px, 3.2vw, 52px); line-height: 1; font-variant-numeric: tabular-nums; }
.count__n.tick { animation: tick .45s var(--ease); }
@keyframes tick { 0% { transform: translateY(-40%); opacity: 0; filter: blur(4px); } 100% { transform: none; opacity: 1; filter: none; } }
.count__l { display: block; font-family: var(--f-tech); font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }

/* ==========================================================================
   SHOW LIST (rows with cursor-follow flyer)
   ========================================================================== */
.rows { border-top: 1px solid var(--line); }
.row {
  position: relative; display: grid; grid-template-columns: clamp(64px, 7vw, 120px) minmax(0, 1fr) clamp(120px, 13vw, 220px) clamp(80px, 8vw, 140px) clamp(40px, 3.6vw, 60px); gap: clamp(12px, 1.8vw, 28px); align-items: center;
  padding: clamp(16px, 1.9vw, 30px) 0; border-bottom: 1px solid var(--line); isolation: isolate; overflow: hidden;
}
.row::before { content: ''; position: absolute; inset: 0; z-index: -1; background: var(--sub); transform: scaleY(0); transform-origin: bottom; transition: transform .6s var(--ease-io); }
.row:hover::before { transform: scaleY(1); }
.row:hover { color: var(--ink); }
.row:hover .row__sub, .row:hover .row__city small { color: rgba(10,10,11,.65); }
.row__date { font-family: var(--f-display); font-weight: 900; font-size: clamp(34px, 3.6vw, 58px); line-height: .8; }
.row__date small { display: block; font-family: var(--f-tech); font-weight: 600; font-size: 11px; letter-spacing: .2em; margin-top: 8px; }
.row__title { font-family: var(--f-display); font-weight: 800; text-transform: uppercase; font-size: clamp(26px, 2.8vw, 46px); line-height: .92; transition: transform .6s var(--ease); }
.row:hover .row__title { transform: translateX(14px); }
.row__sub { color: var(--muted); font-size: 14px; margin-top: 8px; font-family: var(--f-tech); letter-spacing: .06em; text-transform: uppercase; }
.row__city { font-family: var(--f-tech); font-weight: 700; letter-spacing: .12em; text-transform: uppercase; font-size: 14px; }
.row__city small { display: block; color: var(--muted); font-weight: 500; }
.row__price { font-family: var(--f-tech); font-weight: 600; font-size: 14px; letter-spacing: .08em; text-transform: uppercase; }
.row__go { width: clamp(38px, 3.6vw, 58px); height: clamp(38px, 3.6vw, 58px); border-radius: 50%; border: 1.5px solid currentColor; display: grid; place-items: center; transition: transform .6s var(--ease), background .3s; }
.row:hover .row__go { transform: rotate(-45deg); background: var(--ink); color: var(--sub); }
.row__go svg { width: 18px; height: 18px; }
.row.is-cancelled .row__title { text-decoration: line-through; text-decoration-thickness: 3px; }
.tag { display: inline-block; font-family: var(--f-tech); font-size: 10px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; padding: 4px 8px; background: var(--heat); color: #fff; vertical-align: middle; margin-left: 10px; }
.tag--sub { background: var(--sub); color: var(--ink); }
@media (max-width: 900px) {
  .row { grid-template-columns: clamp(52px, 12vw, 80px) minmax(0, 1fr) clamp(36px, 8vw, 46px); }
  .row__city, .row__price { display: none; }
}
.float-flyer { position: fixed; left: 0; top: 0; width: clamp(200px, 18vw, 300px); aspect-ratio: 4/5; pointer-events: none; z-index: 120; opacity: 0; transform: translate(-50%, -50%) scale(.6) rotate(-6deg); transition: opacity .35s, transform .5s var(--ease); overflow: hidden; box-shadow: 0 30px 80px rgba(0,0,0,.6); }
.float-flyer.is-on { opacity: 1; transform: translate(-50%, -50%) scale(1) rotate(var(--rot, -4deg)); }
.float-flyer img, .float-flyer .tposter { width: 100%; height: 100%; object-fit: cover; }
@media (hover: none) { .float-flyer { display: none; } }

/* ==========================================================================
   THE RIG (sticky split + iris reveals)
   ========================================================================== */
.rig { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: clamp(32px, 6vw, 100px); }
.rig__sticky { position: sticky; top: calc(var(--header-h) + 30px); align-self: start; display: flex; flex-direction: column; gap: 28px; }
.rig__stack { display: flex; flex-direction: column; gap: clamp(24px, 4vw, 60px); }
.iris { position: relative; overflow: hidden; clip-path: inset(var(--iris, 18%) round 2px); transition: clip-path .1s linear; }
.iris img { width: 100%; height: auto; transform: scale(var(--iz, 1.2)); transition: transform .1s linear; }
.iris figcaption { position: absolute; left: 16px; bottom: 14px; font-family: var(--f-tech); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; background: rgba(5,5,6,.7); padding: 6px 10px; backdrop-filter: blur(6px); }
.iris--duo img { filter: grayscale(1) contrast(1.2); }
.iris--duo::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, var(--vio), var(--sub)); mix-blend-mode: color; opacity: .75; }
.scope { width: 100%; height: clamp(90px, 9vw, 150px); border: 1px solid var(--line); background: repeating-linear-gradient(90deg, transparent 0 39px, rgba(236,232,223,.05) 39px 40px), repeating-linear-gradient(0deg, transparent 0 29px, rgba(236,232,223,.05) 29px 30px); }
.pk { display: flex; align-items: center; gap: 16px; padding: 18px 20px; border: 1px solid var(--line); background: linear-gradient(90deg, rgba(140,255,74,.08), transparent); }
.pk b { font-family: var(--f-display); font-weight: 900; font-size: 40px; line-height: .8; color: var(--sub); }
.pk span { font-family: var(--f-tech); font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }
@media (max-width: 900px) { .rig { grid-template-columns: 1fr; } .rig__sticky { position: static; } }

/* ==========================================================================
   ARCHIVE REEL — pinned horizontal poster wall on bone paper
   ========================================================================== */
.bone { background: var(--bone); color: var(--ink); }
.bone .ch { color: rgba(10,10,11,.55); } .bone .ch b { color: var(--ink); }
.bone .eyebrow { color: var(--sub-deep); }
.bone .lede { color: rgba(10,10,11,.66); }
.bone .outline { -webkit-text-stroke-color: var(--ink); }
.bone .btn--ghost { --fg: var(--ink); box-shadow: inset 0 0 0 1.5px rgba(10,10,11,.2); }
.reel { position: relative; }
.reel__pin { position: relative; padding: clamp(48px, 6vw, 110px) 0; }
.reel__head { padding: 0 var(--gutter); display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: clamp(20px, 2.6vw, 40px); }
.reel__track { display: flex; gap: clamp(18px, 2.4vw, 36px); padding: 36px var(--gutter) 30px; align-items: center; overflow-x: auto; overscroll-behavior-x: contain; scroll-snap-type: x proximity; scrollbar-width: none; cursor: grab; }
.reel__track::-webkit-scrollbar { display: none; }
.reel__track.is-drag { cursor: grabbing; scroll-snap-type: none; }
.reel__track.is-drag * { pointer-events: none; }
.reel__card { scroll-snap-align: start; }
.reel__bar { display: flex; align-items: center; gap: 16px; margin: clamp(10px, 1.4vw, 20px) var(--gutter) 0; }
.reel__bar .reel__progress { flex: 1; margin: 0; }
.reel__nav { width: clamp(40px, 3.4vw, 54px); height: clamp(40px, 3.4vw, 54px); border-radius: 50%; border: 1.5px solid rgba(10,10,11,.25); display: grid; place-items: center; transition: background .3s, color .3s, border-color .3s; }
.reel__nav:hover { background: var(--ink); color: var(--sub); border-color: var(--ink); }
.reel__nav svg { width: 18px; height: 18px; }
.reel__nav[disabled] { opacity: .3; pointer-events: none; }
.reel__card { flex: none; width: clamp(220px, 24vw, 380px); position: relative; transform: rotate(var(--r, 0deg)) translateY(var(--y, 0)); transition: transform .6s var(--ease); }
.reel__card:hover { transform: rotate(0) translateY(-12px) scale(1.03); z-index: 2; }
.reel__card .poster { box-shadow: 0 30px 60px rgba(10,10,11,.28); }
.reel__card .poster img { transition: filter .4s; }
.reel__card:hover .poster img { filter: url(#rgbsplit); }
.reel__cap { margin-top: 14px; font-family: var(--f-tech); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; display: flex; justify-content: space-between; gap: 12px; }
.reel__cap b { font-weight: 700; }
.reel__cap span { color: rgba(10,10,11,.55); text-align: right; }
.reel__progress { height: 2px; background: rgba(10,10,11,.12); position: relative; }
.reel__progress i { position: absolute; inset: 0; background: var(--ink); transform-origin: left; transform: scaleX(var(--p, 0)); }
.reel__end { flex: none; width: clamp(260px, 30vw, 460px); display: flex; flex-direction: column; gap: 22px; padding-left: 20px; }
@media (max-width: 760px) {
  .reel__card { width: 72vw; }
  .reel__nav { display: none; }
}

/* ==========================================================================
   CHAPTERS — Montana / Seattle split
   ========================================================================== */
.chapters { display: flex; min-height: 72svh; border-top: 1px solid var(--line); }
.chapter { position: relative; flex: 1; overflow: hidden; display: flex; flex-direction: column; justify-content: space-between; padding: clamp(28px, 4vw, 60px); transition: flex .9s var(--ease-io); isolation: isolate; border-right: 1px solid var(--line); min-width: 0; }
.chapter:last-child { border-right: 0; }
.chapters:hover .chapter { flex: .7; }
.chapters .chapter:hover { flex: 1.6; }
.chapter__bg { position: absolute; inset: 0; z-index: -2; }
.chapter__bg img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) brightness(.62); transform: scale(1.1); transition: transform 1.4s var(--ease), filter 1s; }
.chapter:hover .chapter__bg img { transform: scale(1); filter: grayscale(0) brightness(.55); }
.chapter::after { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(5,5,6,.05) 30%, rgba(5,5,6,.9)); }
.chapter__coords { font-family: var(--f-tech); font-size: 12px; letter-spacing: .2em; color: var(--muted); display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.chapter__name { font-family: var(--f-display); font-weight: 900; text-transform: uppercase; line-height: .8; font-size: clamp(64px, 9vw, 170px); }
.chapter__cities { font-family: var(--f-tech); font-weight: 600; letter-spacing: .14em; text-transform: uppercase; font-size: 13px; color: var(--sub); margin: 18px 0 14px; }
.chapter__copy { max-width: 46ch; color: var(--muted); max-height: 0; opacity: 0; overflow: hidden; transition: max-height 1s var(--ease-io), opacity .6s; }
.chapter:hover .chapter__copy, .chapter:focus-within .chapter__copy { max-height: 320px; opacity: 1; }
@media (max-width: 900px) {
  .chapters { flex-direction: column; min-height: 0; }
  .chapter, .chapters:hover .chapter, .chapters .chapter:hover { flex: none; min-height: 70svh; border-right: 0; border-bottom: 1px solid var(--line); }
  .chapter__copy { max-height: none; opacity: 1; }
}

/* ==========================================================================
   BOOK / CONTACT
   ========================================================================== */
.book { position: relative; overflow: hidden; text-align: left; }
.book__title { font-family: var(--f-display); font-weight: 900; text-transform: uppercase; line-height: .82; font-size: clamp(44px, 14.6vw, 290px); letter-spacing: -.015em; white-space: nowrap; }
.book__title .row-t { display: inline; }
.book__title .row-t:nth-child(2) { color: transparent; -webkit-text-stroke: 2px var(--sub); }
.book__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: clamp(24px, 3vw, 44px); }
.book__cell { background: var(--void); padding: clamp(18px, 2vw, 30px); display: flex; flex-direction: column; gap: clamp(10px, 1.6vw, 26px); justify-content: space-between; transition: background .4s; position: relative; overflow: hidden; }
.book__cell:hover { background: var(--coal); }
.book__cell .k { font-family: var(--f-tech); font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); }
.book__cell .v { font-family: var(--f-display); font-weight: 800; font-size: clamp(26px, 2.6vw, 40px); text-transform: uppercase; line-height: .95; overflow-wrap: anywhere; }
.book__cell .v.sm { font-size: clamp(16px, 1.7vw, 28px); text-transform: none; font-family: var(--f-tech); font-weight: 600; }
.book__cell:hover .v { color: var(--sub); }
@media (max-width: 900px) { .book__grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.ftr { border-top: 1px solid var(--line); padding: 60px var(--gutter) 36px; position: relative; z-index: 2; background: var(--void); }
.ftr__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.ftr__logo img { height: clamp(30px, 3vw, 50px); width: auto; }
.ftr h4 { font-family: var(--f-tech); font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; font-weight: 600; }
.ftr li { margin-bottom: 8px; }
.ftr li a { font-weight: 500; transition: color .3s; }
.ftr li a:hover { color: var(--sub); }
.ftr__word { font-family: var(--f-display); font-weight: 900; text-transform: uppercase; font-size: clamp(38px, 10.8vw, 210px); line-height: 1; letter-spacing: -.02em; margin-top: clamp(28px, 4vw, 60px); padding: .06em 0; text-align: center; color: transparent; -webkit-text-stroke: 1px rgba(236,232,223,.2); white-space: nowrap; overflow: visible; }
.ftr__word span { display: inline-block; transition: color .4s, -webkit-text-stroke-color .4s, transform .5s var(--ease); }
.ftr__word span:hover { color: var(--sub); -webkit-text-stroke-color: var(--sub); transform: translateY(-6%); }
.ftr__bottom { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-top: 28px; padding-right: clamp(64px, 5.5vw, 90px); font-family: var(--f-tech); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.ftr__bottom a:hover { color: var(--sub); }
@media (max-width: 900px) { .ftr__top { grid-template-columns: 1fr 1fr; } .ftr__brand { grid-column: 1 / -1; } }

/* ==========================================================================
   PAGE HERO (inner pages)
   ========================================================================== */
.phero { position: relative; padding: calc(var(--header-h) + clamp(28px, 4.5vw, 76px)) var(--gutter) clamp(24px, 3vw, 48px); overflow: hidden; isolation: isolate; }
.phero__bg { position: absolute; inset: 0; z-index: -1; }
.phero__bg img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) brightness(.3) contrast(1.2); }
.phero__bg::after { content: ''; position: absolute; inset: 0; background: radial-gradient(80% 90% at 90% 0%, rgba(139,92,246,.4), transparent 60%), linear-gradient(180deg, transparent 30%, var(--void)); }
.phero__count { font-family: var(--f-display); font-weight: 900; color: var(--sub); font-size: .32em; vertical-align: top; margin-left: .1em; }

/* filter chips */
.chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip { font-family: var(--f-tech); font-weight: 700; font-size: 12px; letter-spacing: .16em; text-transform: uppercase; padding: 12px 18px; border: 1.5px solid var(--line); transition: all .3s var(--ease); }
.chip:hover { border-color: var(--text); }
.chip[aria-pressed="true"] { background: var(--sub); color: var(--ink); border-color: var(--sub); }
.chip sup { font-size: 9px; margin-left: 4px; opacity: .7; }

/* card grid (upcoming on shows page) */
.cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 330px), 1fr)); gap: clamp(20px, 2.4vw, 36px); }
.card { position: relative; display: block; }
.card .poster { transition: transform .8s var(--ease); }
.card:hover .poster { transform: translateY(-8px); }
.card .tposter__top { padding-left: 64px; }
.card__date { position: absolute; left: 14px; top: 14px; z-index: 3; background: var(--void); padding: 10px 12px 8px; text-align: center; min-width: 64px; }
.card__date b { display: block; font-family: var(--f-display); font-weight: 900; font-size: 36px; line-height: .8; color: var(--sub); }
.card__date span { font-family: var(--f-tech); font-size: 10px; letter-spacing: .2em; text-transform: uppercase; }
.card__body { padding-top: 18px; }
.card__title { font-family: var(--f-display); font-weight: 800; text-transform: uppercase; font-size: clamp(26px, 2.2vw, 36px); line-height: .92; }
.card__meta { display: flex; justify-content: space-between; gap: 12px; margin-top: 10px; font-family: var(--f-tech); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.card__meta b { color: var(--sub); font-weight: 700; }
.card.is-hidden, .row.is-hidden { display: none; }
.empty { border: 1px dashed var(--line); padding: 50px 30px; text-align: center; font-family: var(--f-tech); letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }

/* masonry archive */
.masonry { columns: 4 240px; column-gap: clamp(14px, 1.8vw, 26px); }
.masonry figure { break-inside: avoid; margin: 0 0 clamp(14px, 1.8vw, 26px); position: relative; overflow: hidden; }
.masonry img { width: 100%; height: auto; transition: transform 1.2s var(--ease), filter .5s; }
.masonry figure:hover img { transform: scale(1.06); }
.masonry figcaption { position: absolute; inset: auto 0 0 0; padding: 40px 14px 12px; background: linear-gradient(transparent, rgba(5,5,6,.9)); color: var(--bone); font-family: var(--f-tech); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; transform: translateY(100%); transition: transform .5s var(--ease); }
.masonry figure:hover figcaption { transform: none; }
.masonry figcaption b { display: block; font-size: 13px; }

/* ==========================================================================
   SINGLE SHOW
   ========================================================================== */
.show-hero { position: relative; padding: calc(var(--header-h) + clamp(20px, 3.5vw, 56px)) var(--gutter) clamp(28px, 3.5vw, 56px); display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 5fr); gap: clamp(32px, 6vw, 100px); align-items: center; isolation: isolate; overflow: hidden; }
.show-hero__bg { position: absolute; inset: -10%; z-index: -2; }
.show-hero__bg img { width: 100%; height: 100%; object-fit: cover; filter: blur(60px) saturate(1.6) brightness(.45); transform: scale(1.2); }
.show-hero__bg--gen { background: radial-gradient(60% 60% at 20% 80%, rgba(140,255,74,.35), transparent 60%), radial-gradient(60% 60% at 80% 10%, rgba(139,92,246,.5), transparent 60%); filter: blur(30px); }
.show-hero::after { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(5,5,6,.3), var(--void) 96%); }
.show-hero__title { font-family: var(--f-display); font-weight: 900; text-transform: uppercase; line-height: .84; font-size: clamp(52px, 7.6vw, 150px); letter-spacing: -.01em; overflow-wrap: anywhere; }
.show-hero__info { display: flex; flex-direction: column; gap: clamp(16px, 1.8vw, 26px); }
.show-hero__art { position: relative; }
.back { font-family: var(--f-tech); font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); display: inline-flex; gap: 10px; align-items: center; }
.back:hover { color: var(--sub); }
.detail-grid { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 4fr); gap: clamp(32px, 6vw, 100px); }
.detail-grid .lede { max-width: 60ch; white-space: pre-line; }
.venue-card { border: 1px solid var(--line); padding: clamp(18px, 2vw, 28px); display: flex; flex-direction: column; gap: 10px; position: sticky; top: calc(var(--header-h) + 20px); align-self: start; }
.venue-card .k { font-family: var(--f-tech); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.venue-card .v { font-family: var(--f-display); font-weight: 800; font-size: 34px; text-transform: uppercase; line-height: .95; }
.lineup-big li { font-family: var(--f-display); font-weight: 900; text-transform: uppercase; font-size: clamp(40px, 6vw, 110px); line-height: .9; border-bottom: 1px solid var(--line); padding: 10px 0 6px; display: flex; justify-content: space-between; align-items: baseline; gap: 20px; transition: color .3s, padding .5s var(--ease); }
.lineup-big li small { font-family: var(--f-tech); font-size: 12px; letter-spacing: .2em; color: var(--muted); font-weight: 600; }
.lineup-big li:hover { color: var(--sub); padding-left: 16px; }
.lineup-big li:nth-child(n+2) { font-size: clamp(30px, 4.2vw, 76px); }
.ticketbar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 180; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 12px var(--gutter); background: rgba(5,5,6,.9); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-top: 1px solid var(--line); transform: translateY(110%); transition: transform .6s var(--ease); }
.ticketbar.is-on { transform: none; }
.ticketbar__t { font-family: var(--f-tech); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; font-size: 14px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; min-width: 0; }
.ticketbar__t small { display: block; color: var(--muted); font-weight: 500; }
@media (max-width: 900px) { .show-hero, .detail-grid { grid-template-columns: 1fr; } .show-hero__art { max-width: 460px; order: -1; } .venue-card { position: static; } }

/* back to top — a speaker cone whose ring fills with scroll progress */
.totop { position: fixed; right: max(var(--gutter), env(safe-area-inset-right)); bottom: calc(clamp(16px, 2.4vw, 32px) + env(safe-area-inset-bottom)); z-index: 170; width: clamp(48px, 4vw, 60px); height: clamp(48px, 4vw, 60px); border-radius: 50%; background: rgba(5,5,6,.82); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); color: var(--text); display: grid; place-items: center; opacity: 0; transform: translateY(20px) scale(.8); pointer-events: none; transition: opacity .4s, transform .5s var(--ease), background .3s, color .3s; }
.totop.is-on { opacity: 1; transform: none; pointer-events: auto; }
.totop:hover { background: var(--sub); color: var(--ink); }
.totop__ring { position: absolute; inset: 0; width: 100%; height: 100%; transform: rotate(-90deg); }
.totop__ring circle { fill: none; stroke: var(--line); stroke-width: 2; }
.totop__ring .totop__prog { stroke: var(--sub); stroke-dasharray: 100; stroke-dashoffset: calc(100 - var(--p, 0) * 100); stroke-linecap: round; }
.totop:hover .totop__prog { stroke: var(--ink); }
.totop__arr { width: 40%; height: 40%; position: relative; transition: transform .5s var(--ease); }
.totop:hover .totop__arr { transform: translateY(-3px); }
.page-show .totop { bottom: calc(86px + env(safe-area-inset-bottom)); }

/* 404 */
.nf { min-height: 86svh; padding-top: var(--header-h); display: grid; place-items: center; text-align: center; padding: var(--gutter); }

/* ---------- Page transition wipe ---------- */
.wipe { position: fixed; inset: 0; z-index: 450; pointer-events: none; display: grid; grid-template-columns: repeat(5, 1fr); }
.wipe i { background: var(--sub); transform: scaleY(0); transform-origin: bottom; transition: transform .55s var(--ease-io); }
.wipe i:nth-child(2) { transition-delay: .05s; background: var(--sub-deep); } .wipe i:nth-child(3) { transition-delay: .1s; background: var(--vio); }
.wipe i:nth-child(4) { transition-delay: .15s; background: var(--sub-deep); } .wipe i:nth-child(5) { transition-delay: .2s; }
.wipe.is-on i { transform: scaleY(1); }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  [data-reveal], .split .c { opacity: 1; transform: none; }
  .grain, .hero__canvas { display: none; }
  .iris { clip-path: none; } .iris img { transform: none; }
}

/* ==========================================================================
   RENTALS — "the fleet": spec-sheet cards, system rows, a quote desk on bone paper
   ========================================================================== */
.rhero { padding-bottom: clamp(30px, 4vw, 64px); }
.rhero .mega { font-size: clamp(64px, 15vw, 270px); }
.rhero__rig .c { color: transparent; -webkit-text-stroke: 2px var(--sub); }
.rhero__row { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px 40px; flex-wrap: wrap; margin-top: clamp(16px, 2vw, 30px); }
.rhero__cta { display: flex; gap: 12px; flex-wrap: wrap; }
.rstats { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 150px), 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); margin: clamp(26px, 3.4vw, 54px) 0 0; }
.rstats > div { background: rgba(5,5,6,.72); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); padding: clamp(14px, 1.6vw, 24px); }
.rstats dt { font-family: var(--f-tech); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.rstats dd { margin: 8px 0 0; font-family: var(--f-display); font-weight: 900; font-size: clamp(34px, 3.6vw, 60px); line-height: .85; color: var(--sub); text-transform: uppercase; }

/* --- price chip --- */
.rprice { display: flex; align-items: baseline; flex-wrap: wrap; gap: 4px 10px; font-family: var(--f-tech); }
.rprice b { font-family: var(--f-display); font-weight: 900; font-size: clamp(28px, 2.4vw, 38px); line-height: 1; color: var(--sub); letter-spacing: .01em; }
.rprice small { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-left: -4px; }
.rprice span { flex-basis: 100%; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.rprice--lg b { font-size: clamp(36px, 3.4vw, 54px); }

/* --- systems (packages) --- */
.systems { display: flex; flex-direction: column; gap: clamp(22px, 3vw, 48px); }
.sys { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); border: 1px solid var(--line); background: linear-gradient(120deg, var(--coal), var(--void) 70%); position: relative; overflow: hidden; }
.sys:nth-child(even) { grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr); }
.sys:nth-child(even) .sys__art { order: 2; }
.sys::after { content: ''; position: absolute; right: -20%; top: -40%; width: 60%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(140,255,74,.14), transparent 65%); pointer-events: none; transition: transform 1.2s var(--ease); }
.sys:hover::after { transform: translate(-10%, 10%) scale(1.2); }
.sys__art { min-height: clamp(260px, 32vw, 520px); background: var(--graphite); clip-path: inset(var(--iris, 18%) round 0); }
.sys__art img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.sys__art picture { position: absolute; inset: 0; }
.sys__art picture img { filter: grayscale(1) contrast(1.15) brightness(.8); }
.sys__body { position: relative; z-index: 1; padding: clamp(22px, 3.2vw, 56px); display: flex; flex-direction: column; gap: 14px; justify-content: center; }
.sys__name { font-family: var(--f-display); font-weight: 900; text-transform: uppercase; line-height: .86; font-size: clamp(48px, 6vw, 108px); letter-spacing: -.005em; overflow-wrap: anywhere; }
.sys__tag { font-size: clamp(17px, 1.4vw, 21px); color: var(--text); max-width: 40ch; }
.sys__items { display: flex; flex-direction: column; border-top: 1px solid var(--line); margin-top: 6px; }
.sys__items li { display: flex; align-items: baseline; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--line); font-weight: 600; transition: padding .4s var(--ease), color .3s; }
.sys__items li:hover { padding-left: 10px; color: var(--sub); }
.sys__items b { font-family: var(--f-display); font-weight: 900; font-size: 24px; color: var(--sub); min-width: 2.2em; line-height: 1; }
.sys__items small { margin-left: auto; font-family: var(--f-tech); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); font-weight: 500; }
.sys__desc { color: var(--muted); max-width: 56ch; white-space: pre-line; }
.sys__foot { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 8px; }
@media (max-width: 900px) {
  .sys, .sys:nth-child(even) { grid-template-columns: 1fr; }
  .sys:nth-child(even) .sys__art { order: 0; }
  .sys__art { min-height: 0; aspect-ratio: 4 / 3; }
}

/* --- gear grid --- */
.gear { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr)); gap: clamp(18px, 2.2vw, 34px); }
.gcard { display: flex; flex-direction: column; border: 1px solid var(--line); background: var(--coal); transition: border-color .4s, transform .6s var(--ease); }
.gcard:hover { border-color: rgba(140,255,74,.5); transform: translateY(-6px); }
.gcard.is-hidden { display: none; }
.gcard__open { display: block; width: 100%; text-align: left; }
.gcard__art { position: relative; display: block; aspect-ratio: 1; overflow: hidden; background: radial-gradient(75% 70% at 50% 40%, #202027, var(--graphite) 60%, var(--coal)); }
.gcard__art img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease), filter .6s; }
.gcard:hover .gcard__art img { transform: scale(1.07); }
.gcard__none { position: absolute; inset: 0; display: grid; place-items: center; color: rgba(236,232,223,.18); }
.gcard__none svg { width: 38%; height: 38%; }
.gcard__qty { position: absolute; left: 12px; bottom: 12px; z-index: 2; display: flex; align-items: baseline; gap: 6px; background: rgba(5,5,6,.78); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); padding: 6px 10px 5px; font-family: var(--f-tech); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }
.gcard__qty b { font-family: var(--f-display); font-weight: 900; font-size: 22px; line-height: .9; color: var(--sub); letter-spacing: 0; }
.gcard__body { padding: clamp(16px, 1.6vw, 22px); display: flex; flex-direction: column; gap: 8px; flex: 1; }
.gcard__type { font-family: var(--f-tech); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.gcard__name { font-family: var(--f-display); font-weight: 900; text-transform: uppercase; font-size: clamp(30px, 2.6vw, 42px); line-height: .9; overflow-wrap: anywhere; }
.gcard__specs { display: flex; flex-direction: column; gap: 2px; margin-top: 2px; }
.gcard__specs li { display: flex; justify-content: space-between; gap: 12px; font-size: 14px; padding: 5px 0; border-bottom: 1px dashed var(--line); }
.gcard__specs span { font-family: var(--f-tech); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.gcard__foot { display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; margin-top: auto; padding-top: 10px; }
.rbtn { flex: none; width: 48px; height: 48px; display: grid; place-items: center; border: 1.5px solid var(--line); color: var(--text); transition: background .3s, color .3s, border-color .3s, transform .4s var(--ease); }
.rbtn svg { width: 20px; height: 20px; transition: transform .4s var(--ease); }
.rbtn:hover { background: var(--sub); border-color: var(--sub); color: var(--ink); }
.rbtn:hover svg { transform: rotate(90deg); }
.rbtn.is-on { background: var(--sub); border-color: var(--sub); color: var(--ink); }
.is-bump { animation: bump .5s var(--ease); }
@keyframes bump { 30% { transform: scale(1.18); } }

/* --- gear detail dialog --- */
.gdlg { padding: 0; border: 0; background: transparent; color: var(--text); max-width: min(1180px, calc(100vw - 24px)); width: 100%; max-height: calc(100svh - 24px); overflow: visible; }
.gdlg::backdrop { background: rgba(5,5,6,.82); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.gdlg[open] { animation: dlgIn .6s var(--ease); }
.gdlg[open]::backdrop { animation: fadeIn .4s ease; }
@keyframes dlgIn { from { opacity: 0; transform: translateY(40px) scale(.97); } }
@keyframes fadeIn { from { opacity: 0; } }
.gdlg__in { position: relative; display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); background: var(--coal); border: 1px solid var(--line); max-height: calc(100svh - 24px); overflow: auto; overscroll-behavior: contain; }
.gdlg__x { position: absolute; top: 12px; right: 12px; z-index: 3; width: 46px; height: 46px; display: grid; place-items: center; background: rgba(5,5,6,.8); border: 1px solid var(--line); transition: background .3s, color .3s, transform .5s var(--ease); }
.gdlg__x:hover { background: var(--sub); color: var(--ink); transform: rotate(90deg); }
.gdlg__x svg { width: 20px; height: 20px; }
.gdlg__media { display: flex; flex-direction: column; background: var(--graphite); min-width: 0; }
.gdlg__main { position: relative; aspect-ratio: 1; overflow: hidden; background: radial-gradient(75% 70% at 50% 40%, #202027, var(--graphite)); }
.gdlg__main img { width: 100%; height: 100%; object-fit: cover; }
.gdlg__main img.is-swap { animation: swapIn .5s var(--ease); }
@keyframes swapIn { from { opacity: 0; transform: scale(1.04); } }
.gdlg__thumbs { display: flex; gap: 6px; padding: 8px; overflow-x: auto; scrollbar-width: thin; }
.gdlg__thumbs button { flex: none; width: 72px; aspect-ratio: 1; overflow: hidden; opacity: .5; outline: 2px solid transparent; outline-offset: -2px; transition: opacity .3s, outline-color .3s; }
.gdlg__thumbs button[aria-current="true"], .gdlg__thumbs button:hover { opacity: 1; }
.gdlg__thumbs button[aria-current="true"] { outline-color: var(--sub); }
.gdlg__thumbs img { width: 100%; height: 100%; object-fit: cover; }
.gdlg__info { padding: clamp(22px, 3vw, 44px); display: flex; flex-direction: column; gap: 16px; min-width: 0; }
.gdlg__name { font-family: var(--f-display); font-weight: 900; text-transform: uppercase; line-height: .86; font-size: clamp(46px, 5vw, 84px); padding-right: 40px; overflow-wrap: anywhere; }
.gdlg__name small { display: block; font-family: var(--f-tech); font-size: 13px; font-weight: 600; letter-spacing: .24em; color: var(--sub); margin-bottom: 8px; line-height: 1.2; }
.gdlg__desc { color: var(--muted); white-space: pre-line; }
.gdlg__specs { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.gdlg__specs > div { background: var(--coal); padding: 12px 14px; }
.gdlg__specs dt { font-family: var(--f-tech); font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.gdlg__specs dd { margin: 4px 0 0; font-weight: 600; overflow-wrap: anywhere; }
.gdlg__foot { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: auto; padding-top: 12px; border-top: 1px solid var(--line); }
@media (max-width: 860px) {
  .gdlg { max-width: 100vw; max-height: 100svh; margin: auto 0 0; }
  .gdlg__in { grid-template-columns: 1fr; max-height: 92svh; }
  .gdlg__main { aspect-ratio: 4 / 3; }
  .gdlg[open] { animation: dlgUp .55s var(--ease); }
  @keyframes dlgUp { from { transform: translateY(60%); } }
}
@media (max-width: 420px) { .gdlg__specs { grid-template-columns: 1fr; } }

/* --- add-ons --- */
.addons { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr); gap: clamp(24px, 5vw, 90px); align-items: start; border-top: 1px solid var(--line); padding-top: clamp(28px, 3.4vw, 56px); }
.addons__head .ch { margin-bottom: 14px; }
.addons__list li { display: flex; justify-content: space-between; align-items: baseline; gap: 20px; padding: 18px 0; border-bottom: 1px solid var(--line); transition: padding .4s var(--ease); }
.addons__list li:first-child { border-top: 1px solid var(--line); }
.addons__list li:hover { padding-left: 12px; }
.addons__list b { font-family: var(--f-display); font-weight: 800; text-transform: uppercase; font-size: clamp(22px, 2vw, 30px); line-height: 1; display: block; }
.addons__list small { display: block; color: var(--muted); margin-top: 6px; font-size: 15px; }
.addons__list span { flex: none; font-family: var(--f-tech); font-weight: 700; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--sub); text-align: right; }
@media (max-width: 900px) { .addons { grid-template-columns: 1fr; } }

/* --- quote desk (bone paper) --- */
.quote { scroll-margin-top: var(--header-h); }
.quote__grid { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: clamp(30px, 5vw, 100px); align-items: start; }
.quote__intro { position: sticky; top: calc(var(--header-h) + 24px); }
.quote__intro .ch { margin-bottom: 18px; }
.quote__steps { margin-top: clamp(22px, 3vw, 40px); border-top: 1.5px solid var(--ink); }
.quote__steps li { display: flex; gap: 16px; align-items: baseline; padding: 14px 0; border-bottom: 1px solid rgba(10,10,11,.14); font-weight: 600; font-size: clamp(17px, 1.3vw, 20px); }
.quote__steps b { font-family: var(--f-tech); font-size: 12px; letter-spacing: .14em; color: var(--sub-deep); }
.quote__alt { margin-top: 20px; font-family: var(--f-tech); font-size: 13px; letter-spacing: .08em; color: rgba(10,10,11,.6); }
.quote__alt a { color: var(--ink); font-weight: 700; border-bottom: 1.5px solid var(--sub-deep); }
@media (max-width: 900px) { .quote__grid { grid-template-columns: 1fr; } .quote__intro { position: static; } }

.qform { display: flex; flex-direction: column; gap: 18px; background: #f6f3ec; border: 1px solid rgba(10,10,11,.1); padding: clamp(18px, 2.6vw, 40px); box-shadow: 0 30px 80px -40px rgba(10,10,11,.35); }
.q-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
@media (max-width: 620px) { .q-row { grid-template-columns: 1fr; } }
.q-fld { display: flex; flex-direction: column; gap: 7px; min-width: 0; border: 0; padding: 0; margin: 0; }
.q-fld > span, .q-fld > legend, .q-picks > legend { font-family: var(--f-tech); font-size: 11px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: rgba(10,10,11,.62); padding: 0; }
.q-fld small, .q-picks > legend small { text-transform: none; letter-spacing: .02em; font-weight: 500; margin-left: 6px; font-family: var(--f-body); font-size: 12px; opacity: .8; }
.q-fld input, .q-fld select, .q-fld textarea {
  width: 100%; font: inherit; font-size: 16px; color: var(--ink); background: #fff; border: 1.5px solid rgba(10,10,11,.16); border-radius: 0;
  padding: 13px 14px; min-height: 50px; transition: border-color .2s, box-shadow .2s;
}
.q-fld textarea { resize: vertical; min-height: 110px; }
.q-fld select { appearance: none; -webkit-appearance: none; padding-right: 40px; cursor: pointer;
  background: #fff linear-gradient(45deg, transparent 50%, var(--ink) 50%) calc(100% - 20px) 52% / 6px 6px no-repeat, #fff linear-gradient(135deg, var(--ink) 50%, transparent 50%) calc(100% - 14px) 52% / 6px 6px no-repeat; }
.q-fld input:focus, .q-fld select:focus, .q-fld textarea:focus { outline: none; border-color: var(--ink); box-shadow: 4px 4px 0 var(--sub); }
.q-fld [aria-invalid="true"] { border-color: var(--heat); }
.q-err { color: #c4174a; font-size: 13px; font-weight: 600; }
.q-alert { background: rgba(255,61,110,.12); border-left: 3px solid var(--heat); padding: 12px 14px; font-weight: 600; color: #8e0f35; }
.q-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.q-seg > div { display: flex; border: 1.5px solid rgba(10,10,11,.16); background: #fff; min-height: 50px; }
.q-seg label { flex: 1; position: relative; display: flex; }
.q-seg label + label { border-left: 1px solid rgba(10,10,11,.12); }
.q-seg input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.q-seg span { flex: 1; display: grid; place-items: center; font-family: var(--f-tech); font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(10,10,11,.6); transition: background .25s, color .25s; padding: 0 6px; text-align: center; }
.q-seg input:checked + span { background: var(--ink); color: var(--sub); }
.q-seg input:focus-visible + span { box-shadow: inset 0 0 0 2px var(--sub-deep); }
.q-picks { border: 0; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.q-picks__list { display: flex; flex-direction: column; border: 1.5px solid rgba(10,10,11,.16); background: #fff; max-height: 360px; overflow-y: auto; }
.q-pick { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 10px 12px 10px 16px; border-bottom: 1px solid rgba(10,10,11,.08); transition: background .3s; position: relative; }
.q-pick:last-child { border-bottom: 0; }
.q-pick::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--sub-deep); transform: scaleY(0); transition: transform .35s var(--ease); }
.q-pick.is-on { background: rgba(140,255,74,.14); }
.q-pick.is-on::before { transform: none; }
.q-pick.is-flash { animation: pickFlash 1.2s var(--ease); }
@keyframes pickFlash { 20% { background: rgba(140,255,74,.45); } }
.q-pick__n { display: flex; flex-direction: column; min-width: 0; }
.q-pick__n b { font-weight: 700; overflow-wrap: anywhere; }
.q-pick__n small { font-family: var(--f-tech); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: rgba(10,10,11,.55); }
.q-step { display: flex; flex: none; border: 1.5px solid rgba(10,10,11,.16); }
.q-step button { width: 40px; height: 42px; font-size: 20px; font-weight: 700; color: var(--ink); transition: background .2s; }
.q-step button:hover { background: var(--sub); }
.q-step input { width: 44px; height: 42px; border: 0; border-inline: 1px solid rgba(10,10,11,.12); text-align: center; font: 700 16px var(--f-tech); color: var(--ink); background: #fff; -moz-appearance: textfield; appearance: textfield; }
.q-step input::-webkit-outer-spin-button, .q-step input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.q-submit { display: flex; align-items: center; gap: 16px 22px; flex-wrap: wrap; margin-top: 4px; }
.q-submit p { font-size: 14px; color: rgba(10,10,11,.6); }
.quote__done { background: var(--ink); color: var(--bone); padding: clamp(28px, 4vw, 60px); display: flex; flex-direction: column; gap: 16px; align-items: flex-start; outline: none; animation: dlgIn .8s var(--ease); }
.quote__done svg { width: 64px; height: 64px; color: var(--ink); background: var(--sub); border-radius: 50%; padding: 14px; box-shadow: 0 0 0 10px rgba(140,255,74,.18), 0 0 60px rgba(140,255,74,.5); }
.quote__done h3 { font-family: var(--f-display); font-weight: 900; text-transform: uppercase; font-size: clamp(48px, 5.4vw, 92px); line-height: .85; }
.quote__done p { color: rgba(236,232,223,.7); max-width: 46ch; font-size: 18px; }
.quote__done .btn--ghost { --fg: var(--bone); box-shadow: inset 0 0 0 1.5px rgba(236,232,223,.3); }

/* --- floating quote tray + toast --- */
.qtray { position: fixed; left: 50%; bottom: calc(18px + env(safe-area-inset-bottom)); z-index: 70; display: inline-flex; align-items: center; gap: 12px; padding: 10px 20px 10px 10px; background: var(--sub); color: var(--ink); font-family: var(--f-tech); font-weight: 700; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; box-shadow: 0 20px 60px rgba(140,255,74,.35); transform: translate(-50%, 0); transition: transform .5s var(--ease), opacity .4s; white-space: nowrap; }
.qtray[hidden] { display: inline-flex; opacity: 0; pointer-events: none; transform: translate(-50%, 140%); }
.qtray.is-away { opacity: 0; pointer-events: none; transform: translate(-50%, 140%); }
.qtray__n { min-width: 34px; height: 34px; padding: 0 8px; display: grid; place-items: center; background: var(--ink); color: var(--sub); font-family: var(--f-display); font-weight: 900; font-size: 20px; letter-spacing: 0; }
.qtray .arr { width: 18px; height: 18px; }
.qtoast { position: fixed; right: 18px; top: calc(var(--header-h) + 14px); z-index: 71; background: var(--ink); color: var(--bone); border-left: 3px solid var(--sub); padding: 12px 16px; font-weight: 600; max-width: min(360px, calc(100vw - 36px)); opacity: 0; transform: translateX(20px); transition: opacity .3s, transform .4s var(--ease); pointer-events: none; }
.qtoast.is-on { opacity: 1; transform: none; }
.page-rentals .totop { bottom: calc(84px + env(safe-area-inset-bottom)); }

/* ==========================================================================
   INVOICE + CONTRACT DOCUMENTS (paper) · client signing page · print
   ========================================================================== */
.invdoc, .ctdoc, .signcert { background: #fbfaf6; color: #17171a; font-family: var(--f-body); font-size: clamp(14px, .3vw + 13px, 16px); line-height: 1.55; padding: clamp(20px, 4vw, 56px); }
.invdoc h2, .invdoc h3, .signcert h2, .signcert h3 { font-family: var(--f-tech); text-transform: uppercase; letter-spacing: .16em; }
.invdoc__head { display: flex; justify-content: space-between; gap: 20px 32px; flex-wrap: wrap; padding-bottom: 20px; border-bottom: 2px solid #17171a; }
.invdoc__brand img { width: clamp(150px, 20vw, 220px); height: auto; filter: invert(1) hue-rotate(180deg); margin-bottom: 10px; }
.invdoc__brand p { font-size: 13px; color: #55545a; }
.invdoc__meta h2 { font-family: var(--f-display); font-weight: 900; font-size: clamp(36px, 5vw, 60px); line-height: .9; letter-spacing: .02em; text-align: right; }
.invdoc__meta dl { margin: 10px 0 0; display: grid; gap: 2px; }
.invdoc__meta dl div { display: flex; justify-content: flex-end; gap: 12px; font-size: 14px; }
.invdoc__meta dt { color: #6a6970; } .invdoc__meta dd { margin: 0; font-weight: 700; }
.invdoc__parties { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px 32px; padding: 22px 0; }
.invdoc h3 { font-size: 11px; color: #6a6970; margin-bottom: 6px; }
.invdoc__req { background: #fff4d6; border-left: 4px solid #e0a100; padding: 12px 16px; margin-bottom: 18px; font-size: 15px; }
.invdoc__items { width: 100%; border-collapse: collapse; }
.invdoc__items th { font-family: var(--f-tech); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: #6a6970; text-align: left; padding: 8px 0; border-bottom: 1px solid #d8d4ca; }
.invdoc__items td { padding: 12px 0; border-bottom: 1px solid #ebe7de; vertical-align: top; }
.invdoc__items td b { display: block; font-weight: 700; }
.invdoc__items td small { color: #6a6970; font-size: 13px; }
.invdoc__items .num { text-align: right; white-space: nowrap; padding-left: 16px; font-variant-numeric: tabular-nums; }
.invdoc__totals { margin: 18px 0 0 auto; max-width: 440px; display: grid; gap: 8px; }
.invdoc__totals > div { display: flex; justify-content: space-between; gap: 16px; align-items: baseline; }
.invdoc__totals span small { display: block; font-size: 12px; color: #6a6970; }
.invdoc__totals b { font-variant-numeric: tabular-nums; white-space: nowrap; }
.invdoc__total { border-top: 2px solid #17171a; padding-top: 10px; font-size: 1.25em; }
.invdoc__total b { font-family: var(--f-display); font-weight: 900; font-size: 1.5em; }
.invdoc__block { margin-top: 22px; }
.invdoc__contract { margin-top: 22px; font-size: 14px; color: #55545a; }

.ctdoc { counter-reset: none; }
.ctdoc h2 { font-family: var(--f-display); font-weight: 900; text-transform: uppercase; font-size: clamp(28px, 3.6vw, 44px); line-height: .95; margin-bottom: 8px; }
.ctdoc h3 { font-family: var(--f-tech); text-transform: uppercase; letter-spacing: .14em; font-size: 14px; margin: 26px 0 10px; padding-top: 14px; border-top: 1px solid #d8d4ca; }
.ctdoc h2 + h3 { border-top: 0; padding-top: 0; margin-top: 0; }
.ctdoc p { margin: 0 0 14px; }
.ctdoc .ct-n { font-family: var(--f-tech); font-weight: 700; }
.ctdoc .ct-fill { font-weight: 700; background: linear-gradient(transparent 62%, rgba(140,255,74,.45) 62%); }
.ctdoc .ct-blank { display: inline-block; min-width: 9em; border-bottom: 1.5px solid #17171a; height: 1.1em; vertical-align: -2px; }
.ctdoc__sigs { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px 40px; margin-top: 30px; padding-top: 20px; border-top: 2px solid #17171a; }
.ctdoc__sig h4 { font-family: var(--f-tech); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: #6a6970; margin: 0 0 4px; }
.ctdoc__who { font-weight: 700; margin-bottom: 6px !important; }
.ctdoc__ink { width: 100%; max-width: 320px; height: auto; border-bottom: 1.5px solid #17171a; }
.ctdoc__line { border-top: 1.5px solid #17171a; padding-top: 4px; margin: 34px 0 4px !important; font-size: 14px; }
.ctdoc__ink + .ctdoc__line { border-top: 0; margin-top: 4px !important; }
.ctdoc__date { font-size: 14px; } .ctdoc__date small { color: #6a6970; }

/* editor mode (admin) */
.ctdoc--edit { max-height: 72vh; overflow: auto; overscroll-behavior: contain; }
.ct-editor.is-editing .ctdoc--edit { max-height: none; overflow: visible; }
.ctdoc--edit .ct-block { position: relative; border-radius: 2px; transition: background .2s, box-shadow .2s; }
.ct-editor.is-editing .ct-block { cursor: text; }
.ct-editor.is-editing .ct-block:hover { box-shadow: 0 0 0 1px #c9c4b8; background: #fff; }
.ct-editor.is-editing .ct-block.is-current, .ct-editor.is-editing .ct-block:focus { outline: none; box-shadow: 0 0 0 2px #3fae2a; background: #fff; }
.ctdoc--edit p.ct-block { padding: 4px 8px; margin: 0 -8px 10px; white-space: pre-wrap; }
.ctdoc--edit h2.ct-block, .ctdoc--edit h3.ct-block { padding: 4px 8px; margin-left: -8px; margin-right: -8px; }
.ct-chip { display: inline-block; font-family: var(--f-tech); font-weight: 600; font-size: .86em; letter-spacing: .02em; line-height: 1.3; padding: 1px 7px; margin: 0 1px; background: rgba(140,255,74,.35); border: 1px solid #3fae2a; color: #14330b; border-radius: 3px; white-space: normal; user-select: all; cursor: default; }
.ct-chip.is-empty { background: #fff; border-style: dashed; color: #3a6a26; }
.ct-chip.is-empty::before { content: '+ '; }

/* ---------- signing page ---------- */
.signpage { background: var(--void); }
.sp-bar { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 14px var(--gutter); border-bottom: 1px solid var(--line); }
.sp-bar__logo img { width: clamp(130px, 16vw, 190px); height: auto; }
.sp-bar__tag { display: inline-flex; align-items: center; gap: 8px; font-family: var(--f-tech); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.sp-bar__tag svg { width: 16px; height: 16px; color: var(--sub); }
.sp-main { width: min(920px, 100% - 2 * clamp(16px, 4vw, 40px)); margin: 0 auto; padding: clamp(24px, 5vw, 64px) 0 clamp(40px, 6vw, 90px); display: grid; gap: clamp(16px, 2.4vw, 28px); }
.sp-main--msg { max-width: 640px; }
.sp-main--msg p { color: var(--muted); margin-top: 14px; } .sp-main--msg a, .sp-lead a { color: var(--sub); }
.sp-kicker { font-family: var(--f-tech); font-size: 12px; letter-spacing: .22em; text-transform: uppercase; color: var(--sub); margin-bottom: 10px; }
.sp-title { font-family: var(--f-display); font-weight: 900; text-transform: uppercase; font-size: clamp(44px, 8vw, 96px); line-height: .86; }
.sp-lead { color: rgba(236,232,223,.78); max-width: 60ch; margin-top: 14px; }
.sp-actions { margin-top: 18px; display: flex; gap: 10px; flex-wrap: wrap; }
.sp-steps { list-style: none; padding: 0; margin: 20px 0 0; display: flex; gap: 8px; flex-wrap: wrap; counter-reset: sp; }
.sp-steps li { counter-increment: sp; font-family: var(--f-tech); font-size: 12px; letter-spacing: .16em; text-transform: uppercase; padding: 7px 12px; border: 1px solid var(--line); color: var(--muted); }
.sp-steps li::before { content: counter(sp) ' · '; color: var(--sub); }
.sp-pay { margin-top: 20px; padding: 18px 20px; border: 1px solid var(--sub); background: rgba(140,255,74,.07); }
.sp-pay h2 { font-family: var(--f-tech); font-size: 15px; letter-spacing: .12em; text-transform: uppercase; color: var(--sub); margin-bottom: 8px; }
.sp-pay p { color: rgba(236,232,223,.85); }
.sp-paper { box-shadow: 0 30px 80px rgba(0,0,0,.45); }
.sp-paper--pdf { background: #fbfaf6; color: #17171a; padding: clamp(20px, 4vw, 48px); display: grid; gap: 12px; }
.sp-h2 { font-family: var(--f-display); font-weight: 900; text-transform: uppercase; font-size: clamp(30px, 4vw, 48px); line-height: .9; }
.sp-sign { background: var(--coal); border: 1px solid var(--line); padding: clamp(20px, 4vw, 48px); display: grid; gap: 18px; }
.sp-err { background: rgba(255,61,110,.14); border-left: 3px solid var(--heat); padding: 10px 14px; color: #ffb3c4; }
.sp-fld { display: grid; gap: 8px; }
.sp-fld > span { font-family: var(--f-tech); font-size: 12px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }
.sp-fld > span small { text-transform: none; letter-spacing: 0; font-family: var(--f-body); margin-left: 6px; }
.sp-fld input { font: 600 18px var(--f-body); padding: 14px 16px; background: var(--void); color: var(--text); border: 1.5px solid var(--line); width: 100%; }
.sp-fld input:focus { outline: none; border-color: var(--sub); }
.sp-pad { position: relative; background: #fbfaf6; height: clamp(160px, 30vw, 220px); }
.sp-pad canvas { width: 100%; height: 100%; cursor: crosshair; touch-action: none; position: relative; z-index: 1; }
.sp-pad__line { position: absolute; left: 6%; right: 6%; bottom: 26%; border-bottom: 1.5px dashed #b9b4a8; }
.sp-pad__line::before { content: '×'; position: absolute; left: -2px; bottom: 2px; font: 700 20px var(--f-body); color: #b9b4a8; }
.sp-clear { position: absolute; top: 8px; right: 8px; z-index: 2; font-family: var(--f-tech); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: #55545a; padding: 8px 10px; border: 1px solid #d8d4ca; background: #fff; }
.sp-check { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: rgba(236,232,223,.85); cursor: pointer; }
.sp-check input { width: 22px; height: 22px; flex: none; accent-color: var(--sub); margin-top: 1px; }
.sp-fine { font-size: 13px; color: var(--muted); }
.sp-sign .btn { justify-self: start; }
.sp-foot { text-align: center; padding: 28px var(--gutter) 40px; font-size: 13px; color: var(--muted); border-top: 1px solid var(--line); }
.sp-foot a { color: var(--text); }

.signcert { font-size: 14px; }
.signcert__head h2 { font-size: 15px; margin-bottom: 4px; }
.signcert__head p { color: #55545a; }
.signcert__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.6fr); gap: 20px 32px; margin-top: 18px; }
.signcert__sig img { width: 100%; max-width: 280px; border-bottom: 1.5px solid #17171a; margin-bottom: 8px; }
.signcert__facts { margin: 0; display: grid; gap: 10px; }
.signcert__facts dt { font-family: var(--f-tech); font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: #6a6970; }
.signcert__facts dd { margin: 0; overflow-wrap: anywhere; }
.signcert .mono { font-family: ui-monospace, Menlo, Consolas, monospace; font-size: 12px; color: #55545a; }
.signcert h3 { font-size: 12px; margin: 22px 0 8px; }
.signcert__log { margin: 0; padding-left: 20px; display: grid; gap: 4px; font-size: 13px; }
.signcert__log time { color: #6a6970; margin-right: 6px; }
.signcert__note { margin-top: 18px; font-size: 12px; color: #6a6970; }
@media (max-width: 640px) {
  .signcert__grid { grid-template-columns: 1fr; }
  .invdoc__meta h2, .invdoc__meta dl div { text-align: left; justify-content: flex-start; }
}

@media print {
  @page { margin: 14mm; }
  body, .signpage { background: #fff !important; color: #000; }
  .sp-bar, .sp-foot, .sp-actions, .sp-steps, .sp-sign, .skip { display: none !important; }
  .sp-main { width: 100%; padding: 0; gap: 0; }
  .sp-intro { color: #000; margin-bottom: 8mm; }
  .sp-intro .sp-lead, .sp-kicker { color: #333 !important; }
  .sp-title { font-size: 28pt; }
  .sp-pay { border-color: #000; background: none; } .sp-pay h2, .sp-pay p { color: #000; }
  .sp-paper { box-shadow: none; break-before: page; }
  .sp-intro + .sp-paper { break-before: auto; }
  .invdoc, .ctdoc, .signcert { padding: 0; background: #fff; }
  .ctdoc p, .invdoc__items tr { break-inside: avoid; }
  .ctdoc .ct-fill { background: none; text-decoration: underline; }
}

/* ==========================================================================
   CONTACT
   ========================================================================== */
.chero { padding-bottom: clamp(30px, 4vw, 64px); }
.chero .mega { font-size: clamp(64px, 15vw, 270px); }
.chero__hi .c { color: transparent; -webkit-text-stroke: 2px var(--sub); }
.chero .lede { margin-top: clamp(16px, 2vw, 30px); max-width: 52ch; }
.cways { list-style: none; margin: clamp(22px, 3vw, 40px) 0 0; padding: 0; border-top: 1.5px solid var(--ink); }
.cways li { display: grid; grid-template-columns: 110px minmax(0, 1fr); gap: 12px; align-items: baseline; padding: 14px 0; border-bottom: 1px solid rgba(10,10,11,.14); }
.cways li > span:first-child { font-family: var(--f-tech); font-size: 11px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--sub-deep); }
.cways a { font-weight: 700; font-size: clamp(16px, 1.2vw, 19px); overflow-wrap: anywhere; border-bottom: 1.5px solid transparent; transition: border-color .2s; }
.cways a:hover { border-bottom-color: var(--sub-deep); }
.book__more { margin-top: clamp(22px, 3vw, 40px); }

/* ==========================================================================
   RENTALS — public availability calendar
   ========================================================================== */
.avail { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(26px, 4vw, 80px); align-items: start; scroll-margin-top: var(--header-h); }
@media (max-width: 900px) { .avail { grid-template-columns: 1fr; } }
.avail__head .ch { margin-bottom: 16px; }
.avail__key { list-style: none; margin: 22px 0 0; padding: 0; display: flex; gap: 10px 22px; flex-wrap: wrap; font-family: var(--f-tech); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.avail__key li { display: inline-flex; align-items: center; gap: 8px; }
.avail__dot { display: inline-block; width: 9px; height: 9px; border-radius: 50%; flex: none; }
.avail__dot--mt { background: var(--sub); box-shadow: 0 0 10px rgba(140,255,74,.6); }
.avail__dot--wa { background: var(--vio); box-shadow: 0 0 10px rgba(139,92,246,.6); }
.avail__cal { border: 1px solid var(--line); background: rgba(12,12,15,.7); padding: clamp(14px, 2vw, 28px); }
.avail__bar { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 16px; }
.avail__range { font-family: var(--f-tech); font-weight: 700; font-size: 13px; letter-spacing: .18em; text-transform: uppercase; }
.avail__arrow { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid var(--line); transition: border-color .2s, color .2s; }
.avail__arrow svg { width: 18px; height: 18px; }
.avail__arrow:hover:not(:disabled) { border-color: var(--sub); color: var(--sub); }
.avail__arrow:disabled { opacity: .3; cursor: default; }
.avail__months { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(16px, 2.4vw, 36px); }
@media (max-width: 760px) { .avail__months { grid-template-columns: 1fr; } }
.avail__month h3 { font-family: var(--f-display); font-weight: 900; text-transform: uppercase; font-size: clamp(22px, 2vw, 30px); margin-bottom: 10px; }
.avail__grid { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 4px; }
.avail__wd { font-family: var(--f-tech); font-size: 10px; letter-spacing: .14em; color: var(--muted); text-align: center; padding-bottom: 4px; }
.avail__day { position: relative; aspect-ratio: 1; min-height: 38px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; background: rgba(236,232,223,.04); border: 1px solid transparent; font-variant-numeric: tabular-nums; transition: background .2s, border-color .2s; }
.avail__day b { font-weight: 600; font-size: 14px; line-height: 1; }
.avail__day i { display: flex; gap: 3px; font-style: normal; }
.avail__day i .avail__dot { width: 6px; height: 6px; }
button.avail__day:hover { border-color: var(--sub); background: rgba(140,255,74,.08); }
button.avail__day:focus-visible { outline: 2px solid var(--sub); outline-offset: 1px; }
.avail__day.is-busy { background: rgba(236,232,223,.1); }
.avail__day.is-busy b { opacity: .6; text-decoration: line-through; text-decoration-thickness: 1px; }
.avail__day.is-past { opacity: .25; }
.avail__day.is-today { border-color: rgba(236,232,223,.4); }
.q-note { color: #8a5a00; background: #fff4d6; border-left: 3px solid #e0a100; padding: 8px 10px; font-size: 13px; font-weight: 600; }
/* Home: the green band is tilted, so on wide screens its low left end showed a dark wedge under the hero.
   The hero's background now reaches 3vw further down, underneath the band, and the band is pulled up by exactly
   that amount — every piece of the hero (text, buttons, spacing) and the band keep their original size and position. */
.hero { padding-bottom: 3vw; margin-bottom: calc(-3vw - 10px); min-height: calc(100svh + 3vw); }   /* -10px = the band's own overlap (margins collapse) */
/* Home hero: a hair of air between HIGH END SOUND and the outlined LOW END (and under it) */
.hero__title .l2 { margin-top: .045em; }
.hero__title .l3 { margin-top: .03em; }
/* Archive reel: dragging with the mouse scrolls it — don't highlight text or drag the poster images while doing it */
.reel__track { -webkit-user-select: none; user-select: none; }
.reel__track img { -webkit-user-drag: none; }
.reel__track { overflow-y: hidden; touch-action: pan-x pan-y; }   /* the tilted posters overflowed a few px, which let the whole reel slide up/down under a finger on phones */

/* ==========================================================================
   GALLERY — album list, album page, photo viewer
   ========================================================================== */
.ghero__row { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; flex-wrap: wrap; margin-top: clamp(16px, 2vw, 30px); }
.gtabs { display: flex; gap: clamp(18px, 3vw, 48px); border-bottom: 1px solid var(--line); margin-top: clamp(20px, 3vw, 44px); overflow-x: auto; scrollbar-width: none; }
.gtabs::-webkit-scrollbar { display: none; }
.gtabs a { position: relative; display: inline-flex; align-items: baseline; gap: 10px; padding: 16px 0 18px; white-space: nowrap; font-family: var(--f-display); font-weight: 800; text-transform: uppercase; font-size: clamp(22px, 2.4vw, 38px); line-height: 1; color: var(--muted); transition: color .3s; }
.gtabs a small { font-family: var(--f-tech); font-size: 12px; font-weight: 700; letter-spacing: .12em; color: var(--muted); }
.gtabs a:hover { color: var(--text); }
.gtabs a[aria-current="page"] { color: var(--text); }
.gtabs a[aria-current="page"] small { color: var(--sub); }
.gtabs a[aria-current="page"]::after { content: ''; position: absolute; left: 0; right: 0; bottom: -1px; height: 3px; background: var(--sub); box-shadow: 0 0 16px var(--sub); }
.gsec { padding-top: clamp(28px, 3.4vw, 56px); }

.agrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 340px), 1fr)); gap: clamp(22px, 2.6vw, 40px); }
.acard { position: relative; display: block; }
.acard.is-hidden { display: none; }
.acard__img { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--graphite); box-shadow: 0 30px 80px rgba(0,0,0,.5), 0 0 0 1px var(--line); }
.acard__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease), filter .6s; filter: saturate(.9); }
.acard:hover .acard__img img { transform: scale(1.06); filter: saturate(1.1); }
.acard__img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(5,5,6,.75)); pointer-events: none; }
.acard__none { position: absolute; inset: 0; background: radial-gradient(80% 90% at 80% 10%, rgba(139,92,246,.35), transparent 60%), radial-gradient(60% 70% at 10% 100%, rgba(140,255,74,.25), transparent 60%), var(--coal); }
.acard__count { position: absolute; left: 16px; bottom: 14px; z-index: 2; font-family: var(--f-tech); font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--text); }
.acard .card__date span { letter-spacing: .12em; }
.acard .card__meta { display: flex; justify-content: space-between; gap: 12px; margin-top: 8px; color: var(--muted); font-size: 15px; }
.acard .card__meta b { font-family: var(--f-tech); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--sub); font-weight: 700; text-align: right; }

/* album page */
.alhero { padding-bottom: clamp(30px, 4vw, 64px); }
.alhero .phero__bg img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.6) brightness(.32) contrast(1.15); }
.alhero__back { display: inline-flex; align-items: center; gap: 10px; margin-bottom: clamp(18px, 2.4vw, 34px); font-family: var(--f-tech); font-size: 12px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); transition: color .25s; }
.alhero__back svg { width: 16px; height: 16px; transition: transform .4s var(--ease); }
.alhero__back:hover { color: var(--sub); }
.alhero__back:hover svg { transform: translateX(-4px); }
.alhero__grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: clamp(24px, 4vw, 80px); align-items: end; }
.alhero.has-poster .alhero__grid { grid-template-columns: minmax(0, 1fr) minmax(200px, 320px); }
@media (max-width: 860px) { .alhero.has-poster .alhero__grid { grid-template-columns: 1fr; } .alhero__poster { max-width: 260px; } }
.alhero__title { font-size: clamp(44px, 7vw, 124px); overflow-wrap: anywhere; }
.alhero__facts { display: flex; flex-wrap: wrap; gap: 14px clamp(24px, 3vw, 48px); margin: clamp(18px, 2.4vw, 32px) 0 0; }
.alhero__facts div { display: grid; gap: 4px; }
.alhero__facts dt { font-family: var(--f-tech); font-size: 10px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--sub); }
.alhero__facts dd { margin: 0; font-size: clamp(15px, 1.2vw, 18px); color: var(--text); }
.alhero__facts a { border-bottom: 1px solid var(--sub-deep); }
.alhero__acts { list-style: none; margin: 18px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.alhero__acts li { font-family: var(--f-tech); font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; padding: 8px 12px; border: 1px solid var(--line); background: rgba(5,5,6,.4); }
.alhero .lede { margin-top: 18px; max-width: 60ch; }
.alhero__poster .poster { transform: rotate(2deg); }

.vgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 420px), 1fr)); gap: clamp(18px, 2vw, 30px); }
.vbox { position: relative; }
.vbox__yt, .vbox video, .vbox__frame { display: block; width: 100%; aspect-ratio: 16 / 9; background: var(--coal); border: 0; box-shadow: 0 30px 80px rgba(0,0,0,.5), 0 0 0 1px var(--line); }
.vbox video { object-fit: contain; background: #000; }
.vbox__yt { position: relative; padding: 0; cursor: pointer; overflow: hidden; }
.vbox__yt img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.75); transition: transform .9s var(--ease), filter .4s; }
.vbox__yt:hover img { transform: scale(1.04); filter: brightness(.9); }
.vbox__play { position: absolute; left: 50%; top: 50%; width: 74px; height: 74px; margin: -37px 0 0 -37px; border-radius: 50%; display: grid; place-items: center; background: var(--sub); color: var(--ink); box-shadow: 0 0 0 10px rgba(140,255,74,.18), 0 0 60px rgba(140,255,74,.45); transition: transform .4s var(--ease); }
.vbox__play svg { width: 30px; height: 30px; margin-left: 4px; }
.vbox__yt:hover .vbox__play { transform: scale(1.08); }
.vbox__cap { margin-top: 12px; font-family: var(--f-tech); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }

.pgrid { columns: 3 300px; column-gap: clamp(10px, 1.2vw, 18px); }
.pgrid__i { display: block; margin-bottom: clamp(10px, 1.2vw, 18px); break-inside: avoid; overflow: hidden; background: var(--graphite); position: relative; }
.pgrid__i img { width: 100%; height: auto; transition: transform 1s var(--ease), filter .5s; }
.pgrid__i:hover img { transform: scale(1.04); }
.pgrid__i:focus-visible { outline: 2px solid var(--sub); outline-offset: 3px; }
@media (max-width: 560px) { .pgrid { columns: 2 140px; column-gap: 8px; } .pgrid__i { margin-bottom: 8px; } }

.lbox { padding: 0; border: 0; margin: 0; width: 100vw; height: 100dvh; max-width: 100vw; max-height: 100dvh; background: rgba(5,5,6,.96); color: var(--text); overflow: hidden; }
.lbox::backdrop { background: rgba(5,5,6,.9); }
.lbox[open] { display: grid; animation: dlgIn .45s var(--ease); }
.lbox__stage { position: absolute; inset: 0; display: grid; place-items: center; padding: clamp(56px, 7vh, 80px) clamp(12px, 7vw, 110px) clamp(64px, 9vh, 96px); }
.lbox__stage img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; box-shadow: 0 30px 120px rgba(0,0,0,.7); transition: opacity .25s; }
.lbox__stage img.is-loading { opacity: .35; }
.lbox__btn { position: absolute; z-index: 2; width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; background: rgba(22,22,27,.8); border: 1px solid var(--line); color: var(--text); transition: background .25s, color .25s, border-color .25s; }
.lbox__btn svg { width: 22px; height: 22px; }
.lbox__btn:hover { background: var(--sub); color: var(--ink); border-color: var(--sub); }
.lbox__close { right: clamp(12px, 2vw, 28px); top: clamp(12px, 2vw, 24px); }
.lbox__prev, .lbox__next { top: 50%; margin-top: -26px; }
.lbox__prev { left: clamp(10px, 2vw, 30px); }
.lbox__next { right: clamp(10px, 2vw, 30px); }
.lbox__bar { position: absolute; left: 0; right: 0; bottom: 0; display: flex; gap: 18px; align-items: center; justify-content: center; padding: 16px 70px calc(16px + env(safe-area-inset-bottom)); font-family: var(--f-tech); font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); text-align: center; }
.lbox__bar [data-lbox-count] { color: var(--sub); font-weight: 700; }
@media (hover: none) { .lbox__prev, .lbox__next { display: none; } }
