:root {
  color-scheme: light;
  --ink: #18201d;
  --muted: #66716a;
  --paper: #fff8ef;
  --cream: #f6ead9;
  --green: #31584c;
  --moss: #7f9b71;
  --rose: #c66c68;
  --sun: #e7b44d;
  --blue: #5d83a7;
  --line: rgba(24, 32, 29, 0.14);
  --shadow: 0 20px 60px rgba(24, 32, 29, 0.15);
  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(--paper);
  color: var(--ink);
}

button,
input {
  font: inherit;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px clamp(18px, 4vw, 48px);
  background: rgba(255, 248, 239, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand,
.site-header nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand {
  min-width: max-content;
  text-decoration: none;
  font-size: 1.02rem;
  font-weight: 800;
}

.site-header nav a {
  min-height: 34px;
  padding: 8px 10px;
  border-bottom: 2px solid transparent;
  text-decoration: none;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.site-header nav a:hover {
  border-color: var(--rose);
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: min(780px, 82vh);
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  background: #1e302e;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 78%;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(15, 22, 21, 0.8), rgba(15, 22, 21, 0.28) 48%, rgba(15, 22, 21, 0.02)),
    linear-gradient(0deg, rgba(15, 22, 21, 0.44), rgba(15, 22, 21, 0) 48%);
}

.hero-copy {
  max-width: 720px;
  padding: 0 clamp(20px, 7vw, 88px) clamp(72px, 12vh, 130px);
  color: #fffdf8;
}

.eyebrow,
.label {
  margin: 0 0 10px;
  text-transform: uppercase;
  color: var(--rose);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.hero .eyebrow {
  color: #f4c862;
}

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

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

h2 {
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.intro {
  max-width: 620px;
  margin-bottom: 28px;
  color: rgba(255, 253, 248, 0.88);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.primary-link,
.secondary-link {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid rgba(255, 253, 248, 0.6);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 800;
}

.primary-link {
  background: #fffdf8;
  color: var(--ink);
}

.secondary-link {
  color: #fffdf8;
}

.player-shell {
  position: sticky;
  top: 67px;
  z-index: 15;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(220px, 0.55fr);
  gap: 20px;
  align-items: center;
  padding: 16px clamp(18px, 4vw, 48px);
  background: #fdf4e7;
  border-block: 1px solid var(--line);
  box-shadow: 0 12px 32px rgba(24, 32, 29, 0.08);
}

.now-playing h2 {
  margin-bottom: 4px;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.1;
}

.now-playing p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.transport,
.scrub {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-button,
.play-button {
  min-width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fffdf8;
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
}

.play-button {
  min-width: 74px;
  border-radius: 8px;
  background: var(--green);
  color: #fffdf8;
}

.scrub input {
  width: 100%;
  accent-color: var(--green);
}

.scrub span {
  min-width: 40px;
  color: var(--muted);
  font-size: 0.86rem;
  font-variant-numeric: tabular-nums;
}

.section-band {
  padding: clamp(58px, 9vw, 110px) clamp(18px, 4vw, 48px);
}

.songs-band {
  background: #fff8ef;
}

.clips-band {
  background: #e8f0df;
}

.videos-band {
  background: #f4e2d7;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(260px, 0.6fr);
  gap: 26px;
  align-items: end;
  max-width: 1180px;
  margin: 0 auto 26px;
}

.section-heading .eyebrow,
.section-heading h2 {
  grid-column: 1;
}

.section-heading p:not(.eyebrow),
.filter-row {
  grid-column: 2;
  color: var(--muted);
  line-height: 1.55;
}

.track-grid,
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.track-card,
.video-card {
  position: relative;
  min-height: 220px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.74);
  box-shadow: 0 14px 36px rgba(24, 32, 29, 0.09);
}

.track-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
}

.track-card::before {
  content: "";
  position: absolute;
  inset: auto 18px 18px auto;
  width: 76px;
  height: 76px;
  border: 2px solid rgba(49, 88, 76, 0.28);
  border-radius: 50%;
}

.track-card h3,
.clip-button h3,
.video-card h3 {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.track-card p,
.clip-button p,
.video-card p {
  color: var(--muted);
  line-height: 1.5;
}

.track-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.track-play,
.load-video {
  justify-self: start;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid var(--ink);
  border-radius: 8px;
  background: var(--ink);
  color: #fffdf8;
  cursor: pointer;
  font-weight: 900;
}

.filter-row {
  display: grid;
  gap: 10px;
}

.filter-row input {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid rgba(24, 32, 29, 0.22);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.82);
  color: var(--ink);
}

.clip-cloud {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  max-width: 1180px;
  margin: 0 auto;
}

.clip-button {
  min-height: 132px;
  padding: 16px;
  border: 1px solid rgba(24, 32, 29, 0.15);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.68);
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.clip-button:nth-child(3n + 1) {
  background: rgba(231, 180, 77, 0.2);
}

.clip-button:nth-child(3n + 2) {
  background: rgba(93, 131, 167, 0.18);
}

.clip-button:hover,
.track-card:hover,
.video-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(24, 32, 29, 0.14);
}

.clip-button.is-active,
.track-card.is-active {
  outline: 3px solid rgba(198, 108, 104, 0.42);
}

.video-card {
  display: grid;
  gap: 14px;
}

.video-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 8px;
  background: #18201d;
}

.video-thumb img,
.video-thumb iframe {
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.load-video {
  position: absolute;
  left: 14px;
  bottom: 14px;
  background: #fffdf8;
  color: var(--ink);
}

.closing {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(280px, 0.55fr);
  gap: clamp(22px, 5vw, 70px);
  align-items: center;
  padding: clamp(46px, 8vw, 96px) clamp(18px, 4vw, 48px);
  background: #f7f4ec;
}

.closing img {
  width: 100%;
  max-height: 620px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.closing p:last-child {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .player-shell,
  .section-heading,
  .closing {
    grid-template-columns: 1fr;
  }

  .section-heading .eyebrow,
  .section-heading h2,
  .section-heading p:not(.eyebrow),
  .filter-row {
    grid-column: auto;
  }

  .track-grid,
  .video-grid {
    grid-template-columns: 1fr;
  }

  .clip-cloud {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .site-header nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    min-height: 86vh;
  }

  .hero-media img {
    object-position: 57% 72%;
  }

  .hero::after {
    background:
      linear-gradient(0deg, rgba(15, 22, 21, 0.78), rgba(15, 22, 21, 0.06) 72%),
      linear-gradient(90deg, rgba(15, 22, 21, 0.48), rgba(15, 22, 21, 0.1));
  }

  .hero-copy {
    padding-bottom: 52px;
  }

  h1 {
    font-size: clamp(3.4rem, 19vw, 5rem);
  }

  .player-shell {
    position: static;
  }

  .scrub {
    display: grid;
    grid-template-columns: auto 1fr auto;
  }

  .clip-cloud {
    grid-template-columns: 1fr;
  }
}
