* {
  box-sizing: border-box;
}

:root {
  --bg: #000;
  --fg: #fff;
  --muted: rgba(255,255,255,.68);
  --line: rgba(255,255,255,.7);
  --border: rgba(255,255,255,.38);
  --red: #ff3b30;
  --mono: "Space Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

html {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--mono);
  font-size: 14px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #000;
  color: #fff;
  overflow-x: hidden;
}

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

.topbar {
  position: fixed;
  top: 14px;
  left: 14px;
  right: 14px;
  z-index: 30;
  display: flex;
  align-items: flex-start;
  pointer-events: none;
}

.nav a {
  pointer-events: auto;
  background: #000;
  border: 1px solid var(--border);
  color: #fff;
  height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  line-height: 1;
  letter-spacing: .02em;
  text-transform: none;
}

.nav-toggle {
  pointer-events: auto;
  background: transparent;
  border: 0;
  color: #fff;
  height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 8px;
  line-height: 1;
}

/* Brand: transparent, no box */
.brand {
  pointer-events: auto;
  background: transparent;
  border: 0;
  padding: 6px 6px;
  height: auto;
  display: inline-flex;
  align-items: flex-start;
  position: relative;
  font-size: 16px;
  font-weight: 700;
}

/* Nav-toggle: energy ball — glowing dot, no + text */
.nav-toggle {
  width: 34px;
  justify-content: center;
  font: inherit;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  color: transparent;  /* hide + text */
  user-select: none;
}

.nav-toggle::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 5px 2px rgba(255,255,255,.55), 0 0 12px 5px rgba(255,255,255,.18);
  animation: energy-pulse 2.2s ease-in-out infinite;
  transition: background .25s, box-shadow .25s;
}

.nav-toggle[aria-expanded="true"]::before {
  background: var(--red);
  box-shadow: 0 0 7px 3px rgba(255,59,48,.85), 0 0 16px 7px rgba(255,59,48,.3);
  animation: none;
}

@keyframes energy-pulse {
  0%, 100% { transform: scale(1);   opacity: 1;  box-shadow: 0 0 5px 2px rgba(255,255,255,.55), 0 0 12px 5px rgba(255,255,255,.18); }
  50%       { transform: scale(.65); opacity: .6; box-shadow: 0 0 8px 4px rgba(255,255,255,.3),  0 0 18px 8px rgba(255,255,255,.1); }
}

.brand img {
  height: 80px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}

/* ── Rat eye particles ── */
.brand-logo-wrap {
  position: relative;
  display: block;
  line-height: 0;
}

.brand-eye {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red, #e8001e);
  box-shadow: 0 0 4px 2px rgba(232,0,30,.7);
  animation: eye-pulse 2.4s ease-in-out infinite;
  pointer-events: none;
}

.brand-eye-l { top: 29px; left: 22px; animation-delay: 0s; }
.brand-eye-r { top: 29px; left: 48px; animation-delay: .3s; }

@keyframes eye-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 4px 2px rgba(232,0,30,.7); transform: scale(1); }
  50%       { opacity: .6; box-shadow: 0 0 8px 4px rgba(232,0,30,.4); transform: scale(.7); }
}

.brand-particle {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: var(--red, #e8001e);
  pointer-events: none;
  opacity: 0;
  animation: particle-float var(--dur, 2.8s) ease-out var(--delay, 0s) infinite;
}

@keyframes particle-float {
  0%   { opacity: 0; transform: translate(0, 0) scale(1); }
  15%  { opacity: 1; }
  100% { opacity: 0; transform: translate(var(--tx, 6px), var(--ty, -10px)) scale(0); }
}

.nav-toggle {
  width: 34px;
  justify-content: center;
  font: inherit;
  cursor: pointer;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  transform-origin: top left;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-8px);
  transition: opacity .18s ease, transform .18s ease;
}

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

.nav a {
  border-left: 0;
  font-size: 12px;
}

/* First nav item gets left border to close the row */
.nav a:first-child {
  border-left: 1px solid var(--border);
}

.nav a:hover,
.nav-toggle:hover {
  background: #fff;
  color: #000;
}

.nav a.nav-active {
  color: var(--red);
  border-bottom-color: var(--red);
}

.brand:hover {
  background: transparent;
}

.portal {
  min-height: 100vh;
}

