:root {
  --bg: #12100e;
  --bg-soft: #1b1713;
  --surface: #241d17;
  --surface-light: #30271f;
  --text: #f7efe5;
  --muted: #c8b9a8;
  --dim: #8f8173;
  --line: rgba(247, 239, 229, 0.14);
  --amber: #df9b4f;
  --amber-dark: #a9652e;
  --teal: #6eb9c2;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  --radius: 8px;
  font-family:
    Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial,
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 82% 12%, rgba(110, 185, 194, 0.16), transparent 28rem),
    linear-gradient(180deg, #15110e 0%, #100f0d 42%, #17120f 100%);
  color: var(--text);
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 100% 4px;
  opacity: 0.35;
  z-index: 10;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px clamp(18px, 4vw, 58px);
  background: rgba(18, 16, 14, 0.84);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 4px;
  color: var(--amber);
  font-family: Georgia, serif;
  font-size: 22px;
  overflow: hidden;
  background: #080807;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.image-mark {
  border-color: rgba(247, 239, 229, 0.22);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 15px;
  font-weight: 700;
}

.brand small {
  margin-top: 2px;
  color: var(--dim);
  font-size: 12px;
}

.nav {
  display: flex;
  gap: clamp(14px, 2vw, 28px);
  color: var(--muted);
  font-size: 14px;
}

.nav a:hover,
.contact-links a:hover,
.intro-band a:hover {
  color: var(--amber);
}

.header-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.header-action {
  border-color: rgba(223, 155, 79, 0.42);
  color: var(--amber);
}

.header-phone {
  flex: 0 0 auto;
  gap: 8px;
  border-color: rgba(21, 16, 12, 0.35);
  background: #ffb000;
  color: #15100c;
  box-shadow: 3px 3px 0 #15100c;
}

.header-phone span {
  font-size: 12px;
}

.header-phone strong {
  font-size: 14px;
  white-space: nowrap;
}

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

.primary {
  background: var(--amber);
  color: #1b120c;
}

.secondary {
  border-color: var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.cabinet-link {
  border-color: rgba(110, 185, 194, 0.5);
  background: rgba(110, 185, 194, 0.12);
  color: var(--text);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.68fr);
  align-items: center;
  gap: clamp(30px, 5vw, 66px);
  min-height: calc(100svh - 116px);
  padding: clamp(26px, 4vw, 46px) clamp(18px, 6vw, 84px) 26px;
}

.hero-copy {
  min-width: 0;
  max-width: 780px;
}

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

h1 {
  max-width: min(100%, 820px);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5.25vw, 66px);
  line-height: 0.98;
  font-weight: 500;
  overflow-wrap: break-word;
}

.hero-copy > p {
  max-width: 690px;
  margin-top: 20px;
  color: var(--muted);
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.52;
}

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

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 28px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
}

.hero-facts dt {
  color: var(--dim);
  font-size: 12px;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 8px 0 0;
  color: var(--text);
  font-size: 15px;
  line-height: 1.3;
}

.hero-media {
  position: relative;
  margin: 0;
  align-self: stretch;
  min-height: 500px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 18px;
  padding: 18px;
  border: 1px solid rgba(247, 239, 229, 0.18);
  border-radius: var(--radius);
  background: rgba(18, 16, 14, 0.72);
  backdrop-filter: blur(16px);
}

.hero-media span,
.section-heading span {
  color: var(--amber);
  font-size: 12px;
  text-transform: uppercase;
}

.hero-media strong {
  max-width: none;
  text-align: right;
  font-size: 16px;
  line-height: 1.25;
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 38px clamp(18px, 6vw, 84px);
  border-block: 1px solid var(--line);
  background: rgba(223, 155, 79, 0.08);
}

.intro-band p {
  max-width: 980px;
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.28;
}

.intro-band a {
  color: var(--amber);
  font-weight: 700;
  white-space: nowrap;
}

.section,
.media-section,
.client-cabinet,
.contact-section {
  padding: clamp(70px, 10vw, 130px) clamp(18px, 6vw, 84px);
}

