:root {
  --bg: #151319;
  --bg-deep: #0f0d14;
  --surface: #1d1827;
  --surface-soft: #241d31;
  --text: #f4f1ea;
  --muted: #b6aec2;
  --dim: #847993;
  --line: rgba(244, 241, 234, 0.15);
  --line-strong: rgba(244, 241, 234, 0.28);
  --accent: #5a30c2;
  --accent-ink: #f7f3ff;
  --shadow: rgba(5, 4, 9, 0.54);
  --max: 1180px;
  --pad: 22px;
  --radius: 8px;
  --font-sans: "Avenir Next", "Helvetica Neue", Arial, "PingFang TC", "Noto Sans TC", sans-serif;
  --font-display: var(--font-sans);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(180deg, rgba(90, 48, 194, 0.08), transparent 560px),
    var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9;
  pointer-events: none;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 3px 3px, 7px 7px;
  mix-blend-mode: overlay;
}

img,
picture {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

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

button {
  font: inherit;
}

:focus-visible {
  outline: 2px solid var(--text);
  outline-offset: 4px;
}

::selection {
  background: var(--accent);
  color: var(--accent-ink);
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 20;
  transform: translateY(-160%);
  border-radius: 999px;
  background: var(--text);
  color: var(--bg);
  padding: 10px 14px;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 8;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  min-height: 72px;
  padding: 14px var(--pad);
  border-bottom: 1px solid rgba(244, 241, 234, 0.1);
  background: rgba(15, 13, 20, 0.76);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-logo {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  object-fit: cover;
  object-position: center 61%;
}

.brand-name {
  white-space: nowrap;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 0.86rem;
}

.site-nav a {
  padding: 8px 0;
  transition: color 180ms ease;
}

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

.language-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.language-switch::after {
  content: "";
  position: absolute;
  right: 13px;
  width: 7px;
  height: 7px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  pointer-events: none;
}

.language-select {
  min-width: 104px;
  appearance: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 8px 34px 8px 13px;
  font: inherit;
  cursor: pointer;
}

.language-select:hover,
.language-select:focus-visible {
  border-color: rgba(244, 241, 234, 0.5);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  justify-self: end;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 8px 12px;
  cursor: pointer;
}

.nav-toggle-line {
  display: block;
  width: 16px;
  height: 1px;
  background: currentColor;
  transition: transform 180ms ease;
}

.nav-toggle-icon {
  display: grid;
  gap: 5px;
  width: 16px;
}

.nav-open .nav-toggle-line:first-child {
  transform: translateY(3px) rotate(45deg);
}

.nav-open .nav-toggle-line:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.nav-toggle-text {
  font-size: 0.82rem;
}

.hero {
  position: relative;
  min-height: 100dvh;
  overflow: hidden;
  display: grid;
  align-items: end;
}

.hero-media,
.hero-media img,
.hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: 50% 70%;
}

.hero-scrim {
  background: linear-gradient(
    180deg,
    rgba(15, 13, 20, 0) 0%,
    rgba(15, 13, 20, 0) 32%,
    rgba(15, 13, 20, 0.12) 46%,
    rgba(15, 13, 20, 0.52) 64%,
    rgba(15, 13, 20, 0.9) 84%,
    rgba(15, 13, 20, 0.97) 100%
  );
}

.hero-content {
  position: relative;
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: 130px var(--pad) 54px;
}

.hero-location {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 9ch;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 4.4rem;
  line-height: 0.94;
  letter-spacing: 0;
  font-weight: 700;
}

.hero-name {
  margin: 16px 0 0;
  font-size: 1.4rem;
  letter-spacing: 0.16em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  padding: 11px 18px;
  border: 1px solid var(--line-strong);
  color: var(--text);
  line-height: 1.1;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

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

.button:active {
  transform: translateY(1px);
}

.button-primary {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--accent-ink);
}

.button-ghost {
  background: rgba(15, 13, 20, 0.46);
  backdrop-filter: blur(12px);
}

.button-small {
  min-height: 38px;
  padding: 9px 14px;
  font-size: 0.86rem;
}

.section {
  padding: 108px 0;
  background: var(--bg);
}

.section:nth-of-type(2n + 1) {
  background: var(--bg-deep);
}

.section-shell {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 0 var(--pad);
}

.section-title {
  margin: 0;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: 0;
}

.lead {
  margin: 0;
  max-width: 740px;
  color: var(--text);
  font-size: 1.25rem;
  line-height: 1.7;
}

.compact-header {
  max-width: 760px;
  margin-bottom: 42px;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  gap: 56px;
  align-items: end;
}

.about-copy {
  display: grid;
  gap: 26px;
}

.about-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  color: var(--muted);
}

