:root {
  --page: #071629;
  --deep: #07172f;
  --text: #f7fbff;
  --muted: #c9d6ea;
  --soft: #a9c7ef;
  --accent: #88c5ff;
  --cyan: #10d7f2;
  --pearl: #eef8ff;
  --line: rgba(190, 220, 255, 0.22);
  --line-soft: rgba(190, 220, 255, 0.13);
  --button: #7fb5fb;
}
* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 104px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  background:
    linear-gradient(180deg, rgba(7, 24, 50, 0) 0 640px, rgba(7, 22, 41, 0.98) 820px),
    radial-gradient(circle at 72% 18%, rgba(150, 175, 255, 0.1), transparent 24%),
    linear-gradient(180deg, #0b203e 0%, #08192f 48%, #071629 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  opacity: 0.42;
  background-image:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.62) 0 1px, transparent 1.8px),
    radial-gradient(circle at 38% 10%, rgba(255, 255, 255, 0.46) 0 1px, transparent 1.8px),
    radial-gradient(circle at 74% 8%, rgba(255, 255, 255, 0.58) 0 1px, transparent 1.8px),
    radial-gradient(circle at 88% 28%, rgba(255, 255, 255, 0.48) 0 1px, transparent 1.8px);
  background-size: 420px 280px;
}

a {
  color: inherit;
}

img,
video,
iframe {
  max-width: 100%;
}

img,
video {
  height: auto;
}

button,
a {
  touch-action: manipulation;
}

:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

body.is-menu-locked {
  overflow: hidden;
}

body.is-menu-locked .site-shell {
  animation: none !important;
  filter: none !important;
  transform: none !important;
}

body.is-intro-locked {
  overflow: hidden;
}

.site-intro {
  display: none;
}

html.site-intro-pending .site-intro {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, rgba(80, 185, 255, 0.2), transparent 34%),
    linear-gradient(180deg, #031022 0%, #061832 58%, #030912 100%);
  opacity: 1;
  transition:
    opacity 620ms ease,
    transform 620ms ease,
    filter 620ms ease;
}

html.site-intro-pending .site-intro::before {
  content: "";
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.18) 0 1px, transparent 1.8px),
    radial-gradient(circle at 72% 28%, rgba(190, 230, 255, 0.16) 0 1px, transparent 1.8px),
    linear-gradient(120deg, transparent 38%, rgba(120, 210, 255, 0.11), transparent 62%);
  background-size: 260px 180px, 330px 240px, 100% 100%;
  opacity: 0.58;
  animation: introAtmosphere 6s ease both;
}

.site-intro-media {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: url("./assets/pulse-veter-logo-intro-poster.jpg") center center / cover no-repeat;
  transform: scale(1.018);
  animation: introFullBleedIn 920ms cubic-bezier(0.2, 0.8, 0.22, 1) both;
}

.site-intro-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 46%, rgba(0, 0, 0, 0), rgba(2, 8, 18, 0.26) 58%, rgba(2, 8, 18, 0.58) 100%),
    linear-gradient(180deg, rgba(2, 8, 18, 0.22), transparent 28%, rgba(2, 8, 18, 0.26));
  pointer-events: none;
}

.site-intro-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  background: #020712;
}

@media (max-width: 760px) {
  .site-intro-media {
    background:
      radial-gradient(circle at 50% 45%, rgba(40, 170, 255, 0.2), transparent 42%),
      linear-gradient(180deg, #020712, #061832 58%, #020712);
  }

  .site-intro-video {
    object-fit: contain;
  }
}

.site-intro-skip {
  position: absolute;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 2;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid rgba(220, 238, 255, 0.34);
  border-radius: 4px;
  color: rgba(248, 252, 255, 0.88);
  background: rgba(3, 13, 28, 0.42);
  font: 600 13px/1 Manrope, Arial, sans-serif;
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.site-intro.is-finishing {
  opacity: 0;
  transform: scale(1.018);
  filter: blur(8px);
  pointer-events: none;
}

html.site-intro-pending .topbar,
html.site-intro-pending main,
html.site-intro-pending footer {
  opacity: 0;
}

.site-shell {
  position: relative;
  isolation: isolate;
  width: 100%;
  min-height: 100vh;
  margin: 0 auto;
  animation: pageEnter 160ms ease both;
  transition: opacity 110ms ease;
}

html.is-page-leaving .site-shell {
  opacity: 0.78;
}

html.is-page-loading main {
  opacity: 0.001;
  transform: translateY(4px);
  transition:
    opacity 90ms ease,
    transform 90ms ease;
  will-change: opacity, transform;
}

@keyframes pageEnter {
  from {
    opacity: 0.001;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.site-shell::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  z-index: -2;
  width: 100vw;
  height: 724px;
  transform: translateX(-50%);
  background:
    linear-gradient(180deg, rgba(6, 18, 41, 0.2) 0%, rgba(6, 18, 41, 0.02) 45%, rgba(6, 17, 35, 0.9) 100%),
    linear-gradient(90deg, rgba(5, 16, 34, 0.56) 0%, rgba(5, 16, 34, 0.06) 38%, rgba(5, 16, 34, 0.06) 72%, rgba(5, 16, 34, 0.34) 100%),
    image-set(
        url("./assets/hero-sredi-mirov.avif") type("image/avif"),
        url("./assets/hero-sredi-mirov.webp") type("image/webp"),
        url("./assets/hero-sredi-mirov.jpg") type("image/jpeg")
      )
      center 44% / cover no-repeat;
}

.site-shell::after {
  content: "";
  position: absolute;
  top: 646px;
  left: 50%;
  z-index: -1;
  width: 100vw;
  height: 260px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(7, 22, 41, 0) 0%, #071629 68%);
}

.ambient-bg {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: -1;
  width: 100vw;
  height: 724px;
  overflow: hidden;
  transform: translateX(-50%);
  pointer-events: none;
}

.ambient-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  background:
    linear-gradient(90deg, rgba(3, 12, 28, 0.5), rgba(3, 12, 28, 0.08) 44%, rgba(3, 12, 28, 0.36)),
    radial-gradient(circle at 30% 16%, rgba(122, 190, 255, 0.18), transparent 36%);
  pointer-events: none;
}

.ambient-bg::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 5;
  height: 180px;
  background: linear-gradient(180deg, rgba(7, 22, 41, 0), rgba(7, 22, 41, 0.78) 54%, #071629 100%);
  pointer-events: none;
}

.ambient-bg span {
  position: absolute;
  display: block;
  pointer-events: none;
}

.ambient-video {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 44%;
  opacity: 1;
  filter: saturate(1.08) contrast(1.04) brightness(0.9);
  transform: translateZ(0) scale(1.015);
}

.ambient-stars {
  z-index: 2;
  inset: 0;
  opacity: 0.12;
  background-image:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.88) 0 1px, transparent 1.8px),
    radial-gradient(circle at 48% 12%, rgba(200, 235, 255, 0.82) 0 1px, transparent 1.8px),
    radial-gradient(circle at 76% 20%, rgba(255, 255, 255, 0.78) 0 1px, transparent 1.8px),
    radial-gradient(circle at 88% 34%, rgba(210, 240, 255, 0.68) 0 1px, transparent 1.8px);
  background-size: 360px 230px;
  animation: star-drift 22s linear infinite, star-pulse 5.8s ease-in-out infinite;
}

.ambient-horizon {
  z-index: 3;
  left: 0;
  right: 0;
  top: 250px;
  height: 190px;
  opacity: 0.16;
  background:
    linear-gradient(90deg, transparent 0%, rgba(120, 190, 255, 0.08) 24%, rgba(255, 214, 182, 0.28) 50%, rgba(160, 205, 255, 0.1) 74%, transparent 100%),
    linear-gradient(180deg, transparent 0%, rgba(190, 225, 255, 0.1) 54%, transparent 100%);
  filter: blur(18px);
  animation: horizon-glow 10s ease-in-out infinite alternate;
}

.ambient-ice {
  z-index: 3;
  left: -8vw;
  right: -8vw;
  top: 404px;
  height: 210px;
  opacity: 0.08;
  background:
    linear-gradient(105deg, transparent 0 22%, rgba(190, 232, 255, 0.24) 25%, transparent 32% 100%),
    linear-gradient(78deg, transparent 0 42%, rgba(235, 250, 255, 0.2) 45%, transparent 52% 100%),
    repeating-linear-gradient(172deg, transparent 0 64px, rgba(200, 232, 255, 0.08) 66px, transparent 72px);
  transform: skewY(-2deg);
  animation: ice-slide 16s ease-in-out infinite alternate;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 80;
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr) 108px;
  align-items: center;
  height: 62px;
  padding: 0 34px;
  border-bottom: 1px solid transparent;
  background: linear-gradient(180deg, rgba(5, 14, 30, 0.62), rgba(5, 14, 30, 0.12));
  backdrop-filter: blur(14px);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.topbar.is-scrolled,
.topbar.is-menu-open {
  border-bottom-color: rgba(190, 220, 255, 0.12);
  background: rgba(5, 14, 30, 0.82);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.2);
}

.brand,
.nav a,
.topbar-actions a,
.section-link,
.footer-note a {
  text-decoration: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.brand-logo {
  display: block;
  width: 58px;
  height: auto;
  filter:
    drop-shadow(0 0 5px rgba(20, 220, 255, 0.5))
    drop-shadow(0 0 18px rgba(80, 195, 255, 0.28));
}

.brand-text {
  color: var(--pearl);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 0.96;
  text-shadow: 0 0 12px rgba(100, 215, 255, 0.22);
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(10px, 1.2vw, 17px);
  min-width: 0;
}

.nav a {
  color: rgba(248, 251, 255, 0.96);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  white-space: nowrap;
  padding: 6px 0;
  text-shadow: 0 2px 14px rgba(3, 10, 25, 0.38);
  transition:
    color 180ms ease,
    text-shadow 180ms ease;
}

.nav a:hover,
.nav a[aria-current="page"],
.topbar-actions a:hover,
.section-link:hover {
  color: #c7f4ff;
  text-shadow: 0 0 18px rgba(55, 220, 255, 0.34);
}

.nav a[aria-current="page"] {
  position: relative;
}

.nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 28px;
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(170, 235, 255, 0.82), transparent);
}

.topbar-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.topbar-actions a {
  color: rgba(248, 251, 255, 0.95);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.topbar-actions .icon-link {
  width: 20px;
  height: 20px;
  min-width: 20px;
  padding: 0;
}

.topbar-actions .icon-link img {
  display: block;
  width: 18px;
  height: 18px;
  filter:
    drop-shadow(0 2px 8px rgba(4, 12, 28, 0.36))
    drop-shadow(0 0 8px rgba(130, 220, 255, 0.16));
  transition:
    filter 180ms ease,
    opacity 180ms ease,
    transform 180ms ease;
}

.topbar-actions .icon-link:hover img {
  opacity: 1;
  transform: translateY(-1px);
  filter:
    drop-shadow(0 2px 8px rgba(4, 12, 28, 0.36))
    drop-shadow(0 0 14px rgba(80, 220, 255, 0.48));
}

.nav-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 82px;
  min-height: 36px;
  padding: 0 17px;
  border: 1px solid rgba(210, 236, 255, 0.44);
  border-radius: 4px;
  background: rgba(7, 23, 48, 0.28);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
  font-size: 12px !important;
  font-weight: 600 !important;
}

