:root {
  --bg: #050505;
  --panel: #10100f;
  --panel-strong: #17120d;
  --ink: #fff7ea;
  --muted: #b7aa99;
  --soft: #74695c;
  --line: rgba(230, 193, 127, 0.18);
  --gold: #e6c17f;
  --gold-bright: #f4d89a;
  --red: #e32929;
  --red-soft: rgba(227, 41, 41, 0.12);
  --mint: #70d5c6;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 74px;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(180deg, rgba(227, 41, 41, 0.08), transparent 280px),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.025) 0,
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px,
      transparent 88px
    ),
    var(--bg);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

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

button,
input,
select {
  font: inherit;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 5, 5, 0.82);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 800;
}

.brand img {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(230, 193, 127, 0.35);
  border-radius: 50%;
  object-fit: cover;
}

.brand span {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.topnav {
  display: none;
}

.topbar__cta {
  flex: 0 0 auto;
  padding: 10px 14px;
  border: 1px solid rgba(230, 193, 127, 0.42);
  border-radius: 8px;
  color: var(--gold-bright);
  font-size: 0.92rem;
  font-weight: 700;
}

main {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px 96px;
}

.hero {
  display: grid;
  gap: 22px;
  min-height: calc(100svh - 64px);
  padding: 28px 0 30px;
  align-items: center;
}

.hero__copy,
.section-heading,
.booking__copy {
  max-width: 620px;
}

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

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

section {
  scroll-margin-top: 74px;
}

h1 {
  margin-bottom: 16px;
  font-size: 2.55rem;
  line-height: 0.96;
}

h2 {
  margin-bottom: 12px;
  font-size: 1.9rem;
  line-height: 1.04;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.24rem;
}

.lead,
.section-heading p,
.support p,
.booking__copy p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.62;
}

.hero__actions {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 850;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

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

.button--primary {
  background: var(--red);
  color: white;
  box-shadow: 0 16px 40px rgba(227, 41, 41, 0.22);
}

.button--ghost {
  border-color: rgba(230, 193, 127, 0.36);
  color: var(--gold-bright);
  background: rgba(230, 193, 127, 0.06);
}

.brand-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  min-height: 330px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(230, 193, 127, 0.12), rgba(227, 41, 41, 0.08)),
    #030303;
}

.brand-panel::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(230, 193, 127, 0.22);
  border-radius: 8px;
  pointer-events: none;
}

.brand-panel__logo {
  width: min(78vw, 360px);
  aspect-ratio: 1;
  object-fit: contain;
  filter: drop-shadow(0 28px 60px rgba(227, 41, 41, 0.18));
}

.wave {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 5px;
  height: 60px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.46);
}

.wave span {
  display: block;
  width: 4px;
  border-radius: 8px;
  background: var(--red);
}

.wave span:nth-child(1),
.wave span:nth-child(10) {
  height: 14px;
}

.wave span:nth-child(2),
.wave span:nth-child(9) {
  height: 22px;
}

.wave span:nth-child(3),
.wave span:nth-child(8) {
  height: 34px;
}

.wave span:nth-child(4),
.wave span:nth-child(7) {
  height: 42px;
}

.wave span:nth-child(5),
.wave span:nth-child(6) {
  height: 52px;
  background: var(--gold);
}

.proof-strip,
.portfolio,
.studio-gallery,
.plans-section,
.support,
.production-services,
.process,
.booking {
  padding: 28px 0;
}

.proof-strip {
  display: grid;
  gap: 10px;
}

.proof-strip div {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(230, 193, 127, 0.08), transparent),
    rgba(255, 255, 255, 0.025);
}

.proof-strip strong,
.proof-strip span {
  display: block;
}

.proof-strip strong {
  margin-bottom: 8px;
  color: var(--gold-bright);
  font-size: 1rem;
}

.proof-strip span {
  color: var(--muted);
  line-height: 1.45;
}

.portfolio-showcase {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.release-card {
  overflow: hidden;
  display: grid;
  gap: 0;
  min-height: 260px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 42%),
    var(--panel);
}

.release-card--large {
  min-height: 420px;
}

.release-card__art {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  background:
    linear-gradient(135deg, rgba(227, 41, 41, 0.34), transparent 46%),
    linear-gradient(45deg, rgba(230, 193, 127, 0.24), rgba(112, 213, 198, 0.12)),
    #080808;
}

.release-card__art::before,
.release-card__art::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  height: 1px;
  background: rgba(230, 193, 127, 0.28);
}

.release-card__art::before {
  top: 36%;
}

