:root {
  --bg: #000000;
  --surface: #0a0a0a;
  --surface-2: #101010;
  --line: rgba(255, 255, 255, 0.12);
  --text: #f2f0ec;
  --muted: #86837c;
  --accent: #e0281c;
  --accent-dim: #b31f16;
  --radius: 2px;
  --max: 1180px;

  --display: "Cormorant Garamond", Georgia, serif;
  --black: "Pirata One", "Cormorant Garamond", serif;
  --meta: "Inter", system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

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

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

/* small uppercase meta label used everywhere */
.eyebrow, .section-num, .events-label, .form-note, .nav-links a, .footer-links a {
  font-family: var(--meta);
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.66rem;
  font-weight: 400;
}

/* ---------- NAV ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px clamp(20px, 5vw, 56px);
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.brand {
  font-family: var(--black);
  font-size: 1.7rem;
  letter-spacing: 0.02em;
  line-height: 1;
}
.nav-links { display: flex; align-items: center; gap: clamp(18px, 3vw, 40px); }
.nav-links a { color: var(--muted); transition: color 0.25s; }
.nav-links a:hover { color: var(--text); }
.nav-cta {
  color: var(--accent) !important;
  border: 1px solid var(--accent);
  padding: 9px 20px;
  transition: background 0.25s, color 0.25s;
}
.nav-cta:hover { background: var(--accent); color: #fff !important; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  padding: 140px 20px 118px;
  overflow: hidden;
  background: #000;
  isolation: isolate;
}
/* isolated media layer so the video never ghosts the text above it */
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  transform: translateZ(0);
}
/* full-bleed background video */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1000px;
}
.eyebrow {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 26px;
}
.hero-title {
  font-family: var(--black);
  font-weight: 400;
  font-size: clamp(4rem, 17vw, 13rem);
  line-height: 0.86;
  letter-spacing: 0.01em;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.55);
}
.hero-genres {
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--meta);
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  font-weight: 400;
}
.hero-actions {
  margin-top: 46px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-stats {
  margin-top: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 5vw, 56px);
  flex-wrap: wrap;
}
.hero-stats > div:not(.divider) { display: flex; flex-direction: column; gap: 6px; }
.hero-stats strong {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
}
.hero-stats span {
  color: var(--muted);
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
}
.hero-stats .divider { width: 1px; height: 38px; background: var(--line); }
.scroll-hint {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  color: var(--muted);
  font-size: 1.1rem;
  z-index: 2;
  animation: bob 2.4s ease-in-out infinite;
}
@keyframes bob { 0%,100% { transform: translate(-50%, 0); opacity: 0.5; } 50% { transform: translate(-50%, 8px); opacity: 1; } }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 34px;
  font-family: var(--meta);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.68rem;
  font-weight: 400;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
  border: 1px solid transparent;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: #fff; color: #000; }
.btn-ghost { background: transparent; border-color: var(--line); color: var(--text); }
.btn-ghost:hover { border-color: var(--text); }

/* ---------- SECTIONS ---------- */
.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(80px, 13vw, 150px) clamp(20px, 5vw, 40px);
}
.section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  margin-bottom: 60px;
}
.section-num { color: var(--accent); }
.section-head h2 {
  font-family: var(--display);
  font-weight: 500;
  text-transform: uppercase;
  font-size: clamp(2.2rem, 6vw, 4rem);
  letter-spacing: 0.08em;
  line-height: 1;
}

