@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap");

:root {
  --black: #080909;
  --black-2: #0d0f0f;
  --panel: rgba(255, 255, 255, 0.055);
  --panel-strong: rgba(255, 255, 255, 0.09);
  --ink: #f8f3ea;
  --muted: #b9b0a3;
  --dim: #81786d;
  --gold: #d4b16f;
  --gold-2: #f0cf88;
  --green: #1a8b7d;
  --green-soft: rgba(26, 139, 125, 0.22);
  --line: rgba(255, 255, 255, 0.105);
  --gold-line: rgba(212, 177, 111, 0.24);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max: 1380px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 12% 0%, rgba(212, 177, 111, 0.16), transparent 330px),
    radial-gradient(circle at 82% 12%, rgba(26, 139, 125, 0.18), transparent 420px),
    linear-gradient(180deg, #0c0e0e 0%, #080909 44%, #090a0a 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.38;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.045), transparent 34%),
    radial-gradient(circle at 35% 82%, rgba(212, 177, 111, 0.07), transparent 36%);
}

::selection {
  color: #111;
  background: var(--gold-2);
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

img {
  max-width: 100%;
}

.shell {
  width: min(var(--max), calc(100% - 56px));
  margin-inline: auto;
}

.siteHeader {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 9, 9, 0.78);
  backdrop-filter: blur(22px);
}

.navBar {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brandMark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brandMark img,
.footerBrand img {
  object-fit: contain;
  filter: drop-shadow(0 14px 30px rgba(0, 0, 0, 0.5));
}

.brandMark span {
  display: grid;
  gap: 1px;
  line-height: 0.86;
  font-size: 22px;
  letter-spacing: -0.07em;
}

.brandMark b,
.footerBrand p {
  font-weight: 850;
}

.brandMark em,
.footerBrand span,
.footerColumn span {
  color: var(--gold);
  font-style: normal;
}

.desktopNav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2.1vw, 32px);
  color: rgba(248, 243, 234, 0.74);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.desktopNav a,
.quietLink,
.footerColumn a {
  transition: color 180ms ease, opacity 180ms ease;
}

.desktopNav a:hover,
.quietLink:hover,
.footerColumn a:hover {
  color: var(--gold-2);
}

.navRight {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  min-width: max-content;
}

.quietLink {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.navCta,
.mobileMenuCta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--gold-line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.115em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.navCta:hover,
.mobileMenuCta:hover,
.btn:hover {
  transform: translateY(-1px);
  border-color: rgba(240, 207, 136, 0.72);
  background: rgba(212, 177, 111, 0.14);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.btn.fill,
.navCta {
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: #12100b;
  border-color: transparent;
}

.btn.fill:hover,
.navCta:hover {
  background: linear-gradient(135deg, #fff4cf, var(--gold-2));
  color: #0e0c08;
}

.mobileMenu {
  display: none;
  position: relative;
}

.mobileMenu summary {
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}

.mobileMenu summary::-webkit-details-marker {
  display: none;
}

.mobileMenuPanel {
  position: absolute;
  right: 0;
  top: calc(100% + 14px);
  width: min(320px, calc(100vw - 42px));
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(13, 15, 15, 0.96);
  box-shadow: var(--shadow);
  display: grid;
  gap: 8px;
}

.mobileMenuPanel a {
  padding: 13px 14px;
  border-radius: 15px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.mobileMenuPanel a:hover {
  background: rgba(255, 255, 255, 0.055);
  color: var(--ink);
}

.mobileMenuPanel .mobileMenuCta {
  margin-top: 6px;
  color: #111;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 84px);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -22% 30%;
  height: 420px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(212, 177, 111, 0.15), transparent 62%);
  filter: blur(18px);
  pointer-events: none;
}

.heroStage {
  position: relative;
  min-height: calc(100vh - 84px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.82fr);
  align-items: center;
  gap: clamp(34px, 6vw, 86px);
  padding: clamp(74px, 9vw, 128px) 0 clamp(78px, 8vw, 118px);
}

.heroCopy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.23em;
  text-transform: uppercase;
}

.hero h1,
.pageHero h1,
.finalCta h2,
.studioStatement h2,
.sectionTitle h2 {
  margin: 0;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero h1 {
  max-width: 980px;
  font-size: clamp(58px, 8.6vw, 132px);
  line-height: 0.82;
  letter-spacing: -0.088em;
}

.hero h1 span,
.pageHero h1 span {
  color: var(--gold);
}

.heroLead,
.pageHero p,
.sectionCopy,
.studioStatement > p,
.finalCta p,
.serviceTile p,
.playerIntro p,
.processCard p,
.faqItem p,
.sceneCard p,
.shopRelease p,
.contactAside p,
.contactList p,
.serviceColumns p,
.footerStatement,
.footerColumn p {
  color: var(--muted);
  line-height: 1.68;
}

.heroLead {
  max-width: 760px;
  margin: 26px 0 0;
  font-size: clamp(17px, 1.45vw, 22px);
}

.heroActions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.heroProof {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.heroProof span,
.pillList span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.105);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(248, 243, 234, 0.78);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.heroVisual {
  position: relative;
  z-index: 1;
  min-height: 620px;
}

.studioObject {
  position: absolute;
  inset: 4% 0 4% 4%;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 44px;
  background:
    radial-gradient(circle at 35% 28%, rgba(240, 207, 136, 0.2), transparent 28%),
    radial-gradient(circle at 76% 72%, rgba(26, 139, 125, 0.22), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.026));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.studioObject::before {
  content: "";
  position: absolute;
  inset: 22px;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.018));
}

.orbitalGlow {
  position: absolute;
  width: 420px;
  height: 420px;
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(240, 207, 136, 0.28), transparent 48%),
    conic-gradient(from 120deg, rgba(240, 207, 136, 0.36), rgba(26, 139, 125, 0.18), rgba(255, 255, 255, 0.06), rgba(240, 207, 136, 0.36));
  filter: blur(2px);
  opacity: 0.86;
}