.nav-button:hover {
  border-color: rgba(178, 237, 255, 0.72);
  background: rgba(21, 58, 92, 0.36);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 318px;
  padding: 36px 0 0 100px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.hero-brand-lockup {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.hero-brand-mark {
  width: 104px;
  height: auto;
  filter:
    drop-shadow(0 0 8px rgba(20, 220, 255, 0.58))
    drop-shadow(0 0 24px rgba(80, 195, 255, 0.32));
}

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

h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: 82px;
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: 0;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.18);
}

h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0;
}

p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.hero-subtitle {
  margin-top: 21px;
  color: rgba(248, 251, 255, 0.94);
  font-size: 18px;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  gap: 18px;
  margin-top: 25px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 154px;
  min-height: 42px;
  padding: 0 24px;
  border: 1px solid rgba(206, 229, 255, 0.38);
  border-radius: 4px;
  color: #f7fbff;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: none;
}

.button::before {
  content: "";
  width: 0;
  height: 0;
  margin-right: 12px;
  border-left: 9px solid currentColor;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

.button-primary {
  border-color: rgba(150, 207, 255, 0.66);
  background: linear-gradient(180deg, rgba(151, 202, 255, 0.98), rgba(98, 155, 234, 0.98));
  box-shadow: 0 15px 32px rgba(85, 150, 240, 0.24);
}

.button-secondary {
  background: rgba(8, 24, 52, 0.18);
}

.button.small {
  min-width: 164px;
  min-height: 42px;
  padding: 0 18px;
}

.album-copy .button::before {
  content: none;
  margin: 0;
}

.home-studio-card .button::before {
  content: none;
  margin: 0;
  border: 0;
}

.hero-art,
.hero-starfield,
.hero-milkyway,
.hero-horizon,
.hero-ice,
.hero-figure,
.hero-halo {
  display: none;
}

.section {
  padding: 18px 100px 0;
}

.section.content-grid {
  margin-left: 100px;
  padding: 18px 0 0;
}

.content-grid {
  display: grid;
  grid-template-columns: 564px 408px minmax(300px, 1fr);
  width: min(1620px, calc(100vw - 200px));
  gap: 0;
}

.album-panel,
.track-panel,
.video-panel {
  min-height: 268px;
  padding-top: 0;
}

.album-panel {
  padding-right: 28px;
}

.track-panel {
  padding: 0 26px;
  border-left: 1px solid var(--line-soft);
}

.video-panel {
  justify-self: end;
  width: min(300px, 100%);
  margin-top: -80px;
  padding: 0 0 0 22px;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.panel-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  min-height: 30px;
  margin-bottom: 14px;
}

.eyebrow {
  color: rgba(246, 250, 255, 0.96);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0;
  text-transform: none;
}

.section-link {
  color: #9dd4ff;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
}

.album-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 28px;
}

.album-layout img,
.album-cover-img,
.album-cover {
  display: block;
  width: 250px;
  height: 270px;
  border: 1px solid rgba(210, 230, 255, 0.24);
  border-radius: 4px;
  object-fit: cover;
}

.album-cover {
  position: relative;
  display: grid;
  align-content: end;
  justify-items: center;
  overflow: hidden;
  padding: 0 18px 30px;
  background:
    linear-gradient(180deg, rgba(6, 15, 32, 0.06) 0%, rgba(6, 15, 32, 0.08) 48%, rgba(5, 13, 28, 0.62) 100%),
    image-set(
        url("./assets/hero-sredi-mirov.avif") type("image/avif"),
        url("./assets/hero-sredi-mirov.webp") type("image/webp"),
        url("./assets/hero-sredi-mirov.jpg") type("image/jpeg")
      )
      center / cover no-repeat;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 16px 42px rgba(0, 0, 0, 0.16);
}

.album-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 44%, rgba(190, 235, 255, 0.14), transparent 38%);
}

.album-cover-logo {
  position: absolute;
  top: 78px;
  left: 50%;
  z-index: 1;
  width: 168px !important;
  height: auto !important;
  transform: translateX(-50%);
  border: 0 !important;
  filter:
    brightness(1.75)
    saturate(0.25)
    drop-shadow(0 0 10px rgba(210, 242, 255, 0.74))
    drop-shadow(0 0 28px rgba(160, 215, 255, 0.4));
  object-fit: contain !important;
}

.album-cover span,
.album-cover small {
  position: relative;
  z-index: 1;
  color: #f7fbff;
}

.album-cover span {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  line-height: 1;
}

.album-cover small {
  margin-top: 7px;
  color: rgba(235, 246, 255, 0.8);
  font-family: "Manrope", sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0;
}

.album-copy {
  padding-top: 12px;
}

.home-album-layout .album-copy {
  padding-top: 0;
  transform: translateY(-8px);
}

.album-copy p {
  max-width: 230px;
  margin-top: 11px;
  color: rgba(215, 226, 244, 0.9);
}

.album-copy .button {
  margin-top: 20px;
}

.home-album-layout .album-copy .button {
  margin-top: 14px;
}

.album-copy .section-link {
  display: block;
  margin-top: 18px;
}

.album-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 16px;
}

.album-chip-row a,
.album-chip-row span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(190, 220, 255, 0.16);
  border-radius: 4px;
  color: rgba(244, 250, 255, 0.92);
  background: rgba(255, 255, 255, 0.04);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.album-chip-row a:hover {
  border-color: rgba(168, 218, 255, 0.42);
  color: #ffffff;
  background: rgba(129, 189, 255, 0.16);
}

.track-list {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  border: 1px solid rgba(200, 225, 255, 0.2);
  border-bottom: 0;
}

.track-list li {
  display: grid;
  grid-template-columns: 32px 1fr 54px 30px;
  align-items: center;
  min-height: 50px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(200, 225, 255, 0.2);
  background: rgba(6, 21, 46, 0.32);
}

.track-list li.audio-track {
  display: block;
  grid-template-columns: none;
  min-height: 52px;
  padding: 0;
  overflow: hidden;
  background: rgba(7, 24, 52, 0.34);
}

.track-play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 27px;
  height: 27px;
  border: 1px solid rgba(235, 245, 255, 0.74);
  border-radius: 50%;
  color: #f7fbff;
  background: transparent;
  font-size: 10px;
}

.track-list span {
  color: #f7fbff;
  font-size: 14px;
}

.track-list span:nth-child(3) {
  color: rgba(224, 234, 248, 0.86);
  text-align: right;
}

.track-more {
  color: rgba(245, 249, 255, 0.9) !important;
  letter-spacing: 0;
  text-align: right;
}

.video-preview {
  position: relative;
  height: 153px;
  margin-top: 14px;
  overflow: hidden;
  border: 1px solid rgba(210, 230, 255, 0.24);
  border-radius: 4px;
  background:
    linear-gradient(180deg, rgba(6, 15, 32, 0.02), rgba(6, 15, 32, 0.28)),
    url("./assets/video-baikal.jpg") center / cover no-repeat;
}

.video-preview-home {
  background:
    linear-gradient(180deg, rgba(6, 15, 32, 0.08), rgba(6, 15, 32, 0.38)),
    url("./assets/album-siyanie-cover.webp") center / cover no-repeat;
}

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

.home-video-card {
  display: grid;
  gap: 8px;
  max-width: 100%;
  min-width: 0;
}

.home-video-card video {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(210, 230, 255, 0.24);
  border-radius: 4px;
  background: rgba(3, 10, 24, 0.72);
  object-fit: contain;
}

.home-video-card strong {
  overflow: hidden;
  color: #f7fbff;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-video-feature {
  display: flex;
  justify-content: flex-end;
  max-width: 100%;
  min-width: 0;
  margin-top: 6px;
}

.home-video-feature video {
  display: block;
  width: min(190px, 100%);
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  max-height: 336px;
  aspect-ratio: 9 / 16;
  border: 1px solid rgba(210, 230, 255, 0.24);
  border-radius: 4px;
  background: rgba(3, 10, 24, 0.72);
  object-fit: contain;
}

.video-quality {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
  margin-top: 7px;
  color: rgba(215, 226, 244, 0.78);
  font-size: 12px;
}

.video-quality select {
  min-height: 28px;
  padding: 0 24px 0 8px;
  border: 1px solid rgba(190, 220, 255, 0.18);
  border-radius: 4px;
  color: #f7fbff;
  background: rgba(5, 14, 30, 0.88);
  font: inherit;
}

.home-video-feature + .video-quality {
  display: none;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 58px;
  height: 58px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(245, 250, 255, 0.9);
  border-radius: 50%;
  background: rgba(8, 21, 44, 0.26);
}

.play-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 52%;
  transform: translate(-38%, -50%);
  border-left: 14px solid #fff;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
}

.video-panel h3 {
  margin: 10px 0 4px;
  font-size: 28px;
  line-height: 1;
}

.video-label {
  max-width: 290px;
  margin: 0 0 8px;
  color: rgba(222, 232, 248, 0.84);
  font-size: 13px;
  line-height: 1.4;
}

.banner {
  position: relative;
  width: min(1336px, calc(100vw - 200px));
  height: 111px;
  margin: 0 0 0 100px;
  overflow: hidden;
  border: 1px solid rgba(210, 230, 255, 0.25);
  border-radius: 4px;
  background:
    linear-gradient(90deg, rgba(9, 25, 52, 0.38), rgba(119, 151, 205, 0.22), rgba(9, 25, 52, 0.34)),
    url("./assets/banner-baikal.jpg") center / cover no-repeat;
}

.banner p {
  position: relative;
  z-index: 2;
  padding-top: 20px;
  color: #f7fbff;
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
  line-height: 1;
  text-align: center;
}

.banner-wave {
  position: relative;
  z-index: 2;
  width: 232px;
  height: 18px;
  margin: 14px auto 0;
  background: linear-gradient(90deg, transparent 0%, rgba(174, 222, 255, 0.35) 18%, rgba(238, 248, 255, 0.96) 50%, rgba(174, 222, 255, 0.35) 82%, transparent 100%);
  clip-path: polygon(0 57%, 11% 57%, 15% 34%, 19% 76%, 24% 44%, 29% 70%, 34% 30%, 39% 82%, 44% 38%, 49% 62%, 54% 22%, 59% 78%, 64% 42%, 69% 64%, 74% 34%, 79% 60%, 84% 44%, 89% 66%, 100% 66%, 100% 82%, 89% 82%, 84% 60%, 79% 76%, 74% 50%, 69% 80%, 64% 56%, 59% 92%, 54% 34%, 49% 78%, 44% 52%, 39% 92%, 34% 42%, 29% 84%, 24% 56%, 19% 90%, 15% 46%, 11% 74%, 0 74%);
}

