/* ============================================================
   negativespace. — one page
   Rules live in band/brand/visual-identity.md.
   Night ground · one warm source · lowercase · sharp corners · serif.
   ============================================================ */

/* ---------- 1. tokens ------------------------------------- */
:root {
  /* colour — dark only. there is no light mode. */
  --night:     #08090c;   /* page ground */
  --night-2:   #0d0f14;   /* slots, raised surfaces */
  --night-3:   #151820;   /* wells */
  --fog:       #8d929c;   /* secondary text */
  --fog-dim:   #5a5f69;   /* metadata */
  --bone:      #ece8df;   /* primary text */
  --ember:     #d4803f;   /* THE warm source. one accent, never a second. */
  --ember-lit: #f0a866;
  --line:      rgba(236,232,223,.10);
  --line-lit:  rgba(236,232,223,.24);

  /* type — one family, two cuts. display is cormorant, text is eb garamond. */
  --display: "Cormorant Garamond", "Cormorant", Georgia, "Times New Roman", serif;
  --text:    "EB Garamond", "Cormorant Garamond", Georgia, "Times New Roman", serif;

  /* motion — slow. long takes. cuts on impact only. */
  --ease: cubic-bezier(.16, 1, .3, 1);
  --slow: 1.3s;

  /* rhythm */
  --gut: clamp(1.25rem, 5vw, 5rem);
  --bay: clamp(5.5rem, 15vh, 12rem);

  color-scheme: dark;
}

/* ---------- 2. reset -------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--night);
  color: var(--bone);
  font-family: var(--text);
  font-weight: 400;
  font-size: clamp(1.02rem, .3vw + .95rem, 1.15rem);
  line-height: 1.6;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; height: auto; }
h1, h2, h3, p, figure, ul, ol, dl, dd { margin: 0; }
ul, ol { list-style: none; padding: 0; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; color: inherit; }
em { font-style: italic; }

::selection { background: var(--ember); color: var(--night); }
:focus-visible { outline: 1px solid var(--ember); outline-offset: 5px; }

/* ---------- 3. film grain --------------------------------- */
.grain {
  position: fixed; inset: -150%;
  z-index: 900; pointer-events: none;
  opacity: .045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: flicker 7s steps(6) infinite;
  will-change: transform;
}
@keyframes flicker {
  0%   { transform: translate3d(0,0,0); }
  20%  { transform: translate3d(-6%, 3%, 0); }
  40%  { transform: translate3d(4%, -5%, 0); }
  60%  { transform: translate3d(-3%, -2%, 0); }
  80%  { transform: translate3d(5%, 4%, 0); }
  100% { transform: translate3d(0,0,0); }
}

/* ---------- 4. shared primitives -------------------------- */
.shell { width: 100%; max-width: 1400px; margin-inline: auto; padding-inline: var(--gut); }
.shell--narrow { max-width: 1040px; }
.section { padding-block: var(--bay); position: relative; }
.section--tight { padding-block: clamp(4rem, 10vh, 7rem); }

.dot { color: var(--ember); }   /* the trailing period is the disambiguator */

/* the small italic that opens a section */
.eyebrow {
  font-family: var(--display); font-style: italic; font-weight: 400;
  font-size: clamp(1.1rem, 1.4vw, 1.35rem);
  color: var(--ember); letter-spacing: .02em;
  margin-bottom: clamp(.9rem, 1.6vw, 1.4rem);
}
.eyebrow--c { text-align: center; }

.h2 {
  font-family: var(--display); font-weight: 300;
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  line-height: .98; letter-spacing: -.01em;
  text-wrap: balance;
}
.h2--c { text-align: center; }

.sub {
  margin-top: clamp(1rem, 2vw, 1.5rem);
  color: var(--fog); max-width: 52ch;
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
}
.sub--c { text-align: center; margin-inline: auto; }

