/* ==========================================================================
   TENDER WAX - styles.css
   Dark-mode-first, minimalist + playful. Bold type, acid accents.

   Performance notes:
   • Every animation/transition uses transform or opacity ONLY
     (GPU-composited - no layout, no paint).
   • will-change is applied narrowly to the few persistently-animated
     layers, never sprayed across the page.
   • Scroll effects are driven by a single rAF loop in app.js writing
     translate3d() - hardware accelerated on mobile.
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  /* color */
  --bg:        #0a0a0f;   /* near black */
  --bg-2:      #12121b;   /* raised surfaces */
  --bg-3:      #1a1a26;   /* cards */
  --line:      #26263a;   /* hairlines */
  --ink:       #f4f1ea;   /* warm off-white */
  --ink-dim:   #9a97a8;   /* secondary text */
  --purple:    #9b5cff;   /* lead accent - electric violet */
  --acid:      #d8ff3e;   /* second accent - acid lime */
  --hot:       #ff4fa3;   /* third accent - hot pink (small touches) */
  --acid-ink:  #10120a;   /* text on acid */
  --purple-ink:#14052e;   /* text on purple */

  /* type */
  --font-display: "Archivo Black", system-ui, sans-serif;
  --font-body:    "Space Grotesk", system-ui, sans-serif;

  /* rhythm */
  --pad: clamp(1.25rem, 4vw, 4rem);
  --radius: 14px;

  /* motion */
  --ease-out: cubic-bezier(.22, 1, .36, 1);
  --speed: .45s;
}

