:root {
  --ink: #101014;
  --paper: #f8f7f2;
  --muted: #68615e;
  --line: rgba(16, 16, 20, 0.16);
  --red: #d6402f;
  --cyan: #159a9c;
  --mint: #7bcf9d;
  --gold: #f3b23d;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(16, 16, 20, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 5.75rem;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 4vw, 3rem);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

.site-header.scrolled {
  background: rgba(16, 16, 20, 0.82);
  box-shadow: 0 14px 36px rgba(16, 16, 20, 0.22);
  backdrop-filter: blur(18px);
}

.brand,
.main-nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 0.35rem 0.75rem 0.35rem 0.35rem;
  background: rgba(16, 16, 20, 0.44);
  backdrop-filter: blur(14px);
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 2.6rem;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  background: rgba(16, 16, 20, 0.46);
  color: var(--gold);
  font-size: 0.82rem;
}

.main-nav {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 0.35rem;
  background: rgba(16, 16, 20, 0.44);
  backdrop-filter: blur(14px);
}

.main-nav a {
  border-radius: 999px;
  padding: 0.48rem 0.62rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.84rem;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.13);
  color: var(--white);
}

.hero {
  position: relative;
  min-height: min(88vh, 760px);
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.hero-image,
.hero-shade,
.hero-portrait {
  position: absolute;
}

.hero-image {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(90deg, rgba(16, 16, 20, 0.9), rgba(16, 16, 20, 0.56) 45%, rgba(16, 16, 20, 0.16)),
    linear-gradient(0deg, rgba(16, 16, 20, 0.82), rgba(16, 16, 20, 0) 45%);
}

.hero-portrait {
  right: clamp(0.5rem, 5vw, 5rem);
  bottom: -1.5rem;
  z-index: 2;
  width: min(43vw, 520px);
  max-height: 82%;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 34px 52px rgba(0, 0, 0, 0.54));
}

.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  min-height: min(88vh, 760px);
  width: min(1120px, calc(100% - 2rem));
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  padding: 6.8rem 0 5.5rem;
}

.eyebrow {
  margin: 0 0 0.7rem;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  margin: 0;
  line-height: 0.98;
}

h1 {
  max-width: 10.5ch;
  font-size: clamp(3rem, 6.4vw, 4.8rem);
}

h2 {
  font-size: clamp(2rem, 6vw, 3rem);
}

h3 {
  font-size: 1.45rem;
}

.hero-copy {
  max-width: 430px;
  margin: 1.2rem 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 2.9rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.78rem 1.1rem;
  font-weight: 800;
}

.button.primary {
  background: var(--red);
  color: var(--white);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.button.text-link {
  min-height: auto;
  border-radius: 0;
  padding: 0.35rem 0;
  color: var(--red);
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.stat {
  min-height: 8.4rem;
  padding: clamp(1.25rem, 3vw, 2.25rem);
  background: var(--paper);
}

.stat strong,
.stat span {
  display: block;
}

.stat strong {
  font-size: 1.25rem;
}

.stat span {
  max-width: 24rem;
  margin-top: 0.45rem;
  color: var(--muted);
}

.media-preview,
.release-section,
.ad-section,
.about-section,
.biography-section,
.showcase,
.contact-band {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.release-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: 1rem;
  align-items: stretch;
  padding: 5rem 0 1.5rem;
}

.release-copy,
.release-feature,
.about-section {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.release-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.25rem, 4vw, 2.5rem);
}

.release-copy p:not(.eyebrow) {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.genre-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.5rem;
}

.release-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.genre-strip span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.48rem 0.75rem;
  background: #fbfaf7;
  font-size: 0.86rem;
  font-weight: 800;
}

