/*@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,600&family=IBM+Plex+Sans+Condensed:wght@500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap");*/
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Condensed:wght@500;600;700&family=Manrope:wght@400;500;600;700;800&family=Montserrat+Alternates:wght@500;600;700;800&display=swap");

:root {
  --page-bg: #050505;
  --surface: rgba(12, 12, 12, 0.72);
  --surface-solid: #0b0b0b;
  --surface-soft: #131313;
  --text: #f7f3ea;
  --text-soft: #ded6c7;
  --muted: #b5ab99;
  --muted-2: #82786a;
  --line: rgba(247, 243, 234, 0.12);
  --line-strong: rgba(247, 243, 234, 0.28);
  --platinum: #f7f3ea;
  --champagne: #d6c2a0;
  --champagne-2: #a88958;
  --champagne-soft: rgba(214, 194, 160, 0.16);
  --black: #050505;
  --shadow: rgba(0, 0, 0, 0.68);
  --max: 1120px;
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
 /*  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif; */
  --font-display: "Montserrat Alternates", "Manrope", "Segoe UI", Arial, sans-serif;
  --font-body: "Manrope", "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  --font-accent: "IBM Plex Sans Condensed", "Arial Narrow", Arial, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--page-bg);
  color: var(--text);
  font-family: var(--font-body);
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% -12%, rgba(214, 194, 160, 0.16), transparent 38rem),
    radial-gradient(circle at 90% 20%, rgba(168, 137, 88, 0.10), transparent 28rem),
    linear-gradient(180deg, #070707 0%, #020202 100%);
  color: var(--text);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.020) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.014) 1px, transparent 1px);
  background-size: 92px 92px;
  mask-image: radial-gradient(circle at center, #000 0%, transparent 80%);
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 50% 45%, transparent 0%, transparent 44%, rgba(0, 0, 0, 0.76) 100%),
    linear-gradient(180deg, rgba(255,255,255,0.018), rgba(0,0,0,0));
}

img,
svg {
  display: block;
}

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

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

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--champagne);
  outline-offset: 4px;
}

::selection {
  background: var(--champagne);
  color: var(--black);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--platinum);
  color: var(--black);
  transform: translateY(-160%);
  transition: transform 180ms var(--ease);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 24px clamp(20px, 4vw, 56px);
  border-bottom: 1px solid transparent;
  background:
    linear-gradient(180deg, rgba(7, 7, 7, 0.72), rgba(7, 7, 7, 0.10));
  transition:
    padding 260ms var(--ease),
    background-color 260ms var(--ease),
    border-color 260ms var(--ease),
    backdrop-filter 260ms var(--ease),
    box-shadow 260ms var(--ease);
}

.site-header.is-scrolled {
  padding-top: 13px;
  padding-bottom: 13px;
  border-color: var(--line);
  background-color: rgba(5, 5, 5, 0.27);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

@supports not (backdrop-filter: blur(22px)) {
  .site-header.is-scrolled {
    background-color: rgba(5, 5, 5, 0.94);
  }
}

.brand-mini {
  display: inline-flex;
  width: 92px;
  align-items: center;
  opacity: 0.96;
  transition: opacity 180ms var(--ease), transform 180ms var(--ease), filter 180ms var(--ease);
}

.brand-mini:hover {
  opacity: 1;
  filter: drop-shadow(0 10px 28px rgba(214, 194, 160, 0.22));
  transform: translateY(-1px);
}

.brand-mini__logo {
  width: 64px;
  height: auto;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2.2vw, 34px);
  color: rgba(247, 243, 234, 0.68);
  font-family: var(--font-accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.site-nav a,
.lang-switch a {
  position: relative;
  transition: color 180ms var(--ease), opacity 180ms var(--ease), text-shadow 180ms var(--ease), transform 180ms var(--ease);
}

.site-nav a {
  isolation: isolate;
  padding: 11px 4px;
}

.site-nav a::before {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(247, 243, 234, 0.32), rgba(214, 194, 160, 0.94), rgba(247, 243, 234, 0.32), transparent);
  opacity: 0;
  transform: scaleX(0.18);
  transform-origin: center;
  transition: opacity 240ms var(--ease), transform 240ms var(--ease);
}

.site-nav a::after {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  width: 58px;
  height: 30px;
  pointer-events: none;
  content: "";
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(247, 243, 234, 0.14), transparent 58%),
    radial-gradient(circle, rgba(214, 194, 160, 0.20), transparent 72%);
  filter: blur(1px);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.62);
  transition: opacity 240ms var(--ease), transform 240ms var(--ease);
}

