@import url("https://fonts.googleapis.com/css2?family=MonteCarlo&display=swap");

:root {
  --bg: #000;
  --bg-soft: #050505;
  --panel: #080808;
  --panel-strong: #101010;
  --ink: #f4f0e8;
  --muted: #b7b3aa;
  --quiet: #76736d;
  --line: rgba(244, 240, 232, 0.12);
  --accent: #f4f0e8;
  --accent-2: #7ee8c6;
  --danger: #ff7a61;
  --radius: 0;
  --max-width: 1180px;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  --clean-grotesk: "Helvetica Neue", Helvetica, "Arial Narrow", Arial, sans-serif;
  --script-font: "MonteCarlo", cursive;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  background: #000;
  color: var(--ink);
  font-family: var(--clean-grotesk);
  font-weight: 600;
}

body::before {
  display: none;
}

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

button,
audio,
video {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding: 20px 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(16px);
}

body .site-header {
  grid-template-columns: 1fr;
}

body .site-nav {
  display: none !important;
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-nav,
.language-toggle {
  display: inline-flex;
  align-items: center;
}

.site-nav {
  justify-content: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.94rem;
}

.site-nav a,
.button,
.lang-button {
  transition:
    color 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    transform 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-current {
  color: var(--ink);
}

.site-nav a.is-current {
  position: relative;
}

.site-nav a.is-current::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--accent-2);
  content: "";
}

.language-toggle {
  gap: 4px;
  justify-self: end;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: rgba(8, 10, 12, 0.86);
}

.lang-button {
  min-width: 54px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 950;
  padding: 12px 14px;
}

.lang-button.is-active {
  background: var(--ink);
  color: var(--bg);
}

main {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto 64px;
}

.page-main {
  width: min(calc(100% - 380px), 1120px);
}

.page-content {
  margin-left: auto;
  margin-right: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.home-main {
  width: min(calc(100% - 380px), 1120px);
  min-height: calc(100svh - 86px);
  display: grid;
  margin-bottom: 0;
}

.home-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-items: center;
  min-height: calc(100svh - 112px);
  padding: 18px 0 52px;
}

.side-menu,
.social-rail {
  display: grid;
  gap: 18px;
}

.side-menu {
  align-content: center;
  justify-items: center;
}

.home-gallery > .side-menu,
.home-gallery > .social-rail {
  position: fixed;
  z-index: 8;
  top: 50%;
  transform: translateY(-50%);
}

.home-gallery > .side-menu {
  left: 58px;
}

.home-gallery > .social-rail {
  right: 66px;
}

.side-menu a,
.social-rail :is(a, span) {
  color: var(--ink);
  font-size: 1.28rem;
  font-weight: 950;
  line-height: 0.95;
  text-transform: uppercase;
  transition:
    color 160ms ease,
    opacity 160ms ease,
    transform 160ms ease;
}

.side-menu a:hover,
.side-menu a:focus-visible {
  color: var(--ink);
  opacity: 0.62;
  transform: translateY(-1px);
}

.side-menu a.is-current {
  color: var(--ink);
  opacity: 1;
}

.social-rail a:hover,
.social-rail a:focus-visible {
  color: var(--ink);
  opacity: 1;
  transform: translateY(-1px);
}

.social-icon {
  position: relative;
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  opacity: 0.82;
}

.social-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.social-icon .social-fill,
.social-icon .social-dot {
  fill: currentColor;
  stroke: none;
}

.social-icon .social-cutout {
  fill: var(--bg);
  stroke: none;
}

.social-icon .social-cutline {
  fill: none;
  stroke: var(--bg);
  stroke-width: 1.45;
}

.social-icon.is-disabled {
  opacity: 0.32;
}

.gallery-shell {
  display: grid;
  gap: 24px;
}

.home-art-board {
  position: relative;
  min-height: min(820px, calc(100svh - 150px));
  overflow: hidden;
}

.home-wordmark {
  position: absolute;
  top: 36%;
  left: 50%;
  z-index: 10;
  width: max-content;
  max-width: 100%;
  margin: 0;
  color: var(--ink);
  font-size: clamp(7rem, 17.5vw, 19.5rem);
  font-weight: 950;
  font-kerning: none;
  line-height: 0.68;
  letter-spacing: -0.145em;
  text-transform: uppercase;
  mix-blend-mode: screen;
  text-shadow: 0.018em 0 0 currentColor;
  transform: translate(-50%, -50%) scaleX(0.95);
}

.home-image {
  position: absolute;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(244, 240, 232, 0.08);
  background: #050505;
  filter: grayscale(1) contrast(1.15) brightness(0.68);
  transition:
    filter 180ms ease,
    opacity 180ms ease,
    transform 220ms ease;
}

.home-image img,
.home-image video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.home-image:hover,
.home-image:focus-visible {
  filter: grayscale(1) contrast(1.2) brightness(0.52);
  opacity: 0.92;
  transform: translateY(-2px);
}

