@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/open-sans-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/open-sans-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/open-sans-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Oswald";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("assets/fonts/oswald-latin-500.woff2") format("woff2");
}

:root {
  --bg: #090c12;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.28);
  --text: #f3f7ff;
  --muted: #c0cbdb;
  --accent: #78d7ff;
  --accent-warm: #ffbf74;
  --accent-green: #7ce8b7;
  --accent-rose: #ff9aa4;
  --accent-ice: #8ebdff;
  --accent-strong: #4bb8e6;
  --shadow-lg: 0 28px 70px rgba(0, 0, 0, 0.36);
  --shadow-md: 0 14px 34px rgba(0, 0, 0, 0.26);
  --radius-xl: 10px;
  --radius-lg: 8px;
  --radius-md: 6px;
  --max-width: 1380px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-size: 16px;
  font-family: "Open Sans", Arial, sans-serif;
  background:
    radial-gradient(1020px 460px at 10% -20%, rgba(120, 215, 255, 0.2), transparent 68%),
    radial-gradient(760px 360px at 82% 14%, rgba(255, 191, 116, 0.12), transparent 70%),
    radial-gradient(920px 520px at 94% 2%, rgba(74, 130, 190, 0.2), transparent 64%),
    linear-gradient(180deg, #101722 0%, #0a101a 52%, #0d141f 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 100% 3px, 3px 100%;
  opacity: 0.08;
}

body::after {
  content: "";
  position: fixed;
  inset: auto -18vw -24vh auto;
  width: 58vw;
  height: 58vw;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(120, 215, 255, 0.2) 0%, rgba(120, 215, 255, 0) 72%);
  filter: blur(42px);
  opacity: 0.36;
  animation: driftGlow 14s ease-in-out infinite alternate;
}

body.nav-open {
  overflow: hidden;
}

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

p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: none;
  color: var(--text);
}

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

.site-header,
.hero,
.section,
.site-footer {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  padding-top: 1rem;
}

.header-shell {
  position: relative;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(28, 40, 58, 0.92), rgba(15, 22, 35, 0.95));
  backdrop-filter: blur(7px);
  box-shadow:
    0 20px 44px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  overflow: visible;
}

.header-shell::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1.1rem;
  right: 1.1rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(120, 215, 255, 0.7), rgba(255, 191, 116, 0.6), rgba(120, 215, 255, 0));
  pointer-events: none;
}

.mainbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-inline: 1.5rem;
}

.mainbar {
  min-height: 4.4rem;
  gap: 1.2rem;
}

.brand-block {
  display: grid;
  gap: 0.22rem;
  min-width: 248px;
}

.brand {
  width: min(278px, 100%);
}

.brand img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 12px 26px rgba(0, 0, 0, 0.26));
}

.brand picture {
  display: block;
}

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

.brand-subline {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #c2cee0;
}

.site-nav {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: center;
  gap: 1.1rem;
  margin-left: auto;
  padding: 0.2rem 0 0.2rem 1.4rem;
  border-left: 0;
  box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.1);
  border-radius: 0;
  background: transparent;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.34rem 0.2rem;
  border: 0;
  border-radius: 0;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  color: #bcc8db;
  position: relative;
  transition: color 170ms ease, opacity 170ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0.2rem;
  bottom: 0.14rem;
  width: calc(100% - 0.2rem);
  height: 1px;
  background: rgba(120, 215, 255, 0.86);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  background: transparent;
  color: #ffffff;
  opacity: 1;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 0.52rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 5px;
  background: rgba(8, 12, 18, 0.92);
  color: #dce5f4;
  padding: 0.62rem 0.78rem;
  font: inherit;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-toggle-icon {
  width: 0.78rem;
  height: 0.53rem;
  background:
    linear-gradient(currentColor, currentColor) top left / 100% 1px no-repeat,
    linear-gradient(currentColor, currentColor) center left / 100% 1px no-repeat,
    linear-gradient(currentColor, currentColor) bottom left / 100% 1px no-repeat;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(440px, 0.92fr);
  gap: 1.8rem;
  padding-top: 1.5rem;
}

.hero::before {
  content: "";
  position: absolute;
  top: 2.2rem;
  left: 52%;
  width: 1px;
  height: calc(100% - 4.4rem);
  background: linear-gradient(180deg, rgba(120, 215, 255, 0), rgba(120, 215, 255, 0.36), rgba(120, 215, 255, 0));
  opacity: 0.7;
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  right: 6%;
  top: 2.6rem;
  width: 420px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 191, 116, 0.2) 0%, rgba(255, 191, 116, 0) 74%);
  filter: blur(12px);
  pointer-events: none;
  z-index: 0;
}