/* ---------- Reset-ish ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3 { margin: 0; line-height: 1.05; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  clip-path: inset(50%); overflow: hidden; white-space: nowrap;
}

/* Big display headings shared by sections */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  padding: .9em 1.8em;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--speed) var(--ease-out), box-shadow var(--speed) var(--ease-out);
  transform: translateZ(0); /* promote once; hover animates transform only */
}
.btn:hover  { transform: translateY(-3px) rotate(-1deg); }
.btn:active { transform: translateY(0) scale(.97); }
.btn--acid {
  background: var(--acid);
  color: var(--acid-ink);
  box-shadow: 0 0 0 0 rgba(216, 255, 62, 0);
}
.btn--acid:hover { box-shadow: 0 12px 34px -8px rgba(216, 255, 62, .45); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn--ghost:hover { border-color: var(--purple); color: var(--purple); }
.btn--purple {
  background: var(--purple);
  color: var(--purple-ink);
}
.btn--purple:hover { box-shadow: 0 12px 34px -8px rgba(155, 92, 255, .5); }
.btn--big { font-size: 1.2rem; padding: 1.1em 2.4em; }

/* ==========================================================================
   NAV
   ========================================================================== */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .9rem var(--pad);
  background: rgba(10, 10, 15, .72);                       /* fallback */
  background: color-mix(in srgb, var(--bg) 72%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav__logo {
  display: flex; align-items: center; gap: .6rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: .04em;
  text-decoration: none;
}
.nav__disc {
  width: 22px; height: 22px; border-radius: 50%;
  background:
    radial-gradient(circle at center, var(--purple) 0 26%, #000 27% 40%, #2a2a35 41% 100%);
  animation: spin 4s linear infinite;
  will-change: transform;
}
.nav__links { display: flex; gap: clamp(.9rem, 3vw, 2rem); }
.nav__links a {
  text-decoration: none;
  font-weight: 500;
  color: var(--ink-dim);
  transition: color .25s var(--ease-out);
}
.nav__links a:hover { color: var(--purple); }

/* ==========================================================================
   1. HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  /* subtle vignette + glow behind the record */
  background:
    radial-gradient(60% 50% at 50% 42%, rgba(155, 92, 255, .14), transparent 70%),
    radial-gradient(80% 60% at 50% 100%, rgba(216, 255, 62, .06), transparent 60%),
    var(--bg);
}

/* --- parallax layers (JS writes translate3d on the wrappers) --- */
.hero__scene { position: absolute; inset: 0; }
.hero__layer {
  position: absolute; inset: -8% 0;      /* bleed so parallax never shows edges */
  will-change: transform;                 /* the 3 persistently-moved layers   */
}
.scene { width: 100%; height: 100%; }

/* speakers (back layer) */
.spk-box   { fill: var(--bg-2); stroke: var(--line); stroke-width: 2.5; }
.spk-cone  { fill: var(--bg);  stroke: var(--line); stroke-width: 2.5; }
.spk-dust  { fill: var(--bg-3); stroke: var(--line); stroke-width: 2; }
.stage-line{ fill: var(--line); }

/* big record (mid layer) */
.bigdisc {
  position: absolute;
  left: 50%; top: 46%;
  width: clamp(300px, 44vw, 620px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
}
.bigdisc__svg {
  width: 100%; height: 100%;
  animation: spin 24s linear infinite;   /* slow 33⅓ spin */
  will-change: transform;
  transform: translateZ(0);
}
.vinyl-body   { fill: #101016; stroke: #23232f; stroke-width: 2; }
.vinyl-groove { fill: none; stroke: #1e1e29; stroke-width: 10; }
.vinyl-sheen  { stroke: rgba(244, 241, 234, .07); stroke-width: 26; stroke-linecap: round; }
.vinyl-label  { fill: var(--purple); }
.vinyl-hole   { fill: var(--bg); }
.vinyl-text {
  font-family: var(--font-display);
  font-size: 30px;
  fill: #1c0a36;
  letter-spacing: .06em;
}
.vinyl-text--sub { font-family: var(--font-body); font-size: 19px; font-weight: 700; }

/* floating minis (front layer) - gentle bob, transform-only */
.minidisc { animation: bob 7s ease-in-out infinite; transform-origin: center; }
.minidisc--2 { animation-duration: 9s;  animation-delay: -3s; }
.minidisc--3 { animation-duration: 11s; animation-delay: -5s; }
.mini-label--pink { fill: var(--hot); }
.mini-label--purple { fill: var(--purple); }
.mini-label--acid { fill: var(--acid); }
.sparkle { fill: var(--acid); opacity: .9; animation: twinkle 3.2s ease-in-out infinite; }
.sparkle--2 { fill: var(--hot); animation-delay: -1.1s; }
.sparkle--3 { fill: var(--purple); animation-delay: -2.2s; }

/* --- falling tagline --- */
.tagline {
  position: absolute;
  z-index: 3;
  top: 12%;
  width: 100%;
  margin: 0;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 5.4vw, 4rem);
  text-transform: lowercase;
  pointer-events: none;
}
.tagline__word {
  display: inline-block;
  margin: 0 .18em;
  will-change: transform, opacity;      /* scroll-driven fall (JS) */
  transform: translateZ(0);
}
.tagline__word--hot { color: var(--acid); -webkit-text-stroke: 0; }
/* the inner span floats via CSS so it composes with the JS fall transform */
.tagline__float { display: inline-block; animation: bob 5s ease-in-out infinite; }
.tagline__word:nth-child(2) .tagline__float { animation-delay: -1.2s; }
.tagline__word:nth-child(3) .tagline__float { animation-delay: -2.4s; }
.tagline__word:nth-child(4) .tagline__float { animation-delay: -3.1s; }
.tagline__word:nth-child(5) .tagline__float { animation-delay: -4.3s; }

/* --- hero copy --- */
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 var(--pad);
  margin-top: 12vh;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 15vw, 12rem);
  letter-spacing: -0.03em;
  line-height: .9;
  text-transform: uppercase;
}
.hero__title-line { display: block; }
.hero__title-line--outline {
  color: transparent;
  -webkit-text-stroke: 2.5px var(--ink);
}
.hero__sub {
  color: var(--ink-dim);
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  margin: 1.2rem auto 2rem;
  max-width: 34ch;
}
.hero__scrollhint {
  position: absolute;
  bottom: 1.4rem; left: 50%;
  transform: translateX(-50%);
  font-size: .8rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--ink-dim);
  animation: bob 2.4s ease-in-out infinite;
}

/* ==========================================================================
   MARQUEE
   ========================================================================== */
.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--bg-2);
  padding: .8rem 0;
}
.marquee__track {
  display: flex;
  width: max-content;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.4vw, 1.5rem);
  text-transform: uppercase;
  color: var(--ink-dim);
  animation: marquee 28s linear infinite;
  will-change: transform;
}
.marquee:hover .marquee__track { animation-play-state: paused; }

