﻿:root {
  color-scheme: dark;
  --bg: #050505;
  --panel: #0b0905;
  --panel-2: #151006;
  --text: #fff7df;
  --muted: #d7c89f;
  --line: rgba(255, 211, 104, 0.2);
  --gold: #d8a731;
  --gold-2: #ffd56a;
  --gold-3: #8f6417;
  --green: #45c16f;
  --teal: #10231d;
  --shadow: 0 32px 90px rgba(0, 0, 0, 0.72);
  font-family: Inter, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.96), rgba(11, 8, 3, 0.98)),
    var(--bg);
  color: var(--text);
  font-family: Inter, Arial, sans-serif;
}

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

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

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px clamp(20px, 5vw, 56px);
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.94), rgba(5, 5, 5, 0));
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(5, 5, 5, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 213, 106, 0.82);
  border-radius: 8px;
  color: var(--gold-2);
  font-weight: 900;
  box-shadow: inset 0 0 18px rgba(255, 213, 106, 0.08), 0 0 28px rgba(216, 167, 49, 0.14);
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: 3px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(247, 242, 231, 0.88);
  font-size: 0.94rem;
  font-weight: 800;
}

.site-nav a:hover,
.text-link:hover {
  color: var(--gold-2);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 120px 0 0;
}

.hero-media,
.visual-panel,
.portfolio-card img {
  background-color: #172022;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.98) 0%, rgba(4, 3, 1, 0.86) 42%, rgba(0, 0, 0, 0.62) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.84)),
    url("https://images.unsplash.com/photo-1611974789855-9c2a0a7236a3?auto=format&fit=crop&w=1900&q=90") center/cover;
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(216, 167, 49, 0.28), transparent 28%, rgba(0, 0, 0, 0.4) 64%),
    linear-gradient(180deg, rgba(255, 213, 106, 0.12), rgba(0, 0, 0, 0.35) 34%, rgba(0, 0, 0, 0.92) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 213, 106, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 213, 106, 0.06) 1px, transparent 1px);
  background-size: 92px 92px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.9), transparent 72%);
  opacity: 0.28;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 42px;
  align-items: end;
  padding-bottom: 70px;
}

.eyebrow {
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
.hero-statement {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

h1 {
  max-width: 850px;
  margin: 18px 0;
  font-size: clamp(4rem, 9vw, 7.3rem);
  line-height: 0.92;
  text-shadow: 0 14px 42px rgba(0, 0, 0, 0.72), 0 0 34px rgba(216, 167, 49, 0.14);
}

h2 {
  margin: 10px 0 0;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.05;
}

h3 {
  margin: 0;
  font-size: 1.12rem;
}

p {
  color: var(--muted);
  line-height: 1.72;
}

.hero-statement {
  margin: 0 0 16px;
  color: var(--gold-2);
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  font-weight: 800;
  text-shadow: 0 0 22px rgba(255, 213, 106, 0.24);
}

.hero-copy {
  max-width: 700px;
  color: rgba(247, 242, 231, 0.92);
  font-size: 1.14rem;
}

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

.hero-album-card {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  max-width: 760px;
  margin: 26px 0 6px;
  padding: 14px;
  border: 1px solid rgba(255, 213, 106, 0.38);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 213, 106, 0.16), rgba(0, 0, 0, 0.76)),
    rgba(5, 5, 5, 0.84);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.5);
}

.hero-album-cover {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(255, 213, 106, 0.35);
}

.hero-album-cover img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.hero-album-card span,
.album-kicker {
  display: block;
  color: var(--gold-2);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-album-card strong {
  display: block;
  margin: 7px 0 4px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.05;
}

.hero-album-card p {
  margin: 0;
  color: rgba(247, 242, 231, 0.9);
  line-height: 1.45;
}

.hero-platforms,
.album-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.hero-platforms a,
.album-platforms a {
  border: 1px solid rgba(255, 213, 106, 0.32);
  border-radius: 999px;
  padding: 8px 11px;
  background: rgba(0, 0, 0, 0.48);
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 900;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.hero-platforms a:hover,
.album-platforms a:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 213, 106, 0.82);
  background: rgba(216, 167, 49, 0.18);
}

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

.button:hover {
  transform: translateY(-2px);
  border-color: rgba(230, 185, 79, 0.8);
}