.home-image-one {
  top: 6%;
  left: 17%;
  width: min(19vw, 270px);
  aspect-ratio: 4 / 5;
}

.home-image-two {
  top: 8%;
  left: 45%;
  width: min(16vw, 230px);
  aspect-ratio: 1 / 1;
}

.home-image-three {
  top: 4%;
  right: 5%;
  width: min(20vw, 300px);
  aspect-ratio: 4 / 5;
  filter: grayscale(1) contrast(1.16) brightness(0.6);
}

.home-image-four {
  left: 3%;
  bottom: 10%;
  width: min(18vw, 250px);
  aspect-ratio: 1 / 1;
}

.home-image-five {
  left: 30%;
  bottom: 4%;
  width: min(17vw, 240px);
  aspect-ratio: 1 / 1;
}

.home-image-six {
  right: 27%;
  bottom: 8%;
  width: min(14vw, 210px);
  aspect-ratio: 1 / 1;
}

.home-image-seven {
  right: 7%;
  bottom: 4%;
  width: min(16vw, 230px);
  aspect-ratio: 1 / 1;
}

.home-image-eight {
  top: 37%;
  left: 2%;
  width: min(15vw, 210px);
  aspect-ratio: 1 / 1;
}

.home-image-nine {
  top: 1%;
  left: 2%;
  width: min(13vw, 190px);
  aspect-ratio: 5 / 4;
}

.home-image-ten {
  top: 61%;
  left: 20%;
  width: min(15vw, 220px);
  aspect-ratio: 5 / 4;
}

.home-image-eleven {
  top: 47%;
  left: 44%;
  width: min(13vw, 188px);
  aspect-ratio: 5 / 4;
}

.home-image-twelve {
  top: 60%;
  right: 2%;
  width: min(14vw, 210px);
  aspect-ratio: 5 / 4;
}

.home-image-thirteen {
  top: 23%;
  left: 31%;
  width: min(12vw, 176px);
  aspect-ratio: 5 / 4;
  filter: grayscale(1) contrast(1.2) brightness(0.5);
}

.home-image-fourteen {
  top: 24%;
  right: 28%;
  width: min(12vw, 178px);
  aspect-ratio: 5 / 4;
}

.home-image-fifteen {
  bottom: 28%;
  right: 12%;
  width: min(13vw, 190px);
  aspect-ratio: 5 / 4;
  filter: grayscale(1) contrast(1.22) brightness(0.52);
}

.home-image-sixteen {
  bottom: 25%;
  left: 13%;
  width: min(11vw, 164px);
  aspect-ratio: 5 / 4;
}

.home-image-seven img,
.home-image-eight img {
  object-fit: contain;
  padding: 8px;
  background: #050505;
}

.gallery-intro {
  max-width: 680px;
}

.gallery-intro p:last-child,
.hero-copy,
.section-heading p,
.card p,
.step-card {
  font-family: "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 500;
}

.gallery-intro p:last-child {
  max-width: 560px;
  margin: 8px 0 0;
}

.social-rail {
  align-content: center;
  justify-items: center;
}

.page-side-menu,
.page-social-rail {
  position: fixed;
  z-index: 8;
  top: 50%;
  transform: translateY(-50%);
}

.page-side-menu {
  left: 58px;
}

.page-social-rail {
  right: 66px;
}

.hero-section {
  min-height: calc(100svh - 76px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: end;
  gap: 40px;
  padding: 70px 0 54px;
}

.home-hero {
  min-height: calc(92svh - 76px);
}

.page-hero {
  min-height: 42svh;
  display: grid;
  align-content: end;
  padding: 70px 0 42px;
}

body[data-page="music"] .page-hero,
body[data-page="clips"] .page-hero,
body[data-page="services"] .page-hero {
  min-height: 26svh;
  align-content: center;
  justify-items: center;
  text-align: center;
}

.contact-page-hero {
  min-height: calc(72svh - 76px);
}

.hero-inner {
  max-width: 840px;
}

.version-label,
.eyebrow,
.meta-label {
  margin: 0;
  color: var(--accent);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 980px;
  margin-bottom: 22px;
  font-size: 6.8rem;
  line-height: 0.86;
  letter-spacing: 0;
}

.page-hero h1 {
  max-width: 1080px;
  margin-bottom: 20px;
  font-size: clamp(3.4rem, 7.8vw, 7.7rem);
  line-height: 0.9;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

body[data-page="music"] .page-hero h1,
body[data-page="clips"] .page-hero h1,
body[data-page="services"] .page-hero h1,
body[data-page="contact"] .page-hero h1 {
  margin-bottom: 0;
  font-family: var(--script-font);
  font-size: clamp(4.8rem, 10vw, 9.8rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 0.86;
  text-transform: none;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 2.8rem, 2.8rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  font-size: 1.14rem;
  line-height: 1.18;
  letter-spacing: 0;
}

p,
li {
  color: var(--muted);
  line-height: 1.7;
}

.hero-copy {
  max-width: 720px;
  font-size: 1.25rem;
  line-height: 1.55;
}

.hero-actions,
.contact-actions,
.media-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 800;
  padding: 0 18px;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--bg);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
}

.hero-visual {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 14px;
  align-items: stretch;
}

.visual-tile {
  position: relative;
  min-height: 220px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0)),
    var(--panel);
  box-shadow: var(--shadow);
}

