:root {
  --black: #050505;
  --black-2: #090909;
  --panel: #0d0d0d;
  --panel-2: #121212;
  --text: #f1f1ee;
  --muted: #969694;
  --muted-2: #656563;
  --line: rgba(255,255,255,.12);
  --red: #b62525;
  --red-bright: #d33434;
  --max: 1536px;
  --page: clamp(22px, 4.2vw, 72px);
  --header: 80px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--black); }
body {
  margin: 0;
  background: var(--black);
  color: var(--text);
  font-family: Inter, Arial, sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input { font: inherit; }
::selection { background: var(--red); color: #fff; }

.grain {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  opacity: .08;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.72'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header);
  z-index: 100;
  display: grid;
  grid-template-columns: 260px 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 0 var(--page);
  background: rgba(3,3,3,.94);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(18px);
}
.brand { width: 230px; height: 70px; display: flex; align-items: center; }
.brand img { width: 100%; height: 100%; object-fit: contain; object-position: left center; }
.site-nav { display: flex; align-items: center; justify-content: center; gap: clamp(18px, 2vw, 38px); }
.site-nav a, .header-actions a {
  position: relative;
  font-family: Oswald, Arial, sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #d6d6d2;
  transition: color .2s ease;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -11px;
  height: 1px;
  background: var(--red-bright);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.site-nav a:hover, .site-nav a.active { color: #fff; }
.site-nav a:hover::after, .site-nav a.active::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 14px; }
.header-actions > a:not(.members-link) {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 9px;
  letter-spacing: .04em;
}
.header-actions > a:hover { color: #fff; border-color: rgba(255,255,255,.4); }
.members-link { margin-left: 4px; padding-left: 16px; border-left: 1px solid var(--line); }
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 760px;
  height: min(82vh, 920px);
  margin-top: var(--header);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #080808;
}
.hero-photo {
  position: absolute;
  inset: 0;
  background-image: url('assets/group-photo.webp');
  background-repeat: no-repeat;
  background-position: 72% 24%;
  background-size: cover;
  filter: saturate(.65) contrast(1.1) brightness(.72);
  transform: scale(1.015);
}
.hero-vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.98) 0%, rgba(0,0,0,.91) 22%, rgba(0,0,0,.52) 48%, rgba(0,0,0,.08) 74%, rgba(0,0,0,.28) 100%),
    linear-gradient(180deg, rgba(0,0,0,.14) 0%, rgba(0,0,0,.02) 55%, rgba(0,0,0,.88) 100%);
}
.hero-copy {
  position: relative;
  z-index: 2;
  width: min(650px, 44vw);
  margin-left: var(--page);
  padding-bottom: 12px;
}
.kicker {
  margin: 0 0 14px;
  font-family: Oswald, Arial, sans-serif;
  font-size: 13px;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--red-bright);
}
.hero h1 {
  margin: 0;
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: clamp(92px, 11vw, 190px);
  line-height: .8;
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-shadow: 0 12px 60px #000;
}
.release-status {
  margin: 30px 0 0;
  font-family: Oswald, Arial, sans-serif;
  font-size: clamp(14px, 1.4vw, 20px);
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #dededb;
}
.hero-buttons { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.button {
  min-height: 48px;
  padding: 0 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  border: 1px solid var(--line);
  font-family: Oswald, Arial, sans-serif;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-red { background: linear-gradient(180deg, #c52f2f, #8f1717); border-color: #bd2b2b; color: #fff; }
.button-red:hover { background: linear-gradient(180deg, #da3838, #a31d1d); }
.button-outline { background: rgba(0,0,0,.38); border-color: rgba(255,255,255,.34); }
.button-outline:hover { border-color: #fff; background: rgba(255,255,255,.06); }
.platform-row { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 30px; }
.platform-row a {
  font-size: 12px;
  font-weight: 500;
  color: #efefeb;
  opacity: .88;
}
.platform-row a:hover { opacity: 1; }
.scroll-mark {
  position: absolute;
  z-index: 3;
  right: var(--page);
  bottom: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: Oswald, sans-serif;
  font-size: 9px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: #8b8b88;
}
.scroll-mark i { display: block; width: 60px; height: 1px; background: linear-gradient(90deg, var(--red), transparent); }

.release-dashboard {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr .82fr .9fr;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #080808;
}
.release-dashboard > article { min-width: 0; padding: 28px 28px 30px; border-right: 1px solid var(--line); }
.release-dashboard > article:last-child { border-right: 0; }
.panel-heading {
  min-height: 34px;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  font-family: Oswald, sans-serif;
  font-size: 13px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #d8d8d4;
}
.panel-index { color: #41413f; }
.release-feature { display: grid; grid-template-columns: minmax(130px, .9fr) minmax(150px, 1.1fr); gap: 22px; }
.cover-frame { display: block; overflow: hidden; background: #111; }
.cover-frame img { width: 100%; aspect-ratio: 1; object-fit: cover; transition: transform .45s ease; }
.cover-frame:hover img { transform: scale(1.025); }
.release-details { min-width: 0; }
.release-details .kicker { font-size: 9px; letter-spacing: .22em; margin-bottom: 7px; }
.release-details h2 {
  margin: 0;
  font-family: Oswald, sans-serif;
  font-size: clamp(28px, 2.4vw, 42px);
  font-weight: 300;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.release-details time {
  display: block;
  margin-top: 7px;
  font-family: Oswald, sans-serif;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red-bright);
}
.red-rule { width: 42px; height: 2px; background: var(--red); margin: 22px 0; }
.release-details p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.8; }
.mini-platforms { display: flex; flex-wrap: wrap; gap: 10px 15px; margin-top: 18px; }
.mini-platforms a { font-size: 10px; font-weight: 500; color: #e6e6e2; }
.release-list { border-top: 1px solid var(--line); }
.release-row {
  min-height: 66px;
  display: grid;
  grid-template-columns: 42px 1fr 22px;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  transition: background .2s ease, padding .2s ease;
}
.release-row:hover { padding-left: 8px; background: rgba(255,255,255,.025); }
.release-row img { width: 42px; height: 42px; object-fit: cover; }
.release-row span { min-width: 0; }
.release-row strong {
  display: block;
  font-family: Oswald, sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: .03em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.release-row small { display: block; margin-top: 3px; font-size: 9px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted-2); }
.release-row b { font-weight: 300; color: #626260; }
.release-number { font-family: Oswald, sans-serif; color: #555; font-size: 10px; letter-spacing: .1em; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
  font-family: Oswald, sans-serif;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red-bright);
}
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }
.no-shows { min-height: 290px; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.cross-mark { color: var(--red); font-size: 24px; }
.no-shows h3 { margin: 16px 0 8px; font-family: Oswald, sans-serif; font-size: 29px; font-weight: 300; text-transform: uppercase; }
.no-shows p { margin: 0 0 24px; color: var(--muted); font-size: 12px; line-height: 1.7; }
.no-shows .button { width: 100%; }
.about-copy .lead { color: #d6d6d2; }
.about-copy p { color: var(--muted); font-size: 12px; line-height: 1.8; }
.about-copy blockquote {
  margin: 24px 0;
  padding-left: 15px;
  border-left: 2px solid var(--red);
  color: #d6d6d2;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 15px;
  line-height: 1.55;
}

.section-block {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 125px var(--page);
  border-left: 1px solid rgba(255,255,255,.06);
  border-right: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.section-label {
  margin-bottom: 45px;
  display: flex;
  gap: 14px;
  align-items: center;
  font-family: Oswald, sans-serif;
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: #777774;
}
.section-label span { color: var(--red-bright); }
.section-title-row { display: grid; grid-template-columns: 1fr .65fr; gap: 80px; align-items: end; margin-bottom: 48px; }
.section-title-row h2,
.video-copy h2,
.photo-head h2,
.story-title h2,
.legacy-copy h2,
.contact-card h2 {
  margin: 0;
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: clamp(62px, 8vw, 132px);
  line-height: .82;
  letter-spacing: .015em;
  font-weight: 400;
  text-transform: uppercase;
}
.section-title-row > p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.8; max-width: 450px; }
.spotify-frame { border: 1px solid var(--line); padding: 12px; background: #0a0a0a; }

.video-section { background: #080808; }
.video-card { display: grid; grid-template-columns: 1.3fr .7fr; min-height: 560px; border: 1px solid var(--line); }
.video-art { position: relative; overflow: hidden; min-height: 500px; }
.video-art img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: grayscale(.25) brightness(.72); transition: transform .6s ease; }
.video-card:hover .video-art img { transform: scale(1.025); }
.video-shade { position: absolute; inset: 0; background: linear-gradient(90deg, transparent 40%, rgba(0,0,0,.38)); }
.play-disc {
  position: absolute;
  left: 50%; top: 50%;
  width: 86px; height: 86px;
  display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,.65);
  border-radius: 50%;
  background: rgba(0,0,0,.38);
  transform: translate(-50%,-50%);
  font-size: 24px;
}
.video-copy { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding: clamp(34px, 5vw, 78px); background: #0c0c0c; }
.video-copy h2 { font-size: clamp(66px, 7vw, 112px); }
.video-copy p:not(.kicker) { margin: 26px 0 30px; color: var(--muted); line-height: 1.8; }

.photo-section { background: #060606; }
.photo-head { margin-bottom: 50px; }
.band-photo { margin: 0; border: 1px solid var(--line); background: #0b0b0b; }
.band-photo img { width: 100%; max-height: 880px; object-fit: cover; object-position: center top; filter: saturate(.7) contrast(1.04); }
.band-photo figcaption { display: flex; justify-content: space-between; gap: 20px; padding: 16px 18px; font-family: Oswald, sans-serif; font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: #777; }
.member-strip { display: grid; grid-template-columns: repeat(4,1fr); border-left: 1px solid var(--line); border-top: 1px solid var(--line); margin-top: 24px; }
.member-strip div { padding: 24px 20px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.member-strip small { display: block; margin-bottom: 9px; font-family: Oswald, sans-serif; font-size: 9px; letter-spacing: .18em; text-transform: uppercase; color: var(--red-bright); }
.member-strip strong { font-family: Oswald, sans-serif; font-size: 22px; font-weight: 300; text-transform: uppercase; }

.story-section { background: linear-gradient(140deg, #090909, #050505 65%); }
.story-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 10vw; }
.story-title { position: sticky; top: 120px; align-self: start; }
.story-text { max-width: 760px; }
.story-text p { color: var(--muted); font-size: clamp(16px, 1.4vw, 20px); line-height: 1.9; }
.story-text .story-lead { color: #e5e5e1; font-family: Georgia, serif; font-size: clamp(25px, 2.8vw, 42px); line-height: 1.45; }
.story-stats { display: grid; grid-template-columns: repeat(3,1fr); margin-top: 55px; border-left: 1px solid var(--line); border-top: 1px solid var(--line); }
.story-stats div { padding: 25px 20px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.story-stats strong { display: block; color: var(--red-bright); font-family: 'Bebas Neue', sans-serif; font-size: 48px; font-weight: 400; }
.story-stats span { font-family: Oswald, sans-serif; font-size: 9px; letter-spacing: .18em; text-transform: uppercase; color: #777; }

.legacy-section { padding-top: 70px; padding-bottom: 70px; }
.legacy-card { display: grid; grid-template-columns: 1.1fr .9fr; gap: 8vw; padding: clamp(34px, 6vw, 86px); border: 1px solid var(--line); background: radial-gradient(circle at 15% 20%, rgba(182,37,37,.09), transparent 25%), #0b0b0b; }
.legacy-copy p:not(.kicker) { max-width: 600px; color: var(--muted); line-height: 1.8; }
.legacy-tracks { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.legacy-tracks li { min-height: 58px; display: grid; grid-template-columns: 45px 1fr; align-items: center; border-bottom: 1px solid var(--line); font-family: Oswald, sans-serif; font-size: 15px; font-weight: 300; letter-spacing: .03em; text-transform: uppercase; }
.legacy-tracks span { color: var(--red-bright); font-size: 9px; letter-spacing: .15em; }

.contact-section { padding-top: 90px; padding-bottom: 90px; }
.contact-card { min-height: 520px; display: grid; grid-template-columns: 1fr 1fr; gap: 9vw; align-items: end; padding: clamp(34px, 6vw, 86px); border: 1px solid var(--line); background: radial-gradient(circle at 88% 12%, rgba(182,37,37,.12), transparent 23%), #090909; }
.contact-card > div:first-child > p:not(.kicker) { color: var(--muted); }
.contact-links { display: grid; gap: 35px; }
.mail-link { padding-bottom: 22px; display: flex; justify-content: space-between; gap: 20px; border-bottom: 1px solid var(--line); font-family: Oswald, sans-serif; font-size: clamp(22px, 2.6vw, 38px); font-weight: 300; word-break: break-word; }
.mail-link span { color: var(--red-bright); }
.social-link-grid { display: flex; flex-wrap: wrap; gap: 14px 26px; }
.social-link-grid a { font-family: Oswald, sans-serif; font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: #8a8a87; }
.social-link-grid a:hover { color: #fff; }

.site-footer {
  max-width: var(--max);
  min-height: 150px;
  margin: 0 auto;
  padding: 28px var(--page);
  display: grid;
  grid-template-columns: 220px 1fr auto;
  gap: 30px;
  align-items: center;
  border-left: 1px solid rgba(255,255,255,.06);
  border-right: 1px solid rgba(255,255,255,.06);
  color: #656562;
  background: #040404;
}
.site-footer img { width: 190px; height: 90px; object-fit: contain; object-position: left center; }
.site-footer p { margin: 0; font-family: Oswald, sans-serif; font-size: 9px; letter-spacing: .14em; text-transform: uppercase; }
.footer-links { display: flex; flex-wrap: wrap; gap: 16px 26px; justify-content: flex-end; }
.footer-links a { font-family: Oswald, sans-serif; font-size: 9px; letter-spacing: .16em; text-transform: uppercase; }
.footer-links a:hover { color: #fff; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1320px) {
  .site-header { grid-template-columns: 190px 1fr auto; }
  .brand { width: 185px; }
  .site-nav { gap: 18px; }
  .site-nav a { font-size: 11px; }
  .header-actions > a:not(.members-link) { display: none; }
  .release-dashboard { grid-template-columns: 1.25fr 1fr 1fr; }
  .about-panel { grid-column: 1 / -1; border-top: 1px solid var(--line); }
  .release-dashboard > .show-panel { border-right: 0; }
  .about-panel .about-copy { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
  .about-panel .text-link { grid-column: 1 / -1; }
}

@media (max-width: 1020px) {
  :root { --header: 72px; }
  .site-header { grid-template-columns: 1fr auto; padding-right: 18px; }
  .brand { width: 185px; height: 64px; }
  .header-actions { display: none; }
  .menu-toggle {
    width: 44px; height: 44px;
    display: grid; align-content: center; gap: 7px;
    padding: 0 11px;
    border: 1px solid var(--line);
    background: transparent; color: #fff;
    cursor: pointer;
  }
  .menu-toggle span { display: block; height: 1px; background: currentColor; transition: transform .25s ease; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .site-nav {
    position: fixed;
    inset: var(--header) 0 0;
    z-index: 99;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 22px;
    background: rgba(3,3,3,.98);
    transform: translateX(100%);
    transition: transform .3s ease;
  }
  .site-nav.open { transform: none; }
  .site-nav a { font-size: 18px; }
  .site-nav a::after { bottom: -6px; }
  .hero { min-height: 760px; height: calc(100svh - var(--header)); }
  .hero-photo { background-position: 63% 25%; }
  .hero-vignette { background: linear-gradient(90deg, rgba(0,0,0,.96), rgba(0,0,0,.76) 40%, rgba(0,0,0,.2) 85%), linear-gradient(180deg, transparent 48%, rgba(0,0,0,.85)); }
  .hero-copy { width: min(590px, 70vw); }
  .release-dashboard { grid-template-columns: 1fr 1fr; }
  .release-dashboard > article { border-bottom: 1px solid var(--line); }
  .release-dashboard > .other-releases { border-right: 0; }
  .release-dashboard > .show-panel { border-right: 1px solid var(--line); border-bottom: 0; }
  .release-dashboard > .about-panel { grid-column: auto; border-top: 0; border-bottom: 0; }
  .about-panel .about-copy { display: block; }
  .about-panel .text-link { grid-column: auto; }
  .section-title-row, .video-card, .story-grid, .legacy-card, .contact-card { grid-template-columns: 1fr; }
  .section-title-row { gap: 30px; }
  .video-art { min-height: 600px; }
  .story-title { position: static; }
  .member-strip { grid-template-columns: 1fr 1fr; }
  .site-footer { grid-template-columns: 180px 1fr; }
  .footer-links { grid-column: 1 / -1; justify-content: flex-start; }
}

@media (max-width: 700px) {
  :root { --page: 18px; }
  .site-header { padding-left: 14px; }
  .brand { width: 165px; }
  .hero { min-height: 780px; align-items: flex-end; padding-bottom: 70px; }
  .hero-photo { background-size: auto 76%; background-position: 58% 0%; }
  .hero-vignette { background: linear-gradient(180deg, rgba(0,0,0,.08) 0%, rgba(0,0,0,.18) 40%, rgba(0,0,0,.92) 68%, #050505 100%), linear-gradient(90deg, rgba(0,0,0,.38), transparent 80%); }
  .hero-copy { width: auto; margin: 0 var(--page); }
  .hero h1 { font-size: clamp(80px, 26vw, 122px); }
  .release-status { margin-top: 20px; }
  .hero-buttons .button { width: 100%; }
  .platform-row { gap: 14px 18px; }
  .scroll-mark { display: none; }
  .release-dashboard { grid-template-columns: 1fr; border-left: 0; border-right: 0; }
  .release-dashboard > article { border-right: 0 !important; border-bottom: 1px solid var(--line) !important; padding: 26px 18px 30px; }
  .release-feature { grid-template-columns: .85fr 1.15fr; gap: 16px; }
  .release-details h2 { font-size: 30px; }
  .section-block { padding: 86px var(--page); border-left: 0; border-right: 0; }
  .section-label { margin-bottom: 32px; }
  .section-title-row h2, .video-copy h2, .photo-head h2, .story-title h2, .legacy-copy h2, .contact-card h2 { font-size: clamp(60px, 19vw, 92px); }
  .video-card { min-height: 0; }
  .video-art { min-height: 420px; }
  .video-copy { padding: 34px 22px; }
  .band-photo img { min-height: 520px; object-fit: cover; object-position: 48% top; }
  .band-photo figcaption { flex-direction: column; gap: 4px; }
  .member-strip { grid-template-columns: 1fr; }
  .story-stats { grid-template-columns: 1fr; }
  .legacy-card, .contact-card { padding: 34px 20px; }
  .contact-card { min-height: 650px; }
  .site-footer { grid-template-columns: 1fr; padding-top: 40px; }
  .site-footer img { width: 180px; }
  .footer-links { grid-column: auto; }
}

@media (max-width: 430px) {
  .release-feature { grid-template-columns: 1fr; }
  .cover-frame { max-width: 240px; }
  .hero h1 { letter-spacing: .08em; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
