:root {
  color-scheme: dark;
  --ink: #f5f7fb;
  --muted: #b4c3d7;
  --dark: #04070d;
  --dark-2: #08111e;
  --blue: #2da7ff;
  --blue-2: #7bd0ff;
  --line: rgba(148, 190, 255, 0.2);
  --panel: rgba(9, 16, 28, 0.82);
  --panel-strong: rgba(13, 23, 39, 0.94);
  --warm-bg: #fff6f7;
  --warm-ink: #23161a;
  --warm-muted: #765b63;
  --rose: #e8477f;
  --rose-dark: #a61f55;
  --gold: #ffd36b;
  --radius: 8px;
  font-family: Inter, "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  width: 100%;
  max-width: 100%;
  background: var(--dark);
  overflow-x: hidden;
}

body {
  min-height: 100%;
  width: 100%;
  max-width: 100%;
  margin: 0;
  color: var(--ink);
  overflow-x: hidden;
  background:
    radial-gradient(circle at 84% 8%, rgba(92, 190, 255, 0.28), transparent 28rem),
    radial-gradient(circle at 8% 36%, rgba(255, 168, 79, 0.12), transparent 24rem),
    linear-gradient(180deg, #10233a 0%, #0b1729 46%, #111b28 100%);
}

body.theme-service {
  color: var(--warm-ink);
  background:
    linear-gradient(145deg, rgba(232, 71, 127, 0.12), transparent 32rem),
    linear-gradient(180deg, #fff9fa 0%, #fff0f3 58%, #f8edf0 100%);
}

body.theme-contacts {
  background:
    radial-gradient(circle at 16% 14%, rgba(45, 167, 255, 0.16), transparent 24rem),
    radial-gradient(circle at 86% 80%, rgba(232, 71, 127, 0.12), transparent 24rem),
    linear-gradient(180deg, #02040a 0%, #081321 100%);
}

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

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

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

audio,
picture,
video,
section,
article,
div,
nav,
header,
main {
  min-width: 0;
}

audio,
picture,
video {
  max-width: 100%;
}

audio {
  width: 100%;
}

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

main {
  padding: 22px 0 42px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0 10px;
  background: linear-gradient(180deg, rgba(12, 27, 45, 0.94), rgba(12, 27, 45, 0.7), transparent);
  backdrop-filter: blur(12px);
}

.topbar--light {
  color: var(--warm-ink);
  background: linear-gradient(180deg, rgba(255, 249, 250, 0.96), rgba(255, 249, 250, 0.78), transparent);
}

.topbar__brand,
.topbar__nav,
.hero-actions,
.mobile-nav,
.link-list,
.service-teaser__card {
  display: flex;
  align-items: center;
}

.topbar__brand {
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0;
}

.topbar__brand img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
}

.topbar__nav {
  gap: 8px;
  padding: 6px;
  border: 1px solid rgba(148, 190, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.topbar--light .topbar__nav {
  border-color: rgba(166, 31, 85, 0.14);
  background: rgba(255, 255, 255, 0.72);
}

.topbar__nav a,
.mobile-nav a {
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}

.topbar__nav a {
  padding: 10px 14px;
  color: var(--muted);
}

.topbar--light .topbar__nav a {
  color: var(--warm-muted);
}

.topbar__nav a[aria-current="page"],
.topbar__nav a:hover {
  color: #07101b;
  background: var(--blue-2);
}

.topbar--light .topbar__nav a[aria-current="page"],
.topbar--light .topbar__nav a:hover {
  color: #fff;
  background: var(--rose);
}

.artist-hero,
.feature-track,
.release-strip,
.service-teaser,
.service-hero,
.info-grid,
.examples-section,
.cta-band,
.contacts-hero,
.contacts-grid {
  margin-top: 22px;
}

.artist-hero {
  min-height: min(640px, calc(100vh - 108px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.82fr);
  align-items: stretch;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(19, 45, 74, 0.94), rgba(12, 26, 44, 0.84) 56%, rgba(24, 57, 87, 0.88)),
    rgba(15, 34, 55, 0.92);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.24);
}

.artist-hero__media {
  min-height: 420px;
  background:
    radial-gradient(circle at 50% 24%, rgba(123, 208, 255, 0.18), transparent 18rem),
    rgba(7, 19, 33, 0.62);
  overflow: hidden;
}

.artist-hero__media img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  object-position: center top;
}

.artist-hero__content {
  display: grid;
  align-content: center;
  padding: clamp(24px, 5vw, 58px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.theme-service .eyebrow,
.contacts-panel--warm .eyebrow {
  color: var(--rose-dark);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(54px, 8.5vw, 112px);
  line-height: 0.86;
  font-weight: 950;
  text-transform: uppercase;
  white-space: nowrap;
}

.theme-service h1,
.theme-contacts h1 {
  max-width: 900px;
  font-size: clamp(40px, 7vw, 86px);
  line-height: 0.96;
  text-transform: none;
  white-space: normal;
  overflow-wrap: normal;
  word-break: normal;
}

h2 {
  font-size: clamp(30px, 5vw, 58px);
  line-height: 0.98;
  font-weight: 900;
}

h3 {
  font-size: 22px;
  line-height: 1.08;
  font-weight: 900;
}

.hero-line {
  margin: 22px 0 0;
  color: #eaf5ff;
  font-size: clamp(22px, 3.2vw, 38px);
  line-height: 1.08;
  font-weight: 900;
}

.hero-tagline {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
}

.hero-intro,
.hero-service {
  max-width: 680px;
  color: #cfdded;
  font-size: clamp(17px, 1.7vw, 22px);
  line-height: 1.45;
  font-weight: 650;
}

.hero-intro {
  margin: 24px 0 0;
}

.hero-intro--second {
  margin-top: 4px;
}

.hero-service {
  margin: 18px 0 0;
  color: #b9c8da;
  font-size: clamp(16px, 1.35vw, 19px);
  font-weight: 600;
}

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

.button {
  display: inline-flex;
  max-width: 100%;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover,
.link-list a:hover,
.text-link:hover {
  transform: translateY(-2px);
}

.button--primary {
  color: #04111d;
  background: linear-gradient(135deg, var(--blue-2), var(--gold));
  box-shadow: 0 16px 38px rgba(45, 167, 255, 0.22);
}

.button--ghost {
  color: #dceaff;
  border-color: rgba(148, 190, 255, 0.22);
  background: rgba(255, 255, 255, 0.05);
}

.button--warm {
  color: #fff;
  background: linear-gradient(135deg, var(--rose), #ff8a63);
  box-shadow: 0 16px 36px rgba(232, 71, 127, 0.22);
}

.button--soft {
  color: var(--rose-dark);
  border-color: rgba(166, 31, 85, 0.2);
  background: rgba(255, 255, 255, 0.74);
}

.feature-track,
.release-strip,
.examples-section,
.cta-band,
.contacts-hero,
.contacts-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.24);
}

.feature-track {
  display: grid;
  grid-template-columns: minmax(320px, 0.98fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 44px);
  align-items: center;
  padding: clamp(18px, 4vw, 34px);
  background:
    linear-gradient(135deg, rgba(18, 40, 65, 0.88), rgba(13, 24, 39, 0.72)),
    rgba(11, 23, 38, 0.82);
}

.track-cover,
.track-visual {
  overflow: hidden;
  border-radius: var(--radius);
  background: #05070a;
  box-shadow: 0 0 0 1px rgba(45, 167, 255, 0.24), 0 24px 70px rgba(0, 0, 0, 0.42);
}

.track-cover {
  aspect-ratio: 1;
}

.track-visual {
  aspect-ratio: 16 / 9;
}

.track-cover img,
.track-visual img,
.mini-release img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
}

.track-copy p,
.release-strip p,
.service-teaser p,
.contacts-hero p,
.section-heading p,
.info-panel li,
.example-card p,
.service-hero p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.theme-service .track-copy p,
.theme-service .release-strip p,
.theme-service .service-teaser p,
.theme-service .section-heading p,
.theme-service .info-panel li,
.theme-service .example-card p,
.theme-service .service-hero p {
  color: var(--warm-muted);
}

.track-copy .eyebrow,
.release-strip .eyebrow,
.service-teaser .eyebrow,
.contacts-hero .eyebrow,
.section-heading .eyebrow,
.info-panel .eyebrow,
.service-hero .eyebrow,
.contacts-panel .eyebrow {
  color: var(--blue-2);
  font-size: 12px;
  line-height: 1.2;
}

.theme-service .track-copy .eyebrow,
.theme-service .release-strip .eyebrow,
.theme-service .service-teaser .eyebrow,
.theme-service .section-heading .eyebrow,
.theme-service .info-panel .eyebrow,
.theme-service .example-card .eyebrow,
.theme-service .service-hero .eyebrow,
.contacts-panel--warm .eyebrow {
  color: var(--rose-dark);
}

.audio-box,
.mini-release audio {
  width: 100%;
  max-width: 100%;
}

.audio-box {
  overflow: hidden;
  margin-top: 22px;
  padding: 12px;
  border: 1px solid rgba(148, 190, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.audio-box audio,
.mini-release audio {
  display: block;
  width: 100%;
  height: 42px;
  accent-color: var(--blue);
}

.release-strip,
.service-teaser,
.cta-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
  padding: clamp(18px, 4vw, 30px);
}

.mini-release {
  display: grid;
  grid-template-columns: 82px minmax(220px, 320px);
  gap: 14px;
  align-items: center;
}

.mini-release__actions {
  display: grid;
  gap: 10px;
}

.mini-release__link {
  min-height: 40px;
  padding: 10px 14px;
  font-size: 13px;
}

.mini-release img {
  aspect-ratio: 1;
  border-radius: var(--radius);
}

.service-teaser {
  display: grid;
  grid-template-columns: 1fr minmax(250px, 340px);
  gap: 22px;
  align-items: center;
  padding: clamp(18px, 4vw, 30px);
  border: 1px solid rgba(232, 71, 127, 0.22);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 255, 255, 0.68), transparent 16rem),
    linear-gradient(135deg, #fff4f6 0%, #ffdce6 48%, #ffe8d7 100%);
  color: var(--warm-ink);
  box-shadow: 0 20px 70px rgba(166, 31, 85, 0.14);
}

.service-teaser .eyebrow {
  color: var(--rose-dark);
}

.service-teaser h2,
.service-teaser p {
  color: var(--warm-ink);
}

.service-teaser p {
  opacity: 0.78;
}

.service-teaser__card {
  width: min(340px, 100%);
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(232, 71, 127, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 18px 42px rgba(166, 31, 85, 0.12);
}

.service-teaser__card strong {
  font-size: 40px;
  line-height: 1;
}

.service-teaser__card span {
  color: var(--warm-muted);
  line-height: 1.35;
}

.service-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(20px, 4vw, 42px);
  align-items: center;
  overflow: hidden;
  padding: clamp(20px, 4vw, 42px);
  border: 1px solid rgba(166, 31, 85, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 24px 80px rgba(166, 31, 85, 0.12);
}

.service-hero__copy {
  display: grid;
  justify-items: start;
}

.service-hero__image {
  overflow: hidden;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 20px 55px rgba(166, 31, 85, 0.14);
}

.service-hero__image img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  min-height: 320px;
  object-fit: cover;
  object-position: center;
}

.price-pill {
  justify-self: start;
  display: inline-flex;
  max-width: 100%;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
  margin-top: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  color: #fff;
  background: var(--rose-dark);
  font-size: 28px;
  line-height: 1;
  font-weight: 950;
}

.price-pill span {
  font-size: 13px;
  font-weight: 850;
  line-height: 1.1;
}

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

.info-panel,
.examples-section,
.cta-band {
  border: 1px solid rgba(166, 31, 85, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 58px rgba(166, 31, 85, 0.1);
}

.info-panel {
  padding: clamp(18px, 3vw, 30px);
}

.clean-list,
.steps-list {
  margin: 18px 0 0;
  padding-left: 20px;
}

.clean-list li,
.steps-list li {
  margin: 10px 0;
}

.examples-section {
  padding: clamp(18px, 4vw, 34px);
}

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

.example-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.examples-catalog {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.example-category {
  border: 1px solid rgba(166, 31, 85, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.7);
  overflow: hidden;
}

.example-category__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 64px;
  padding: 16px 18px;
  cursor: pointer;
  list-style: none;
}

.example-category__summary::-webkit-details-marker {
  display: none;
}

.example-category__summary::after {
  content: "+";
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--rose);
  font-size: 22px;
  font-weight: 850;
  line-height: 1;
}

.example-category[open] .example-category__summary::after {
  content: "−";
}

.example-category__title {
  min-width: 0;
  color: var(--warm-ink);
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 950;
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.example-category__count {
  margin-left: auto;
  color: var(--warm-muted);
  font-size: 13px;
  font-weight: 850;
  white-space: nowrap;
}

.example-category .example-grid {
  margin: 0;
  padding: 0 18px 18px;
}

.example-card {
  display: grid;
  align-content: start;
  min-height: 260px;
  padding: 18px;
  border: 1px solid rgba(166, 31, 85, 0.14);
  border-radius: var(--radius);
  background: #fff;
}

.example-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}

.example-tags span,
.example-card > span {
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--rose-dark);
  background: #ffe3eb;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.example-card audio {
  align-self: end;
  width: 100%;
  max-width: 100%;
  margin-top: 18px;
  accent-color: var(--rose);
}

.example-order-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  padding: 0 14px;
  border-radius: var(--radius);
  color: #fff;
  background: var(--rose);
  font-size: 14px;
  font-weight: 900;
  text-align: center;
  transition: transform 160ms ease, background 160ms ease;
}

.example-order-button:hover {
  background: var(--rose-dark);
  transform: translateY(-2px);
}

.text-link {
  width: fit-content;
  margin-top: 14px;
  color: var(--rose-dark);
  font-weight: 900;
  transition: transform 160ms ease;
}

.cta-band {
  color: var(--warm-ink);
}

.contacts-hero {
  padding: clamp(24px, 5vw, 46px);
}

.contacts-grid {
  align-items: start;
}

.contacts-panel {
  padding: clamp(18px, 4vw, 34px);
}

.contacts-panel--warm {
  border-color: rgba(232, 71, 127, 0.28);
}

.link-list {
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  margin-top: 20px;
}

.link-list a {
  min-height: 52px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  border: 1px solid rgba(148, 190, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  color: #dbe8fb;
  font-weight: 850;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.social-link {
  position: relative;
  isolation: isolate;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 66px;
  overflow: hidden;
  padding: 11px 14px 11px 60px;
}

.social-link::before {
  content: attr(data-icon);
  position: absolute;
  left: 14px;
  top: 50%;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--social, var(--blue));
  box-shadow: 0 10px 22px color-mix(in srgb, var(--social, var(--blue)) 32%, transparent);
  font-size: 11px;
  font-weight: 950;
  line-height: 1;
  transform: translateY(-50%);
}

.social-link::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, color-mix(in srgb, var(--social, var(--blue)) 18%, transparent), transparent 56%);
  opacity: 0.72;
}