.site-nav a:hover,
.lang-switch a:hover {
  color: var(--text);
  text-shadow:
    0 0 18px rgba(214, 194, 160, 0.30),
    0 0 46px rgba(247, 243, 234, 0.10);
  transform: translateY(-1px);
}

.site-nav a:hover::before {
  opacity: 1;
  transform: scaleX(1);
}

.site-nav a:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-self: end;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--muted);
  font-family: var(--font-accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.11em;
}

.lang-switch a,
.lang-switch span {
  display: inline-flex;
  min-width: 34px;
  min-height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
}

.lang-switch span {
  background: var(--platinum);
  color: var(--black);
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  padding: 126px 20px 86px;
  overflow: hidden;
  place-items: center;
  isolation: isolate;
}

.hero__backdrop {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: url("../img/hero-bg.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.92;
  transform: scale(1.02);
}

.hero__backdrop::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 48% 42%, rgba(8, 8, 8, 0.98), #0000 20rem), radial-gradient(circle at 76% 32%, rgba(214, 194, 160, 0.13), #00000047 26rem), linear-gradient(180deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.36) 45%, rgba(0, 0, 0, 0.29) 100%), linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.56) 39%, rgba(0, 0, 0, 0.26) 100%)
}

.hero__backdrop::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.4) 0%, rgba(0,0,0,0.08) 20%, rgba(0, 0, 0, 0.48) 50%, rgba(0,0,0,0.15) 78%, rgba(0, 0, 0, 0.45) 100%), radial-gradient(circle at 50% 50%, transparent 0%, rgba(0, 0, 0, 0) 78%)
}

.hero__grain {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    radial-gradient(circle at 24% 20%, rgba(255, 255, 255, 0.10), transparent 1px),
    radial-gradient(circle at 82% 42%, rgba(255, 255, 255, 0.06), transparent 1px);
  background-size: 5px 5px, 7px 7px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 24%, #000 78%, transparent 100%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: min(780px, 100%);
  margin: 0 auto;
  text-align: center;
}

.hero__logo {
  width: clamp(112px, 30vw, 190px);
  margin: 0 auto 34px;
  filter: drop-shadow(0 28px 80px rgba(214, 194, 160, 0.18));
}

.eyebrow,
.section-kicker {
  margin: 0 0 22px;
  color: var(--champagne);
  font-family: var(--font-accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: var(--font-display);
}

h1 {
  width: min(760px, 100%);
  margin: 0 auto 24px;
  font-size: clamp(44px, 6.8vw, 86px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 4.8vw, 60px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

h3 {
  margin-bottom: 12px;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.hero__lead {
  width: min(660px, 100%);
  margin: 0 auto;
  color: var(--text-soft);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.62;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 40px;
}

.button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 26px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-family: var(--font-accent);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1;
  transition:
    transform 180ms var(--ease),
    border-color 180ms var(--ease),
    background-color 180ms var(--ease),
    color 180ms var(--ease),
    box-shadow 180ms var(--ease),
    text-shadow 180ms var(--ease);
}

.button::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  border-radius: inherit;
  background:
    linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.08) 38%, rgba(255, 255, 255, 0.18) 50%, rgba(255, 255, 255, 0.08) 62%, transparent 100%);
  opacity: 0;
  transform: translateX(-38%);
  transition:
    opacity 220ms var(--ease),
    transform 420ms var(--ease);
}

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

.button:hover::before {
  opacity: 1;
  transform: translateX(38%);
}

.button--primary {
  border-color: rgba(247, 243, 234, 0.82);
  background: var(--platinum);
  color: var(--black);
  box-shadow: 0 18px 58px rgba(247, 243, 234, 0.12);
}

.button--primary:hover {
  border-color: #fff;
  background: #fff;
  box-shadow: 0 24px 72px rgba(247, 243, 234, 0.18);
}

.button--primary::before {
  background:
    linear-gradient(115deg, transparent 0%, rgba(5, 5, 5, 0.035) 40%, rgba(5, 5, 5, 0.080) 50%, rgba(5, 5, 5, 0.035) 60%, transparent 100%);
}

.button--ghost {
  background: rgba(255, 255, 255, 0.052);
  color: var(--text);
}

