:root {
  --bg: #060606;
  --bg-alt: #0e0e0e;
  --fg: #ededea;
  --fg-dim: #8f8f8c;
  --accent: #ff7a29;
  --accent-2: #39ff6e;
  --accent-dim: #6b3210;
  --nv-green: #0f4a1c;
  --line: #2a2a2a;
  --font-display: 'Helvetica Neue', Helvetica, Archivo, Arial, sans-serif;
  --font-body: 'Helvetica Neue', Helvetica, Archivo, Arial, sans-serif;
  --font-mono: 'Chakra Petch', 'JetBrains Mono', 'Courier New', monospace;
  --max-w: 1100px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.noise-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.14;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

.scanline-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 998;
  opacity: 0.5;
  mix-blend-mode: overlay;
  background-image: repeating-linear-gradient(
    0deg,
    rgba(255,255,255,0.05) 0px,
    rgba(255,255,255,0.05) 1px,
    transparent 1px,
    transparent 3px
  );
}

.vignette-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 997;
  background: radial-gradient(ellipse at center, transparent 45%, rgba(0,0,0,0.55) 100%);
}

/* Ambient liquid "goop" background — dark ink drifting over a lighter gradient field */
.goop-overlay {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  overflow: hidden;
  background:
    radial-gradient(ellipse 140% 110% at 50% 40%, #4d5646 0%, #2c3225 32%, #171910 58%, #050505 92%);
}

.goop-blob {
  position: absolute;
  width: 78vmax;
  height: 78vmax;
  border-radius: 42% 58% 63% 37% / 41% 44% 56% 59%;
  filter: blur(50px);
  will-change: transform, border-radius;
}

.goop-blob::after {
  content: '';
  position: absolute;
  top: 28%;
  left: 22%;
  width: 30%;
  height: 22%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(180,255,200,0.16) 0%, transparent 75%);
  mix-blend-mode: screen;
}

.goop-blob-1 {
  top: -22vmax;
  left: -20vmax;
  background: radial-gradient(circle at 42% 38%, rgba(3,9,5,0.96) 0%, rgba(2,6,4,0.88) 48%, rgba(2,5,3,0.5) 72%, transparent 100%);
  animation: goop-drift-1 46s ease-in-out infinite alternate;
}

.goop-blob-2 {
  bottom: -28vmax;
  right: -22vmax;
  width: 92vmax;
  height: 92vmax;
  background: radial-gradient(circle at 58% 62%, rgba(3,9,5,0.95) 0%, rgba(2,6,4,0.85) 48%, rgba(2,5,3,0.45) 72%, transparent 100%);
  animation: goop-drift-2 58s ease-in-out infinite alternate;
}

.goop-blob-3 {
  top: 18vh;
  left: 8vw;
  width: 68vmax;
  height: 68vmax;
  background: radial-gradient(circle at 50% 50%, rgba(3,9,5,0.92) 0%, rgba(2,6,4,0.75) 46%, rgba(2,5,3,0.35) 70%, transparent 100%);
  animation: goop-drift-3 38s ease-in-out infinite alternate;
}

.goop-blob-4 {
  top: 58vh;
  right: 5vw;
  width: 72vmax;
  height: 72vmax;
  background: radial-gradient(circle at 45% 55%, rgba(3,9,5,0.93) 0%, rgba(2,6,4,0.78) 46%, rgba(2,5,3,0.36) 70%, transparent 100%);
  animation: goop-drift-4 50s ease-in-out infinite alternate;
}

@keyframes goop-drift-1 {
  0%   { transform: translate(0, 0) scale(1); border-radius: 42% 58% 63% 37% / 41% 44% 56% 59%; }
  50%  { transform: translate(6vw, 8vh) scale(1.12); border-radius: 58% 42% 39% 61% / 55% 60% 40% 45%; }
  100% { transform: translate(2vw, 14vh) scale(0.96); border-radius: 46% 54% 55% 45% / 48% 40% 60% 52%; }
}

@keyframes goop-drift-2 {
  0%   { transform: translate(0, 0) scale(1); border-radius: 55% 45% 40% 60% / 50% 55% 45% 50%; }
  50%  { transform: translate(-8vw, -6vh) scale(1.08); border-radius: 40% 60% 58% 42% / 44% 38% 62% 56%; }
  100% { transform: translate(-3vw, -12vh) scale(0.94); border-radius: 60% 40% 44% 56% / 52% 58% 42% 48%; }
}

@keyframes goop-drift-3 {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(4vw, -6vh) scale(1.15); }
  100% { transform: translate(-4vw, 4vh) scale(0.9); }
}