.hero-backdrop {
  position: absolute;
  inset: 1.5rem 0 0;
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(23, 34, 50, 0.94), rgba(25, 38, 58, 0.58) 56%, rgba(14, 21, 33, 0.93)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 64%);
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-copy,
.hero-media {
  position: relative;
  z-index: 1;
}

.hero-copy {
  min-height: 610px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 3rem 2.4rem;
}

.hero-kicker {
  display: inline-block;
  width: fit-content;
  margin: 0.7rem 0 1rem;
  padding: 0.28rem 0.58rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #cad5e6;
  border-left: 2px solid rgba(120, 215, 255, 0.65);
  background: linear-gradient(90deg, rgba(120, 215, 255, 0.12), rgba(120, 215, 255, 0));
}

.hero-copy h1 {
  max-width: 14ch;
  font-size: clamp(2.25rem, 4.8vw, 4.6rem);
  line-height: 1;
  text-wrap: balance;
}

.lead {
  max-width: 52ch;
  margin-top: 1rem;
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  line-height: 1.72;
  color: #d2dceb;
}

.hero-actions {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin-top: 1.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0 1.2rem;
  border: 1px solid var(--line-strong);
  border-radius: 5px;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  border-color: rgba(120, 215, 255, 0.35);
  background: linear-gradient(180deg, rgba(120, 215, 255, 0.3), rgba(120, 215, 255, 0.12));
}

.button-secondary {
  background: rgba(255, 255, 255, 0.08);
}

.button-secondary:hover {
  border-color: rgba(120, 215, 255, 0.45);
}

.hero-media {
  display: grid;
  align-items: end;
  padding: 1.7rem 1.7rem 1.7rem 0;
}

.hero-media > picture {
  display: block;
  height: 100%;
}

.hero-media > picture > img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
}

.hero-panel {
  position: absolute;
  left: 0;
  right: 1.7rem;
  bottom: 1.7rem;
  padding: 1rem 1.15rem;
  border-radius: 5px;
  background: linear-gradient(180deg, rgba(20, 30, 45, 0.78), rgba(16, 24, 36, 0.9));
  backdrop-filter: blur(10px);
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.26);
}

/* Safari-only panel alignment/compositing fix */
@supports (-webkit-touch-callout: none) {
  .hero-panel {
    left: 0;
    right: 1.7rem;
    bottom: 1.7rem;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background-clip: padding-box;
    transform: translateZ(0);
  }
}

.hero-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgba(120, 215, 255, 0.9), rgba(255, 191, 116, 0.8));
}

.panel-title {
  margin-bottom: 0.58rem;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e6edf9;
}

.panel-list,
.check-list {
  margin: 0;
  padding-left: 1rem;
  color: var(--muted);
  line-height: 1.72;
}

.section {
  padding-top: 3.4rem;
  position: relative;
  --section-accent: var(--accent);
}

#news {
  --section-accent: var(--accent-warm);
}

#leistungen {
  --section-accent: var(--accent);
}

#ensemble {
  --section-accent: var(--accent-ice);
}

#hoerproben {
  --section-accent: var(--accent-green);
}

#portfolio {
  --section-accent: var(--accent-rose);
}

#unterricht {
  --section-accent: #ffd370;
}

.section-alt,
.section-accent,
.section-news,
.site-footer {
  margin-top: 2.1rem;
  padding-inline: clamp(1rem, 2.2vw, 1.9rem);
  padding-top: 1.4rem;
  padding-bottom: 0.7rem;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  position: relative;
  overflow: hidden;
}

.section-news {
  background:
    radial-gradient(620px 220px at 82% -8%, rgba(255, 191, 116, 0.24), transparent 72%),
    linear-gradient(180deg, rgba(36, 50, 70, 0.84), rgba(22, 33, 49, 0.92));
}

.section-accent {
  background:
    radial-gradient(520px 260px at 12% -12%, rgba(120, 215, 255, 0.22), transparent 72%),
    linear-gradient(180deg, rgba(29, 44, 63, 0.86), rgba(18, 29, 44, 0.92));
}

.section-alt {
  background:
    radial-gradient(680px 260px at 90% -10%, rgba(120, 215, 255, 0.18), transparent 74%),
    linear-gradient(180deg, rgba(31, 44, 64, 0.84), rgba(20, 31, 47, 0.9));
}

.section-alt::before,
.section-accent::before,
.section-news::before,
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(120, 215, 255, 0.65), rgba(255, 191, 116, 0.6), rgba(120, 215, 255, 0));
}

