/* ============================================================
   KHAIRY CREEK — stand-up site
   One structure, three switchable directions:
     [data-dir="a"]  TEAR SHEET  — gritty DIY club poster
     [data-dir="b"]  LATE SHOW   — retro variety / marquee
     [data-dir="c"]  AFTER DARK  — neon late-night club
   Signature motif across all three: the "caption highlight"
   (.hl) — one word boxed in the accent, like a burned-in clip caption.
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { margin: 0; }
img { display: block; max-width: 100%; }
button { font: inherit; color: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, p { margin: 0; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }

/* ---------- DIRECTION A : TEAR SHEET (default) ---------- */
:root,
[data-dir="a"] {
  --bg:        #efe9db;
  --bg2:       #e4ddca;
  --panel:     #16140f;
  --panel-ink: #efe9db;
  --ink:       #15130d;
  --ink-dim:   #5a5446;
  --accent:    #ffd400;
  --accent-ink:#15130d;
  --accent2:   #d62828;
  --line:      #15130d;
  --line-w:    2.5px;
  --display:   "Anton", sans-serif;
  --cond:      "Anton", sans-serif;
  --body:      "Archivo", sans-serif;
  --mono:      "JetBrains Mono", monospace;
  --marker:    "Permanent Marker", cursive;
  --radius:    2px;
  --card-bg:   #fbf8f0;
  --grain:     0.07;
  --hl-shadow: none;
  --photo-filter: grayscale(1) contrast(1.35) brightness(1.02);
  --display-spacing: 0.5px;
  --display-weight: 400;
}

/* ---------- DIRECTION B : LATE SHOW ---------- */
[data-dir="b"] {
  --bg:        #f1e3c6;
  --bg2:       #e8d6af;
  --panel:     #771511;
  --panel-ink: #f6ecd6;
  --ink:       #2c1b10;
  --ink-dim:   #6f5740;
  --accent:    #e0a526;
  --accent-ink:#2c1b10;
  --accent2:   #b3261e;
  --line:      #2c1b10;
  --line-w:    2px;
  --display:   "Abril Fatface", serif;
  --cond:      "Bebas Neue", sans-serif;
  --body:      "Archivo", sans-serif;
  --mono:      "JetBrains Mono", monospace;
  --marker:    "Caveat", cursive;
  --radius:    4px;
  --card-bg:   #fbf2dd;
  --grain:     0.04;
  --hl-shadow: none;
  --photo-filter: sepia(0.45) saturate(1.1) contrast(1.05);
  --display-spacing: 0px;
  --display-weight: 400;
}

/* ---------- DIRECTION C : AFTER DARK ---------- */
[data-dir="c"] {
  --bg:        #07090c;
  --bg2:       #0e131a;
  --panel:     #0b1015;
  --panel-ink: #eef5f4;
  --ink:       #eef5f4;
  --ink-dim:   #8499a0;
  --accent:    #1fe3c8;
  --accent-ink:#04130f;
  --accent2:   #ff3ea5;
  --accent3:   #ffd400;
  --line:      #2a3a40;
  --line-w:    1.5px;
  --display:   "Anton", sans-serif;
  --cond:      "Anton", sans-serif;
  --body:      "Archivo", sans-serif;
  --mono:      "JetBrains Mono", monospace;
  --marker:    "Permanent Marker", cursive;
  --radius:    6px;
  --card-bg:   #11171e;
  --grain:     0.05;
  --hl-shadow: 0 0 18px color-mix(in oklab, var(--accent) 70%, transparent);
  --photo-filter: contrast(1.05) saturate(1.12);
  --display-spacing: 0.5px;
  --display-weight: 400;
}

/* ============================ BASE ============================ */
html[data-dir] { background: var(--bg); }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  line-height: 1.5;
  font-size: 17px;
  overflow-x: hidden;
  transition: background .35s ease, color .35s ease;
}
/* during a direction switch, kill transitions so var()-based colors repaint
   instantly instead of holding their stale pre-switch value */