/* ==========================================================================
   2. ABOUT
   ========================================================================== */
.about { padding: clamp(4rem, 10vw, 8rem) var(--pad); }
.about__grid {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) 2fr;
  gap: clamp(2rem, 6vw, 6rem);
  max-width: 1200px;
  margin: 0 auto;
}
.about__intro { align-self: start; position: sticky; top: 6rem; }
.about__intro .section-title { color: var(--purple); }
.about__location {
  margin-top: 2rem;
  display: flex; gap: .8rem;
  color: var(--ink-dim);
  max-width: 30ch;
}
.about__location a { color: var(--purple); text-decoration-color: color-mix(in srgb, var(--purple) 40%, transparent); }
.about__location strong { color: var(--ink); }
.about__pin { color: var(--hot); font-size: 1.4rem; line-height: 1.2; }

.about__values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}
.value {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
  transition: transform var(--speed) var(--ease-out), border-color var(--speed) var(--ease-out);
  transform: translateZ(0);
}
.value:hover { transform: translateY(-6px) rotate(-.5deg); border-color: var(--purple); }
.value__num {
  font-family: var(--font-display);
  color: var(--hot);
  font-size: .9rem;
}
.value h3 { margin: .5rem 0 .6rem; font-family: var(--font-display); font-size: 1.15rem; }
.value p  { margin: 0; color: var(--ink-dim); font-size: .95rem; }

.about__stats {
  max-width: 1200px;
  margin: clamp(3rem, 7vw, 5rem) auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  text-align: center;
}
.stat {
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1rem;
}
.stat__n, .stat__plus {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  color: var(--purple);
}
.stat__label { display: block; color: var(--ink-dim); margin-top: .3rem; font-size: .9rem; }

/* ==========================================================================
   3. RECORDS - interactive catalog
   ========================================================================== */
.records {
  padding: clamp(4rem, 10vw, 8rem) var(--pad);
  background: var(--bg-2);
  border-block: 1px solid var(--line);
}
.records__head {
  max-width: 1300px;
  margin: 0 auto 2.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 1.5rem 4rem;
}
.records__head .section-title { color: var(--purple); }
.records__blurb { color: var(--ink-dim); max-width: 42ch; margin: 0 0 .4rem; }

.records__controls {
  max-width: 1300px;
  margin: 0 auto 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  align-items: center;
}
.records__search {
  flex: 1 1 220px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: .7em 1.2em;
  outline: none;
  transition: border-color .25s var(--ease-out);
}
.records__search:focus { border-color: var(--purple); }
.records__chips { display: flex; flex-wrap: wrap; gap: .45rem; }
.chip {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink-dim);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: .85rem;
  padding: .38em 1em;
  cursor: pointer;
  transition: color .2s, border-color .2s, background .2s, transform .2s var(--ease-out);
}
.chip:hover { transform: translateY(-2px); color: var(--ink); }
.chip.is-on {
  background: var(--purple);
  border-color: var(--purple);
  color: #fff;
  font-weight: 700;
}
.records__sort {
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--ink);
  border-radius: 999px;
  font-family: var(--font-body);
  padding: .55em 1em;
}
.records__count {
  max-width: 1300px;
  margin: 0 auto 1.4rem;
  color: var(--ink-dim);
  font-size: .85rem;
}

/* --- the grid --- */
.records__grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(158px, 1fr));
  gap: 1.1rem;
}