.release-feature {
  position: relative;
  min-height: 28rem;
  background:
    radial-gradient(circle at 70% 15%, rgba(243, 178, 61, 0.35), transparent 34%),
    linear-gradient(145deg, #101014, #315f60);
  color: var(--white);
}

.release-feature img {
  position: absolute;
  right: -1.25rem;
  bottom: -6rem;
  width: min(48%, 280px);
  max-height: 105%;
  object-fit: contain;
  filter: drop-shadow(0 26px 38px rgba(0, 0, 0, 0.48));
}

.release-card-copy {
  position: relative;
  z-index: 1;
  max-width: 58%;
  padding: clamp(1.25rem, 4vw, 2.5rem);
}

.release-card-copy span {
  display: inline-flex;
  border-radius: 999px;
  padding: 0.35rem 0.65rem;
  background: rgba(255, 255, 255, 0.14);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.release-card-copy h3 {
  margin-top: 1rem;
}

.release-card-copy p {
  margin: 0.8rem 0 0;
  color: rgba(255, 255, 255, 0.74);
}

.ad-section {
  padding: 1.5rem 0 5rem;
}

.ad-carousel {
  width: min(360px, 100%);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.ad-frame {
  position: relative;
  aspect-ratio: 3 / 2;
  min-height: 0;
  overflow: hidden;
  background: var(--ink);
}

.ad-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 280ms ease, transform 520ms ease;
}

.ad-frame.is-changing img {
  opacity: 0.72;
  transform: scale(1.025);
}

.ad-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 16, 20, 0.82), rgba(16, 16, 20, 0.36) 54%, rgba(16, 16, 20, 0.08)),
    linear-gradient(0deg, rgba(16, 16, 20, 0.76), rgba(16, 16, 20, 0.08) 58%);
  pointer-events: none;
}

.ad-overlay {
  position: absolute;
  inset: auto auto 0 0;
  z-index: 1;
  width: min(620px, 100%);
  padding: 1rem;
  color: var(--white);
}

.ad-overlay h3 {
  max-width: 14ch;
  font-size: 1.35rem;
  line-height: 1.05;
}

.ad-overlay p:not(.eyebrow) {
  max-width: 35rem;
  margin: 0.45rem 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.82rem;
}

.ad-controls {
  display: flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  border-top: 1px solid var(--line);
  padding: 0.55rem 0.75rem;
  background: #efeee7;
}

.ad-controls button {
  display: grid;
  width: 2rem;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
}

.ad-dots {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.ad-dot {
  width: 0.65rem;
  aspect-ratio: 1;
  border: 0;
  border-radius: 50%;
  background: rgba(16, 16, 20, 0.24);
  cursor: pointer;
  padding: 0;
}

.ad-dot.active {
  background: var(--red);
}

.media-preview {
  padding: 0 0 5rem;
}

.section-heading {
  max-width: 660px;
  margin-bottom: 2rem;
}

.section-heading p:not(.eyebrow) {
  margin: 0.9rem 0 0;
  color: var(--muted);
}

.preview-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 1rem;
}

.video-preview-room,
.track-preview-room {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.preview-room-header {
  display: flex;
  min-height: 4rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
  padding: 0.75rem 1rem;
  background: #efeee7;
  font-weight: 800;
}

.preview-room-header span {
  color: var(--ink);
}

.track-controls button:disabled,
.track-progress:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

.video-frame {
  position: relative;
  display: grid;
  min-height: 22rem;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(21, 154, 156, 0.22), rgba(214, 64, 47, 0.18)),
    var(--ink);
}

.video-frame video,
.youtube-video {
  width: 100%;
  height: 100%;
  min-height: 22rem;
  background: #050507;
}

.video-frame video {
  object-fit: contain;
}

.video-frame video[hidden] {
  display: none;
}

.youtube-video {
  border: 0;
  aspect-ratio: 16 / 9;
}

.youtube-video[hidden] {
  display: none;
}

.empty-player {
  display: grid;
  gap: 0.35rem;
  place-items: center;
  padding: 2rem;
  color: var(--white);
  text-align: center;
}

.empty-player strong {
  font-size: 1.25rem;
}

.empty-player span {
  color: rgba(255, 255, 255, 0.76);
}