.home-feature-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  width: min(1336px, calc(100vw - 200px));
  gap: 18px;
  margin: 22px 0 0 100px;
}

.home-story-card,
.home-studio-card,
.release-strip {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(190, 220, 255, 0.14);
  border-radius: 4px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 18px 46px rgba(0, 0, 0, 0.12);
}

.home-story-card {
  min-height: 232px;
  padding: 30px 34px;
  background:
    linear-gradient(90deg, rgba(5, 15, 32, 0.72), rgba(6, 18, 38, 0.42)),
    url("./assets/banner-baikal.jpg") center / cover no-repeat;
}

.home-story-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 12, 28, 0.82), rgba(4, 12, 28, 0.2) 70%);
}

.home-story-card > *,
.home-studio-card > *,
.release-strip > * {
  position: relative;
  z-index: 1;
}

.home-story-card h2,
.home-studio-card h2,
.release-strip h2 {
  max-width: 680px;
  margin-top: 8px;
}

.home-story-card p:not(.eyebrow),
.home-studio-card p:not(.eyebrow) {
  max-width: 640px;
  margin-top: 14px;
}

.home-story-card .section-link,
.home-studio-card .section-link {
  display: inline-flex;
  margin-top: 18px;
}

.home-studio-card {
  min-height: 232px;
  padding: 30px 30px;
  background:
    radial-gradient(circle at 84% 18%, rgba(120, 220, 255, 0.16), transparent 28%),
    linear-gradient(135deg, rgba(13, 37, 74, 0.62), rgba(5, 15, 32, 0.74));
}

.home-studio-card::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -42px;
  width: 230px;
  height: 132px;
  opacity: 0.2;
  background: url("./assets/logo-mark-source.png") center / contain no-repeat;
  filter: brightness(1.6) saturate(0.4);
}

.studio-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 20px;
}

.release-strip {
  display: grid;
  grid-template-columns: 360px 1fr;
  align-items: center;
  width: min(1336px, calc(100vw - 200px));
  gap: 24px;
  margin: 18px 0 0 100px;
  padding: 24px 28px;
  background:
    linear-gradient(90deg, rgba(7, 23, 48, 0.72), rgba(6, 18, 38, 0.42)),
    rgba(6, 17, 35, 0.58);
}

.release-strip h2 {
  font-size: 30px;
}

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

.release-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid rgba(205, 230, 255, 0.18);
  border-radius: 4px;
  color: #f7fbff;
  background: rgba(255, 255, 255, 0.035);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.release-links a:hover {
  border-color: rgba(120, 225, 255, 0.48);
  color: #d7f8ff;
  background: rgba(23, 68, 102, 0.26);
}

.footer-grid {
  display: grid;
  grid-template-columns: 330px 350px 240px minmax(330px, 1fr);
  width: min(1336px, calc(100vw - 200px));
  gap: 22px;
  margin-left: 100px;
  padding: 28px 0 22px;
}

.footer-brand-card,
.footer-subscribe-card,
.footer-listen-card,
.footer-social-card {
  min-height: 70px;
}

.footer-brand-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  column-gap: 18px;
  align-items: start;
}

.footer-logo {
  width: 104px;
}

.footer-brand-name {
  grid-column: 1;
  color: var(--pearl);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 0.98;
}

.footer-brand-card p:not(.footer-brand-name) {
  grid-column: 2;
  color: rgba(213, 225, 242, 0.88);
  font-size: 14px;
  line-height: 1.55;
}

.footer-subscribe-card,
.footer-listen-card,
.footer-social-card {
  padding-left: 24px;
  border-left: 1px solid var(--line-soft);
}

.footer-title {
  color: rgba(246, 250, 255, 0.92);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0;
  text-transform: none;
}

.subscribe-form {
  display: grid;
  grid-template-columns: 1fr 46px;
  width: 335px;
  margin-top: 12px;
  border: 1px solid rgba(205, 228, 255, 0.24);
  border-radius: 4px;
  overflow: hidden;
}

.subscribe-form input {
  width: 100%;
  min-height: 36px;
  padding: 0 13px;
  border: 0;
  color: #f7fbff;
  background: rgba(6, 18, 38, 0.5);
  font: inherit;
}

.subscribe-form button {
  min-height: 36px;
  border: 0;
  color: #f7fbff;
  background: linear-gradient(180deg, #8bc5ff, #69a2ec);
  font-size: 21px;
  cursor: pointer;
}

.footer-note {
  margin-top: 8px;
  color: rgba(196, 212, 233, 0.8);
  font-size: 12px;
}

.footer-note-strong {
  max-width: 310px;
  color: rgba(222, 234, 250, 0.9);
  font-size: 14px;
  line-height: 1.45;
}

.contact-list,
.studio-contact-list {
  display: grid;
  gap: 8px;
  margin-top: 14px;
  color: rgba(232, 241, 255, 0.9);
  font-size: 13px;
  line-height: 1.35;
}

.contact-list p,
.studio-contact-list p {
  margin: 0;
}

.contact-list span,
.studio-contact-list span {
  display: block;
  margin-bottom: 2px;
  color: rgba(163, 207, 241, 0.72);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0;
  text-transform: none;
}

.contact-list a,
.studio-contact-list a,
.footer-note a {
  color: #d8f7ff;
}

.social-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 17px;
}

.social-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 31px;
  padding: 0 10px;
  border: 1px solid rgba(205, 230, 255, 0.18);
  border-radius: 4px;
  color: rgba(245, 250, 255, 0.9);
  background: rgba(255, 255, 255, 0.035);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.15;
  text-decoration: none;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.social-row a:hover {
  border-color: rgba(120, 225, 255, 0.48);
  color: #d7f8ff;
  background: rgba(23, 68, 102, 0.26);
}

.platform-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 18px;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr 420px 1fr;
  align-items: center;
  width: min(1336px, calc(100vw - 200px));
  margin-left: 100px;
  padding: 14px 0 25px;
  border-top: 1px solid rgba(190, 220, 255, 0.16);
}

.footer-bottom p {
  color: rgba(205, 218, 237, 0.78);
  font-size: 13px;
}

.footer-bottom p:last-child {
  text-align: right;
}

.footer-bottom-wave {
  width: 420px;
  height: 17px;
  background: linear-gradient(90deg, transparent 0%, rgba(120, 202, 255, 0.2) 18%, rgba(170, 226, 255, 0.92) 50%, rgba(120, 202, 255, 0.2) 82%, transparent 100%);
  clip-path: polygon(0 55%, 10% 55%, 14% 40%, 18% 76%, 23% 46%, 28% 66%, 33% 30%, 38% 80%, 43% 44%, 48% 60%, 53% 22%, 58% 78%, 63% 42%, 68% 64%, 73% 34%, 78% 60%, 83% 44%, 88% 66%, 100% 66%, 100% 82%, 88% 82%, 83% 60%, 78% 76%, 73% 50%, 68% 80%, 63% 56%, 58% 92%, 53% 34%, 48% 78%, 43% 52%, 38% 92%, 33% 42%, 28% 84%, 23% 56%, 18% 90%, 14% 52%, 10% 74%, 0 74%);
}

@media (min-width: 1640px) {
  .site-shell::before,
  .site-shell::after,
  .ambient-bg {
    width: min(1336px, calc(100vw - 200px));
  }

  .site-shell::before {
    background:
      linear-gradient(180deg, rgba(6, 18, 41, 0.18) 0%, rgba(6, 18, 41, 0.02) 44%, rgba(6, 17, 35, 0.95) 100%),
      linear-gradient(90deg, rgba(5, 16, 34, 0.48) 0%, rgba(5, 16, 34, 0.04) 38%, rgba(5, 16, 34, 0.04) 72%, rgba(5, 16, 34, 0.3) 100%),
      image-set(
          url("./assets/hero-sredi-mirov.avif") type("image/avif"),
          url("./assets/hero-sredi-mirov.webp") type("image/webp"),
          url("./assets/hero-sredi-mirov.jpg") type("image/jpeg")
        )
        center 44% / cover no-repeat;
  }

  .topbar {
    width: min(1336px, calc(100vw - 200px));
    margin-left: auto;
    margin-right: auto;
    padding-left: 48px;
    padding-right: 48px;
  }

  .hero {
    width: min(1336px, calc(100vw - 200px));
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
  }

  .section.content-grid {
    width: min(1336px, calc(100vw - 200px));
    margin-left: auto;
    margin-right: auto;
  }

  .content-grid {
    width: 100%;
    grid-template-columns: minmax(0, 520px) minmax(0, 408px) minmax(260px, 1fr);
  }

  .banner,
  .home-feature-band,
  .release-strip,
  .footer-grid,
  .footer-bottom {
    margin-left: max(100px, calc((100vw - 1336px) / 2));
  }
}

.page-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 332px;
  gap: 28px;
  align-items: center;
  width: min(1240px, calc(100vw - 200px));
  margin: 28px auto 26px;
  padding: 32px 0 0;
}

.page-hero > * {
  position: relative;
  z-index: 1;
}

.studio-page-hero {
  overflow: hidden;
  border-radius: 4px;
}

.section-hero-video,
.studio-section-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.28;
  filter: saturate(0.95) brightness(0.72);
  pointer-events: none;
}

.page-hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  transform: scale(1.08);
  filter: saturate(1.04) brightness(0.84) contrast(1.06);
}

.page-hero-card,
.catalog-card {
  border: 1px solid rgba(190, 220, 255, 0.14);
  border-radius: 4px;
  background:
    linear-gradient(135deg, rgba(14, 36, 72, 0.44), rgba(4, 14, 31, 0.34) 54%, rgba(4, 12, 28, 0.52)),
    rgba(7, 22, 46, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 20px 52px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(8px);
}

.page-hero-card {
  position: relative;
  min-height: 248px;
  overflow: hidden;
  padding: 34px 32px 32px;
  background:
    linear-gradient(135deg, rgba(15, 39, 78, 0.72), rgba(6, 16, 34, 0.74) 55%, rgba(5, 13, 29, 0.82)),
    rgba(7, 22, 46, 0.72);
}

.page-hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(145, 220, 255, 0.16), transparent 48%),
    radial-gradient(circle at 82% 18%, rgba(245, 220, 195, 0.16), transparent 28%);
  opacity: 0.5;
}

.page-hero-card > * {
  position: relative;
  z-index: 1;
}

.page-hero-card h1 {
  max-width: 780px;
  font-size: 62px;
  line-height: 0.94;
}

