:root {
  color-scheme: dark;
  --ink: #f8f4e8;
  --muted: #c5c0b2;
  --dim: #918b7d;
  --night: #070809;
  --panel: #121519;
  --panel-2: #191d22;
  --line: rgba(248, 244, 232, 0.16);
  --gold: #f4c45b;
  --coral: #ef5f74;
  --teal: #18c6b8;
  --blue: #4f90f0;
  --radius: 8px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--night);
  color: var(--ink);
}

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

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(7, 8, 9, 0.72);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand,
.nav-links,
.hero-actions,
.contact-strip {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  white-space: nowrap;
}

.brand-mark {
  overflow: hidden;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #050505;
  border: 1px solid rgba(244, 196, 91, 0.42);
  color: #111;
  font-size: 0.86rem;
  letter-spacing: 0;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.2);
}

.nav-links {
  gap: clamp(14px, 2vw, 30px);
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-links a:hover,
.site-footer a:hover {
  color: var(--gold);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0 18px;
  font-weight: 800;
}

.nav-cta {
  background: var(--ink);
  color: #0d0e10;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  padding: 128px clamp(18px, 5vw, 72px) 56px;
  overflow: hidden;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 8, 9, 0.96) 0%, rgba(7, 8, 9, 0.7) 42%, rgba(7, 8, 9, 0.2) 100%),
    linear-gradient(0deg, #070809 0%, rgba(7, 8, 9, 0.05) 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  padding-bottom: clamp(112px, 16vh, 168px);
}

.eyebrow,
.package-name {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 10ch;
  margin-bottom: 20px;
  font-size: clamp(4rem, 12vw, 10.5rem);
  line-height: 0.84;
  letter-spacing: 0;
}

h2 {
  max-width: 860px;
  margin-bottom: 0;
  font-size: clamp(2rem, 5vw, 4.8rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.32rem;
}

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

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button.primary {
  background: var(--gold);
  color: #101010;
  box-shadow: 0 14px 34px rgba(244, 196, 91, 0.2);
}

.button.secondary {
  background: rgba(248, 244, 232, 0.08);
  border-color: var(--line);
  color: var(--ink);
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-1px);
}

.event-panel {
  position: absolute;
  z-index: 2;
  right: clamp(18px, 5vw, 72px);
  bottom: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(110px, 1fr));
  width: min(620px, calc(100% - 36px));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(12, 14, 17, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.event-panel div {
  padding: 20px;
  border-right: 1px solid var(--line);
}

.event-panel div:last-child {
  border-right: 0;
}

.stat,
.label {
  display: block;
}

.stat {
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 1.45rem;
  font-weight: 900;
}

.label {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.35;
}

.section {
  padding: clamp(70px, 10vw, 132px) clamp(18px, 5vw, 72px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: end;
  background: var(--night);
}

.intro > p,
.booking-copy p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.brand-showcase {
  display: grid;
  grid-template-columns: minmax(180px, 0.7fr) minmax(320px, 1.8fr) minmax(180px, 0.7fr);
  gap: 16px;
  align-items: stretch;
  padding: 0 clamp(18px, 5vw, 72px) clamp(70px, 10vw, 132px);
  background: var(--night);
}

.brand-card {
  display: grid;
  place-items: center;
  min-height: 250px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #030303;
  box-shadow: var(--shadow);
}

.brand-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.badge-card img,
.glow-card img {
  object-fit: contain;
  padding: 22px;
}

.wordmark-card img {
  object-position: center;
}

.music-preview {
  background:
    linear-gradient(180deg, rgba(244, 196, 91, 0.08), rgba(7, 8, 9, 0)),
    var(--night);
}

.music-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(22px, 4vw, 36px);
  background: rgba(248, 244, 232, 0.055);
}

.music-callout h3 {
  margin-bottom: 8px;
}

.music-callout p {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.62;
}

.music-hero {
  position: relative;
  display: grid;
  min-height: 78vh;
  align-items: end;
  padding: 132px clamp(18px, 5vw, 72px) 72px;
  overflow: hidden;
  background: #050505;
}

.music-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 8, 9, 0.96) 0%, rgba(7, 8, 9, 0.74) 50%, rgba(7, 8, 9, 0.28) 100%),
    linear-gradient(0deg, #070809 0%, rgba(7, 8, 9, 0.04) 52%);
}

.music-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
}

.music-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 850px;
}

.music-hero-copy p {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.26rem);
  line-height: 1.65;
}