/* --- card: sleeve + vinyl that slides out on hover --- */
.card {
  position: relative;
  min-width: 0;
  content-visibility: auto;               /* skip offscreen render work */
  contain-intrinsic-size: 240px;
}
.card:hover { z-index: 2; }               /* sliding disc rides above neighbours */
.card__link { text-decoration: none; display: block; }
.card__art {
  position: relative;
  aspect-ratio: 1;
  border-radius: 8px;
  /* the disc peeks past the sleeve edge, so no overflow clip here;
     the clip lives on the sleeve itself */
}
.card__disc {
  /* vinyl record behind the sleeve - pure CSS, GPU-friendly */
  position: absolute;
  inset: 6% 6% 6% 6%;
  border-radius: 50%;
  background:
    radial-gradient(circle at center,
      var(--purple) 0 17%, #0c0c11 18% 30%,
      #16161f 31% 33%, #0c0c11 34% 44%,
      #16161f 45% 47%, #0c0c11 48% 58%,
      #16161f 59% 61%, #0c0c11 62% 100%);
  transform: translate3d(0, 0, 0) rotate(0deg);
  transition: transform .5s var(--ease-out);
  z-index: 0;
}
.card__sleeve {
  position: relative;
  z-index: 1;
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-3);
  border: 1px solid var(--line);
  transform: translateZ(0);
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out);
}
.card:hover .card__sleeve {
  transform: translate3d(-10%, 0, 0) rotate(-2.5deg);
  box-shadow: 0 18px 40px -14px rgba(0, 0, 0, .8);
}
.card:hover .card__disc {
  transform: translate3d(36%, 0, 0) rotate(140deg);
}
.card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .6s ease;
}
.card__img.is-loaded { opacity: 1; }

/* generated sleeve (no cover art found / not yet fetched) */
.card__gen {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 2.2rem;
  text-transform: uppercase;
  color: var(--ink);
}
.card__gen::before {
  /* concentric “label rings” backdrop, colored per-record via --gen */
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 50% 50%,
      var(--gen) 0 14%, transparent 15% 30%,
      var(--gen) 31% 33%, transparent 34% 52%,
      var(--gen) 53% 55%, transparent 56%);
  opacity: .5;
}
.card__gen span { position: relative; }

/* meta */
.card__meta { padding: .65rem .15rem 0; }
.card__artist {
  font-weight: 700;
  font-size: .85rem;
  color: var(--ink);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.card__title {
  color: var(--ink-dim);
  font-size: .8rem;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.card__row {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: .35rem;
}
.card__price {
  font-family: var(--font-display);
  font-size: .8rem;
  color: var(--acid);
}
.card__year { color: var(--ink-dim); font-size: .72rem; }
.card__tags { margin-top: .3rem; display: flex; flex-wrap: wrap; gap: .25rem; }
.tag {
  font-size: .62rem;
  color: var(--ink-dim);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .08em .6em;
  white-space: nowrap;
}

.records__more { text-align: center; margin-top: 2.5rem; }
.records__more .btn[hidden] { display: none; }

/* ==========================================================================
   4. BOOKING
   ========================================================================== */
.book {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 12vw, 9rem) var(--pad);
  text-align: center;
  background:
    radial-gradient(50% 60% at 50% 0%, rgba(155, 92, 255, .10), transparent 70%),
    var(--bg);
}
.book__eyebrow {
  color: var(--hot);
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  font-size: .8rem;
}
.book__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 7rem);
  text-transform: uppercase;
  line-height: .92;
  margin: 1rem 0 1.4rem;
}
.book__copy { color: var(--ink-dim); max-width: 44ch; margin: 0 auto 2.2rem; }
.book__fine { color: var(--ink-dim); font-size: .8rem; margin-top: 1.4rem; }
.book__disc {
  /* decorative 7" rolling along the bottom edge */
  position: absolute;
  bottom: -70px; right: 6%;
  width: 180px; height: 180px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center,
      var(--acid) 0 18%, #0c0c11 19% 38%,
      #17171f 39% 41%, #0c0c11 42% 100%);
  animation: spin 14s linear infinite;
  opacity: .8;
  will-change: transform;
}