.button--ghost:hover {
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.09);
  text-shadow:
    0 0 18px rgba(214, 194, 160, 0.22),
    0 0 38px rgba(247, 243, 234, 0.08);
}

.button__text {
  position: relative;
  z-index: 1;
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  white-space: nowrap;
  line-height: 1;
  transform: translateY(0);
}

.button__icon {
  position: relative;
  z-index: 1;
  display: inline-grid;
  width: 24px;
  height: 28px;
  flex: 0 0 24px;
  place-items: center;
  color: currentColor;
  line-height: 0;
  opacity: 0.96;
  transform: translateY(0);
  transition:
    transform 180ms var(--ease),
    opacity 180ms var(--ease),
    filter 180ms var(--ease);
}

.button__icon::before {
  display: none;
}

.button__icon svg {
  display: block;
  width: 21px;
  height: 21px;
  overflow: visible;
}

.button__icon--play {
  width: 30px;
  height: 28px;
  flex: 0 0 30px;
}

.button__icon--play svg {
  width: 30px;
  height: 30px;
  margin-left: 0;
  transform: translateX(2px);
}

.button__icon--telegram svg {
  width: 22px;
  height: 22px;
  transform: translateX(-1px);
}

.button--primary .button__icon {
  color: var(--black);
  filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.34));
}

.button--ghost .button__icon {
  color: var(--champagne);
  filter:
    drop-shadow(0 0 10px rgba(214, 194, 160, 0.18))
    drop-shadow(0 0 22px rgba(247, 243, 234, 0.06));
}

.button:hover .button__icon {
  opacity: 1;
  transform: translateX(2px) scale(1.08);
}

.button:hover .button__icon--play {
  transform: translateX(2px) scale(1.08);
}

.platform-icon {
  display: inline-flex;
  width: 22px;
  height: 22px;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: 999px;
  color: currentColor;
  font-family: var(--font-accent);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  opacity: 0.88;
}

.platform-icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: 999px;
  color: currentColor;
  font-family: var(--font-accent);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  opacity: 0.90;
  transition:
    opacity 220ms var(--ease),
    transform 220ms var(--ease);
}

.platform-pill:hover .platform-icon,
.platform-pill:focus-visible .platform-icon {
  opacity: 1;
  transform: scale(1.06);
}

.platform-pill span:last-child {
  position: relative;
  z-index: 1;
}

.platform-icon--bandlink::before {
  content: "∞";
  font-size: 13px;
  transform: translateY(-1px);
}

.platform-icon--yandex::before {
  content: "Я";
  font-size: 9px;
}

.platform-icon--vk::before {
  content: "VK";
  font-size: 7px;
  letter-spacing: -0.04em;
}

.platform-icon--youtube::before {
  content: "▶";
  font-size: 9px;
  transform: translateX(1px);
}

.platform-icon--spotify::before {
  content: "S";
}

.platform-icon--deezer::before {
  content: "D";
}

.platform-icon--zvuk::before {
  content: "Z";
}

.scroll-cue {
  position: absolute;
  right: auto;
  bottom: clamp(26px, 5.4vh, 56px);
  left: 50%;
  z-index: 4;
  display: inline-grid;
  gap: 12px;
  justify-items: center;
  color: var(--muted);
  font-family: var(--font-accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transform: translateX(-50%);
  transition: color 180ms var(--ease), transform 180ms var(--ease);
}

.hero__inner .scroll-cue {
  position: relative;
  bottom: auto;
  left: auto;
  margin: 34px auto 0;
  transform: none;
}

.scroll-cue:hover {
  color: var(--platinum);
  transform: translateX(-50%) translateY(2px);
}

.hero__inner .scroll-cue:hover {
  transform: translateY(2px);
}

.scroll-cue__line {
  position: relative;
  display: block;
  width: 1px;
  height: 82px;
  overflow: hidden;
  background: linear-gradient(180deg, transparent, rgba(247, 243, 234, 0.20), transparent);
  box-shadow:
    0 0 14px rgba(247, 243, 234, 0.12),
    0 0 30px rgba(214, 194, 160, 0.10);
}

.scroll-cue__line::before {
  position: absolute;
  top: -100%;
  left: 0;
  width: 1px;
  height: 100%;
  content: "";
  background: linear-gradient(180deg, transparent, var(--champagne), rgba(247, 243, 234, 0.92), transparent);
  box-shadow:
    0 0 14px rgba(247, 243, 234, 0.42),
    0 0 32px rgba(214, 194, 160, 0.24);
  animation: scroll-line 1.85s var(--ease) infinite;
}

@keyframes scroll-line {
  0% { transform: translateY(0); }
  100% { transform: translateY(200%); }
}

.section {
  position: relative;
  padding: clamp(78px, 10vw, 142px) 0;
  border-top: 1px solid var(--line);
}

.section--about {
  background:
    radial-gradient(circle at 12% 0%, rgba(214, 194, 160, 0.10), transparent 34rem),
    linear-gradient(180deg, rgba(7, 7, 7, 0.74), rgba(3, 3, 3, 0.98));
}

.section--music {
  position: relative;
  z-index: 1;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 88% 30%, rgba(214, 194, 160, 0.08), transparent 30rem),
    #070707;
}

