:root {
  --ink: #1f2533;
  --muted: #697184;
  --paper: #fffdf8;
  --cream: #fff4dc;
  --sun: #ffd166;
  --coral: #ef6f6c;
  --berry: #8b3f68;
  --teal: #168a83;
  --blue: #2454a6;
  --line: rgba(31, 37, 51, 0.13);
  --shadow: 0 22px 70px rgba(31, 37, 51, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

body.intro-active {
  overflow: hidden;
}

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

a {
  color: inherit;
}

.sr-only,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 20;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  color: #fff;
  background: var(--ink);
  border-radius: var(--radius);
}

.intro-overlay {
  position: fixed;
  z-index: 100;
  inset: 0;
  overflow: hidden;
  background: #079dc2;
}

.intro-overlay[hidden] {
  display: none;
}

.intro-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #079dc2;
}

.intro-overlay.is-revealing .intro-video {
  animation: paint-dry-fade 1.65s ease-in-out forwards;
}

.intro-overlay.is-revealing {
  background: transparent;
}

@keyframes paint-dry-fade {
  0% {
    opacity: 1;
    filter: saturate(1.1) brightness(1);
  }
  45% {
    opacity: 0.72;
    filter: saturate(0.82) brightness(1.16) blur(0.5px);
  }
  100% {
    opacity: 0;
    filter: saturate(0.55) brightness(1.28) blur(1.5px);
  }
}

.intro-skip {
  position: absolute;
  z-index: 3;
  right: clamp(14px, 3vw, 32px);
  bottom: clamp(14px, 3vw, 32px);
  min-height: 44px;
  padding: 11px 16px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: var(--radius);
  color: #fff;
  background: rgba(22, 25, 34, 0.52);
  font: inherit;
  font-weight: 850;
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.intro-skip:hover,
.intro-skip:focus-visible {
  background: rgba(22, 25, 34, 0.76);
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 14px clamp(18px, 5vw, 64px);
  color: #fff;
  background: rgba(20, 25, 37, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--ink);
  background: var(--sun);
  border-radius: 50%;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-name {
  font-family: "Arial Black", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  font-size: 15px;
  font-weight: 700;
}

.site-nav a {
  text-decoration: none;
  opacity: 0.88;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  opacity: 1;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: var(--ink);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(9, 15, 25, 0.9), rgba(9, 15, 25, 0.48) 48%, rgba(9, 15, 25, 0.1)),
    linear-gradient(0deg, rgba(9, 15, 25, 0.68), rgba(9, 15, 25, 0.02) 52%);
}

.hero-content {
  position: relative;
  width: min(760px, calc(100% - 36px));
  margin: 0 clamp(18px, 7vw, 92px) 10vh;
}

.eyebrow,
.section-kicker,
.label {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--sun);
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(54px, 10vw, 126px);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: 0;
}

.hero-lead {
  width: min(610px, 100%);
  margin-bottom: 28px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(17px, 1.9vw, 22px);
  font-style: italic;
  font-weight: 200;
  line-height: 1.45;
  opacity: 0.88;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 850;
  text-decoration: none;
}

.button.primary {
  color: var(--ink);
  background: var(--sun);
}

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.72);
}

.button.secondary.light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.48);
}

.button.dark {
  color: #fff;
  background: var(--ink);
}

.section {
  padding: clamp(68px, 10vw, 120px) clamp(18px, 6vw, 86px);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: clamp(28px, 6vw, 74px);
  align-items: start;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: end;
  margin-bottom: 34px;
}

.section-heading p,
.contacts p {
  color: var(--muted);
  font-size: 18px;
}

.song-card,
.news-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 34px rgba(31, 37, 51, 0.07);
}