.visual-tile-large {
  min-height: 500px;
  grid-row: span 2;
}

.visual-tile video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.68;
  filter: saturate(0.84) contrast(1.08);
}

.visual-tile::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.78));
  content: "";
}

.visual-tile > span {
  position: relative;
  z-index: 1;
  padding: 18px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.wave-art {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 7px;
  align-items: center;
  padding: 28px;
}

.wave-art span {
  display: block;
  border: 1px solid rgba(126, 232, 198, 0.22);
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent-2), rgba(126, 232, 198, 0.02));
}

.wave-art span:nth-child(1) {
  height: 30%;
}

.wave-art span:nth-child(2) {
  height: 82%;
}

.wave-art span:nth-child(3) {
  height: 48%;
}

.wave-art span:nth-child(4) {
  height: 96%;
}

.wave-art span:nth-child(5) {
  height: 58%;
}

.wave-art span:nth-child(6) {
  height: 72%;
}

.wave-art span:nth-child(7) {
  height: 38%;
}

.wave-art span:nth-child(8) {
  height: 68%;
}

.section {
  padding: 76px 0;
  border-top: 0;
}

.compact-section {
  padding-top: 28px;
}

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

.service-grid,
.song-grid,
.music-grid,
.comparison-grid,
.process-grid,
.clip-grid,
.steps-list,
.portal-grid {
  display: grid;
  gap: 16px;
}

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

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

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

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

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

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

.music-grid {
  grid-template-columns: repeat(auto-fit, minmax(clamp(150px, 18vw, 210px), 1fr));
  max-width: min(980px, 100%);
  gap: 18px;
  margin: 0 auto;
}

.steps-list {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: steps;
}

.card,
.step-card {
  border: 1px solid rgba(244, 240, 232, 0.1);
  border-radius: var(--radius);
  background: #070707;
  box-shadow: none;
}

.card {
  padding: 24px;
}

.service-title-card {
  display: grid;
  min-height: 170px;
  align-items: center;
  text-align: center;
}

.services-menu-section {
  display: grid;
  gap: 28px;
}

.services-menu-section .service-grid {
  grid-template-columns: repeat(auto-fit, minmax(clamp(190px, 18vw, 260px), 1fr));
  gap: 14px;
}

.service-option {
  position: relative;
  min-height: 310px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border: 1px solid rgba(244, 240, 232, 0.1);
  border-radius: var(--radius);
  background: #050505;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
}

.service-option::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.82)),
    radial-gradient(circle at 50% 20%, transparent 0 22%, rgba(0, 0, 0, 0.5) 75%);
  content: "";
  transition: opacity 180ms ease;
}

.service-option img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
  filter: grayscale(0.18) saturate(0.92) contrast(1.08) brightness(0.64);
  transform: scale(1);
  transition:
    filter 180ms ease,
    transform 220ms ease;
}

.service-option img.is-contain {
  object-fit: contain;
  padding: 10px;
  background: #050505;
}

.service-option:hover img,
.service-option:focus-visible img,
.service-option.is-active img {
  filter: grayscale(0) saturate(1.02) contrast(1.12) brightness(0.52);
  transform: scale(1.01);
}

.service-option:hover img.is-contain,
.service-option:focus-visible img.is-contain,
.service-option.is-active img.is-contain {
  transform: scale(1.01);
}

.service-option.is-active {
  border-color: rgba(244, 240, 232, 0.1);
}

.service-option-copy {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 8px;
  width: 100%;
  padding: 20px;
}

.service-option-title {
  font-family: var(--display-font);
  max-width: 100%;
  font-size: clamp(0.95rem, 1.16vw, 1.42rem);
  font-weight: 950;
  line-height: 0.92;
  letter-spacing: -0.01em;
  text-wrap: pretty;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.service-option-production .service-option-title {
  font-size: clamp(0.86rem, 1.04vw, 1.18rem);
  letter-spacing: 0;
}

.service-option-production .service-option-copy {
  padding: 16px;
}

.service-detail-card {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(244, 240, 232, 0.12);
  border-radius: var(--radius);
  background: #030303;
}

.service-detail-media {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background: #050505;
}

.service-detail-media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 42%, rgba(0, 0, 0, 0.62)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.4));
  content: "";
}

.service-detail-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  filter: grayscale(0.08) contrast(1.08) brightness(0.66);
}

.service-detail-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4vw, 58px);
}

