/* ===== Tokens ===== */
:root {
  /* Brand accents */
  --c-gold: #c9a24a;
  --c-ochre: #d8a24a;
  --c-terracotta: #c07648;
  --c-clay: #b98a5a;
  --c-fern: #8fa96f;      /* lightened for legibility on dark */
  --c-moss: #a6b184;

  /* Bright canvas — warm greige, deliberately not pure white */
  --c-bright: #d8cfb9;
  --c-bright-2: #cfc5ac;

  /* Dark surfaces (header + floating page) */
  --c-header: #0f1214;
  --c-page: #191d1f;
  --c-page-2: #14181a;

  /* Ink (light text on the dark surfaces) */
  --c-ink: #ece4d3;
  --c-ink-soft: rgba(236, 228, 211, 0.72);
  --c-ink-faint: rgba(236, 228, 211, 0.5);
  --c-line: rgba(236, 228, 211, 0.12);

  /* Ink on the bright canvas */
  --c-bark: #2a2318;
  --c-bark-soft: rgba(42, 35, 24, 0.62);

  --grad-warm: linear-gradient(120deg, #bf6a40, #cf8c3f 50%, #d8a24a);
  --grad-gold: linear-gradient(120deg, #d8a24a, #c07648);

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Outfit", system-ui, -apple-system, sans-serif;
  --font-gothic: "Cinzel Decorative", var(--font-display);

  --radius: 20px;
  --radius-sm: 12px;

  /* Shadows fall onto the bright canvas — warm, dark, wide-spreading */
  --shadow-header: 0 44px 100px -18px rgba(20, 14, 6, 0.6),
                   0 14px 40px -10px rgba(20, 14, 6, 0.42);
  --shadow-page: 0 90px 200px -28px rgba(24, 17, 8, 0.62),
                 0 34px 90px -22px rgba(24, 17, 8, 0.46);
  --shadow-soft: 0 12px 30px -14px rgba(24, 17, 8, 0.3);

  --nav-h: 68px;
  --page-max: 1180px;
}

/* ===== Base ===== */
* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 12px); }

body {
  font-family: var(--font-body);
  color: var(--c-bark);
  background: var(--c-bright);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* Bilingual: show only the language selected on <html data-lang="..">.
   Copy lives twice in the HTML as <span lang="fr">/<span lang="en">. */
:root[data-lang="fr"] [lang="en"] { display: none; }
:root[data-lang="en"] [lang="fr"] { display: none; }

/* Visually hidden but available to screen readers */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.wrap {
  width: min(920px, 100% - 4rem);
  margin-inline: auto;
}

.eyebrow {
  display: inline-block;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-ochre);
  margin-bottom: 1rem;
}
.eyebrow-alt { color: var(--c-fern); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.85rem 1.6rem;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(0.99); }

.btn-primary {
  background: var(--grad-warm);
  color: #fff;
  box-shadow: 0 12px 28px -12px rgba(191, 106, 64, 0.7);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 34px -12px rgba(191, 106, 64, 0.85); }

.btn-ghost {
  background: transparent;
  color: var(--c-ink);
  border: 2px solid var(--c-line);
}
.btn-ghost:hover { border-color: var(--c-ochre); color: var(--c-ochre); transform: translateY(-2px); }

.btn-lg { padding: 1.05rem 2.1rem; font-size: 1.05rem; }
.btn-sm { padding: 0.55rem 1.2rem; font-size: 0.92rem; }

.btn-stream {
  background: rgba(236, 228, 211, 0.08);
  color: var(--c-ink);
  border: 1px solid var(--c-line);
}
.btn-stream:hover { transform: translateY(-2px); background: rgba(236, 228, 211, 0.14); border-color: var(--c-ochre); }

/* ===== Navbar ===== */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  z-index: 100;
  display: flex;
  align-items: center;
  transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}
.nav.scrolled {
  background: rgba(13, 16, 18, 0.82);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(201, 162, 74, 0.14), 0 10px 30px -18px rgba(0, 0, 0, 0.6);
}
.nav-inner {
  width: min(var(--page-max), 100% - 3rem);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: inline-flex; align-items: center; }
