/* ============================================================
   Mickey Gall — mickeygall.com
   Dark editorial. Hand-written, no framework, no dependencies.
   ============================================================ */

/* ── Fonts (self-hosted, zero third-party requests) ───────── */
@font-face {
  font-family: 'Oswald';
  src: url('../fonts/oswald-var-latin.woff2') format('woff2');
  font-weight: 200 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-var-latin.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* ── Tokens ───────────────────────────────────────────────── */
:root {
  --bg:          #0A0A0B;
  --bg-alt:      #0E0E10;
  --surface:     #161619;
  --line:        rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.18);
  --text:        #F4F4F5;
  --text-soft:   #D6D6DA;
  --muted:       #94949C;
  --accent:      #E10600;
  --accent-hi:   #FF2A1C;

  --display: 'Oswald', 'Haettenschweiler', 'Arial Narrow', sans-serif;
  --body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  --shell: 1240px;
  --pad: clamp(20px, 5vw, 56px);
  --section-y: clamp(76px, 11vw, 152px);
  --header-h: 74px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ── Reset & base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  font-synthesis-weight: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.is-locked { overflow: hidden; }

img, picture, svg { display: block; max-width: 100%; }
img { height: auto; }

h1, h2, h3 { margin: 0; font-weight: 600; }
p { margin: 0; }
ul, ol, dl, dd { margin: 0; padding: 0; }
li { list-style: none; }

a { color: inherit; text-decoration: none; }

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

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

:focus-visible {
  outline: 2px solid var(--accent-hi);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ── Layout ───────────────────────────────────────────────── */
.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--pad);
}
.shell-wide { max-width: 1600px; }

.section { padding-block: var(--section-y); }
.section-alt { background: var(--bg-alt); }

/* ── Skip link ────────────────────────────────────────────── */
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 12px 20px;
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  transform: translateY(-160%);
  transition: transform 0.2s var(--ease);
}
.skip-link:focus { transform: translateY(0); }

/* ── Shared bits ──────────────────────────────────────────── */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
}
.eyebrow .tick {
  width: 26px;
  height: 2px;
  background: var(--accent);
  flex: none;
}

.wordmark {
  font-family: var(--display);
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
}
.wordmark span { color: var(--accent); margin-left: 0.34em; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 32px;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease),
              transform 0.25s var(--ease), color 0.25s var(--ease);
}
.btn-solid { background: var(--accent); color: #fff; }
.btn-solid:hover { background: var(--accent-hi); transform: translateY(-2px); }
.btn-ghost { border-color: var(--line-strong); color: var(--text); }
.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}

/* ── Header ───────────────────────────────────────────────── */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 90;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease),
              backdrop-filter 0.3s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-stuck {
  background: rgba(10, 10, 11, 0.82);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  border-bottom-color: var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 38px); }
.nav a {
  position: relative;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  padding-block: 6px;
  transition: color 0.22s var(--ease);
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s var(--ease);
}
.nav a:hover { color: var(--text); }
.nav a:hover::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-right: -9px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.nav-toggle[aria-expanded='true'] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded='true'] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded='true'] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 640px;
  height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-media { position: absolute; inset: 0; }
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 22%;
}

/* Two stacked scrims: vertical for text legibility, horizontal so the
   left-aligned copy sits on darkness while the photo still reads. */
.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 10, 11, 0.85) 0%, rgba(10, 10, 11, 0.35) 48%, rgba(10, 10, 11, 0) 88%),
    linear-gradient(180deg, rgba(10, 10, 11, 0.7) 0%, rgba(10, 10, 11, 0.12) 30%, rgba(10, 10, 11, 0.55) 72%, var(--bg) 100%);
}

.hero-body {
  position: relative;
  z-index: 2;
  padding-bottom: clamp(72px, 13vh, 148px);
  padding-top: calc(var(--header-h) + 32px);
}

.hero-title {
  font-family: var(--display);
  font-size: clamp(3.9rem, 13.5vw, 11.5rem);
  font-weight: 600;
  line-height: 0.82;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  margin-top: 22px;
  text-wrap: balance;
}