.service-detail-copy h2 {
  margin-bottom: 16px;
  max-width: 100%;
  overflow-wrap: anywhere;
  font-size: clamp(2.65rem, 5.4vw, 5.9rem);
  line-height: 0.88;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.service-detail-card[data-service-detail="production"] .service-detail-copy h2 {
  font-size: clamp(1.72rem, 3.45vw, 3.7rem);
  letter-spacing: -0.02em;
}

.service-lede {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  line-height: 1.45;
}

.steps-section .section-heading h2 {
  max-width: 650px;
  color: var(--muted);
  font-family: var(--clean-grotesk);
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0;
  text-transform: none;
}

.service-detail-block,
.service-detail-split {
  margin-top: 24px;
}

.service-detail-block h3,
.service-detail-split h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-family: var(--clean-grotesk);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-detail-block ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.service-detail-block li,
.service-detail-split p {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.4;
}

.service-detail-block li::before {
  content: "x";
  margin-right: 8px;
  color: var(--ink);
  font-weight: 900;
}

.service-detail-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  padding-top: 22px;
  border-top: 0;
}

.service-cta {
  align-self: flex-start;
  margin-top: 28px;
}

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

.loop-plan-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 250px;
  border: 1px solid rgba(244, 240, 232, 0.12);
  border-radius: 0;
  background:
    linear-gradient(135deg, rgba(244, 240, 232, 0.06), transparent 48%),
    #050505;
  padding: 18px;
}

.loop-plan-card .meta-label {
  margin-bottom: 14px;
}

.loop-plan-card h3 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: clamp(1.55rem, 2.4vw, 2.35rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.loop-plan-card strong {
  display: block;
  margin-bottom: 14px;
  color: var(--ink);
  font-family: var(--clean-grotesk);
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.05em;
}

.loop-plan-card p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.4;
}

.loop-plan-card .button {
  margin-top: auto;
}

.paypal-button-shell {
  width: 100%;
  margin-top: auto;
  padding-top: 18px;
}

.paypal-button-container {
  min-height: 48px;
}

.paypal-status {
  min-height: 1.2em;
  margin-top: 10px;
  color: var(--quiet);
  font-size: 0.78rem;
  line-height: 1.35;
}

.loop-purchase-note {
  margin-top: 18px;
  color: var(--quiet);
  font-size: 0.92rem;
  line-height: 1.45;
}

.contact-inquiry {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 0 42px;
}

.contact-inquiry-card {
  border: 1px solid rgba(244, 240, 232, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(244, 240, 232, 0.055), transparent 48%),
    #030303;
  padding: clamp(24px, 4vw, 44px);
  text-align: center;
}

.contact-inquiry-card h2 {
  max-width: 760px;
  margin: 0 auto 14px;
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 0.88;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.contact-inquiry-card p:not(.meta-label) {
  max-width: 620px;
  margin-right: auto;
  margin-left: auto;
  color: var(--muted);
}

.contact-inquiry-ps {
  margin-top: 14px;
  color: var(--ink) !important;
  font-weight: 800;
}

.contact-inquiry-actions {
  justify-content: center;
  margin-top: 24px;
}

.portal-card {
  aspect-ratio: 1 / 1;
  min-height: auto;
  display: block;
  overflow: hidden;
  position: relative;
  padding: 0;
  border-color: rgba(255, 255, 255, 0.1);
  background: #090909;
}

.portal-card::before {
  display: none;
}

.portal-card img,
.portal-card video,
.tile-texture,
.tile-wave {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.portal-card img,
.portal-card video {
  object-fit: cover;
  opacity: 0.72;
  filter: grayscale(0.18) contrast(1.06) brightness(0.76);
  transition:
    opacity 180ms ease,
    transform 220ms ease,
    filter 180ms ease;
}

.tile-texture {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 32%),
    linear-gradient(315deg, rgba(126, 232, 198, 0.12), transparent 42%),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.07) 0 1px,
      transparent 1px 18px
    ),
    #090909;
}

.tile-wave {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 7px;
  align-items: center;
  padding: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent),
    #070707;
}

.tile-wave span {
  display: block;
  border: 1px solid rgba(244, 240, 232, 0.26);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(244, 240, 232, 0.82), rgba(244, 240, 232, 0.06));
}

.tile-wave span:nth-child(1) {
  height: 30%;
}

.tile-wave span:nth-child(2) {
  height: 82%;
}

.tile-wave span:nth-child(3) {
  height: 48%;
}

.tile-wave span:nth-child(4) {
  height: 96%;
}

.tile-wave span:nth-child(5) {
  height: 58%;
}

.tile-wave span:nth-child(6) {
  height: 72%;
}

.tile-wave span:nth-child(7) {
  height: 38%;
}

.tile-wave span:nth-child(8) {
  height: 68%;
}

.portal-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.88));
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.portal-card:hover .portal-overlay,
.portal-card:focus .portal-overlay,
.portal-card:focus-visible .portal-overlay {
  opacity: 1;
  transform: translateY(0);
}