@keyframes goop-drift-4 {
  0%   { transform: translate(0, 0) scale(1); border-radius: 42% 58% 63% 37% / 41% 44% 56% 59%; }
  50%  { transform: translate(-5vw, 5vh) scale(1.1); border-radius: 55% 45% 42% 58% / 48% 55% 45% 52%; }
  100% { transform: translate(3vw, -4vh) scale(0.92); border-radius: 48% 52% 58% 42% / 42% 48% 52% 58%; }
}

@media (prefers-reduced-motion: reduce) {
  .goop-blob { animation: none; }
}


/* Glitch / chromatic aberration headline treatment */
.glitch {
  position: relative;
  display: inline-block;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.7;
  pointer-events: none;
}

.glitch::before {
  color: var(--accent);
  transform: translate(-2px, 1px);
  mix-blend-mode: screen;
}

.glitch::after {
  color: var(--accent-2);
  transform: translate(2px, -1px);
  mix-blend-mode: screen;
}

/* Header */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2rem;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}

.logo {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.08em;
  font-size: 1.2rem;
  text-transform: uppercase;
}

.accent { color: var(--accent); }

.site-nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.site-nav a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--fg-dim);
  transition: color 0.2s ease;
}

.site-nav a {
  position: relative;
}

.site-nav a:hover { color: var(--fg); }

.site-nav a:hover::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--accent-2);
}

.nav-cta {
  border: 1px solid var(--accent-2);
  color: var(--fg) !important;
  padding: 0.4rem 0.9rem;
}

.nav-cta:hover { background: var(--accent-2); color: #060606 !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--fg);
  display: block;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 1.5rem 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(57,255,110,0.1), transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(255,122,41,0.08), transparent 45%);
  z-index: -1;
}

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

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin-bottom: 1.5rem;
  padding: 0.4rem 0.8rem;
  border: 1px solid var(--line);
}

.hero-eyebrow::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--accent-2);
  flex-shrink: 0;
  animation: blink-dot 1.6s steps(1) infinite;
  box-shadow: 0 0 6px var(--accent-2);
}

@keyframes blink-dot {
  0%, 45% { opacity: 1; }
  50%, 100% { opacity: 0.25; }
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.9rem, 10.6vw, 6.4rem);
  letter-spacing: -0.03em;
  text-transform: uppercase;
  line-height: 0.92;
  max-width: 100%;
}

.hero-tags {
  margin-top: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  color: var(--fg-dim);
}

.hero-actions {
  margin-top: 2.5rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  padding: 0.9rem 1.8rem;
  border: 1px solid var(--fg);
  transition: all 0.15s ease;
}

.btn-solid {
  background: var(--fg);
  color: var(--bg);
}

.btn-solid:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--fg);
  box-shadow: -3px 3px 0 var(--accent-2);
}

.btn-outline:hover {
  background: var(--fg);
  color: var(--bg);
  box-shadow: -3px 3px 0 var(--accent);
}

.hero-photo-slot {
  margin-top: 3.5rem;
  width: 100%;
  max-width: 600px;
  aspect-ratio: 16/9;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fg-dim);
  font-size: 0.75rem;
  text-align: center;
  padding: 1rem;
  overflow: hidden;
  box-shadow: 0 0 60px -14px rgba(255,122,41,0.3);
}

.hero-photo-slot img,
.bio-photo-slot img,
.gallery-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(1.18) saturate(0.85) brightness(0.92);
}

.hero-photo-slot:has(img),
.bio-photo-slot:has(img),
.gallery-slot:has(img) {
  border-style: solid;
  padding: 0;
}

.scroll-cue {
  position: absolute;
  bottom: 1.5rem;
  font-size: 1.2rem;
  color: var(--fg-dim);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* Sections */
.section { padding: 6rem 1.5rem; }
.section-alt { background: rgba(14,14,14,0.72); }
.section-inner { max-width: var(--max-w); margin: 0 auto; }

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin-bottom: 2.5rem;
}

.section-title .index {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  background: var(--accent-2);
  color: #060606;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0;
  box-shadow: 3px 3px 0 var(--accent);
}

.section-lede {
  color: var(--fg-dim);
  max-width: 620px;
  margin-bottom: 2rem;
  font-size: 1rem;
}

/* Bio */
.bio-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 3rem;
  align-items: start;
}

.bio-grid.reverse { grid-template-columns: 1fr 320px; }
.bio-grid.reverse .bio-photo-slot { order: 2; }

.collective-grid.reverse { grid-template-columns: 1fr 230px; }
.collective-grid .collective-card { order: 2; align-self: start; }

.collective-card img {
  aspect-ratio: 4/3;
  object-fit: cover;
  background: none;
  padding: 0;
}