html.kc-switching, html.kc-switching * { transition: none !important; }

/* grain / xerox overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9000;
  opacity: var(--grain);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: var(--grain-blend, multiply);
}
[data-dir="c"] body::before,
body[data-dir] { }
[data-dir="c"] { --grain-blend: screen; }

.wrap { width: min(1180px, 92vw); margin-inline: auto; }
section { position: relative; }
.eyebrow {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-dim);
  display: inline-flex;
  align-items: center;
  gap: .6em;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px; background: var(--accent2);
  display: inline-block;
}

/* display headings */
.display {
  font-family: var(--display);
  font-weight: var(--display-weight);
  line-height: 0.92;
  letter-spacing: var(--display-spacing);
  text-transform: uppercase;
}
[data-dir="b"] .display { text-transform: none; letter-spacing: .2px; }

/* caption highlight — the signature motif */
.hl {
  background: var(--accent);
  color: var(--accent-ink);
  padding: 0 .14em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  box-shadow: var(--hl-shadow);
}
[data-dir="c"] .hl { border-radius: 3px; }

/* ============================ BUTTONS ============================ */
.btn {
  --b: var(--ink);
  display: inline-flex; align-items: center; gap: .55em;
  font-family: var(--mono);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 13.5px;
  padding: 14px 22px;
  border: var(--line-w) solid var(--ink);
  background: var(--ink);
  color: var(--bg);
  border-radius: var(--radius);
  transition: transform .12s ease, background .2s, color .2s, box-shadow .2s;
  text-align: center;
}
.btn:hover { transform: translate(-2px,-2px); box-shadow: 4px 4px 0 var(--accent2); }
.btn--accent { background: var(--accent); color: var(--accent-ink); border-color: var(--ink); }
.btn--accent:hover { box-shadow: 4px 4px 0 var(--ink); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--bg); box-shadow: 4px 4px 0 var(--accent); }
[data-dir="c"] .btn--accent { box-shadow: 0 0 22px color-mix(in oklab, var(--accent) 55%, transparent); }
[data-dir="c"] .btn--accent:hover { box-shadow: 4px 4px 0 var(--ink), 0 0 26px color-mix(in oklab, var(--accent) 70%, transparent); }
.btn[disabled] { opacity: .4; pointer-events: none; }
.btn--sm { padding: 9px 14px; font-size: 12px; }

/* ============================ NAV ============================ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in oklab, var(--bg) 88%, transparent);
  backdrop-filter: blur(8px);
  border-bottom: var(--line-w) solid var(--ink);
}
.nav__in { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 12px 0; }
.brand {
  font-family: var(--display); font-weight: var(--display-weight);
  text-transform: uppercase; letter-spacing: 1px;
  font-size: 22px; line-height: 1; display: inline-flex; align-items: center; gap: 9px;
}
[data-dir="b"] .brand { font-family: var(--cond); letter-spacing: 1.5px; }
.brand__mark {
  width: 30px; height: 30px; display: grid; place-items: center;
  background: var(--accent); color: var(--accent-ink);
  font-family: var(--mono); font-weight: 700; font-size: 15px;
  border: 2px solid var(--ink); border-radius: var(--radius);
  box-shadow: var(--hl-shadow);
}
.nav__links { display: flex; align-items: center; gap: 26px; }
.nav__links a {
  font-family: var(--mono); font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .1em; color: var(--ink-dim);
  padding: 4px 0; position: relative;
}
.nav__links a:hover { color: var(--ink); }
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--accent); transition: width .2s ease;
}
.nav__links a:hover::after { width: 100%; }
.nav__cta { display: flex; align-items: center; gap: 12px; }
.nav__toggle { display: none; background: var(--ink); color: var(--bg); border: none; width: 44px; height: 40px; border-radius: var(--radius); }
.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after {
  display: block; width: 20px; height: 2px; background: currentColor; margin: 0 auto; position: relative; content: "";
}
.nav__toggle span::before { position: absolute; top: -6px; }
.nav__toggle span::after { position: absolute; top: 6px; }

/* ============================ HERO ============================ */
.hero { padding: clamp(34px, 6vw, 70px) 0 0; overflow: hidden; }
.hero__grid {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(24px, 4vw, 56px); align-items: end;
}
.hero__kicker { margin-bottom: 18px; }
.hero h1.display {
  font-size: clamp(58px, 12vw, 168px);
  margin: 6px 0 0;
}
.hero h1 .ln2 { display: block; }
.hero__sub {
  margin-top: 22px; max-width: 33ch; font-size: clamp(16px, 1.5vw, 19px); color: var(--ink-dim);
}
.hero__sub strong { color: var(--ink); }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.hero__media { position: relative; }
.hero__photo {
  width: 100%; aspect-ratio: 5 / 6; object-fit: cover; object-position: 50% 18%;
  filter: var(--photo-filter);
  border: var(--line-w) solid var(--ink);
  border-radius: var(--radius);
  background: var(--bg2);
}
[data-dir="c"] .hero__photo { box-shadow: 0 0 0 1px var(--accent), 0 22px 60px -20px color-mix(in oklab, var(--accent) 60%, transparent); }
.hero__stamp {
  position: absolute; left: 14px; top: 16px; z-index: 6;
  font-family: var(--marker); font-size: 19px; line-height: 1;
  background: var(--accent2); color: #fff; padding: 12px 14px;
  transform: rotate(-6deg); border-radius: var(--radius);
  box-shadow: 3px 3px 0 var(--ink);
}
[data-dir="b"] .hero__stamp { font-family: var(--cond); letter-spacing: 1px; font-size: 22px; }

