@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600;700;800&family=Barlow:wght@400;500;600;700&family=Permanent+Marker&display=swap');

:root {
  --black: #131311;
  --black-soft: #1c1c19;
  --black-card: #201f1c;
  --red: #ae2e35;
  --red-light: #c8444c;
  --orange: #f5a855;
  --cream: #faf6f0;
  --muted: #a39c92;
  --border: rgba(250, 246, 240, 0.12);

  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;

  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 48px;
  --space-xl: 80px;
  --space-2xl: 120px;

  --radius: 4px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  background: var(--black);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0;
}

p { margin: 0; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}


/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background-color 200ms var(--ease), color 200ms var(--ease), border-color 200ms var(--ease), transform 200ms var(--ease);
  min-height: 48px;
}
.btn:active { transform: scale(0.97); }
.btn-primary { background: var(--red); color: var(--cream); }
.btn-primary:hover { background: var(--red-light); }
.btn-outline { background: transparent; color: var(--cream); border-color: var(--cream); }
.btn-outline:hover { background: var(--cream); color: var(--black); }
.btn-accent { background: var(--orange); color: var(--black); }
.btn-accent:hover { filter: brightness(1.08); }

.btn:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
}

/* ---------- Nav ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: var(--space-sm) 0;
  transition: background-color 250ms var(--ease), padding 250ms var(--ease), border-color 250ms var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(19, 19, 17, 0.92);
  backdrop-filter: blur(8px);
  padding: 12px 0;
  border-bottom-color: var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}
.nav-logo img { height: 102px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: border-color 200ms var(--ease), color 200ms var(--ease);
}
.nav-links a:hover, .nav-links a.active { border-color: var(--red); color: var(--orange); }
.nav-socials { display: flex; align-items: center; gap: 14px; }
.nav-socials a { color: var(--cream); opacity: 0.85; transition: opacity 200ms var(--ease), color 200ms var(--ease); display: inline-flex; }
.nav-socials a:hover { opacity: 1; color: var(--orange); }
.nav-socials svg { width: 20px; height: 20px; }
.nav-socials a.nav-events {
  font-family: 'Permanent Marker', cursive;
  font-size: 21px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: normal;
  color: var(--cream);
  opacity: 1;
  text-shadow: 1.5px 1.5px 0 var(--red), -1px -1px 0 var(--orange);
  padding: 4px 8px;
  margin-left: 14px;
  display: inline-block;
  transform: rotate(-3deg);
  transition: transform 200ms var(--ease);
}
.nav-socials a.nav-events:hover {
  color: var(--cream);
  transform: rotate(-3deg) scale(1.07);
}

.nav-toggle {
  display: none;
  background: none; border: none; color: var(--cream);
  width: 44px; height: 44px; align-items: center; justify-content: center;
  cursor: pointer;
}
.nav-toggle svg { width: 24px; height: 24px; display: block; }

@media (max-width: 900px) {
  .nav-links, .nav-socials { display: none; }
  .nav-toggle { display: inline-flex; }
  .site-header.menu-open nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-md);
    position: fixed;
    top: 134px; left: 0; right: 0;
    background: var(--black);
    border-bottom: 1px solid var(--border);
    padding: var(--space-md);
    max-height: calc(100dvh - 68px);
    overflow-y: auto;
  }
  .site-header.menu-open .nav-links,
  .site-header.menu-open .nav-socials {
    display: flex;
  }
  .site-header.menu-open .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-sm);
    width: 100%;
  }
  .site-header.menu-open .nav-socials {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 18px;
    padding-top: var(--space-sm);
    border-top: 1px solid var(--border);
    width: 100%;
  }
  .nav-socials a.nav-events { margin-left: 0; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center 20%;
  isolation: isolate;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(19,19,17,0.55) 0%, rgba(19,19,17,0.35) 35%, rgba(19,19,17,0.95) 100%);
  z-index: -1;
}
.hero-content { padding-bottom: var(--space-2xl); width: 100%; }
.hero-eyebrow {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--orange);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: var(--space-sm);
}
.hero h1 {
  font-size: clamp(64px, 14vw, 168px);
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: var(--space-md);
}
.hero-tagline {
  font-size: clamp(18px, 2.4vw, 24px);
  max-width: 560px;
  color: var(--cream);
  margin-bottom: var(--space-lg);
}
.hero-ctas { display: flex; gap: var(--space-sm); flex-wrap: wrap; }
.scroll-cue {
  position: absolute;
  bottom: var(--space-md);
  left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: bob 2.4s ease-in-out infinite;
}
@keyframes bob { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 8px); } }

/* ---------- Section scaffolding ---------- */
section { padding: var(--space-2xl) 0; }
section[id] { scroll-margin-top: 140px; }
.section-tight { padding: var(--space-xl) 0; }
.section-label {
  font-family: var(--font-display);
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: var(--space-xs);
}
.section-title {
  font-size: clamp(36px, 6vw, 64px);
  text-transform: uppercase;
  margin-bottom: var(--space-lg);
}
.section-alt { background: var(--black-soft); }

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-xl);
  align-items: center;
}
.about-grid img { border-radius: var(--radius); }
.bio-text p { margin-bottom: var(--space-sm); color: var(--cream); }
.bio-text p:last-child { margin-bottom: 0; }
.bio-more { display: none; }
.bio-more.expanded { display: block; }
.bio-toggle {
  margin-top: var(--space-md);
  background: none; border: none; padding: 0;
  color: var(--orange);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  border-bottom: 2px solid var(--orange);
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: var(--space-lg); }
}