.panel {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.hero-panel {
  min-height: 100vh;
}

@keyframes img-drift {
  0%   { transform: scale(1.04) translate( 0%,    0%);   }
  20%  { transform: scale(1.07) translate(-0.6%,  0.3%); }
  45%  { transform: scale(1.05) translate( 0.5%, -0.4%); }
  70%  { transform: scale(1.08) translate( 0.4%,  0.5%); }
  100% { transform: scale(1.04) translate( 0%,    0%);   }
}

@keyframes shimmer-sweep {
  0%   { background-position: -300% center; }
  100% { background-position: 300% center; }
}

.image-field {
  position: absolute;
  inset: 0;
  background: #111;
  filter: contrast(1.2) grayscale(1);
  animation: img-drift 24s ease-in-out infinite;
}

/* stagger each panel so they drift out of sync */
.image-field-b { animation-delay: -6s;  }
.image-field-c { animation-delay: -13s; }
.image-field-d { animation-delay: -19s; }
.image-field-e { animation-delay: -4s;  }

.image-field::before,
.image-field::after {
  content: "";
  position: absolute;
  inset: 0;
}

.image-field::before {
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.5) 100%);
  mix-blend-mode: normal;
}

.image-field::after {
  opacity: .85;
  mix-blend-mode: multiply;
}

/* Dummy image fields.
   Replace with real local images later:
   background-image: url("../img/your-image.jpg");
*/
.image-field-a {
  background: url("../img/bg01_av.jpg") center 20% / cover no-repeat;
}
.image-field-a::after {
  background: linear-gradient(180deg, rgba(0,0,0,.18) 0%, transparent 40%, rgba(0,0,0,.42) 100%);
}

.image-field-b {
  background: url("../img/av_dj_playing_01.jpg") center center / cover no-repeat;
}
.image-field-b::after {
  background: linear-gradient(180deg, rgba(0,0,0,.28) 0%, rgba(0,0,0,.12) 100%);
}

.image-field-c {
  background: url("../img/av_dj_playing_02.jpg") center center / cover no-repeat;
}
.image-field-c::after {
  background: linear-gradient(180deg, rgba(0,0,0,.3) 0%, rgba(0,0,0,.1) 100%);
}

.image-field-d {
  background: url("../img/bg_ambient_babani.jpg") center center / cover no-repeat;
}
.image-field-d::after {
  background: linear-gradient(180deg, rgba(0,0,0,.28) 0%, rgba(0,0,0,.12) 100%);
}

.image-field-e {
  background: url("../img/bg01_av02.jpg") center center / cover no-repeat;
}
.image-field-e::after {
  background: linear-gradient(180deg, rgba(0,0,0,.3) 0%, rgba(0,0,0,.12) 100%);
}

.noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  /* diagonal light sweep */
  background: linear-gradient(
    112deg,
    transparent 35%,
    rgba(255,255,255,.055) 50%,
    transparent 65%
  );
  background-size: 300% 100%;
  animation: shimmer-sweep 12s ease-in-out infinite;
}

/* offset shimmer per panel */
.image-field-b .noise { animation-delay: -3s;  }
.image-field-c .noise { animation-delay: -7s;  }
.image-field-d .noise { animation-delay: -10s; }
.image-field-e .noise { animation-delay: -5s;  }

.hero-panel .noise::before,
.hero-panel .noise::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1px solid rgba(255, 59, 48, .45);
  transform: translate(-50%, -50%) scale(0);
  animation: ripple-red 4s ease-out infinite;
  opacity: 0;
}

.hero-panel .noise::after {
  animation-delay: 2s;
}

/* Third ring via sibling span injected in JS, or just use the two */
@keyframes ripple-red {
  0%   { transform: translate(-50%, -50%) scale(0);   opacity: .6; }
  70%  { opacity: .15; }
  100% { transform: translate(-50%, -50%) scale(18);  opacity: 0; }
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin-left: clamp(20px, 8vw, 120px);
  margin-right: 20px;
  padding-top: 80px;
}

.kicker {
  display: inline-block;
  margin: 0 0 22px;
  padding: 6px 9px;
  background: rgba(0,0,0,.72);
  border: 1px solid rgba(255,255,255,.28);
  color: var(--muted);
  font-size: 12px;
}

h1 {
  margin: 0 0 16px;
  font-size: clamp(48px, 12vw, 170px);
  line-height: .82;
  letter-spacing: -.09em;
}

.hero-copy p {
  max-width: 560px;
  margin: 0 0 12px;
  font-size: clamp(15px, 1.6vw, 22px);
  line-height: 1.55;
  background: rgba(0,0,0,.42);
  width: fit-content;
  padding: 2px 6px;
}

