:root {
  color-scheme: dark;
  --black: #050505;
  --ink: #0b0b0c;
  --panel: rgba(18, 18, 19, 0.74);
  --panel-strong: rgba(28, 28, 28, 0.88);
  --line: rgba(255, 255, 255, 0.12);
  --text: #f1eee8;
  --muted: rgba(241, 238, 232, 0.68);
  --soft: rgba(241, 238, 232, 0.46);
  --blue: #7bb7c9;
  --wine: #9d3945;
  --amber: #b9854b;
  --green: #536251;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 20% 10%, rgba(123, 183, 201, 0.12), transparent 28rem),
    radial-gradient(circle at 88% 26%, rgba(157, 57, 69, 0.1), transparent 24rem),
    linear-gradient(180deg, #050505 0%, #0b0b0c 38%, #050505 100%);
  color: var(--text);
  font-family: var(--sans);
  letter-spacing: 0;
  overflow-x: hidden;
}

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

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

button,
summary {
  font: inherit;
}

.site-noise {
  position: fixed;
  inset: 0;
  z-index: 80;
  pointer-events: none;
  opacity: 0.18;
  mix-blend-mode: soft-light;
  background-image:
    linear-gradient(115deg, rgba(255, 255, 255, 0.08), transparent 34%),
    repeating-radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.18) 0 1px, transparent 1px 4px);
  background-size: 100% 100%, 220px 220px;
}

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px clamp(18px, 5vw, 54px);
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.78), transparent);
  backdrop-filter: blur(12px);
}

.wordmark {
  font-family: var(--serif);
  font-size: 1rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.nav-links a {
  transition: color 180ms ease;
}

.nav-links a:hover {
  color: var(--text);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: 112px clamp(20px, 6vw, 68px) 72px;
  isolation: isolate;
  overflow: hidden;
}

.hero-video,
.hero-still,
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.62;
  filter: saturate(0.78) contrast(1.08) brightness(0.68);
}

.hero-still {
  z-index: -4;
  background: url("assets/images/night-fragment-02.jpg") center / cover no-repeat;
  filter: brightness(0.32) saturate(0.8);
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.24), rgba(5, 5, 5, 0.94)),
    radial-gradient(circle at 20% 30%, rgba(123, 183, 201, 0.18), transparent 36rem),
    radial-gradient(circle at 88% 70%, rgba(185, 133, 75, 0.16), transparent 26rem);
}

.hero-content {
  max-width: 820px;
}

.eyebrow,
.section-kicker,
.track-number {
  margin: 0 0 18px;
  color: var(--soft);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(5rem, 22vw, 15rem);
  font-weight: 400;
  line-height: 0.82;
  letter-spacing: 0.02em;
}

.hero-subtitle {
  max-width: 560px;
  margin: 28px 0 0;
  color: rgba(241, 238, 232, 0.82);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 5.6vw, 2.8rem);
  line-height: 1.12;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.button,
.inline-control,
.support-links a,
.text-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: rgba(241, 238, 232, 0.86);
  background: rgba(255, 255, 255, 0.045);
  padding: 11px 16px;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 240ms ease,
    transform 240ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.button:hover,
.inline-control:hover,
.support-links a:hover,
.text-link:hover {
  transform: translateY(-2px) scale(1.015);
  border-color: rgba(241, 238, 232, 0.34);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 14px 40px rgba(123, 183, 201, 0.08);
}

.button-primary {
  border-color: rgba(123, 183, 201, 0.42);
  background: rgba(123, 183, 201, 0.16);
}

.scroll-cue {
  position: absolute;
  right: 22px;
  bottom: 24px;
  width: 28px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
}

.scroll-cue span {
  position: absolute;
  top: 10px;
  left: 50%;
  width: 4px;
  height: 4px;
  margin-left: -2px;
  border-radius: 50%;
  background: var(--text);
  animation: cue 1.9s ease-in-out infinite;
}

@keyframes cue {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.35;
  }
  50% {
    transform: translateY(14px);
    opacity: 1;
  }
}

.content-section {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 88px clamp(20px, 5vw, 44px);
}

.story-grid,
.clara-section {
  display: grid;
  gap: 42px;
}

.story-copy h2,
.arc-intro h2,
.split-heading h2,
.clara-copy h2,
.support-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.25rem, 10vw, 6.8rem);
  font-weight: 400;
  line-height: 0.96;
}