.caption {
  margin-top: 1.25rem; text-align: center;
  color: var(--fog-dim); font-size: .95rem; letter-spacing: .06em;
}

/* text link — drawn underline */
.tlink {
  position: relative; display: inline-block; color: var(--bone);
  padding-bottom: .12em;
}
.tlink::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px;
  background: var(--line-lit);
  transform: scaleX(0); transform-origin: right;
  transition: transform .7s var(--ease), background-color .7s var(--ease);
}
.tlink:hover::after, .tlink:focus-visible::after { transform: scaleX(1); transform-origin: left; background: var(--ember); }
.tlink:hover { color: var(--ember-lit); }

/* the one filled control. sharp corners. */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 11rem; padding: .95em 2.2em;
  border: 1px solid var(--ember);
  font-size: .98rem; letter-spacing: .14em;
  background: transparent; color: var(--bone); cursor: pointer;
  transition: color .6s var(--ease), background-color .6s var(--ease), box-shadow .6s var(--ease);
}
.btn:hover, .btn:focus-visible {
  color: var(--night); background: var(--ember);
  box-shadow: 0 0 60px -10px var(--ember);
}

/* ---------- 5. image slots -------------------------------- */
/* every photograph on the page is one of these until the real one lands.
   dark surface, one faint warm source placed by --bx/--by, a dashed inner frame,
   and the brief for the image in the corner. */
.slot {
  position: relative; overflow: hidden; isolation: isolate;
  background: var(--night-2);
}
.slot::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(55% 45% at var(--bx, 70%) var(--by, 80%), rgba(212,128,63,.20), transparent 70%),
    linear-gradient(180deg, #10131a 0%, #0b0d12 60%, #08090c 100%);
}
.slot::after {
  content: ""; position: absolute; inset: 14px; pointer-events: none;
  border: 1px dashed rgba(236,232,223,.14);
}
.slot__note {
  position: absolute; left: 0; bottom: 0; z-index: 1;
  padding: clamp(1.1rem, 2.4vw, 1.8rem) clamp(1.3rem, 2.6vw, 2rem);
  max-width: 38ch;
  font-size: .86rem; line-height: 1.55; color: var(--fog);
}
.slot__note b {
  display: block; font-weight: 500; color: var(--bone);
  letter-spacing: .08em; margin-bottom: .35rem;
}
.slot__note b::before { content: "\25D0\00a0"; color: var(--ember); }
.slot__note--min { font-size: .78rem; padding: .9rem 1.1rem; }
.slot__note--min b { display: inline; margin: 0 .3em 0 0; }

.slot--hero  { position: absolute; inset: 0; z-index: -2; }
.slot--hero::after, .slot--wide::after { display: none; }   /* full-bleed: no frame */
.slot--video { aspect-ratio: 16/9; }
.slot--cover { aspect-ratio: 1; }
.slot--sq    { aspect-ratio: 1; }
.slot--tall  { aspect-ratio: 4/5; }
.slot--wide  { position: absolute; inset: 0; z-index: -2; }

