/* ============================================================
   SPEKTRON — spektron.live
   Self-hosted type: Archivo (variable) + JetBrains Mono (variable)
   No third-party CSS, no font CDN.
   ============================================================ */

@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 400 900;
  font-stretch: 62% 125%;
  font-display: swap;
  src: url('/assets/fonts/archivo-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 400 900;
  font-stretch: 62% 125%;
  font-display: swap;
  src: url('/assets/fonts/archivo-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('/assets/fonts/jetbrainsmono-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('/assets/fonts/jetbrainsmono-greek.woff2') format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}

/* ---------- tokens ---------- */
:root {
  --void:   #07090a;
  --ink:    #0c0f10;
  --ink-2:  #111516;
  --line:   #1d2426;
  --line-2: #2b3436;
  --bone:   #e7e4dd;
  --dim:    #8b9391;
  --dim-2:  #626b69;
  --ember:  #f4682a;
  --ember-h:#ff7c40;
  --patina: #57c2b4;

  --sans: 'Archivo', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  --gut: clamp(20px, 5vw, 64px);
  --max: 1240px;
  --sec: clamp(72px, 11vw, 144px);
  --ease: cubic-bezier(.22,.61,.36,1);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--void);
  color: var(--bone);
  font-family: var(--sans);
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.75;
  font-synthesis-weight: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

:where(a, button, [tabindex]):focus-visible {
  outline: 2px solid var(--ember);
  outline-offset: 3px;
  border-radius: 1px;
}

::selection { background: var(--ember); color: #0a0c0d; }

.skip {
  position: fixed; top: -100px; left: var(--gut); z-index: 200;
  background: var(--ember); color: #0a0c0d;
  padding: 10px 18px; font: 600 12px/1 var(--mono);
  letter-spacing: .12em; text-transform: uppercase;
  transition: top .2s var(--ease);
}
.skip:focus { top: 14px; }

.wrap { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--gut); }

/* ---------- film / CRT overlay ---------- */
.fx { position: fixed; inset: 0; z-index: 90; pointer-events: none; }
.fx-scan {
  position: absolute; inset: 0; opacity: .30;
  background: repeating-linear-gradient(
    to bottom, rgba(0,0,0,0) 0 2px, rgba(0,0,0,.55) 2px 3px);
  mix-blend-mode: multiply;
}
.fx-grain {
  position: absolute; inset: -60px; opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 900ms steps(3) infinite;
}
@keyframes grain {
  0%   { transform: translate(0,0); }
  33%  { transform: translate(-14px, 9px); }
  66%  { transform: translate(11px,-12px); }
  100% { transform: translate(0,0); }
}

/* ---------- top bar ---------- */
.topbar {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 14px var(--gut);
  border-bottom: 1px solid transparent;
  transition: background .35s var(--ease), border-color .35s var(--ease), backdrop-filter .35s var(--ease);
}
.topbar.is-stuck {
  background: rgba(7,9,10,.82);
  backdrop-filter: blur(12px) saturate(120%);
  -webkit-backdrop-filter: blur(12px) saturate(120%);
  border-bottom-color: var(--line);
}

.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--bone); }
.brand-mark { width: 21px; height: 21px; color: var(--ember); flex: none; }
.brand-txt {
  font: 800 13px/1 var(--sans); font-stretch: 88%;
  letter-spacing: .26em; text-transform: uppercase;
}

.nav { display: flex; gap: clamp(14px, 2.4vw, 34px); }
.nav a {
  font: 500 11px/1 var(--mono);
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--dim); position: relative; padding-block: 6px;
  transition: color .25s var(--ease);
}
.nav a::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: var(--ember);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav a:hover, .nav a.is-active { color: var(--bone); }
.nav a:hover::after, .nav a.is-active::after { transform: scaleX(1); }

/* ---------- hero ---------- */
.hero {
  position: relative; isolation: isolate;
  min-height: 100svh;
  display: flex; align-items: flex-end;
  padding: 0 var(--gut) clamp(56px, 9vh, 104px);
  overflow: hidden;
}
.hero-img { position: absolute; inset: 0; z-index: -3; }
.hero-img img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: 50% 16%;
  filter: contrast(1.06) brightness(.94);
}
.hero-scrim {
  position: absolute; inset: 0; z-index: -2;
  background:
    linear-gradient(to top, var(--void) 2%, rgba(7,9,10,.72) 34%, rgba(7,9,10,.18) 68%, rgba(7,9,10,.55) 100%),
    linear-gradient(to right, var(--void) 0%, rgba(7,9,10,.80) 32%, rgba(7,9,10,.10) 72%);
}
.hero-spectrum {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: -1;
  width: 100%; height: clamp(120px, 20vh, 230px);
  opacity: .5; mix-blend-mode: screen;
}