.portal-card:hover img,
.portal-card:focus img,
.portal-card:focus-visible img,
.portal-card:hover video,
.portal-card:focus video,
.portal-card:focus-visible video {
  opacity: 0.52;
  transform: scale(1.035);
  filter: grayscale(0) contrast(1.08) brightness(0.7);
}

.portal-card h3 {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 1.55rem;
  line-height: 0.95;
  text-transform: uppercase;
}

.portal-card p {
  color: var(--muted);
}

.card p:last-child {
  margin-bottom: 0;
}

.card-header {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  justify-content: space-between;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0;
}

.tag {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  padding: 6px 10px;
}

.song-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.song-card,
.service-card,
.clip-grid .card {
  background: #070707;
}

.music-page-hero {
  min-height: 24svh;
}

.gallery-section {
  border-top: 0;
  padding-top: 28px;
}

.contact-page-hero h1 {
  margin-bottom: clamp(58px, 7vw, 96px);
}

.music-tile,
.video-tile {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(244, 240, 232, 0.08);
  border-radius: var(--radius);
  background: #050505;
  color: var(--ink);
}

.music-tile {
  width: 100%;
  aspect-ratio: 1 / 1;
  padding: 0;
  appearance: none;
  cursor: pointer;
  text-align: left;
}

.music-tile img,
.video-tile video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.music-tile img {
  object-fit: contain;
  filter: saturate(0.9) contrast(1.04) brightness(0.86);
  transition:
    filter 180ms ease,
    opacity 180ms ease,
    transform 220ms ease;
}

.music-fallback-art {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(244, 240, 232, 0.08), transparent 42%),
    repeating-linear-gradient(90deg, rgba(244, 240, 232, 0.08) 0 1px, transparent 1px 28px),
    #050505;
  color: var(--ink);
  font-family: var(--clean-grotesk);
  font-size: clamp(1.05rem, 1.65vw, 1.55rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.music-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.84));
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.music-tile:hover img,
.music-tile:focus-visible img {
  filter: saturate(1) contrast(1.08) brightness(0.62);
  transform: none;
}

.music-tile:hover .music-overlay,
.music-tile:focus-visible .music-overlay {
  opacity: 1;
  transform: translateY(0);
}

.music-title {
  color: var(--ink);
  font-size: clamp(1.02rem, 1.52vw, 1.72rem);
  font-weight: 950;
  line-height: 0.92;
  text-transform: uppercase;
}

.music-artist {
  font-family: "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
}

.music-artist {
  margin-top: 8px;
  color: var(--muted);
}

.stream-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(10px);
}

.stream-modal[hidden] {
  display: none;
}

.stream-dialog {
  position: relative;
  width: min(620px, calc(100vw - 32px));
  display: grid;
  gap: 16px;
  border: 1px solid rgba(244, 240, 232, 0.14);
  background: #030303;
  padding: clamp(26px, 5vw, 44px);
}

.stream-dialog h2 {
  font-size: clamp(2.45rem, 8vw, 5.2rem);
  line-height: 0.86;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.stream-dialog p:not(.meta-label) {
  color: var(--muted);
  font-family: "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stream-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(244, 240, 232, 0.18);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 1.35rem;
  line-height: 1;
}

.stream-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: clamp(12px, 2vw, 18px);
}

.stream-button {
  min-height: 64px;
  border: 0;
  gap: 0;
  padding-inline: 0;
}

.stream-button-spotify {
  background: #1db954;
  color: #000;
}

.stream-button-appleMusic {
  background: #fa243c;
  color: #fff;
}

.stream-button-spotify .social-cutline {
  stroke: #1db954;
}

.stream-button:hover,
.stream-button:focus-visible {
  filter: brightness(1.08) saturate(1.08);
}

.stream-button-icon {
  width: 28px;
  height: 28px;
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
}

.stream-button-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.stream-button-icon .social-fill,
.stream-button-icon .social-dot {
  fill: currentColor;
  stroke: none;
}

.stream-button-icon .social-cutout {
  fill: var(--bg);
  stroke: none;
}

.stream-button-icon .social-cutline {
  fill: none;
  stroke: var(--bg);
  stroke-width: 1.45;
}

.stream-button-icon .social-cutout {
  fill: currentColor;
  opacity: 0.18;
  stroke: none;
}

.stream-button-icon .social-cutline {
  fill: none;
  stroke: currentColor;
}

.stream-button-spotify .social-cutline {
  stroke: #1db954;
}