.preview-meta {
  padding: 1rem;
}

.preview-meta h3 {
  line-height: 1.15;
}

.preview-meta span {
  display: block;
  margin-top: 0.45rem;
  color: var(--muted);
}

.video-gallery {
  border-top: 1px solid var(--line);
  padding: 0.85rem 1rem 1rem;
}

.video-gallery-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.65rem;
  color: var(--ink);
  font-weight: 900;
}

.video-card-grid {
  display: flex;
  gap: 0.65rem;
  overflow-x: auto;
  padding-bottom: 0.15rem;
  scrollbar-width: thin;
}

.video-card {
  display: flex;
  flex: 0 0 10.5rem;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  text-align: left;
}

.video-card.active {
  border-color: rgba(214, 64, 47, 0.65);
  box-shadow: inset 0 0 0 2px rgba(214, 64, 47, 0.18);
}

.video-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--ink);
}

.video-card-copy {
  display: grid;
  gap: 0.15rem;
  padding: 0.55rem;
}

.video-card-copy small {
  color: var(--red);
  font-size: 0.64rem;
  font-weight: 900;
  text-transform: uppercase;
}

.video-card-copy strong {
  font-size: 0.78rem;
  line-height: 1.2;
}

.track-preview-room {
  display: flex;
  flex-direction: column;
}

.track-player {
  padding: 1rem;
  background:
    radial-gradient(circle at 85% 0%, rgba(123, 207, 157, 0.35), transparent 36%),
    linear-gradient(145deg, #101014, #243f40);
  color: var(--white);
}

.track-now {
  min-height: 8.5rem;
}

.track-now h3 {
  line-height: 1.15;
}

.track-now span {
  display: block;
  margin-top: 0.6rem;
  color: rgba(255, 255, 255, 0.72);
}

.track-progress {
  width: 100%;
  accent-color: var(--gold);
}

.track-controls {
  display: grid;
  grid-template-columns: 3rem 1fr 3rem;
  gap: 0.65rem;
  margin-top: 1rem;
}

.track-controls button {
  min-height: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  cursor: pointer;
  font-weight: 900;
}

#play-track {
  background: var(--gold);
  color: var(--ink);
}

.track-list {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 1rem;
  background:
    radial-gradient(circle at 10% 0%, rgba(214, 64, 47, 0.22), transparent 34%),
    radial-gradient(circle at 90% 18%, rgba(243, 178, 61, 0.16), transparent 30%),
    linear-gradient(145deg, #101014, #1d2f30);
  list-style: none;
}

.track-list li {
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 0.8rem;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(10px);
}

.track-list li.active {
  border-color: rgba(243, 178, 61, 0.68);
  background: rgba(243, 178, 61, 0.18);
  color: var(--white);
}

.track-list button {
  width: 100%;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  text-align: left;
  font-weight: 800;
}

.showcase {
  padding: 1rem 0 5rem;
}

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

.showcase-item {
  position: relative;
  aspect-ratio: 1 / 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 8px;
  padding: 1.25rem;
  color: var(--white);
  background: var(--ink);
  overflow: hidden;
}

.showcase-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(16, 16, 20, 0.84), rgba(16, 16, 20, 0.08) 58%);
  pointer-events: none;
}

.art-feature::after {
  display: none;
}

.showcase-item > * {
  position: relative;
  z-index: 1;
}

.showcase-item img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-item-copy {
  position: relative;
  z-index: 2;
  display: block;
}

.showcase-item span {
  width: max-content;
  border-radius: 999px;
  padding: 0.28rem 0.6rem;
  background: rgba(255, 255, 255, 0.16);
  font-size: 0.78rem;
  font-weight: 800;
}

.showcase-item h3 {
  margin-top: 0.7rem;
}