.brand-logo { height: 26px; width: auto; }
.nav-right {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

/* Language switcher */
.lang {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(236, 228, 211, 0.5);
  padding: 0.2rem 0.1rem;
  transition: color 0.15s ease;
}
.lang-btn:hover { color: rgba(236, 228, 211, 0.85); }
.lang-btn.is-active { color: var(--c-ochre); }
.lang-sep { color: rgba(236, 228, 211, 0.28); font-size: 0.78rem; }
.nav-links a {
  font-weight: 500;
  color: rgba(236, 228, 211, 0.85);
  transition: color 0.15s ease;
}
.nav-links a:not(.btn):hover { color: var(--c-ochre); }
.nav-links .btn-primary { color: #fff; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 26px;
  height: 3px;
  border-radius: 2px;
  background: var(--c-ink);
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ===== Header (short, full-width, elevated) ===== */
.hero {
  position: relative;
  z-index: 4;
  width: 100%;
  background:
    radial-gradient(ellipse 70% 120% at 50% -10%, rgba(201, 162, 74, 0.14), transparent 60%),
    linear-gradient(180deg, rgba(12, 15, 16, 0.35) 0%, rgba(12, 15, 16, 0.6) 55%, rgba(9, 12, 13, 0.9) 100%),
    url("img/scratched_surface.avif") top left / calc(100% / 3) 100% repeat-x;
  background-color: var(--c-header);
  box-shadow: var(--shadow-header);
  padding: calc(var(--nav-h) - 0.4rem) 1.5rem 1.2rem;
}
.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.3rem;
}
.hero-emblem {
  width: min(520px, 84vw);
  height: auto;
  /* Pull up so the top of the emblem sits behind the fixed nav (underlap) */
  margin-top: calc(-1 * var(--nav-h) * 0.8);
  animation: emblemFade 1s ease both;
}
@keyframes emblemFade {
  from { opacity: 0; transform: translateY(10px) scale(0.98); }
  to   { opacity: 1; transform: none; }
}
.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.4vw, 1.3rem);
  font-weight: 400;
  font-style: italic;
  color: var(--c-ink-soft);
  animation: emblemFade 1s ease 0.12s both;
}

/* ===== The floating page — dark body with a leather cover on top ===== */
.page {
  position: relative;
  z-index: 5;               /* above the header so the leather can overlap it */
  width: min(var(--page-max), 100% - 3rem);
  margin: 0 auto;
  color: var(--c-ink);
  /* Only the image — no color/gradient layer behind it, so the AVIF/PNG's
     own transparent regions reveal the html background underneath as-is. */
  background: url("img/page_background.avif") top center / 100% auto repeat-y;
  border: 1px solid rgba(236, 228, 211, 0.08);
  border-top: none;
  border-radius: 0 0 18px 18px;
  /* drop-shadow (not box-shadow) so it hugs the page + the leather overhang,
     casting a visible shadow on the bright canvas and onto the header. */
  filter: drop-shadow(0 42px 60px rgba(20, 14, 6, 0.5))
          drop-shadow(0 14px 26px rgba(20, 14, 6, 0.42));
}
/* Leather "cover" (page_header.avif) pinned to the top, overhanging up into
   the header so its brass corners overlap the header edge. Behind content. */
.page::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -75px;
  width: 106.5%;
  transform: translateX(-50%);
  aspect-ratio: 1710 / 1090;
  background: url("img/page_header.avif") top center / 100% 100% no-repeat;
  /* Fade the leather's bottom into the tiled page background (no hard seam) */
  -webkit-mask-image: linear-gradient(180deg, #000 78%, transparent 100%);
          mask-image: linear-gradient(180deg, #000 78%, transparent 100%);
  z-index: 0;
  pointer-events: none;
}
/* Leather "cover" (page_footer.avif) pinned to the bottom, overhanging down
   past the page edge so its rooted corners trail into the bright canvas. */
.page::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -138px;
  width: 106.5%;
  transform: translateX(-50%);
  aspect-ratio: 2546 / 1620;
  background: url("img/page_footer.avif") bottom center / 100% 100% no-repeat;
  /* Fade the leather's top into the tiled page background (no hard seam) */
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 24%);
          mask-image: linear-gradient(180deg, transparent 0%, #000 24%);
  z-index: 0;
  pointer-events: none;
}
.page > * { position: relative; z-index: 1; }  /* content sits above the leather */

/* ===== Sections ===== */
.section { padding: clamp(3.25rem, 6vw, 5rem) 0; }
.section-about { padding-bottom: clamp(12rem, 20vw, 18rem); }
.section-head { text-align: center; margin-bottom: 2.6rem; }
.section-title {
  font-family: var(--font-gothic);
  font-weight: 400;
  font-size: clamp(1.15rem, 5.6vw, 2.5rem);
  letter-spacing: 0.06em;
  color: var(--c-ochre);
  white-space: nowrap;
}
/* The flourish icons flanking each title scale with the text itself so
   the whole line shrinks together and never wraps. */
.section-title img {
  height: 0.6em;
  width: auto;
  margin: 0 0.25em;
}
.section-lead {
  max-width: 54ch;
  margin: 1rem auto 0;
  color: var(--c-ink-soft);
}

.page-divider {
  height: 1px;
  width: min(920px, 100% - 4rem);
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, var(--c-line), transparent);
}

