:root {
  --bg: #15100B;
  --surface: #241A11;
  --line: #3C2E1E;
  --text: #F4E9D8;
  --dim: #B8A88F;
  --accent: #5EE0C4;
  --display: 'Big Shoulders Display', sans-serif;
  --body: 'Inter', sans-serif;
  --mono: 'IBM Plex Mono', monospace;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--accent); color: var(--bg); }

a { color: inherit; }
.accent { color: var(--accent); }

/* ============ HUD ============ */
.hud {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 32px;
  pointer-events: none;
}
.hud-brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 13px; letter-spacing: 0.18em;
  text-decoration: none; color: var(--text);
  pointer-events: auto;
}
.hud-mark { width: 22px; height: 22px; color: var(--dim); display: inline-flex; }
.hud-mark svg { width: 100%; height: 100%; }
.hud-brand:hover .hud-mark { color: var(--accent); }
.hud-right { display: flex; align-items: center; gap: 22px; pointer-events: auto; }
.hud-chapter {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em;
  color: var(--dim); font-variant-numeric: tabular-nums;
}
.hud-chapter em { font-style: normal; color: var(--line); }
.hud-contact {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em;
  text-transform: uppercase; text-decoration: none; color: var(--text);
  border: 1px solid var(--line); border-radius: 3px; padding: 8px 18px;
  background: color-mix(in srgb, var(--bg) 70%, transparent);
  backdrop-filter: blur(8px);
  transition: color 0.2s ease, border-color 0.2s ease;
}
.hud-contact:hover { color: var(--accent); border-color: var(--dim); }

.progress {
  position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 61;
}
.progress-fill { height: 100%; width: 0%; background: var(--accent); }

/* ============ RAIL ============ */
.rail {
  position: fixed; right: 26px; top: 50%; transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 14px; z-index: 55;
}
.rail button {
  background: none; border: none; cursor: pointer;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em;
  color: var(--line); padding: 4px;
  display: flex; align-items: center; gap: 8px;
  transition: color 0.25s ease;
}
.rail button::after {
  content: ''; display: block; width: 14px; height: 1px;
  background: currentColor; transition: width 0.25s ease;
}
.rail button:hover { color: var(--dim); }
.rail button.active { color: var(--accent); }
.rail button.active::after { width: 26px; }

/* ============ STAGE / DIVE ============ */
.stage-track { height: 760vh; position: relative; }
.stage {
  position: sticky; top: 0; height: 100vh; height: 100svh;
  overflow: hidden;
}

.scene {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  transform-origin: 50% 50%;
  will-change: transform, opacity;
  visibility: hidden;
  opacity: 0;
}
.scene-inner {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 0 24px; max-width: 780px;
}
.scene-photo {
  position: absolute; inset: -6%; z-index: 0;
  -webkit-mask-image: radial-gradient(ellipse 70% 62% at 50% 46%, #000 18%, transparent 72%);
  mask-image: radial-gradient(ellipse 70% 62% at 50% 46%, #000 18%, transparent 72%);
}
.scene-photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  opacity: 0.24;
  filter: grayscale(0.45) sepia(0.4) contrast(0.92) brightness(0.85);
}

.scene-art {
  position: absolute; z-index: 1;
  width: min(92vmin, 780px); height: min(92vmin, 780px);
  left: 50%; top: 50%;
  margin-left: calc(min(92vmin, 780px) / -2);
  margin-top: calc(min(92vmin, 780px) / -2);
  opacity: 0.55;
}

.eyebrow {
  font-family: var(--mono); font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--dim); display: block; margin-bottom: 28px;
}

.mega {
  font-family: var(--display); font-weight: 700; text-transform: uppercase;
  line-height: 0.8; letter-spacing: 0.01em;
  font-size: clamp(120px, 34vw, 420px);
}
.scene-sub {
  font-family: var(--mono); font-size: clamp(12px, 1.6vw, 15px);
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--dim); margin-top: 26px;
}
.dot-sep { color: var(--accent); }

.scroll-cue {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--dim);
  margin-top: 54px;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.cue-line {
  display: block; width: 1px; height: 44px;
  background: linear-gradient(to bottom, transparent, var(--dim));
  animation: cueDrop 1.8s ease-in-out infinite;
}
@keyframes cueDrop {
  0% { transform: scaleY(0); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: top; }
  56% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

.chapter-tag {
  font-family: var(--mono); font-size: 12px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--dim); margin-bottom: 22px; display: block;
}
.chapter-tag.accent { color: var(--accent); }