.showcase-item p {
  margin: 0.65rem 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.video-feature {
  background:
    linear-gradient(145deg, rgba(214, 64, 47, 0.92), rgba(16, 16, 20, 0.86)),
    url("assets/holby-hero.png") center / cover;
}

.music-feature {
  background:
    radial-gradient(circle at 70% 15%, rgba(123, 207, 157, 0.8), transparent 35%),
    linear-gradient(145deg, #111116, #315f60);
}

.art-feature {
  aspect-ratio: 1 / 1;
  padding: 0;
  background:
    linear-gradient(145deg, #111116, #6a2323);
}

.art-feature img {
  object-fit: contain;
  object-position: center;
}

.biography-section {
  margin-bottom: 2rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.biography-copy {
  max-width: 850px;
  padding: clamp(1.25rem, 4vw, 2.75rem);
}

.biography-copy p:not(.eyebrow) {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.biography-copy blockquote {
  margin: 1.5rem 0;
  border-left: 4px solid var(--red);
  padding-left: 1rem;
  color: var(--ink);
  font-size: 1.15rem;
  font-weight: 800;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr);
  gap: 0;
  align-items: center;
  margin-bottom: 2rem;
}

.about-media {
  align-self: stretch;
  min-height: 24rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 12%, rgba(214, 64, 47, 0.38), transparent 34%),
    var(--ink);
}

.about-media img {
  width: 100%;
  height: 100%;
  max-height: 30rem;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 22px 28px rgba(0, 0, 0, 0.45));
}

.about-copy {
  padding: clamp(1.25rem, 4vw, 2.5rem);
}

.about-copy p:not(.eyebrow) {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.contact-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
  border-radius: 8px;
  padding: clamp(1.25rem, 4vw, 2.5rem);
  background: var(--ink);
  color: var(--white);
}

.contact-band h2 {
  max-width: 640px;
}

.contact-band p:not(.eyebrow) {
  max-width: 620px;
  margin: 0.9rem 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.contact-email a {
  color: var(--gold);
  font-weight: 800;
}

.contact-email a:hover,
.contact-email a:focus-visible {
  color: var(--white);
}

@media (max-width: 760px) {
  .site-header {
    position: absolute;
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav {
    width: 100%;
    justify-content: space-between;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .main-nav::-webkit-scrollbar {
    display: none;
  }

  .main-nav a {
    flex: 0 0 auto;
    text-align: center;
  }

  .hero,
  .hero-content {
    min-height: 84vh;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(16, 16, 20, 0.92), rgba(16, 16, 20, 0.62)),
      linear-gradient(0deg, rgba(16, 16, 20, 0.76), rgba(16, 16, 20, 0) 48%);
  }

  .hero-portrait {
    right: -4.5rem;
    bottom: -10.5rem;
    width: min(58vw, 300px);
    max-height: 58%;
    opacity: 0.82;
  }

  h1 {
    max-width: 11ch;
    font-size: clamp(2.6rem, 13vw, 4.25rem);
  }

  .intro-band,
  .release-section,
  .preview-stage,
  .about-section,
  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .release-section {
    padding-top: 3rem;
  }

  .release-feature {
    min-height: 24rem;
  }

  .release-feature img {
    right: -2.5rem;
    width: min(58%, 260px);
  }

  .release-card-copy {
    max-width: 68%;
  }

  .release-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .ad-frame,
  .ad-frame img {
    min-height: 0;
  }

  .ad-overlay h3 {
    max-width: 12ch;
  }

  .about-media {
    min-height: 20rem;
  }

  .contact-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .video-frame,
  .video-frame video {
    min-height: 15rem;
  }
}

@media (max-width: 440px) {
  .brand {
    font-size: 0.92rem;
  }

  .brand-mark {
    width: 2.25rem;
  }

  .hero-content {
    width: min(100% - 1.25rem, 1120px);
    padding-top: 8.5rem;
  }

  h1 {
    font-size: clamp(2.65rem, 15vw, 3rem);
  }

  .button:not(.text-link) {
    width: 100%;
  }

  .track-controls {
    grid-template-columns: 2.8rem 1fr 2.8rem;
  }
}