/* HUD corner ticks */
.hud { position: absolute; inset: clamp(76px,9vh,96px) var(--gut) clamp(24px,4vh,40px); z-index: 1; pointer-events: none; }
.tick { position: absolute; width: 16px; height: 16px; }
.tick::before, .tick::after { content: ''; position: absolute; background: var(--ember); }
.tick::before { width: 16px; height: 1px; }
.tick::after  { width: 1px;  height: 16px; }
.tl { top: 0; left: 0; }
.tr { top: 0; right: 0; }  .tr::before { right: 0; }  .tr::after { right: 0; }
.bl { bottom: 0; left: 0; } .bl::before { bottom: 0; } .bl::after { bottom: 0; }
.br { bottom: 0; right: 0; } .br::before { bottom: 0; right: 0; } .br::after { bottom: 0; right: 0; }

.hero-meta {
  position: absolute; top: clamp(88px,10vh,112px); right: var(--gut); z-index: 2;
  display: flex; flex-direction: column; align-items: flex-end; gap: 4px;
  font: 400 10px/1.6 var(--mono); letter-spacing: .18em;
  color: var(--dim-2); text-transform: uppercase;
}
.hero-meta .on { color: var(--patina); }

.hero-body { position: relative; z-index: 2; width: 100%; }

.eyebrow {
  margin: 0 0 clamp(18px, 3vh, 30px);
  font: 500 10.5px/1 var(--mono); letter-spacing: .3em;
  text-transform: uppercase; color: var(--patina);
}

/* "SPEKTRON" measures ~6.89em wide at weight 900 / stretch 112%.
   12.4vw keeps it inside 100vw - 2*--gut from 320px up, with ~5% slack so a
   fallback face can never push it past the gutter. */
.wordmark {
  margin: 0;
  max-width: 100%;
  font-family: var(--sans);
  font-weight: 900;
  font-stretch: 112%;
  font-size: clamp(2.2rem, 12.4vw, 15rem);
  line-height: .84;
  letter-spacing: -.028em;
  text-transform: uppercase;
  color: var(--bone);
  white-space: nowrap;
}

.hero-rule {
  width: clamp(80px, 12vw, 160px); height: 2px; background: var(--ember);
  margin: clamp(20px, 3.4vh, 34px) 0 clamp(14px, 2vh, 20px);
}

.hero-sub {
  margin: 0;
  font: 400 clamp(11px, 1.15vw, 13px)/1.6 var(--mono);
  letter-spacing: .24em; text-transform: uppercase; color: var(--bone);
}

.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: clamp(26px, 4vh, 40px); }