.split {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 1fr);
  gap: clamp(36px, 7vw, 94px);
}

.section-heading {
  max-width: 520px;
}

.section-heading h2 {
  margin-top: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.02;
  font-weight: 500;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.service-item {
  min-height: 220px;
  padding: clamp(24px, 3vw, 38px);
  background: rgba(36, 29, 23, 0.92);
}

.service-item h3 {
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.12;
}

.service-item p,
.studio-copy p,
.media-copy p,
.contact-copy p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.62;
}

.service-link {
  display: inline-block;
  margin-top: 20px;
  color: var(--amber);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.media-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 0.62fr);
  gap: clamp(36px, 7vw, 90px);
  align-items: center;
  background:
    linear-gradient(90deg, rgba(110, 185, 194, 0.1), transparent 56%),
    var(--bg-soft);
  border-block: 1px solid var(--line);
}

.player-panel {
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(18, 16, 14, 0.62);
  box-shadow: var(--shadow);
}

.mix-case {
  max-width: 650px;
}

.mix-case h3 {
  margin: 22px 0 12px;
  font-size: clamp(23px, 3vw, 34px);
  line-height: 1.08;
}

.mix-case p {
  margin: 0 0 14px;
  color: var(--dim);
  font-size: 16px;
  line-height: 1.62;
}

.case-link {
  display: inline-block;
  margin-top: 2px;
  color: var(--amber);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.track {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.track.has-cover {
  grid-template-columns: 52px 42px minmax(0, 1fr) auto;
}

.track-cover {
  width: 52px;
  height: 52px;
  border-radius: 4px;
  object-fit: cover;
}

.play-button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

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

.track strong {
  font-size: 16px;
}

.track span,
.track time {
  margin-top: 4px;
  color: var(--dim);
  font-size: 13px;
}

.play-button {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(223, 155, 79, 0.36);
  border-radius: 50%;
  background: rgba(223, 155, 79, 0.12);
  color: var(--amber);
  cursor: pointer;
}

.video-placeholder {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 240px;
  margin-top: 22px;
  border: 1px dashed rgba(247, 239, 229, 0.24);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(18, 16, 14, 0.32), rgba(18, 16, 14, 0.72)),
    url("assets/studio-desk.png") center / cover;
  text-align: center;
}

.photo-credit {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 1;
  margin: 0;
  padding: 9px 11px;
  background: rgba(21, 16, 12, 0.82);
  color: #fff7e7;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
  text-align: left;
}

.client-cabinet {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(340px, 0.78fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
  background:
    linear-gradient(135deg, rgba(223, 155, 79, 0.12), rgba(110, 185, 194, 0.08)),
    var(--bg);
  border-bottom: 1px solid var(--line);
}

.cabinet-copy p {
  max-width: 720px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.62;
}

.cabinet-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.cabinet-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: var(--shadow);
}

.cabinet-panel article {
  min-height: 180px;
  padding: clamp(20px, 2.5vw, 30px);
  background: rgba(36, 29, 23, 0.94);
}

.cabinet-panel span {
  color: var(--amber);
  font-size: 12px;
  font-weight: 800;
}

.cabinet-panel strong {
  display: block;
  margin-top: 12px;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.12;
}

.cabinet-panel p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.48;
}

.studio {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 0.58fr);
  gap: clamp(36px, 6vw, 78px);
  align-items: center;
}

.studio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.studio-grid figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.track-cover-wrap {
  position: relative;
  width: 52px;
  height: 52px;
  overflow: hidden;
  border-radius: 4px;
}

.track-cover-wrap span {
  position: absolute;
  right: 2px;
  bottom: 2px;
  left: 2px;
  overflow: hidden;
  padding: 2px 3px;
  background: rgba(21, 16, 12, 0.8);
  color: #fff7e7;
  font-size: 5px;
  font-weight: 700;
  line-height: 1.1;
  white-space: nowrap;
}