.button.primary {
  background: linear-gradient(135deg, #fff1a8 0%, #ffd56a 30%, #c89121 70%, #8f6417 100%);
  color: #080603;
  border-color: transparent;
  box-shadow: 0 16px 36px rgba(216, 167, 49, 0.24);
}

.button.secondary {
  background: rgba(0, 0, 0, 0.46);
  border-color: rgba(255, 213, 106, 0.26);
}

.hero-authority {
  padding: 24px;
  border-left: 4px solid var(--gold);
  background:
    linear-gradient(135deg, rgba(255, 213, 106, 0.12), rgba(0, 0, 0, 0.74)),
    rgba(5, 5, 5, 0.78);
  box-shadow: var(--shadow);
}

.hero-authority span,
.service-icon,
.portfolio-card span,
.process-list span,
.media-list span,
.visual-panel span {
  color: var(--gold-2);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-authority strong {
  display: block;
  margin-top: 10px;
  font-size: 1.1rem;
  line-height: 1.45;
}

.hero-strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(5, 5, 5, 0.94), rgba(31, 22, 6, 0.92), rgba(5, 5, 5, 0.94));
}

.hero-strip span {
  padding: 20px 28px;
  text-align: center;
  color: rgba(247, 242, 231, 0.82);
  font-weight: 800;
  border-right: 1px solid var(--line);
}

.section {
  padding: 96px 0;
}

.intro {
  background:
    linear-gradient(135deg, rgba(216, 167, 49, 0.08), transparent 36%),
    #080604;
}

.intro-grid,
.split-grid,
.channels-grid,
.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 54px;
  align-items: center;
}

.section-heading.compact {
  max-width: 780px;
  margin-bottom: 34px;
}

.service-grid,
.portfolio-grid,
.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.service-card,
.process-list article,
.media-list a,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 213, 106, 0.1), rgba(0, 0, 0, 0.16) 48%, rgba(0, 0, 0, 0.58)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.26);
}

.service-card,
.process-list article {
  padding: 24px;
  min-height: 225px;
}

.service-card h3,
.process-list h3 {
  margin-top: 18px;
}

.split {
  background:
    linear-gradient(180deg, #050505, #110d05);
}

.visual-panel {
  min-height: 520px;
  display: flex;
  align-items: end;
  padding: 28px;
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.9)),
    url("https://images.unsplash.com/photo-1642543492481-44e81e3914a7?auto=format&fit=crop&w=1200&q=90") center/cover;
  box-shadow: var(--shadow);
}

.visual-panel strong {
  display: block;
  max-width: 420px;
  margin-top: 8px;
  font-size: 1.55rem;
  line-height: 1.18;
}

.split-copy {
  max-width: 590px;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 22px 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.check-list li {
  padding-left: 26px;
  position: relative;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--green);
}

.text-link {
  color: var(--gold-2);
  font-weight: 900;
}

.dark-section {
  background:
    linear-gradient(135deg, rgba(216, 167, 49, 0.18), rgba(5, 5, 5, 0.94)),
    url("https://images.unsplash.com/photo-1604594849809-dfedbc827105?auto=format&fit=crop&w=1700&q=90") center/cover;
}

.album-focus-section,
.album-section {
  padding: 92px 0;
  background:
    radial-gradient(circle at 70% 18%, rgba(255, 213, 106, 0.16), transparent 34%),
    linear-gradient(180deg, #050505, #100b04);
}

.album-focus-grid,
.album-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(28px, 5vw, 62px);
  align-items: center;
}

.album-focus-cover,
.album-cover-link {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(255, 213, 106, 0.36);
  border-radius: 8px;
  background: #080604;
  box-shadow: var(--shadow);
}

.album-focus-cover img,
.album-cover-link img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 220ms ease;
}

.album-focus-cover:hover img,
.album-cover-link:hover img {
  transform: scale(1.035);
}

.album-focus-cover span,
.album-cover-link span {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: grid;
  min-height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 213, 106, 0.55);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.74);
  color: var(--gold-2);
  font-weight: 900;
  text-transform: uppercase;
}

.album-focus-copy h2,
.album-copy h2 {
  max-width: 720px;
}

.album-focus-copy p,
.album-copy p {
  max-width: 700px;
  color: rgba(247, 242, 231, 0.88);
}