.release-card__art::after {
  top: 62%;
}

.release-card__art span {
  position: absolute;
  right: 26px;
  bottom: 26px;
  width: 104px;
  height: 104px;
  border: 1px solid rgba(230, 193, 127, 0.36);
  border-radius: 50%;
}

.release-card__body {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  padding: 18px;
}

.release-card__body p {
  margin-bottom: 0;
  color: var(--mint);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.release-card__body h3 {
  margin-bottom: 0;
  font-size: 1.45rem;
  line-height: 1.08;
}

.release-card__body span {
  color: var(--muted);
  line-height: 1.52;
}

.portfolio-proof {
  display: grid;
  gap: 16px;
  margin-top: 22px;
  padding: 18px;
  border: 1px solid rgba(112, 213, 198, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(112, 213, 198, 0.1), rgba(230, 193, 127, 0.06)),
    rgba(255, 255, 255, 0.025);
}

.portfolio-proof__copy h3 {
  margin-bottom: 10px;
  font-size: 1.45rem;
  line-height: 1.08;
}

.portfolio-proof__copy p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.portfolio-proof img {
  display: block;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  object-fit: contain;
  background: #050505;
}

.audio-portfolio {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.audio-tier {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 34%),
    var(--panel);
}

.audio-tier--standard {
  border-color: rgba(227, 41, 41, 0.42);
}

.audio-tier--premium {
  border-color: rgba(230, 193, 127, 0.48);
  background:
    linear-gradient(180deg, rgba(230, 193, 127, 0.12), transparent 36%),
    var(--panel-strong);
}

.audio-tier__head {
  display: grid;
  gap: 8px;
  padding: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.audio-tier__head h3 {
  margin-bottom: 0;
}

.audio-tier__head span {
  color: var(--muted);
  line-height: 1.45;
}

.track-list {
  display: grid;
  gap: 10px;
  padding: 14px;
}

.track-card {
  display: grid;
  gap: 10px;
  min-width: 0;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
}

.track-card strong {
  color: var(--gold-bright);
  overflow-wrap: anywhere;
}

.track-card audio {
  display: block;
  width: 100%;
  min-width: 0;
}

.studio-scroll-wrap {
  margin-top: 22px;
}

.studio-scroll-hint {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  padding: 9px 12px;
  border: 1px solid rgba(112, 213, 198, 0.24);
  border-radius: 8px;
  color: #d9fffa;
  background: rgba(112, 213, 198, 0.08);
  font-size: 0.88rem;
}

.studio-scroll-hint span {
  color: var(--gold-bright);
  font-weight: 900;
}

.studio-scroller {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 2px 16px 16px 0;
  scroll-padding-left: 0;
  scroll-snap-type: x mandatory;
  scrollbar-color: rgba(230, 193, 127, 0.55) rgba(255, 255, 255, 0.06);
  -webkit-overflow-scrolling: touch;
}

.studio-scroller::-webkit-scrollbar {
  height: 8px;
}

.studio-scroller::-webkit-scrollbar-track {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.studio-scroller::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(230, 193, 127, 0.72);
}

.studio-photo {
  overflow: hidden;
  flex: 0 0 min(82vw, 360px);
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
  scroll-snap-align: start;
}

.studio-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: #050505;
}

.studio-photo--wide {
  flex-basis: min(88vw, 430px);
}

.studio-photo--wide img {
  aspect-ratio: 4 / 5;
}

.studio-photo figcaption {
  display: grid;
  gap: 5px;
  padding: 14px;
}

.studio-photo strong {
  color: var(--gold-bright);
}

.studio-photo span {
  color: var(--muted);
  line-height: 1.4;
}

.plans-grid {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 100%;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 34%),
    var(--panel);
}

.plan-card--featured {
  border-color: rgba(227, 41, 41, 0.6);
  background:
    linear-gradient(180deg, rgba(227, 41, 41, 0.14), transparent 42%),
    var(--panel);
}

.plan-card--premium {
  border-color: rgba(230, 193, 127, 0.55);
  background:
    linear-gradient(180deg, rgba(230, 193, 127, 0.15), transparent 42%),
    var(--panel-strong);
}

.badge {
  align-self: flex-start;
  padding: 7px 10px;
  border-radius: 8px;
  background: var(--red);
  color: white;
  font-size: 0.82rem;
  font-weight: 850;
}

.plan-card__label {
  margin-bottom: 8px;
  color: var(--soft);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.plan-card h3 {
  font-size: 1.5rem;
}

.price {
  color: var(--gold-bright);
  font-size: 2.55rem;
  font-weight: 900;
  line-height: 1;
}

.price span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 750;
}