.hero-copy .line {
  color: #fff;
}

.link-panel {
  cursor: pointer;
}

.link-panel::after {
  content: "";
  position: absolute;
  inset: -18%;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(104deg, transparent 22%, rgba(255,255,255,.11) 46%, rgba(255,59,48,.08) 50%, transparent 70%),
    repeating-linear-gradient(0deg, rgba(255,255,255,.035) 0 1px, transparent 1px 7px);
  mix-blend-mode: screen;
  opacity: .22;
  transform: translateX(-45%) skewX(-8deg);
  animation: panel-light-drift 18s ease-in-out infinite alternate;
}

.link-panel:nth-of-type(3)::after { animation-delay: -6s; opacity: .18; }
.link-panel:nth-of-type(4)::after { animation-delay: -11s; opacity: .16; }
.link-panel:nth-of-type(5)::after { animation-delay: -3s; opacity: .2; }

@keyframes panel-light-drift {
  0%   { transform: translateX(-54%) skewX(-8deg); filter: hue-rotate(0deg); }
  45%  { opacity: .14; }
  100% { transform: translateX(38%) skewX(-8deg); filter: hue-rotate(-12deg); }
}

.yt-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

/* ── BW/FX grain overlay for video panels ─────────────── */
.yt-fx {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  /* SVG grain texture */
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 128px 128px;
  opacity: 0.07;
  mix-blend-mode: overlay;
}

/* ── yt-bg iframe: always cover, any aspect ratio ─────── */
.yt-bg iframe {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  /* Cover the container regardless of its aspect ratio */
  width: calc(100vh * (16/9));
  height: calc(100vw * (9/16));
  min-width: 100%;
  min-height: 100%;
  border: 0;
  pointer-events: none;
}

/* ── Mobile: portrait override ── */
@media (max-width: 760px) {
  .yt-bg iframe {
    width: calc(100svh * (16/9));
    height: 100svh;
  }
}

.label {
  position: relative;
  z-index: 3;
  display: inline-flex;
  margin-left: clamp(20px, 18vw, 320px);
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.5);
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(4px);
  font-size: clamp(18px, 3vw, 44px);
  line-height: 1;
  letter-spacing: .24em;
  text-transform: uppercase;
  text-shadow: 0 1px 8px rgba(0,0,0,.9);
  transition: background .18s ease, color .18s ease, transform .18s ease;
}

.caption {
  position: absolute;
  z-index: 3;
  left: clamp(20px, 18vw, 320px);
  bottom: clamp(34px, 8vw, 92px);
  max-width: 440px;
  padding: 6px 8px;
  background: rgba(0,0,0,.72);
  color: rgba(255,255,255,.82);
  font-size: 13px;
  line-height: 1.5;
  opacity: .85;
}

.link-panel:hover .label {
  background: #fff;
  color: #000;
  transform: translateY(-2px);
}

.link-panel:hover .image-field {
  filter: contrast(1.35) grayscale(.65);
}

.contact-panel {
  min-height: 62vh;
  background: #000;
  padding: 100px 20px;
}

.contact-grid {
  width: min(1080px, 100%);
  margin: 0 auto;
}

.contact-panel .label {
  margin-left: 0;
  margin-bottom: 18px;
  font-size: clamp(28px, 7vw, 96px);
  letter-spacing: .18em;
}

.contact-grid p {
  margin: 0 0 48px;
  color: var(--muted);
  font-size: clamp(16px, 2vw, 28px);
}

.contact-links {
  display: grid;
  border-top: 1px solid var(--border);
}

.contact-links a {
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  color: rgba(255,255,255,.88);
}

.contact-links a::after {
  content: " →";
  color: var(--red);
}

.contact-links a:hover {
  color: #fff;
  padding-left: 12px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px 26px;
  color: rgba(255,255,255,.66);
  font-size: 11px;
  border-top: 1px solid rgba(255,255,255,.08);
}