.hero-rule {
  width: 84px;
  height: 3px;
  background: var(--accent);
  margin-top: clamp(24px, 3.5vw, 40px);
}

.hero-sub {
  margin-top: 24px;
  max-width: 46ch;
  font-size: clamp(0.95rem, 1.3vw, 1.09rem);
  line-height: 1.65;
  color: var(--text-soft);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: clamp(30px, 4vw, 44px);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 26px;
  z-index: 2;
  translate: -50% 0;
  width: 26px;
  height: 42px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  display: grid;
  place-items: start center;
  padding-top: 8px;
}
.scroll-cue span {
  width: 3px;
  height: 7px;
  border-radius: 2px;
  background: var(--accent);
  animation: cue 1.9s var(--ease) infinite;
}
@keyframes cue {
  0%, 100% { opacity: 0; transform: translateY(0); }
  35%      { opacity: 1; transform: translateY(4px); }
  70%      { opacity: 0; transform: translateY(14px); }
}

/* ── Stat band ────────────────────────────────────────────── */
.stats {
  background: var(--bg);
  border-block: 1px solid var(--line);
  position: relative;
  z-index: 3;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.stat {
  padding: clamp(26px, 3.4vw, 44px) clamp(10px, 1.6vw, 24px);
  border-left: 1px solid var(--line);
}
.stat:first-child { border-left: 0; padding-left: 0; }

.stat dt {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.stat dd {
  font-family: var(--display);
  font-size: clamp(1.9rem, 3.6vw, 3.15rem);
  font-weight: 500;
  line-height: 1.05;
  margin-top: 10px;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.stat dd .dash { color: var(--accent); margin-inline: 1px; }
.stat dd small {
  display: block;
  font-family: var(--body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
}

/* ── Section heads ────────────────────────────────────────── */
.section-head { max-width: 760px; margin-bottom: clamp(42px, 6vw, 76px); }
.section-title {
  font-family: var(--display);
  font-size: clamp(2.4rem, 5.6vw, 4.6rem);
  font-weight: 600;
  line-height: 0.94;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  margin-top: 20px;
}
.section-note {
  margin-top: 20px;
  max-width: 48ch;
  color: var(--muted);
  font-size: 0.97rem;
}

/* ── Gallery ──────────────────────────────────────────────── */
/* Filter chips */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: clamp(26px, 3.5vw, 40px);
}
.chip {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  background: transparent;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease),
              background 0.25s var(--ease);
}
.chip:hover { color: var(--text); border-color: var(--line-strong); }
.chip.is-active {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
}
.chip-n {
  font-size: 10.5px;
  letter-spacing: 0.06em;
  opacity: 0.65;
  font-variant-numeric: tabular-nums;
}

.gallery-more {
  display: flex;
  justify-content: center;
  margin-top: clamp(28px, 3.5vw, 44px);
}
.gallery-more[hidden] { display: none; }

/* CSS columns are the no-JS baseline. When JS is available it swaps in
   flex columns and distributes tiles into the shortest one, which keeps the
   bottom edge even instead of letting the last column run short. */
.masonry {
  --cols: 4;
  column-count: var(--cols);
  column-gap: 14px;
}
.masonry.is-balanced {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  column-count: auto;
}
.masonry.is-balanced .mcol {
  flex: 1 1 0;
  min-width: 0;
}

.tile {
  display: block;
  width: 100%;
  margin-bottom: 14px;
  break-inside: avoid;
  position: relative;
  overflow: hidden;
  background: var(--surface);
  line-height: 0;
}
.tile::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  background: rgba(10, 10, 11, 0.28);
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease);
  pointer-events: none;
}
.tile img {
  width: 100%;
  height: auto;
  transition: transform 0.65s var(--ease), filter 0.45s var(--ease);
  filter: saturate(0.92);
}
.tile:hover img,
.tile:focus-visible img { transform: scale(1.045); filter: saturate(1.05); }
.tile:hover::after,
.tile:focus-visible::after { background: rgba(10, 10, 11, 0); border-color: var(--accent); }