.plan-card__text {
  color: var(--muted);
  line-height: 1.55;
}

.features {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.features li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 8px;
  color: #f7ead6;
  line-height: 1.36;
}

.features span {
  color: var(--mint);
  font-weight: 900;
}

.not-included,
.addon-note {
  margin-top: auto;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  line-height: 1.45;
}

.not-included p {
  margin-bottom: 8px;
  color: var(--red);
  font-weight: 850;
}

.not-included span {
  display: inline-flex;
  margin: 0 6px 6px 0;
  padding: 7px 9px;
  border-radius: 8px;
  background: var(--red-soft);
  color: #ffc7c7;
  font-size: 0.86rem;
}

.addon-note {
  border-color: rgba(112, 213, 198, 0.22);
  color: #c9f6ef;
}

.addon-note--gold {
  border-color: rgba(230, 193, 127, 0.3);
  color: var(--gold-bright);
}

.button--card {
  width: 100%;
  border-color: rgba(230, 193, 127, 0.32);
  background: rgba(230, 193, 127, 0.08);
  color: var(--ink);
}

.plan-card.is-selected {
  outline: 2px solid var(--mint);
  outline-offset: 3px;
}

.support {
  display: grid;
  gap: 18px;
  margin: 8px 0;
  padding: 22px;
  border: 1px solid rgba(112, 213, 198, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(112, 213, 198, 0.11), rgba(230, 193, 127, 0.06)),
    rgba(255, 255, 255, 0.025);
}

.support h2 {
  color: #eafffb;
}

.support p {
  margin-bottom: 0;
}

.service-grid {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.service-card {
  display: grid;
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 40%),
    var(--panel);
}

.service-card--full {
  border-color: rgba(230, 193, 127, 0.5);
  background:
    linear-gradient(180deg, rgba(230, 193, 127, 0.15), transparent 42%),
    var(--panel-strong);
}

.service-card__label {
  margin-bottom: -4px;
  color: var(--mint);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.service-card h3 {
  margin-bottom: 0;
  font-size: 1.55rem;
}

.service-price {
  color: var(--gold-bright);
  font-size: 2.35rem;
  font-weight: 900;
  line-height: 1;
}

.service-card__text {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.5;
}

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

.process-item {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
}

.process-item span {
  display: block;
  margin-bottom: 16px;
  color: var(--red);
  font-weight: 900;
}

.process-item p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.5;
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.faq-item {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(112, 213, 198, 0.07), transparent 42%),
    rgba(255, 255, 255, 0.025);
}

.faq-item h3 {
  margin-bottom: 8px;
  color: var(--gold-bright);
  font-size: 1.05rem;
  line-height: 1.25;
}

.faq-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.booking {
  display: grid;
  gap: 18px;
  margin-top: 12px;
  padding-bottom: 10px;
}

.booking-form {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.booking-form label {
  display: grid;
  gap: 8px;
  color: var(--gold-bright);
  font-size: 0.92rem;
  font-weight: 800;
}

.booking-form input,
.booking-form select {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: #090909;
  color: var(--ink);
  outline: none;
}

.booking-form input:focus,
.booking-form select:focus {
  border-color: var(--mint);
}

.check-row {
  grid-template-columns: 22px 1fr;
  align-items: start;
  color: var(--ink);
}

.check-row input {
  min-height: auto;
  margin-top: 3px;
  accent-color: var(--red);
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--mint);
  line-height: 1.45;
}

.contact-panel {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(227, 41, 41, 0.08), transparent 42%),
    rgba(255, 255, 255, 0.035);
}

.selected-plan-note {
  margin-bottom: 2px;
  padding: 12px;
  border: 1px solid rgba(112, 213, 198, 0.22);
  border-radius: 8px;
  color: #d9fffa;
  background: rgba(112, 213, 198, 0.07);
  line-height: 1.45;
}