.social-link span,
.social-link small {
  max-width: 100%;
}

.social-link span {
  line-height: 1.16;
}

.social-link small {
  margin-top: 4px;
  color: #9fb0c6;
  font-size: 12px;
  font-weight: 750;
  line-height: 1.2;
}

.contacts-panel--warm .social-link small {
  color: #8a6871;
}

.social-link--vk {
  --social: #4c75a3;
}

.social-link--youtube {
  --social: #ff0033;
}

.social-link--bandlink {
  --social: #7f5cff;
}

.social-link--telegram {
  --social: #27a7e7;
}

.social-link--tiktok {
  --social: #111827;
}

.social-link--rutube {
  --social: #101010;
}

.social-link--max {
  --social: #1b8cff;
}

.social-link--avito {
  --social: #00aaff;
}

.social-link--phone {
  --social: #f05b7f;
}

.social-link--mail {
  --social: #a61f55;
}

.contacts-panel--warm .link-list a {
  border-color: rgba(232, 71, 127, 0.18);
}

.link-list a:hover {
  border-color: rgba(45, 167, 255, 0.54);
  background: rgba(45, 167, 255, 0.14);
}

.contacts-panel--warm .link-list a:hover {
  border-color: rgba(232, 71, 127, 0.54);
  background: rgba(232, 71, 127, 0.14);
}