.about-columns p {
  margin: 0;
}

.about-photo {
  margin: 0;
}

.about-photo img,
.ep-cover img,
.member-card img,
.photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.about-photo img {
  aspect-ratio: 3 / 2;
  box-shadow: 0 32px 90px var(--shadow);
}

.contact-list span {
  color: var(--dim);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.release-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--bg-deep);
}

.release-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: var(--bg-deep);
}

.release-background::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(15, 13, 20, 0.73),
    rgba(15, 13, 20, 0.68) 48%,
    rgba(15, 13, 20, 0.76)
  );
}

.release-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.82) contrast(1.03);
  transform: scale(1.02);
}

.release-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
  grid-template-areas: "player copy";
  gap: 58px;
  align-items: start;
}

.release-copy {
  grid-area: copy;
  display: grid;
  gap: 20px;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.58);
}

.release-copy > p:not(.lead):not(.release-name) {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
}

.release-name {
  margin: 0;
  color: var(--accent-ink);
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw, 3.65rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.stream-links,
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.text-link {
  color: var(--text);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
  transition: color 180ms ease, border-color 180ms ease;
}

.text-link:hover {
  color: var(--muted);
  border-color: var(--text);
}

.spotify-embed {
  grid-area: player;
  display: grid;
  place-items: center;
  min-height: 352px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
  overflow: hidden;
}

.spotify-embed > span {
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.spotify-embed > a {
  color: var(--muted);
}

.spotify-embed iframe {
  display: block;
  width: 100%;
  height: 352px;
  border: 0;
  border-radius: 12px;
}

.music-grid {
  display: block;
}

.ep-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: 0 28px 80px rgba(5, 4, 9, 0.24);
}

.ep-overview {
  display: grid;
  align-content: start;
  gap: 22px;
  padding: 22px;
  border-right: 1px solid var(--line);
}

.ep-cover img {
  aspect-ratio: 1;
  outline: 1px solid rgba(255, 255, 255, 0.1);
  outline-offset: -1px;
}

.ep-copy {
  display: grid;
  gap: 10px;
}

.ep-copy h3,
.tracklist-header h3,
.video-card h3,
.member-card h3 {
  margin: 0;
  color: var(--text);
  font-size: 1.12rem;
  line-height: 1.28;
  font-weight: 500;
}

.ep-copy h3 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
  text-wrap: balance;
}

.ep-meta,
.tracklist-header > span {
  color: var(--dim);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ep-copy p,
.track-copy p {
  margin: 0;
  color: var(--muted);
  text-wrap: pretty;
}

.music-card-actions .button {
  justify-self: stretch;
  min-width: 0;
  padding-inline: 6px;
  font-size: 0.76rem;
}

.music-card-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  margin-top: 8px;
}

.ep-tracklist {
  padding: 26px;
}

.tracklist-header {
  display: grid;
  gap: 4px;
  padding-bottom: 10px;
}

.track-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.track-list li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 14px;
  min-height: 44px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.track-list li:last-child {
  border-bottom: 0;
}

.track-number,
.track-duration {
  color: var(--dim);
  font-size: 0.78rem;
  font-variant-numeric: tabular-nums;
}

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

.track-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.track-heading h4 {
  margin: 0;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 500;
  text-wrap: balance;
}

.track-copy p {
  margin-top: 5px;
  font-size: 0.9rem;
  line-height: 1.55;
}

.track-badge {
  display: inline-flex;
  margin-top: 9px;
  border: 1px solid rgba(244, 241, 234, 0.2);
  border-radius: 999px;
  padding: 4px 8px;
  color: var(--text);
  background: rgba(90, 48, 194, 0.2);
  font-size: 0.7rem;
  line-height: 1.2;
}

.video-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(360px, 64%);
  gap: 18px;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 18px;
  overscroll-behavior-inline: contain;
  overscroll-behavior-block: auto;
  scroll-snap-type: inline mandatory;
  touch-action: pan-x pan-y;
  scrollbar-color: var(--line-strong) transparent;
  scrollbar-width: thin;
}

.video-frame-wrap {
  position: relative;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  overflow: hidden;
  background: #111019;
}