.scene-title {
  font-family: var(--display); font-weight: 700; text-transform: uppercase;
  line-height: 0.86; letter-spacing: 0.01em;
  font-size: clamp(52px, 9vw, 118px);
}
.scene-copy {
  max-width: 470px; color: var(--dim);
  font-size: clamp(14.5px, 1.7vw, 16.5px); margin-top: 26px;
}
.scene-tags {
  list-style: none; display: flex; flex-wrap: wrap; gap: 8px;
  justify-content: center; margin-top: 26px;
}
.scene-tags li {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em;
  color: var(--dim); border: 1px solid var(--line); border-radius: 3px;
  padding: 5px 11px;
}

.scene-strip {
  display: flex; gap: 0; margin-top: 34px;
  border: 1px solid var(--line); border-radius: 6px; overflow: hidden;
}
.scene-strip .cell {
  padding: 22px 34px; text-align: center;
  border-right: 1px dashed var(--line);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.scene-strip .cell:last-child { border-right: none; }
.scene-strip .cell svg { width: 28px; height: 28px; }
.scene-strip .cell span {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--dim);
}

/* ============ AFTER SECTIONS ============ */
.after { max-width: 1080px; margin: 0 auto; padding: 40px 32px 0; }

.section { margin-top: 120px; }
.section:first-child { margin-top: 60px; }
.section-head {
  display: flex; align-items: baseline; justify-content: space-between;
  padding-bottom: 14px; margin-bottom: 40px;
  background-image: repeating-linear-gradient(90deg, var(--line) 0 6px, transparent 6px 12px);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 0% 1px;
  transition: background-size 1.1s ease 0.15s;
}
.section-head.in-view { background-size: 100% 1px; }
.section-head h2 {
  font-family: var(--display); font-weight: 600; text-transform: uppercase;
  font-size: 30px; letter-spacing: 0.02em;
}
.section-head .num { font-family: var(--mono); font-size: 12px; color: var(--dim); }

.tag {
  font-family: var(--mono); font-size: 11px;
  color: var(--dim); letter-spacing: 0.12em; text-transform: uppercase;
}
.tag.accent { color: var(--accent); }

/* work */
.work-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.work-item {
  position: relative; overflow: hidden; border-radius: 6px;
  border: 1px solid var(--line); margin: 0; aspect-ratio: 4 / 3;
}
.work-item.reveal { clip-path: inset(0 0 100% 0); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), clip-path 0.9s cubic-bezier(0.16, 1, 0.3, 1); }
.work-item.reveal.in-view { clip-path: inset(0 0 0% 0); }
.work-item.wide { grid-column: span 2; aspect-ratio: 21 / 9; }
.work-item.tall { aspect-ratio: 3 / 4; }
.work-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: saturate(0.82) sepia(0.12);
  transform: scale(1.015);
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}
.work-item:hover img { transform: scale(1.06); filter: saturate(1) sepia(0); }
.work-item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  display: flex; justify-content: space-between; align-items: flex-end; gap: 16px;
  padding: 14px 18px;
  background: linear-gradient(to top, rgba(21, 16, 11, 0.92), rgba(21, 16, 11, 0));
  transform: translateY(8px); opacity: 0.9;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.work-item:hover figcaption { transform: translateY(0); opacity: 1; }
.work-item figcaption .tag { flex-shrink: 0; padding-bottom: 3px; }
.work-title {
  font-family: var(--display); font-weight: 600; text-transform: uppercase;
  font-size: 17px; letter-spacing: 0.03em; text-align: right; line-height: 1.1;
}
.work-note { margin-top: 26px; font-family: var(--mono); font-size: 12.5px; color: var(--dim); }
.work-note a { color: var(--text); text-decoration: none; border-bottom: 1px solid var(--line); }
.work-note a:hover { color: var(--accent); border-color: var(--accent); }