/* "as seen on" marquee */
.seenon {
  margin-top: clamp(34px, 5vw, 56px);
  border-top: var(--line-w) solid var(--ink);
  border-bottom: var(--line-w) solid var(--ink);
  background: var(--panel); color: var(--panel-ink);
  overflow: hidden; padding: 14px 0;
}
.seenon__track { display: flex; gap: 56px; width: max-content; animation: marquee 26s linear infinite; }
.seenon:hover .seenon__track { animation-play-state: paused; }
.seenon__item { font-family: var(--cond); font-size: 26px; letter-spacing: 1px; text-transform: uppercase; display: inline-flex; align-items: center; gap: 56px; white-space: nowrap; opacity: .92; }
.seenon__item::after { content: "✦"; color: var(--accent); font-size: 16px; }
[data-dir="b"] .seenon__item { font-family: var(--cond); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================ SECTION SHELL ============================ */
.sec { padding: clamp(56px, 8vw, 104px) 0; }
.sec--dark { background: var(--panel); color: var(--panel-ink); }
.sec--dark .eyebrow { color: color-mix(in oklab, var(--panel-ink) 70%, transparent); }
.sec--alt { background: var(--bg2); }
.sec__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 38px; flex-wrap: wrap; }
.sec__title { font-family: var(--display); font-weight: var(--display-weight); font-size: clamp(34px, 5.5vw, 70px); line-height: .94; text-transform: uppercase; letter-spacing: var(--display-spacing); }
[data-dir="b"] .sec__title { text-transform: none; }