/* ===== Audio player ===== */
.player {
  background: transparent;
  border: none;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
/* The leather bar (player_region.avif) frames the now-playing strip */
.player-now {
  display: flex;
  gap: 1.4rem;
  align-items: center;
  padding: 1.7rem 2rem;
  background: url("img/player_region.avif") center / 100% 100% no-repeat;
}
.player-art {
  position: relative;
  flex: 0 0 auto;
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(150deg, #20262a, #12171a);
  border: 1px solid var(--c-line);
}
.player-art img { width: 60px; height: auto; opacity: 0.9; }

/* Equaliser bars, animated only while playing */
.player-eq {
  position: absolute;
  bottom: 10px;
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 18px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.player.is-playing .player-eq { opacity: 1; }
.player-eq i {
  width: 3px;
  height: 40%;
  background: var(--c-ochre);
  border-radius: 2px;
}
.player.is-playing .player-eq i { animation: eq 0.9s ease-in-out infinite; }
.player-eq i:nth-child(2) { animation-delay: 0.2s; }
.player-eq i:nth-child(3) { animation-delay: 0.4s; }
.player-eq i:nth-child(4) { animation-delay: 0.1s; }
@keyframes eq {
  0%, 100% { height: 30%; }
  50% { height: 100%; }
}

.player-meta { flex: 1; min-width: 0; }
.player-kicker {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-ochre);
  margin-bottom: 0.25rem;
}
.player-track {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  color: var(--c-ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.player-seek {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0.9rem 0 0.9rem;
}
.t { font-size: 0.8rem; color: var(--c-ink-faint); font-variant-numeric: tabular-nums; min-width: 3ch; }
.t-dur { text-align: right; }

/* Range input, themed both tracks */
.seek {
  -webkit-appearance: none;
  appearance: none;
  flex: 1;
  height: 5px;
  border-radius: 999px;
  background: rgba(236, 228, 211, 0.16);
  cursor: pointer;
  --pct: 0%;
  background-image: linear-gradient(var(--c-ochre), var(--c-ochre));
  background-size: var(--pct) 100%;
  background-repeat: no-repeat;
}
.seek::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: url("img/player_cursor.avif") center / cover no-repeat;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  transition: transform 0.12s ease;
}
.seek::-webkit-slider-thumb:hover { transform: scale(1.15); }
.seek::-moz-range-thumb {
  width: 44px; height: 44px; border: none; border-radius: 50%;
  background: url("img/player_cursor.avif") center / cover no-repeat;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}
.seek::-moz-range-progress { background: var(--c-ochre); height: 5px; border-radius: 999px; }

.player-controls { display: flex; align-items: center; gap: 0.6rem; }
.pc {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: url("img/player_button.avif") center / cover no-repeat;
  color: var(--c-ink);
  cursor: pointer;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.45);
  transition: box-shadow 0.15s ease, transform 0.12s ease, filter 0.15s ease;
}
.pc svg { width: 19px; height: 19px; fill: currentColor; filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.6)); }
.pc:hover { filter: brightness(1.12); }
.pc:active { transform: scale(0.94); }
.pc-play {
  width: 58px;
  height: 58px;
  color: #fff3e0;
}
.pc-play svg { width: 25px; height: 25px; }
/* Show play by default; swap to pause only while playing */
.pc-play .i-pause { display: none; }
.player.is-playing .pc-play .i-play { display: none; }
.player.is-playing .pc-play .i-pause { display: inline; }

/* Golden glow while the play button is pressed / engaged (playing) */
.pc-play:active,
.player.is-playing .pc-play {
  box-shadow:
    0 3px 8px rgba(0, 0, 0, 0.45),
    0 0 0 5px rgba(216, 162, 74, 0.45),
    0 0 13px 5px rgba(255, 191, 92, 0.62),
    0 0 26px 9px rgba(216, 162, 74, 0.42);
  filter: brightness(1.12) saturate(1.15);
}
.player.is-playing .pc-play {
  transition: box-shadow 0.35s ease, filter 0.35s ease, transform 0.12s ease;
}