.section--music > .container {
  position: relative;
  z-index: 2;
}

.section--contacts {
  position: relative;
  z-index: 2;
  margin-top: 0;
  overflow: hidden;
  isolation: isolate;
  border-top: 0;
  background: #020202;
}

.section--contacts::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  content: "";
  background-image: url("../img/footer-back_n.webp");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  opacity: 0.94;
  transform: scale(1.012);
}

.section--contacts::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(
      180deg,
      #020202 0px,
      rgba(2, 2, 2, 0.99) 70px,
      rgba(2, 2, 2, 0.94) 135px,
      rgba(2, 2, 2, 0.78) 205px,
      rgba(2, 2, 2, 0.46) 265px,
      rgba(2, 2, 2, 0) 330px
    ),
    linear-gradient(
      180deg,
      rgba(2, 2, 2, 0) 0%,
      rgba(2, 2, 2, 0.28) 54%,
      rgba(2, 2, 2, 0.82) 100%
    ),
    radial-gradient(circle at 50% 42%, rgba(247, 243, 234, 0.065), transparent 28rem),
    radial-gradient(circle at 50% 58%, rgba(214, 194, 160, 0.10), transparent 42rem),
    linear-gradient(90deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.18) 50%, rgba(0, 0, 0, 0.62) 100%);
}

.section--contacts > .container {
  position: relative;
  z-index: 2;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  gap: clamp(40px, 7vw, 96px);
  align-items: start;
}

.text-block {
  color: var(--muted);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.74;
}

.text-block p:last-child,
.music-panel p:last-child {
  margin-bottom: 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: clamp(40px, 6vw, 72px);
}

.feature-card {
  position: relative;
  min-height: 260px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.080), rgba(255, 255, 255, 0.018)),
    #080808;
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.24);
}

.feature-card::before {
  position: absolute;
  inset: -1px;
  content: "";
  border-radius: inherit;
  background: radial-gradient(circle at 18% 0%, rgba(214, 194, 160, 0.20), transparent 14rem);
  opacity: 0.58;
  pointer-events: none;
}

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

.feature-card__index {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  margin-bottom: 58px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--champagne);
  font-family: var(--font-accent);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.feature-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.62;
}

.music-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.34fr);
  gap: 38px;
  align-items: stretch;
  padding: clamp(30px, 5vw, 56px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.086), rgba(255, 255, 255, 0.020)),
    radial-gradient(circle at 0% 0%, rgba(214, 194, 160, 0.12), transparent 24rem),
    var(--surface-solid);
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.34);
}

.music-panel h2 {
  margin-bottom: 22px;
}

.music-panel p {
  max-width: 720px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.68;
}

.platform-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.platform-pill {
  position: relative;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 9px;
  overflow: hidden;
  padding: 0 15px;
  border: 1px solid rgba(247, 243, 234, 0.16);
  border-radius: 999px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.072), rgba(255, 255, 255, 0.018)),
    rgba(255, 255, 255, 0.030);
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 740;
  text-decoration: none;
  box-shadow:
    inset 0 1px 0 rgba(247, 243, 234, 0.055),
    0 10px 28px rgba(0, 0, 0, 0);
  transition:
    color 220ms var(--ease),
    border-color 220ms var(--ease),
    background-color 220ms var(--ease),
    box-shadow 220ms var(--ease),
    transform 220ms var(--ease);
}

.platform-pill::before {
  position: absolute;
  top: -40%;
  bottom: -40%;
  left: -55%;
  width: 46%;
  pointer-events: none;
  content: "";
  background: linear-gradient(
    90deg,
    transparent,
    rgba(247, 243, 234, 0.20),
    transparent
  );
  opacity: 0;
  transform: skewX(-18deg);
  transition:
    left 520ms var(--ease),
    opacity 220ms var(--ease);
}