/* ============================ SHOWS ============================ */
.shows { display: flex; flex-direction: column; }
.show {
  display: grid; grid-template-columns: 132px 1fr auto auto; gap: 22px; align-items: center;
  padding: 20px 6px; border-top: var(--line-w) solid var(--line);
  transition: background .15s, padding-left .15s;
}
.show:last-child { border-bottom: var(--line-w) solid var(--line); }
.show:hover { background: color-mix(in oklab, var(--accent) 16%, transparent); padding-left: 16px; }
.show__date { font-family: var(--cond); font-size: 30px; line-height: 1; letter-spacing: .5px; }
.show__date small { display: block; font-family: var(--mono); font-size: 11px; letter-spacing: .15em; color: var(--ink-dim); margin-top: 4px; }
.show__venue { font-weight: 700; font-size: 18px; }
.show__city { font-family: var(--mono); font-size: 13px; color: var(--ink-dim); text-transform: uppercase; letter-spacing: .08em; }
.show__status { font-family: var(--mono); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; padding: 5px 9px; border: 1.5px solid currentColor; border-radius: 100px; white-space: nowrap; }
.is-onsale { color: #157a47; }
.is-few { color: #b3261e; }
.is-sold { color: var(--ink-dim); }
[data-dir="c"] .is-onsale { color: var(--accent); }
[data-dir="c"] .is-few { color: var(--accent2); }

/* ============================ CLIPS ============================ */
.clips { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.clip {
  position: relative; border: var(--line-w) solid var(--line); border-radius: var(--radius);
  overflow: hidden; background: var(--card-bg); cursor: pointer; aspect-ratio: 9 / 12;
  transition: transform .15s ease, box-shadow .15s ease;
}
.clip:hover { transform: translateY(-4px); box-shadow: 6px 8px 0 var(--accent2); }
[data-dir="c"] .clip:hover { box-shadow: 0 0 30px color-mix(in oklab, var(--accent) 55%, transparent); }
.clip img, .clip image-slot { width: 100%; height: 100%; object-fit: cover; filter: var(--photo-filter); }
.clip__shade { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,.78)); }
.clip__play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 58px; height: 58px; border-radius: 50%; background: var(--accent); color: var(--accent-ink);
  display: grid; place-items: center; border: 2px solid #fff; box-shadow: var(--hl-shadow);
  transition: transform .15s ease;
}
.clip:hover .clip__play { transform: translate(-50%,-50%) scale(1.12); }
.clip__cap { position: absolute; left: 12px; bottom: 12px; right: 12px; z-index: 2; }
.clip__cap b { font-family: var(--cond); font-size: 22px; color: #fff; letter-spacing: .5px; text-transform: uppercase; line-height: 1; }
.clip__cap span { display: inline-block; background: var(--accent); color: var(--accent-ink); font-family: var(--cond); font-size: 22px; padding: 0 5px; letter-spacing: .5px; }
.clip__tag { position: absolute; top: 12px; left: 12px; z-index: 2; font-family: var(--mono); font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; background: var(--ink); color: var(--bg); padding: 4px 7px; border-radius: 2px; }

/* ============================ ABOUT ============================ */
.about__grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.about__photo { position: relative; }
.about__photo img { width: 100%; aspect-ratio: 4/5; object-fit: cover; filter: var(--photo-filter); border: var(--line-w) solid var(--line); border-radius: var(--radius); }
.about__body p { font-size: clamp(16px, 1.5vw, 19px); margin-bottom: 16px; max-width: 56ch; }
.about__body p:first-of-type { font-size: clamp(20px, 2.2vw, 27px); line-height: 1.35; font-family: var(--body); font-weight: 600; color: var(--ink); }
.facts { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.fact { font-family: var(--mono); font-size: 12.5px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; padding: 8px 13px; border: 1.5px solid var(--line); border-radius: 100px; }
.fact b { color: var(--accent2); }

/* ============================ GALLERY ============================ */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: 18px;
}
.shot {
  position: relative;
  margin: 0;
  border: var(--line-w) solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink);
  aspect-ratio: 4 / 5;
}
.shot img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 30%;
  filter: var(--photo-filter);
  display: block;
  transition: transform .45s ease;
}
.shot:hover img { transform: scale(1.05); }
/* featured on-stage shot spans two rows on desktop */
.shot--tall { grid-row: span 2; aspect-ratio: auto; }
.shot__cap {
  position: absolute; left: 0; bottom: 0;
  font-family: var(--mono); font-size: 11.5px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--accent-ink); background: var(--accent);
  padding: 7px 12px;
  border-top: var(--line-w) solid var(--ink);
  border-right: var(--line-w) solid var(--ink);
  border-top-right-radius: var(--radius);
}
[data-dir="c"] .shot:hover { box-shadow: 0 0 30px color-mix(in oklab, var(--accent) 55%, transparent); }
@media (max-width: 760px) {
  .gallery { grid-template-columns: 1fr 1fr; }
  .shot--tall { grid-row: span 2; }
}
@media (max-width: 460px) {
  .gallery { grid-template-columns: 1fr; }
  .shot--tall { grid-row: span 1; aspect-ratio: 4 / 5; }
}