.video-frame {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-card {
  display: grid;
  gap: 14px;
  min-width: 0;
  align-content: start;
  scroll-snap-align: start;
}

.video-frame-small {
  min-height: 0;
}

.live-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(15, 13, 20, 0.78) 0%, rgba(15, 13, 20, 0.68) 48%, rgba(15, 13, 20, 0.92) 100%),
    linear-gradient(90deg, rgba(15, 13, 20, 0.72) 0%, rgba(15, 13, 20, 0.3) 50%, rgba(15, 13, 20, 0.72) 100%),
    url("assets/images/live-background.jpg") center 44% / cover no-repeat,
    var(--bg-deep);
}

.live-section .section-shell {
  position: relative;
  z-index: 1;
}

.milestones-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(15, 13, 20, 0.7) 0%, rgba(15, 13, 20, 0.58) 48%, rgba(15, 13, 20, 0.86) 100%),
    linear-gradient(90deg, rgba(15, 13, 20, 0.82) 0%, rgba(15, 13, 20, 0.28) 52%, rgba(15, 13, 20, 0.7) 100%),
    url("assets/images/shows-background.jpg") center 48% / cover no-repeat,
    var(--bg-deep);
}

.milestones-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image: linear-gradient(90deg, transparent 0 11.95%, var(--line) 12%, transparent 12.05%);
  background-size: calc(100% / 6) 100%;
}

.milestones-shell {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(34px, 5vw, 62px);
}

.milestones-header {
  position: relative;
  z-index: 1;
}

.performance-cloud {
  position: relative;
  width: 100%;
}

.word-cloud-svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

.cloud-word {
  color: var(--muted);
  fill: var(--muted);
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.025em;
}

.cloud-word-featured {
  color: var(--text);
  fill: var(--text);
  font-weight: 700;
  letter-spacing: -0.045em;
  paint-order: stroke fill;
  stroke: rgba(15, 13, 20, 0.36);
  stroke-width: 1.5px;
}

.cloud-word-md {
  color: var(--muted);
  fill: var(--muted);
}

.cloud-word-sm {
  color: var(--dim);
  fill: var(--dim);
}

.cloud-word-faint {
  opacity: 0.78;
}

.member-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(200px, 1fr));
  gap: 18px;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 18px;
  overscroll-behavior-inline: contain;
  overscroll-behavior-block: auto;
  scroll-snap-type: inline mandatory;
  touch-action: pan-x pan-y;
  scrollbar-color: var(--line-strong) transparent;
  scrollbar-width: thin;
}

.member-card {
  display: grid;
  min-width: 0;
  gap: 8px;
  align-content: start;
  scroll-snap-align: start;
}

.member-card picture {
  aspect-ratio: 9 / 11;
  margin-bottom: 10px;
}

.member-card span {
  color: var(--dim);
}

.member-card .member-bio {
  max-width: 58ch;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: clamp(62px, 5.8vw, 84px);
  gap: 8px;
  grid-auto-flow: dense;
}

.photo-grid a {
  grid-column: span 2;
  grid-row: span 1;
  min-width: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
}

.photo-grid a:nth-child(1),
.photo-grid a:nth-child(6),
.photo-grid a:nth-child(14),
.photo-grid a:nth-child(18) {
  grid-column: span 4;
  grid-row: span 2;
}

.photo-grid a:nth-child(12),
.photo-grid a:nth-child(17) {
  grid-column: span 2;
  grid-row: span 3;
}

.photo-grid a:nth-child(8),
.photo-grid a:nth-child(16) {
  grid-column: span 4;
}

.photo-grid img {
  transition: transform 320ms ease, filter 320ms ease;
}

.photo-grid a:hover img {
  transform: scale(1.025);
  filter: contrast(1.08);
}

.download-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(90, 48, 194, 0.26), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.04);
}

.download-panel p {
  max-width: 620px;
  margin: 12px 0 0;
  color: var(--muted);
}

.download-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  flex: 0 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 1fr);
  gap: 52px;
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--line);
}

.contact-list a {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 18px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.035);
  transition: background-color 180ms ease;
}

.contact-list a:hover {
  background: rgba(90, 48, 194, 0.16);
}

.contact-list strong {
  overflow-wrap: anywhere;
  font-weight: 500;
}

.social-links {
  grid-column: 2;
  padding-top: 2px;
}

.social-links a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 13px;
  color: var(--muted);
  transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.social-links a:hover {
  color: var(--text);
  border-color: var(--accent);
  background: rgba(90, 48, 194, 0.14);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px var(--pad);
  border-top: 1px solid var(--line);
  color: var(--dim);
  background: var(--bg-deep);
  font-size: 0.9rem;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--muted);
}

