:root{
  --bg: #121212;
  --surface: #1C1B19;
  --line: #33302B;
  --brass: #8C6239;
  --brass-dim: #6B4A2A;
  --signal: #B98D52;
  --cream: #EDE6D8;
  --muted: #8F887C;
}

/* Smooth native cross-fade between pages (supporting browsers only — no-op elsewhere) */
@view-transition{
  navigation: auto;
}
::view-transition-old(root),
::view-transition-new(root){
  animation-duration: 0.5s;
  animation-timing-function: ease-in-out;
}

/* Fade sections in as they scroll into view */
.fade-section{
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-section.is-visible{
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce){
  .fade-section{
    opacity: 1;
    transform: none;
    transition: none;
  }
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  background: var(--bg);
  color: var(--cream);
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  line-height: 1.5;
}

.mono{ font-family: 'IBM Plex Mono', monospace; }

h1, h2, h3, .display{
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  letter-spacing: 0.02em;
  margin: 0;
}

a{ color: inherit; }
a:focus-visible, button:focus-visible{
  outline: 2px solid var(--signal);
  outline-offset: 3px;
}

.wrap{
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- NAV ---------- */
header{
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.nav{
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 14px 0;
}
.brand{
  display: flex;
  justify-content: center;
  order: 2;
}
.brand-link{ display: flex; align-items: center; }
.brand-logo{
  height: 80px;
  width: auto;
  display: block;
}
nav{ order: 1; }
nav ul{
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
  font-size: 0.85rem;
}
header nav ul li a{
  text-decoration: none;
  color: var(--muted);
  transition: color 0.15s ease;
}
header nav ul li a:hover{ color: var(--cream); }
.nav-cta{
  order: 3;
  justify-self: end;
}
.nav-mobile-only{ display: none; }

/* ---------- MOBILE NAV (hamburger) ---------- */
.nav-toggle{
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.nav-toggle-label{
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 26px;
  height: 22px;
  cursor: pointer;
}
.nav-toggle-label span{
  display: block;
  width: 100%;
  height: 2px;
  background: var(--cream);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle:checked ~ .nav-toggle-label span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav-toggle:checked ~ .nav-toggle-label span:nth-child(2){ opacity: 0; }
.nav-toggle:checked ~ .nav-toggle-label span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 800px){
  .nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .brand{ order: 1; justify-content: flex-start; }
  .nav-toggle-label{ display: flex; order: 2; }
  .nav-cta{ display: none; }
  .nav-mobile-only{ display: block; }

  nav{
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }
  .nav-toggle:checked ~ nav{ max-height: 340px; }
  nav ul{
    flex-direction: column;
    gap: 0;
    padding: 4px 28px 12px;
  }
  nav ul li{ border-bottom: 1px solid var(--line); }
  nav ul li:last-child{ border-bottom: none; }
  header nav ul li a{
    display: block;
    padding: 16px 4px;
    font-size: 0.95rem;
  }
}
header .btn{
  border-color: var(--brass);
  color: var(--brass);
}
header .btn:hover{
  background: var(--brass);
  color: var(--bg);
}
.btn{
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-decoration: none;
  padding: 10px 18px;
  border: 1px solid var(--brass);
  color: var(--brass);
  background: transparent;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.btn:hover{ background: var(--brass); color: var(--bg); }
.btn-solid{
  background: var(--brass);
  color: var(--bg);
  border-color: var(--brass);
}
.btn-solid:hover{ background: var(--brass-dim); border-color: var(--brass-dim); }

/* ---------- HERO ---------- */
.hero{
  padding: 96px 0 72px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.hero-eyebrow{
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  color: var(--signal);
  letter-spacing: 0.14em;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
}
.dot{
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 8px var(--signal);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse{
  0%, 100%{ opacity: 1; }
  50%{ opacity: 0.35; }
}
.hero h1{
  font-size: clamp(3rem, 9vw, 6.2rem);
  line-height: 0.94;
  color: var(--cream);
}
.hero h1 span{ color: var(--brass); }
.hero-tag{
  max-width: 46ch;
  color: var(--muted);
  font-size: 1.05rem;
  margin: 26px 0 36px;
}
.hero-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 56px;
}

/* VU meter row */
.meter{
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 46px;
}
.meter span{
  width: 6px;
  background: var(--line);
  animation: meter-bounce 1.4s ease-in-out infinite;
}
.meter span:nth-child(1){ height: 40%; animation-delay: 0s; background: var(--signal); }
.meter span:nth-child(2){ height: 70%; animation-delay: 0.12s; background: var(--signal); }
.meter span:nth-child(3){ height: 55%; animation-delay: 0.24s; background: var(--brass); }
.meter span:nth-child(4){ height: 90%; animation-delay: 0.36s; background: var(--brass); }
.meter span:nth-child(5){ height: 65%; animation-delay: 0.48s; background: var(--signal); }
.meter span:nth-child(6){ height: 35%; animation-delay: 0.6s; background: var(--signal); }
.meter span:nth-child(7){ height: 78%; animation-delay: 0.72s; background: var(--brass); }
.meter span:nth-child(8){ height: 50%; animation-delay: 0.84s; background: var(--signal); }
.meter span:nth-child(9){ height: 30%; animation-delay: 0.96s; background: var(--signal); }
.meter span:nth-child(10){ height: 60%; animation-delay: 1.08s; background: var(--brass); }
@keyframes meter-bounce{
  0%, 100%{ transform: scaleY(0.6); opacity: 0.7; }
  50%{ transform: scaleY(1); opacity: 1; }
}
@media (prefers-reduced-motion: reduce){
  .dot, .meter span{ animation: none; }
}

/* ---------- SECTION LABELS ---------- */
.section-label{
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.14em;
  margin-bottom: 8px;
}
.section-title{
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--cream);
  margin-bottom: 44px;
}
section{ padding: 72px 0; border-bottom: 1px solid var(--line); }

/* ---------- CHANNEL STRIPS (services) ---------- */
.channels{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
@media (max-width: 900px){
  .channels{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px){
  .channels{ grid-template-columns: 1fr; }
}
.channel{
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 22px 34px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: var(--surface);
}
.channel-num{
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  color: var(--brass);
  letter-spacing: 0.1em;
}
.channel h3{
  font-size: 1.5rem;
  color: var(--cream);
}
.channel p{
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0;
  flex-grow: 1;
}
.fader{
  width: 100%;
  height: 64px;
  border: 1px solid var(--line);
  position: relative;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0px, transparent 7px,
    var(--line) 7px, var(--line) 8px
  );
}
.fader::after{
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 10px;
  background: var(--brass);
  top: var(--fader-pos, 30%);
}
.channel:nth-child(1) .fader{ --fader-pos: 20%; }
.channel:nth-child(2) .fader{ --fader-pos: 45%; }
.channel:nth-child(3) .fader{ --fader-pos: 30%; }
.channel:nth-child(4) .fader{ --fader-pos: 55%; }

/* ---------- ABOUT / SPECS ---------- */
.about-grid{
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
}
@media (max-width: 800px){
  .about-grid{ grid-template-columns: 1fr; }
}
.about-grid p{
  color: var(--muted);
  font-size: 1rem;
  margin: 0 0 16px;
}
.specs{
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.85rem;
}
.specs li{
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--cream);
}
.specs li span:first-child{ color: var(--muted); }

.feature-list{
  list-style: none;
  margin: 0;
  padding: 0;
}
.feature-list li{
  padding: 12px 0 12px 22px;
  position: relative;
  border-bottom: 1px solid var(--line);
  color: var(--cream);
  font-size: 0.95rem;
}
.feature-list li:last-child{ border-bottom: none; }
.feature-list li::before{
  content: "—";
  position: absolute;
  left: 0;
  color: var(--brass);
}

.artist-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 700px){
  .artist-grid{ grid-template-columns: 1fr; }
}
.artist-card{
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 28px 26px 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.artist-tag{
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  color: var(--brass);
  letter-spacing: 0.08em;
}
.artist-card h3{
  font-size: 1.6rem;
  color: var(--cream);
}
.artist-card > p{
  color: var(--muted);
  margin: 0;
  font-size: 0.92rem;
}

.tag-row{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tag{
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  color: var(--brass);
  border: 1px solid var(--line);
  padding: 4px 10px;
  border-radius: 999px;
}

/* ---------- ROOMS / VENUES ---------- */
.rooms{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 640px){
  .rooms{ grid-template-columns: 1fr; }
}
.room-row{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  border-top: 1px solid var(--line);
}
.rooms .room-row:nth-child(odd){ border-right: 1px solid var(--line); }
@media (max-width: 640px){
  .rooms .room-row:nth-child(odd){ border-right: none; }
}
.room-row span:first-child{ font-size: 1rem; color: var(--cream); }
.room-row span:last-child{
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.08em;
}

/* ---------- CONTACT / FOOTER ---------- */
footer{ padding: 72px 0 40px; }
.contact-grid{
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
@media (max-width: 800px){
  .contact-grid{ grid-template-columns: 1fr; }
}
.contact-grid h2{
  font-size: clamp(2.2rem, 6vw, 3.4rem);
  color: var(--cream);
  margin-bottom: 20px;
}
.contact-list{
  list-style: none;
  padding: 0;
  margin: 0;
}
.contact-list li{ margin-bottom: 18px; }
.contact-list .label{
  display: block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.contact-list a{
  text-decoration: none;
  font-size: 1.1rem;
  color: var(--brass);
  border-bottom: 1px solid transparent;
}
.contact-list a:hover{ border-bottom-color: var(--brass); }

.foot-bottom{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.06em;
}

/* ---------- MOBILE POLISH ---------- */
@media (max-width: 640px){
  .wrap{ padding: 0 20px; }

  .hero{ padding: 48px 0 40px; }
  .hero-tag{ font-size: 0.98rem; }

  section{ padding: 48px 0; }
  .section-title{ margin-bottom: 28px; }

  footer{ padding: 48px 0 28px; }
  .contact-grid{ margin-top: 40px !important; margin-bottom: 40px; }

  /* Bigger tap targets on small screens */
  .btn{
    padding: 13px 20px;
    font-size: 0.82rem;
  }
  .channel, .artist-card, .room-row{
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .foot-bottom{ flex-direction: column; align-items: flex-start; }
}