.story-copy p,
.arc-intro p,
.clara-copy p,
.support-copy p {
  max-width: 690px;
  color: var(--muted);
  font-size: clamp(1rem, 2.8vw, 1.22rem);
  line-height: 1.74;
}

.story-image,
.clara-visual {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #101010;
  transition:
    border-color 320ms ease,
    box-shadow 360ms ease,
    transform 420ms cubic-bezier(0.18, 0.8, 0.26, 1);
}

.story-image img,
.clara-visual img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.04);
}

.arc-section {
  max-width: 1280px;
}

.arc-intro {
  max-width: 880px;
  margin-bottom: 38px;
}

.development-note {
  color: rgba(241, 238, 232, 0.88) !important;
}

.track-list {
  display: grid;
  gap: 14px;
}

.track-card {
  position: relative;
  display: grid;
  gap: 16px;
  overflow: hidden;
  align-content: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(9, 9, 10, 0.78);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.2);
  transition:
    border-color 360ms ease,
    box-shadow 360ms ease,
    transform 420ms cubic-bezier(0.18, 0.8, 0.26, 1);
}

.track-card::before {
  content: "";
  position: absolute;
  inset: -22%;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(circle at 22% 18%, rgba(123, 183, 201, 0.18), transparent 34%),
    radial-gradient(circle at 82% 70%, rgba(185, 133, 75, 0.14), transparent 32%);
  transform: translate3d(-10px, 12px, 0) scale(0.96);
  transition:
    opacity 460ms ease,
    transform 620ms cubic-bezier(0.18, 0.8, 0.26, 1);
}

.track-card:hover {
  transform: translateY(-4px);
  border-color: rgba(241, 238, 232, 0.2);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.32);
}

.track-card:hover::before {
  opacity: 1;
  transform: translate3d(8px, -6px, 0) scale(1.02);
}

.track-card > * {
  position: relative;
  z-index: 1;
}

.track-card:nth-child(3n + 1) {
  background:
    linear-gradient(135deg, rgba(123, 183, 201, 0.08), rgba(255, 255, 255, 0.018)),
    rgba(9, 9, 10, 0.78);
}

.track-card:nth-child(3n + 2) {
  background:
    linear-gradient(135deg, rgba(157, 57, 69, 0.08), rgba(255, 255, 255, 0.018)),
    rgba(9, 9, 10, 0.78);
}

.track-card:nth-child(3n + 3) {
  background:
    linear-gradient(135deg, rgba(185, 133, 75, 0.08), rgba(255, 255, 255, 0.018)),
    rgba(9, 9, 10, 0.78);
}

.track-head h3 {
  margin: 0;
  font-family: var(--serif);
  max-width: 12ch;
  font-size: clamp(1.9rem, 5vw, 3.35rem);
  font-weight: 400;
  line-height: 0.9;
}

.track-features {
  margin: 10px 0 0;
  color: var(--blue);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.track-description {
  max-width: 56ch;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.5;
}

.track-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.lyrics-panel {
  position: relative;
  width: 100%;
  margin-top: 0;
}

.lyrics-panel summary {
  list-style: none;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 15px;
  color: rgba(241, 238, 232, 0.84);
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
}

.lyrics-panel summary::after {
  content: "Open";
  color: var(--soft);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
}

.lyrics-panel[open] summary::after {
  content: "Hide";
}

.lyrics-panel summary::-webkit-details-marker {
  display: none;
}

.lyrics-panel div {
  margin-top: 12px;
  border: 1px solid rgba(241, 238, 232, 0.18);
  border-radius: 8px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--soft);
  font-family: var(--serif);
  font-size: 1.02rem;
  line-height: 1.46;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.3);
}

.lyrics-scroll {
  max-height: 168px;
  overflow: auto;
  padding-right: 8px;
}

.lyrics-panel div p,
.lyrics-empty {
  margin: 0 0 8px;
}

.lyrics-empty {
  color: var(--muted);
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1.46;
}

.track-media-row {
  display: grid;
  gap: 14px;
  align-items: start;
}

.spotify-player {
  display: grid;
  gap: 10px;
  align-content: start;
}

.spotify-player-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: rgba(241, 238, 232, 0.72);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.spotify-player-top a {
  color: rgba(241, 238, 232, 0.9);
  text-decoration: none;
}