@media (max-width: 760px) {
  /* Full-width sticky bar — logo left, links scroll right */
  .topbar {
    top: 0;
    left: 0;
    right: 0;
    align-items: center;
    background: rgba(0,0,0,0.88);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 0 10px;
    height: 42px;
    gap: 0;
  }

  /* Hide the toggle dot — no dropdown on mobile */
  .nav-toggle {
    display: none;
  }

  /* Logo: float independently below the bar, original size */
  .brand {
    position: fixed;
    top: 52px;
    left: 10px;
    z-index: 35;
    padding: 0;
  }

  .brand img {
    height: 80px;
  }

  /* Nav: horizontal scrollable row */
  .nav {
    display: flex !important;
    flex-wrap: nowrap;
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: none !important;
    position: static;
    overflow-x: auto;
    overflow-y: visible;
    scrollbar-width: none;
    -ms-overflow-style: none;
    flex: 1;
    margin-left: 0;
  }

  .nav::-webkit-scrollbar { display: none; }

  .nav a {
    border: 0;
    border-left: 1px solid rgba(255,255,255,0.1);
    height: 42px;
    font-size: 9px;
    letter-spacing: 0.14em;
    padding: 0 10px;
    white-space: nowrap;
    flex-shrink: 0;
    background: transparent;
  }

  .nav a:first-child { border-left: 0; }
  .nav a:hover { background: rgba(255,255,255,0.06); color: #fff; }
  .nav a.nav-active { color: var(--red); }

  .panel {
    min-height: 62vh;
  }

  .hero-panel {
    min-height: 100svh;
  }

  .hero-copy {
    margin-left: 20px;
    padding-top: 80px;
  }

  h1 {
    font-size: clamp(50px, 19vw, 96px);
  }

  .label {
    margin-left: 22px;
    font-size: clamp(20px, 8vw, 38px);
    letter-spacing: .16em;
  }

  .caption {
    left: 22px;
    right: 22px;
    bottom: 28px;
  }

  /* Stack label + caption at bottom of each link panel on mobile */
  .link-panel {
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding-bottom: 30px;
  }

  .link-panel .caption {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin-left: 22px;
    margin-top: 10px;
  }

  .footer {
    display: grid;
  }
}

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

/* ─── CONTENT SECTION STYLES ──────────────────────────── */

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(18px, 3vw, 42px);
}

.section {
  padding: 64px clamp(18px, 3vw, 42px);
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.section:first-child {
  padding-top: 100px;
}

.section .wrap {
  padding: 0;
}

.hero {
  padding: 140px clamp(18px, 3vw, 42px) 72px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
}

.hero .wrap {
  padding: 0;
  width: 100%;
}

.hero h1 {
  font-size: clamp(52px, 10vw, 140px);
  margin-bottom: 18px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr min(360px, 38vw);
  gap: clamp(24px, 4vw, 60px);
  align-items: center;
}

.hero-tagline,
.hero-brand,
.hero-statement {
  font-size: clamp(14px, 1.3vw, 18px);
  color: var(--muted);
  margin: 0 0 10px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.eyebrow {
  display: block;
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.38);
  margin-bottom: 14px;
}

h2 {
  font-size: clamp(24px, 4vw, 52px);
  line-height: .94;
  letter-spacing: -.04em;
  margin: 0 0 24px;
}

.lead {
  font-size: clamp(15px, 1.5vw, 20px);
  color: var(--muted);
  line-height: 1.65;
  margin: 0 0 18px;
}

.body-copy {
  font-size: 13px;
  line-height: 1.85;
  color: var(--muted);
  white-space: pre-line;
  max-width: 740px;
}

.btn {
  display: inline-flex;
  align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: lowercase;
  padding: 10px 16px;
  border: 1px solid rgba(255,255,255,.3);
  color: rgba(255,255,255,.8);
  background: transparent;
  cursor: pointer;
  transition: background .15s, color .15s, border-color .15s;
}

.btn:hover {
  background: #fff;
  color: #000;
  border-color: #fff;
}

.btn.primary {
  background: #fff;
  color: #000;
  border-color: #fff;
}

.btn.primary:hover {
  background: rgba(255,255,255,.85);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 64px);
  align-items: start;
}

.embed-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 14px;
}

.audio-card {
  border: 1px solid rgba(255,255,255,.1);
  padding: 14px;
  background: rgba(255,255,255,.03);
}

.audio-card iframe {
  width: 100%;
  height: 120px;
  border: 0;
  display: block;
}

.thumb-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
}

.video-thumb {
  position: relative;
  cursor: pointer;
  background: #111;
}

.video-thumb img {
  width: 100%;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
  opacity: .85;
}

.play-btn {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.42);
  border: 0;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
}

.play-btn:hover {
  background: rgba(255,255,255,.15);
}

.vid-title {
  font-size: 11px;
  color: var(--muted);
  padding: 8px 8px 10px;
  margin: 0;
  line-height: 1.4;
}