.studioObject img {
  position: absolute;
  width: min(58%, 430px);
  height: auto;
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 36px 70px rgba(0, 0, 0, 0.58));
}

.signalBars {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 34px;
  height: 112px;
  display: flex;
  align-items: end;
  gap: 9px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 24px;
  background: rgba(8, 9, 9, 0.55);
  backdrop-filter: blur(18px);
}

.signalBars span {
  flex: 1;
  min-width: 5px;
  border-radius: 99px 99px 4px 4px;
  background: linear-gradient(180deg, rgba(240, 207, 136, 0.92), rgba(26, 139, 125, 0.58));
  box-shadow: 0 0 28px rgba(212, 177, 111, 0.12);
}

.floatingNote {
  position: absolute;
  max-width: 250px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.105);
  border-radius: 24px;
  background: rgba(13, 15, 15, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
}

.floatingNote.left {
  left: -4%;
  top: 15%;
}

.floatingNote.right {
  right: -2%;
  top: 47%;
}

.floatingNote span,
.trackIndex,
.whyCard span,
.processCard span,
.sceneTopline strong,
.releaseList span {
  color: var(--gold);
  font-weight: 950;
  letter-spacing: -0.065em;
}

.floatingNote span {
  display: block;
  margin-bottom: 16px;
  font-size: 26px;
}

.floatingNote strong {
  display: block;
  margin-bottom: 6px;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: -0.03em;
}

.floatingNote p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.section {
  padding: clamp(82px, 9vw, 128px) 0;
}

.section.compact {
  padding-top: clamp(56px, 6vw, 82px);
  padding-bottom: clamp(56px, 6vw, 86px);
}

.featureSection,
.softPanelSection {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.026), rgba(255, 255, 255, 0));
  border-top: 1px solid rgba(255, 255, 255, 0.055);
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
}

.studioStatement {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.7fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: end;
  padding: clamp(30px, 4.4vw, 58px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.028));
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.22);
}

.studioStatement h2 {
  max-width: 900px;
  font-size: clamp(38px, 5.2vw, 82px);
  line-height: 0.91;
  letter-spacing: -0.077em;
}

.studioStatement > p,
.studioStatement > div > p {
  margin: 0;
  font-size: clamp(16px, 1.3vw, 20px);
}

.splitStatement {
  align-items: center;
}

.pillList {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
}

.serviceShowcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.serviceTile,
.whyCard,
.playerCard,
.processCard,
.faqItem,
.sceneCard,
.serviceColumns article,
.contactForm,
.contactAside,
.shopRelease,
.finalCta,
.priceTable,
.masteringBox {
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025));
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.18);
}

.serviceTile {
  min-height: 330px;
  padding: 30px;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
}