/* ============================ MERCH ============================ */
.merch { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.product { border: var(--line-w) solid var(--line); border-radius: var(--radius); background: var(--card-bg); overflow: hidden; display: flex; flex-direction: column; transition: transform .15s; }
.product:hover { transform: translateY(-4px); }
.product__img { aspect-ratio: 1; background: var(--bg2); position: relative; }
.product__img image-slot { width: 100%; height: 100%; }
.product__b { padding: 16px 16px 18px; display: flex; flex-direction: column; gap: 4px; flex: 1; }
.product__name { font-family: var(--cond); font-size: 24px; letter-spacing: .5px; text-transform: uppercase; }
.product__price { font-family: var(--mono); font-size: 14px; color: var(--ink-dim); }
.product__b .btn { margin-top: 12px; }

/* ============================ SIGNUP / BOOKING ============================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 70px); }
@media (max-width: 880px) { .split { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.field label { font-family: var(--mono); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--ink-dim); }
.field input, .field select, .field textarea {
  font: inherit; font-size: 15px; padding: 12px 14px; background: var(--card-bg); color: var(--ink);
  border: var(--line-w) solid var(--line); border-radius: var(--radius); width: 100%;
}
.sec--dark .field input, .sec--dark .field select, .sec--dark .field textarea { background: color-mix(in oklab, var(--panel-ink) 8%, transparent); color: var(--panel-ink); border-color: color-mix(in oklab, var(--panel-ink) 35%, transparent); }
.field textarea { resize: vertical; min-height: 110px; }
.inline-form { display: flex; gap: 10px; flex-wrap: wrap; }
.inline-form input { flex: 1; min-width: 220px; }
.form-note { font-family: var(--mono); font-size: 12px; color: var(--ink-dim); margin-top: 8px; }
.success { font-family: var(--mono); font-weight: 700; padding: 14px 16px; border: var(--line-w) dashed var(--accent2); border-radius: var(--radius); display: none; }
.success.is-open { display: block; }
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* press quotes */
.quotes { display: flex; flex-direction: column; gap: 18px; }
.quote { border-left: 4px solid var(--accent); padding-left: 16px; }
.quote p { font-size: 20px; font-style: italic; line-height: 1.4; }
.quote cite { font-family: var(--mono); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-dim); font-style: normal; display: block; margin-top: 8px; }

/* ============================ FOOTER ============================ */
.footer { background: var(--panel); color: var(--panel-ink); padding: clamp(48px,7vw,88px) 0 32px; }
.footer__big { font-family: var(--display); font-weight: var(--display-weight); font-size: clamp(48px, 14vw, 190px); line-height: .82; text-transform: uppercase; letter-spacing: var(--display-spacing); }
.footer__row { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 22px; margin-top: 28px; }
.footer__soc { display: flex; gap: 14px; flex-wrap: wrap; }
.footer__soc a { font-family: var(--mono); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; padding: 9px 14px; border: 1.5px solid color-mix(in oklab, var(--panel-ink) 40%, transparent); border-radius: 100px; transition: background .2s, color .2s; }
.footer__soc a:hover { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); }
.footer__fine { font-family: var(--mono); font-size: 11.5px; letter-spacing: .06em; color: color-mix(in oklab, var(--panel-ink) 55%, transparent); }