/* stats + process */
.stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line); border-radius: 6px;
  overflow: hidden; margin-bottom: 20px;
}
.stat {
  padding: 34px 26px; text-align: center;
  border-right: 1px dashed var(--line);
  transition: background 0.2s ease;
}
.stat:last-child { border-right: none; }
.stat:hover { background: var(--surface); }
.stat-num {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(40px, 5vw, 58px); line-height: 1; display: block;
}
.stat:hover .stat-num { color: var(--accent); }
.stat-label {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--dim);
  display: block; margin-top: 10px;
}

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.step {
  border: 1px solid var(--line); border-radius: 6px;
  padding: 26px 22px; background: var(--bg);
  transition: background 0.25s ease;
}
.step:hover { background: var(--surface); }
.step-num { font-family: var(--mono); font-size: 12px; color: var(--dim); }
.step:hover .step-num { color: var(--accent); }
.step h3 {
  font-family: var(--display); font-weight: 600; text-transform: uppercase;
  font-size: 24px; margin-top: 14px;
}
.step p { color: var(--dim); font-size: 13.5px; margin-top: 10px; }

/* contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; }
.contact-copy h3 {
  font-family: var(--display); font-weight: 700; text-transform: uppercase;
  line-height: 0.88; font-size: clamp(34px, 5vw, 56px);
}
.contact-copy p { color: var(--dim); margin: 22px 0 26px; max-width: 400px; }
.meta-link {
  font-family: var(--mono); font-size: 12.5px; letter-spacing: 0.08em;
  color: var(--text); text-decoration: none;
  border-bottom: 1px solid var(--line); padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.meta-link:hover { color: var(--accent); border-color: var(--accent); }

.contact-form { display: flex; flex-direction: column; gap: 18px; }
.contact-form label { display: flex; flex-direction: column; gap: 8px; }
.contact-form input, .contact-form textarea {
  background: var(--surface); border: 1px solid var(--line); border-radius: 4px;
  color: var(--text); font-family: var(--body); font-size: 15px;
  padding: 13px 15px; outline: none; resize: vertical;
  transition: border-color 0.2s ease;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: color-mix(in srgb, var(--dim) 60%, transparent); }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--dim); }

.btn {
  align-self: flex-start;
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--bg);
  background: var(--text); border: 1px solid var(--text); border-radius: 4px;
  padding: 14px 30px; cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.btn:hover { background: transparent; color: var(--text); }
.btn:disabled { opacity: 0.55; cursor: wait; }
.form-status { font-family: var(--mono); font-size: 12px; min-height: 18px; color: var(--dim); }
.form-status.ok { color: var(--accent); }
.form-status.err { color: #C97A6A; }

/* footer */
.footer { margin-top: 120px; padding: 0 0 44px; }
.footer-row {
  display: flex; justify-content: space-between; align-items: center; gap: 18px;
  flex-wrap: wrap;
  padding-top: 22px; border-top: 1px dashed var(--line);
  font-family: var(--mono); font-size: 11.5px; color: var(--dim); letter-spacing: 0.05em;
}
.footer-links { display: flex; gap: 22px; }
.footer-links a { color: var(--dim); text-decoration: none; }
.footer-links a:hover { color: var(--accent); }
.footer-clock { font-variant-numeric: tabular-nums; }