/* Caption slides up on hover; always present for screen readers via alt text. */
.tile-cap {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding: 32px 14px 13px;
  font-family: var(--body);
  font-size: 12.5px;
  line-height: 1.35;
  letter-spacing: 0.01em;
  text-align: left;
  color: #fff;
  background: linear-gradient(180deg, rgba(10, 10, 11, 0) 0%, rgba(10, 10, 11, 0.88) 62%);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
  pointer-events: none;
}
.tile-cap span {
  display: block;
  transform: translateY(8px);
  transition: transform 0.35s var(--ease);
}
.tile:hover .tile-cap,
.tile:focus-visible .tile-cap { opacity: 1; }
.tile:hover .tile-cap span,
.tile:focus-visible .tile-cap span { transform: none; }

.tile.is-hidden { display: none; }

/* ── In His Own Words ─────────────────────────────────────── */
.words-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(34px, 5vw, 68px);
  align-items: start;
}

.words-media { position: sticky; top: calc(var(--header-h) + 30px); }
.words-media img { width: 100%; border: 1px solid var(--line); }
.words-caption {
  margin-top: 14px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.qa-item {
  padding-block: clamp(20px, 2.4vw, 28px);
  border-bottom: 1px solid var(--line);
}
.qa-item:first-child { border-top: 1px solid var(--line); }
.qa-item dt {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.01em;
}
.qa-item dd {
  margin-top: 9px;
  font-size: clamp(1.02rem, 1.35vw, 1.19rem);
  line-height: 1.6;
  color: var(--text-soft);
}

/* ── Sponsors ─────────────────────────────────────────────── */
/* Several supplied logos are dark artwork on transparency, so each sits
   on a white card — otherwise they'd disappear against the canvas. */
.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(168px, 1fr));
  gap: 14px;
}
.sponsor-grid li { display: block; }
.sponsor-grid a,
.sponsor-grid span {
  display: grid;
  place-items: center;
  aspect-ratio: 3 / 2;
  padding: clamp(18px, 2.2vw, 28px);
  background: #fff;
  border-radius: 3px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.sponsor-grid a:hover,
.sponsor-grid span:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}
.sponsor-grid img {
  width: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  /* A whisper of shadow so light artwork still holds an edge against the
     white card. */
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.28));
}

/* ── Contact cards ────────────────────────────────────────── */
.link-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(228px, 1fr));
  gap: 14px;
}
.link-cards a {
  display: block;
  padding: clamp(26px, 3vw, 36px);
  background: var(--surface);
  border: 1px solid var(--line);
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease),
              transform 0.3s var(--ease);
  height: 100%;
}
.link-cards a:hover {
  border-color: var(--accent);
  background: #1B1B1F;
  transform: translateY(-3px);
}
.link-cards svg { width: 22px; height: 22px; color: var(--muted); transition: color 0.3s var(--ease); }
.link-cards a:hover svg { color: var(--accent); }
.lc-name {
  display: block;
  margin-top: 22px;
  font-family: var(--display);
  font-size: 1.18rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.lc-handle {
  display: block;
  margin-top: 6px;
  font-size: 0.83rem;
  color: var(--muted);
  overflow-wrap: anywhere;
}

/* ── Footer ───────────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--line);
  padding-block: clamp(40px, 5vw, 62px);
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 32px;
}
.footer-gyms {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--muted);
  flex: 1 1 320px;
}
.footer-legal { font-size: 12px; color: var(--muted); }

/* ── Lightbox ─────────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: grid;
  place-items: center;
  background: rgba(6, 6, 7, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.28s var(--ease);
}
.lightbox[hidden] { display: none; }
.lightbox.is-open { opacity: 1; }
.lightbox:focus { outline: none; }

.lb-stage {
  margin: 0;
  max-width: min(92vw, 1400px);
  display: grid;
  place-items: center;
  /* Leave room for the caption and filmstrip pinned to the bottom. */
  margin-bottom: 176px;
}
.lb-stage img {
  max-width: min(92vw, 1400px);
  max-height: calc(100svh - 232px);
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.25s var(--ease);
}
.lb-stage img.is-ready { opacity: 1; }

.lb-close,
.lb-nav {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease);
}
.lb-close:hover,
.lb-nav:hover { background: var(--accent); border-color: var(--accent); }
.lb-close svg,
.lb-nav svg { width: 20px; height: 20px; }