.album-focus-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.album-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  grid-column: 1 / -1;
  padding: 20px;
  border: 1px solid rgba(255, 213, 106, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 213, 106, 0.12), rgba(0, 0, 0, 0.54)),
    rgba(5, 5, 5, 0.72);
}

.album-card-body h3 {
  margin: 10px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 1;
}

.platform-missing {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.platform-missing p {
  width: 100%;
  margin: 0 0 6px;
}

.platform-missing span {
  border: 1px solid rgba(255, 213, 106, 0.16);
  border-radius: 999px;
  padding: 7px 10px;
  color: rgba(215, 200, 159, 0.72);
  font-size: 0.76rem;
}

.media-list {
  display: grid;
  gap: 12px;
}

.media-list a {
  display: block;
  padding: 22px;
}

.media-list strong {
  display: block;
  margin: 7px 0;
}

.media-list small {
  color: var(--muted);
}

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

.portfolio-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.portfolio-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.portfolio-card div {
  padding: 22px;
}

.portfolio-card h3 {
  margin: 8px 0 0;
}

.process {
  background:
    linear-gradient(90deg, rgba(255, 213, 106, 0.08), transparent 48%),
    #080604;
}

.contact {
  background:
    linear-gradient(135deg, rgba(255, 213, 106, 0.18), rgba(0, 0, 0, 0.58) 44%, rgba(216, 167, 49, 0.12)),
    url("https://images.unsplash.com/photo-1607863680198-23d4b2565df0?auto=format&fit=crop&w=1600&q=90") center/cover;
}

.contact-panel {
  padding: 34px;
  align-items: start;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(247, 242, 231, 0.88);
  font-size: 0.9rem;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.52);
  color: var(--text);
  font: inherit;
  padding: 14px 15px;
  outline: none;
}

.contact-form textarea {
  resize: vertical;
}

.full-field {
  grid-column: 1 / -1;
}

.form-note {
  margin: 0;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #030303;
  padding: 28px 0;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-grid p {
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--muted);
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 920px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 78px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(8, 11, 13, 0.98);
  }

  .site-header.is-open .site-nav {
    display: flex;
  }

  .hero-grid,
  .intro-grid,
  .split-grid,
  .channels-grid,
  .contact-panel,
  .album-focus-grid,
  .album-grid,
  .album-card {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .portfolio-grid,
  .process-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .site-header {
    padding-inline: 14px;
  }

  h1 {
    font-size: 3.5rem;
  }

  .section {
    padding: 70px 0;
  }

  .service-grid,
  .portfolio-grid,
  .process-list,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .visual-panel {
    min-height: 360px;
  }

  .hero-album-card {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .hero-platforms a,
  .album-platforms a {
    flex: 1 1 auto;
    text-align: center;
  }

  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* compositor sales layout fix */
.album-hero {
  min-height: auto;
  display: block;
  padding: 118px 0 58px;
  background:
    radial-gradient(circle at 82% 8%, rgba(216, 167, 49, 0.14), transparent 26%),
    linear-gradient(180deg, #030303 0%, #070604 58%, #050505 100%);
  overflow: hidden;
}

.album-hero::after,
.album-hero .hero-media,
.album-hero .hero-overlay {
  display: none;
}

.album-hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  padding-top: 0;
}

.hero-album-main {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(16px, 2.3vw, 26px);
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(22px, 3.5vw, 42px);
  align-items: center;
  border: 1px solid rgba(255, 213, 106, 0.42);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 213, 106, 0.11), transparent 38%),
    rgba(8, 7, 6, 0.94);
  box-shadow: 0 32px 86px rgba(0, 0, 0, 0.58);
}

.hero-album-main .hero-album-cover {
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 213, 106, 0.48);
  border-radius: 8px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}

.hero-album-main .hero-album-cover img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.hero-album-info {
  min-width: 0;
}

.hero-album-info .eyebrow {
  margin: 0 0 14px;
}

.hero-album-info h1 {
  max-width: 740px;
  margin: 0 0 16px;
  font-size: clamp(2.7rem, 4.7vw, 4.9rem);
  line-height: 0.98;
}

.hero-album-info .hero-lead {
  max-width: 680px;
  margin: 0;
  color: rgba(247, 242, 231, 0.94);
  font-size: clamp(1.05rem, 1.55vw, 1.28rem);
  line-height: 1.55;
}