/* ---------- Music ---------- */
.music-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-xl);
  align-items: start;
}
.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-sm); margin-bottom: var(--space-lg); }
.stat-card {
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-md);
  text-align: center;
}
.stat-num { font-family: var(--font-display); font-size: 40px; color: var(--orange); }
.stat-label { font-size: 13px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-top: 4px; }
.platform-links { display: flex; flex-direction: column; gap: var(--space-sm); }
.platform-link {
  display: flex; align-items: center; gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 20px;
  text-transform: uppercase;
  transition: border-color 200ms var(--ease), background-color 200ms var(--ease);
}
.platform-link:hover { border-color: var(--red); background: var(--black-soft); }
.platform-link svg { width: 26px; height: 26px; flex-shrink: 0; }
.embed-frame { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.embed-frame iframe { width: 100%; display: block; border: none; }

@media (max-width: 900px) {
  .music-grid { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .stat-row { grid-template-columns: 1fr; }
}

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

/* ---------- Tour ---------- */
.tour-list { border-top: 1px solid var(--border); }
.tour-item {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: var(--space-md);
  align-items: center;
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--border);
}
.tour-date { font-family: var(--font-display); font-size: 22px; color: var(--orange); text-transform: uppercase; }
.tour-info h3 { font-size: 26px; text-transform: uppercase; margin-bottom: 4px; }
.tour-info p { color: var(--muted); font-size: 15px; }
@media (max-width: 700px) {
  .tour-item { grid-template-columns: 1fr; gap: 8px; }
}

/* ---------- Highlights (press) ---------- */
.highlight-groups { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-xl); align-items: start; }
.highlight-group-label {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 14px;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: var(--space-sm);
}
.accordion { border-top: 1px solid var(--border); }
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--cream);
}
.accordion-header .chevron {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--muted);
  transition: transform 200ms var(--ease), color 200ms var(--ease);
}
.accordion-item.is-open .accordion-header .chevron { transform: rotate(180deg); color: var(--orange); }
.accordion-panel { max-height: 0; overflow: hidden; transition: max-height 250ms var(--ease); }
.accordion-item.is-open .accordion-panel { max-height: 240px; }
.accordion-panel p { padding: 0 0 18px; color: var(--muted); font-size: 15px; }