.social-section {
  background: linear-gradient(180deg, #17223a 0%, #315fbd 42%, #f4f6fb 100%);
}

.social-section .section-kicker {
  color: var(--sun);
}

.social-section h2,
.social-section .section-heading p {
  color: #fff;
}

.social-section .section-heading p {
  font-style: italic;
}

.social-grid {
  display: grid;
  gap: 18px;
  width: min(880px, 100%);
  margin-inline: auto;
}

.social-card {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  min-height: 92px;
  padding: 18px 22px;
  color: var(--ink);
  background: #fff;
  border-radius: var(--radius);
  text-decoration: none;
  box-shadow: 0 16px 38px rgba(31, 37, 51, 0.12);
}

.social-card:hover,
.social-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(31, 37, 51, 0.17);
}

.social-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 14px;
}

.social-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.social-icon.yandex {
  background: #fff1bd;
}

.social-icon.apple {
  background: #f1f1f1;
}

.social-icon.vk {
  background: #2787f5;
}

.social-icon.youtube {
  background: #ff1e1e;
}

.social-icon.instagram {
  background: linear-gradient(135deg, #feda75, #fa7e1e 35%, #d62976 60%, #4f5bd5);
}

.social-icon.tiktok {
  background: #050505;
}

.social-icon.likee {
  background: #111;
}

.social-icon.telegram {
  background: #28a8ea;
}

.social-icon.yappy {
  background: #15dbc4;
}

.social-icon.dzen {
  background: #f1f3f6;
}

.social-name {
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 750;
}

.social-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 138px;
  min-height: 54px;
  padding: 12px 18px;
  color: #fff;
  background: #ff2448;
  border-radius: var(--radius);
  font-size: 18px;
  font-weight: 900;
}

.music {
  background: #f4fbf9;
}

.release-highlight {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
  padding: clamp(22px, 4vw, 42px);
  color: #fff;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.release-highlight h3 {
  font-size: clamp(30px, 5vw, 54px);
}

.release-highlight p:not(.label) {
  max-width: 580px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.86);
}

.release-highlight .label {
  color: var(--sun);
}

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

.song-card,
.news-card {
  display: flex;
  flex-direction: column;
  min-height: 176px;
  padding: 24px;
}

.song-card {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  justify-content: flex-end;
  color: #fff;
  background: linear-gradient(145deg, #315fbd, #17a6a3);
}

.song-card::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(9, 14, 25, 0.2) 0%, rgba(9, 14, 25, 0.76) 100%);
  content: "";
}

.song-card-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.song-card h3,
.song-card p,
.song-card .song-button {
  position: relative;
  z-index: 2;
}

.news-card time {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--berry);
  font-size: 13px;
  font-weight: 900;
}

.song-card p,
.news-card p {
  color: var(--muted);
}

.song-card p {
  color: rgba(255, 255, 255, 0.84);
}

.song-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 40px;
  margin-top: auto;
  padding: 9px 14px;
  color: #fff;
  background: var(--blue);
  border-radius: var(--radius);
  font-weight: 900;
  text-decoration: none;
}

.news {
  background: var(--paper);
}

.heading-icon {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-right: 12px;
  color: var(--ink);
  background: var(--sun);
  border-radius: 50%;
  font-size: 24px;
  vertical-align: 0.08em;
}