.mobile-nav {
  display: none;
}

@media (max-width: 900px) {
  main,
  .topbar {
    width: min(100% - 24px, 720px);
  }

  .artist-hero,
  .service-hero,
  .feature-track,
  .release-strip,
  .service-teaser,
  .info-grid,
  .contacts-grid,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .artist-hero {
    min-height: 0;
  }

  .artist-hero__media {
    min-height: 310px;
  }

  .artist-hero__content {
    padding: 26px;
  }

  .release-strip,
  .service-teaser,
  .cta-band {
    align-items: stretch;
  }

  .service-teaser__card {
    width: 100%;
  }

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

@media (max-width: 768px) {
  body {
    padding-bottom: calc(80px + env(safe-area-inset-bottom));
  }

  main,
  .topbar {
    width: 100%;
    max-width: 100%;
    padding-left: 12px;
    padding-right: 12px;
  }

  main {
    padding-top: 10px;
    padding-bottom: 28px;
  }

  .topbar {
    position: static;
    padding-top: 12px;
  }

  .topbar__nav {
    display: none;
  }

  .artist-hero,
  .service-hero,
  .feature-track,
  .release-strip,
  .service-teaser,
  .info-grid,
  .example-grid,
  .contacts-grid,
  .cta-band,
  .examples-section,
  .contacts-hero,
  .contacts-panel,
  .info-panel,
  .cta-band {
    margin-top: 14px;
  }

  .artist-hero__media {
    min-height: 0;
    height: 230px;
    max-height: 38vh;
    background: linear-gradient(180deg, rgba(12, 28, 46, 0.96), rgba(15, 34, 55, 0.92));
  }

  .artist-hero__media img {
    object-fit: cover;
    object-position: center 32%;
  }

  .artist-hero__content {
    order: 0;
  }

  .artist-hero__content,
  .service-hero,
  .feature-track,
  .release-strip,
  .service-teaser,
  .examples-section,
  .contacts-hero,
  .contacts-panel,
  .info-panel,
  .cta-band {
    padding: 18px;
  }

  h1 {
    font-size: clamp(42px, 14vw, 58px);
  }

  .hero-intro {
    margin-top: 16px;
    font-size: 15px;
  }

  .hero-intro--second {
    margin-top: 3px;
  }

  .hero-line {
    margin-top: 16px;
    font-size: clamp(21px, 6vw, 24px);
    line-height: 1.14;
  }

  .hero-tagline {
    font-size: 16px;
  }

  .hero-service {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.42;
  }

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

  .button {
    min-height: 46px;
  }

  .theme-service h1,
  .theme-contacts h1 {
    font-size: clamp(30px, 8.5vw, 42px);
    line-height: 1.02;
  }

  h2 {
    font-size: clamp(26px, 8.5vw, 38px);
  }

  .hero-actions,
  .mini-release {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .service-hero__copy {
    justify-items: start;
  }

  .service-hero__copy .hero-actions {
    width: 100%;
  }

  .button {
    width: 100%;
    min-width: 0;
    white-space: normal;
  }

  .service-hero__image img {
    min-height: 0;
    height: auto;
    max-height: 260px;
    object-fit: contain;
  }

  .mobile-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    height: calc(64px + env(safe-area-inset-bottom));
    padding: 7px 8px calc(7px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(148, 190, 255, 0.22);
    border-radius: 0;
    background: rgba(10, 23, 38, 0.96);
    box-shadow: 0 -12px 32px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(16px);
  }

  .mobile-nav--service {
    border-color: rgba(166, 31, 85, 0.22);
    background: rgba(255, 249, 250, 0.92);
  }

  .mobile-nav a {
    min-width: 0;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    color: #d8e7f8;
    text-align: center;
    font-size: 13px;
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    overflow-wrap: normal;
  }

  .mobile-nav--service a {
    color: var(--warm-muted);
  }

  .mobile-nav a[aria-current="page"] {
    color: #06111c;
    background: var(--blue-2);
  }

  .mobile-nav--service a[aria-current="page"] {
    color: #fff;
    background: var(--rose);
  }
}

@media (max-width: 380px) {
  main,
  .topbar {
    width: 100%;
    max-width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }

  .artist-hero__content,
  .service-hero,
  .feature-track,
  .release-strip,
  .service-teaser,
  .examples-section,
  .contacts-hero,
  .contacts-panel,
  .info-panel,
  .cta-band {
    padding: 14px;
  }

  h1 {
    font-size: clamp(40px, 14.5vw, 56px);
  }

  .theme-service h1,
  .theme-contacts h1 {
    font-size: clamp(28px, 8.6vw, 34px);
  }

  h2 {
    font-size: clamp(25px, 9vw, 34px);
  }

  .mobile-nav {
    gap: 4px;
    padding-left: 6px;
    padding-right: 6px;
  }

  .mobile-nav a {
    padding: 0 4px;
    font-size: 12px;
  }
}