.bio-photo-slot {
  aspect-ratio: 4/5;
  border: 1px dashed var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fg-dim);
  font-size: 0.75rem;
  text-align: center;
  padding: 1rem;
  overflow: hidden;
  transition: border-radius 0.1s linear;
}

#bio .bio-photo-slot:has(img) {
  box-shadow: 0 0 40px -6px rgba(57,255,110,0.35);
}

.bio-text p {
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
  color: var(--fg-dim);
}

.bio-text strong { color: var(--fg); }

/* Tags */
.tag-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.tag-list li {
  border: 1px solid var(--line);
  padding: 0.55rem 1.1rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.tag-list li:hover {
  border-color: var(--accent-2);
  color: var(--accent-2);
}

.ig-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  padding: 0.5rem 1rem;
  border: 1px solid var(--accent-2);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  color: var(--accent-2);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.ig-tag::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 2px;
  border: 1.5px solid currentColor;
}

.ig-tag:hover {
  background: var(--accent-2);
  color: #060606;
}

.embed-slot {
  border: 1px dashed var(--line);
  padding: 3rem 1.5rem;
  text-align: center;
  color: var(--fg-dim);
  font-size: 0.8rem;
}

.embed-slot-filled {
  border-style: solid;
  padding: 0;
  overflow: hidden;
  line-height: 0;
  box-shadow: 0 0 34px -14px rgba(255,122,41,0.32);
}

/* Reel */
.reel-frame {
  border: 1px solid var(--line);
  overflow: hidden;
  line-height: 0;
  box-shadow: 0 0 50px -10px rgba(57,255,110,0.25);
}

.reel-video {
  width: 100%;
  display: block;
  filter: contrast(1.1);
}

/* Discography */
.disco-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}

.disco-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 26px -12px rgba(57,255,110,0.28);
}

.disco-card:nth-child(even) { box-shadow: 0 0 26px -12px rgba(255,122,41,0.26); }

.disco-card:nth-child(4n+1) { transform: rotate(-0.6deg); }
.disco-card:nth-child(4n+2) { transform: rotate(0.5deg); }
.disco-card:nth-child(4n+3) { transform: rotate(-0.4deg); }
.disco-card:nth-child(4n+4) { transform: rotate(0.7deg); }

.disco-card:hover {
  border-color: var(--accent-2);
  transform: rotate(0deg) scale(1.015);
}

.disco-card.is-active {
  border-color: var(--accent-2);
  box-shadow: 0 0 30px -8px rgba(57,255,110,0.55);
}

.disco-card img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
  filter: contrast(1.1) saturate(1.05);
}

.disco-play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2.75rem;
  height: 2.75rem;
  transform: translate(-50%, -50%) scale(0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(6,6,6,0.65);
  border: 1px solid var(--accent-2);
  color: var(--fg);
  font-size: 0.9rem;
  padding-left: 3px;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}

.disco-card:hover .disco-play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.disco-card.is-active .disco-play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(0.85);
  background: var(--accent-2);
  color: #060606;
  border-color: var(--accent-2);
}

.disco-card.is-active .disco-meta::after {
  content: ' · NOW PLAYING';
  color: var(--accent-2);
}

.disco-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: -0.01em;
  padding: 0.9rem 0.9rem 0.2rem;
}

.disco-meta {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 0 0.9rem 0.9rem;
}

.disco-more {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--fg-dim);
  border-bottom: 1px solid var(--line);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.disco-more:hover { color: var(--fg); border-color: var(--fg); }

/* Technical Rider */
.rider-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.rider-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: 0 0 30px -14px rgba(57,255,110,0.3);
  transition: box-shadow 0.3s ease, border-color 0.2s ease;
}

.rider-card:nth-child(even) { box-shadow: 0 0 30px -14px rgba(255,122,41,0.28); }

.rider-card:hover {
  border-color: var(--accent-2);
  box-shadow: 0 0 40px -10px rgba(57,255,110,0.45);
}

.rider-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: contain;
  background: #0c0c0c;
  display: block;
  padding: 0.75rem;
}

.rider-card-body {
  padding: 1.25rem 1.5rem 1.5rem;
  border-top: 1px solid var(--line);
}

.rider-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.rider-card p {
  color: var(--fg-dim);
  font-size: 0.85rem;
}

.rider-note {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--fg-dim);
}

.gigs-note {
  margin-top: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--fg-dim);
}

/* Transit line ("Red Line") diagram */
.line-designation {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin-bottom: 3.5rem;
}

.line-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.transit-line {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  position: relative;
  counter-reset: stop;
}

.transit-line::before {
  content: '';
  position: absolute;
  top: 0.7rem;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  z-index: 0;
}