.scroll-cue {
  position: absolute; left: 50%; bottom: 18px; z-index: 3;
  transform: translateX(-50%);
  width: 22px; height: 40px;
}
.scroll-cue span {
  position: absolute; left: 50%; top: 4px; width: 1px; height: 26px;
  background: linear-gradient(to bottom, var(--ember), transparent);
  animation: cue 2.1s var(--ease) infinite;
}
@keyframes cue {
  0%   { transform: translateY(-8px) scaleY(.4); opacity: 0; }
  40%  { opacity: 1; }
  100% { transform: translateY(14px) scaleY(1); opacity: 0; }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 24px;
  border: 1px solid var(--line-2);
  background: rgba(12,15,16,.62);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  color: var(--bone);
  font: 600 10.5px/1 var(--mono);
  letter-spacing: .2em; text-transform: uppercase;
  transition: border-color .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
}
.btn:hover { border-color: var(--ember); color: var(--ember-h); }
.btn--solid {
  background: var(--ember); border-color: var(--ember); color: #0a0c0d;
}
.btn--solid:hover { background: var(--ember-h); border-color: var(--ember-h); color: #0a0c0d; }

/* ---------- ticker ---------- */
.ticker {
  border-block: 1px solid var(--line);
  background: var(--ink);
  overflow: hidden; padding: 13px 0;
}
.ticker-run {
  display: flex; width: max-content; gap: 0;
  animation: run 42s linear infinite;
}
.ticker-run span, .ticker-run i {
  font: 500 11px/1 var(--mono); letter-spacing: .24em;
  text-transform: uppercase; white-space: nowrap;
}
.ticker-run span { color: var(--dim); padding-inline: 20px; }
.ticker-run i { color: var(--ember); font-style: normal; }
@keyframes run { to { transform: translateX(-50%); } }

/* ---------- sections ---------- */
.section { padding-block: var(--sec); }

.kicker {
  display: flex; align-items: baseline; gap: 14px;
  margin: 0 0 clamp(40px, 6vw, 76px);
  font: 500 11px/1 var(--mono); letter-spacing: .3em;
  text-transform: uppercase; color: var(--dim);
}
.kicker .idx { color: var(--ember); font-weight: 700; }
.kicker::after {
  content: ''; flex: 1; height: 1px; background: var(--line);
}

/* ---------- statement ---------- */
.statement { padding-block: clamp(64px, 10vw, 140px) clamp(28px, 4vw, 56px); }
.lede {
  margin: 0 0 clamp(48px, 7vw, 88px);
  max-width: 22ch;
  font-weight: 500; font-stretch: 96%;
  font-size: clamp(1.5rem, 4.1vw, 3.1rem);
  line-height: 1.16; letter-spacing: -.02em;
  max-width: 17ch;
}
@media (min-width: 720px) { .lede { max-width: 26ch; } }
.lede em { font-style: normal; color: var(--ember); }

.spec dl {
  display: grid; gap: 1px; margin: 0;
  background: var(--line);
  border: 1px solid var(--line);
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .spec dl { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .spec dl { grid-template-columns: repeat(4, 1fr); } }
.spec dl > div { background: var(--void); padding: 22px 24px 24px; }
.spec dt {
  font: 500 9.5px/1 var(--mono); letter-spacing: .24em;
  text-transform: uppercase; color: var(--dim-2); margin-bottom: 10px;
}
.spec dd { margin: 0; font-size: .98rem; font-weight: 500; }
.spec dd a { border-bottom: 1px solid var(--line-2); transition: color .2s, border-color .2s; }
.spec dd a:hover { color: var(--ember); border-color: var(--ember); }

/* ---------- releases ---------- */
.release {
  display: grid; gap: clamp(28px, 4vw, 56px);
  grid-template-columns: 1fr;
  padding-bottom: clamp(56px, 8vw, 104px);
  margin-bottom: clamp(56px, 8vw, 104px);
  border-bottom: 1px solid var(--line);
}
.release:last-child { padding-bottom: 0; margin-bottom: 0; border-bottom: 0; }

@media (min-width: 900px) {
  .release { grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr); align-items: start; }
  .release-art  { grid-column: 1; grid-row: 1 / span 2; position: sticky; top: 104px; }
  .release-info { grid-column: 2; grid-row: 1; }
  .release-player { grid-column: 2; grid-row: 2; }
}

.release-art {
  position: relative;
  border: 1px solid var(--line);
  background: var(--ink);
}
.release-art img { width: 100%; }
.release-art::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  box-shadow: inset 0 0 90px rgba(7,9,10,.55);
}

.tag {
  margin: 0 0 16px;
  font: 500 10.5px/1.5 var(--mono); letter-spacing: .2em;
  text-transform: uppercase; color: var(--dim);
}
.tag .cat {
  display: inline-block; margin-right: 10px; padding: 4px 8px;
  border: 1px solid var(--ember); color: var(--ember);
  font-weight: 700; letter-spacing: .16em;
}

.release-title {
  margin: 0 0 22px;
  font-weight: 800; font-stretch: 104%;
  font-size: clamp(2.1rem, 5.6vw, 4rem);
  line-height: .96; letter-spacing: -.025em;
  text-transform: uppercase;
}

.release-copy {
  margin: 0 0 30px; max-width: 58ch;
  color: rgba(231,228,221,.78);
}
.release-copy em { font-style: italic; color: var(--bone); }

.tracks { list-style: none; margin: 0 0 30px; padding: 0; border-top: 1px solid var(--line); }
.tracks li {
  display: grid; grid-template-columns: 34px 1fr auto; align-items: center; gap: 14px;
  padding: 14px 2px; border-bottom: 1px solid var(--line);
  transition: color .2s var(--ease), padding-left .25s var(--ease);
}
.tracks li:hover { color: var(--ember); padding-left: 10px; }
.tracks .n { font: 500 10.5px/1 var(--mono); color: var(--dim-2); letter-spacing: .1em; }
.tracks li:hover .n { color: var(--ember); }
.tracks .t { font-weight: 600; font-size: 1.02rem; }
.tracks .d { font: 400 11px/1 var(--mono); color: var(--dim-2); letter-spacing: .08em; }