.link-rows {
  border-top: 1px solid rgba(255,255,255,.1);
}

.link-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  font-size: 13px;
  color: rgba(255,255,255,.8);
  transition: color .13s;
}

.link-row:hover {
  color: #fff;
}

.link-row .meta {
  font-size: 11px;
  color: rgba(255,255,255,.38);
  white-space: nowrap;
}

.bullet-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(255,255,255,.07);
}

.bullet-grid li {
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  font-size: 13px;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
}

.bullet-grid .year {
  font-size: 10px;
  color: rgba(255,255,255,.32);
  letter-spacing: .08em;
  flex-shrink: 0;
}

.compact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(255,255,255,.07);
}

.compact-list li {
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  font-size: 13px;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
}

.festival-item strong {
  color: rgba(255,255,255,.88);
}

.loc {
  font-size: 11px;
  color: rgba(255,255,255,.38);
}

.media-frame {
  background: #111;
  overflow: hidden;
  position: relative;
}

.media-frame img {
  width: 100%;
  display: block;
}

.media-placeholder {
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: rgba(255,255,255,.28);
  text-transform: uppercase;
  letter-spacing: .12em;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1px;
  background: rgba(255,255,255,.1);
}

.focus-card {
  display: flex;
  flex-direction: column;
  padding: 24px;
  background: #000;
  gap: 10px;
  transition: background .15s;
}

.focus-card:hover {
  background: rgba(255,255,255,.06);
}

.focus-card h3 {
  font-size: 15px;
  letter-spacing: .06em;
  margin: 0;
}

.focus-card p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.focus-card .link-arrow {
  font-size: 11px;
  color: rgba(255,59,48,.9);
  letter-spacing: .1em;
  margin-top: auto;
}

.feature-block {
  display: grid;
  grid-template-columns: 1fr min(380px, 40%);
  gap: clamp(24px, 4vw, 60px);
  align-items: start;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1px;
  background: rgba(255,255,255,.1);
  margin-top: 22px;
}

.project-card {
  display: flex;
  flex-direction: column;
  padding: 24px;
  background: #000;
  gap: 10px;
  transition: background .15s;
}

.project-card:hover {
  background: rgba(255,255,255,.06);
}

.project-card h3 {
  font-size: 15px;
  letter-spacing: .04em;
  margin: 0;
}

.project-card p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.project-card .link-arrow {
  font-size: 11px;
  color: rgba(255,59,48,.9);
  letter-spacing: .1em;
  margin-top: auto;
}

.video-card {
  border: 1px solid rgba(255,255,255,.1);
  overflow: hidden;
}

.video-card .embed {
  position: relative;
  aspect-ratio: 16/9;
}

.video-card .embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-card .copy {
  padding: 16px;
}

.video-card h3 {
  font-size: 13px;
  margin: 0 0 8px;
}

.video-card p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

.press-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.press-card {
  border: 1px solid rgba(255,255,255,.1);
  overflow: hidden;
}

.press-card .copy {
  padding: 12px;
  font-size: 12px;
  color: var(--muted);
}

.photo-size {
  font-size: 10px;
  opacity: .45;
  letter-spacing: .05em;
  margin-left: 4px;
}

.bio-block {
  border-left: 2px solid rgba(255,255,255,.2);
  padding-left: 18px;
}

.bio-block h3 {
  font-size: 14px;
  margin: 0 0 8px;
  letter-spacing: .04em;
}

.bio-block p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

.todo-tag {
  font-size: 11px;
  color: rgba(255,59,48,.7);
  font-style: italic;
}

.meta {
  font-size: 11px;
  color: rgba(255,255,255,.38);
}

.date {
  font-size: 11px;
  color: rgba(255,255,255,.38);
}

.site-footer {
  padding: 18px clamp(18px, 3vw, 42px) 26px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.5);
  font-size: 11px;
}

.site-footer .wrap {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 0;
}

/* site-header compat alias — maps old header class to topbar visual */
.site-header {
  position: fixed;
  top: 14px;
  left: 14px;
  right: 14px;
  z-index: 30;
  display: flex;
  align-items: flex-start;
  pointer-events: none;
}

.site-header .brand,
.site-header .nav-toggle {
  pointer-events: auto;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  transform-origin: top left;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-8px);
  transition: opacity .18s ease, transform .18s ease;
}

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