.lb-close { top: 20px; right: 20px; }
.lb-prev { left: clamp(12px, 3vw, 34px); top: 50%; translate: 0 -50%; }
.lb-next { right: clamp(12px, 3vw, 34px); top: 50%; translate: 0 -50%; }

/* Caption + counter sit between the photo and the filmstrip. */
.lb-caption {
  position: absolute;
  left: 50%;
  bottom: 118px;
  translate: -50% 0;
  width: min(92vw, 1400px);
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 16px;
  text-align: center;
}
#lb-cap {
  font-size: 0.95rem;
  color: var(--text-soft);
}
.lb-counter {
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.lb-counter #lb-index { color: #fff; }

/* Filmstrip */
.lb-strip {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 22px;
  display: flex;
  gap: 8px;
  justify-content: flex-start;
  padding: 0 clamp(12px, 4vw, 40px);
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
}
.lb-strip::-webkit-scrollbar { display: none; }
.lb-thumb {
  flex: 0 0 auto;
  width: 68px;
  height: 68px;
  padding: 0;
  border: 1px solid transparent;
  opacity: 0.4;
  filter: saturate(0.7);
  transition: opacity 0.25s var(--ease), border-color 0.25s var(--ease),
              filter 0.25s var(--ease);
}
.lb-thumb img { width: 100%; height: 100%; object-fit: cover; }
.lb-thumb:hover { opacity: 0.85; filter: none; }
.lb-thumb.is-current {
  opacity: 1;
  filter: none;
  border-color: var(--accent);
}
.lb-thumb.is-hidden { display: none; }

/* ── Reveal on scroll (only when JS is present) ───────────── */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(20px);
}
.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1180px) {
  .masonry { --cols: 3; }
}

@media (max-width: 900px) {
  :root { --header-h: 64px; }

  .nav {
    position: fixed;
    inset: 0;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 6px;
    padding: 0 var(--pad);
    background: var(--bg);
    transform: translateX(100%);
    transition: transform 0.42s var(--ease);
    z-index: 80;
  }
  .nav.is-open { transform: translateX(0); }
  .nav a {
    font-family: var(--display);
    font-size: clamp(2rem, 9vw, 3.1rem);
    letter-spacing: 0.06em;
    color: var(--text);
    padding-block: 12px;
  }
  .nav a::after { display: none; }

  .nav-toggle { display: flex; position: relative; z-index: 95; }

  .words-grid { grid-template-columns: 1fr; }
  .words-media { position: static; max-width: 560px; }

  .stat-grid { grid-template-columns: repeat(3, 1fr); }
  .stat { border-left: 1px solid var(--line); }
  .stat:first-child { padding-left: clamp(10px, 1.6vw, 24px); }
  .stat:nth-child(3n + 1) { border-left: 0; padding-left: 0; }
  .stat:nth-child(n + 4) { border-top: 1px solid var(--line); }

  .masonry { --cols: 2; }

  .lb-close { top: 14px; right: 14px; width: 44px; height: 44px; }
  .lb-nav { width: 44px; height: 44px; }

  .lb-stage { margin-bottom: 132px; }
  .lb-stage img { max-height: calc(100svh - 190px); }
  .lb-caption { bottom: 92px; flex-direction: column; gap: 4px; }
  .lb-thumb { width: 54px; height: 54px; }
}

@media (max-width: 560px) {
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3n + 1) { border-left: 1px solid var(--line); padding-left: clamp(10px, 1.6vw, 24px); }
  .stat:nth-child(odd) { border-left: 0; padding-left: 0; }
  .stat:nth-child(n + 3) { border-top: 1px solid var(--line); }

  .masonry { --cols: 1; }
  .hero-actions .btn { flex: 1 1 100%; }
  .scroll-cue { display: none; }
  .lb-prev { left: 10px; }
  .lb-next { right: 10px; }
}

/* ── Motion & contrast preferences ────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .js [data-reveal] { opacity: 1; transform: none; }
}

@media (prefers-contrast: more) {
  :root { --muted: #B8B8C0; --line: rgba(255, 255, 255, 0.22); }
}