.studio-grid figure:first-child {
  grid-column: 1 / -1;
}

.studio-grid figure:nth-child(2) {
  grid-column: auto;
}

.studio-grid img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
}

.studio-grid figure:first-child img {
  max-height: 460px;
  object-position: center 30%;
}

.photo-gallery {
  background: #ffd15a;
  border-top: 3px solid #15100c;
  border-bottom: 3px solid #15100c;
}

.gallery-heading {
  margin-bottom: 28px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 280px));
  gap: 18px;
  justify-content: start;
}

.gallery-item {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 4 / 5;
  min-height: 0;
  padding: 0;
  border: 3px solid #15100c;
  border-radius: var(--radius);
  background: #15100c;
  box-shadow: 9px 9px 0 #00a8c4;
  color: #fff7e7;
  cursor: zoom-in;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center 30%;
  transition: transform 220ms ease;
}

.gallery-item:hover img {
  transform: scale(1.02);
}

.gallery-item span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  padding: 12px 14px;
  background: rgba(21, 16, 12, 0.88);
  font-weight: 800;
  text-align: left;
}

.gallery-lightbox {
  width: min(1000px, calc(100vw - 40px));
  max-height: calc(100vh - 40px);
  padding: 0;
  border: 3px solid #fff7e7;
  background: #15100c;
  box-shadow: 10px 10px 0 #00a8c4;
}

.gallery-lightbox::backdrop {
  background: rgba(10, 8, 6, 0.86);
}

.gallery-lightbox img {
  display: block;
  width: 100%;
  max-height: calc(100vh - 46px);
  object-fit: contain;
}

.gallery-lightbox .photo-credit {
  right: 16px;
  bottom: 16px;
  left: 16px;
}

.lightbox-close {
  position: absolute;
  z-index: 1;
  top: 12px;
  right: 12px;
  width: 44px;
  height: 44px;
  border: 2px solid #15100c;
  border-radius: 50%;
  background: #ffb000;
  color: #15100c;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(440px, 0.9fr) minmax(260px, 0.42fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: end;
  background: #f2e8dc;
  color: #1d1712;
}

.contact-copy .section-heading span {
  color: var(--amber-dark);
}

.contact-copy p {
  color: #5f5146;
}

.contact-links {
  display: grid;
  gap: 12px;
  margin: 0;
}

.contact-links a {
  padding: 12px 14px;
  border: 1px solid rgba(29, 23, 18, 0.16);
  border-radius: var(--radius);
  color: #61401e;
  font-weight: 700;
}

.studio-address {
  display: grid;
  gap: 6px;
  margin-top: 24px;
  color: #5f5146;
  font-style: normal;
  line-height: 1.5;
}