.contact-card {
  display: grid;
  gap: 6px;
  min-height: 118px;
  padding: 16px;
  border: 1px solid rgba(230, 193, 127, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.contact-card--telegram {
  border-color: rgba(112, 213, 198, 0.3);
  background:
    linear-gradient(135deg, rgba(112, 213, 198, 0.12), transparent),
    rgba(255, 255, 255, 0.035);
}

.contact-card span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.contact-card strong {
  color: var(--gold-bright);
  font-size: 1.42rem;
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.contact-card em,
.contact-mini {
  color: var(--muted);
  font-style: normal;
  line-height: 1.45;
}

.contact-mini {
  padding-top: 4px;
}

.order-panel {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(227, 41, 41, 0.08), transparent 42%),
    rgba(255, 255, 255, 0.035);
}

.order-panel label {
  display: grid;
  gap: 8px;
  color: var(--gold-bright);
  font-size: 0.92rem;
  font-weight: 800;
}

.order-panel input[type="text"],
.order-panel select,
.order-panel textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: #090909;
  color: var(--ink);
  outline: none;
}

.order-panel textarea {
  min-height: 112px;
  resize: vertical;
  line-height: 1.45;
}

.order-panel input:focus,
.order-panel select:focus,
.order-panel textarea:focus {
  border-color: var(--mint);
}

.option-list {
  display: grid;
  gap: 10px;
}

.option-row {
  grid-template-columns: 22px 1fr;
  align-items: start;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
}

.option-row input {
  margin-top: 4px;
  accent-color: var(--red);
}

.option-row span {
  display: grid;
  gap: 4px;
}

.option-row strong {
  color: var(--ink);
}

.option-row em {
  color: var(--muted);
  font-style: normal;
  font-weight: 650;
  line-height: 1.4;
}

.option-row.is-disabled {
  opacity: 0.5;
}

.order-panel label.is-disabled {
  opacity: 0.58;
}

.service-note {
  margin: -2px 0 0;
  padding: 12px;
  border: 1px solid rgba(230, 193, 127, 0.22);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(230, 193, 127, 0.055);
  line-height: 1.45;
}

.order-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px;
  border: 1px solid rgba(230, 193, 127, 0.32);
  border-radius: 8px;
  background: rgba(230, 193, 127, 0.08);
}

.order-total span {
  color: var(--muted);
  font-weight: 800;
}

.order-total strong {
  color: var(--gold-bright);
  font-size: 1.35rem;
  overflow-wrap: anywhere;
}

.contact-line {
  display: grid;
  gap: 8px;
  padding: 13px;
  border: 1px solid rgba(112, 213, 198, 0.22);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(112, 213, 198, 0.06);
  line-height: 1.4;
}

.contact-line strong {
  color: #d9fffa;
  overflow-wrap: anywhere;
}

.submit-note {
  margin: -2px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.mobile-sticky {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px;
  border: 1px solid rgba(230, 193, 127, 0.3);
  border-radius: 8px;
  background: rgba(5, 5, 5, 0.9);
  backdrop-filter: blur(14px);
}

.mobile-sticky span {
  min-width: 0;
  overflow: hidden;
  color: var(--gold-bright);
  font-weight: 900;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.mobile-sticky a {
  flex: 0 0 auto;
  padding: 10px 12px;
  border-radius: 8px;
  background: var(--red);
  color: white;
  font-weight: 850;
}

@media (min-width: 520px) {
  .hero__actions {
    display: flex;
    flex-wrap: wrap;
  }

  .button {
    width: auto;
  }
}

@media (min-width: 760px) {
  main {
    padding-right: 24px;
    padding-left: 24px;
  }

  .topnav {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
  }

  .topnav a {
    padding: 10px 12px;
    border-radius: 8px;
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 750;
  }

  .topnav a:hover {
    color: var(--gold-bright);
    background: rgba(230, 193, 127, 0.08);
  }

  h1 {
    font-size: 4.35rem;
  }

  h2 {
    font-size: 2.6rem;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
    gap: 28px;
    min-height: 680px;
    padding-top: 44px;
  }

  .brand-panel {
    min-height: 520px;
  }

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

  .portfolio-showcase {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .release-card--large {
    grid-row: span 2;
  }

  .release-card__body {
    padding: 22px;
  }

  .portfolio-proof {
    grid-template-columns: minmax(0, 0.72fr) minmax(320px, 1fr);
    align-items: center;
    padding: 22px;
  }

  .audio-portfolio {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
  }

  .studio-photo {
    flex-basis: min(36vw, 430px);
  }

  .studio-photo--wide {
    flex-basis: min(42vw, 520px);
  }

  .studio-photo img,
  .studio-photo--wide img {
    aspect-ratio: 4 / 5;
  }

  .plans-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
  }

  .plan-card {
    padding: 22px;
  }

  .support {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    padding: 28px;
  }

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

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

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

  .booking {
    grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
    align-items: start;
    gap: 28px;
  }

  .mobile-sticky {
    display: none;
  }
}

@media (min-width: 1040px) {
  .topbar {
    padding-right: 34px;
    padding-left: 34px;
  }

  .price {
    font-size: 3rem;
  }
}