/* ---------- 6. nav ---------------------------------------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 800;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: clamp(1.1rem, 2.4vw, 1.8rem) var(--gut);
  border-bottom: 1px solid transparent;
  transition: background-color .8s var(--ease), border-color .8s var(--ease), padding .8s var(--ease);
}
.nav.is-stuck {
  background: rgba(8,9,12,.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--line);
  padding-block: clamp(.8rem, 1.6vw, 1.1rem);
}
.nav__mark {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(1.25rem, 1.8vw, 1.5rem); letter-spacing: .08em; white-space: nowrap;
}
.nav__links { display: flex; align-items: center; gap: clamp(1.2rem, 2.6vw, 2.6rem); }
.nav__links a {
  font-size: .95rem; letter-spacing: .1em; color: var(--fog);
  transition: color .5s var(--ease);
}
.nav__links a:hover { color: var(--bone); }
.nav__listen { color: var(--ember) !important; }
.nav__menu {
  display: none; background: none; border: 0; cursor: pointer;
  font-size: .95rem; letter-spacing: .12em; color: var(--bone); padding: .4rem 0;
}
@media (max-width: 860px) {
  .nav__links { display: none; }
  .nav__menu { display: inline-block; }
}

/* full-screen menu */
.menu {
  position: fixed; inset: 0; z-index: 790;
  display: grid; place-content: center; gap: 3rem;
  padding: var(--gut);
  background: rgba(8,9,12,.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.menu[hidden] { display: none; }
.menu__links { display: grid; gap: .3rem; text-align: center; }
.menu__links a {
  font-family: var(--display); font-weight: 300;
  font-size: clamp(2.4rem, 9vw, 4rem); line-height: 1.2;
  color: var(--bone); transition: color .5s var(--ease);
}
.menu__links a:hover { color: var(--ember-lit); }
.menu__listen { color: var(--ember) !important; }
.menu__foot { text-align: center; color: var(--fog-dim); font-size: .9rem; letter-spacing: .1em; }

/* ---------- 7. hero --------------------------------------- */
.hero {
  position: relative; min-height: 100svh;
  display: grid; overflow: hidden; isolation: isolate;
}
.hero__inner {
  position: relative; display: grid;
  grid-template-rows: 1fr auto;
  min-height: 100svh;
  padding-top: clamp(5rem, 12vh, 8rem);
}

/* the wordmark spans the full width of the page, main.js sizes it exactly.
   it sits over the photograph, the way a band's name sits over the band. */
.wordmark-box {
  align-self: center;
  padding-inline: var(--gut);
  overflow: hidden;
  line-height: 1;
}
.wordmark {
  display: inline-block; white-space: nowrap;
  font-family: var(--display); font-weight: 300;
  font-size: clamp(2.6rem, 13.4vw, 13rem);   /* fallback until js measures */
  line-height: 1; letter-spacing: .02em;
  margin-left: -.03em;
  opacity: 0; transform: translateY(14px);
  transition: opacity 1.8s var(--ease), transform 1.8s var(--ease);
}
.wordmark.is-fit { opacity: 1; transform: none; }

.hero__foot {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem;
  padding-bottom: clamp(2.5rem, 7vh, 5rem);
}
.hero__title {
  font-family: var(--display); font-style: italic; font-weight: 300;
  font-size: clamp(1.9rem, 3.6vw, 3.1rem); line-height: 1.05;
  margin-bottom: .55rem;
}
.hero__meta { color: var(--fog); letter-spacing: .1em; font-size: .95rem; }
.hero__meta i { color: var(--ember); font-style: normal; margin-inline: .55em; }
.hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 2rem; margin-top: 1.6rem; }

/* a headlight passing, once every so often */
.hero__sweep {
  position: absolute; inset: -20% -50%; z-index: -1; pointer-events: none;
  background: linear-gradient(100deg, transparent 42%, rgba(212,128,63,.12) 50%, transparent 58%);
  mix-blend-mode: screen; opacity: 0;
  animation: sweep 18s ease-in-out infinite;
}
@keyframes sweep {
  0%   { transform: translateX(-45%); opacity: 0; }
  12%  { opacity: 1; }
  55%  { opacity: 1; }
  70%  { transform: translateX(45%); opacity: 0; }
  100% { transform: translateX(45%); opacity: 0; }
}
.hero__scrim {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(8,9,12,.55) 0%, rgba(8,9,12,0) 28%, rgba(8,9,12,.35) 62%, var(--night) 100%),
    radial-gradient(120% 80% at 50% 45%, rgba(8,9,12,0) 40%, rgba(8,9,12,.5) 100%);
}
.slot__note--hero { position: static; flex: 0 1 34ch; padding: 0; text-align: right; }
.slot__note--hero b::before { content: ""; }
.slot__note--hero b::after { content: "\00a0\25D0"; color: var(--ember); }
@media (max-width: 860px) { .slot__note--hero { display: none; } }