.stop {
  position: relative;
  padding: 0 1.25rem 0 0;
  z-index: 1;
}

.stop:first-child { padding-left: 0; }
.stop:last-child { padding-right: 0; }

.stop-marker {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: var(--bg);
  border: 3px solid var(--accent);
  color: var(--fg);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.8rem;
  margin-bottom: 1.5rem;
}

.stop-terminus .stop-marker {
  background: var(--accent);
  color: var(--bg);
}

.stop-age {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

.stop-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
}

.stop-card p {
  color: var(--fg-dim);
  font-size: 0.88rem;
  line-height: 1.55;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery-slot {
  aspect-ratio: 1/1;
  border: 1px dashed var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fg-dim);
  font-size: 0.75rem;
  overflow: hidden;
  transition: outline-color 0.2s ease, box-shadow 0.3s ease;
  outline: 1px solid transparent;
  outline-offset: -1px;
  box-shadow: 0 0 30px -12px rgba(57,255,110,0.3);
}

.gallery-slot:nth-child(3n+2) { box-shadow: 0 0 30px -12px rgba(255,122,41,0.28); }
.gallery-slot:nth-child(3n) { box-shadow: 0 0 30px -12px rgba(57,255,110,0.22); }

.gallery-slot:has(img):hover {
  outline-color: var(--accent-2);
}

.gallery-slot:has(img):hover img {
  filter: contrast(1.25) saturate(1.1) brightness(0.95);
  transform: scale(1.04);
}

.gallery-slot img {
  transition: filter 0.25s ease, transform 0.25s ease;
}

/* Flyers */
.flyer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.flyer-slot {
  aspect-ratio: 4/5;
  border: 1px dashed var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fg-dim);
  font-size: 0.75rem;
  overflow: hidden;
  transition: outline-color 0.2s ease, box-shadow 0.3s ease;
  outline: 1px solid transparent;
  outline-offset: -1px;
  box-shadow: 0 0 26px -12px rgba(255,122,41,0.28);
}

.flyer-slot:nth-child(even) { box-shadow: 0 0 26px -12px rgba(57,255,110,0.26); }

.flyer-slot:has(img) {
  border-style: solid;
}

.flyer-slot:has(img):hover {
  outline-color: var(--accent-2);
}

.flyer-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: filter 0.25s ease, transform 0.25s ease;
  filter: contrast(1.1) saturate(1.05);
}

.flyer-slot:has(img):hover img {
  filter: contrast(1.2) saturate(1.15) brightness(0.95);
  transform: scale(1.04);
}

@media (max-width: 820px) {
  .flyer-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Booking */
.contact-block {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-email {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  text-transform: lowercase;
  border-bottom: 1px solid var(--fg);
  width: fit-content;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.contact-email:hover { color: var(--accent-2); border-color: var(--accent-2); }

.contact-phone {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  color: var(--fg-dim);
  width: fit-content;
  transition: color 0.2s ease;
}

.contact-phone:hover { color: var(--fg); }

.social-links {
  display: flex;
  gap: 1.5rem;
  font-family: var(--font-mono);
}

.social-links a {
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--fg-dim);
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.social-links a:hover { color: var(--fg); border-color: var(--fg); }

/* Footer */
.site-footer {
  padding: 2.5rem 1.5rem;
  text-align: center;
  font-size: 0.75rem;
  color: var(--fg-dim);
  border-top: 1px solid var(--line);
}

/* Responsive */
@media (max-width: 1000px) {
  .transit-line {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  .transit-line::before {
    top: 0;
    bottom: 0;
    left: 0.83rem;
    right: auto;
    width: 3px;
    height: auto;
  }

  .stop {
    padding: 0 0 0 3rem;
  }

  .stop:first-child, .stop:last-child { padding-left: 3rem; }

  .stop-marker {
    position: absolute;
    left: 0;
    top: 0;
    margin-bottom: 0;
  }
}

@media (max-width: 820px) {
  .bio-grid, .bio-grid.reverse {
    grid-template-columns: 1fr;
  }
  .bio-grid.reverse .bio-photo-slot { order: 0; }
  .bio-photo-slot { max-width: 340px; }
  .collective-grid .collective-card { order: 0; max-width: 340px; }

  .disco-grid { grid-template-columns: repeat(2, 1fr); }
  .rider-grid { grid-template-columns: 1fr; }
}

@media (max-width: 960px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: fixed;
    top: 64px;
    left: 0; right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem 2rem;
    gap: 1.25rem;
    transform: translateY(-150%);
    transition: transform 0.25s ease;
  }
  .site-nav.open { transform: translateY(0); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