.section::after {
  content: "";
  position: absolute;
  inset: auto -8% -26% auto;
  width: 48%;
  height: 58%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(120, 215, 255, 0.16) 0%, rgba(120, 215, 255, 0) 72%);
  filter: blur(10px);
  opacity: 0.9;
}

.section-heading {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1.55rem;
}

.section-heading h2 {
  max-width: 20ch;
  font-size: clamp(1.7rem, 3.2vw, 2.7rem);
  line-height: 1.12;
  text-wrap: balance;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
}

.section .eyebrow,
.section .feature-index,
.section .news-date,
.section .track-label,
.section .info-box span {
  color: var(--section-accent);
}

.card-grid,
.team-grid,
.feature-grid,
.news-list,
.tracks-grid {
  display: grid;
  gap: 1rem;
}

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

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

.feature-grid,
.news-list,
.tracks-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card,
.team-card,
.feature,
.news-item,
.track-card,
.info-box {
  padding: 1.25rem;
  border-radius: 4px;
  background: linear-gradient(180deg, rgba(20, 31, 47, 0.5), rgba(15, 24, 36, 0.3));
  transition: transform 220ms ease, box-shadow 220ms ease, filter 220ms ease;
  position: relative;
  overflow: hidden;
  box-shadow: none;
}

.card::before,
.team-card::before,
.feature::before,
.news-item::before,
.track-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgba(120, 215, 255, 0.72), rgba(255, 191, 116, 0.62), rgba(120, 215, 255, 0));
  opacity: 0.95;
}

.card:hover,
.team-card:hover,
.feature:hover,
.news-item:hover,
.track-card:hover {
  transform: translateY(-2px);
  filter: saturate(1.06);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.card h3,
.team-card h3,
.feature h3,
.news-item h3,
.track-card h3 {
  margin-bottom: 0.58rem;
  font-size: 1.25rem;
}

.team-card img {
  width: 100%;
  aspect-ratio: 28 / 31;
  object-fit: cover;
  object-position: center top;
  margin-bottom: 1rem;
  border-radius: 5px;
  transition: transform 420ms ease;
}

.team-card picture {
  display: block;
}

.team-card:hover img {
  transform: scale(1.03);
}

.split-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
}

.feature-index,
.news-date,
.track-label,
.info-box span {
  display: inline-block;
  margin-bottom: 0.6rem;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.news-list .news-item:first-child {
  grid-column: 1 / -1;
  min-height: 180px;
}

.news-list .news-item:first-child h3 {
  font-size: 1.45rem;
}

.track-card {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 0.95rem;
  align-items: center;
}

.track-card img {
  width: 92px;
  height: 92px;
  object-fit: cover;
  border-radius: 5px;
}

.track-card::after {
  content: "Play";
  position: absolute;
  top: 0.72rem;
  right: 0.72rem;
  padding: 0.12rem 0.35rem;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #dce7fa;
  background: linear-gradient(180deg, rgba(120, 215, 255, 0.48), rgba(120, 215, 255, 0.2));
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.26);
}

.section-alt .card,
.section-accent .team-card,
.section-accent .track-card,
.section .feature {
  background: linear-gradient(180deg, rgba(20, 32, 50, 0.36), rgba(13, 22, 34, 0.18));
}

.track-copy {
  display: grid;
  gap: 0.48rem;
}

.track-card audio {
  width: 100%;
  height: 38px;
  opacity: 0.94;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(420px, 1.1fr);
  gap: 2.2rem;
  align-items: start;
  margin-bottom: 2rem;
}

.footer-intro h2 {
  margin-top: 0.2rem;
  font-size: clamp(1.9rem, 3vw, 2.5rem);
}

.footer-lead {
  margin-top: 0.8rem;
  max-width: 42ch;
}

.footer-contact {
  display: grid;
  gap: 0.9rem;
  justify-items: start;
}

.footer-main-mail {
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 1.42rem;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  color: #e4ebf7;
}

.footer-address {
  color: #d3dceb;
}

.footer-people {
  display: grid;
  gap: 0.45rem;
}

.footer-people p {
  color: #e0e7f3;
  line-height: 1.55;
}

.footer-people a {
  color: #edf3ff;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.25rem;
}

.footer-links a {
  font-family: "Oswald", "Arial Narrow", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #dce7fa;
}

.footer-links p {
  color: #c1cbdb;
}

.legal-page .site-header {
  position: relative;
}

.legal-main {
  width: min(calc(100% - 2rem), 1080px);
  margin: 2rem auto;
}

.legal-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(22, 32, 48, 0.9), rgba(14, 21, 33, 0.95));
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.legal-card h1 {
  margin: 0.35rem 0 1.15rem;
  font-size: clamp(2rem, 4vw, 3rem);
}