.serviceTile::after,
.sceneCard::after,
.faqItem::after {
  content: "";
  position: absolute;
  inset: auto 24px 0 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 177, 111, 0.46), transparent);
  opacity: 0.7;
}

.serviceTile span {
  color: var(--gold);
  font-size: 30px;
  font-weight: 950;
  letter-spacing: -0.07em;
}

.serviceTile h3,
.playerIntro h3,
.processCard h3,
.faqItem h3,
.sceneCard h3,
.serviceColumns h2,
.contactAside h2,
.formHeader h2,
.shopRelease h2 {
  margin: 0;
  text-transform: uppercase;
  text-wrap: balance;
}

.serviceTile h3 {
  margin-top: auto;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 0.94;
  letter-spacing: -0.065em;
}

.serviceTile p {
  margin: 18px 0 24px;
}

.serviceTile a {
  width: max-content;
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.sectionTitle {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(280px, 0.55fr);
  gap: clamp(24px, 4vw, 58px);
  align-items: end;
  margin-bottom: clamp(30px, 4vw, 54px);
}

.sectionTitle.center {
  display: block;
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
}

.sectionTitle.center .eyebrow {
  justify-content: center;
}

.sectionTitle h2 {
  font-size: clamp(42px, 6.2vw, 94px);
  line-height: 0.88;
  letter-spacing: -0.078em;
}

.sectionCopy {
  margin: 0;
  font-size: clamp(16px, 1.25vw, 20px);
}

.comparisonStack {
  display: grid;
  gap: 16px;
}

.playerCard {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(430px, 1fr);
  align-items: center;
  gap: clamp(22px, 3vw, 42px);
  padding: clamp(20px, 2.4vw, 34px);
  border-radius: 30px;
  overflow: hidden;
}

.playerCard::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 10%, rgba(212, 177, 111, 0.12), transparent 30%);
  pointer-events: none;
}

.playerIntro,
.abConsole {
  position: relative;
  z-index: 1;
}

.playerIntro {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 20px;
  align-items: start;
}

.trackIndex {
  font-size: 36px;
  line-height: 1;
}

.playerIntro h3 {
  margin-bottom: 8px;
  font-size: clamp(22px, 2.2vw, 34px);
  line-height: 0.98;
  letter-spacing: -0.052em;
}

.playerIntro p {
  margin: 0;
}