.page-hero-art {
  position: relative;
  min-height: 262px;
  overflow: hidden;
  border: 1px solid rgba(190, 220, 255, 0.16);
  border-radius: 4px;
  background:
    linear-gradient(180deg, rgba(8, 20, 42, 0.02), rgba(8, 20, 42, 0.2)),
    image-set(
        url("./assets/hero-sredi-mirov.avif") type("image/avif"),
        url("./assets/hero-sredi-mirov.webp") type("image/webp"),
        url("./assets/hero-sredi-mirov.jpg") type("image/jpeg")
      )
      center / cover no-repeat;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.045),
    0 22px 48px rgba(0, 0, 0, 0.16);
}

.page-hero-art::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, transparent 44%, rgba(4, 12, 28, 0.34)),
    radial-gradient(circle at 68% 42%, rgba(255, 235, 205, 0.18), transparent 30%);
}

.page-hero-art.album-art {
  background:
    radial-gradient(circle at 64% 12%, rgba(137, 212, 255, 0.18), transparent 30%),
    linear-gradient(145deg, rgba(6, 19, 40, 0.94), rgba(3, 11, 26, 0.78));
}

.album-hero-wall {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: center;
  gap: 12px;
  width: min(100%, 372px);
  height: 100%;
  min-height: 262px;
  margin: 0 auto;
  padding: 18px 16px;
}

.album-hero-wall img {
  width: 100%;
  aspect-ratio: 1;
  height: auto;
  border: 1px solid rgba(220, 236, 255, 0.24);
  border-radius: 4px;
  background: rgba(2, 10, 24, 0.36);
  object-fit: contain;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.26);
  filter: saturate(0.98) contrast(1.04);
}

.album-hero-wall img:nth-child(1) {
  transform: translateY(8px);
}

.album-hero-wall img:nth-child(2) {
  transform: translateY(-4px);
}

.album-hero-wall img:nth-child(3) {
  transform: translateY(4px);
}

.album-hero-wall img:nth-child(4) {
  transform: translateY(-8px);
}

.page-hero-art.about-art {
  background:
    linear-gradient(180deg, rgba(5, 15, 32, 0.16), rgba(5, 15, 32, 0.28)),
    #071428;
}

.page-hero-art.about-art .page-hero-video {
  object-position: center;
  transform: scale(1.03);
}

.page-hero-art.studio-art {
  background:
    linear-gradient(180deg, rgba(5, 15, 32, 0.16), rgba(5, 15, 32, 0.28)),
    #071428;
}

.page-hero-art.studio-art .page-hero-video {
  object-position: center;
}

.page-hero-art.video-art {
  background:
    linear-gradient(180deg, rgba(5, 15, 32, 0.12), rgba(5, 15, 32, 0.26)),
    #071428;
}

.page-hero-art.video-art .page-hero-video {
  object-position: center;
  transform: scale(1.04);
}

.page-hero-art.tracks-art {
  background:
    linear-gradient(180deg, rgba(5, 15, 32, 0.14), rgba(5, 15, 32, 0.26)),
    url("./assets/tracks-hero-poster.jpg") center / cover no-repeat,
    #071428;
}

.page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: min(1240px, calc(100vw - 200px));
  gap: 12px;
  margin: 0 auto;
  padding: 0 0 36px;
}

.catalog-card {
  position: relative;
  overflow: hidden;
  min-width: 0;
  min-height: 214px;
  padding: 25px 26px;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.catalog-card h3 {
  margin: 7px 0 12px;
  color: #f7fbff;
  font-size: 31px;
  line-height: 1.04;
}

.catalog-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(160, 230, 255, 0.42), transparent);
  opacity: 0.66;
}

.catalog-card:hover {
  border-color: rgba(175, 232, 255, 0.28);
  background:
    linear-gradient(135deg, rgba(18, 44, 82, 0.5), rgba(5, 16, 34, 0.38) 54%, rgba(5, 13, 30, 0.58)),
    rgba(7, 22, 46, 0.32);
  transform: translateY(-2px);
}

.catalog-card p {
  max-width: 700px;
}

.catalog-card-wide {
  grid-column: 1 / -1;
}

.album-release-grid {
  gap: 16px;
}

.album-release-card {
  padding: 28px;
}

.album-release-head {
  display: grid;
  grid-template-columns: 172px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.album-release-head img {
  display: block;
  width: 172px;
  aspect-ratio: 1;
  border: 1px solid rgba(220, 236, 255, 0.24);
  border-radius: 4px;
  object-fit: cover;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
}

.album-release-head p {
  margin-bottom: 16px;
}

.album-release-head .button {
  width: fit-content;
}

.track-tag {
  display: block;
  color: rgba(157, 212, 255, 0.92);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0;
  text-transform: none;
}

.album-mini {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 17px;
  align-items: start;
  margin-top: 18px;
}

.album-mini img {
  display: block;
  width: 118px;
  height: 118px;
  border: 1px solid rgba(210, 230, 255, 0.24);
  border-radius: 4px;
  object-fit: cover;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

.about-duo-card {
  display: grid;
  grid-template-columns: minmax(280px, 46%) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  min-height: 420px;
}

.about-duo-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(220, 236, 255, 0.22);
  border-radius: 4px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.24);
}

.about-duo-card h3 {
  max-width: 760px;
  margin-top: 12px;
  font-size: clamp(32px, 3.2vw, 48px);
  line-height: 0.98;
}

.about-duo-card p {
  max-width: 760px;
  font-size: 18px;
  line-height: 1.52;
}

.about-duo-roles {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.about-duo-roles span {
  display: block;
  padding: 10px 12px;
  border: 1px solid rgba(190, 220, 255, 0.15);
  border-radius: 4px;
  color: #f7fbff;
  background: rgba(255, 255, 255, 0.035);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.32;
}

.about-photo-story {
  padding: 28px;
}

.about-photo-mosaic {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.about-photo-tile {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(220, 236, 255, 0.18);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.2);
}

.about-photo-tile img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 280px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
}

.about-person-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: start;
}

.about-person-copy h3 {
  max-width: 560px;
  margin-top: 12px;
  font-size: clamp(34px, 3.1vw, 48px);
  line-height: 0.98;
}

.about-person-copy p {
  max-width: 780px;
  font-size: 18px;
  line-height: 1.55;
}

.about-person-photos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.about-person-photos img {
  display: block;
  width: 100%;
  min-width: 0;
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(220, 236, 255, 0.2);
  border-radius: 6px;
  object-fit: contain;
  object-position: center top;
  background: rgba(5, 17, 32, 0.72);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.22);
}

.about-person-card-stanislav .about-person-photos img:nth-child(1),
.about-person-card-vasiliy .about-person-photos img:nth-child(1) {
  object-position: center top;
}

.about-person-card-stanislav .about-person-photos img:nth-child(2) {
  object-position: center top;
}

.about-person-card-vasiliy .about-person-photos img:nth-child(2) {
  object-position: center 42%;
}

.album-meta {
  margin-top: 12px;
  color: rgba(215, 226, 244, 0.9);
}

.pill-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

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

.pill-list li {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(190, 220, 255, 0.15);
  border-radius: 4px;
  color: #f7fbff;
  background: rgba(255, 255, 255, 0.028);
  font-size: 14px;
  line-height: 1.25;
}

.pill-list li.audio-track {
  display: block;
  width: 100%;
  max-width: 100%;
  min-height: 46px;
  padding: 0;
  overflow: hidden;
  background: rgba(7, 24, 52, 0.34);
}

.audio-player {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  grid-template-rows: auto 4px;
  align-items: center;
  gap: 7px 10px;
  overflow: hidden;
  max-width: 100%;
  min-height: 46px;
  padding: 7px 10px 8px;
}

.audio-toggle {
  position: relative;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(190, 220, 255, 0.26);
  border-radius: 50%;
  cursor: pointer;
  background: rgba(136, 190, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.audio-toggle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 52%;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid #eef8ff;
  transform: translate(-40%, -50%);
}

.audio-toggle.is-playing::before {
  left: 50%;
  width: 9px;
  height: 12px;
  border: 0;
  border-left: 3px solid #eef8ff;
  border-right: 3px solid #eef8ff;
  transform: translate(-50%, -50%);
}

.audio-toggle:hover {
  border-color: rgba(178, 237, 255, 0.72);
  background: rgba(126, 184, 255, 0.2);
}

.audio-name {
  min-width: 0;
  overflow: hidden;
  color: #f7fbff;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.audio-time {
  color: rgba(224, 234, 248, 0.72);
  font-size: 12px;
  white-space: nowrap;
}

.audio-progress {
  grid-column: 1 / -1;
  min-width: 0;
  width: 100%;
  height: 14px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  background:
    linear-gradient(90deg, rgba(145, 207, 255, 0.92) var(--progress, 0%), rgba(190, 220, 255, 0.16) 0);
  appearance: none;
}

.audio-progress::-webkit-slider-runnable-track {
  height: 4px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(145, 207, 255, 0.92) var(--progress, 0%), rgba(190, 220, 255, 0.16) 0);
}

.audio-progress::-webkit-slider-thumb {
  width: 14px;
  height: 14px;
  margin-top: -5px;
  border: 1px solid rgba(238, 248, 255, 0.82);
  border-radius: 50%;
  background: #dff5ff;
  box-shadow: 0 0 14px rgba(16, 215, 242, 0.3);
  appearance: none;
}

.audio-progress::-moz-range-track {
  height: 4px;
  border-radius: 999px;
  background: rgba(190, 220, 255, 0.16);
}

.audio-progress::-moz-range-progress {
  height: 4px;
  border-radius: 999px;
  background: rgba(145, 207, 255, 0.92);
}

.audio-progress::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border: 1px solid rgba(238, 248, 255, 0.82);
  border-radius: 50%;
  background: #dff5ff;
}

.audio-track.is-active {
  border-color: rgba(178, 237, 255, 0.44);
  background: rgba(20, 58, 100, 0.38);
}

.audio-track.is-loading .audio-toggle,
.audio-track.is-buffering .audio-toggle,
.global-audio-player.is-buffering .audio-toggle {
  border-color: rgba(178, 237, 255, 0.76);
  animation: audioBufferPulse 920ms ease-in-out infinite;
}

.audio-track.is-loading .audio-time::after {
  content: " / загрузка";
  color: rgba(178, 237, 255, 0.86);
}

.audio-track.is-buffering .audio-time::after {
  content: " / буфер";
  color: rgba(178, 237, 255, 0.86);
}

.audio-track.is-error .audio-time::after {
  content: " / ошибка";
  color: rgba(255, 166, 166, 0.9);
}

@keyframes audioBufferPulse {
  0%,
  100% {
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03), 0 0 0 0 rgba(178, 237, 255, 0.32);
  }

  50% {
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), 0 0 0 5px rgba(178, 237, 255, 0);
  }
}