/* ---------- 8. video -------------------------------------- */
.play {
  position: absolute; left: 50%; top: 50%; z-index: 1;
  width: clamp(4rem, 8vw, 6rem); height: clamp(4rem, 8vw, 6rem);
  margin: calc(clamp(4rem, 8vw, 6rem) / -2) 0 0 calc(clamp(4rem, 8vw, 6rem) / -2);
  border: 1px solid var(--line-lit); border-radius: 50%;
  transition: border-color .8s var(--ease), background-color .8s var(--ease);
}
.play::after {
  content: ""; position: absolute; left: 50%; top: 50%;
  border-style: solid; border-width: .55em 0 .55em .9em;
  border-color: transparent transparent transparent var(--bone);
  transform: translate(-40%, -50%);
}
.slot--video:hover .play { border-color: var(--ember); background: rgba(212,128,63,.08); }

/* ---------- 9. the album ---------------------------------- */
.album {
  display: grid; gap: clamp(2.5rem, 6vw, 6rem); align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) { .album { grid-template-columns: minmax(300px, .9fr) 1.1fr; } }
.slot--cover { box-shadow: 0 40px 120px -40px rgba(212,128,63,.25); }

.album__title {
  font-family: var(--display); font-weight: 300;
  font-size: clamp(3rem, 7.4vw, 6.8rem);
  line-height: .95; letter-spacing: -.015em;
  text-wrap: balance;
}
.album__meta {
  margin-top: clamp(1.2rem, 2vw, 1.7rem);
  color: var(--fog); letter-spacing: .1em; font-size: .95rem;
}
.album__meta i { color: var(--ember); font-style: normal; margin-inline: .6em; }
.album__note {
  margin-top: clamp(1.4rem, 2.4vw, 2rem);
  max-width: 44ch; color: var(--fog);
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
}