.song-card h3,
.service-grid h3,
.comparison-grid h3,
.process-grid h3,
.clip-grid h3 {
  font-size: clamp(1.35rem, 2.4vw, 2.3rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.audio-stack,
.media-stack {
  display: grid;
  gap: 12px;
}

.media-item {
  display: grid;
  gap: 10px;
}

.media-label {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--ink);
  font-size: 1.04rem;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.audio-player {
  border: 1px solid rgba(244, 240, 232, 0.1);
  border-radius: 0;
  background:
    linear-gradient(135deg, rgba(244, 240, 232, 0.055), transparent 44%),
    #030303;
  padding: 12px;
}

.audio-control-row {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) 72px;
  gap: 12px;
  align-items: center;
}

.audio-play {
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(244, 240, 232, 0.34);
  border-radius: 50%;
  background: var(--ink);
  color: var(--bg);
  cursor: pointer;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.audio-play:hover,
.audio-play:focus-visible {
  transform: scale(1.04);
}

.audio-play-icon {
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid currentColor;
}

.audio-player.is-playing .audio-play-icon {
  width: 12px;
  height: 14px;
  margin-left: 0;
  border: 0;
  background:
    linear-gradient(
      90deg,
      currentColor 0 35%,
      transparent 35% 65%,
      currentColor 65% 100%
    );
}

.audio-seek {
  width: 100%;
  height: 18px;
  margin: 0;
  background: transparent;
  cursor: pointer;
  accent-color: var(--ink);
  appearance: none;
}

.audio-seek::-webkit-slider-runnable-track {
  height: 3px;
  border-radius: 999px;
  background:
    linear-gradient(
      90deg,
      var(--ink) 0 var(--progress, 0%),
      rgba(244, 240, 232, 0.18) var(--progress, 0%) 100%
    );
}

.audio-seek::-webkit-slider-thumb {
  width: 12px;
  height: 12px;
  margin-top: -4.5px;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  appearance: none;
}

.audio-seek::-moz-range-track {
  height: 3px;
  border-radius: 999px;
  background: rgba(244, 240, 232, 0.18);
}

.audio-seek::-moz-range-progress {
  height: 3px;
  border-radius: 999px;
  background: var(--ink);
}

.audio-seek::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
}

.audio-time {
  color: var(--quiet);
  font-family: var(--clean-grotesk);
  font-size: 0.72rem;
  font-weight: 900;
  text-align: right;
  white-space: nowrap;
}

.audio-player audio {
  display: none;
}

.site-footer {
  position: relative;
  width: 100%;
  min-height: 126px;
  display: grid;
  grid-template-columns: minmax(120px, 0.7fr) minmax(260px, 1.6fr) minmax(110px, 0.5fr);
  gap: 24px;
  align-items: center;
  margin-top: 78px;
  padding: 28px min(4vw, 54px);
  overflow: hidden;
  border-top: 0;
  background:
    linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)),
    linear-gradient(135deg, rgba(244, 240, 232, 0.075), transparent 42%),
    repeating-linear-gradient(
      90deg,
      rgba(244, 240, 232, 0.035) 0 1px,
      transparent 1px 26px
    ),
    #000;
}

.footer-brand,
.footer-year,
.footer-links a,
.footer-links span {
  color: var(--ink);
  text-transform: uppercase;
}

.footer-brand {
  font-family: var(--clean-grotesk);
  font-size: clamp(1.5rem, 2.6vw, 2.6rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 10px;
  text-align: center;
}

.footer-links a,
.footer-links span {
  font-family: var(--clean-grotesk);
  font-size: clamp(0.78rem, 1.2vw, 1rem);
  font-weight: 800;
  letter-spacing: 0.05em;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--accent-2);
}

.footer-year {
  justify-self: end;
  font-family: var(--clean-grotesk);
  font-size: clamp(1.75rem, 3.3vw, 3.1rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.04em;
}

.legal-main {
  width: min(calc(100% - 380px), 980px);
}

.legal-hero {
  min-height: 34svh;
  align-content: end;
  border-bottom: 0;
}

.legal-hero h1 {
  max-width: 900px;
  margin-bottom: 14px;
  font-size: clamp(3rem, 7vw, 7.4rem);
  letter-spacing: 0.035em;
  line-height: 0.9;
  text-transform: uppercase;
}

.legal-updated {
  margin: 0 0 28px;
  color: var(--quiet);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
}

.legal-document {
  display: grid;
  gap: 22px;
  padding: 48px 0 10px;
}

.legal-document h2,
.legal-document p,
.legal-document li {
  font-family: "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.legal-document h2 {
  margin: 24px 0 0;
  color: var(--ink);
  font-size: clamp(1.15rem, 2vw, 1.8rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.legal-document p,
.legal-document li {
  max-width: 820px;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
}

.legal-document a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.legal-document ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.preference-card {
  display: grid;
  gap: 10px;
  max-width: 720px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.025);
  padding: 20px;
}

.preference-card strong {
  color: var(--ink);
}

audio,
video {
  width: 100%;
}

video {
  aspect-ratio: 9 / 16;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #030405;
}

.clip-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  max-width: min(1120px, 100%);
  gap: clamp(20px, 2.2vw, 30px);
  margin: 0 auto;
}

.video-tile {
  aspect-ratio: 16 / 9;
  cursor: pointer;
}

.video-tile video,
.video-tile img {
  border: 0;
  border-radius: 0;
  aspect-ratio: auto;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #020202;
  filter: saturate(0.95) contrast(1.16) brightness(0.68);
  transition:
    filter 180ms ease,
    transform 220ms ease;
}

.video-tile::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 50% 50%, transparent 0 25%, rgba(0, 0, 0, 0.16) 42%, rgba(0, 0, 0, 0.58) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.72));
  content: "";
  pointer-events: none;
  transition: opacity 180ms ease;
}