.spotify-frame {
  display: block;
  width: 100%;
  min-height: 152px;
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.spotify-fallback,
.support-fallback {
  min-height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(30, 215, 96, 0.3);
  border-radius: 8px;
  color: rgba(241, 238, 232, 0.9);
  background:
    linear-gradient(135deg, rgba(30, 215, 96, 0.16), rgba(255, 255, 255, 0.045)),
    rgba(10, 10, 10, 0.86);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    border-color 220ms ease,
    background 220ms ease,
    transform 240ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.spotify-fallback:hover,
.support-fallback:hover {
  transform: translateY(-2px) scale(1.01);
  border-color: rgba(30, 215, 96, 0.55);
  background:
    linear-gradient(135deg, rgba(30, 215, 96, 0.22), rgba(255, 255, 255, 0.07)),
    rgba(10, 10, 10, 0.9);
}

.track-visual,
.inline-video video {
  width: 100%;
  border-radius: 8px;
  object-fit: contain;
  background: #000;
}

.track-visual {
  display: block;
  width: 100%;
  min-height: 280px;
  aspect-ratio: 9 / 16;
  border: 1px solid var(--line);
}

.track-spotify,
.track-visual-wrap {
  min-width: 0;
}

.track-visual-wrap {
  display: grid;
  align-content: start;
}

.diary-section {
  max-width: 1280px;
}

.split-heading {
  display: grid;
  gap: 18px;
  margin-bottom: 30px;
}

.split-heading .section-kicker {
  margin-bottom: 0;
}

.split-heading h2 {
  max-width: 880px;
}

.diary-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.diary-item {
  position: relative;
  min-height: 420px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #111;
  transition:
    border-color 320ms ease,
    box-shadow 360ms ease,
    transform 420ms cubic-bezier(0.18, 0.8, 0.26, 1);
}

.diary-item img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  filter: saturate(0.74) contrast(1.04) brightness(0.82);
  transition: transform 700ms ease;
}

.diary-item:hover img {
  transform: scale(1.035);
}

.diary-item:hover,
.clara-visual:hover {
  border-color: rgba(241, 238, 232, 0.22);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.diary-item:nth-child(5) img {
  object-position: center 42%;
}

.diary-item.is-extra {
  display: none;
}

.diary-expanded .diary-item.is-extra {
  display: block;
}

.diary-item figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 54px 18px 18px;
  color: rgba(241, 238, 232, 0.82);
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.84));
  font-family: var(--serif);
  font-size: 1.15rem;
  line-height: 1.32;
}

.diary-more-wrap {
  display: grid;
  place-items: center;
  margin-top: 72px;
}

.diary-more[hidden] {
  display: none;
}

.clara-section {
  align-items: center;
  max-width: 1280px;
}

.clara-copy p {
  max-width: 560px;
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.feature-pill,
.feature-empty {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-pill {
  transition:
    border-color 220ms ease,
    background 220ms ease,
    transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.feature-pill:hover {
  transform: translateY(-2px) scale(1.015);
  border-color: rgba(123, 183, 201, 0.35);
  background: rgba(123, 183, 201, 0.1);
  color: rgba(241, 238, 232, 0.92);
}

.clara-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 190px;
  gap: 12px;
  overflow: visible;
  border: 0;
  background: transparent;
}

.clara-photo {
  position: relative;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #101010;
  transition:
    border-color 320ms ease,
    box-shadow 360ms ease,
    transform 420ms cubic-bezier(0.18, 0.8, 0.26, 1);
}

.clara-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.02) brightness(0.86);
  transition:
    filter 420ms ease,
    transform 700ms ease;
}

.clara-photo:hover {
  transform: translateY(-3px);
  border-color: rgba(241, 238, 232, 0.22);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.clara-photo-button {
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.clara-photo:hover img {
  filter: saturate(0.96) contrast(1.04) brightness(0.94);
  transform: scale(1.035);
}

.clara-photo figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  margin: 0;
  color: rgba(241, 238, 232, 0.82);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.clara-photo-1 {
  grid-column: span 2;
  grid-row: span 2;
}

.clara-photo-2,
.clara-photo-3 {
  grid-row: span 1;
}

.clara-photo-4,
.clara-photo-5 {
  grid-row: span 2;
}

.in-between-section {
  min-height: 82svh;
  display: grid;
  place-items: center;
  max-width: none;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.2), rgba(5, 5, 5, 0.98)),
    url("assets/images/kovli-11.jpg") center / cover fixed no-repeat;
}

.in-between-copy {
  width: min(100%, 920px);
  padding: 0 clamp(20px, 5vw, 44px);
}

