:root {
  color-scheme: light;
  --bg: #f3f4f1;
  --background: var(--bg);
  --surface: #f8f8f3;
  --surface-raised: #fdfdfa;
  --surface-glass: rgba(255, 255, 255, 0.58);
  --text: #111518;
  --text-soft: #50606a;
  --metadata: #596b76;
  --muted: var(--metadata);
  --dim: #829099;
  --line: #c9ccd0;
  --line-soft: rgba(80, 110, 130, 0.24);
  --line-strong: rgba(80, 110, 130, 0.38);
  --ice: #b7ddf2;
  --signal: #14718e;
  --signal-bright: #7edcff;
  --signal-deep: #506e82;
  --black: #050607;
  --signal-wash: rgba(126, 220, 255, 0.12);
  --frosted: rgba(255, 255, 255, 0.48);
  --frosted-hover: rgba(244, 252, 255, 0.74);
  --header-bg: rgba(243, 244, 241, 0.78);
  --nav-bg: rgba(249, 250, 247, 0.82);
  --nav-active: rgba(126, 220, 255, 0.12);
  --panel-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88), 0 14px 38px rgba(70, 86, 94, 0.055);
  --nav-shadow: 0 1rem 3rem rgba(61, 75, 83, 0.14);
  --ambient-primary: rgba(183, 221, 242, 0.3);
  --ambient-secondary: rgba(255, 255, 255, 0.5);
  --logo-filter: brightness(0);
  --max-width: 1180px;
  --pad: clamp(1.25rem, 4vw, 3rem);
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

:root[data-period="dusk"],
body[data-period="dusk"] {
  color-scheme: light;
  --bg: #e7ebea;
  --surface: #eef1ef;
  --surface-raised: #f6f7f4;
  --surface-glass: rgba(245, 248, 247, 0.58);
  --text: #14191c;
  --text-soft: #4d606b;
  --metadata: #586d79;
  --dim: #788a94;
  --line: #bdc7cb;
  --line-soft: rgba(69, 104, 122, 0.26);
  --line-strong: rgba(69, 104, 122, 0.4);
  --signal: #176f8d;
  --signal-bright: #74d5fa;
  --signal-wash: rgba(116, 213, 250, 0.14);
  --frosted: rgba(244, 247, 246, 0.5);
  --frosted-hover: rgba(237, 248, 251, 0.72);
  --header-bg: rgba(231, 235, 234, 0.8);
  --nav-bg: rgba(239, 243, 242, 0.84);
  --nav-active: rgba(116, 213, 250, 0.13);
  --panel-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), 0 16px 42px rgba(48, 73, 86, 0.07);
  --nav-shadow: 0 1rem 3rem rgba(45, 65, 76, 0.18);
  --ambient-primary: rgba(125, 191, 221, 0.32);
  --ambient-secondary: rgba(226, 235, 237, 0.55);
}

:root[data-period="after-hours"],
body[data-period="after-hours"] {
  color-scheme: dark;
  --bg: #050607;
  --surface: #0b0e10;
  --surface-raised: #11161a;
  --surface-glass: rgba(14, 18, 21, 0.7);
  --text: #e8ecec;
  --text-soft: #b6c0c5;
  --metadata: #8b9ca6;
  --dim: #59666d;
  --line: rgba(232, 236, 236, 0.15);
  --line-soft: rgba(166, 193, 205, 0.18);
  --line-strong: rgba(207, 226, 234, 0.3);
  --ice: #b9e5f7;
  --signal: #8bdcff;
  --signal-bright: #8bdcff;
  --signal-deep: #678aa0;
  --signal-wash: rgba(139, 220, 255, 0.075);
  --frosted: rgba(14, 18, 21, 0.62);
  --frosted-hover: rgba(22, 31, 36, 0.78);
  --header-bg: rgba(5, 6, 7, 0.78);
  --nav-bg: rgba(8, 10, 12, 0.88);
  --nav-active: rgba(139, 220, 255, 0.08);
  --panel-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025), 0 18px 44px rgba(0, 0, 0, 0.24);
  --nav-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.42);
  --ambient-primary: rgba(61, 102, 134, 0.2);
  --ambient-secondary: rgba(20, 35, 48, 0.17);
  --logo-filter: brightness(0) invert(1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 2rem;
  background: var(--background);
}