.credits { display: grid; gap: 1px; margin: 0 0 32px; background: var(--line); border: 1px solid var(--line); }
@media (min-width: 560px) { .credits { grid-template-columns: repeat(3, 1fr); } }
.credits > div { background: var(--void); padding: 16px 18px; }
.credits dt {
  font: 500 9px/1.4 var(--mono); letter-spacing: .2em;
  text-transform: uppercase; color: var(--dim-2); margin-bottom: 7px;
}
.credits dd { margin: 0; font-size: .9rem; line-height: 1.5; }

/* Bandcamp players are fixed-height content — sized to the rendered player so
   there is no dead grey space below it. */
.release-player { border: 1px solid var(--line); background: var(--ink); }
.release-player iframe { width: 100%; height: 252px; border: 0; }
.release-player iframe.player--single { height: 180px; }

/* ---------- sets ---------- */
.set { border: 1px solid var(--line); background: var(--ink); }
.set-head {
  display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between;
  gap: 10px 24px; padding: clamp(24px, 3.4vw, 40px);
  border-bottom: 1px solid var(--line);
}
.set-title {
  margin: 0; font-weight: 800; font-stretch: 100%;
  font-size: clamp(1.35rem, 3.2vw, 2.2rem);
  line-height: 1.05; letter-spacing: -.02em; text-transform: uppercase;
}
.set-head .tag { margin: 0; }
.set-copy {
  margin: 0; padding: clamp(22px, 3vw, 32px) clamp(24px, 3.4vw, 40px) 0;
  max-width: 62ch; color: rgba(231,228,221,.78);
}
.set-copy em { font-style: italic; color: var(--bone); }
.set-player { padding: clamp(18px, 2.6vw, 30px); }
.set-player iframe { width: 100%; height: 330px; border: 0; }
.set > .btn { margin: 0 clamp(24px,3.4vw,40px) clamp(24px,3.4vw,40px); }

/* ---------- bio ---------- */
.bio { display: grid; gap: clamp(32px, 5vw, 72px); grid-template-columns: 1fr; align-items: start; }
@media (min-width: 900px) { .bio { grid-template-columns: minmax(0,.82fr) minmax(0,1fr); } }
.bio-img { position: relative; border: 1px solid var(--line); overflow: hidden; }
.bio-img img { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: 50% 18%; filter: contrast(1.05); }
.bio-img::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to top, rgba(244,104,42,.10), transparent 55%);
}
.bio-text p { margin: 0 0 1.35em; max-width: 60ch; color: rgba(231,228,221,.82); }
.bio-text p:first-child { font-size: clamp(1.08rem, 1.8vw, 1.3rem); color: var(--bone); }
.bio-text strong { color: var(--bone); font-weight: 700; }
.bio-note {
  margin-top: 2em !important;
  font: 400 10.5px/1.7 var(--mono) !important; letter-spacing: .14em;
  text-transform: uppercase; color: var(--dim-2) !important;
}
.bio-note a { color: var(--dim); border-bottom: 1px solid var(--line-2); }
.bio-note a:hover { color: var(--ember); border-color: var(--ember); }

/* ---------- timeline ---------- */
.timeline {
  list-style: none; margin: clamp(48px, 7vw, 88px) 0 0; padding: 0;
  display: grid; gap: 1px; background: var(--line);
  border: 1px solid var(--line); grid-template-columns: 1fr;
}
@media (min-width: 720px) { .timeline { grid-template-columns: repeat(3, 1fr); } }
.timeline li {
  background: var(--void); padding: 26px 26px 30px;
  display: flex; flex-direction: column; gap: 12px;
  position: relative;
}
.timeline li::before {
  content: ''; position: absolute; top: 0; left: 0; width: 46px; height: 2px;
  background: var(--ember);
}
.tl-yr {
  font: 800 clamp(1.5rem, 3vw, 2.1rem)/1 var(--sans);
  font-stretch: 104%; letter-spacing: -.02em; color: var(--ember);
}
.tl-txt { font-size: .93rem; line-height: 1.6; color: rgba(231,228,221,.78); max-width: 34ch; }
.tl-txt em { font-style: italic; color: var(--bone); }