.comparisonMeta {
  margin-bottom: 10px !important;
  color: var(--gold-2) !important;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.abConsole {
  display: grid;
  gap: 14px;
}

.timeline {
  position: relative;
  width: 100%;
  height: 118px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 26px;
  background:
    radial-gradient(circle at 18% 50%, rgba(240, 207, 136, 0.22), transparent 34%),
    linear-gradient(135deg, rgba(15, 17, 17, 0.96), rgba(25, 30, 29, 0.9));
}

.timelineAmbient,
.timelineFill,
.timelineNeedle,
.waveform {
  position: absolute;
}

.timelineAmbient {
  inset: 0;
  background: linear-gradient(90deg, rgba(212, 177, 111, 0.08), rgba(26, 139, 125, 0.16));
}

.waveform {
  inset: 19px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
}

.waveformBar {
  flex: 1;
  min-width: 3px;
  max-width: 9px;
  border-radius: 999px;
  background: rgba(248, 243, 234, 0.52);
  box-shadow: 0 0 18px rgba(240, 207, 136, 0.06);
}

.timelineFill {
  inset: 0 auto 0 0;
  background: linear-gradient(90deg, rgba(212, 177, 111, 0.34), rgba(26, 139, 125, 0.2));
  mix-blend-mode: screen;
}

.timelineNeedle {
  top: 15px;
  bottom: 15px;
  width: 2px;
  border-radius: 999px;
  background: var(--gold-2);
  box-shadow: 0 0 26px rgba(240, 207, 136, 0.78);
}

.abControls {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.playButton,
.abSwitch button {
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--ink);
  padding: 0 16px;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.12em;
  transition: 180ms ease;
}

.playButton {
  min-width: 90px;
  background: rgba(212, 177, 111, 0.16);
  border-color: rgba(212, 177, 111, 0.38);
}

.playButton:hover,
.abSwitch button:hover,
.abSwitch button.active {
  background: var(--gold-2);
  border-color: transparent;
  color: #111;
}

.playButton:disabled,
.abSwitch button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.abSwitch {
  display: inline-flex;
  gap: 7px;
  padding: 5px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.abTime {
  display: inline-flex;
  gap: 6px;
  color: rgba(248, 243, 234, 0.68);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.abStatus {
  margin: 0;
  color: rgba(248, 243, 234, 0.52) !important;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.abConsole[data-error="true"] .timeline {
  opacity: 0.55;
}

.whyGrid,
.serviceColumns,
.scenesGrid,
.faqGrid {
  display: grid;
  gap: 16px;
}

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

.whyCard {
  min-height: 194px;
  border-radius: 26px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.whyCard span {
  font-size: 30px;
}

.whyCard h3 {
  margin: 0;
  font-size: clamp(20px, 1.9vw, 28px);
  line-height: 1;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.finalCtaSection {
  padding-top: clamp(52px, 6vw, 82px);
}

.finalCta {
  position: relative;
  overflow: hidden;
  border-radius: 38px;
  padding: clamp(34px, 6vw, 78px);
  background:
    radial-gradient(circle at 82% 12%, rgba(26, 139, 125, 0.18), transparent 38%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.078), rgba(255, 255, 255, 0.025));
}

.finalCta::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -180px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 177, 111, 0.18), transparent 63%);
  pointer-events: none;
}

.finalCta h2 {
  max-width: 1040px;
  font-size: clamp(42px, 6.2vw, 96px);
  line-height: 0.88;
  letter-spacing: -0.08em;
}

.finalCta p:not(.eyebrow) {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 24px 0 0;
  font-size: clamp(16px, 1.3vw, 20px);
}

.pageHero {
  position: relative;
  overflow: hidden;
  padding: clamp(96px, 11vw, 158px) 0 clamp(62px, 7vw, 96px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background:
    radial-gradient(circle at 76% 12%, rgba(212, 177, 111, 0.13), transparent 360px),
    radial-gradient(circle at 18% 36%, rgba(26, 139, 125, 0.12), transparent 420px);
}

.pageHero::after {
  content: "";
  position: absolute;
  inset: auto 12% -45% auto;
  width: 520px;
  height: 520px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(212, 177, 111, 0.11), transparent 62%);
}

.pageHero .shell {
  position: relative;
  z-index: 1;
}

.pageHero h1 {
  max-width: 1160px;
  font-size: clamp(50px, 7.7vw, 118px);
  line-height: 0.84;
  letter-spacing: -0.086em;
}

.pageHero p:not(.eyebrow) {
  max-width: 840px;
  margin: 28px 0 0;
  font-size: clamp(17px, 1.45vw, 22px);
}

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

.serviceColumns article {
  min-height: 310px;
  padding: 30px;
  border-radius: 28px;
}

.serviceColumns h2 {
  margin-bottom: 18px;
  font-size: clamp(28px, 3.2vw, 48px);
  line-height: 0.94;
  letter-spacing: -0.064em;
}

.processRail {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.processCard {
  min-height: 265px;
  border-radius: 24px;
  padding: 24px;
}

.processCard span {
  display: block;
  margin-bottom: 46px;
  font-size: 30px;
}

.processCard h3 {
  margin-bottom: 12px;
  font-size: 19px;
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.processCard p {
  margin: 0;
  font-size: 14px;
}

.pricingLayout .sectionTitle {
  margin-bottom: 32px;
}

.priceTable {
  overflow: hidden;
  border-radius: 28px;
}

.priceRow {
  display: grid;
  grid-template-columns: 1fr 220px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.075);
}

.priceRow:last-child {
  border-bottom: 0;
}

.priceRow span,
.priceRow strong {
  padding: 22px 26px;
}

.priceRow span {
  color: rgba(248, 243, 234, 0.82);
  font-weight: 750;
}

.priceRow strong {
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background: rgba(212, 177, 111, 0.11);
  color: var(--gold-2);
  font-size: 24px;
  letter-spacing: -0.035em;
}

.masteringBox {
  margin-top: 16px;
  padding: 28px;
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  background:
    radial-gradient(circle at 20% 20%, rgba(240, 207, 136, 0.18), transparent 38%),
    linear-gradient(145deg, rgba(212, 177, 111, 0.2), rgba(255, 255, 255, 0.04));
}

.masteringBox h3 {
  margin: 0 0 8px;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: -0.035em;
}

.masteringBox p {
  margin: 0;
  color: var(--muted);
}

.masteringBox strong {
  color: var(--gold-2);
  font-size: 46px;
  letter-spacing: -0.07em;
}

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

.faqItem {
  position: relative;
  min-height: 180px;
  padding: 26px;
  border-radius: 24px;
  overflow: hidden;
}

.faqItem h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.faqItem p {
  margin: 0;
}

.centerCta {
  margin-top: 34px;
  text-align: center;
}

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

.sceneCard {
  position: relative;
  min-height: 390px;
  padding: 28px;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.sceneTopline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sceneTopline span,
.sceneCard span {
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.sceneTopline strong {
  font-size: 42px;
}

.sceneCard h3 {
  margin: 16px 0 10px;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 0.98;
  letter-spacing: -0.052em;
}

.sceneCard p {
  margin: 0;
}

.sceneCard ul {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 8px;
}

.sceneCard li {
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.075);
  color: var(--muted);
}

.shopRelease {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.68fr);
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
  padding: clamp(30px, 5vw, 58px);
  border-radius: 34px;
}

.shopRelease h2 {
  margin-bottom: 18px;
  font-size: clamp(38px, 5vw, 78px);
  line-height: 0.9;
  letter-spacing: -0.075em;
}

.shopRelease p {
  margin: 0;
  max-width: 760px;
}

.releaseList {
  display: grid;
  gap: 12px;
}

.releaseList div {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 18px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.16);
}

.releaseList span {
  font-size: 30px;
}

.releaseList strong {
  text-transform: uppercase;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.contactGrid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.75fr);
  gap: 20px;
}

.contactForm,
.contactAside {
  border-radius: 32px;
  padding: clamp(26px, 4vw, 44px);
}

.formHeader h2,
.contactAside h2 {
  font-size: clamp(34px, 4.2vw, 66px);
  line-height: 0.9;
  letter-spacing: -0.072em;
}

.formGrid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.formGrid label {
  display: grid;
  gap: 9px;
}

.formGrid label span,
.contactList span {
  color: var(--gold-2);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.formGrid input,
.formGrid select,
.formGrid textarea {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.22);
  color: var(--ink);
  padding: 0 16px;
  outline: none;
  transition: 180ms ease;
}

.formGrid textarea {
  min-height: 180px;
  padding-top: 16px;
  resize: vertical;
}

.formGrid input:focus,
.formGrid select:focus,
.formGrid textarea:focus {
  border-color: rgba(240, 207, 136, 0.64);
  box-shadow: 0 0 0 4px rgba(212, 177, 111, 0.1);
}

.fullField,
.formGrid .btn {
  grid-column: 1 / -1;
}

.formGrid .btn {
  width: max-content;
  min-width: 190px;
  margin-top: 8px;
}

.contactAside p {
  margin: 20px 0 0;
}

.contactList {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.contactList div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.14);
}