/* ============================ MODAL / LIGHTBOX ============================ */
.modal { position: fixed; inset: 0; z-index: 9600; display: none; place-items: center; padding: 24px; background: rgba(5,6,8,.82); backdrop-filter: blur(4px); }
.modal.is-open { display: grid; }
.modal__box { width: min(880px, 96vw); background: var(--card-bg); border: var(--line-w) solid var(--accent); border-radius: var(--radius); overflow: hidden; }
.modal__media { aspect-ratio: 16/9; background: #000; position: relative; display: grid; place-items: center; }
.modal__media img { width: 100%; height: 100%; object-fit: cover; opacity: .55; }
.modal__overlay { position: absolute; inset: 0; display: grid; place-items: center; text-align: center; gap: 14px; }
.modal__b { padding: 20px 22px 24px; display: flex; justify-content: space-between; gap: 16px; align-items: center; flex-wrap: wrap; }
.modal__close { position: absolute; top: 14px; right: 14px; z-index: 3; background: var(--ink); color: var(--bg); border: none; width: 40px; height: 40px; border-radius: 50%; font-size: 18px; }

/* ============================ DECORATIONS (per direction) ============================ */
.tape { display: none; }
[data-dir="a"] .tape {
  display: block; position: absolute; width: 94px; height: 30px;
  background: color-mix(in oklab, var(--accent) 75%, #fff); opacity: .85;
  box-shadow: 0 1px 4px rgba(0,0,0,.25); z-index: 5;
}
[data-dir="a"] .tape--tl { top: -14px; left: -14px; transform: rotate(-18deg); }
[data-dir="a"] .tape--br { bottom: -14px; right: -16px; transform: rotate(-12deg); }

/* marquee bulbs around hero photo for B */
.bulbs { display: none; }
[data-dir="b"] .bulbs {
  display: block; position: absolute; inset: -14px; border-radius: var(--radius); pointer-events: none;
  background:
    radial-gradient(circle, var(--accent) 38%, transparent 42%) top left / 24px 24px repeat-x,
    radial-gradient(circle, var(--accent) 38%, transparent 42%) bottom left / 24px 24px repeat-x,
    radial-gradient(circle, var(--accent) 38%, transparent 42%) top left / 24px 24px repeat-y,
    radial-gradient(circle, var(--accent) 38%, transparent 42%) top right / 24px 24px repeat-y;
}

/* neon scanline tint for C dark sections */
[data-dir="c"] .sec--dark, [data-dir="c"] .footer {
  background-image: linear-gradient(transparent 50%, color-mix(in oklab, var(--accent) 5%, transparent) 50%);
  background-size: 100% 4px;
}

/* ============================ RESPONSIVE ============================ */
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; align-items: start; }
  .hero__media { max-width: 420px; }
  .about__grid { grid-template-columns: 1fr; }
  .clips { grid-template-columns: repeat(2, 1fr); }
  .merch { grid-template-columns: 1fr 1fr; }
  .nav__links, .nav__cta .btn--ghost { display: none; }
  .nav__toggle { display: grid; place-items: center; }
  .nav[data-open="true"] .nav__links {
    display: flex; flex-direction: column; gap: 0; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bg); border-bottom: var(--line-w) solid var(--ink); padding: 8px 0;
  }
  .nav[data-open="true"] .nav__links a { padding: 14px 5vw; border-top: 1px solid color-mix(in oklab, var(--ink) 15%, transparent); }
}
@media (max-width: 620px) {
  .show { grid-template-columns: 84px 1fr; row-gap: 6px; }
  .show__status { grid-column: 2; justify-self: start; }
  .show .btn { grid-column: 2; justify-self: start; }
  .clips { grid-template-columns: 1fr 1fr; }
  .merch { grid-template-columns: 1fr; }
  .row2 { grid-template-columns: 1fr; }
  .footer__big { font-size: 19vw; }
}

/* tweaks panel always above grain */
#tweaks-root { position: relative; z-index: 9500; }

/* ---- DB-driven media (clip thumbnails, product photos, inline video) ---- */
.clip__img { width: 100%; height: 100%; object-fit: cover; filter: var(--photo-filter); }
.product__img-el { width: 100%; height: 100%; object-fit: cover; display: block; filter: var(--photo-filter); }
.modal__video { position: absolute; inset: 0; z-index: 2; background: #000; }
.modal__video iframe, .modal__video video { width: 100%; height: 100%; border: 0; display: block; }