/* platform buttons — rectangular, iconed */
.dsp { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: clamp(2rem, 3.5vw, 2.8rem); }
.dsp a {
  display: inline-flex; align-items: center; gap: .65em;
  padding: .8em 1.3em;
  border: 1px solid var(--line-lit);
  font-size: .95rem; letter-spacing: .08em; color: var(--bone);
  transition: border-color .6s var(--ease), background-color .6s var(--ease), color .6s var(--ease);
}
.dsp a:hover { border-color: var(--ember); color: var(--ember-lit); background: rgba(212,128,63,.06); }
.dsp svg { width: 1.15em; height: 1.15em; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.dsp svg .fill, .social svg .fill { fill: currentColor; stroke: none; }
.dsp__all { color: var(--fog); }

/* tracklist — two columns, hairlines, numbers in the serif */
.tracks {
  margin-top: clamp(3.5rem, 7vw, 6rem);
  display: grid; column-gap: clamp(2rem, 5vw, 5rem);
  border-top: 1px solid var(--line);
}
@media (min-width: 760px) {
  .tracks { grid-template-columns: 1fr 1fr; grid-auto-flow: column; grid-template-rows: repeat(4, auto); }
}
.track {
  display: grid; align-items: baseline; gap: 1.2rem;
  grid-template-columns: 1.8rem 1fr auto;
  padding-block: clamp(.9rem, 1.6vw, 1.2rem);
  border-bottom: 1px solid var(--line);
  transition: border-color .6s var(--ease);
}
.track:hover { border-bottom-color: var(--line-lit); }
.track__no {
  font-family: var(--display); font-style: italic; font-size: 1.05rem;
  color: var(--fog-dim); transition: color .6s var(--ease);
}
.track:hover .track__no { color: var(--ember); }
.track__name {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(1.3rem, 2vw, 1.75rem); line-height: 1.15;
  transition: transform .7s var(--ease), color .7s var(--ease);
}
.track:hover .track__name { transform: translateX(8px); color: var(--ember-lit); }
.track__time { color: var(--fog-dim); font-size: .92rem; font-variant-numeric: tabular-nums; letter-spacing: .04em; }
.tracks__foot { margin-top: 1.2rem; text-align: right; color: var(--fog-dim); font-size: .92rem; letter-spacing: .1em; }

/* ---------- 10. statement --------------------------------- */
.statement {
  position: relative; isolation: isolate; overflow: hidden;
  min-height: clamp(24rem, 62vh, 40rem);
  display: grid; place-items: center;
  padding: clamp(5rem, 12vh, 9rem) var(--gut);
  border-block: 1px solid var(--line);
}
.statement::before {                    /* keep the line legible over any still */
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(70% 70% at 50% 50%, rgba(8,9,12,.55), rgba(8,9,12,.15) 100%);
}
.statement__line {
  font-family: var(--display); font-style: italic; font-weight: 300;
  font-size: clamp(2rem, 5.2vw, 4.6rem); line-height: 1.12;
  max-width: 22ch; text-align: center; text-wrap: balance;
}
.statement .slot__note { max-width: 30ch; }

/* ---------- 11. releases ---------------------------------- */
.discog {
  display: grid; gap: clamp(1.4rem, 3vw, 2.4rem) clamp(1rem, 2.4vw, 2rem);
  grid-template-columns: repeat(2, 1fr);
  margin-top: clamp(3rem, 6vw, 5rem);
}
@media (min-width: 900px) { .discog { grid-template-columns: repeat(4, 1fr); } }
.release { display: block; }
.release .slot { transition: transform 1.2s var(--ease); }
.release:hover .slot { transform: translateY(-4px); }
.release__title {
  display: block; margin-top: 1rem;
  font-family: var(--display); font-weight: 400;
  font-size: clamp(1.25rem, 1.8vw, 1.6rem); line-height: 1.15;
  transition: color .6s var(--ease);
}
.release:hover .release__title { color: var(--ember-lit); }
.release__meta { display: block; margin-top: .3rem; color: var(--fog-dim); font-size: .88rem; letter-spacing: .06em; }

/* ---------- 12. shows ------------------------------------- */
.shows { border-top: 1px solid var(--line); }
.dates { margin-top: clamp(2.5rem, 5vw, 4rem); border-top: 1px solid var(--line); }
.dates li {
  display: grid; grid-template-columns: 8rem 1fr auto; gap: 1.5rem; align-items: baseline;
  padding-block: 1.1rem; border-bottom: 1px solid var(--line);
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
}
.dates__empty { color: var(--fog); }
@media (max-width: 560px) { .dates li { grid-template-columns: 3rem 1fr auto; } }

/* ---------- 13. store ------------------------------------- */
.products {
  display: grid; gap: clamp(1.4rem, 3vw, 2.4rem) clamp(1rem, 2.4vw, 2rem);
  grid-template-columns: 1fr;
  margin-top: clamp(3rem, 6vw, 5rem);
}
@media (min-width: 640px) { .products { grid-template-columns: repeat(3, 1fr); } }
.product__name {
  display: block; margin-top: 1rem; text-align: center;
  font-family: var(--display); font-size: clamp(1.2rem, 1.7vw, 1.5rem); line-height: 1.15;
}
.product__price { display: block; margin-top: .3rem; text-align: center; color: var(--fog-dim); font-size: .92rem; }

/* ---------- 14. about ------------------------------------- */
.about {
  display: grid; gap: clamp(2.5rem, 6vw, 6rem); align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) { .about { grid-template-columns: minmax(280px, .8fr) 1.2fr; } }
.prose { display: grid; gap: 1.4rem; max-width: 58ch; color: var(--fog); font-size: clamp(1.1rem, 1.5vw, 1.3rem); }
.prose strong { color: var(--bone); font-weight: 500; }
.prose em { color: var(--bone); }
.facts {
  display: grid; gap: 1.6rem 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding-top: clamp(1.6rem, 3vw, 2.4rem); border-top: 1px solid var(--line);
}
.facts dt { color: var(--fog-dim); font-size: .88rem; letter-spacing: .1em; margin-bottom: .45rem; }
.facts dd { font-family: var(--display); font-size: 1.25rem; }

/* ---------- 15. the list ---------------------------------- */
.list { position: relative; overflow: hidden; border-top: 1px solid var(--line); }
.list::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(50% 55% at 50% 100%, rgba(212,128,63,.14), transparent 70%);
}
.form { max-width: 34rem; margin: clamp(2.5rem, 5vw, 4rem) auto 0; }
.field {
  display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 1rem;
  border: 1px solid var(--line-lit); padding: .2rem .2rem .2rem 1.3rem;
  transition: border-color .6s var(--ease);
}
.field:focus-within { border-color: var(--ember); }
.field input {
  width: 100%; background: none; border: 0; padding: .8rem 0;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem); letter-spacing: .02em;
}
.field input::placeholder { color: var(--fog-dim); font-style: italic; font-family: var(--display); }
.field input:focus { outline: none; }
.field button {
  background: none; border: 0; cursor: pointer;
  width: 3.4rem; height: 3.4rem; font-size: 1.4rem; color: var(--ember);
  transition: background-color .5s var(--ease), color .5s var(--ease);
}
.field button:hover { background: var(--ember); color: var(--night); }
.form__msg { min-height: 1.5em; margin-top: .9rem; text-align: center; color: var(--ember-lit); font-size: .95rem; }
.form__fine { text-align: center; color: var(--fog-dim); font-size: .9rem; letter-spacing: .06em; }