.site-nav a {
  pointer-events: auto;
  background: #000;
  border: 1px solid var(--border);
  border-left: 0;
  color: #fff;
  height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  font-size: 12px;
  text-decoration: none;
}

.site-nav a:hover {
  background: #fff;
  color: #000;
}

@media (max-width: 760px) {
  .hero {
    padding-top: 100px;
    min-height: auto;
  }

  .hero-grid,
  .two-col,
  .feature-block {
    grid-template-columns: 1fr;
  }

  .thumb-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }

  .site-footer .wrap {
    flex-direction: column;
  }

  .site-nav {
    position: absolute;
    top: 34px;
    left: 0;
    width: min(260px, calc(100vw - 20px));
    display: grid;
  }

  .site-nav a {
    border-left: 1px solid var(--border);
    border-top: 0;
    justify-content: space-between;
  }
}

/* ═══════════════════════════════════════════════════════
   INTERIOR PAGE SYSTEM
   ═══════════════════════════════════════════════════════ */

/* ── Sub-page image-field backgrounds ── */
.image-field-music   { background: url("../img/av_dj_playing_01.jpg")           center center / cover no-repeat; }
.image-field-visuals { background: url("../img/bg_babani_01.jpg")                center center / cover no-repeat; }
.image-field-projects{ background: url("../img/bg01_av02.jpg")                   center center / cover no-repeat; }
.image-field-press   { background: url("../img/av_dj_playing_01.jpg")            center center / cover no-repeat; }

.image-field-music::after,
.image-field-visuals::after,
.image-field-projects::after,
.image-field-press::after {
  background: linear-gradient(180deg, rgba(0,0,0,.48) 0%, rgba(0,0,0,.12) 55%, rgba(0,0,0,.06) 100%);
}

/* ── Interior page hero ── */
.page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: flex-end;
  border-bottom: 1px solid rgba(255,255,255,.08);
  overflow: hidden;
}

.page-hero .image-field {
  opacity: .54;
}

.page-hero-copy {
  position: relative;
  z-index: 2;
  padding: 150px clamp(22px,5vw,60px) 56px;
  width: 100%;
}

.page-hero-copy .eyebrow {
  color: var(--red);
  margin-bottom: 16px;
}

.page-hero-copy h1 {
  font-size: clamp(3.4rem, 9.5vw, 9rem);
  font-weight: 700;
  letter-spacing: -.045em;
  text-transform: uppercase;
  line-height: .88;
  margin: 0 0 22px;
}

.page-hero-copy .lead {
  color: rgba(255,255,255,.6);
  font-size: clamp(.88rem,1.35vw,1.04rem);
  line-height: 1.78;
  max-width: 560px;
  margin: 0;
}

/* ── Section kicker (red label) ── */
.kicker-red {
  display: block;
  font-size: 10px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}

/* ── Projects grid ── */
.proj-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1px;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.09);
  margin-top: 32px;
}

.proj-card {
  background: #000;
  padding: 30px 26px 26px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-decoration: none;
  color: inherit;
  transition: background .15s;
  position: relative;
}

.proj-card:hover {
  background: rgba(255,255,255,.05);
}

.proj-name {
  font-size: clamp(15px,2.2vw,21px);
  font-weight: 700;
  letter-spacing: -.02em;
  text-transform: uppercase;
  line-height: 1;
  color: rgba(255,255,255,.9);
  transition: color .15s;
}

.proj-card:hover .proj-name { color: #fff; }

.proj-url {
  font-size: 10px;
  letter-spacing: .1em;
  color: rgba(255,255,255,.3);
  text-transform: lowercase;
}

.proj-desc {
  font-size: 12px;
  line-height: 1.65;
  color: rgba(255,255,255,.5);
  margin-top: 8px;
  flex: 1;
}

.proj-arrow {
  font-size: 11px;
  color: rgba(255,255,255,.22);
  letter-spacing: .08em;
  margin-top: 18px;
  display: block;
  transition: color .15s, transform .15s;
}

.proj-card:hover .proj-arrow {
  color: var(--red);
  transform: translate(2px,-2px);
}

/* ── Press Kit banner ── */
.pk-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid rgba(255,255,255,.22);
  padding: 24px 28px;
  text-decoration: none;
  color: inherit;
  transition: background .15s, border-color .15s;
}

.pk-banner:hover {
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.5);
}

.pk-banner-label {
  font-size: clamp(15px,2.6vw,24px);
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 5px;
}

.pk-banner-sub {
  font-size: 11px;
  color: rgba(255,255,255,.5);
  letter-spacing: .1em;
  text-transform: lowercase;
}