/* ---------- labels ---------- */
.labels { margin-top: clamp(40px, 6vw, 68px); }
.labels-head {
  margin: 0 0 18px;
  font: 500 9.5px/1 var(--mono); letter-spacing: .3em;
  text-transform: uppercase; color: var(--dim-2);
}
.labels ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 10px;
}
.labels li {
  padding: 9px 16px; border: 1px solid var(--line-2);
  font: 500 10.5px/1 var(--mono); letter-spacing: .18em;
  text-transform: uppercase; color: var(--dim);
}
.labels li.is-now { border-color: var(--ember); color: var(--ember); }

/* ---------- contact ---------- */
.contact { border-top: 1px solid var(--line); background: var(--ink); }
.contact-lede {
  margin: 0 0 22px; max-width: 20ch;
  font-weight: 500; font-stretch: 98%;
  font-size: clamp(1.5rem, 4vw, 2.9rem);
  line-height: 1.14; letter-spacing: -.02em;
}
.contact-mail { margin: 0 0 clamp(48px, 7vw, 84px); }
.contact-mail a {
  font: 500 clamp(13px, 1.9vw, 19px)/1.3 var(--mono);
  letter-spacing: .06em; color: var(--ember);
  border-bottom: 1px solid rgba(244,104,42,.4);
  transition: border-color .25s var(--ease), color .25s var(--ease);
  overflow-wrap: anywhere;
}
.contact-mail a:hover { color: var(--ember-h); border-bottom-color: var(--ember-h); }

.links {
  display: grid; gap: 1px; background: var(--line);
  border: 1px solid var(--line); grid-template-columns: 1fr;
}
@media (min-width: 560px) { .links { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .links { grid-template-columns: repeat(4, 1fr); } }
.links a {
  display: flex; flex-direction: column; gap: 8px;
  background: var(--ink); padding: 26px 24px 28px;
  transition: background .25s var(--ease), color .25s var(--ease);
}
.links a:hover { background: var(--ink-2); }
.lk-n {
  font: 700 11px/1 var(--mono); letter-spacing: .22em; text-transform: uppercase;
  transition: color .25s var(--ease);
}
.links a:hover .lk-n { color: var(--ember); }
.lk-h { font: 400 11px/1.4 var(--mono); letter-spacing: .1em; color: var(--dim-2); }

/* ---------- footer ---------- */
.foot { border-top: 1px solid var(--line); padding-block: 26px; }
.foot-in {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 8px 20px;
  font: 400 10px/1.6 var(--mono); letter-spacing: .2em;
  text-transform: uppercase; color: var(--dim-2);
}
.foot-mid { color: var(--line-2); }

.foot-credit {
  margin: 20px 0 0; padding-top: 20px;
  border-top: 1px solid var(--line);
  text-align: center;
  font: 400 10px/1.7 var(--mono); letter-spacing: .2em;
  text-transform: uppercase; color: var(--dim-2);
}
.foot-credit a {
  color: var(--dim);
  border-bottom: 1px solid var(--line-2);
  transition: color .25s var(--ease), border-color .25s var(--ease);
}
.foot-credit a:hover { color: var(--ember); border-bottom-color: var(--ember); }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); }
.reveal.is-in {
  opacity: 1; transform: none;
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

/* ---------- small screens ---------- */
@media (max-width: 860px) {
  .hero-img img { object-position: 50% 12%; }
  .hero-scrim {
    background:
      linear-gradient(to top, var(--void) 4%, rgba(7,9,10,.80) 40%, rgba(7,9,10,.22) 74%, rgba(7,9,10,.60) 100%);
  }
  .hero-meta { display: none; }
  .brand-txt { display: none; }
  .nav { gap: 14px; }
  .nav a { font-size: 10px; letter-spacing: .14em; }
  .wordmark { font-stretch: 96%; }
}
@media (max-width: 380px) {
  .nav a { letter-spacing: .08em; }
}

/* ---------- motion & contrast preferences ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .fx-grain, .ticker-run, .scroll-cue span { animation: none !important; }
  .reveal { opacity: 1; transform: none; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
}
@media (prefers-contrast: more) {
  .fx { display: none; }
  :root { --dim: #a9b0ae; --dim-2: #8d9694; --line: #384245; --line-2: #4a5558; }
}
