:root {
  --ink: #080808;
  --charcoal: #11110f;
  --ivory: #f5efe1;
  --paper: #fff7e5;
  --gold: #d7a73f;
  --lime: #c9ff4a;
  --coral: #ff5a4e;
  --line: rgba(245, 239, 225, 0.18);
  --shadow: 0 26px 90px rgba(0, 0, 0, 0.48);
  --display-font: "Arial Black", Impact, Haettenschweiler, "Franklin Gothic Heavy", sans-serif;
  --body-font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--ivory);
  font-family: var(--body-font);
  line-height: 1.5;
  overflow-x: hidden;
}

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

.visualizer {
  position: fixed;
  inset: 0;
  z-index: -2;
  width: 100vw;
  height: 100vh;
  background:
    radial-gradient(circle at 78% 10%, rgba(201, 255, 74, 0.2), transparent 26%),
    radial-gradient(circle at 14% 58%, rgba(255, 90, 78, 0.14), transparent 26%),
    linear-gradient(140deg, #060606 0%, #11110f 48%, #080808 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(rgba(245, 239, 225, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 239, 225, 0.03) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black 0%, black 58%, transparent 100%);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px clamp(18px, 4vw, 56px);
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(8, 8, 8, 0.74);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  background: rgba(245, 239, 225, 0.08);
  color: var(--gold);
  font-family: var(--display-font);
  font-weight: 900;
  box-shadow: var(--shadow);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 4vw, 42px);
  color: rgba(245, 239, 225, 0.8);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.nav-links a {
  transition: color 160ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--lime);
}

.hero {
  min-height: 94vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: clamp(28px, 5vw, 76px);
  align-items: end;
  padding: 150px clamp(22px, 6vw, 88px) 54px;
  border-bottom: 1px solid var(--line);
}

.hero-main {
  max-width: 1120px;
}

.eyebrow,
.section-kicker,
.side-panel p {
  margin: 0 0 18px;
  color: var(--lime);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 9ch;
  margin: 0;
  font-family: var(--display-font);
  font-size: clamp(5rem, 17vw, 14rem);
  line-height: 0.77;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 720px;
  margin: 30px 0 0;
  color: rgba(245, 239, 225, 0.82);
  font-size: clamp(1.08rem, 2vw, 1.45rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--line);
  color: var(--ivory);
  font-weight: 900;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--ink);
}

.button.ghost {
  background: rgba(245, 239, 225, 0.08);
}

.hero-side {
  display: grid;
  gap: 16px;
}

.side-panel {
  border: 1px solid var(--line);
  background: rgba(8, 8, 8, 0.44);
  padding: 20px;
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.side-panel ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.side-panel li {
  color: rgba(245, 239, 225, 0.8);
  font-weight: 800;
}

.side-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.side-photos img {
  width: 100%;
  aspect-ratio: 4 / 5;
  display: block;
  object-fit: cover;
  border: 1px solid var(--line);
  background: var(--charcoal);
  filter: saturate(0.92) contrast(1.05);
}

.section {
  padding: clamp(58px, 8vw, 104px) clamp(22px, 6vw, 88px);
  border-bottom: 1px solid var(--line);
}

.sound-section {
  background: var(--paper);
  color: var(--ink);
}

.sound-section .section-kicker,
.booking-section .section-kicker {
  color: #775300;
}

.sound-section h2 {
  max-width: 1120px;
  margin: 0;
  font-family: var(--display-font);
  font-size: clamp(2.2rem, 5.4vw, 5.8rem);
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
}

.link-section,
.booking-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.9fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: start;
  background: rgba(8, 8, 8, 0.74);
}

.link-section h2,
.booking-section h2 {
  margin: 0;
  font-family: var(--display-font);
  font-size: clamp(2.2rem, 5vw, 5.4rem);
  line-height: 0.92;
  text-transform: uppercase;
}

.link-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.link-list a {
  display: grid;
  gap: 4px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.link-list span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.link-list strong {
  color: rgba(245, 239, 225, 0.82);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
}

.booking-section {
  background: var(--ivory);
  color: var(--ink);
}

.booking-section p {
  max-width: 640px;
  margin: 24px 0 0;
  color: rgba(8, 8, 8, 0.7);
}

.booking-link {
  justify-self: start;
  min-height: 58px;
  margin-top: 16px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 30px clamp(22px, 6vw, 88px);
  background: var(--ink);
  color: rgba(245, 239, 225, 0.72);
}

.site-footer span {
  color: var(--ivory);
  font-family: var(--display-font);
  font-weight: 900;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .hero,
  .link-section,
  .booking-section {
    grid-template-columns: 1fr;
  }

  .hero-side {
    max-width: 520px;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 14px 18px;
  }

  .nav-links {
    gap: 14px;
    font-size: 0.72rem;
  }

  .hero {
    padding: 118px 22px 38px;
  }

  h1 {
    font-size: clamp(4.2rem, 24vw, 7rem);
  }

  .hero-actions,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}

@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;
  }
}