.hero-album-info .hero-platforms {
  margin-top: 18px;
  gap: 10px;
}

.hero-album-info .hero-platforms a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-color: rgba(255, 213, 106, 0.38);
  background: rgba(0, 0, 0, 0.46);
}

.hero-album-info .hero-platforms a:first-child,
.hero-album-info .hero-platforms a:nth-child(2) {
  background: linear-gradient(135deg, #fff1a8, #d8a731 55%, #8f6417);
  color: #070604;
  border-color: transparent;
}

.hero-album-info .hero-actions {
  margin-top: 20px;
}

.album-hero .hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 14px;
  margin: 0;
}

.album-hero .hero-stats span {
  min-height: 76px;
  padding: 14px 16px;
  border-left: 2px solid var(--gold-2);
  background: rgba(0, 0, 0, 0.42);
}

.album-hero .hero-stats strong {
  display: block;
  color: var(--text);
  font-size: 1.25rem;
  line-height: 1.2;
}

.album-section {
  padding-top: 78px;
}

.album-card {
  overflow: hidden;
}

.album-cover-link img {
  display: block;
}

@media (max-width: 980px) {
  .album-hero {
    padding-top: 104px;
  }

  .hero-album-main {
    grid-template-columns: 1fr;
  }

  .hero-album-main .hero-album-cover {
    max-width: 620px;
  }

  .album-hero .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .album-hero {
    padding: 92px 0 44px;
  }

  .hero-album-main {
    padding: 12px;
  }

  .hero-album-info h1 {
    font-size: clamp(2.5rem, 14vw, 4rem);
  }

  .hero-album-info .hero-platforms a,
  .hero-album-info .hero-actions .button {
    width: 100%;
  }

  .album-hero .hero-stats {
    grid-template-columns: 1fr;
  }
}
.album-hero *,
.hero-album-main *,
.hero-album-info * {
  min-width: 0;
}

@media (max-width: 620px) {
  html,
  body {
    overflow-x: hidden;
  }

  .album-hero .container {
    width: calc(100% - 24px);
  }

  .hero-album-main {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .hero-album-main .hero-album-cover,
  .hero-album-main .hero-album-cover img {
    width: 100%;
    max-width: 100%;
  }

  .hero-album-info h1 {
    max-width: 100%;
    font-size: clamp(2.12rem, 10.2vw, 3rem);
    line-height: 1.02;
    overflow-wrap: anywhere;
  }

  .hero-album-info .hero-lead {
    font-size: 1rem;
  }
}
/* compositor youtube video section */
.music-section,
.catalog-section {
  padding: 92px 0;
  background: #050505;
}

.section-heading {
  max-width: 980px;
  margin-bottom: 34px;
}

.section-heading p {
  max-width: 820px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.video-card {
  overflow: hidden;
  border: 1px solid rgba(255, 213, 106, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 213, 106, 0.08), rgba(0, 0, 0, 0.64)),
    #090806;
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.34);
}

.video-card.featured-video {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  align-items: center;
}

.youtube-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #151515;
}

.youtube-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-card > div:not(.youtube-embed) {
  padding: 22px;
}

.view-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-bottom: 12px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 213, 106, 0.42);
  border-radius: 999px;
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.video-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 3vw, 2.45rem);
  line-height: 1.02;
}

.video-card p {
  margin-bottom: 0;
}

@media (max-width: 860px) {
  .video-grid,
  .video-card.featured-video {
    grid-template-columns: 1fr;
  }
}
/* final responsive safety */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

img,
iframe {
  max-width: 100%;
}