.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  width: clamp(54px, 6vw, 70px);
  height: clamp(54px, 6vw, 70px);
  display: grid;
  place-items: center;
  border: 1px solid rgba(244, 240, 232, 0.72);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  color: var(--ink);
  cursor: pointer;
  transform: translate(-50%, -50%);
  backdrop-filter: blur(10px);
  transition:
    background 160ms ease,
    opacity 160ms ease,
    transform 180ms ease;
}

.video-play span {
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid currentColor;
}

.video-tile:hover video,
.video-tile:focus-within video,
.video-tile:hover img,
.video-tile:focus-within img {
  filter: saturate(1.08) contrast(1.2) brightness(0.5);
  transform: none;
}

.video-tile:hover .video-play,
.video-tile:focus-within .video-play {
  background: var(--ink);
  color: var(--bg);
  transform: translate(-50%, -50%) scale(1.04);
}

.video-tile.is-playing::before,
.video-tile.is-playing .video-play {
  opacity: 0;
}

.service-grid .card,
.comparison-grid .card,
.process-grid .card,
.steps-list .step-card {
  min-height: 220px;
}

.service-grid .card {
  display: grid;
  align-content: end;
}

.comparison-grid,
.process-grid {
  align-items: stretch;
}

.placeholder {
  border: 1px dashed rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  color: var(--quiet);
  font-size: 0.9rem;
  padding: 14px;
}

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

.step-card {
  padding: 18px;
  min-height: 160px;
  color: var(--muted);
  font-family: var(--clean-grotesk);
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0;
}

.step-card::before {
  counter-increment: steps;
  content: "0" counter(steps);
  display: block;
  margin-bottom: 18px;
  color: var(--ink);
  font-family: var(--clean-grotesk);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0;
}

.contact-actions {
  justify-content: center;
  max-width: 580px;
  margin: 30px auto 0;
}

.contact-lead-form-shell {
  width: min(100%, 760px);
  margin: 30px auto 0;
}

.contact-lead-form {
  display: grid;
  gap: 16px;
  border: 1px solid rgba(244, 240, 232, 0.14);
  border-radius: 0;
  background:
    linear-gradient(145deg, rgba(244, 240, 232, 0.07), transparent 52%),
    #030303;
  padding: clamp(22px, 4vw, 38px);
  text-align: left;
}