.global-audio-player {
  position: fixed;
  right: 18px;
  bottom: 18px;
  left: auto;
  z-index: 40;
  display: grid;
  grid-template-columns: 28px 34px minmax(0, 1fr) 28px 26px;
  align-items: center;
  gap: 8px;
  width: min(360px, calc(100vw - 24px));
  padding: 8px 10px;
  border: 1px solid rgba(190, 220, 255, 0.18);
  border-radius: 999px;
  background: rgba(7, 18, 39, 0.58);
  box-shadow: 0 12px 30px rgba(2, 8, 20, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition:
    opacity 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.global-audio-player.is-visible {
  opacity: 0.84;
  pointer-events: auto;
  transform: translateY(0);
}

.global-audio-player.is-visible:hover,
.global-audio-player.is-dragging {
  opacity: 1;
  background: rgba(7, 18, 39, 0.78);
}

.global-audio-player.is-custom-position {
  right: 18px;
  bottom: 18px;
  left: auto !important;
  top: auto !important;
  transform: translateY(0);
}

.global-audio-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2px;
  min-width: 0;
}

.global-audio-label {
  display: none;
}

.global-audio-title {
  overflow: hidden;
  color: #f7fbff;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.global-audio-time {
  display: none;
}

.global-audio-drag,
.global-audio-prev,
.global-audio-next,
.global-audio-close {
  position: relative;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(190, 220, 255, 0.22);
  border-radius: 50%;
  cursor: pointer;
  background: rgba(136, 190, 255, 0.1);
}

.global-audio-drag {
  display: none;
}

.global-audio-prev::before,
.global-audio-next::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid #eef8ff;
  border-right: 2px solid #eef8ff;
}

.global-audio-prev::before {
  left: 54%;
  transform: translate(-50%, -50%) rotate(-135deg);
}

.global-audio-next::before {
  left: 46%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.global-audio-close {
  width: 26px;
  height: 26px;
  border-color: rgba(238, 248, 255, 0.18);
  background: rgba(4, 12, 28, 0.18);
}

.global-audio-close::before,
.global-audio-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 13px;
  height: 2px;
  border-radius: 999px;
  background: rgba(238, 248, 255, 0.9);
}

.global-audio-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.global-audio-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.global-audio-prev:hover,
.global-audio-next:hover,
.global-audio-close:hover,
.global-audio-drag:hover {
  border-color: rgba(178, 237, 255, 0.72);
  background: rgba(126, 184, 255, 0.2);
}

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

.platform-links {
  gap: 10px;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.platform-links .section-link {
  min-height: 34px;
  padding: 8px 11px;
  border: 1px solid rgba(190, 220, 255, 0.16);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.03);
}

.video-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 14px;
  margin-top: 18px;
}

.video-card-grid-full {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: none;
}

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

.video-release-card {
  position: relative;
  display: grid;
  gap: 8px;
  grid-template-rows: auto auto auto 1fr auto;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  box-sizing: border-box;
  padding: 10px;
  border: 1px solid rgba(190, 220, 255, 0.16);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.035);
}

.video-player-shell {
  position: relative;
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.video-player-shell .video-quality {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  margin: 0;
  padding: 4px 5px 4px 8px;
  border: 1px solid rgba(190, 220, 255, 0.14);
  border-radius: 4px;
  background: rgba(5, 14, 30, 0.72);
  backdrop-filter: blur(8px);
}

.video-player-shell .video-quality select {
  min-height: 26px;
  border-color: rgba(190, 220, 255, 0.12);
  background: rgba(5, 14, 30, 0.78);
}

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

.video-release-card-portrait {
  width: 100%;
  justify-self: stretch;
}

.video-release-card-portrait .video-player-shell {
  width: 100%;
  max-width: 320px;
  justify-self: center;
}

.video-release-card video {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 4px;
  background: rgba(3, 10, 24, 0.72);
  object-fit: contain;
}

.video-release-card-portrait video {
  width: 100%;
  max-width: 320px;
  justify-self: center;
  max-height: none;
  aspect-ratio: 9 / 16;
  object-fit: contain;
}

.video-release-card span {
  color: rgba(180, 218, 255, 0.78);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 18px;
  font-weight: 500;
}

.video-release-card strong {
  overflow: hidden;
  color: #f7fbff;
  font-size: 16px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.video-note {
  margin: 0;
  color: rgba(215, 226, 244, 0.86);
  font-size: 13px;
  line-height: 1.42;
}

.video-release-card a {
  width: fit-content;
  color: rgba(199, 244, 255, 0.9);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.video-release-card a:hover {
  color: #f7fbff;
}

.video-story-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 42%);
  gap: 28px;
  align-items: center;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
}

.video-story-card p {
  max-width: 760px;
}

.video-story-preview {
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  box-sizing: border-box;
  border: 1px solid rgba(220, 236, 255, 0.18);
  border-radius: 4px;
  background: rgba(3, 10, 24, 0.72);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.22);
}

.video-story-preview video {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  aspect-ratio: 16 / 9;
  border: 0;
  object-fit: cover;
}

.card-actions .section-link {
  min-height: 34px;
  padding: 8px 11px;
  border: 1px solid rgba(190, 220, 255, 0.16);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.03);
}

.studio-legal-card {
  grid-column: 1 / -1;
  min-height: 0;
}

.studio-legal-card p {
  max-width: 860px;
}

.studio-legal-card .studio-contact-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 760px;
}

.order-grid {
  align-items: stretch;
}

.order-hero-card .studio-actions {
  margin-top: 24px;
}

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

.order-list li {
  position: relative;
  padding-left: 22px;
  color: rgba(215, 226, 244, 0.9);
  font-size: 15px;
  line-height: 1.5;
}

.order-list li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(136, 197, 255, 0.9);
  box-shadow: 0 0 14px rgba(16, 215, 242, 0.34);
}

.order-note {
  margin-top: 14px;
  color: rgba(198, 216, 239, 0.78) !important;
}

.order-form-card {
  grid-column: span 2;
}

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

.order-form label {
  display: grid;
  gap: 7px;
  color: rgba(247, 251, 255, 0.94);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.05;
}

.order-form input,
.order-form select,
.order-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(205, 230, 255, 0.18);
  border-radius: 14px;
  color: #f7fbff;
  background: rgba(4, 13, 29, 0.42);
  font: 500 15px/1.45 "Manrope", sans-serif;
  outline: none;
}

.order-form textarea {
  resize: vertical;
}

.order-form input:focus,
.order-form select:focus,
.order-form textarea:focus {
  border-color: rgba(136, 197, 255, 0.66);
  box-shadow: 0 0 0 3px rgba(16, 215, 242, 0.12);
}

.order-form-wide,
.order-submit {
  grid-column: 1 / -1;
}

.order-submit {
  width: fit-content;
  min-width: 220px;
  margin-top: 4px;
  cursor: pointer;
}

.order-contact-card .card-actions {
  align-items: center;
  margin-top: 16px;
}

.inner-footer {
  margin-top: 0;
  padding-bottom: 28px;
}