body {
  margin: 0;
  min-width: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 78% 26%, var(--ambient-primary), transparent 34rem),
    linear-gradient(145deg, var(--ambient-secondary), transparent 46rem),
    var(--background);
  background-attachment: fixed;
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.5;
  text-transform: lowercase;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: color 1800ms ease, background-color 1800ms ease;
}

button,
a {
  color: inherit;
}

button {
  font: inherit;
}

a {
  text-decoration-thickness: 1px;
  text-underline-offset: 0.25em;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--signal);
  outline-offset: 4px;
}

::selection {
  color: var(--black);
  background: var(--signal-bright);
}

[hidden] {
  display: none !important;
}

#site-shell {
  position: relative;
  z-index: 1;
}

.desktop-header,
.identity-card,
.portrait,
.mobile-nav {
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

body.lighting-shift,
body.lighting-shift .desktop-header,
body.lighting-shift .current-strip,
body.lighting-shift .social-link,
body.lighting-shift .identity-card,
body.lighting-shift .portrait,
body.lighting-shift .mobile-nav {
  transition-duration: 1800ms;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 1rem;
  left: 1rem;
  padding: 0.7rem 1rem;
  color: var(--background);
  background: var(--text);
  transform: translateY(-160%);
}

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

.desktop-header {
  position: sticky;
  z-index: 30;
  top: 0;
  display: flex;
  width: 100%;
  min-height: calc(4rem + env(safe-area-inset-top));
  padding-top: env(safe-area-inset-top);
  padding-inline: var(--pad);
  border-bottom: 1px solid var(--line-soft);
  background: var(--header-bg);
  box-shadow: 0 1px 0 color-mix(in srgb, white 38%, transparent);
  backdrop-filter: blur(18px) saturate(1.08);
  align-items: center;
  justify-content: space-between;
}

.desktop-header .wordmark {
  display: block;
  width: 5.2rem;
  text-decoration: none;
}

.desktop-header .wordmark img {
  display: block;
  width: 100%;
  height: auto;
  filter: var(--logo-filter);
  opacity: 0.9;
  transition: filter 1200ms ease, opacity 180ms ease;
}

.desktop-header nav {
  display: none;
}

.mobile-header-status {
  display: flex;
  margin: 0;
  color: var(--muted);
  align-items: center;
  gap: 0.45rem;
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.07em;
  text-transform: lowercase;
}

.mobile-header-status span {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--signal-bright);
  box-shadow: 0 0 0.7rem color-mix(in srgb, var(--signal-bright) 46%, transparent);
}

main,
footer {
  width: min(100%, var(--max-width));
  margin-inline: auto;
  padding-inline: var(--pad);
}

.link-hub {
  display: flex;
  min-height: min(790px, 100svh);
  padding-top: max(2.5rem, env(safe-area-inset-top));
  padding-bottom: calc(6.25rem + env(safe-area-inset-bottom));
  flex-direction: column;
  justify-content: flex-start;
}

.eyebrow,
.section-kicker,
.section-heading,
.release-meta,
.featured-meta,
.contact-list,
footer,
.identity-card dl,
.coordinates,
.gig-row {
  font-family: var(--mono);
  font-size: 0.69rem;
  line-height: 1.35;
  letter-spacing: 0.08em;
  text-transform: lowercase;
}

.eyebrow {
  display: flex;
  margin-bottom: clamp(2.5rem, 12vh, 7rem);
  color: var(--muted);
  justify-content: space-between;
}