/* ==========================================================================
   5. FOOTER
   ========================================================================== */
.footer {
  border-top: 1px solid var(--line);
  background: var(--bg-2);
  padding: clamp(3rem, 7vw, 5rem) var(--pad) 1.6rem;
}
.footer__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr;
  gap: 2.5rem;
}
.footer__logo { font-family: var(--font-display); font-size: 1.6rem; margin: 0; }
.footer__tag  { color: var(--hot); margin: .4rem 0 0; font-weight: 500; }
.footer h3 {
  font-size: .8rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 1rem;
}
.footer__links a {
  display: flex; align-items: center; gap: .6rem;
  text-decoration: none;
  color: var(--ink);
  padding: .3rem 0;
  transition: color .25s var(--ease-out), transform .25s var(--ease-out);
}
.footer__links a:hover { color: var(--purple); transform: translateX(4px); }
.icon { width: 20px; height: 20px; }

.footer__news p { color: var(--ink-dim); margin: 0 0 .9rem; font-size: .92rem; }
.news { display: flex; gap: .5rem; }
.news__input {
  flex: 1;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-family: var(--font-body);
  padding: .65em 1.1em;
  outline: none;
  transition: border-color .25s;
  min-width: 0;
}
.news__input:focus { border-color: var(--purple); }
.news__input.is-error { border-color: var(--hot); }
.news__btn {
  background: var(--purple);
  color: #fff;
  border: 0;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  padding: .65em 1.5em;
  cursor: pointer;
  transition: transform .3s var(--ease-out);
}
.news__btn:hover { transform: rotate(-2deg) scale(1.05); }
.news__msg { min-height: 1.4em; font-size: .85rem; color: var(--acid); margin: .5rem 0 0; }
.news__msg.is-error { color: var(--hot); }

.footer__base {
  max-width: 1200px;
  margin: 3rem auto 0;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--ink-dim);
  font-size: .8rem;
}
.footer__base a { color: var(--ink-dim); }
.footer__wink { font-family: var(--font-display); color: var(--line); }

/* ==========================================================================
   Scroll-reveal (opacity + transform only; toggled by IntersectionObserver)
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translate3d(0, 26px, 0);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.reveal.is-in { opacity: 1; transform: translate3d(0, 0, 0); }

/* ==========================================================================
   Keyframes - transform/opacity only
   ========================================================================== */
@keyframes spin    { to { transform: rotate(360deg); } }
@keyframes bob     { 0%, 100% { transform: translate3d(0, 0, 0); } 50% { transform: translate3d(0, -14px, 0); } }
@keyframes twinkle { 0%, 100% { opacity: .15; transform: scale(.7); } 50% { opacity: 1; transform: scale(1.15); } }
@keyframes marquee { to { transform: translate3d(-50%, 0, 0); } }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 900px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__intro { position: static; }
  .about__intro .section-title br { display: none; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 640px) {
  .nav { padding: .8rem 1rem; }
  .nav__logo { font-size: .85rem; gap: .45rem; }
  .nav__disc { width: 17px; height: 17px; }
  .nav__links { gap: .7rem; font-size: .82rem; }
  .tagline { top: 16%; }
  .about__values { grid-template-columns: 1fr; }
  .about__stats { grid-template-columns: 1fr; }
  .records__grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: .8rem; }
  .records__head .section-title br { display: none; }
  .footer__base { flex-direction: column; }
  .book__disc { width: 110px; height: 110px; bottom: -44px; }
}

/* ==========================================================================
   Reduced motion - kill every animation & scroll effect
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

/* Mobile fix: keep the big section titles stacked. Hiding the <br>s fused the words together because the markup has no spaces around them. */
@media (max-width: 640px) { .about__intro .section-title br, .records__head .section-title br { display: inline; } }
