@font-face {
  font-family: "Archivo Black Local";
  src: url("assets/ArchivoBlack-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink:       #0a0a0a;
  --ink-dim:   rgba(10, 10, 10, 0.66);
  --ink-quiet: rgba(10, 10, 10, 0.42);
  --paper:     #141414;                     --void:      #000000;
  --void-2:    #0a0a0a;
  --bone:      #f5f2ea;
  --bone-dim:  rgba(245, 242, 234, 0.66);
  --edge:      rgba(245, 242, 234, 0.14);
  --edge-lit:  rgba(245, 242, 234, 0.32);
  --accent:    #1aff5c;
  --serif: "Archivo", ui-sans-serif, sans-serif;
  --display: "Archivo Black Local", "Archivo Black", "Arial Black", sans-serif;
  --gutter: clamp(20px, 3vw, 44px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }
button { background: none; border: 0; color: inherit; font: inherit; }
*, *::before, *::after { cursor: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.55;
  min-height: 100dvh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'><text y='18' font-size='18'>💫</text></svg>") 4 4, auto;
}

.archivo,
.overlay-title,
.planet-label,
.booking,
.contact-mail,
.contact-icons a,
.show-venue,
.shows-title,
.stat-num {
  font-family: var(--display);
  letter-spacing: -0.09em;
  line-height: 0.72;
  text-transform: uppercase;
}

.stage {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  display: block;
}
.stage-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}
.stage-grain {
  position: fixed; inset: 0;
  z-index: 1; pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.5 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.6'/></svg>");
  mix-blend-mode: multiply;
  opacity: 0.08;
}

.mast {
  position: fixed;
  top: clamp(20px, 3vh, 34px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mast-logo {
  height: clamp(140px, 20vh, 240px);   width: auto;
  max-width: 90vw;                      object-fit: contain;                  opacity: 0.98;
  filter: drop-shadow(0 2px 12px rgba(0,0,0,0.35));
}

.orbit {
  position: fixed;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}
.planet {
  position: absolute;
  pointer-events: auto;
  width: clamp(110px, 12vw, 150px);
  height: clamp(110px, 12vw, 150px);
  border-radius: 999px;
  background: transparent;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: transform 400ms cubic-bezier(.2,.7,.2,1),
              filter 300ms ease;
  animation: drift 14s ease-in-out infinite;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 110% 110%;
}
.orb-1 { background-image: url("assets/orb-1.png"); }
.orb-2 { background-image: url("assets/orb-2.png"); }
.orb-3 { background-image: url("assets/orb-3.png"); }
.orb-4 { background-image: url("assets/orb-4.png"); }
.orb-5 { background-image: url("assets/orb-5.png"); }

.planet-label {
  font-family: var(--display);
  font-size: clamp(16px, 1.5vw, 22px);
  letter-spacing: -0.09em;
  line-height: 0.72;
  text-transform: uppercase;
  color: var(--ink);
  transition: color 300ms ease;
  padding: 0 6px;
  text-align: center;
}
.planet:hover,
.planet:focus-visible {
  outline: none;
  transform: translateY(-3px);
  filter: drop-shadow(0 6px 22px rgba(0, 0, 0, 0.18));
}
.planet:hover .planet-label,
.planet:focus-visible .planet-label { color: var(--accent); }

.pos-who      { top: 15%;  left: 22%;  animation-delay:  -1s; }
.pos-mixes    { top: 32%;  left: 14%;  animation-delay:  -7s; }
.pos-shows    { top: 49%;  left: 24%;  animation-delay:  -3s; }
.pos-tracks   { top: 66%;  left: 8%;   animation-delay:  -4s; }
.pos-releases { top: 15%;  right: 20%; animation-delay: -10s; }
.pos-news     { top: 40%;  right: 10%; animation-delay:  -6s; }
.pos-contact  { top: 66%;  right: 22%; animation-delay: -13s; }

@keyframes drift {
  0%, 100% { transform: translate(0, 0); }
  25%      { transform: translate(0, -6px); }
  50%      { transform: translate(4px, 2px); }
  75%      { transform: translate(-3px, 5px); }
}
@media (prefers-reduced-motion: reduce) {
  .planet { animation: none; }
}

.bottom {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  padding: 0 var(--gutter) 14px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  color: var(--bone);
}
.socials {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.socials a {
  color: var(--bone);
  transition: color 200ms ease;
}
.socials a:hover { color: var(--accent); }

.booking {
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: -0.09em;
  line-height: 0.72;
  text-transform: uppercase;
  color: var(--bone);
  padding-bottom: 3px;
  border-bottom: 1px solid var(--edge-lit);
  transition: color 200ms ease, border-color 200ms ease;
}
.booking:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.overlay[open] { display: block; }
.overlay {
  border: 0;
  padding: 0;
  color: var(--bone);
  background: transparent;
  max-width: none;
  max-height: none;
  width: 100vw;
  height: 100dvh;
  margin: 0;
  overflow: hidden;
}
.overlay::backdrop {
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(8px);
}
.overlay-inner {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(56px, 8vh, 84px) var(--gutter) clamp(40px, 6vh, 60px);
  overflow-y: auto;
  background: var(--void);
  border-left: 1px solid var(--edge);
  border-right: 1px solid var(--edge);
}
.overlay-close {
  position: sticky;
  top: 0;
  float: right;
  margin-bottom: 12px;
  font-family: var(--serif);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--bone-dim);
  transition: color 200ms ease;
  z-index: 2;
}
.overlay-close:hover { color: var(--accent); }

.overlay-tag {
  display: block;
  font-family: var(--serif);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.overlay-title {
  font-size: clamp(48px, 8vw, 108px);
  color: var(--bone);
  margin-bottom: 32px;
}
.overlay-title.news-title {
  line-height: 1.02;
  margin-bottom: 24px;
}
.overlay-lead {
  font-family: var(--serif);
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.45;
  font-weight: 500;
  max-width: 62ch;
  margin-bottom: 20px;
  color: var(--bone);
}
.overlay-text {
  font-size: 15px;
  line-height: 1.65;
  max-width: 62ch;
  margin-bottom: 14px;
  color: var(--bone-dim);
}
.inline-link {
  color: var(--bone);
  border-bottom: 1px solid var(--edge-lit);
  transition: color 200ms ease, border-color 200ms ease;
}
.inline-link:hover {
  color: var(--accent);
  border-color: var(--accent);
}
.overlay-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--edge);
}
.overlay-links-top {
  margin-top: 0;
  margin-bottom: 24px;
  padding-top: 0;
  border-top: 0;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--edge);
}
.overlay-links a {
  font-family: var(--serif);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone);
  transition: color 200ms ease;
}
.overlay-links a:hover { color: var(--accent); }