@media (max-width: 900px) { .highlight-groups { grid-template-columns: 1fr; gap: var(--space-lg); } }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xs);
}
.gallery-grid button {
  padding: 0; border: none; background: none; cursor: pointer;
  aspect-ratio: 1/1; overflow: hidden; position: relative;
}
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms var(--ease); }
.gallery-grid button:hover img { transform: scale(1.06); }
@media (max-width: 700px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }

.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(19,19,17,0.96);
  display: none;
  align-items: center; justify-content: center;
  padding: var(--space-lg);
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius); }
.lightbox-close {
  position: absolute; top: var(--space-md); right: var(--space-md);
  background: none; border: 2px solid var(--cream); color: var(--cream);
  width: 44px; height: 44px; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}

/* ---------- Mailing list ---------- */
.mail-box {
  background: var(--red);
  border-radius: var(--radius);
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
}
.mail-box .section-label { color: var(--black); opacity: 0.7; }
.mail-box h2 { color: var(--cream); margin-bottom: var(--space-sm); }
.mail-box p { color: rgba(250,246,240,0.85); max-width: 480px; margin: 0 auto var(--space-lg); }
.mail-form { display: flex; gap: var(--space-xs); max-width: 480px; margin: 0 auto; flex-wrap: wrap; justify-content: center; }
.mail-form input[type="email"] {
  flex: 1 1 260px;
  min-height: 48px;
  padding: 0 var(--space-md);
  border-radius: var(--radius);
  border: 2px solid var(--black);
  background: var(--cream);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 16px;
}
.form-note { margin-top: var(--space-sm); font-size: 14px; color: rgba(250,246,240,0.7); }
.form-success { display: none; color: var(--cream); font-weight: 600; margin-top: var(--space-sm); }
.form-success.show { display: block; }

/* ---------- Footer ---------- */
.site-footer { padding: var(--space-xl) 0 var(--space-lg); border-top: 1px solid var(--border); }
.footer-grid { display: flex; justify-content: space-between; align-items: flex-start; gap: var(--space-lg); flex-wrap: wrap; }
.footer-logo img { height: 90px; margin-bottom: var(--space-sm); }
.footer-cols { display: flex; gap: var(--space-2xl); flex-wrap: wrap; }
.footer-col h4 { font-size: 14px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: var(--space-sm); }
.footer-col a { display: block; margin-bottom: 8px; font-size: 15px; }
.footer-col a:hover { color: var(--orange); }
.footer-bottom { margin-top: var(--space-xl); padding-top: var(--space-md); border-top: 1px solid var(--border); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; font-size: 13px; color: var(--muted); }
.footer-socials { display: flex; gap: 14px; }
.footer-socials svg { width: 20px; height: 20px; }

@media (max-width: 700px) {
  .footer-grid { flex-direction: column; }
}

/* ================= EVENTS PAGE ================= */
.events-hero { min-height: 78dvh; }
.events-hero .hero-content { padding-bottom: var(--space-xl); }

.event-tabs {
  position: sticky;
  top: 126px;
  z-index: 50;
  background: rgba(19,19,17,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  padding: var(--space-sm) 0;
}
.event-tabs-inner { display: flex; gap: var(--space-sm); overflow-x: auto; scrollbar-width: none; }
.event-tabs-inner::-webkit-scrollbar { display: none; }

@media (max-width: 700px) {
  .event-tabs-inner {
    flex-wrap: wrap;
    overflow-x: visible;
    gap: 8px;
  }
  .event-tab {
    padding: 8px 14px;
    font-size: 14px;
  }
}
.event-tab {
  white-space: nowrap;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 10px 20px;
  border: 2px solid var(--border);
  border-radius: 999px;
  transition: border-color 200ms var(--ease), background-color 200ms var(--ease), color 200ms var(--ease);
  min-height: 44px;
  display: inline-flex; align-items: center;
}
.event-tab:hover { border-color: var(--orange); color: var(--orange); }
.event-tab.is-active { background: var(--red); border-color: var(--red); color: var(--cream); }

.event-section { scroll-margin-top: 130px; padding: var(--space-2xl) 0; border-bottom: 1px solid var(--border); }
.event-section:last-of-type { border-bottom: none; }
.event-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-xl); align-items: center; }
.event-grid.reverse .event-media { order: 2; }
.event-media img { border-radius: var(--radius); }
.event-copy p { color: var(--cream); margin-bottom: var(--space-md); }
.event-copy p.muted { color: var(--muted); font-size: 15px; }
.date-pill-row { display: flex; flex-wrap: wrap; gap: 8px; margin: var(--space-md) 0; }
.date-pill {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
}
.schedule-list { margin: var(--space-md) 0; border-top: 1px solid var(--border); }
.schedule-row { display: flex; justify-content: space-between; gap: var(--space-md); padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 15px; }
.schedule-row .time { color: var(--orange); font-family: var(--font-display); min-width: 130px; }
.schedule-row .who { color: var(--muted); }