/* ---------- MUSIC ---------- */
.video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid var(--line);
}
.video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.platforms {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.platform-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 26px;
  background: var(--bg);
  transition: background 0.25s;
}
.platform-card:hover { background: var(--surface-2); }
.platform-icon {
  display: grid; place-items: center;
  width: 40px; height: 40px;
  border: 1px solid var(--line);
  font-size: 1rem;
  flex-shrink: 0;
}
.platform-body { display: flex; flex-direction: column; flex: 1; gap: 3px; }
.platform-body strong {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.platform-body span {
  color: var(--muted);
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}
.platform-arrow { color: var(--accent); transition: transform 0.25s; }
.platform-card:hover .platform-arrow { transform: translateX(5px); }

.soundcloud-wrap { margin-top: 1px; overflow: hidden; border: 1px solid var(--line); }
.soundcloud-wrap iframe { width: 100%; height: 320px; display: block; border: 0; }

/* ---------- EVENTS ---------- */
.events-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.events-label { color: var(--accent); margin-bottom: 26px; display: block; }
.event-list { list-style: none; display: flex; flex-direction: column; }
.event {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 22px 4px;
  border-top: 1px solid var(--line);
  transition: padding-left 0.25s;
}
.event-list li:last-child { border-bottom: 1px solid var(--line); }
.event:hover { padding-left: 12px; }
.event.past { color: var(--muted); }
.event-date {
  display: flex; flex-direction: column; align-items: center;
  min-width: 56px;
}
.event-date .d {
  font-family: var(--display);
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1;
  color: var(--text);
}
.event-date .m {
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--muted);
  margin-top: 6px;
}
.event-info { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.event-info strong {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.event-info span {
  color: var(--muted);
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}
.event-cta {
  font-family: var(--meta);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.62rem;
  color: var(--accent);
  transition: color 0.25s;
}
.event-cta:hover { color: #fff; }

/* ---------- ABOUT ---------- */
.about-body { max-width: 760px; margin: 0 auto; text-align: center; }
.about-lead {
  font-family: var(--display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  line-height: 1.3;
  margin-bottom: 26px;
}
.about-body p:not(.about-lead) {
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 300;
  max-width: 620px;
  margin: 0 auto;
}
.about-body strong { color: var(--text); font-weight: 400; }
.tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; justify-content: center; }
.tags span {
  padding: 8px 18px;
  border: 1px solid var(--line);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--muted);
}

/* ---------- BOOKING ---------- */
.booking-intro {
  max-width: 640px;
  margin: 0 auto 44px;
  color: var(--muted);
  text-align: center;
  font-size: 1rem;
  font-weight: 300;
}
.booking-intro a { color: var(--accent); }
.booking-form { display: flex; flex-direction: column; gap: 20px; max-width: 780px; margin: 0 auto; }
.booking-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.booking-form label { display: flex; flex-direction: column; gap: 9px; }
.booking-form label > span {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--muted);
}
.booking-form input,
.booking-form select,
.booking-form textarea {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 14px 16px;
  color: var(--text);
  font-family: var(--meta);
  font-weight: 300;
  font-size: 0.92rem;
  transition: border-color 0.25s;
}
.booking-form input::placeholder, .booking-form textarea::placeholder { color: #555; }
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus { outline: none; border-color: var(--accent); }
.booking-form textarea { resize: vertical; }
.booking-form .full { width: 100%; }
.form-footer { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; margin-top: 8px; }
.form-note { color: var(--muted); }

/* ---------- FOOTER ---------- */
.footer {
  border-top: 1px solid var(--line);
  padding: 72px clamp(20px, 5vw, 40px) 96px;
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 22px;
  text-align: center;
  align-items: center;
}
.footer-brand { font-family: var(--black); font-size: 2.4rem; letter-spacing: 0.02em; }
.footer-tag {
  color: var(--muted);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  margin-top: -6px;
}
.footer-links { display: flex; gap: 30px; flex-wrap: wrap; justify-content: center; margin-top: 8px; }
.footer-links a { color: var(--muted); transition: color 0.25s; }
.footer-links a:hover { color: var(--text); }
.socials { display: flex; gap: 16px; margin-top: 6px; }
.socials a {
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--text);
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.2s;
}
.socials a:hover { background: #fff; color: #000; border-color: #fff; transform: translateY(-2px); }
.footer-copy {
  color: var(--muted);
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  opacity: 0.6;
  margin-top: 8px;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 760px) {
  .nav-links a:not(.nav-cta) { display: none; }
  .platforms { grid-template-columns: 1fr; }
  .events-grid { grid-template-columns: 1fr; gap: 48px; }
  .booking-form .row { grid-template-columns: 1fr; }
  .hero-stats .divider { display: none; }
  .hero-title { -webkit-text-stroke-width: 1px; }
}