/* reveal */
.reveal {
  opacity: 0; transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ============ RESPONSIVE ============ */
@media (max-width: 860px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .rail { right: 12px; }
  .rail button span { display: none; }
}

@media (max-width: 720px) {
  .hud { padding: 16px 20px; }
  .after { padding: 40px 20px 0; }
  .work-grid { grid-template-columns: 1fr; }
  .work-item.wide { grid-column: span 1; aspect-ratio: 4 / 3; }
  .stats { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px dashed var(--line); }
  .stat:last-child { border-bottom: none; }
  .scene-strip .cell { padding: 16px 20px; }
  .hud-chapter { display: none; }
}

@media (max-width: 480px) {
  .process-grid { grid-template-columns: 1fr; }
}

/* ============ REDUCED MOTION / STATIC MODE ============ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .stage-track { height: auto; }
  .stage { position: static; height: auto; overflow: visible; }
  .scene {
    position: static; visibility: visible; opacity: 1;
    transform: none !important;
    min-height: 100vh; padding: 100px 0;
  }
  .scene-art { position: absolute; opacity: 0.18; }
  .cue-line { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .work-item img { transition: none; transform: none; }
  .rail { display: none; }
}

/* ============ LIGHT THEME SECTIONS ============ */
.theme-light {
  --bg: #F4E9D8;
  --surface: #EAD9BD;
  --line: #D3BFA0;
  --text: #15100B;
  --dim: #6F5F4B;
  --accent: #0E8A70;
  color: var(--text);
  position: relative;
  isolation: isolate;
  padding-top: 90px;
  padding-bottom: 90px;
  margin-top: 0;
}
.theme-light::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: -100vmax; right: -100vmax;
  background: var(--bg);
  z-index: -1;
}
.theme-light + .theme-light { padding-top: 0; }
.section.theme-light:first-child { margin-top: 60px; }
.theme-light .work-item { border-color: var(--line); }
.theme-light ::selection { background: #0E8A70; color: #F4E9D8; }

/* HUD adapting over light zones */
.hud-brand, .hud-chapter, .hud-contact, .hud-mark { transition: color 0.35s ease, border-color 0.35s ease, background-color 0.35s ease; }
body.hud-light .hud-brand { color: #15100B; }
body.hud-light .hud-mark { color: #6F5F4B; }
body.hud-light .hud-brand:hover .hud-mark { color: #0E8A70; }
body.hud-light .hud-chapter { color: #6F5F4B; }
body.hud-light .hud-chapter em { color: #D3BFA0; }
body.hud-light .hud-contact {
  color: #15100B; border-color: #D3BFA0;
  background: color-mix(in srgb, #F4E9D8 70%, transparent);
}
body.hud-light .hud-contact:hover { color: #0E8A70; border-color: #6F5F4B; }
body.hud-light .progress-fill { background: #0E8A70; }
.rail button { transition: color 0.35s ease; }
body.rail-light .rail button { color: #D3BFA0; }
body.rail-light .rail button:hover { color: #6F5F4B; }
body.rail-light .rail button.active { color: #0E8A70; }

/* ============ PRELOADER ============ */
#preloader {
  position: fixed; inset: 0; z-index: 100;
  background: #15100B;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 26px;
  clip-path: inset(0 0 0% 0);
  transition: clip-path 0.85s cubic-bezier(0.76, 0, 0.24, 1);
}
#preloader.done { clip-path: inset(0 0 100% 0); pointer-events: none; }
html.no-preloader #preloader { display: none; }
.pre-glyph { width: 54px; height: 54px; }
.pre-glyph circle, .pre-glyph line {
  stroke-dasharray: 70; stroke-dashoffset: 70;
  animation: draw 1.4s ease forwards;
}
.pre-count {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(48px, 8vw, 84px); line-height: 1;
  color: #F4E9D8; font-variant-numeric: tabular-nums;
}
.pre-bar { width: min(280px, 60vw); height: 1px; background: #3C2E1E; overflow: hidden; }
.pre-bar span { display: block; height: 100%; width: 0%; background: #5EE0C4; }
.pre-label {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.22em; color: #B8A88F; text-transform: uppercase;
}

/* ============ FLIPPER LINKS ============ */
.flip { display: inline-flex; position: relative; overflow: hidden; vertical-align: bottom; }
.flip-a, .flip-b { display: block; transition: transform 0.38s cubic-bezier(0.76, 0, 0.24, 1); }
.flip-b { position: absolute; inset: 0; transform: translateY(115%); }
a:hover > .flip .flip-a, button:hover .flip .flip-a, .btn:hover .flip .flip-a { transform: translateY(-115%); }
a:hover > .flip .flip-b, button:hover .flip .flip-b, .btn:hover .flip .flip-b { transform: translateY(0); }

/* ============ CHAR REVEALS ============ */
.split-chars .ch {
  display: inline-block;
  transform: translateY(1.15em);
  opacity: 0;
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1) calc(var(--i) * 20ms),
              opacity 0.4s ease calc(var(--i) * 20ms);
}
.in-view .split-chars .ch, .split-chars.in-view .ch { transform: translateY(0); opacity: 1; }
.split-chars { overflow: hidden; }

/* ============ CUSTOM CURSOR ============ */
.cursor {
  position: fixed; left: 0; top: 0; z-index: 90;
  width: 10px; height: 10px; border-radius: 999px;
  background: var(--accent);
  transform: translate(-50%, -50%) scale(0);
  transition: width 0.25s ease, height 0.25s ease, transform 0.2s ease, background 0.25s ease;
  pointer-events: none;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.cursor span {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em;
  text-transform: uppercase; color: #15100B; white-space: nowrap;
  opacity: 0; transition: opacity 0.2s ease;
}
body.cursor-on .cursor { transform: translate(-50%, -50%) scale(1); }
body.cursor-item .cursor { width: 74px; height: 74px; background: #5EE0C4; }
body.cursor-item .cursor span { opacity: 1; }
body.cursor-close .cursor { width: 52px; height: 52px; background: #F4E9D8; }
body.cursor-close .cursor span { opacity: 1; }
@media (pointer: fine) {
  body.cursor-item .work-grid, body.cursor-item .work-grid * { cursor: none; }
  body.cursor-close .lightbox, body.cursor-close .lightbox * { cursor: none; }
}
@media (pointer: coarse) { .cursor { display: none; } }

/* ============ LIGHTBOX ============ */
.lightbox {
  position: fixed; inset: 0; z-index: 95;
  background: rgba(21, 16, 11, 0.96);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox figure { max-width: min(1100px, 90vw); max-height: 86vh; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.lightbox img { max-width: 100%; max-height: 78vh; object-fit: contain; border: 1px solid var(--line); border-radius: 6px; }
.lightbox figcaption { font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--dim); text-align: center; }
.lightbox-close {
  position: absolute; top: 22px; right: 26px;
  background: none; border: 1px solid var(--line); border-radius: 3px;
  color: var(--text); font-size: 14px; padding: 8px 12px; cursor: pointer;
  font-family: var(--mono);
}
.lightbox-close:hover { color: var(--accent); border-color: var(--dim); }
.work-item { cursor: pointer; }

/* ============ MICRO DETAILS ============ */
.status {
  font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--dim);
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 22px;
}
.status-dot {
  width: 6px; height: 6px; border-radius: 999px;
  background: var(--accent); display: inline-block;
  animation: dotBlink 1.6s ease-in-out infinite;
}
@keyframes dotBlink { 0%, 100% { opacity: 1; } 50% { opacity: 0.25; } }
.footer-status {
  font-family: var(--mono); display: inline-flex; align-items: center; gap: 8px;
  font-variant-numeric: tabular-nums;
}

.work-note sup, .step sup { color: var(--accent); font-family: var(--mono); font-size: 0.7em; }

.colophon {
  display: flex; align-items: center; gap: 20px;
  padding: 26px 0 0;
  color: var(--dim);
}
.barcode { width: 92px; height: 26px; flex-shrink: 0; opacity: 0.8; }
.colophon-text {
  font-family: var(--mono); font-size: 10.5px;
  letter-spacing: 0.18em; text-transform: uppercase;
}
.colophon-text em { font-style: normal; color: var(--accent); }

/* rail tooltips */
.rail button { position: relative; }
.rail button::before {
  content: attr(data-tip);
  position: absolute; right: calc(100% + 10px); top: 50%;
  transform: translateY(-50%) translateX(6px);
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--dim); white-space: nowrap;
  opacity: 0; transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}
.rail button:hover::before { opacity: 1; transform: translateY(-50%) translateX(0); }

/* scroll cue fade after first scroll */
.scroll-cue { transition: opacity 0.5s ease; }
body.scrolled #heroCue { opacity: 0; }

/* ============ RESPONSIVE ADD-ONS ============ */
@media (max-width: 720px) {
  .theme-light { padding-top: 64px; padding-bottom: 64px; }
  .colophon { flex-direction: row; flex-wrap: wrap; gap: 12px; }
  .lightbox-close { top: 14px; right: 14px; }
}

/* ============ REDUCED MOTION ADD-ONS ============ */
@media (prefers-reduced-motion: reduce) {
  #preloader { display: none; }
  .section-head { background-size: 100% 1px; transition: none; }
  .work-item.reveal { clip-path: none; transition: none; }
  .split-chars .ch { transform: none; opacity: 1; transition: none; }
  .flip-a, .flip-b { transition: none; }
  .status-dot { animation: none; }
  .cursor { display: none; }
  .lightbox { transition: none; }
}