.media-toggle {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--black);
  border: 1px solid var(--border);
}
.media-toggle img, .media-toggle video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: aspect-ratio 250ms var(--ease);
}
.media-toggle .mt-video { display: none; }
.media-toggle.is-video .mt-photo { display: none; }
.media-toggle.is-video .mt-video.is-active { display: block; }

.media-toggle-switch {
  position: absolute;
  top: 6px; right: 6px;
  z-index: 3;
  display: flex;
  gap: 2px;
  padding: 3px;
  background: rgba(19, 19, 17, 0.75);
  border: 1px solid var(--border);
  border-radius: 999px;
  backdrop-filter: blur(4px);
}
.media-toggle-switch .opt {
  padding: 5px 9px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: 999px;
  color: var(--muted);
  background: none;
  border: none;
  cursor: pointer;
  transition: background-color 150ms var(--ease), color 150ms var(--ease);
}
.media-toggle-switch .opt.is-active {
  background: var(--red);
  color: var(--cream);
}

.media-examples {
  display: none;
  position: absolute;
  left: 6px; top: 6px;
  z-index: 3;
  gap: 6px;
  flex-wrap: wrap;
  max-width: calc(100% - 12px);
}
.media-toggle.is-video .media-examples { display: flex; }
.example-btn {
  padding: 6px 12px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--cream);
  background: rgba(19, 19, 17, 0.75);
  border: 1px solid var(--border);
  border-radius: 999px;
  backdrop-filter: blur(4px);
  cursor: pointer;
  transition: background-color 150ms var(--ease), border-color 150ms var(--ease);
}
.example-btn.is-active {
  background: var(--red);
  border-color: var(--red);
}

@media (max-width: 900px) {
  .event-grid, .event-grid.reverse { grid-template-columns: 1fr; }
  .event-grid.reverse .event-media { order: 0; }
}
@media (max-width: 560px) {
  .media-toggle-switch .opt { padding: 4px 6px; font-size: 9px; }
  .example-btn { padding: 5px 9px; font-size: 10px; }
}

/* ---------- Review form ---------- */
.review-section { background: var(--black-soft); }
.review-form { max-width: 640px; margin: 0 auto; display: flex; flex-direction: column; gap: var(--space-md); }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-family: var(--font-display); text-transform: uppercase; font-size: 14px; letter-spacing: 0.06em; color: var(--muted); }
.field input, .field select, .field textarea {
  min-height: 48px;
  padding: 12px var(--space-sm);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--black-card);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 16px;
}
.field textarea { min-height: 120px; resize: vertical; }
.field .req { color: var(--orange); }

.star-rating { display: flex; gap: 6px; flex-direction: row-reverse; justify-content: flex-end; }
.star-rating input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.star-rating label {
  cursor: pointer; color: var(--border); font-size: 32px; line-height: 1;
  transition: color 150ms var(--ease);
}
.star-rating input:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label { color: var(--orange); }

.review-success {
  display: none;
  background: var(--black-card);
  border: 1px solid var(--orange);
  border-radius: var(--radius);
  padding: var(--space-md);
  color: var(--cream);
}
.review-success.show { display: block; }