.studio-address strong { color: #1d1712; }

.metro-note {
  margin-top: 4px;
  font-weight: 700;
}

.studio-map {
  height: 230px;
  margin-top: 20px;
  overflow: hidden;
  border: 2px solid #15100c;
  border-radius: var(--radius);
  background: #fff7e7;
  box-shadow: 6px 6px 0 #ffb000;
}

.studio-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-link {
  display: inline-block;
  margin-top: 16px;
  color: #17373d;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact-details {
  padding-bottom: 8px;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid rgba(29, 23, 18, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.45);
  box-shadow: 0 24px 60px rgba(71, 42, 19, 0.14);
}

.contact-copy .contact-form {
  margin-top: 24px;
}

@media (min-width: 921px) {
  .contact-copy .contact-form {
    width: min(100%, 560px);
  }

  .contact-details {
    align-self: center;
    transform: translateY(-84px);
  }
}

label {
  display: grid;
  gap: 8px;
  color: #5b4a3b;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(29, 23, 18, 0.18);
  border-radius: var(--radius);
  background: #fffaf3;
  color: #201711;
  font: inherit;
  font-size: 16px;
  line-height: 1.4;
  padding: 14px 15px;
}

textarea {
  resize: vertical;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.delivery-choice {
  margin: 0;
  padding: 0;
  border: 0;
}

.delivery-choice legend {
  margin-bottom: 8px;
  color: #5b4a3b;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.delivery-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.delivery-option {
  position: relative;
  display: block;
  cursor: pointer;
}

.delivery-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.delivery-option span {
  display: block;
  padding: 12px 10px;
  border: 1px solid rgba(29, 23, 18, 0.18);
  border-radius: var(--radius);
  background: #fffaf3;
  color: #1d1712;
  text-align: center;
  transition: 160ms ease;
}

.delivery-option input:checked + span {
  border-color: #15100c;
  background: #ffb000;
  box-shadow: 3px 3px 0 #15100c;
}

.delivery-option input:focus-visible + span {
  outline: 3px solid rgba(0, 168, 196, 0.45);
  outline-offset: 2px;
}

.form-submit {
  justify-self: start;
}

.contact-form .secondary {
  border-color: rgba(29, 23, 18, 0.18);
  background: transparent;
  color: #1d1712;
}

.form-note {
  color: #6b5b4e;
  font-size: 14px;
  line-height: 1.5;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 6vw, 84px);
  color: var(--dim);
  background: #100f0d;
}

.footer a {
  color: var(--amber);
}

body[data-theme="vinyl"] {
  --bg: #fff0cf;
  --bg-soft: #101416;
  --surface: #ffe0a2;
  --surface-light: #fff7e7;
  --text: #15100c;
  --muted: #4a3527;
  --dim: #795d4a;
  --line: rgba(20, 16, 12, 0.2);
  --amber: #ffb000;
  --amber-dark: #d75a1f;
  --teal: #00a8c4;
  --shadow: 0 24px 70px rgba(15, 10, 6, 0.24);
  background:
    linear-gradient(135deg, rgba(0, 168, 196, 0.22) 0 18%, transparent 18% 100%),
    linear-gradient(45deg, transparent 0 72%, rgba(230, 71, 38, 0.22) 72% 100%),
    #fff0cf;
}

body[data-theme="vinyl"]::before {
  background-image:
    repeating-linear-gradient(90deg, rgba(20, 16, 12, 0.05) 0 1px, transparent 1px 18px),
    repeating-linear-gradient(0deg, rgba(20, 16, 12, 0.04) 0 1px, transparent 1px 16px);
  opacity: 0.5;
}

body[data-theme="vinyl"] .site-header {
  background: rgba(255, 240, 207, 0.88);
}

body[data-theme="vinyl"] .brand-mark {
  background: #15100c;
}

body[data-theme="vinyl"] h1,
body[data-theme="vinyl"] .section-heading h2,
body[data-theme="vinyl"] .intro-band p {
  font-family: Georgia, "Times New Roman", serif;
  color: #15100c;
}

body[data-theme="vinyl"] h1 {
  text-shadow: 5px 5px 0 rgba(0, 168, 196, 0.22);
}

body[data-theme="vinyl"] .hero-media,
body[data-theme="vinyl"] .studio-grid figure {
  border: 3px solid #15100c;
  box-shadow: 12px 12px 0 #00a8c4;
}

body[data-theme="vinyl"] .hero-media figcaption,
body[data-theme="vinyl"] .player-panel {
  background: rgba(21, 16, 12, 0.88);
  color: #fff7e7;
}

body[data-theme="vinyl"] .intro-band {
  background: #ffb000;
  border-block: 3px solid #15100c;
}

body[data-theme="vinyl"] .service-list {
  border: 3px solid #15100c;
  background: #15100c;
}

body[data-theme="vinyl"] .client-cabinet {
  background:
    linear-gradient(90deg, rgba(0, 168, 196, 0.2), transparent 48%),
    #fff0cf;
}

body[data-theme="vinyl"] .cabinet-panel {
  border: 3px solid #15100c;
  background: #15100c;
  box-shadow: 10px 10px 0 #ffb000;
}

body[data-theme="vinyl"] .cabinet-panel article {
  background: #fff7e7;
}

body[data-theme="vinyl"] .service-item {
  background: #fff7e7;
}

body[data-theme="vinyl"] .service-item:nth-child(2),
body[data-theme="vinyl"] .service-item:nth-child(3) {
  background: #ffd15a;
}

body[data-theme="vinyl"] .media-section {
  background:
    linear-gradient(90deg, rgba(0, 168, 196, 0.22), transparent 48%),
    #101416;
  color: #fff7e7;
}

body[data-theme="vinyl"] .media-section .section-heading h2,
body[data-theme="vinyl"] .media-section .media-copy p {
  color: #fff7e7;
}

body[data-theme="vinyl"] .contact-section {
  background: #00a8c4;
  color: #15100c;
}

body[data-theme="vinyl"] .contact-copy p,
body[data-theme="vinyl"] .form-note {
  color: #17373d;
}

body[data-theme="vinyl"] .contact-form {
  background: #fff7e7;
  border: 3px solid #15100c;
  box-shadow: 10px 10px 0 #ffb000;
}

body[data-theme="vinyl"] .footer {
  background: #15100c;
}

body[data-theme="neon"] {
  --bg: #050711;
  --bg-soft: #0b1022;
  --surface: #111833;
  --surface-light: #17214a;
  --text: #f5fbff;
  --muted: #bac7ff;
  --dim: #8190d8;
  --line: rgba(109, 255, 241, 0.26);
  --amber: #d6ff3f;
  --amber-dark: #ff4fd8;
  --teal: #33f7ff;
  --shadow: 0 24px 90px rgba(0, 0, 0, 0.48);
  background:
    radial-gradient(circle at 22% 28%, rgba(255, 79, 216, 0.24), transparent 28rem),
    radial-gradient(circle at 78% 10%, rgba(51, 247, 255, 0.22), transparent 24rem),
    #050711;
}

body[data-theme="neon"]::before {
  background-image:
    linear-gradient(rgba(51, 247, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 79, 216, 0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.55;
}

body[data-theme="neon"] .site-header {
  background: rgba(5, 7, 17, 0.82);
  border-color: rgba(51, 247, 255, 0.34);
}

body[data-theme="neon"] h1 {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(44px, 5.8vw, 76px);
  line-height: 0.94;
  text-transform: uppercase;
  color: #f5fbff;
  text-shadow:
    0 0 18px rgba(51, 247, 255, 0.52),
    4px 4px 0 rgba(255, 79, 216, 0.72);
}

body[data-theme="neon"] .hero-media {
  border: 1px solid rgba(51, 247, 255, 0.7);
  box-shadow:
    0 0 0 1px rgba(255, 79, 216, 0.38),
    0 0 44px rgba(51, 247, 255, 0.22);
}

body[data-theme="neon"] .hero-media img {
  filter: saturate(1.22) contrast(1.05);
}

body[data-theme="neon"] .hero-media figcaption,
body[data-theme="neon"] .player-panel {
  background: rgba(5, 7, 17, 0.78);
  border-color: rgba(214, 255, 63, 0.36);
}

body[data-theme="neon"] .primary {
  background: #d6ff3f;
  color: #050711;
  box-shadow: 0 0 24px rgba(214, 255, 63, 0.24);
}

body[data-theme="neon"] .secondary,
body[data-theme="neon"] .header-action,
body[data-theme="neon"] .cabinet-link {
  border-color: rgba(51, 247, 255, 0.52);
  color: #33f7ff;
}

body[data-theme="neon"] .intro-band,
body[data-theme="neon"] .media-section,
body[data-theme="neon"] .client-cabinet {
  background:
    linear-gradient(90deg, rgba(255, 79, 216, 0.16), rgba(51, 247, 255, 0.12)),
    #0b1022;
}

body[data-theme="neon"] .service-item,
body[data-theme="neon"] .contact-form,
body[data-theme="neon"] .cabinet-panel article {
  background: rgba(17, 24, 51, 0.9);
  border-color: rgba(51, 247, 255, 0.22);
}

body[data-theme="neon"] .contact-section {
  background: #080b18;
  color: #f5fbff;
}

body[data-theme="neon"] .contact-copy p,
body[data-theme="neon"] .form-note,
body[data-theme="neon"] label {
  color: #bac7ff;
}

body[data-theme="neon"] input,
body[data-theme="neon"] select,
body[data-theme="neon"] textarea {
  background: #111833;
  border-color: rgba(51, 247, 255, 0.24);
  color: #f5fbff;
}

body[data-theme="neon"] .contact-form .secondary {
  color: #33f7ff;
  border-color: rgba(51, 247, 255, 0.42);
}

body[data-theme="neon"] .hero {
  align-items: center;
  gap: clamp(24px, 4vw, 52px);
  min-height: calc(100svh - 150px);
  padding-bottom: 18px;
}

body[data-theme="neon"] .hero-media {
  align-self: center;
  height: min(66svh, 560px);
  min-height: 430px;
}

body[data-theme="collage"] {
  --bg: #f9eddf;
  --bg-soft: #fff7ed;
  --surface: #fff7ed;
  --surface-light: #ffffff;
  --text: #17110f;
  --muted: #4b3b31;
  --dim: #816b59;
  --line: rgba(23, 17, 15, 0.18);
  --amber: #f5b700;
  --amber-dark: #df3f2f;
  --teal: #1269d3;
  --shadow: 0 20px 58px rgba(68, 42, 23, 0.2);
  background:
    linear-gradient(100deg, rgba(18, 105, 211, 0.12), transparent 32%),
    linear-gradient(14deg, transparent 0 64%, rgba(223, 63, 47, 0.16) 64% 78%, transparent 78%),
    #f9eddf;
}

body[data-theme="collage"]::before {
  background-image:
    radial-gradient(circle, rgba(23, 17, 15, 0.12) 1px, transparent 1px),
    linear-gradient(rgba(23, 17, 15, 0.04) 1px, transparent 1px);
  background-size: 18px 18px, 100% 5px;
  opacity: 0.42;
}

body[data-theme="collage"] .site-header {
  background: rgba(249, 237, 223, 0.88);
}

body[data-theme="collage"] h1,
body[data-theme="collage"] .section-heading h2,
body[data-theme="collage"] .intro-band p {
  color: #17110f;
}

body[data-theme="collage"] h1 {
  transform: rotate(-1deg);
  text-decoration: underline;
  text-decoration-color: #df3f2f;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.14em;
}

body[data-theme="collage"] .hero-media {
  border: 10px solid #fff7ed;
  border-radius: 2px;
  transform: rotate(1deg);
  box-shadow: 14px 16px 0 rgba(18, 105, 211, 0.28);
}

body[data-theme="collage"] .hero-media figcaption,
body[data-theme="collage"] .player-panel {
  background: rgba(255, 247, 237, 0.88);
  border-color: rgba(23, 17, 15, 0.18);
  color: #17110f;
}

body[data-theme="collage"] .intro-band {
  background: #f5b700;
  border-block: 2px solid #17110f;
}

body[data-theme="collage"] .service-list {
  border: 0;
  gap: 14px;
  background: transparent;
}

body[data-theme="collage"] .client-cabinet {
  background: #fff7ed;
}

body[data-theme="collage"] .cabinet-panel {
  gap: 14px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

body[data-theme="collage"] .cabinet-panel article {
  background: #fff7ed;
  border: 2px solid rgba(23, 17, 15, 0.18);
  box-shadow: 7px 7px 0 rgba(18, 105, 211, 0.18);
}

body[data-theme="collage"] .service-item {
  background: #fff7ed;
  border: 2px solid rgba(23, 17, 15, 0.18);
  box-shadow: 7px 7px 0 rgba(223, 63, 47, 0.18);
}

body[data-theme="collage"] .service-item:nth-child(even) {
  transform: rotate(0.8deg);
}

body[data-theme="collage"] .service-item:nth-child(odd) {
  transform: rotate(-0.6deg);
}

body[data-theme="collage"] .media-section {
  background: #17110f;
  color: #fff7ed;
}

body[data-theme="collage"] .media-section .section-heading h2,
body[data-theme="collage"] .media-section .media-copy p {
  color: #fff7ed;
}

body[data-theme="collage"] .studio-grid figure {
  border: 8px solid #fff7ed;
  border-radius: 2px;
  box-shadow: 10px 10px 0 rgba(245, 183, 0, 0.26);
}

body[data-theme="collage"] .contact-section {
  background: #1269d3;
  color: #fff7ed;
}

body[data-theme="collage"] .contact-copy .section-heading span,
body[data-theme="collage"] .contact-copy p,
body[data-theme="collage"] .form-note,
body[data-theme="collage"] label {
  color: #fff7ed;
}

body[data-theme="collage"] .contact-form {
  background: #fff7ed;
  color: #17110f;
  border: 3px solid #17110f;
  box-shadow: 10px 10px 0 #df3f2f;
}

body[data-theme="collage"] .contact-form label,
body[data-theme="collage"] .contact-form .form-note {
  color: #4b3b31;
}

body[data-theme="collage"] .footer {
  background: #17110f;
}

@media (max-width: 920px) {
  .site-header {
    position: static;
    flex-wrap: wrap;
  }

  .nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .header-phone {
    margin-left: auto;
  }

  .hero,
  .split,
  .media-section,
  .client-cabinet,
  .studio,
  .photo-gallery,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 34px;
  }

  .hero-media {
    min-height: 520px;
  }

  .intro-band {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    gap: 14px;
  }

  .brand {
    min-width: 0;
  }

  .header-action {
    width: 100%;
  }

  .header-phone {
    order: 2;
    justify-content: center;
    margin-left: 0;
  }

  h1 {
    font-size: 41px;
  }

  body[data-theme="neon"] h1 {
    max-width: calc(100vw - 60px);
    font-size: clamp(30px, 8.2vw, 34px);
    line-height: 0.98;
    overflow-wrap: anywhere;
    text-shadow:
      0 0 12px rgba(51, 247, 255, 0.48),
      2px 2px 0 rgba(255, 79, 216, 0.68);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .button {
    width: 100%;
    min-width: 0;
    padding-inline: 14px;
    white-space: normal;
    line-height: 1.2;
  }

  .hero-facts,
  .service-list,
  .cabinet-panel {
    grid-template-columns: 1fr;
  }

  .studio-grid {
    display: flex;
    gap: 14px;
    width: calc(100% + 18px);
    margin-right: -18px;
    padding: 2px 18px 18px 0;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: thin;
    scrollbar-color: var(--amber) rgba(255, 255, 255, 0.12);
    -webkit-overflow-scrolling: touch;
  }

  .studio-grid figure,
  .studio-grid figure:first-child,
  .studio-grid figure:nth-child(2) {
    flex: 0 0 min(82vw, 360px);
    scroll-snap-align: start;
  }

  .studio-grid img,
  .studio-grid figure:first-child img {
    height: min(108vw, 470px);
    min-height: 340px;
    max-height: none;
  }

  .hero-media {
    min-height: 430px;
  }

  .hero-media figcaption {
    display: block;
  }

  .hero-media strong {
    display: block;
    margin-top: 8px;
    text-align: left;
  }

  .section,
  .media-section,
  .photo-gallery,
  .contact-section {
    padding-block: 62px;
  }

  .track {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .track.has-cover {
    grid-template-columns: 52px 42px minmax(0, 1fr);
  }

  .track time {
    grid-column: 2;
  }

  .track.has-cover time {
    grid-column: 3;
  }

  .gallery-item,
  .gallery-item img {
    min-height: 0;
  }

  .gallery-grid {
    grid-template-columns: minmax(180px, 230px);
  }

  .contact-details {
    padding-bottom: 0;
  }

  .studio-map {
    height: 280px;
  }

  .footer {
    display: grid;
  }
}
