:root {
  --bg: #000000;
  --panel: #090909;
  --panel-strong: #101010;
  --text: #f4f0e8;
  --muted: #9a948c;
  --subtle: #625f5a;
  --line: rgba(244, 240, 232, 0.11);
  --cream: #f2ede2;
  --ink: #050505;
  --accent: #b43220;
  --accent-soft: rgba(180, 50, 32, 0.2);
  --max: 1232px;
  --header: 80px;
  color-scheme: dark;
  font-family: 'Barlow', system-ui, sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

button,
input,
textarea {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(100% - 3rem, var(--max));
  margin-inline: auto;
}

.narrow {
  width: min(100% - 3rem, 850px);
}

.site-header {
  position: fixed;
  z-index: 40;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding-inline: clamp(1rem, 3vw, 2rem);
  background: rgba(3, 3, 3, 0.78);
  backdrop-filter: blur(18px);
}

.brand {
  justify-self: start;
  text-decoration: none;
}

.brand-mark,
h2,
h3,
.date-block,
.eyebrow {
  font-family: 'Bebas Neue', Impact, sans-serif;
  letter-spacing: 0.02em;
  font-weight: 400;
  text-transform: uppercase;
}

.brand-mark {
  color: var(--cream);
  font-size: 1rem;
  line-height: 1;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(1rem, 2.7vw, 2.25rem);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.desktop-nav a,
.mobile-nav a {
  text-decoration: none;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.desktop-nav a:hover,
.mobile-nav a:hover {
  color: var(--cream);
}

.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.85rem 1.15rem;
  background: var(--cream);
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  justify-self: end;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--cream);
  cursor: pointer;
}

.mobile-nav {
  position: absolute;
  top: var(--header);
  right: 0;
  left: 0;
  display: none;
  grid-template-columns: 1fr;
  background: rgba(3, 3, 3, 0.96);
}

.mobile-nav a {
  padding: 1rem 1.25rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 90svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: calc(var(--header) + 3rem) 1.5rem 5rem;
}

.hero-inner {
  position: relative;
  width: min(100%, 900px);
  display: grid;
  justify-items: center;
  text-align: center;
}

.hero-logo {
  width: min(56vw, 640px);
  height: clamp(150px, 24vw, 255px);
  min-width: 300px;
  margin-bottom: clamp(2rem, 5vw, 3rem);
  object-fit: cover;
  object-position: center;
  opacity: 0.95;
  filter: drop-shadow(0 2rem 4rem rgba(255, 255, 255, 0.08));
}

.hero-kicker,
.eyebrow {
  margin: 0 0 1rem;
  color: var(--cream);
  font-size: 0.87rem;
  letter-spacing: 0.3em;
}

.hero-copy {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  margin-top: 2.2rem;
  border: 1px solid var(--line);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 54px;
  padding: 1rem 1.9rem;
  border: 0;
  color: var(--cream);
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.055em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.btn svg,
.contact-links svg,
.gig-main svg,
.intent-tab svg,
.nav-toggle svg {
  width: 1.05rem;
  height: 1.05rem;
  stroke-width: 2;
  flex: 0 0 auto;
}

.btn:hover,
.header-cta:hover,
.intent-tab:hover,
.text-link:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--cream);
  color: var(--ink);
}

.btn-outline {
  background: rgba(0, 0, 0, 0.3);
  border-left: 1px solid var(--line);
}

.btn-outline:hover {
  background: var(--panel-strong);
}

.section {
  position: relative;
  scroll-margin-top: var(--header);
  padding-block: clamp(5rem, 10vw, 8rem);
}

.section-banded {
  background: rgba(255, 255, 255, 0.018);
}

.split-layout,
.media-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 8vw, 6rem);
  align-items: center;
}

h2 {
  margin: 0;
  max-width: 760px;
  color: var(--cream);
  font-size: clamp(3.8rem, 8vw, 6rem);
  line-height: 0.94;
}

h3 {
  margin: 0;
  color: var(--cream);
  font-size: clamp(1.28rem, 2.4vw, 1.8rem);
  line-height: 1;
}

p {
  color: var(--muted);
  line-height: 1.65;
}

strong {
  color: var(--cream);
}

.copy-stack {
  display: grid;
  gap: 1.4rem;
}

.copy-stack p,
.lead,
.contact-section p {
  margin: 0;
  font-size: clamp(1.03rem, 1.6vw, 1.2rem);
}

.section-head {
  margin-bottom: clamp(2.5rem, 6vw, 4.3rem);
}

.two-col-head {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: clamp(2rem, 8vw, 7rem);
  align-items: end;
}

.section-head p {
  max-width: 520px;
  margin: 0;
}

.section-head a,
.text-link {
  color: var(--cream);
  font-weight: 700;
}

.centered {
  text-align: center;
}