.platform-pill:hover,
.platform-pill:focus-visible {
  border-color: rgba(214, 194, 160, 0.52);
  color: var(--platinum);
  background:
    linear-gradient(145deg, rgba(214, 194, 160, 0.14), rgba(255, 255, 255, 0.026)),
    rgba(255, 255, 255, 0.040);
  box-shadow:
    0 16px 44px rgba(0, 0, 0, 0.26),
    0 0 26px rgba(214, 194, 160, 0.10),
    inset 0 1px 0 rgba(247, 243, 234, 0.10);
  transform: translateY(-2px);
}

.platform-pill:hover::before,
.platform-pill:focus-visible::before {
  left: 110%;
  opacity: 1;
}

.platform-pill:focus-visible {
  outline: 2px solid rgba(214, 194, 160, 0.54);
  outline-offset: 3px;
}

.platform-pill--all {
  border-color: rgba(214, 194, 160, 0.34);
  color: var(--platinum);
}

.music-aside {
  display: flex;
  min-height: 250px;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at 50% 0%, rgba(214, 194, 160, 0.18), transparent 14rem),
    rgba(255, 255, 255, 0.030);
}

.music-aside__label {
  color: var(--muted-2);
  font-family: var(--font-accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.20em;
  text-transform: uppercase;
}

.music-aside__title {
  margin: 0;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 760;
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.music-aside__cover {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid rgba(247, 243, 234, 0.14);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.42),
    0 0 42px rgba(214, 194, 160, 0.10);
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
  margin-bottom: clamp(30px, 4vw, 50px);
}

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

.contact-card {
  position: relative;
  min-height: 270px;
  padding: 25px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.078), rgba(255, 255, 255, 0.018)),
    rgba(8, 8, 8, 0.84);
  box-shadow:
    0 22px 82px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(247, 243, 234, 0.045);
  transition:
    transform 220ms var(--ease),
    border-color 220ms var(--ease),
    background-color 220ms var(--ease),
    box-shadow 220ms var(--ease);
}

.contact-card::before {
  position: absolute;
  inset: -1px;
  pointer-events: none;
  content: "";
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(214, 194, 160, 0.22), transparent 36%),
    radial-gradient(circle at 20% 0%, rgba(214, 194, 160, 0.22), transparent 13rem);
  opacity: 0;
  transition: opacity 220ms var(--ease);
}

.contact-card::after {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 62px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(214, 194, 160, 0.54));
  opacity: 0.64;
}

.contact-card:hover {
  border-color: rgba(247, 243, 234, 0.32);
  box-shadow: 0 26px 88px rgba(0, 0, 0, 0.34);
  transform: translateY(-5px);
}

.contact-card:hover::before {
  opacity: 1;
}

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

.contact-card__top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-bottom: 62px;
}

.contact-card__index {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--champagne);
  font-family: var(--font-accent);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.contact-card__icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(247, 243, 234, 0.16);
  border-radius: 999px;
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.034);
}

.contact-card__icon svg {
  width: 19px;
  height: 19px;
}

.contact-card__label {
  display: block;
  margin-bottom: 12px;
  color: var(--muted-2);
  font-family: var(--font-accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.20em;
  text-transform: uppercase;
}

.contact-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--text);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 740;
  letter-spacing: -0.045em;
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.contact-card span:last-child {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.site-footer {
  position: relative;
  z-index: 3;
  margin-top: -1px;
  overflow: hidden;
  isolation: isolate;
  padding: 36px 0 32px;
  border-top: 1px solid rgba(247, 243, 234, 0.08);
  background: #020202;
}

.site-footer::before {
  position: absolute;
  inset: -82px 0 0;
  z-index: 0;
  pointer-events: none;
  content: "";
  background-image: url("../img/hero-bg.webp");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  opacity: 0.58;
  transform: scale(1.02);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 42%, #000 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 42%, #000 100%);
}

.site-footer::after {
  position: absolute;
  inset: -82px 0 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(180deg, rgba(2, 2, 2, 0.24) 0%, rgba(2, 2, 2, 0.62) 42%, rgba(2, 2, 2, 0.86) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.56), rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.56));
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 38%, #000 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 38%, #000 100%);
}