.player-section {
  background:
    radial-gradient(circle at 84% 20%, rgba(244, 196, 91, 0.12), transparent 30%),
    #0c0e10;
}

.soundcloud-frame {
  overflow: hidden;
  border: 1px solid rgba(244, 196, 91, 0.26);
  border-radius: var(--radius);
  background: #050505;
  box-shadow: var(--shadow);
}

.soundcloud-frame iframe {
  display: block;
}

.track-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.band,
.reviews {
  background:
    linear-gradient(180deg, rgba(24, 198, 184, 0.08), rgba(79, 144, 240, 0.06)),
    #0c0e10;
}

.section-heading {
  margin-bottom: clamp(30px, 5vw, 56px);
}

.service-grid,
.package-grid,
.review-grid {
  display: grid;
  gap: 16px;
}

.service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card,
.package-card,
blockquote,
.booking-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(248, 244, 232, 0.055);
}

.service-card {
  min-height: 300px;
  padding: 24px;
}

.service-icon {
  display: inline-block;
  margin-bottom: 42px;
  color: var(--teal);
  font-weight: 900;
}

.service-card p,
.package-card li,
blockquote p {
  color: var(--muted);
  line-height: 1.62;
}

.packages {
  background: var(--night);
}

.package-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.package-card {
  padding: 28px;
}

.package-card.featured {
  background: linear-gradient(180deg, rgba(244, 196, 91, 0.16), rgba(239, 95, 116, 0.08));
  border-color: rgba(244, 196, 91, 0.42);
}

.price {
  margin-bottom: 24px;
  color: var(--ink);
  font-size: 1.55rem;
  font-weight: 900;
}

ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
}

.review-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

blockquote {
  margin: 0;
  padding: 26px;
}

blockquote p {
  font-size: 1.08rem;
}

cite {
  color: var(--gold);
  font-style: normal;
  font-weight: 800;
}

.booking {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 6vw, 88px);
  padding: clamp(76px, 10vw, 140px) clamp(18px, 5vw, 72px);
  background:
    radial-gradient(circle at 18% 22%, rgba(239, 95, 116, 0.18), transparent 32%),
    radial-gradient(circle at 82% 70%, rgba(24, 198, 184, 0.16), transparent 30%),
    #101215;
}

.contact-strip {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.contact-strip a {
  border-bottom: 1px solid var(--gold);
  color: var(--ink);
  font-weight: 800;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(20px, 4vw, 34px);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(7, 8, 9, 0.58);
  color: var(--ink);
  font: inherit;
  min-height: 48px;
  padding: 12px 14px;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(244, 196, 91, 0.16);
}

.wide {
  grid-column: 1 / -1;
}

.form-note {
  min-height: 1.4em;
  margin: 0;
  color: var(--teal);
  font-weight: 800;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--dim);
  background: #070809;
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .hero {
    min-height: 940px;
  }

  .hero-image {
    object-position: 58% center;
  }

  .hero-content {
    padding-bottom: 280px;
  }

  .event-panel,
  .intro,
  .booking,
  .brand-showcase {
    grid-template-columns: 1fr;
  }

  .music-callout {
    align-items: flex-start;
    flex-direction: column;
  }

  .wordmark-card {
    min-height: 190px;
  }

  .service-grid,
  .package-grid,
  .review-grid,
  .track-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 64px;
  }

  .brand {
    font-size: 0.95rem;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    min-height: 940px;
    padding-top: 106px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(7, 8, 9, 0.97) 0%, rgba(7, 8, 9, 0.78) 64%, rgba(7, 8, 9, 0.42) 100%),
      linear-gradient(0deg, #070809 0%, rgba(7, 8, 9, 0.08) 48%);
  }

  h1 {
    font-size: clamp(3.4rem, 21vw, 6rem);
  }

  .brand-card {
    min-height: 220px;
  }

  .event-panel {
    left: 18px;
    right: 18px;
    grid-template-columns: 1fr;
  }

  .event-panel div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 16px;
  }

  .event-panel div:last-child {
    border-bottom: 0;
  }

  .service-grid,
  .package-grid,
  .review-grid,
  .track-grid,
  .booking-form {
    grid-template-columns: 1fr;
  }

  .music-hero {
    min-height: 760px;
    padding-top: 110px;
  }

  .soundcloud-frame iframe {
    height: 460px;
  }

  .service-card {
    min-height: auto;
  }

  .site-footer {
    flex-direction: column;
  }
}