.centered h2,
.centered p {
  margin-inline: auto;
}

.gig-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding-block: 2rem;
}

.date-block {
  display: grid;
  gap: 0.25rem;
  min-width: 80px;
  padding-right: 1.5rem;
  border-right: 1px solid var(--line);
  color: var(--cream);
}

.date-block span {
  font-size: 2.4rem;
  line-height: 0.85;
}

.date-block small {
  color: var(--muted);
  font-family: 'Barlow', system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.gig-main {
  display: grid;
  gap: 0.35rem;
}

.gig-main p {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  color: var(--muted);
}

.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0.35rem 0.8rem;
  border: 1px solid var(--cream);
  color: var(--cream);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.intent-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 2rem;
  border: 1px solid var(--line);
}

.intent-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 54px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.065em;
  text-transform: uppercase;
}

.intent-tab:last-child {
  border-right: 0;
}

.intent-tab.is-active {
  background: var(--cream);
  color: var(--ink);
}

.booking-form {
  display: grid;
  gap: 1.35rem;
  padding: clamp(1.25rem, 4vw, 2rem);
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.28);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

label {
  display: grid;
  gap: 0.55rem;
}

label span {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--panel);
  color: var(--cream);
  outline: 0;
  padding: 0.88rem 1rem;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

input {
  min-height: 52px;
}

textarea {
  resize: vertical;
  min-height: 148px;
}

input:focus,
textarea:focus {
  border-color: rgba(244, 240, 232, 0.5);
  background: var(--panel-strong);
  box-shadow: 0 0 0 4px var(--accent-soft);
}

.form-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.form-footer p {
  margin: 0;
}

.image-frame {
  position: relative;
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #000;
}

.image-frame img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  opacity: 0.72;
}

.media-grid {
  align-items: center;
}

.lead {
  margin: 1.7rem 0 1.9rem;
}

.price-list {
  display: grid;
  gap: 0.65rem;
}

.price-list article {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: start;
  padding: 1.15rem 0;
}

.price-list h3,
.drop-note h3,
.merch-list h3 {
  font-size: 1.3rem;
}

.price-list p,
.drop-note p,
.merch-list p {
  margin: 0.35rem 0 0;
}

.price-list strong,
.merch-list strong {
  color: var(--cream);
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
}

.text-link {
  display: inline-flex;
  margin-top: 1.6rem;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.merch-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 1.5rem;
  align-items: start;
}

.merch-visual {
  display: grid;
  gap: 1.5rem;
}

.drop-note {
  padding: 1.5rem;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.24);
}

.merch-list {
  display: grid;
  gap: 0.9rem;
}

.merch-list article {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem 1rem;
  min-height: 114px;
  padding: 1.35rem 1.5rem;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.22);
}

.merch-status {
  grid-column: 2;
  color: var(--cream);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.contact-grid {
  align-items: start;
}

.contact-section p {
  max-width: 560px;
  margin: 1.4rem 0 0;
}

.contact-links {
  display: grid;
  justify-content: end;
  gap: 1rem;
  font-style: normal;
}

.contact-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--cream);
  text-decoration: none;
}

.socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.socials a {
  width: 42px;
  height: 42px;
  justify-content: center;
  border: 1px solid var(--line);
}

.site-footer {
  padding-block: 2rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.footer-inner p {
  margin: 0;
  color: var(--subtle);
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  :root {
    --header: 72px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .nav-toggle,
  .mobile-nav.is-open {
    display: grid;
  }

  .hero {
    min-height: 86svh;
    padding-inline: 1rem;
  }

  .hero-logo {
    width: min(82vw, 460px);
    height: clamp(130px, 40vw, 220px);
    min-width: 0;
  }

  .split-layout,
  .media-grid,
  .contact-grid,
  .two-col-head,
  .merch-grid {
    grid-template-columns: 1fr;
  }

  .contact-links {
    justify-content: start;
  }
}

@media (max-width: 640px) {
  .container,
  .narrow {
    width: min(100% - 2rem, var(--max));
  }

  .hero-actions,
  .intent-tabs,
  .form-grid,
  .gig-row,
  .form-footer,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .form-footer,
  .footer-inner {
    display: grid;
  }

  .btn,
  .intent-tab {
    width: 100%;
  }

  .btn-outline,
  .intent-tab {
    border-left: 0;
  }

  .intent-tab {
    border-right: 0;
  }

  .gig-row {
    justify-items: start;
  }

  .date-block {
    min-width: 0;
    padding-right: 0;
    border-right: 0;
  }

  .tag {
    margin-top: 0.5rem;
  }

  .price-list article,
  .merch-list article {
    grid-template-columns: 1fr;
  }

  .merch-status {
    grid-column: auto;
  }

  .image-frame {
    min-height: 280px;
  }
}