.pk-banner-arrow {
  font-size: 22px;
  color: var(--red);
  flex-shrink: 0;
  transition: transform .15s;
}

.pk-banner:hover .pk-banner-arrow { transform: translate(3px,-2px); }

@media (max-width: 760px) {
  .page-hero { min-height: 44vh; }
  .page-hero-copy { padding: 120px 20px 44px; }
  .page-hero-copy h1 { font-size: clamp(2.8rem,17vw,5rem); }
  .proj-grid { grid-template-columns: 1fr 1fr; }
}

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

/* ── Video lightbox ─────────────────────────────── */
.v-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: lb-in .18s ease;
}

@keyframes lb-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.v-lightbox iframe {
  width: min(1320px, 96vw);
  aspect-ratio: 16/9;
  border: 0;
  display: block;
  max-height: 90vh;
}

.v-lightbox-close {
  position: absolute;
  top: 18px;
  right: 22px;
  background: transparent;
  border: 1px solid rgba(255,255,255,.3);
  color: #fff;
  font-size: 20px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* ── Release list ────────────────────────────────── */
.release-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  border-top: 1px solid rgba(255,255,255,.08);
}

.release-list li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  font-size: 13px;
  line-height: 1.5;
  flex-wrap: wrap;
}

.release-title {
  font-weight: 700;
  letter-spacing: -.01em;
  color: #fff;
  flex: 1;
  min-width: 180px;
}

.release-label {
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--red);
  white-space: nowrap;
}

.release-as {
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  white-space: nowrap;
}

/* ── Release grid cards ────────────────────────────── */
.release-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.release-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform .18s ease;
}

.release-card:hover { transform: translateY(-3px); }

.release-art {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: #111;
  position: relative;
}

.release-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity .2s;
  filter: grayscale(0.2);
}

.release-card:hover .release-art img { opacity: 0.88; filter: grayscale(0); }

.release-art--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0d0d0d;
  border: 1px solid rgba(255,255,255,.07);
}

.release-art--placeholder span {
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.18);
}

.release-info {
  padding: 10px 0 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.release-info .release-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  color: #fff;
  min-width: 0;
  white-space: normal;
  line-height: 1.3;
}

.release-info .release-title em {
  font-style: normal;
  opacity: .5;
  font-weight: 400;
}

.release-info .release-as {
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  white-space: normal;
}

.release-info .release-label {
  font-size: 9px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--red);
}

/* ── Full-width section (no wrap constraint) ────────── */
.section--full {
  padding-left: 0;
  padding-right: 0;
}

.releases-header {
  padding: 0 clamp(18px, 3vw, 42px) 24px;
}

/* ── Featured release — large artwork layout ────────── */
.release-featured {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 0;
}

.releases-sub-heading {
  padding: 36px clamp(18px, 3vw, 42px) 0;
}

.release-feature {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.release-feature-img {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: #111;
}

.release-feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease, filter .3s ease;
  filter: grayscale(1);
}

.release-feature:hover .release-feature-img img {
  transform: scale(1.03);
  filter: grayscale(0);
}

.release-feature-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  background: linear-gradient(to top, rgba(0,0,0,.6) 0%, transparent 55%);
  opacity: 0;
  transition: opacity .25s ease;
}

.release-feature:hover .release-feature-overlay { opacity: 1; }

.release-feature-cta {
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #fff;
}

.release-feature-meta {
  padding: 10px 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.release-feature-label {
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--red);
}

.release-feature-title {
  font-size: clamp(14px, 2vw, 20px);
  font-weight: 700;
  letter-spacing: .04em;
  color: #fff;
  line-height: 1.2;
}

.release-feature-artist {
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
}

/* placeholder slot — dark square, no image yet */
.release-feature-img--ph {
  background:
    repeating-linear-gradient(
      45deg,
      rgba(255,255,255,.025) 0px,
      rgba(255,255,255,.025) 1px,
      transparent 1px,
      transparent 12px
    ),
    #0a0a0a;
  border: 1px solid rgba(255,255,255,.06);
}

@media (max-width: 900px) {
  .release-featured { grid-template-columns: repeat(3, 1fr); }
}

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

.releases-sub-heading {
  margin: 44px 0 0;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: .4;
  font-weight: 400;
}

/* ── Cursor spirit — two blinking dots ─────────────── */
@media (hover: hover) and (pointer: fine) {
  html, body, a, button { cursor: none !important; }
}

