/* Lila Spark — neon night-pop brand site */

:root {
  --bg: #0a0a0f;
  --bg-elevated: #12121a;
  --ink: #f4f0ff;
  --ink-muted: #a39bb8;
  --line: rgba(255, 255, 255, 0.08);
  --magenta: #ff2d95;
  --cyan: #2de2ff;
  --violet: #9b5cff;
  --card: rgba(18, 18, 28, 0.75);
  --glow-magenta: 0 0 40px rgba(255, 45, 149, 0.35);
  --glow-cyan: 0 0 40px rgba(45, 226, 255, 0.25);
  --radius: 16px;
  --font: "Outfit", system-ui, sans-serif;
  /* Brittany-style script for the wordmark (Great Vibes is free & close) */
  --font-script: "Great Vibes", "Segoe Script", "Apple Chancery", cursive;
  --max: 1040px;
  --header-h: 4.75rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-weight: 400;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

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

code {
  font-size: 0.9em;
  color: var(--cyan);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--magenta);
  color: #fff;
  padding: 0.5rem 1rem;
  z-index: 1000;
  border-radius: 8px;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.wrap {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

/* Ambient background */
.bg-orbs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
}

.orb-a {
  width: 42vw;
  height: 42vw;
  max-width: 520px;
  max-height: 520px;
  top: -10%;
  left: -8%;
  background: radial-gradient(circle, rgba(255, 45, 149, 0.55), transparent 70%);
}

.orb-b {
  width: 36vw;
  height: 36vw;
  max-width: 440px;
  max-height: 440px;
  top: 20%;
  right: -12%;
  background: radial-gradient(circle, rgba(45, 226, 255, 0.4), transparent 70%);
}

.orb-c {
  width: 50vw;
  height: 50vw;
  max-width: 600px;
  max-height: 600px;
  bottom: -15%;
  left: 30%;
  background: radial-gradient(circle, rgba(155, 92, 255, 0.35), transparent 70%);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(10, 10, 15, 0.72);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  overflow: visible;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  overflow: visible;
  /* room for script flourishes above/below baseline */
  padding-block: 0.2rem;
}

.logo-mark {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  flex-shrink: 0;
  border: 1.5px solid rgba(255, 45, 149, 0.45);
  box-shadow: 0 0 0 2px rgba(10, 10, 15, 0.6), var(--glow-magenta);
  background: var(--bg-elevated);
  overflow: hidden;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}

.logo-mark.small {
  width: 1.35rem;
  height: 1.35rem;
  border-width: 1px;
  box-shadow: 0 0 12px rgba(255, 45, 149, 0.35);
}

.logo-text {
  display: inline-block;
  font-family: var(--font-script);
  font-weight: 400;
  font-size: 1.85rem;
  /* Script fonts need generous line-box or glyphs clip */
  line-height: 1.55;
  letter-spacing: 0.02em;
  padding: 0.2em 0.12em 0.28em;
  overflow: visible;
  background: linear-gradient(120deg, #fff 15%, var(--magenta) 50%, var(--cyan) 95%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  /* Avoid gradient paint clipping tall glyphs in some browsers */
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.site-nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-muted);
  transition: color 0.15s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  padding: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 1.1rem;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  z-index: 1;
  padding: clamp(3.5rem, 10vw, 7rem) 0 clamp(4rem, 12vw, 8rem);
}

/* Two-column layout: copy left, portrait right — no overlap */
.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(180px, 280px);
  align-items: center;
  justify-content: space-between;
  column-gap: clamp(2.5rem, 8vw, 5.5rem);
  row-gap: 2rem;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 34rem;
  min-width: 0;
  justify-self: start;
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan);
}