/* ---------- 16. footer ------------------------------------ */
.foot {
  border-top: 1px solid var(--line);
  padding-block: clamp(3.5rem, 8vw, 6rem) clamp(2rem, 4vw, 3rem);
  text-align: center;
}
.social { display: flex; justify-content: center; gap: clamp(1.4rem, 3vw, 2.4rem); }
.social a { display: block; color: var(--fog); transition: color .6s var(--ease), transform .6s var(--ease); }
.social a:hover { color: var(--ember-lit); transform: translateY(-2px); }
.social svg { width: 1.5rem; height: 1.5rem; fill: none; stroke: currentColor; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }
.foot__mark {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  font-family: var(--display); font-weight: 300;
  font-size: clamp(2.2rem, 5vw, 3.6rem); letter-spacing: .06em;
}
.foot__contact {
  display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem 2.2rem;
  margin-top: 1.6rem; color: var(--fog); font-size: .98rem; letter-spacing: .04em;
}
.foot__base {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: .8rem 1.5rem;
  margin-top: clamp(3rem, 6vw, 4.5rem); padding-top: 1.4rem;
  border-top: 1px solid var(--line);
  color: var(--fog-dim); font-size: .88rem; letter-spacing: .06em;
}
@media (max-width: 560px) { .foot__base { justify-content: center; text-align: center; } }

/* ---------- 17. scroll reveal ----------------------------- */
.reveal { opacity: 0; transform: translate3d(0, 22px, 0); }
.reveal.is-in {
  opacity: 1; transform: none;
  transition: opacity var(--slow) var(--ease), transform var(--slow) var(--ease);
}

/* visually hidden, still read aloud */
.vh { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; border: 0; clip-path: inset(50%); overflow: hidden; white-space: nowrap; }

/* skip link */
.skip { position: absolute; left: -9999px; top: 0; z-index: 999; padding: .9rem 1.2rem; background: var(--night-3); letter-spacing: .1em; }
.skip:focus { left: var(--gut); top: .75rem; }

/* ---------- 18. reduced motion ---------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important; animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal, .wordmark { opacity: 1; transform: none; }
  .grain, .hero__sweep { animation: none; }
}