@media (max-width: 620px) {
  .album-hero .container,
  .container {
    width: calc(100% - 24px);
  }

  .hero-album-main {
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 10px;
  }

  .hero-album-main .hero-album-cover {
    width: 100%;
    max-width: 100%;
  }

  .hero-album-main .hero-album-cover img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    background: #070a0d;
  }

  .hero-album-info {
    padding-top: 18px;
  }

  .hero-album-info h1 {
    font-size: clamp(2.05rem, 10vw, 3rem);
    line-height: 1.04;
    overflow-wrap: normal;
  }

  .hero-album-info .hero-lead {
    font-size: 0.98rem;
  }

  .hero-album-info .hero-platforms a,
  .hero-album-info .hero-actions .button {
    width: 100%;
    min-width: 0;
  }

  .video-card > div:not(.youtube-embed) {
    padding: 18px;
  }
}
/* mobile compositor hard stop */
@media (max-width: 620px) {
  .album-hero,
  .album-hero-content,
  .hero-album-main,
  .hero-album-info {
    max-width: 100%;
    overflow-x: hidden;
  }

  .album-hero .container {
    width: auto !important;
    margin-left: 12px !important;
    margin-right: 12px !important;
  }

  .site-header {
    padding-inline: 12px;
  }

  .site-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-header.is-open .site-nav,
  .site-nav.is-open {
    position: absolute;
    top: calc(100% + 8px);
    right: 12px;
    left: 12px;
    display: grid;
    gap: 8px;
    padding: 14px;
    border: 1px solid rgba(255, 213, 106, 0.28);
    border-radius: 8px;
    background: rgba(2, 2, 2, 0.96);
  }

  .hero-album-main {
    width: min(calc(100vw - 36px), 330px) !important;
    max-width: min(calc(100vw - 36px), 330px) !important;
    margin-left: 0 !important;
    margin-right: auto !important;
    box-sizing: border-box;
  }

  .hero-album-main .hero-album-cover {
    display: block;
    width: 100% !important;
    max-width: 100% !important;
    aspect-ratio: 1 / 1;
    box-sizing: border-box;
  }

  .hero-album-main .hero-album-cover img {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    object-fit: contain !important;
    object-position: center center !important;
  }

  .hero-album-info h1,
  .hero-album-info .hero-lead {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .hero-album-info h1 {
    font-size: clamp(1.95rem, 9vw, 2.6rem);
  }
}

/* composer album final polish */
.album-hero {
  padding: 104px 0 48px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.82) 42%, rgba(0, 0, 0, 0.96) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), #050505 92%),
    url("/assets/daniel-zakia-album-cover.png") center 34% / cover no-repeat;
}

.hero-album-main {
  max-width: 1120px;
  margin-inline: auto;
  background:
    linear-gradient(135deg, rgba(255, 213, 106, 0.12), rgba(255, 213, 106, 0.02) 34%, rgba(0, 0, 0, 0.42)),
    rgba(5, 5, 5, 0.9);
  backdrop-filter: blur(8px);
}

.hero-album-main .hero-album-cover img {
  object-fit: contain;
  background: #050607;
}

.hero-album-info h1 {
  font-size: clamp(2.75rem, 4.5vw, 4.65rem);
}

.hero-album-info .hero-platforms a {
  min-width: 112px;
}

.music-section {
  padding-top: 58px;
}

@media (max-width: 980px) {
  .album-hero {
    padding-top: 96px;
  }

  .hero-album-main .hero-album-cover {
    max-width: 560px;
    margin-inline: auto;
  }
}

@media (max-width: 620px) {
  .album-hero {
    padding: 88px 0 36px;
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.82) 54%, #050505 100%),
      url("/assets/daniel-zakia-album-cover.png") center top / 920px auto no-repeat;
  }

  .album-hero .container {
    width: calc(100% - 24px) !important;
    margin-inline: auto !important;
  }

  .hero-album-main {
    width: min(calc(100vw - 48px), 344px) !important;
    max-width: min(calc(100vw - 48px), 344px) !important;
    margin-inline: auto !important;
    padding: 10px !important;
    border-color: rgba(255, 213, 106, 0.42);
  }

  .hero-album-main .hero-album-cover {
    width: 100% !important;
    max-width: 100% !important;
  }

  .hero-album-info {
    padding: 18px 2px 2px;
  }

  .hero-album-info h1 {
    font-size: clamp(2.05rem, 10.5vw, 2.8rem);
    line-height: 1.03;
  }

  .hero-album-info .hero-platforms {
    gap: 9px;
  }

  .music-section {
    padding-top: 42px;
  }
}

@media (max-width: 620px) {
  body .album-hero-content {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  body .album-hero .container {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 14px !important;
    box-sizing: border-box;
  }

  body .hero-album-main {
    position: relative !important;
    left: 0 !important;
    right: auto !important;
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    box-sizing: border-box;
  }
}