#cursor-spirit {
  position: fixed;
  top: 0; left: 0;
  width: 40px; height: 40px;
  pointer-events: none;
  transform: translate3d(-200px,-200px,0);
  z-index: 9999;
  transition: opacity .2s;
}

@media (hover: none), (pointer: coarse), (max-width: 760px) {
  #cursor-spirit { opacity: 0; transition: opacity 0.3s ease; }
  #cursor-spirit.touch-active { opacity: 1; }
}

.cursor-eyes {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 3px;
  align-items: center;
  justify-content: center;
}

.eye {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 5px 2px rgba(255,59,48,.8);
  transition: transform .07s ease-out, opacity .07s ease-out, box-shadow .07s ease-out;
}

.eye.blink {
  transform: scaleY(0.08) scaleX(1.3);
  opacity: .2;
  box-shadow: none;
}


/* ── Particle canvas ───────────────────────────────── */
#av-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}


/* ── PARTICLE CANVAS ──────────────────────────────── */
#particles {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
}

@media (max-width: 760px) {
  #particles { display: none; }
}

/* ── AUDIO DECK — hidden, only activates when playing ── */
.audio-deck {
  display: none;
}

/* ── BOTTOM RIGHT — from mauritius to the world ──────── */
#av-tagline {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: lowercase;
  color: rgba(255,255,255,0.35);
  pointer-events: none;
}

@media (max-width: 768px) {
  #av-tagline { bottom: 12px; right: 12px; font-size: 9px; }
}

/* ── ë BADGE — bottom left ────────────────────────── */
#eeee-badge {
  position: fixed;
  bottom: 18px;
  left: 18px;
  z-index: 100;
  display: block;
  width: 28px;
  height: 28px;
  text-decoration: none;
  opacity: 1;
  transition: opacity 0.2s;
}
#eeee-badge:hover { opacity: 0.7; }
#eeee-badge img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
}
@media (max-width: 768px) {
  #eeee-badge { bottom: 12px; left: 12px; }
}

@media (max-width: 768px) {
  .audio-deck {
    bottom: 12px;
    right: 12px;
    font-size: 10px;
    padding: 6px 10px;
  }
  #eeee-badge {
    bottom: 12px;
    left: 12px;
  }
}

/* ── Mix cards: 5-in-a-row square grid ─────────────── */
.mix-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
}
.mix-card {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}
.mix-card-bg {
  position: absolute;
  inset: 0;
  background: var(--mix-bg, #111);
  transition: transform .4s ease;
}
.mix-card:hover .mix-card-bg { transform: scale(1.04); }
.mix-card-body {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 60%);
}
.mix-card-body--center {
  justify-content: center;
  align-items: center;
}
.mix-num {
  font-size: 9px;
  letter-spacing: .2em;
  color: rgba(255,255,255,.3);
  margin-bottom: 4px;
}
.mix-title {
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.3;
}
.mix-venue {
  font-size: 9px;
  letter-spacing: .1em;
  color: rgba(255,255,255,.55);
  margin-top: 3px;
}
.mix-date {
  position: absolute;
  top: 10px;
  right: 12px;
  font-size: 8px;
  letter-spacing: .1em;
  color: rgba(255,255,255,.35);
}
@media (max-width: 900px) {
  .mix-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .mix-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Video hero zoom 12% ────────────────────────────── */
.page-hero .yt-bg iframe {
  transform: translate(-50%, -50%) scale(1.12);
}

/* ── ë network badge ─────────────────────────────────
   Fixed chip (top-right) linking back to eeee.mu.
   Like Bandcamp's "← back to label" — shows this site
   is part of the ë ecosystem.
───────────────────────────────────────────────────── */
.e-net-badge {
  position: fixed; top: 14px; right: 16px; z-index: 9999;
  display: inline-flex; align-items: center; gap: 5px;
  padding: 5px 11px 5px 9px;
  background: rgba(6,7,13,.88); border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.65); text-decoration: none;
  font-family: 'DM Mono', 'Space Mono', monospace;
  font-size: 9px; letter-spacing: .13em;
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  transition: background .2s, border-color .2s, color .2s;
}
.e-net-badge:hover {
  background: rgba(232,64,64,.1);
  border-color: rgba(232,64,64,.4);
  color: #fff;
}
.enb-e    { color: #e84040; font-size: 15px; line-height: 1; font-weight: 300; }
.enb-text { text-transform: lowercase; }