.legal-card h2 {
  margin: 1.6rem 0 0.65rem;
  font-size: 1.2rem;
}

.legal-card p {
  margin-top: 0.8rem;
}

.legal-card strong {
  color: #fff;
}

.legal-nav {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

[data-reveal] {
  opacity: 0;
  transform: translate3d(0, 32px, 0) scale(0.985);
  transition:
    opacity 520ms cubic-bezier(0.2, 0.65, 0.2, 1),
    transform 560ms cubic-bezier(0.2, 0.65, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal][data-reveal-dir="left"] {
  transform: translate3d(-44px, 18px, 0) scale(0.985);
}

[data-reveal][data-reveal-dir="right"] {
  transform: translate3d(44px, 18px, 0) scale(0.985);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

@media (max-width: 1160px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero::before {
    display: none;
  }

  .hero::after {
    right: 8%;
    top: 3rem;
  }

  .hero-copy {
    min-height: 0;
    padding: 2.8rem 2rem 1rem;
  }

  .hero-media {
    padding: 0 2rem 2rem;
  }

  .hero-panel {
    left: 2rem;
    right: 2rem;
    bottom: 2rem;
  }

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

@media (max-width: 1024px) {
  .mainbar {
    min-height: 4.7rem;
    padding-block: 0.7rem;
    position: relative;
  }

  .brand-block {
    min-width: 0;
  }

  .brand {
    width: min(260px, 100%);
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.7rem);
    left: auto;
    right: 1.5rem;
    width: min(320px, calc(100vw - 2rem));
    z-index: 30;
    display: none;
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 0.22rem;
    padding: 0.55rem;
    margin-left: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    background: rgba(8, 12, 19, 0.98);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.34);
  }

  .site-header.nav-open .site-nav {
    display: grid;
  }

  .site-nav a {
    min-height: 0;
    border-left: 1px solid transparent;
    border-bottom: 0;
    padding: 0.58rem 0.62rem;
    font-size: 0.76rem;
    letter-spacing: 0.11em;
    border-radius: 3px;
  }

  .site-nav a::after {
    content: none;
  }

  .site-nav a:hover,
  .site-nav a.is-active {
    border-left-color: rgba(120, 215, 255, 0.72);
    background: rgba(120, 215, 255, 0.07);
  }

  .news-list .news-item:first-child {
    grid-column: auto;
  }

  .section::after {
    width: 70%;
    opacity: 0.7;
  }

  .split-layout,
  .site-footer,
  .feature-grid,
  .news-list,
  .tracks-grid {
    grid-template-columns: 1fr;
  }

  .footer-main-mail {
    font-size: 1.06rem;
  }
}

@media (max-width: 720px) {
  body::before,
  body::after {
    display: none;
  }

  .site-header,
  .hero,
  .section,
  .site-footer {
    width: min(calc(100% - 1rem), var(--max-width));
  }

  .header-shell {
    border-radius: 10px;
    backdrop-filter: none;
    box-shadow:
      0 12px 26px rgba(0, 0, 0, 0.26),
      inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }

  .site-nav {
    right: 0.5rem;
    width: calc(100vw - 1rem);
  }

  .hero-backdrop {
    border-radius: 10px;
    box-shadow:
      0 12px 30px rgba(0, 0, 0, 0.26),
      inset 0 1px 0 rgba(255, 255, 255, 0.05);
  }

  .hero-copy {
    padding: 2.2rem 1.2rem 0.5rem;
  }

  .hero::after {
    display: none;
  }

  .hero-media {
    padding: 0 0.9rem 0.9rem;
  }

  .hero-panel {
    left: 0.9rem;
    right: 0.9rem;
    bottom: 0.9rem;
  }

  .hero-media > picture > img {
    min-height: 360px;
  }

  .hero-panel {
    backdrop-filter: none;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.22);
  }

  .section-alt,
  .section-accent,
  .section-news,
  .site-footer {
    padding-inline: 0.85rem;
    padding-top: 1.05rem;
    padding-bottom: 0.55rem;
    border-radius: 0;
  }

  .card-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

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

  .button {
    width: 100%;
  }

  .track-card::after {
    top: 0.6rem;
    right: 0.6rem;
  }

  .section::after {
    display: none;
  }

  .legal-main {
    width: min(calc(100% - 1rem), 1080px);
  }

  .legal-card {
    padding: 1.25rem;
  }
}

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@keyframes driftGlow {
  0% {
    transform: translate3d(0, 0, 0) scale(0.95);
  }

  100% {
    transform: translate3d(-2vw, -2vh, 0) scale(1.06);
  }
}