.contactList a {
  display: block;
  margin-top: 6px;
  color: var(--ink);
  font-weight: 800;
}

.contactList p {
  margin: 6px 0 0;
}

.siteFooter {
  padding: 58px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.075);
  background: #080909;
}

.footerTop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding-bottom: 34px;
  margin-bottom: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.075);
}

.footerBrand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footerBrand p {
  margin: 0;
  display: grid;
  line-height: 0.88;
  font-size: 26px;
  letter-spacing: -0.07em;
}

.footerStatement {
  max-width: 580px;
  margin: 0;
  font-size: 15px;
}

.footerGrid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 26px;
}

.footerColumn {
  display: grid;
  justify-items: start;
  gap: 10px;
  color: var(--muted);
}

.footerColumn span {
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footerColumn a {
  color: rgba(248, 243, 234, 0.76);
}

.footerColumn p {
  margin: 0;
  max-width: 360px;
}

.footerColumn.right {
  justify-items: end;
  text-align: right;
}

.footerCredit {
  font-size: 13px;
  color: rgba(248, 243, 234, 0.54);
}

.footerCredit a {
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.footerCredit a:hover {
  color: var(--gold);
}

@media (max-width: 1180px) {
  .desktopNav,
  .navRight {
    display: none;
  }

  .mobileMenu {
    display: block;
  }

  .heroStage,
  .studioStatement,
  .playerCard,
  .shopRelease,
  .contactGrid {
    grid-template-columns: 1fr;
  }

  .heroVisual {
    min-height: 560px;
  }

  .studioObject {
    inset: 0;
  }

  .floatingNote.left {
    left: 3%;
  }

  .floatingNote.right {
    right: 3%;
  }

  .serviceShowcase,
  .serviceColumns,
  .whyGrid,
  .scenesGrid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .sectionTitle {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(100% - 34px, var(--max));
  }

  .navBar {
    min-height: 74px;
  }

  .brandMark img {
    width: 46px;
    height: 46px;
  }

  .brandMark span {
    font-size: 20px;
  }

  .heroStage {
    padding-top: 58px;
  }

  .hero h1 {
    font-size: clamp(52px, 18vw, 78px);
  }

  .heroActions .btn,
  .formGrid .btn {
    width: 100%;
  }

  .heroProof span {
    width: 100%;
    justify-content: center;
  }

  .heroVisual {
    min-height: 520px;
  }

  .studioObject {
    border-radius: 30px;
  }

  .studioObject::before {
    inset: 14px;
    border-radius: 22px;
  }

  .orbitalGlow {
    width: 310px;
    height: 310px;
  }

  .studioObject img {
    width: min(68%, 330px);
  }

  .signalBars {
    left: 18px;
    right: 18px;
    bottom: 18px;
    height: 94px;
    gap: 5px;
    padding: 16px;
    border-radius: 18px;
  }

  .floatingNote {
    max-width: 210px;
    padding: 16px;
  }

  .floatingNote.right {
    top: 53%;
  }

  .studioStatement,
  .finalCta,
  .shopRelease,
  .contactForm,
  .contactAside {
    border-radius: 24px;
  }

  .serviceShowcase,
  .serviceColumns,
  .whyGrid,
  .scenesGrid,
  .faqGrid,
  .processRail,
  .footerGrid,
  .formGrid {
    grid-template-columns: 1fr;
  }

  .serviceTile,
  .whyCard,
  .sceneCard,
  .serviceColumns article {
    min-height: auto;
  }

  .playerCard {
    padding: 18px;
    border-radius: 24px;
  }

  .playerIntro {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .timeline {
    height: 104px;
    border-radius: 20px;
  }

  .waveform {
    inset: 18px;
    gap: 3px;
  }

  .waveformBar {
    min-width: 2px;
  }

  .abControls {
    align-items: stretch;
  }

  .playButton,
  .abSwitch,
  .abTime {
    width: 100%;
    justify-content: center;
  }

  .abSwitch button {
    flex: 1;
  }

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

  .priceRow strong {
    justify-content: flex-start;
  }

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

  .releaseList div {
    grid-template-columns: 1fr;
  }

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

  .footerColumn.right {
    justify-items: start;
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}


/* Static OVH production additions */
html, body { width: 100%; max-width: 100%; overflow-x: clip; }
body { -webkit-font-smoothing: antialiased; text-rendering: geometricPrecision; }
main, header, footer, section, .shell { max-width: 100%; }
.mobileMenu[open] summary { border-color: rgba(240, 207, 136, 0.55); background: rgba(212, 177, 111, 0.1); }
.honeypot { position: absolute !important; left: -10000px !important; opacity: 0 !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.formStatus { grid-column: 1 / -1; margin: 0; min-height: 24px; color: var(--muted); font-size: 13px; font-weight: 800; letter-spacing: .04em; }
.formStatus[data-state="success"] { color: var(--gold-2); }
.formStatus[data-state="error"] { color: #ffb4a8; }
.formGrid small { display:block; margin-top:6px; color:rgba(248,243,234,.48); line-height:1.45; }
a[data-shopify-key][data-shopify-ready="false"]::after { content: ""; }
.shopifyNote { margin-top: 18px; color: rgba(248,243,234,.54); font-size: 13px; line-height: 1.6; }
@supports not (overflow: clip) { html, body { overflow-x: hidden; } }
@media (max-width: 760px) {
  .pageHero h1, .hero h1, .sectionTitle h2, .finalCta h2, .studioStatement h2 { overflow-wrap: anywhere; }
  .mobileMenuPanel { max-width: calc(100vw - 34px); }
}


/* SHOPIFY CHECKOUT POLISH */
.priceRowLink {
  color: inherit;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.priceRowLink:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.035);
}

.priceRowLink:hover strong {
  background: rgba(212, 177, 111, 0.18);
  color: #fff1c6;
}

.centerCta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.priceNote {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.shopifyNote {
  margin-top: 18px !important;
  color: rgba(248, 243, 234, 0.66);
  font-size: 13px;
}

.checkoutGrid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.checkoutCard {
  position: relative;
  min-height: 360px;
  padding: 26px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.085);
  background:
    radial-gradient(circle at 18% 0%, rgba(240, 207, 136, 0.13), transparent 36%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.22);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.checkoutCard::after {
  content: "";
  position: absolute;
  inset: auto -25% -42% 18%;
  height: 190px;
  background: radial-gradient(circle, rgba(212, 177, 111, 0.16), transparent 68%);
  pointer-events: none;
}

.checkoutCardTop {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.checkoutCardTop span {
  color: var(--gold-2);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.checkoutPrice {
  color: var(--gold-2);
  font-size: clamp(30px, 3vw, 46px);
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: -0.07em;
  white-space: nowrap;
}

.checkoutCard h3 {
  position: relative;
  z-index: 1;
  margin: 22px 0 10px;
  font-size: clamp(24px, 2.3vw, 34px);
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.checkoutCard p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
}

.checkoutCard ul {
  position: relative;
  z-index: 1;
  list-style: none;
  padding: 0;
  margin: 20px 0 26px;
  display: grid;
  gap: 9px;
  color: rgba(248, 243, 234, 0.72);
  font-size: 14px;
}

.checkoutCard li {
  padding-top: 9px;
  border-top: 1px solid rgba(255, 255, 255, 0.075);
}

.checkoutCard .btn {
  position: relative;
  z-index: 1;
  margin-top: auto;
  width: 100%;
}

.checkoutCard.featured {
  border-color: rgba(240, 207, 136, 0.36);
  background:
    radial-gradient(circle at 15% 0%, rgba(240, 207, 136, 0.24), transparent 40%),
    linear-gradient(145deg, rgba(212, 177, 111, 0.18), rgba(255, 255, 255, 0.035));
}

.checkoutStrip {
  margin-top: 18px;
  padding: 24px;
  border-radius: 26px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  border: 1px solid rgba(255, 255, 255, 0.085);
  background: rgba(0, 0, 0, 0.16);
}

.checkoutStrip h3 {
  margin: 0 0 8px;
  font-size: clamp(24px, 3vw, 42px);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.checkoutStrip p {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 1180px) {
  .checkoutGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .checkoutGrid {
    grid-template-columns: 1fr;
  }

  .checkoutCard {
    min-height: auto;
    border-radius: 24px;
  }

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

  .checkoutStrip .btn {
    width: 100%;
  }
}

/* AMYGDALA REVISION PACK — media-led polish */
.desktopNav a.is-active,
.mobileMenuPanel a.is-active {
  color: var(--gold-2);
}

.desktopNav a.is-active {
  position: relative;
}

.desktopNav a.is-active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -14px;
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: var(--gold-2);
  transform: translateX(-50%);
  box-shadow: 0 0 22px rgba(240, 207, 136, 0.38);
}

.heroPhotoVisual {
  min-height: 620px;
  display: grid;
  align-items: stretch;
}

.heroPhoto {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  border-radius: 44px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  box-shadow: var(--shadow);
  filter: saturate(1.04) contrast(1.04);
}

.heroPhotoBadge {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 24px;
  background: rgba(8, 9, 9, 0.72);
  backdrop-filter: blur(18px);
}

.heroPhotoBadge span,
.heroPhotoBadge strong {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.heroPhotoBadge span { color: var(--gold-2); }
.heroPhotoBadge strong { color: var(--ink); }

.studioStatementPhoto {
  align-items: center;
}

.studioStatementPhoto > div > p:not(.eyebrow) {
  margin-top: 24px;
  color: var(--muted);
  line-height: 1.7;
}

.smallStudioPhoto,
.studioPhotoFrame {
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.105);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
}

.smallStudioPhoto img,
.studioPhotoFrame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.smallStudioPhoto {
  height: 320px;
}

.serviceShowcaseMedia .serviceTile.withImage {
  min-height: 465px;
  padding: 0;
  justify-content: flex-start;
}

.serviceTileImage {
  display: block;
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  filter: saturate(1.03) contrast(1.04);
}

.serviceTileContent {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 26px;
}

.serviceTile.withImage h3 {
  margin-top: 18px;
}

.serviceTile.withImage p {
  margin-bottom: 20px;
}

.whyGrid.iconGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.iconGrid .whyCard {
  min-height: 250px;
  padding: 26px;
  border-radius: 28px;
}

.iconGrid .whyCard span {
  display: block;
  margin-bottom: 22px;
  font-size: 28px;
  letter-spacing: 0;
}

.iconGrid .whyCard h3 {
  margin: 0 0 12px;
  text-transform: uppercase;
  font-size: 20px;
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.iconGrid .whyCard p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.aboutSplit,
.approachPanel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: clamp(28px, 5vw, 76px);
}

.reverseAbout {
  grid-template-columns: minmax(360px, 0.72fr) minmax(0, 1fr);
}

.reverseAbout > div { order: 2; }
.reverseAbout > figure { order: 1; }

.aboutSplit h2,
.approachPanel h2 {
  margin: 0 0 22px;
  text-transform: uppercase;
  font-size: clamp(38px, 5.2vw, 82px);
  line-height: 0.9;
  letter-spacing: -0.075em;
}

.aboutSplit p,
.approachPanel p {
  color: var(--muted);
  line-height: 1.74;
  font-size: 16px;
}

.aboutSplit strong,
.aboutSplit em,
.currentProject strong {
  color: var(--gold-2);
}

.studioPhotoFrame {
  min-height: 430px;
}

.studioPhotoFrame figcaption {
  padding: 14px 16px 16px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.approachPanel {
  padding: clamp(26px, 4vw, 46px);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.024));
}

.equipmentList,
.miniSteps {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.equipmentList span,
.miniSteps span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 13px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.105);
  color: rgba(248, 243, 234, 0.78);
  background: rgba(255,255,255,.035);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.compactProcess .processCard {
  min-height: 196px;
}

.compactProcess .processCard span {
  margin-bottom: 24px;
}

.simpleAbPlayer .playerIntro p:not(.comparisonMeta) {
  display: none;
}

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

.scoringShowcase .sectionTitle.center {
  margin-bottom: 34px;
}

.showcasePlayer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.35fr);
  gap: 16px;
  padding: clamp(18px, 2vw, 26px);
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025));
  box-shadow: 0 24px 80px rgba(0,0,0,.28);
}

.showcaseVideo {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 24px;
  background: #050606;
  object-fit: cover;
}

.videoPlaylist {
  display: grid;
  gap: 10px;
  align-content: start;
}

.videoPlaylist button {
  width: 100%;
  min-height: 62px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.085);
  color: rgba(248, 243, 234, .78);
  background: rgba(255,255,255,.04);
  text-align: left;
  padding: 14px 16px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.videoPlaylist button span {
  display: block;
  margin-top: 4px;
  color: var(--ink);
  font-size: 15px;
  letter-spacing: -0.02em;
}

.videoPlaylist button.active,
.videoPlaylist button:hover {
  border-color: rgba(240,207,136,.38);
  background: rgba(212,177,111,.12);
}

.videoStatus {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.currentProject {
  margin-top: 16px;
  padding: 22px 24px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.085);
  background: rgba(0,0,0,.16);
}

.currentProject span {
  color: var(--gold-2);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.currentProject p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.howItWorksSection {
  padding-bottom: 0;
}

.miniProcess {
  padding: 24px;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,.085);
  background: rgba(255,255,255,.035);
}

.miniProcess .eyebrow {
  margin-bottom: 14px;
}

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

.contactAsidePhoto .studioPhotoFrame.mini {
  min-height: 260px;
  margin: 22px 0;
}

.formHeader h2 br {
  display: block;
}

@media (max-width: 1180px) {
  .whyGrid.iconGrid,
  .threeCheckout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .showcasePlayer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .aboutSplit,
  .approachPanel,
  .reverseAbout {
    grid-template-columns: 1fr;
  }
  .reverseAbout > div,
  .reverseAbout > figure { order: initial; }
  .studioPhotoFrame { min-height: 320px; }
}

@media (max-width: 760px) {
  .heroPhotoVisual,
  .heroPhoto {
    min-height: 380px;
  }
  .whyGrid.iconGrid,
  .masteringGrid,
  .threeCheckout {
    grid-template-columns: 1fr;
  }
  .smallStudioPhoto {
    height: 260px;
  }
  .serviceTileImage {
    height: 210px;
  }
  .showcaseVideo {
    border-radius: 18px;
  }
}