.lightbox {
  width: min(1120px, calc(100vw - 32px));
  max-height: calc(100dvh - 32px);
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--bg-deep);
  color: var(--text);
}

.lightbox::backdrop {
  background: rgba(7, 6, 10, 0.88);
}

.lightbox img {
  width: 100%;
  max-height: calc(100dvh - 64px);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 1;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: rgba(15, 13, 20, 0.7);
  color: transparent;
  cursor: pointer;
}

.lightbox-close::before,
.lightbox-close::after {
  content: "";
  position: absolute;
  inset: 20px 11px auto;
  height: 1px;
  background: var(--text);
}

.lightbox-close::before {
  transform: rotate(45deg);
}

.lightbox-close::after {
  transform: rotate(-45deg);
}

.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 620ms ease, transform 620ms ease;
}

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

@media (min-width: 760px) {
  .hero h1 {
    font-size: 7.4rem;
  }
}

@media (min-width: 1180px) {
  :root {
    --pad: 32px;
  }

  .hero h1 {
    font-size: 10.4rem;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  }

  .nav-toggle {
    display: inline-flex;
    justify-self: center;
  }

  .site-nav {
    position: fixed;
    inset: 72px 12px auto;
    display: grid;
    justify-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(15, 13, 20, 0.96);
    box-shadow: 0 24px 72px var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-open .site-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 13px;
    border-radius: 6px;
  }

  .site-nav a:hover {
    background: rgba(255, 255, 255, 0.05);
  }

  .language-switch {
    justify-self: end;
  }

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

  .release-grid {
    grid-template-areas:
      "copy"
      "player";
  }

  .about-photo {
    max-width: 520px;
  }

  .social-links {
    grid-column: auto;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 66px;
    gap: 10px;
  }

  .brand-name {
    display: none;
  }

  .language-select {
    min-width: 94px;
    padding-inline: 11px 30px;
  }

  .site-nav {
    top: 66px;
  }

  .hero {
    align-items: end;
  }

  .hero-media img {
    object-position: 56% 50%;
  }

  .hero-content {
    padding: 104px var(--pad) 36px;
  }

  .hero h1 {
    font-size: 4rem;
    max-width: 7.5ch;
  }

  .hero-name {
    font-size: 1.1rem;
  }

  .section {
    padding: 76px 0;
  }

  .section-title {
    font-size: 2.35rem;
  }

  .lead {
    font-size: 1.08rem;
  }

  .about-section {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background:
      linear-gradient(180deg, rgba(15, 13, 20, 0.64) 0%, rgba(15, 13, 20, 0.82) 46%, rgba(15, 13, 20, 0.97) 100%),
      linear-gradient(90deg, rgba(15, 13, 20, 0.9) 0%, rgba(15, 13, 20, 0.34) 100%),
      url("assets/images/about.jpg") center / cover no-repeat;
  }

  .about-photo {
    display: none;
  }

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

  .video-carousel,
  .member-grid {
    margin-inline: calc(var(--pad) * -1);
    padding-inline: var(--pad);
    scroll-padding-inline: var(--pad);
  }

  .video-carousel {
    grid-auto-columns: min(86vw, 560px);
  }

  .member-grid {
    grid-template-columns: repeat(5, min(78vw, 280px));
  }

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

  .ep-overview {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .release-grid {
    gap: 32px;
  }

  .release-background video {
    object-position: 54% center;
  }

  .download-panel,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .download-actions {
    justify-content: flex-start;
  }

  .photo-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-auto-rows: 52px;
    gap: 6px;
  }

  .milestones-shell {
    gap: 38px;
  }

  .performance-cloud {
    padding: 0;
  }

  .contact-list a {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

@media (max-width: 440px) {
  :root {
    --pad: 18px;
  }

  .hero h1 {
    font-size: 3.2rem;
  }

  .hero-actions,
  .download-actions,
  .stream-links,
  .social-links {
    flex-direction: column;
    align-items: stretch;
  }

  .button,
  .social-links a {
    width: 100%;
  }

}

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

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

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

  .release-background video {
    transform: none;
  }
}

@page {
  size: A4;
  margin: 12mm;
}

@media print {

  .milestones-section {
    overflow: visible;
    break-before: page;
    break-after: page;
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }

  .milestones-section::before,
  .performance-cloud {
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }

  .milestones-shell {
    gap: 9mm;
  }

  .performance-cloud {
    break-inside: avoid;
  }

  .performance-cloud {
    padding: 9mm;
    box-shadow: none;
  }

  .word-cloud-svg {
    overflow: visible;
  }

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