.overlay-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 60px);
  padding-top: clamp(56px, 8vh, 84px);
  align-items: start;
}
.split-copy {
  padding-top: clamp(6px, 2vh, 16px);
}
.split-media {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.split-media-portrait img {
  width: 100%;
  height: auto;
  max-height: 78vh;
  object-fit: contain;
  object-position: center top;
  border-radius: 6px;
}

.chip-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.chip {
  font-family: var(--serif);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 8px 14px;
  border: 1px solid var(--edge);
  border-radius: 999px;
  color: var(--bone);
}

.release-card,
.mix-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--edge);
}
.mix-stack {
  display: grid;
  gap: 12px;
  margin-top: 8px;
}

.overlay-shows { position: relative; }
.shows-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.shows-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: contrast(1.06) saturate(1.02) brightness(0.72);
}
.shows-bg-tint {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 50% 50%,
      rgba(0,0,0,0.25) 0%,
      rgba(0,0,0,0.65) 65%,
      rgba(0,0,0,0.85) 100%);
}
.overlay-shows .overlay-inner {
  background: transparent;
  border: 0;
  position: relative;
  z-index: 1;
}
.overlay-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 100dvh;
}
.overlay-centered .overlay-close {
  align-self: flex-end;
  float: none;
}
.shows-title {
  font-size: clamp(44px, 7vw, 92px);
  margin-bottom: 14px;
}
.shows-subtitle {
  font-family: var(--serif);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 34px;
  display: block;
}
.show-list {
  list-style: none;
  width: 100%;
  max-width: 720px;
}
.show-list li {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 16px;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid var(--edge);
  text-align: left;
}
.show-year {
  font-family: var(--serif);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--accent);
  text-transform: uppercase;
}
.show-venue {
  font-size: clamp(22px, 2.8vw, 34px);
  color: var(--bone);
}
.show-city {
  font-family: var(--serif);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bone-dim);
  text-align: right;
}

.press-list {
  list-style: none;
  border-top: 1px solid var(--edge);
  margin-top: 12px;
}
.press-list li {
  display: grid;
  grid-template-columns: 60px 220px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--edge);
  align-items: baseline;
}
.press-year {
  font-family: var(--serif);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}
.press-source {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bone);
}
.press-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 15px;
  color: var(--bone-dim);
  transition: color 200ms ease;
}
a.press-title:hover { color: var(--accent); }
.press-arrow { display: inline-block; margin-left: 4px; }

.overlay-contact {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.contact-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 20px;
  border-top: 1px solid var(--edge);
}
.contact-eyebrow {
  font-family: var(--serif);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bone-dim);
}
.contact-mail {
  font-size: clamp(28px, 4.4vw, 52px);
  color: var(--bone);
  align-self: flex-start;
  transition: color 200ms ease;
}
.contact-mail:hover { color: var(--accent); }
.contact-icons {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid var(--edge);
}
.contact-icons a {
  font-size: 17px;
  color: var(--bone);
  transition: color 200ms ease;
}
.contact-icons a:hover { color: var(--accent); }

@media (max-width: 820px) {
  .mast-logo {
    height: clamp(72px, 12vh, 120px);
    max-width: 82vw;
  }

  .planet {
    width: 74px;
    height: 74px;
    animation: none;
    background-size: 120% 120%;
  }
  .planet-label { font-size: 12px; }

  .pos-who      { top: 10%; left: 5%;   }
  .pos-releases { top: 10%; right: 5%;  }
  .pos-tracks   { top: 24%; left: 34%;  }
  .pos-mixes    { top: 40%; left: 5%;   }
  .pos-news     { top: 40%; right: 5%;  }
  .pos-shows    { top: 54%; left: 34%;  }
  .pos-contact  { top: 68%; left: 34%;  }

  .bottom {
    flex-direction: column;
    gap: 8px;
    padding: 0 16px 10px;
    text-align: center;
    align-items: center;
  }
  .socials { gap: 12px; font-size: 10px; justify-content: center; }
  .booking { font-size: 13px; }

  .overlay-inner {
    padding: 44px 20px 32px;
    border: 0;
  }
  .overlay-split {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .split-media-portrait img { max-height: 56vh; }

  .press-list li {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .show-list li {
    grid-template-columns: 50px 1fr;
  }
  .show-city {
    grid-column: 1 / -1;
    text-align: left;
    padding-left: 66px;
  }
}

body:has(dialog[open]) { overflow: hidden; }