.in-between-copy p {
  margin: 0 0 18px;
  color: rgba(241, 238, 232, 0.9);
  font-family: var(--serif);
  font-size: clamp(2rem, 8vw, 6.6rem);
  line-height: 0.98;
}

.support-section {
  max-width: 1280px;
}

.support-panel {
  display: grid;
  gap: 18px;
  margin-top: 32px;
  width: 100%;
}

.support-stack {
  display: grid;
  gap: 18px;
  align-content: start;
  width: 100%;
  grid-template-columns: minmax(0, 1fr);
}

.support-embed {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-strong);
}

.support-side {
  display: grid;
  gap: 12px;
  align-content: start;
}

.support-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.site-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 46px 20px 58px;
  color: var(--soft);
  border-top: 1px solid var(--line);
  background: #050505;
}

.site-footer p {
  margin: 0;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.footer-note {
  font-size: 0.82rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 760ms ease var(--delay, 0ms),
    transform 760ms ease var(--delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.track-card.reveal.is-visible:hover {
  transform: translateY(-4px);
}

.image-lightbox {
  width: min(88vw, 980px);
  padding: 18px;
  border: 1px solid rgba(241, 238, 232, 0.18);
  border-radius: 14px;
  background: rgba(8, 8, 10, 0.95);
  color: var(--text);
}

.image-lightbox::backdrop {
  background: rgba(0, 0, 0, 0.74);
  backdrop-filter: blur(10px);
}

.image-lightbox img {
  width: 100%;
  max-height: 76vh;
  object-fit: contain;
  border-radius: 10px;
}

.image-lightbox p {
  margin: 12px 0 0;
  color: var(--muted);
  text-align: center;
}

.image-lightbox-close {
  margin-left: auto;
  margin-bottom: 10px;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 14px;
  color: rgba(241, 238, 232, 0.86);
  background: rgba(255, 255, 255, 0.045);
  cursor: pointer;
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-video {
    display: none;
  }
}

@media (min-width: 720px) {
  .nav-links {
    display: flex;
  }

  .content-section {
    padding-top: 126px;
    padding-bottom: 126px;
  }

  .story-grid,
  .clara-section {
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
  }

  .support-panel {
    justify-content: start;
  }

  .story-image img {
    min-height: 680px;
  }

  .track-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .track-card {
    padding: 18px;
  }

  .track-head {
    min-width: 0;
  }

  .track-media-row {
    grid-template-columns: minmax(0, 1fr) minmax(132px, 0.46fr);
    gap: 16px;
  }

  .track-visual {
    min-height: 260px;
  }

  .diary-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .diary-item {
    min-height: 520px;
  }

  .diary-item:nth-child(1),
  .diary-item:nth-child(4) {
    grid-column: span 2;
  }

  .diary-item:nth-child(2),
  .diary-item:nth-child(5) {
    grid-column: span 2;
    transform: translateY(54px);
  }

  .diary-item:nth-child(3),
  .diary-item:nth-child(6) {
    grid-column: span 2;
  }

  .diary-item:nth-child(n + 7) {
    grid-column: span 2;
    min-height: 440px;
  }

  .diary-expanded .diary-item.is-extra:nth-child(3n + 2) {
    transform: translateY(40px);
  }

  .clara-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 210px;
    gap: 16px;
  }

  .support-stack {
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    align-items: start;
  }

  .support-embed {
    grid-column: 1;
    grid-row: 1;
  }

  .support-side {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .support-fallback {
    width: 100%;
  }

  .support-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1040px) {
  .hero {
    padding-bottom: 88px;
  }

  .track-list {
    gap: 22px;
  }

  .support-stack {
    grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
    align-items: start;
  }

  .track-media-row {
    grid-template-columns: minmax(0, 1fr) 168px;
  }

  .track-visual {
    min-height: 300px;
  }

  .support-links {
    grid-template-columns: 1fr 1fr;
  }

  .split-heading {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: auto auto;
    align-items: end;
  }

  .split-heading .section-kicker {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .split-heading h2 {
    grid-column: 1;
    grid-row: 2;
  }

  .text-link {
    grid-column: 2;
    grid-row: 2;
    align-self: end;
  }
}

@media (max-width: 719px) {
  .track-visual {
    min-height: 320px;
  }

  .clara-gallery {
    grid-auto-rows: 160px;
  }

  .support-links {
    grid-template-columns: 1fr;
  }
}