/* Playlist */
.playlist {
  list-style: none;
  background: rgba(8, 10, 11, 0.55);
  border-radius: 0 0 var(--radius) var(--radius);
}
.playlist li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1.6rem;
  border-bottom: 1px solid rgba(236, 228, 211, 0.07);
  cursor: pointer;
  transition: background 0.15s ease, padding-left 0.15s ease, color 0.15s ease;
}
.playlist li:last-child { border-bottom: none; }
.playlist li:hover { background: rgba(236, 228, 211, 0.05); padding-left: 1.9rem; }
.playlist li.active { background: rgba(216, 162, 74, 0.08); }
.pl-index {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--c-ink-faint);
  font-size: 0.95rem;
  width: 2ch;
  text-align: center;
  flex: 0 0 auto;
}
.playlist li.active .pl-index { color: var(--c-ochre); }
.pl-title { flex: 1; font-family: "Cinzel Decorative", var(--font-display); font-weight: 700; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.pl-sub { color: var(--c-ink-faint); font-size: 0.85rem; }
.pl-time { color: var(--c-ink-faint); font-variant-numeric: tabular-nums; font-size: 0.9rem; flex: 0 0 auto; }
.playlist li.active .pl-title { color: var(--c-ochre); }

.player-fallback {
  padding: 1rem 1.6rem;
  color: var(--c-ink-faint);
  font-size: 0.9rem;
}

/* ===== Music / Album section ===== */
.album {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}
.album-art { position: sticky; top: calc(var(--nav-h) + 1.5rem); }
.album-cover {
  aspect-ratio: 1;
  border-radius: var(--radius);
  background: linear-gradient(150deg, #2e4d38, #1b2a20);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  color: #fff;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--c-line);
}
.album-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 22%, rgba(216, 162, 74, 0.5), transparent 55%),
              radial-gradient(circle at 78% 82%, rgba(191, 106, 64, 0.42), transparent 55%);
}
.album-cover-label {
  position: relative;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.85;
}
.album-cover-tbd {
  position: relative;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
}

.album-status {
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-terracotta);
  margin-bottom: 0.5rem;
}
.album-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
  color: var(--c-ink);
}
.album-desc { color: var(--c-ink-soft); margin-bottom: 2rem; max-width: 46ch; }

.streaming-label {
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-ink-faint);
  margin-bottom: 0.9rem;
}
.streaming-links { display: flex; gap: 0.8rem; flex-wrap: wrap; }

/* ===== About section ===== */
.about {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}
.about-text .lead {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.6vw, 1.7rem);
  line-height: 1.4;
  margin-bottom: 1.4rem;
  color: var(--c-ink);
}
.about-text p:not(.lead) { color: var(--c-ink-soft); margin-bottom: 1rem; }

.about-figure {
  display: flex;
  justify-content: center;
}
.about-figure img {
  width: 100%;
  max-width: 380px;
  max-height: 560px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--c-line);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.about-figure img:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -16px rgba(20, 14, 6, 0.5);
}


/* ===== Reveal animation ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in { opacity: 1; transform: none; }

/* ===== Footer ===== */
.footer {
  position: relative;
  z-index: 6;
  margin-top: 10rem;
  padding: 0 0 2.6rem;
  color: var(--c-bark-soft);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid rgba(42, 35, 24, 0.15);
}
.footer-logo {
  height: 24px;
  width: auto;
  opacity: 0.95;
  filter: invert(12%) brightness(0.8);
}
.footer-brand p { color: var(--c-bark-soft); margin-top: 0.55rem; font-size: 0.95rem; }
.footer-links { display: flex; gap: 1.6rem; flex-wrap: wrap; }
.footer-links a { font-weight: 500; color: var(--c-bark); transition: color 0.15s ease; }
.footer-links a:hover { color: var(--c-ochre); }
.footer-bottom {
  padding-top: 1.2rem;
  color: var(--c-bark-soft);
  font-size: 0.9rem;
}

/* ===== Responsive ===== */
@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    inset: var(--nav-h) 0 auto 0;
    flex-direction: column;
    gap: 0.5rem;
    background: rgba(13, 16, 18, 0.97);
    backdrop-filter: blur(14px);
    padding: 1.4rem 1.5rem 2rem;
    box-shadow: var(--shadow-soft);
    transform: translateY(-130%);
    transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links li { width: 100%; }
  .nav-links a:not(.btn) { display: block; padding: 0.6rem 0; }
  .nav-links .btn { width: 100%; margin-top: 0.4rem; }

  .player-now { flex-direction: column; text-align: center; }
  .player-controls { justify-content: center; }
  .album { grid-template-columns: 1fr; }
  .album-art { position: static; max-width: 360px; margin-inline: auto; }
  .about { grid-template-columns: 1fr; }
  .page { border-radius: 0 0 20px 20px; }

  /* The hero emblem shrinks with viewport width, but .page::before's leather
     cover overhangs a fixed 75px up into the header — on narrow screens that
     fixed overhang can eat into the (now much shorter) emblem. Give the
     header enough bottom clearance to always stay clear of it. */
  .hero { padding-bottom: 6.5rem; }

  .page::after { bottom: -40px; }

}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-emblem, .hero-tagline { animation: none; }
  .player.is-playing .player-eq i { animation: none; }
  .reveal { transition: none; opacity: 1; transform: none; }
}