.page-stack {
  display: grid;
  gap: 18px;
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

html.site-intro-complete .intro-materialize {
  animation: blockMaterialize 720ms cubic-bezier(0.2, 0.8, 0.22, 1) var(--intro-delay, 0ms) both;
}

@keyframes introMaterialize {
  from {
    opacity: 0;
    transform: translateY(22px) scale(0.92);
    filter: blur(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes introFullBleedIn {
  from {
    opacity: 0;
    transform: scale(1.05);
    filter: blur(10px);
  }

  to {
    opacity: 1;
    transform: scale(1.018);
    filter: blur(0);
  }
}

@keyframes introAtmosphere {
  from {
    transform: scale(1.04) translateY(10px);
    opacity: 0;
  }

  to {
    transform: scale(1) translateY(0);
    opacity: 0.58;
  }
}

@keyframes blockMaterialize {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
    filter: blur(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes baikal-breathe {
  0% {
    transform: translateX(-50%) scale(1);
    filter: saturate(1) brightness(1);
  }

  100% {
    transform: translateX(-50%) scale(1.035);
    filter: saturate(1.08) brightness(1.04);
  }
}

@keyframes star-drift {
  0% {
    background-position: 0 0, 0 0, 0 0, 0 0;
  }

  100% {
    background-position: 40px -28px, -32px 24px, 26px 18px, -44px -20px;
  }
}

@keyframes star-pulse {
  0%,
  100% {
    opacity: 0.26;
  }

  48% {
    opacity: 0.46;
  }
}

@keyframes horizon-glow {
  0% {
    opacity: 0.28;
    transform: translateX(-2vw) scaleX(0.96);
  }

  100% {
    opacity: 0.52;
    transform: translateX(2vw) scaleX(1.04);
  }
}

@keyframes ice-slide {
  0% {
    opacity: 0.14;
    transform: translateX(-2vw) skewY(-2deg);
  }

  100% {
    opacity: 0.3;
    transform: translateX(2vw) skewY(-2deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 1240px) {
  .topbar {
    grid-template-columns: 1fr;
    height: auto;
    gap: 16px;
    padding-top: 24px;
  }

  .nav {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .topbar-actions {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .hero,
  .section,
  .banner,
  .footer-grid,
  .footer-bottom,
  .page-hero,
  .page-grid {
    padding-left: 32px;
    padding-right: 32px;
  }

  .content-grid,
  .footer-grid,
  .footer-bottom,
  .page-hero,
  .page-grid {
    grid-template-columns: 1fr;
  }

  .page-hero,
  .page-grid {
    width: auto;
    margin-left: 0;
    margin-right: 0;
  }

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

  .content-grid,
  .section.content-grid,
  .banner,
  .home-feature-band,
  .release-strip,
  .footer-grid,
  .footer-bottom {
    width: auto;
    margin-left: 0;
  }

  .section.content-grid {
    padding: 18px 32px 0;
  }

  .home-feature-band,
  .release-strip {
    grid-template-columns: 1fr;
  }

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

  .album-panel,
  .track-panel,
  .video-panel,
  .footer-subscribe-card,
  .footer-listen-card,
  .footer-social-card {
    padding-left: 0;
    padding-right: 0;
    border-left: 0;
  }

  .footer-bottom {
    gap: 12px;
    text-align: center;
  }

  .footer-bottom p:last-child {
    text-align: center;
  }
}

@media (max-width: 760px) {
  .site-shell::before {
    height: 760px;
    background-position: 58% top;
  }

  .ambient-bg {
    height: 760px;
  }

  .ambient-horizon {
    top: 330px;
  }

  .ambient-ice {
    top: 520px;
    opacity: 0.16;
  }

  .topbar,
  .hero,
  .section,
  .banner,
  .footer-grid,
  .footer-bottom,
  .page-hero,
  .page-grid {
    max-width: 100vw;
    padding-left: 18px;
    padding-right: 18px;
  }

  .brand-logo {
    width: 88px;
  }

  .brand-text {
    font-size: 13px;
  }

  .nav {
    width: min(100%, 340px);
    gap: 16px 20px;
  }

  .hero {
    min-height: 390px;
    padding-top: 36px;
  }

  .hero-copy {
    max-width: min(100%, 330px);
  }

  h1 {
    font-size: 56px;
  }

  .page-hero-card {
    max-width: calc(100vw - 36px);
    padding: 22px;
    min-height: auto;
  }

  .page-hero-card h1 {
    max-width: 300px;
    font-size: 38px;
    line-height: 0.98;
    overflow-wrap: break-word;
  }

  .page-hero-art {
    width: min(100%, 300px);
    max-width: calc(100vw - 36px);
    min-height: 118px;
    justify-self: center;
  }

  .page-hero-video,
  .page-hero-art.about-art .page-hero-video,
  .page-hero-art.video-art .page-hero-video {
    transform: none;
  }

  .hero-subtitle {
    max-width: 330px;
    font-size: 16px;
    overflow-wrap: break-word;
  }

  .hero-subtitle br {
    display: none;
  }

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

  .home-video-grid {
    grid-template-columns: 1fr;
  }

  .panel-head {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .album-layout,
  .footer-brand-card {
    grid-template-columns: 1fr;
  }

  .catalog-card h3 {
    max-width: 300px;
    overflow-wrap: break-word;
  }

  .album-layout img,
  .album-cover {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .album-cover {
    padding-bottom: 44px;
  }

  .album-cover-logo {
    top: 42%;
    width: min(68%, 250px) !important;
    transform: translate(-50%, -50%);
  }

  .home-album-layout .album-copy {
    transform: none;
  }

  .track-list li {
    grid-template-columns: 32px 1fr auto;
  }

  .track-more {
    display: none;
  }

  .pill-list {
    grid-template-columns: 1fr;
  }

  .pill-list-wide {
    grid-template-columns: 1fr;
  }

  .video-card-grid,
  .video-card-grid-featured,
  .video-card-grid-full,
  .video-card-grid-compact {
    grid-template-columns: 1fr;
  }

  .video-release-card-large {
    grid-column: span 1;
  }

  .video-release-card-portrait {
    justify-self: stretch;
  }

  .video-release-card-portrait video {
    width: 100%;
    max-width: min(320px, 100%);
    margin: 0 auto;
  }

  .video-story-card {
    grid-template-columns: 1fr;
  }

  .video-story-preview,
  .video-story-preview video,
  .home-video-card video {
    max-width: 100%;
  }

  .video-story-preview {
    width: min(100%, 320px);
    margin-inline: auto;
  }

  .video-story-preview video {
    max-height: 180px;
  }

  .home-video-feature,
  .home-video-feature video,
  .home-video-card video {
    max-width: 100%;
  }

  .video-quality {
    justify-content: flex-start;
  }

  .audio-player {
    grid-template-columns: 34px minmax(0, 1fr);
  }

  .audio-time {
    display: none;
  }

  .global-audio-player {
    top: auto;
    bottom: 10px;
    right: 9px;
    grid-template-columns: 28px 32px minmax(0, 1fr) 28px 26px;
    gap: 6px;
    width: calc(100vw - 18px);
    padding: 7px 8px;
  }

  .global-audio-time {
    display: none;
  }

  .global-audio-prev,
  .global-audio-next {
    width: 28px;
    height: 28px;
  }

  .global-audio-close {
    width: 26px;
    height: 26px;
  }

  .album-mini {
    grid-template-columns: 92px 1fr;
  }

  .album-mini img {
    width: 92px;
    height: 92px;
  }

  .album-release-card {
    padding: 20px;
  }

  .album-release-head {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 14px;
  }

  .album-release-head img {
    width: 96px;
  }

  .album-release-head .button {
    width: 100%;
  }

  .about-duo-card {
    grid-template-columns: 1fr;
  }

  .about-photo-story {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-photo-mosaic,
  .about-person-photos {
    grid-template-columns: 1fr;
  }

  .about-photo-tile img {
    min-height: 230px;
    aspect-ratio: 16 / 10;
  }

  .about-person-card {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .about-person-copy h3 {
    font-size: clamp(34px, 9vw, 44px);
  }

  .about-person-copy p {
    font-size: 17px;
  }

  .about-person-photos img {
    aspect-ratio: 4 / 5;
  }

  .subscribe-form {
    width: 100%;
  }

  .footer-bottom-wave {
    width: 100%;
  }

  .home-story-card,
  .home-studio-card,
  .release-strip {
    padding: 22px;
  }

  .release-links {
    grid-template-columns: 1fr;
  }

  .section.content-grid {
    padding: 18px 18px 0;
  }
}


.mobile-menu-panel {
  display: contents;
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 78px;
  }

  .topbar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    width: min(100% - 32px, 1180px);
    min-width: 0;
    padding-top: 22px;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 72px;
    max-width: 72px;
    height: auto;
  }

  .brand-text {
    min-width: 0;
    overflow: hidden;
    font-size: 13px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    justify-self: end;
    min-width: 86px;
    height: 46px;
    padding: 0 13px;
    border: 1px solid rgba(210, 236, 255, 0.26);
    border-radius: 6px;
    color: #f7fbff;
    background: rgba(7, 23, 48, 0.46);
    font: 700 13px/1 "Manrope", sans-serif;
    letter-spacing: 0;
  }

  .menu-toggle-lines {
    display: grid;
    gap: 4px;
    width: 18px;
  }

  .menu-toggle-lines span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition:
      transform 180ms ease,
      opacity 180ms ease;
  }

  .menu-toggle-text {
    display: inline-block;
  }

  .topbar.is-menu-open .menu-toggle-lines span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .topbar.is-menu-open .menu-toggle-lines span:nth-child(2) {
    opacity: 0;
  }

  .topbar.is-menu-open .menu-toggle-lines span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .mobile-menu-panel {
    display: none;
    grid-column: 1 / -1;
    min-width: 0;
    padding: 14px;
    border: 1px solid rgba(190, 220, 255, 0.18);
    border-radius: 8px;
    background: rgba(5, 14, 30, 0.92);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.26);
    backdrop-filter: blur(14px);
  }

  .topbar.is-menu-open .mobile-menu-panel {
    display: grid;
    gap: 14px;
  }

  .nav {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: stretch;
    gap: 6px;
    width: 100%;
  }

  .nav a {
    min-height: 44px;
    justify-content: flex-start;
    padding: 12px 10px;
    border: 0;
    border-radius: 0;
    background: transparent;
    white-space: normal;
  }

  .nav a[aria-current="page"] {
    color: #c7f4ff;
    background: transparent;
  }

  .nav a[aria-current="page"]::after {
    display: none;
  }

  .topbar-actions {
    display: flex;
    justify-content: flex-start;
    gap: 12px;
    padding-top: 8px;
    border-top: 1px solid rgba(190, 220, 255, 0.12);
  }

  .topbar-actions .icon-link {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border: 1px solid rgba(190, 220, 255, 0.16);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.04);
  }

  .topbar-actions .icon-link img {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 760px) {
  html,
  body,
  .site-shell {
    max-width: 100%;
  }

  body {
    font-size: 16px;
    line-height: 1.55;
  }

  .site-shell::before,
  .site-shell::after,
  .ambient-bg {
    left: 0;
    width: 100%;
    transform: none;
  }

  .ambient-video,
  .ambient-stars,
  .ambient-horizon,
  .ambient-ice {
    max-width: none;
  }

  .hero,
  .section,
  .home-feature-band,
  .release-strip,
  .footer-grid,
  .footer-bottom,
  .page-hero,
  .page-grid,
  .inner-footer {
    width: min(100% - 32px, 1180px);
    margin-inline: auto;
  }

  .hero {
    min-height: 470px;
    padding: 36px 0 24px;
  }

  .hero-copy,
  .page-hero-card {
    max-width: 100%;
    min-width: 0;
  }

  .hero h1,
  .page-hero-card h1 {
    max-width: none;
    overflow-wrap: anywhere;
    font-size: clamp(42px, 14vw, 68px);
    line-height: 0.96;
  }

  .hero-subtitle,
  .page-hero-card .hero-subtitle,
  .catalog-card p,
  .footer-note,
  .contact-list,
  .video-note {
    max-width: 100%;
    overflow-wrap: anywhere;
    font-size: 16px;
    line-height: 1.55;
  }

  .hero-actions,
  .studio-actions,
  .release-links,
  .social-row,
  .platform-links,
  .card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }

  .button,
  .section-link,
  .platform-links .section-link,
  .release-links a,
  .social-row a {
    min-height: 44px;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .home-grid,
  .content-grid,
  .home-feature-band,
  .footer-grid,
  .page-hero,
  .page-grid,
  .album-release-grid,
  .video-card-grid,
  .video-card-grid-full,
  .video-card-grid-compact,
  .pill-list,
  .pill-list-wide,
  .platform-grid,
  .studio-offer-grid,
  .studio-step-grid {
    grid-template-columns: 1fr !important;
  }

  .album-panel,
  .track-panel,
  .video-panel,
  .catalog-card,
  .home-story-card,
  .home-studio-card,
  .footer-brand-card,
  .footer-subscribe-card,
  .footer-listen-card,
  .footer-social-card,
  .video-release-card,
  .album-release-card {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .album-layout,
  .home-album-layout,
  .album-release-head,
  .artist-card {
    grid-template-columns: 1fr !important;
  }

  .album-cover-img,
  .album-cover,
  .album-release-head img {
    width: min(100%, 280px);
    max-width: 100%;
    margin-inline: auto;
  }

  .album-hero-wall {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow-x: auto;
    width: min(100%, 320px);
    gap: 10px;
    padding-bottom: 8px;
  }

  .album-hero-wall img {
    width: 100%;
  }

  .audio-player {
    grid-template-columns: 34px minmax(0, 1fr) auto;
    gap: 9px;
  }

  .audio-name,
  .video-release-card strong,
  .home-video-card strong {
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .global-audio-player {
    right: 12px;
    bottom: 12px;
    left: 12px;
    width: auto;
    max-width: none;
    grid-template-columns: 28px 34px minmax(0, 1fr) 28px 26px;
  }

  .home-video-feature {
    justify-content: center;
  }

  .home-video-feature video,
  .video-release-card-portrait .video-player-shell,
  .video-release-card-portrait video {
    width: min(100%, 320px);
    max-width: 100%;
    max-height: 80vh;
    margin-inline: auto;
  }

  .video-player-shell .video-quality {
    top: 6px;
    right: 6px;
    max-width: calc(100% - 12px);
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .topbar {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    width: calc(100% - 32px) !important;
  }

  .menu-toggle {
    min-width: 78px;
    height: 40px;
    padding: 0 11px;
    justify-self: end;
    font-size: 12px;
  }

  .hero h1,
  .page-hero-card h1 {
    font-size: clamp(34px, 11vw, 44px);
    line-height: 1;
    word-break: normal;
    overflow-wrap: anywhere;
    hyphens: auto;
  }

  .page-hero-card {
    overflow: hidden;
  }

  .hero-actions .button,
  .studio-actions .button,
  .release-links a,
  .platform-links .section-link,
  .social-row a {
    width: 100%;
  }

  .footer-bottom {
    text-align: left;
  }
}

/* Stage 28: mobile and tablet premium layout */
@media (max-width: 1024px) {
  :root {
    --mobile-gutter: clamp(16px, 4vw, 34px);
    --mobile-card-radius: 24px;
    --mobile-glass: rgba(8, 24, 52, 0.58);
  }

  body {
    background:
      radial-gradient(circle at 50% 0%, rgba(120, 205, 255, 0.16), transparent 32rem),
      radial-gradient(circle at 88% 18%, rgba(185, 170, 255, 0.12), transparent 22rem),
      linear-gradient(180deg, #071a37 0%, #061326 52%, #050e1d 100%);
  }

  .site-shell::before,
  .ambient-bg {
    height: clamp(620px, 88vh, 820px);
  }

  .site-shell::after {
    top: clamp(540px, 78vh, 720px);
  }

  .topbar {
    position: sticky;
    top: 0;
    z-index: 80;
    width: 100%;
    min-height: 66px;
    margin: 0;
    padding: 10px var(--mobile-gutter);
    border-bottom: 1px solid transparent;
    background: linear-gradient(180deg, rgba(5, 14, 30, 0.72), rgba(5, 14, 30, 0.24));
    transition:
      background 180ms ease,
      border-color 180ms ease,
      box-shadow 180ms ease;
  }

  .topbar.is-scrolled,
  .topbar.is-menu-open {
    border-bottom-color: rgba(190, 220, 255, 0.12);
    background: rgba(5, 14, 30, 0.78);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
  }

  .brand-logo {
    width: 62px;
    max-width: 62px;
  }

  .brand-text {
    max-width: 160px;
    font-size: 12px;
  }

  .menu-toggle {
    min-width: 92px;
    min-height: 44px;
    border-radius: 999px;
    background: rgba(238, 248, 255, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }

  .mobile-menu-panel {
    position: fixed;
    inset: 0;
    z-index: 90;
    display: grid;
    align-content: end;
    gap: 0;
    width: auto;
    padding: 88px var(--mobile-gutter) max(18px, env(safe-area-inset-bottom));
    border: 0;
    border-radius: 0;
    background: rgba(2, 8, 19, 0);
    box-shadow: none;
    backdrop-filter: none;
    opacity: 0;
    pointer-events: none;
    transition:
      opacity 220ms ease,
      background 220ms ease;
  }

  .mobile-menu-panel::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    background:
      radial-gradient(circle at 50% 78%, rgba(86, 184, 255, 0.16), transparent 30rem),
      rgba(2, 8, 19, 0.58);
    backdrop-filter: blur(10px);
  }

  .topbar.is-menu-open .mobile-menu-panel {
    display: grid;
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-menu-panel .nav,
  .mobile-menu-panel .topbar-actions {
    position: relative;
    z-index: 1;
    width: min(100%, 460px);
    margin-inline: auto;
    border: 1px solid rgba(205, 230, 255, 0.16);
    background: rgba(6, 18, 38, 0.86);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
  }

  .mobile-menu-panel .nav {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: stretch;
    align-items: stretch;
    width: min(100%, 460px);
    max-height: min(70svh, 560px);
    overflow-y: auto;
    overscroll-behavior: contain;
    gap: 4px;
    padding: 16px;
    border-radius: 28px 28px 16px 16px;
    transform: translateY(18px);
    transition: transform 240ms ease;
  }

  .topbar.is-menu-open .mobile-menu-panel .nav {
    transform: translateY(0);
  }

  .mobile-menu-panel .nav a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    min-height: 52px;
    padding: 0 16px;
    border-radius: 16px;
    color: rgba(247, 251, 255, 0.94);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: 0;
    text-shadow: none;
  }

  .mobile-menu-panel .nav a[aria-current="page"],
  .mobile-menu-panel .nav a:active {
    color: #f7fbff;
    background: linear-gradient(90deg, rgba(127, 181, 251, 0.22), rgba(16, 215, 242, 0.08));
  }

  .mobile-menu-panel .topbar-actions {
    justify-content: center;
    gap: 14px;
    padding: 14px 16px 16px;
    border-top: 0;
    border-radius: 16px 16px 28px 28px;
    border-top-color: transparent;
  }

  .topbar-actions .icon-link {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
  }

  @media (orientation: landscape), (max-height: 520px) {
    .topbar {
      min-height: 54px;
      padding-top: 6px;
      padding-bottom: 6px;
    }

    .brand-logo {
      width: 48px;
      max-width: 48px;
    }

    .brand-text {
      max-width: 180px;
      font-size: 11px;
    }

    .menu-toggle {
      min-width: 78px;
      min-height: 38px;
      padding-inline: 10px;
    }

    .mobile-menu-panel {
      align-content: start;
      overflow-y: auto;
      overscroll-behavior: contain;
      padding: 62px max(12px, var(--mobile-gutter)) max(10px, env(safe-area-inset-bottom));
    }

    .mobile-menu-panel .nav,
    .mobile-menu-panel .topbar-actions {
      width: min(100%, 720px);
    }

    .mobile-menu-panel .nav {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 4px;
      padding: 10px;
      border-radius: 16px 16px 10px 10px;
    }

    .mobile-menu-panel .nav a {
      min-height: 38px;
      padding: 0 10px;
      border-radius: 10px;
      font-size: 14px;
      line-height: 1.1;
    }

    .mobile-menu-panel .topbar-actions {
      gap: 10px;
      padding: 8px 10px 10px;
      border-radius: 10px 10px 16px 16px;
    }

    .topbar-actions .icon-link {
      width: 38px;
      height: 38px;
      min-width: 38px;
    }
  }

  .hero,
  .section,
  .home-feature-band,
  .release-strip,
  .footer-grid,
  .footer-bottom,
  .page-hero,
  .page-grid {
    width: auto;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    padding-left: var(--mobile-gutter);
    padding-right: var(--mobile-gutter);
  }

  .hero-home {
    display: grid;
    align-items: end;
    min-height: clamp(620px, 92vh, 780px);
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .hero-copy {
    width: min(100%, 620px);
    padding: 22px;
    border: 1px solid rgba(205, 230, 255, 0.16);
    border-radius: 28px;
    background:
      linear-gradient(180deg, rgba(5, 15, 32, 0.38), rgba(5, 15, 32, 0.16)),
      rgba(255, 255, 255, 0.035);
    box-shadow:
      0 24px 80px rgba(0, 0, 0, 0.22),
      inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
  }

  .hero h1 {
    max-width: 9ch;
    font-size: clamp(42px, 12vw, 76px);
    line-height: 0.94;
    overflow-wrap: normal;
  }

  .hero-brand-lockup {
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 14px;
  }

  .hero-brand-mark {
    width: 74px;
  }

  .hero-subtitle {
    max-width: 34rem;
    margin-top: 18px;
    font-size: clamp(16px, 2.2vw, 18px);
    line-height: 1.5;
  }

  .button {
    min-height: 48px;
    border-radius: 999px;
  }

  .hero-actions {
    gap: 12px;
    margin-top: 22px;
  }

  .section.content-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(280px, 1fr));
    gap: 16px;
    width: auto;
    margin: 0;
    padding: 18px var(--mobile-gutter) 0;
  }

  .album-panel,
  .track-panel,
  .video-panel,
  .home-story-card,
  .home-studio-card,
  .release-strip,
  .footer-grid article,
  .catalog-card,
  .video-release-card,
  .album-release-card {
    border: 1px solid rgba(205, 230, 255, 0.14);
    border-radius: var(--mobile-card-radius);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018)),
      var(--mobile-glass);
    box-shadow:
      0 18px 58px rgba(0, 0, 0, 0.18),
      inset 0 1px 0 rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(14px);
  }

  .album-panel,
  .track-panel,
  .video-panel {
    min-height: 0;
    padding: 18px;
    border-left: 1px solid rgba(205, 230, 255, 0.14);
  }

  .video-panel {
    justify-self: stretch;
    width: auto;
    margin-top: 0;
  }

  .panel-head {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    min-height: 0;
  }

  .section-link {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    white-space: nowrap;
  }

  .album-layout {
    grid-template-columns: minmax(124px, 0.9fr) minmax(0, 1.1fr);
    gap: 16px;
  }

  .album-layout img,
  .album-cover-img,
  .album-cover {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    border-radius: 20px;
  }

  .album-copy p {
    max-width: none;
  }

  .track-list {
    border: 0;
  }

  .track-list li.audio-track {
    margin-top: 8px;
    overflow: hidden;
    border: 1px solid rgba(205, 230, 255, 0.12);
    border-radius: 18px;
    background: rgba(4, 13, 29, 0.34);
  }

  .audio-player {
    min-height: 54px;
    padding: 8px 10px;
    grid-template-columns: 34px minmax(0, 1fr) auto;
  }

  .audio-toggle {
    width: 34px;
    height: 34px;
    min-width: 34px;
  }

  .home-video-feature {
    justify-content: stretch;
  }

  .home-video-feature video {
    width: min(72vw, 300px);
    margin-inline: auto;
    max-height: none;
    aspect-ratio: 9 / 16;
    border-radius: 20px;
    object-fit: contain;
  }

  .home-feature-band {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 16px;
    margin-top: 18px;
  }

  .home-story-card,
  .home-studio-card {
    min-height: 0;
    padding: 24px;
  }

  .release-strip {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 18px;
    margin-top: 18px;
  }

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

  .release-links a {
    min-height: 48px;
    border-radius: 16px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    padding-top: 18px;
  }

  .footer-grid article {
    padding: 20px;
  }

  .footer-brand-card {
    grid-template-columns: 88px minmax(0, 1fr);
  }

  .footer-logo {
    width: 82px;
  }
}

@media (max-width: 760px) {
  :root {
    --mobile-gutter: 16px;
  }

  .site-shell::before,
  .ambient-bg {
    height: 100vh;
    min-height: 620px;
  }

  .ambient-video {
    filter: saturate(1.08) contrast(1.04) brightness(0.76);
  }

  .site-shell::before {
    background:
      linear-gradient(180deg, rgba(2, 8, 19, 0.16), rgba(2, 8, 19, 0.14) 44%, rgba(5, 14, 30, 0.94) 100%),
      linear-gradient(90deg, rgba(5, 16, 34, 0.72), rgba(5, 16, 34, 0.08) 52%, rgba(5, 16, 34, 0.6)),
      image-set(
          url("./assets/hero-sredi-mirov.avif") type("image/avif"),
          url("./assets/hero-sredi-mirov.webp") type("image/webp"),
          url("./assets/hero-sredi-mirov.jpg") type("image/jpeg")
        )
        center top / cover no-repeat;
  }

  .topbar {
    width: 100% !important;
    min-height: 62px;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .brand-logo {
    width: 54px;
    max-width: 54px;
  }

  .brand-text {
    max-width: 122px;
    font-size: 11px;
  }

  .menu-toggle {
    min-width: 82px;
    min-height: 42px;
    padding-inline: 12px;
  }

  .hero-home {
    min-height: clamp(570px, 76svh, 680px);
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .hero-copy {
    padding: 20px;
    border-radius: 26px;
  }

  .hero h1 {
    max-width: 8.4ch;
    font-size: clamp(40px, 15vw, 56px);
  }

  .hero-subtitle {
    font-size: 16px;
    line-height: 1.48;
  }

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

  .hero-actions .button {
    min-width: 0;
    width: 100%;
    padding-inline: 14px;
  }

  .section.content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    overflow: visible;
    margin-top: -6px;
    padding-top: 8px;
    padding-bottom: 4px;
  }

  .release-links::-webkit-scrollbar,
  .home-feature-band::-webkit-scrollbar {
    display: none;
  }

  .album-panel,
  .track-panel,
  .video-panel {
    width: 100%;
    padding: 16px;
  }

  .panel-head {
    grid-template-columns: 1fr;
    gap: 4px;
    margin-bottom: 12px;
  }

  .panel-head .section-link {
    justify-self: start;
    min-height: 32px;
    font-size: 13px;
  }

  .album-layout,
  .home-album-layout {
    grid-template-columns: 112px minmax(0, 1fr) !important;
    align-items: start;
  }

  .album-copy {
    padding-top: 0;
  }

  .album-copy h2 {
    font-size: 28px;
  }

  .album-copy p {
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.45;
  }

  .album-chip-row {
    display: none;
  }

  .album-copy .button {
    min-height: 42px;
    margin-top: 12px;
    font-size: 12px;
  }

  .track-list {
    margin-top: 8px;
  }

  .audio-player {
    min-height: 52px;
    grid-template-columns: 34px minmax(0, 1fr);
    grid-template-rows: auto 4px;
  }

  .audio-time {
    display: none;
  }

  .audio-name {
    font-size: 14px;
    line-height: 1.25;
  }

  .home-video-feature video {
    min-height: 164px;
    max-height: min(70vh, 540px);
  }

  .banner {
    display: none;
  }

  .home-feature-band {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    margin-top: 8px;
    padding-top: 2px;
    padding-bottom: 4px;
    scroll-padding-left: var(--mobile-gutter);
    scroll-snap-type: x mandatory;
  }

  .home-story-card,
  .home-studio-card {
    flex: 0 0 min(88vw, 390px);
    padding: 18px;
    scroll-snap-align: start;
  }

  .home-story-card h2,
  .home-studio-card h2,
  .release-strip h2 {
    font-size: clamp(26px, 8vw, 32px);
    line-height: 1.04;
  }

  .home-story-card p:not(.eyebrow),
  .home-studio-card p:not(.eyebrow) {
    display: -webkit-box;
    overflow: hidden;
    font-size: 14px;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
  }

  .studio-actions .button,
  .studio-actions .section-link {
    width: 100%;
    justify-content: center;
  }

  .release-strip {
    display: block;
    margin-top: 8px;
    padding: 18px;
  }

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

  .release-links a {
    width: auto;
    min-height: 52px;
    padding: 0 10px;
    font-size: 12px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-top: 8px;
  }

  .footer-grid article {
    padding: 16px;
  }

  .footer-brand-card {
    grid-template-columns: 72px minmax(0, 1fr) !important;
  }

  .footer-brand-card p:not(.footer-brand-name) {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    gap: 10px;
    padding-bottom: 92px;
  }

  .order-form {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 16px;
  }

  .order-submit {
    width: 100%;
    min-width: 0;
  }

  .order-form-card,
  .order-format-card,
  .order-contact-card {
    grid-column: 1 / -1;
    min-height: 0;
  }

  .order-form-card {
    padding: 18px;
  }

  .order-form label {
    gap: 6px;
    font-size: 12px;
  }

  .order-form input,
  .order-form select,
  .order-form textarea {
    min-height: 46px;
    padding: 11px 12px;
    border-radius: 10px;
    font-size: 16px;
  }

  .order-form textarea {
    min-height: 118px;
  }

  .order-contact-card .card-actions {
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .order-contact-card .section-link,
  .order-format-card .section-link {
    width: 100%;
  }

  .studio-legal-card .studio-contact-list {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 761px) and (max-width: 1024px) {
  .hero-home {
    align-items: center;
    min-height: 650px;
  }

  .hero-copy {
    margin-left: 0;
  }

  .section.content-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
  }

  .video-panel {
    grid-column: 1 / -1;
  }

  .home-video-feature video {
    max-height: min(70vh, 540px);
  }
}

@media (max-width: 360px) {
  .hero-copy {
    padding: 18px;
  }

  .hero-home {
    min-height: clamp(560px, 76svh, 660px);
  }

  .hero h1 {
    font-size: clamp(38px, 14vw, 48px);
  }

  .hero-brand-lockup {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 10px;
  }

  .hero-brand-mark {
    width: 58px;
  }

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

  .album-panel,
  .track-panel,
  .video-panel,
  .home-story-card,
  .home-studio-card {
    width: 100%;
  }

  .album-layout,
  .home-album-layout {
    grid-template-columns: 96px minmax(0, 1fr) !important;
    gap: 12px;
  }
}

@media (max-width: 900px) {
  .topbar.is-menu-open .mobile-menu-panel {
    position: fixed !important;
    inset: 0 !important;
    z-index: 999 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    width: 100vw !important;
    height: 100dvh !important;
    min-height: 100vh !important;
    padding: calc(76px + env(safe-area-inset-top)) 16px max(16px, env(safe-area-inset-bottom)) !important;
    overflow-y: auto !important;
    overscroll-behavior: contain !important;
    background: rgba(2, 8, 19, 0.78) !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    backdrop-filter: blur(10px);
  }

  .topbar.is-menu-open .mobile-menu-panel::before {
    content: none !important;
  }

  .topbar.is-menu-open .mobile-menu-panel .nav,
  .topbar.is-menu-open .mobile-menu-panel .topbar-actions {
    position: relative !important;
    z-index: 1000 !important;
    display: grid !important;
    width: min(100%, 460px) !important;
    margin-inline: auto !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: none !important;
  }

  .topbar.is-menu-open .mobile-menu-panel .nav {
    grid-template-columns: 1fr !important;
    gap: 6px !important;
    max-height: none !important;
    padding: 14px !important;
    overflow: visible !important;
    border-radius: 18px 18px 12px 12px !important;
    background: rgba(6, 18, 38, 0.94) !important;
  }

  .topbar.is-menu-open .mobile-menu-panel .nav a {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    width: 100% !important;
    min-height: 48px !important;
    color: #f7fbff !important;
    font-family: "Cormorant Garamond", Georgia, serif !important;
    font-size: 24px !important;
    font-weight: 500 !important;
    line-height: 1.05 !important;
    letter-spacing: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .topbar.is-menu-open .mobile-menu-panel .topbar-actions {
    display: flex !important;
    justify-content: center !important;
    border-radius: 12px 12px 18px 18px !important;
    background: rgba(6, 18, 38, 0.94) !important;
  }
}

/* Mobile typography polish: calmer Russian line breaks. */
@media (max-width: 760px) {
  .hero h1,
  .page-hero-card h1,
  .home-story-card h2,
  .home-studio-card h2,
  .release-strip h2,
  .catalog-card h3,
  .about-duo-card h3,
  .footer-title,
  .footer-brand-name {
    word-break: normal;
    overflow-wrap: normal;
    hyphens: auto;
    text-wrap: balance;
  }

  .hero h1 {
    max-width: min(100%, 10.8ch);
    font-size: clamp(38px, 12vw, 50px);
    line-height: 1.02;
  }

  .page-hero-card h1 {
    font-size: clamp(34px, 9.4vw, 44px);
    line-height: 1.05;
  }

  .catalog-card h3,
  .about-duo-card h3 {
    font-size: clamp(26px, 6.7vw, 32px);
    line-height: 1.08;
    max-width: 100%;
  }

  .about-duo-card h3 {
    font-size: clamp(28px, 7.2vw, 34px);
    max-width: 100%;
  }

  .home-story-card h2,
  .home-studio-card h2,
  .release-strip h2 {
    font-size: clamp(27px, 7.3vw, 34px);
    line-height: 1.08;
    max-width: 100%;
  }

  .hero-subtitle,
  .page-hero-card .hero-subtitle,
  .catalog-card p,
  .home-story-card p:not(.eyebrow),
  .home-studio-card p:not(.eyebrow),
  .footer-note,
  .contact-list {
    word-break: normal;
    overflow-wrap: break-word;
    hyphens: manual;
  }

  .footer-brand-name {
    grid-column: 2;
    max-width: none;
    line-height: 1.04;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    max-width: min(100%, 10.2ch);
    font-size: clamp(36px, 11.2vw, 46px);
  }

  .page-hero-card h1 {
    font-size: clamp(32px, 8.8vw, 40px);
  }

  .catalog-card h3,
  .about-duo-card h3 {
    font-size: clamp(25px, 6.4vw, 30px);
    max-width: 100%;
  }

  .about-duo-card h3 {
    font-size: clamp(27px, 6.8vw, 32px);
  }

  .home-story-card h2,
  .home-studio-card h2,
  .release-strip h2 {
    font-size: clamp(26px, 7vw, 32px);
    max-width: 100%;
  }
}

@media (max-width: 340px) {
  .home-story-card h2,
  .home-studio-card h2,
  .release-strip h2 {
    font-size: 23px;
    line-height: 1.12;
  }
}

/* Mobile UX audit fixes: safer tap targets and less cramped controls. */
@media (max-width: 1024px) {
  .brand {
    min-height: 44px;
  }

  .section-link,
  .button,
  .release-links a,
  .social-row a,
  .video-release-card a,
  .album-chip-row a {
    min-height: 44px !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .audio-toggle,
  .global-audio-prev,
  .global-audio-toggle,
  .global-audio-next,
  .global-audio-close {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;
  }

  .site-intro-skip {
    min-height: 44px !important;
  }

  .nav a {
    min-height: 44px !important;
    display: inline-flex;
    align-items: center;
  }

  .topbar-actions .icon-link {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    min-height: 44px !important;
  }
}

@media (min-width: 761px) and (max-width: 1024px) {
  .home-feature-band {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: visible;
  }

  .home-story-card,
  .home-studio-card {
    width: auto;
    flex: initial;
  }

  .home-story-card h2,
  .home-studio-card h2 {
    font-size: clamp(28px, 3.8vw, 32px);
    line-height: 1.08;
  }
}

@media (max-width: 900px) and (orientation: landscape) and (max-height: 560px) {
  .home-video-feature {
    align-items: center;
    justify-content: center;
  }

  .home-video-feature video {
    width: min(70vw, 560px) !important;
    height: min(76svh, 330px) !important;
    min-height: 0 !important;
    max-height: min(76svh, 330px) !important;
    margin-inline: auto;
    aspect-ratio: auto;
    object-fit: contain;
    object-position: center center;
  }
}