.eyebrow span:first-child::before {
  display: inline-block;
  width: 0.45rem;
  height: 0.45rem;
  margin-right: 0.5rem;
  border-radius: 50%;
  background: var(--signal-bright);
  box-shadow: 0 0 1rem color-mix(in srgb, var(--signal-bright) 52%, transparent);
  content: "";
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 100%;
  margin-bottom: 0.35rem;
  font-size: clamp(5rem, 28vw, 10rem);
  font-weight: 500;
  line-height: 0.82;
  letter-spacing: -0.08em;
}

.hero-logo {
  width: clamp(15rem, 68vw, 38rem);
  font-size: 0;
  letter-spacing: 0;
  line-height: 0;
}

.hero-logo img {
  display: block;
  width: 100%;
  height: auto;
  filter: var(--logo-filter);
  opacity: 0.94;
  transition: filter 1200ms ease, opacity 1200ms ease;
}

.tagline {
  max-width: 34rem;
  margin: 1.35rem 0 1.25rem;
  color: var(--text-soft);
  font-size: clamp(1.05rem, 3vw, 1.35rem);
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.current-strip {
  display: grid;
  width: 100%;
  max-width: 51rem;
  min-height: 4.8rem;
  margin-bottom: 0.7rem;
  padding: 0.85rem 0.95rem;
  border: 1px solid var(--line-soft);
  color: var(--text);
  background: var(--frosted);
  box-shadow: var(--panel-shadow);
  backdrop-filter: blur(8px) saturate(1.05);
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 1rem;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.07em;
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.current-strip:hover {
  border-color: var(--signal);
  background: var(--frosted-hover);
}

.current-strip-main {
  display: grid;
  min-width: 0;
  grid-row: 1 / span 2;
  gap: 0.18rem;
}

.current-strip-main > span,
.current-strip-status {
  color: var(--muted);
}

.current-strip-main strong {
  overflow: hidden;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.025em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.current-strip-status,
.current-strip-action {
  justify-self: end;
}

.current-strip-action {
  color: var(--signal);
}

.social-grid {
  display: grid;
  gap: 0.55rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.social-link {
  display: flex;
  min-height: 3.35rem;
  padding: 0.8rem 0.95rem;
  border: 1px solid var(--line-soft);
  background: var(--frosted);
  box-shadow: var(--panel-shadow);
  backdrop-filter: blur(8px) saturate(1.05);
  align-items: center;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: lowercase;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.social-link:hover {
  color: var(--text);
  border-color: var(--signal);
  background: var(--frosted-hover);
}

.social-link span:last-child {
  color: var(--muted);
  transition: color 180ms ease, transform 180ms ease;
}

.social-link:hover span:last-child {
  color: var(--signal);
  transform: translate(0.12rem, -0.12rem);
}

.featured,
.section {
  scroll-margin-top: 5rem;
}

.featured {
  padding: 1.1rem 0 5rem;
  border-top: 1px solid var(--line-strong);
}

.section-kicker {
  display: flex;
  margin-bottom: 1rem;
  color: var(--muted);
  justify-content: space-between;
}

.section-kicker p {
  margin: 0;
}

#featured-content {
  min-height: 38rem;
}

.featured-frame {
  position: relative;
  display: grid;
  min-height: 38rem;
  overflow: hidden;
  border: 1px solid var(--line);
  color: #f2f5f5;
  background: var(--black);
  isolation: isolate;
}

.featured-index {
  display: none;
}

.featured-art,
.artwork {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, var(--signal-wash), transparent 45%),
    linear-gradient(45deg, var(--surface), var(--surface-raised));
}

.featured-art {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.featured-art::after,
.artwork::after,
.portrait::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.featured-art::after {
  background:
    linear-gradient(180deg, rgba(5, 6, 7, 0.08), rgba(5, 6, 7, 0.9)),
    repeating-linear-gradient(0deg, transparent 0 3px, rgba(255, 255, 255, 0.02) 3px 4px);
}

.artwork::after {
  background: linear-gradient(180deg, transparent 62%, rgba(5, 6, 7, 0.34));
}

.portrait::after {
  background:
    linear-gradient(180deg, transparent 70%, rgba(5, 6, 7, 0.16)),
    repeating-linear-gradient(0deg, transparent 0 4px, rgba(255, 255, 255, 0.018) 4px 5px);
}

.featured-art img,
.artwork img,
.portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-art.is-missing::before,
.artwork.is-missing::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 72%;
  aspect-ratio: 1;
  border: 1px solid var(--line-soft);
  border-radius: 50%;
  box-shadow: 0 0 7rem var(--signal-wash), inset 0 0 4rem var(--signal-wash);
  content: "";
  transform: translate(-50%, -50%);
}

.featured-art:not(.is-missing)::after {
  background: linear-gradient(180deg, rgba(5, 6, 7, 0.08), rgba(5, 6, 7, 0.9));
}

.featured-copy {
  display: flex;
  min-height: 38rem;
  padding: 1.25rem;
  flex-direction: column;
  justify-content: flex-end;
}

.featured-meta {
  display: flex;
  margin-bottom: 1rem;
  color: #d2dadc;
  flex-wrap: wrap;
  gap: 0.5rem 1.1rem;
}

.featured-title {
  max-width: 9ch;
  margin-bottom: 1.4rem;
  font-size: clamp(3.6rem, 16vw, 8.5rem);
  font-weight: 500;
  line-height: 0.82;
  letter-spacing: -0.075em;
  text-transform: lowercase;
}

.featured-title span {
  display: block;
}

.signal-action,
.inline-link {
  display: inline-flex;
  width: max-content;
  min-height: 2.9rem;
  padding: 0.75rem 1rem;
  color: var(--background);
  background: var(--text);
  align-items: center;
  gap: 1.5rem;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: lowercase;
  transition: background 180ms ease;
}

.signal-action:hover,
.inline-link:hover {
  color: var(--black);
  background: var(--signal-bright);
}

.section {
  padding-block: 6rem;
  border-top: 1px solid var(--line-strong);
}

.section-heading {
  display: flex;
  margin-bottom: 2.5rem;
  color: var(--muted);
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

.section-heading > p {
  display: none;
  margin-bottom: 0.25rem;
  text-align: right;
}

.section-index {
  margin-bottom: 0.45rem;
  color: var(--muted);
}

.section-heading h2 {
  margin: 0;
  color: var(--text);
  font-family: var(--sans);
  font-size: clamp(2.7rem, 10vw, 5rem);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.055em;
  text-transform: lowercase;
}

.release-list {
  border-top: 1px solid var(--line);
}

.release-card {
  border-bottom: 1px solid var(--line);
}

.release-card details > summary {
  display: grid;
  padding: 1.15rem 0;
  cursor: pointer;
  list-style: none;
  grid-template-columns: 3.2rem minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.75rem;
  transition: color 180ms ease, background 180ms ease;
}

.release-card details[open] > summary {
  background: linear-gradient(90deg, var(--signal-wash), transparent 58%);
}

.release-card details > summary::-webkit-details-marker {
  display: none;
}

.release-number {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.72rem;
}

.release-summary-title {
  min-width: 0;
}

.release-type {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.07em;
  text-transform: lowercase;
}

.release-summary-title h3 {
  margin: 0;
  overflow: hidden;
  font-size: clamp(1.2rem, 5vw, 2.1rem);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.035em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.release-summary-date {
  display: none;
}

.release-toggle {
  display: grid;
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--muted);
  place-items: center;
  transition: color 180ms ease, border-color 180ms ease, transform 250ms ease;
}

.release-card details[open] .release-toggle {
  color: var(--signal);
  border-color: var(--signal);
  box-shadow: 0 0 1.2rem var(--signal-wash);
  transform: rotate(45deg);
}

.release-card summary:hover .release-toggle {
  color: var(--signal);
  border-color: var(--signal);
}

.release-detail {
  display: grid;
  padding: 0.5rem 0 2rem 3.95rem;
  animation: detail-in 220ms ease-out both;
  gap: 1.5rem;
}

@keyframes detail-in {
  from { opacity: 0; transform: translateY(-0.4rem); }
  to { opacity: 1; transform: translateY(0); }
}

.artwork {
  width: 100%;
  aspect-ratio: 1;
  border: 1px solid var(--line);
}

.artwork-label {
  position: absolute;
  z-index: 1;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  display: flex;
  color: #f0f4f5;
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: lowercase;
  justify-content: space-between;
}

.release-description {
  max-width: 39rem;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.65;
}

.release-meta {
  display: grid;
  margin: 0 0 1.4rem;
  gap: 0.6rem;
}

.release-meta div {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
}

.release-meta dt {
  color: var(--muted);
}

.release-meta dd {
  margin: 0;
}

.release-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.release-links a,
.contact-socials a {
  display: inline-flex;
  min-height: 2.75rem;
  padding: 0.65rem 0.8rem;
  border: 1px solid var(--line);
  align-items: center;
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: lowercase;
  transition: color 180ms ease, border-color 180ms ease;
}

.release-links a:hover,
.contact-socials a:hover {
  color: var(--signal);
  border-color: var(--signal);
}

.release-links-more {
  margin-top: 0.5rem;
}

.release-links-toggle {
  display: inline-flex;
  min-height: 2.75rem;
  padding: 0.65rem 0.8rem;
  border: 1px solid var(--line);
  color: var(--muted);
  background: transparent;
  align-items: center;
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  text-transform: lowercase;
  cursor: pointer;
  transition: color 180ms ease, border-color 180ms ease;
}

.release-links-toggle:hover,
.release-links-toggle[aria-expanded="true"] {
  color: var(--signal);
  border-color: var(--signal);
}

.release-links-secondary {
  margin-top: 0.5rem;
}

.identity-grid {
  display: grid;
  gap: 1rem;
}

.identity-card,
.portrait {
  min-height: 21rem;
  border: 1px solid var(--line-soft);
  background: var(--surface-glass);
  box-shadow: var(--panel-shadow);
  backdrop-filter: blur(8px) saturate(1.04);
}

.identity-card {
  display: flex;
  padding: 1.2rem;
  flex-direction: column;
  justify-content: space-between;
}

.identity-name {
  margin-bottom: 2rem;
  font-size: clamp(3rem, 16vw, 6rem);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.065em;
}

.identity-card dl {
  margin: 0;
}

.identity-card dl div {
  display: grid;
  padding: 0.5rem 0;
  border-top: 1px solid var(--line);
  grid-template-columns: 7.2rem 1fr;
}

.identity-card dt,
.coordinates > p:first-child {
  color: var(--muted);
}

.identity-card dd {
  margin: 0;
}

.portrait {
  position: relative;
  display: block;
  width: clamp(12rem, 24vw, 18rem);
  max-width: 100%;
  min-height: 0;
  aspect-ratio: 3 / 4;
  align-self: start;
  justify-self: end;
  overflow: hidden;
  padding: 0;
  color: var(--dim);
  background:
    radial-gradient(circle at 52% 42%, var(--signal-wash), transparent 30%),
    repeating-linear-gradient(90deg, transparent 0 16%, var(--line-soft) 16% 16.18%),
    var(--surface);
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
}

.portrait.has-image {
  padding: 0;
}

.portrait img {
  position: absolute;
  inset: 0;
  object-fit: contain;
  filter: saturate(0.78) contrast(1.08);
}

.portrait::after {
  z-index: 1;
}

.portrait-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  padding: 1.2rem;
  align-items: center;
  justify-content: space-between;
}

.portrait-caption {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  padding: 0.65rem 0.7rem;
  color: #eef2f2;
  background: linear-gradient(180deg, transparent, rgba(5, 6, 7, 0.78));
  flex-direction: column;
  gap: 0.16rem;
  font-size: 0.52rem;
  letter-spacing: 0.08em;
}

.bio-copy {
  display: grid;
  margin-top: 2rem;
  gap: 2rem;
}

.bio-text > p:first-child {
  max-width: 42rem;
  margin: 0;
  font-size: clamp(1.35rem, 5vw, 2.2rem);
  line-height: 1.25;
  letter-spacing: -0.035em;
}

.bio-text > p:not(:first-child) {
  max-width: 39rem;
  margin: 1.5rem 0 0;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.65;
}

.bio-text > p:last-child {
  color: var(--text);
}

.bio-text strong {
  color: var(--text);
  font-weight: 600;
}

.bio-text a {
  color: inherit;
  text-decoration-color: var(--signal);
}

.bio-text a:hover {
  color: var(--signal);
}

.coordinates > p {
  margin-bottom: 0.45rem;
}

.coordinates ul {
  display: flex;
  margin: 1.5rem 0 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 0.7rem 1rem;
  list-style: none;
}

.coordinates li {
  color: var(--text-soft);
  text-transform: lowercase;
}

.coordinates li::before {
  color: var(--signal);
  content: "+ ";
}

.gig-list {
  border-top: 1px solid var(--line);
}

.gig-row {
  display: grid;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
  gap: 0.45rem;
}

.gig-date,
.gig-country {
  color: var(--muted);
}

.gig-city {
  font-family: var(--sans);
  font-size: 1.65rem;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.gig-row a {
  color: var(--signal);
  text-decoration: none;
}

.past-gigs {
  margin-top: 4rem;
}

.past-gigs h3 {
  margin-bottom: 1rem;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: lowercase;
}

.past-gigs .gig-row {
  color: var(--muted);
}

.signal-status {
  display: block !important;
}

.signal-status span {
  display: inline-block;
  width: 0.45rem;
  height: 0.45rem;
  margin-right: 0.35rem;
  border-radius: 50%;
  background: var(--signal-bright);
  box-shadow: 0 0 0.7rem color-mix(in srgb, var(--signal-bright) 46%, transparent);
}

.contact-list {
  border-top: 1px solid var(--line);
}

.contact-list a {
  display: grid;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  grid-template-columns: 6.5rem minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.7rem;
}

.contact-list a span:first-child {
  color: var(--muted);
}

.contact-list a span:nth-child(2) {
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: lowercase;
}

.contact-list a:hover span:nth-child(2) {
  color: var(--signal);
}

.contact-socials {
  display: flex;
  margin-top: 1.5rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

footer {
  display: flex;
  min-height: 12rem;
  padding-top: 2rem;
  padding-bottom: calc(6.5rem + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line-strong);
  color: var(--muted);
  justify-content: space-between;
  gap: 1rem;
}

footer a {
  text-decoration: none;
}

.mobile-nav {
  position: fixed;
  z-index: 20;
  right: 0.7rem;
  bottom: max(0.7rem, env(safe-area-inset-bottom));
  left: 0.7rem;
  display: grid;
  min-height: 3.9rem;
  padding: 0.3rem;
  border: 1px solid var(--line-soft);
  background: var(--nav-bg);
  box-shadow: var(--nav-shadow);
  backdrop-filter: blur(18px) saturate(1.08);
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, opacity 240ms ease, transform 240ms ease;
}

body.mobile-nav-managed:not(.mobile-nav-visible) .mobile-nav {
  opacity: 0;
  pointer-events: none;
  transform: translateY(calc(100% + 2rem));
}

.mobile-nav a {
  display: grid;
  min-width: 0;
  border-radius: 1px;
  color: var(--muted);
  place-items: center;
  font-family: var(--mono);
  font-size: 0.61rem;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: lowercase;
  transition: color 180ms ease, background 180ms ease;
}

.mobile-nav a:hover,
.mobile-nav a[aria-current="location"] {
  color: var(--signal);
  background: var(--nav-active);
}

.noscript {
  position: fixed;
  z-index: 100;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  margin: 0;
  padding: 1rem;
  color: var(--background);
  background: var(--text);
  font-family: var(--mono);
  font-size: 0.7rem;
}

@media (min-width: 620px) {
  .social-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .featured-copy {
    padding: 2rem;
  }

  .section-heading > p {
    display: block;
  }

  .release-card details > summary {
    grid-template-columns: 4rem minmax(0, 1fr) 8rem 2.5rem;
  }

  .release-summary-title h3 {
    white-space: normal;
  }

  .release-summary-date {
    display: block;
    color: var(--muted);
    font-family: var(--mono);
    font-size: 0.65rem;
    text-align: right;
    letter-spacing: 0.05em;
    text-transform: lowercase;
  }

  .release-detail {
    padding-left: 4.75rem;
    grid-template-columns: minmax(13rem, 0.8fr) minmax(18rem, 1.2fr);
  }

  .identity-grid {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .bio-copy {
    grid-template-columns: minmax(0, 1.45fr) minmax(14rem, 0.55fr);
  }

  .gig-row {
    grid-template-columns: 8rem minmax(9rem, 1fr) 3rem minmax(12rem, 1fr) auto;
    align-items: center;
    gap: 1rem;
  }
}

@media (min-width: 740px) {
  html {
    scroll-padding-top: 6rem;
  }

  .desktop-header {
    position: sticky;
    z-index: 30;
    top: 0;
    display: flex;
    width: 100%;
    min-height: 4.6rem;
    padding-top: 0;
    padding-inline: var(--pad);
    border-bottom: 1px solid var(--line-soft);
    background: var(--header-bg);
    box-shadow: 0 1px 0 color-mix(in srgb, white 38%, transparent);
    backdrop-filter: blur(18px) saturate(1.08);
    align-items: center;
    justify-content: space-between;
  }

  .desktop-header .wordmark {
    display: block;
    width: 5.8rem;
    text-decoration: none;
  }

  .desktop-header .wordmark img {
    display: block;
    width: 100%;
    height: auto;
    filter: var(--logo-filter);
    opacity: 0.88;
    transition: filter 1200ms ease, opacity 180ms ease;
  }

  .desktop-header .wordmark:hover img,
  .desktop-header .wordmark:focus-visible img {
    opacity: 1;
  }

  .desktop-header nav {
    display: flex;
    gap: 1.8rem;
  }

  .desktop-header nav a {
    color: var(--muted);
    font-family: var(--mono);
    font-size: 0.67rem;
    letter-spacing: 0.06em;
    text-decoration: none;
    text-transform: lowercase;
  }

  .desktop-header nav a:hover,
  .desktop-header nav a[aria-current="location"] {
    color: var(--text);
  }

  .mobile-header-status {
    display: none;
  }

  .link-hub {
    min-height: calc(100svh - 4.6rem);
    padding-block: 4.5rem;
    justify-content: center;
  }

  .eyebrow {
    margin-bottom: auto;
  }

  h1 {
    font-size: clamp(8rem, 17vw, 13rem);
  }

  .tagline {
    margin-top: 1.8rem;
  }

  .social-grid {
    max-width: 51rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .featured-frame,
  .featured-copy {
    min-height: 0;
  }

  #featured-content {
    min-height: min(720px, 66vw);
  }

  .featured-frame {
    min-height: min(720px, 66vw);
    overflow: visible;
    border: 0;
    color: var(--text);
    background: transparent;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    align-items: center;
  }

  .featured-art {
    position: relative;
    z-index: 0;
    inset: auto;
    width: 100%;
    aspect-ratio: 1;
    border: 1px solid var(--line);
    grid-column: 1 / span 7;
    grid-row: 1;
  }

  .featured-art:not(.is-missing)::after {
    background: linear-gradient(180deg, transparent 72%, rgba(5, 6, 7, 0.18));
  }

  .featured-copy {
    position: relative;
    z-index: 2;
    padding: 0 0 0 2rem;
    grid-column: 7 / -1;
    grid-row: 1;
    justify-content: center;
  }

  .featured-index {
    position: relative;
    z-index: 3;
    display: block;
    margin: 0 0 1.2rem 1.2rem;
    align-self: end;
    grid-column: 1 / span 2;
    grid-row: 1;
    font-family: var(--mono);
    font-size: 1rem;
    letter-spacing: 0.08em;
  }

  .featured-meta,
  .featured-copy .signal-action {
    margin-left: 1.8rem;
  }

  .featured-meta {
    color: var(--muted);
  }

  .featured-title {
    max-width: 7ch;
    margin-left: -2.4rem;
    font-size: clamp(5.2rem, 10vw, 8.6rem);
  }

  .section {
    padding-block: 7.5rem;
  }

  .section-heading {
    margin-bottom: 4rem;
  }

  .release-card details > summary {
    padding-block: 1.6rem;
  }

  .identity-card {
    min-height: 0;
    padding: 2rem;
  }

  .mobile-nav {
    display: none;
  }

  footer {
    padding-bottom: 3rem;
  }

}

@media (min-width: 1100px) {
  .desktop-header {
    padding-inline: max(var(--pad), calc((100vw - var(--max-width)) / 2));
  }

  .featured-frame {
    min-height: 760px;
  }

  #featured-content {
    min-height: 760px;
  }

  .release-detail {
    grid-template-columns: minmax(18rem, 0.72fr) minmax(24rem, 1.28fr);
    padding-right: 4rem;
    padding-bottom: 3rem;
  }
}

.error-shell {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 100svh;
  flex-direction: column;
}

.error-header {
  display: flex;
  width: min(100%, var(--max-width));
  min-height: 4.6rem;
  margin-inline: auto;
  padding-inline: var(--pad);
  border-bottom: 1px solid var(--line-soft);
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
}

.error-header a {
  display: block;
  width: 5.8rem;
}

.error-header img {
  display: block;
  width: 100%;
  height: auto;
  filter: var(--logo-filter);
  opacity: 0.9;
  transition: filter 1200ms ease, opacity 180ms ease;
}

.error-header a:hover img,
.error-header a:focus-visible img {
  opacity: 1;
}

.error-main {
  display: flex;
  width: min(100%, var(--max-width));
  min-height: calc(100svh - 12.6rem);
  margin: auto;
  padding-block: clamp(4rem, 10vh, 8rem);
  flex-direction: column;
  justify-content: center;
}

.error-main .eyebrow {
  width: 100%;
  margin: 0 0 clamp(3rem, 9vh, 6rem);
}

.error-code {
  margin: 0 0 1.1rem;
  color: var(--signal);
  font-family: var(--mono);
  font-size: clamp(0.7rem, 1.2vw, 0.82rem);
  letter-spacing: 0.08em;
}

.error-main h1 {
  max-width: 10ch;
  margin: 0 0 1.6rem;
  font-size: clamp(3.8rem, 13vw, 9.5rem);
  font-weight: 650;
  line-height: 0.78;
  letter-spacing: -0.075em;
}

.error-copy {
  max-width: 34rem;
  margin: 0 0 2rem;
  color: var(--text-soft);
  font-size: clamp(1rem, 2vw, 1.25rem);
}

.error-main .signal-action {
  width: fit-content;
}

.error-shell footer {
  width: min(100%, var(--max-width));
  min-height: 4.6rem;
  padding-top: 1.35rem;
  padding-bottom: max(2rem, env(safe-area-inset-bottom));
}

@media (min-width: 800px) {
  .error-header {
    padding-inline: var(--pad);
  }

  .error-main h1 {
    font-size: clamp(6.5rem, 11vw, 9.5rem);
  }
}

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

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