.footer-inner {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  color: var(--muted-2);
  font-family: var(--font-accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-links {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
  align-items: center;
}

.footer-links a {
  position: relative;
  color: var(--muted);
  transition: color 180ms var(--ease), text-shadow 180ms var(--ease);
}

.footer-links a:hover {
  color: var(--text);
  text-shadow: 0 0 20px rgba(214, 194, 160, 0.22);
}

@media (min-width: 901px) {
  .music-panel {
    min-height: 494px;
  }

  .music-aside {
    min-height: 404px;
    justify-content: flex-start;
    gap: 26px;
  }

  .music-aside__cover {
    flex: 0 0 auto;
  }

  .music-aside .button {
    margin-top: auto;
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: auto auto;
    gap: 16px;
  }

  .site-nav {
    display: none;
  }

  .brand-mini,
  .brand-mini__logo {
    width: 78px;
  }

  .hero {
    padding-top: 112px;
  }

  .split,
  .music-panel,
  .feature-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .music-panel {
    align-items: start;
  }

  .music-aside {
    min-height: 220px;
  }

  .section-head {
    display: block;
  }

  .contact-card,
  .feature-card {
    min-height: 220px;
  }

  .contact-card__top {
    margin-bottom: 44px;
  }

  .scroll-cue {
    right: auto;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
  }

  .hero__inner .scroll-cue {
    bottom: auto;
    left: auto;
    transform: none;
  }

  .scroll-cue:hover {
    transform: translateX(-50%) translateY(2px);
  }

  .hero__inner .scroll-cue:hover {
    transform: translateY(2px);
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 28px), var(--max));
  }

  .site-header {
    padding-right: 14px;
    padding-left: 14px;
  }

  .hero {
    padding-right: 14px;
    padding-left: 14px;
  }

  .hero__logo {
    width: 136px;
  }

  .hero__actions,
  .button {
    width: 100%;
  }

  .button {
    padding-right: 18px;
    padding-left: 18px;
  }

  s {
    gap: 4px;
  }

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

  .footer-links {
    justify-content: flex-start;
  }
}

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

@media (max-width: 560px) {
  .music-panel {
    padding: 28px 14px;
  }

  .music-aside {
    width: min(100%, 292px);
    min-height: auto;
    margin: 0 auto;
    padding: 20px;
    gap: 16px;
    justify-content: flex-start;
    border-radius: 24px;
  }

  .music-aside__label {
    margin-bottom: 0;
    font-size: 10px;
    letter-spacing: 0.18em;
  }

  .music-aside__cover {
    width: 100%;
    max-width: 220px;
    align-self: center;
    border-radius: 18px;
  }

  .music-aside .button {
    width: 100%;
    max-width: 220px;
    min-height: 56px;
    align-self: center;
    padding-right: 18px;
    padding-left: 18px;
  }

  .music-aside .button__icon--play {
    width: 28px;
    height: 28px;
    flex-basis: 28px;
  }

  .music-aside .button__icon--play svg {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 800px) {
  .hero__backdrop {
    background-position: 18% center;
  }

  .section--contacts::before {
    background-position: 82% top;
  }

  .site-footer::before {
    background-position: 82% bottom;
  }
}

@media (max-width: 800px) {
  h1 {
  font-size: clamp(30px, 6.8vw, 60px);
  }
  .hero__backdrop {
    background-position: 24% center;
    opacity: 1;
  }

  .hero__backdrop::before {
    background:
      radial-gradient(circle at 42% 28%, rgba(8, 8, 8, 0.42), transparent 18rem),
      radial-gradient(circle at 70% 28%, rgba(214, 194, 160, 0.16), transparent 24rem),
      linear-gradient(180deg, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.28) 46%, rgba(0, 0, 0, 0.42) 100%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.36) 54%, rgba(0, 0, 0, 0.24) 100%);
  }

  .hero__backdrop::after {
    background:
      linear-gradient(180deg, rgba(247, 243, 234, 0.08) 0%, rgba(247, 243, 234, 0.03) 22%, rgba(0, 0, 0, 0) 46%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.04) 28%, rgba(0, 0, 0, 0.32) 72%, rgba(0, 0, 0, 0.36) 100%);
  }

  .section--contacts::before {
    background-position: 82% top;
  }

  .site-footer::before {
    background-position: 82% bottom;
  }

  .hero__logo {
  margin: 0 auto 10px;
  }
}