.contact-lead-form h2 {
  margin-bottom: 0;
  color: var(--ink);
  font-family: var(--clean-grotesk);
  font-size: clamp(2rem, 5vw, 4.4rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.contact-form-note {
  margin: -4px 0 4px;
  color: var(--quiet);
  font-size: 0.96rem;
  line-height: 1.45;
}

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

.contact-lead-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-lead-form input,
.contact-lead-form select,
.contact-lead-form textarea {
  width: 100%;
  border: 1px solid rgba(244, 240, 232, 0.16);
  border-radius: 0;
  background: rgba(244, 240, 232, 0.045);
  color: var(--ink);
  font: inherit;
  font-size: 1rem;
  letter-spacing: 0;
  padding: 14px;
  text-transform: none;
}

.contact-lead-form textarea {
  resize: vertical;
}

.contact-lead-form input:focus,
.contact-lead-form select:focus,
.contact-lead-form textarea:focus {
  border-color: rgba(244, 240, 232, 0.46);
  outline: none;
}

.contact-consent {
  grid-template-columns: auto 1fr;
  align-items: start;
  color: var(--muted) !important;
  font-size: 0.82rem !important;
  letter-spacing: 0 !important;
  line-height: 1.4;
  text-transform: none !important;
}

.contact-consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.contact-lead-form .button {
  justify-self: flex-start;
  margin-top: 4px;
}

.contact-lead-form .button:disabled {
  cursor: wait;
  opacity: 0.6;
}

.contact-form-status {
  color: var(--muted);
  font-family: var(--body-font);
  font-size: 0.98rem;
  line-height: 1.45;
  margin: 0;
}

.lead-honeypot {
  height: 0;
  left: -9999px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  top: auto;
  width: 1px;
}

.contact-page-hero {
  min-height: calc(86svh - 76px);
  max-width: 980px;
  align-content: center;
  justify-items: center;
  margin: 0 auto;
  text-align: center;
}

.contact-page-hero .hero-copy {
  margin-right: auto;
  margin-left: auto;
}

.disabled-link {
  cursor: not-allowed;
  opacity: 0.58;
}

@media (max-width: 1020px) {
  .page-main {
    width: min(calc(100% - 300px), 1120px);
  }

  .page-side-menu {
    left: 36px;
  }

  .page-social-rail {
    right: 42px;
  }

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

  .service-grid,
  .song-grid,
  .music-grid,
  .process-grid,
  .steps-list,
  .portal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .clip-grid,
  .comparison-grid,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .music-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }

  .services-menu-section .service-grid {
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  }

  .service-detail-card {
    grid-template-columns: 1fr;
  }

  .service-detail-media {
    min-height: 360px;
  }

  .contact-actions {
    justify-content: center;
    max-width: none;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: static;
    grid-template-columns: 1fr;
  }

  .language-toggle {
    grid-column: 1;
    grid-row: 1;
  }

  .site-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero-section {
    min-height: auto;
    padding: 54px 0 42px;
  }

  .page-hero,
  .contact-page-hero {
    min-height: auto;
    padding: 52px 0 34px;
  }

  h1 {
    font-size: 3.7rem;
  }

  .page-hero h1 {
    font-size: clamp(4rem, 20vw, 6.8rem);
  }

  h2 {
    font-size: clamp(1.85rem, 1.85rem, 1.85rem);
  }

  .service-grid,
  .song-grid,
  .music-grid,
  .comparison-grid,
  .process-grid,
  .clip-grid,
  .steps-list,
  .portal-grid {
    grid-template-columns: 1fr;
  }

  .music-grid {
    grid-template-columns: repeat(auto-fit, minmax(136px, 1fr));
    gap: 14px;
  }

  .services-menu-section .service-grid,
  .service-detail-block ul,
  .service-detail-split,
  .loop-plan-grid {
    grid-template-columns: 1fr;
  }

  .stream-actions {
    grid-template-columns: 1fr;
  }

  .service-option {
    min-height: 245px;
  }

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

  .service-detail-media {
    min-height: 280px;
  }

  .service-detail-copy {
    padding: 24px;
  }

  .section {
    padding: 54px 0;
  }

  .card,
  .step-card {
    padding: 18px;
  }

  .hero-visual {
    display: flex;
    gap: 12px;
    margin-right: -16px;
    overflow-x: auto;
    padding: 0 16px 8px 0;
    scroll-snap-type: x mandatory;
  }

  .visual-tile,
  .visual-tile-large {
    min-width: 78vw;
    min-height: 260px;
    grid-row: auto;
    scroll-snap-align: start;
  }

  .home-main {
    width: min(calc(100% - 32px), 1480px);
  }

  .page-main {
    width: min(calc(100% - 32px), 1120px);
  }

  .legal-main {
    width: min(calc(100% - 32px), 980px);
  }

  .home-gallery {
    grid-template-columns: 1fr;
    gap: 28px;
    min-height: auto;
    padding: 28px 0 54px;
  }

  .home-art-board {
    min-height: auto;
    display: grid;
    gap: 18px;
    overflow: visible;
  }

  .home-wordmark,
  .home-image {
    position: static;
  }

  .home-wordmark {
    font-size: clamp(5.2rem, 28vw, 8.4rem);
    letter-spacing: -0.13em;
    mix-blend-mode: normal;
    transform: scaleX(0.95);
  }

  .home-image,
  .home-image-one,
  .home-image-two,
  .home-image-three,
  .home-image-four,
  .home-image-five,
  .home-image-six,
  .home-image-seven,
  .home-image-eight,
  .home-image-nine,
  .home-image-ten,
  .home-image-eleven,
  .home-image-twelve,
  .home-image-thirteen,
  .home-image-fourteen,
  .home-image-fifteen,
  .home-image-sixteen {
    width: 100%;
    aspect-ratio: 1 / 1;
  }

  .side-menu,
  .social-rail {
    display: flex;
    justify-content: flex-start;
    overflow-x: auto;
  }

  .page-side-menu,
  .page-social-rail {
    position: static;
    transform: none;
    width: min(calc(100% - 32px), 1120px);
    margin: 18px auto 0;
  }

  .side-menu a,
  .social-rail :is(a, span) {
    white-space: nowrap;
  }

  .audio-control-row {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .audio-time {
    grid-column: 2;
    text-align: left;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 48px;
    text-align: center;
  }

  .footer-brand,
  .footer-year {
    justify-self: center;
  }

  .portal-grid {
    grid-template-columns: 1fr;
  }

  .portal-card {
    min-height: 260px;
  }

  .portal-overlay {
    opacity: 1;
    transform: none;
  }

  .music-overlay {
    opacity: 1;
    transform: none;
  }

  .contact-actions {
    justify-content: stretch;
  }

  .contact-actions .button {
    flex: 1 1 100%;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .contact-lead-form .button {
    width: 100%;
  }
}