.hero h1 {
  margin: 0 0 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hero-name {
  display: inline-block;
  font-family: var(--font-script);
  font-size: clamp(3.25rem, 11vw, 5.75rem);
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0.01em;
  padding: 0.18em 0.08em 0.28em;
  overflow: visible;
  background: linear-gradient(115deg, #fff 10%, var(--magenta) 50%, var(--cyan) 95%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.hero-tagline {
  font-size: clamp(1.25rem, 3.2vw, 1.65rem);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.hero-lead {
  margin: 0 0 1.75rem;
  font-size: 1.1rem;
  color: var(--ink-muted);
  max-width: 32rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

.btn-primary {
  background: linear-gradient(120deg, var(--magenta), #ff5cb0 40%, var(--violet));
  color: #fff;
  box-shadow: var(--glow-magenta);
}

.btn-primary:hover {
  box-shadow: 0 0 50px rgba(255, 45, 149, 0.5);
}

.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}

.btn-ghost:hover {
  border-color: rgba(45, 226, 255, 0.45);
  box-shadow: var(--glow-cyan);
}

/* Circle must use equal width+height — aspect-ratio alone fails on some mobile browsers */
.hero-portrait {
  --portrait-size: min(280px, 42vw);
  position: relative;
  justify-self: end;
  box-sizing: border-box;
  width: var(--portrait-size);
  height: var(--portrait-size);
  min-width: var(--portrait-size);
  min-height: var(--portrait-size);
  max-width: var(--portrait-size);
  max-height: var(--portrait-size);
  z-index: 1;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  /* Clip-path is the most reliable circle on iOS Safari / Chrome Android */
  -webkit-clip-path: circle(50% at 50% 50%);
  clip-path: circle(50% at 50% 50%);
  padding: 0;
  /* Neon ring via multi box-shadow (no padding that breaks square→circle) */
  background: #0a0a0f;
  box-shadow:
    0 0 0 3px rgba(255, 45, 149, 0.85),
    0 0 0 5px rgba(45, 226, 255, 0.35),
    0 0 50px rgba(255, 45, 149, 0.35),
    0 0 80px rgba(45, 226, 255, 0.12);
}

.hero-portrait-img {
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 15%;
  background: var(--bg);
  -webkit-clip-path: circle(50% at 50% 50%);
  clip-path: circle(50% at 50% 50%);
}

/* Sections */
.section {
  position: relative;
  z-index: 1;
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
}

.section-header {
  margin-bottom: 2rem;
}

.section-header h2 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.section-lead {
  margin: 0;
  color: var(--ink-muted);
  max-width: 36rem;
}

/* Album picker */
.album-picker {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.album-card {
  appearance: none;
  -webkit-appearance: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  border-radius: calc(var(--radius) + 4px);
}

.album-art-wrap {
  position: relative;
  display: block;
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-elevated);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.album-art-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.album-card:hover .album-art-wrap,
.album-card:focus-visible .album-art-wrap {
  transform: translateY(-3px);
  border-color: rgba(255, 45, 149, 0.45);
  box-shadow: 0 16px 48px rgba(255, 45, 149, 0.2), 0 0 0 1px rgba(45, 226, 255, 0.15);
}

.album-card:focus-visible {
  outline: none;
}

.album-card.is-active .album-art-wrap {
  border-color: rgba(255, 45, 149, 0.65);
  box-shadow:
    0 0 0 2px rgba(255, 45, 149, 0.55),
    0 0 36px rgba(255, 45, 149, 0.35),
    0 16px 40px rgba(0, 0, 0, 0.4);
}

.album-meta {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0 0.15rem;
}

.album-title {
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.album-sub {
  font-size: 0.82rem;
  color: var(--ink-muted);
}

.album-card.is-active .album-title {
  background: linear-gradient(120deg, #fff 10%, var(--magenta) 70%, var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.album-panels {
  min-height: 8rem;
}

.album-panel[hidden] {
  display: none !important;
}

.album-panel-header {
  margin-bottom: 1.15rem;
}

.album-panel-header h3 {
  margin: 0 0 0.35rem;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.album-panel-header p {
  margin: 0;
  color: var(--ink-muted);
  max-width: 36rem;
}

.era-note {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.95rem;
  padding: 1rem 1.25rem;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
}

@media (max-width: 720px) {
  .album-picker {
    grid-template-columns: 1fr;
    max-width: 20rem;
    margin-inline: auto 0;
  }
}

@media (min-width: 721px) and (max-width: 900px) {
  .album-picker {
    gap: 1rem;
  }
}

/* Music tracks */
.track-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.track-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem 1.25rem;
  padding: 1.1rem 1.25rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.track-card:hover {
  border-color: rgba(255, 45, 149, 0.35);
  box-shadow: 0 0 0 1px rgba(255, 45, 149, 0.12), 0 12px 40px rgba(0, 0, 0, 0.25);
  transform: translateY(-1px);
}

.track-card-feature {
  border-color: rgba(45, 226, 255, 0.3);
  background:
    linear-gradient(120deg, rgba(255, 45, 149, 0.12), rgba(45, 226, 255, 0.08)),
    var(--card);
}

.track-card-feature .track-num {
  color: var(--cyan);
}

.track-card-feature .track-badge {
  border-color: rgba(255, 45, 149, 0.4);
  color: var(--magenta);
  background: rgba(255, 45, 149, 0.1);
}

.track-audio {
  display: block;
  width: 100%;
  max-width: 28rem;
  margin-top: 0.75rem;
  height: 2.25rem;
  border-radius: 999px;
  accent-color: var(--magenta);
}

.track-card .track-body {
  min-width: 0;
}

/* Stack player under meta; badge stays top-right on wide layouts */
.track-card {
  align-items: start;
}

.track-card .track-num {
  padding-top: 0.35rem;
}

.track-card .track-badge {
  margin-top: 0.35rem;
}

.track-num {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--magenta);
  min-width: 1.75rem;
}

.track-title {
  margin: 0 0 0.2rem;
  font-size: 1.05rem;
  font-weight: 600;
}

.track-meta {
  margin: 0;
  font-size: 0.88rem;
  color: var(--ink-muted);
}

.track-badge {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(45, 226, 255, 0.35);
  color: var(--cyan);
  background: rgba(45, 226, 255, 0.08);
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1.55fr 0.9fr;
  gap: 2.5rem;
  align-items: start;
}

.about-copy p,
.bio p {
  color: var(--ink-muted);
  margin: 0 0 1.1rem;
  font-size: 1.02rem;
  line-height: 1.7;
}

.bio em {
  color: var(--ink);
  font-style: italic;
}

.bio-close {
  color: var(--ink) !important;
  font-weight: 500;
  padding-top: 0.35rem;
  border-top: 1px solid var(--line);
  margin-top: 0.5rem !important;
  padding-top: 1.15rem !important;
}

.hero-lead em {
  color: var(--ink);
  font-style: italic;
}

/* Family portraits */
.family-block {
  margin-top: clamp(2.5rem, 6vw, 4rem);
  padding-top: clamp(2rem, 5vw, 3rem);
  border-top: 1px solid var(--line);
}

.family-header {
  margin-bottom: 1.5rem;
}

.family-heading {
  margin: 0 0 0.65rem;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.family-gallery {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1.35fr;
  gap: 1.15rem;
  align-items: stretch;
}

.family-card {
  margin: 0;
}

.family-card figure {
  margin: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  backdrop-filter: blur(12px);
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.family-card figure:hover {
  border-color: rgba(255, 45, 149, 0.35);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
  transform: translateY(-2px);
}

/* Full frame, no crop — letterbox if needed */
.family-photo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0c0c12;
  width: 100%;
}

.family-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center;
  vertical-align: middle;
}

.family-age {
  position: absolute;
  left: 0.65rem;
  bottom: 0.65rem;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #fff;
  background: rgba(10, 10, 15, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
}

.family-age strong {
  font-weight: 800;
  color: var(--cyan);
  font-variant-numeric: tabular-nums;
}

.family-age-duo {
  gap: 0.45rem;
}

.family-age-sep {
  opacity: 0.5;
  font-weight: 400;
}

.family-card-feature figure {
  border-color: rgba(45, 226, 255, 0.22);
  box-shadow: 0 0 28px rgba(255, 45, 149, 0.12);
}

.family-card figcaption {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.9rem 1rem 1.05rem;
}

.family-name {
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: 0.01em;
}

.family-role {
  font-size: 0.82rem;
  color: var(--ink-muted);
  line-height: 1.4;
}

@media (max-width: 820px) {
  .family-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .family-card-feature {
    grid-column: 1 / -1;
  }
}

@media (max-width: 520px) {
  .family-gallery {
    grid-template-columns: 1fr;
  }
}

.about-card {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255, 45, 149, 0.12), transparent 50%),
    var(--card);
  backdrop-filter: blur(12px);
}

.about-card-title {
  margin: 0 0 1.25rem;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
}

.facts {
  margin: 0;
  display: grid;
  gap: 1.1rem;
}

.facts div {
  display: grid;
  gap: 0.2rem;
}

.facts dt {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.facts dd {
  margin: 0;
  font-weight: 500;
  font-size: 1.05rem;
}

/* Contact */
.contact-section {
  padding-bottom: clamp(4rem, 10vw, 6rem);
}

.contact-inner {
  text-align: center;
  max-width: 36rem;
  margin-inline: auto;
}

.contact-inner .section-header {
  margin-bottom: 1.5rem;
}

.contact-inner .section-lead {
  margin-inline: auto;
}

.contact-actions {
  margin-bottom: 2rem;
}

.social-list {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
}

.social-link {
  display: inline-flex;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-muted);
  transition: color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.social-link:hover,
.social-link:focus-visible {
  color: var(--ink);
  border-color: rgba(255, 45, 149, 0.4);
  box-shadow: 0 0 20px rgba(255, 45, 149, 0.15);
}

.social-link[data-placeholder="true"] {
  opacity: 0.75;
}

.placeholder-note {
  margin: 0;
  font-size: 0.82rem;
  color: var(--ink-muted);
  opacity: 0.85;
}

/* Footer */
.site-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--line);
  padding: 1.75rem 0 2.25rem;
  background: rgba(0, 0, 0, 0.25);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.footer-brand {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-script);
  font-weight: 400;
  font-size: 1.45rem;
  line-height: 1.55;
  letter-spacing: 0.02em;
  padding-block: 0.15em;
  overflow: visible;
}

.footer-copy {
  margin: 0;
  font-size: 0.88rem;
  color: var(--ink-muted);
}

/* Responsive */
@media (max-width: 820px) {
  .hero-layout {
    grid-template-columns: 1fr;
    justify-items: start;
    column-gap: 0;
  }

  .hero-portrait {
    --portrait-size: min(200px, 48vw);
    width: var(--portrait-size);
    height: var(--portrait-size);
    min-width: var(--portrait-size);
    min-height: var(--portrait-size);
    max-width: var(--portrait-size);
    max-height: var(--portrait-size);
    justify-self: start;
    border-radius: 50%;
    overflow: hidden;
    -webkit-clip-path: circle(50% at 50% 50%);
    clip-path: circle(50% at 50% 50%);
    order: -1; /* photo above copy on small screens */
  }

  .hero-portrait-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    -webkit-clip-path: circle(50% at 50% 50%);
    clip-path: circle(50% at 50% 50%);
  }

  .about-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 1.25rem 1rem;
    background: rgba(10, 10, 15, 0.96);
    border-bottom: 1px solid var(--line);
    display: none;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.85rem 0.25rem;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a:last-child {
    border-bottom: none;
  }

  .track-card {
    grid-template-columns: auto 1fr;
  }

  .track-badge {
    grid-column: 2;
    justify-self: start;
  }

  .track-audio {
    max-width: 100%;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn:hover,
  .track-card:hover {
    transform: none;
  }
}