.contacts {
  padding-top: 0;
  background: linear-gradient(180deg, var(--paper), #f3f8ff);
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 28px;
  align-items: center;
  padding: clamp(28px, 5vw, 54px);
  color: #fff;
  background: var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-band .section-kicker {
  color: var(--sun);
}

.contact-band p {
  color: rgba(255, 255, 255, 0.76);
}

.contact-actions {
  justify-content: flex-end;
}

.contact-button {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  width: 100%;
  min-height: 64px;
  padding: 12px 16px;
  color: var(--ink);
  background: #fff;
  border-radius: var(--radius);
  font-weight: 900;
  text-decoration: none;
}

.contact-button:hover,
.contact-button:focus-visible {
  background: var(--cream);
}

.contact-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: #fff;
  background: var(--coral);
  border-radius: 50%;
  font-size: 23px;
}

.contact-icon.telegram-contact {
  background: #28a8ea;
}

.contact-icon img,
.contact-icon svg {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.site-footer {
  display: grid;
  gap: 12px;
  padding: 26px clamp(18px, 6vw, 86px);
  color: var(--muted);
  background: #fff;
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
}

.footer-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 18px;
}

.footer-legal {
  display: grid;
  gap: 6px;
  max-width: 980px;
  font-size: 0.78rem;
  line-height: 1.45;
  color: rgba(87, 83, 76, 0.72);
}

@media (max-width: 920px) {
  .menu-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    padding: 9px;
    border: 1px solid rgba(255, 255, 255, 0.36);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.08);
  }

  .menu-toggle span:not(.sr-only) {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px;
    color: var(--ink);
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 13px 14px;
  }

  .hero {
    min-height: 84vh;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(9, 15, 25, 0.84), rgba(9, 15, 25, 0.18) 66%),
      linear-gradient(90deg, rgba(9, 15, 25, 0.65), rgba(9, 15, 25, 0.08));
  }

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

  .two-column,
  .section-heading,
  .contact-band {
    grid-template-columns: 1fr;
  }

  .contact-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 66px;
    padding-inline: 14px;
  }

  .brand-name {
    max-width: 180px;
    font-size: 18px;
  }

  .site-nav {
    top: 66px;
    left: 12px;
    right: 12px;
  }

  .hero {
    min-height: 82vh;
  }

  .hero-image {
    object-position: center 54%;
  }

  .hero-content {
    width: calc(100% - 28px);
    margin: 0 14px 6vh;
  }

  .hero-lead {
    max-width: 94%;
    margin-bottom: 18px;
    font-size: clamp(13px, 4vw, 16px);
    line-height: 1.18;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .social-grid,
  .song-grid,
  .news-grid {
    grid-template-columns: 1fr;
  }

  .song-grid {
    gap: 10px;
  }

  .song-card {
    min-height: 92px;
    padding: 12px 14px;
  }

  .song-card::before {
    background:
      linear-gradient(90deg, rgba(9, 14, 25, 0.84) 0%, rgba(9, 14, 25, 0.56) 58%, rgba(9, 14, 25, 0.3) 100%),
      linear-gradient(180deg, rgba(9, 14, 25, 0.08), rgba(9, 14, 25, 0.52));
  }

  .song-card h3 {
    max-width: calc(100% - 104px);
    margin-bottom: 2px;
    font-size: 20px;
    line-height: 1.05;
  }

  .song-card p {
    max-width: calc(100% - 104px);
    margin-bottom: 0;
    font-size: 12px;
    line-height: 1.2;
  }

  .song-button {
    position: absolute;
    right: 12px;
    bottom: 12px;
    min-height: 34px;
    padding: 7px 10px;
    font-size: 13px;
  }

  .social-card {
    grid-template-columns: 46px minmax(0, 1fr);
    min-height: 88px;
    padding: 16px;
  }

  .social-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }

  .social-action {
    grid-column: 2;
    width: 100%;
    min-width: 0;
    min-height: 46px;
    margin-top: -4px;
  }

  .release-highlight {
    align-items: stretch;
    flex-direction: column;
  }

  .intro-skip {
    left: 14px;
    right: 14px;
    width: calc(100% - 28px);
  }

}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .intro-overlay {
    transition: none;
  }

  .intro-overlay.is-revealing .intro-video {
    animation: none;
    opacity: 0;
  }
}

.news-card-empty span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--berry);
  font-size: 13px;
  font-weight: 900;
}

.news-card-with-image {
  overflow: hidden;
  padding: 0;
}

.news-card-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  background:
    radial-gradient(circle at 50% 34%, rgba(255, 207, 94, 0.18), transparent 46%),
    #f7f3ea;
  object-fit: contain;
  object-position: center;
}

.news-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.news-link {
  margin-top: auto;
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.news-link:hover,
.news-link:focus-visible {
  text-decoration: underline;
}
