:root {
  color-scheme: dark;
  --bg: #10110f;
  --panel: #181914;
  --ink: #f6f1e8;
  --muted: #c7c0b4;
  --gold: #d6a83d;
  --sage: #89986f;
  --clay: #a84f2f;
  --line: rgba(246, 241, 232, 0.16);
  --shadow: rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 54px);
  background: linear-gradient(180deg, rgba(16, 17, 15, 0.86), rgba(16, 17, 15, 0));
}

.brand {
  font-size: 18px;
  font-weight: 800;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: clamp(14px, 3vw, 30px);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  color: rgba(246, 241, 232, 0.84);
  text-decoration: none;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

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

.hero-image {
  object-fit: cover;
  object-position: 58% 32%;
  z-index: -2;
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(16, 17, 15, 0.88) 0%, rgba(16, 17, 15, 0.48) 44%, rgba(16, 17, 15, 0.1) 100%),
    linear-gradient(0deg, rgba(16, 17, 15, 0.88) 0%, rgba(16, 17, 15, 0.12) 46%);
}

.hero-content {
  width: min(760px, calc(100% - 36px));
  margin: 0 auto;
  padding: 150px 0 12vh;
}

.eyebrow,
.label {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 20px;
  font-size: clamp(58px, 12vw, 132px);
  line-height: 0.9;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 6vw, 72px);
  line-height: 1;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.04;
}

.hero-copy {
  max-width: 540px;
  color: rgba(246, 241, 232, 0.88);
  font-size: clamp(20px, 2.5vw, 28px);
}

.hero-actions,
.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 12px 18px;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  background: var(--gold);
  color: #18130a;
}

.button.secondary {
  border-color: rgba(246, 241, 232, 0.34);
  background: rgba(16, 17, 15, 0.42);
  color: var(--ink);
}

.section {
  padding: clamp(66px, 9vw, 120px) clamp(18px, 5vw, 72px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 32px;
  align-items: end;
  margin: 0 auto 38px;
  max-width: 1160px;
}

.feature-grid,
.spotify-grid,
.about-section,
.booking-section {
  max-width: 1160px;
  margin: 0 auto;
}

.feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 18px;
}

.release-feature,
.release-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 22px 60px var(--shadow);
}

.release-feature {
  display: grid;
  grid-template-columns: minmax(130px, 0.45fr) minmax(280px, 1fr);
}

.release-feature img,
.release-card img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.release-feature img {
  width: 100%;
  height: 100%;
}

.release-card img {
  width: 50%;
  height: auto;
  margin: 24px auto 0;
  border-radius: 6px;
}

.release-copy,
.release-card div {
  padding: clamp(22px, 4vw, 42px);
}

.release-copy p,
.release-card p,
.about-copy p {
  color: var(--muted);
  font-size: 18px;
}

.text-link {
  color: var(--gold);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 5px;
}

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

.spotify-grid iframe {
  border: 0;
  border-radius: 8px;
  background: #000;
}

.spotify-grid iframe:first-child {
  grid-column: 1 / -1;
}

.about-section,
.booking-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.8fr);
  gap: clamp(28px, 7vw, 90px);
  border-top: 1px solid var(--line);
}

.about-copy {
  align-self: end;
}

.booking-section {
  background:
    linear-gradient(90deg, rgba(168, 79, 47, 0.22), rgba(137, 152, 111, 0.12));
  max-width: none;
  margin: 0;
}

.booking-section > * {
  max-width: 1160px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(18px, 5vw, 72px);
  color: rgba(246, 241, 232, 0.68);
  border-top: 1px solid var(--line);
}

.footer p {
  margin: 0;
}

.footer a {
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 820px) {
  .site-header {
    position: absolute;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 92vh;
  }

  .hero-image {
    object-position: 62% 34%;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(16, 17, 15, 0.92) 0%, rgba(16, 17, 15, 0.54) 48%, rgba(16, 17, 15, 0.14) 100%);
  }

  .hero-content {
    padding-bottom: 8vh;
  }

  .section-heading,
  .feature-grid,
  .release-feature,
  .spotify-grid,
  .about-section,
  .booking-section {
    grid-template-columns: 1fr;
  }

  .release-feature img,
  .release-card img {
    aspect-ratio: 1 / 1;
  }

  .release-feature img,
  .release-card img {
    width: 50%;
    height: auto;
    margin: 24px auto 0;
    border-radius: 6px;
  }

  .footer {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .hero-actions,
  .booking-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}
