:root {
  --bg: #f7f8fb;
  --surface: #ffffff;
  --ink: #111314;
  --muted: #626976;
  --soft: #eef2f8;
  --line: #dbe1ec;
  --accent: #2457ff;
  --accent-dark: #173fd0;
  --neon-pink: #f03cff;
  --hero-text: #f5f7ff;
  --hero-muted: #c8cde0;
  --dark-bg: #030510;
  --dark-surface: rgba(245, 247, 255, 0.08);
  --dark-surface-strong: rgba(245, 247, 255, 0.12);
  --dark-line: rgba(245, 247, 255, 0.16);
  --dark-muted: #bbc2d8;
  --max: 1180px;
  --header: 76px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, Onest, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--accent);
}

:focus-visible {
  outline: 3px solid rgba(36, 87, 255, 0.35);
  outline-offset: 4px;
}

.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 {
  position: fixed;
  z-index: 10000;
  top: 16px;
  left: 16px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  overflow: visible;
  border: 1px solid var(--ink);
  background: var(--surface);
  color: var(--ink);
  white-space: normal;
}

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

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: rgba(3, 5, 16, 0.86);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(14px);
}

.site-header.is-scrolled {
  border-bottom-color: rgba(255, 255, 255, 0.14);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header);
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 12px;
  color: var(--hero-text);
  text-decoration: none;
}

.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.brand span {
  display: grid;
}

.brand strong {
  font-size: 0.94rem;
  font-weight: 760;
  line-height: 1.1;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
}

.site-nav a {
  color: rgba(245, 247, 255, 0.72);
  font-size: 0.88rem;
  font-weight: 650;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--hero-text);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--hero-text);
  cursor: pointer;
}

.menu-toggle-line,
.menu-toggle-line::before,
.menu-toggle-line::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 1px;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-toggle-line {
  position: relative;
}

.menu-toggle-line::before,
.menu-toggle-line::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle-line::before {
  top: -6px;
}

.menu-toggle-line::after {
  top: 6px;
}

.menu-open .menu-toggle-line {
  transform: rotate(45deg);
}

.menu-open .menu-toggle-line::before {
  transform: translateY(6px) rotate(90deg);
}

.menu-open .menu-toggle-line::after {
  opacity: 0;
}

.hero {
  display: grid;
  min-height: calc(100svh - var(--header) - 96px);
  padding: 88px 0 78px;
  border-bottom: 0;
  background:
    linear-gradient(90deg, rgba(3, 5, 16, 0.88) 0%, rgba(3, 5, 16, 0.64) 44%, rgba(3, 5, 16, 0.2) 100%),
    image-set(
      url("../img/backgrounds/club-lights-bg.webp") type("image/webp"),
      url("../img/backgrounds/club-lights-bg.jpg") type("image/jpeg")
    ) center / cover no-repeat;
  color: var(--hero-text);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  align-items: end;
  gap: 64px;
}

.kicker {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 760;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  color: var(--hero-text);
  font-family: "Space Grotesk", Manrope, Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 5rem;
  font-weight: 790;
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 680px;
  margin: 30px 0 0;
  color: var(--hero-muted);
  font-size: 1.28rem;
  line-height: 1.55;
}

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

.hero .kicker {
  color: var(--neon-pink);
}

.hero .button {
  border-color: rgba(245, 247, 255, 0.28);
  background: rgba(245, 247, 255, 0.08);
  color: var(--hero-text);
  backdrop-filter: blur(10px);
}

.hero .button:hover {
  border-color: var(--neon-pink);
  color: #ffffff;
}

.hero .button-primary {
  border-color: var(--accent);
  background: var(--accent);
  color: #ffffff;
}

.hero .button-primary:hover {
  border-color: var(--neon-pink);
  background: var(--neon-pink);
}

.button,
.card-actions a,
.card-actions summary,
.artist-content a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 9px 15px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 720;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
}

.button:hover,
.card-actions a:hover,
.card-actions summary:hover,
.artist-content a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.button-primary {
  border-color: var(--accent);
  background: var(--accent);
  color: #ffffff;
}

.button-primary:hover {
  border-color: var(--accent-dark);
  background: var(--accent-dark);
  color: #ffffff;
}

.featured-release {
  display: grid;
  gap: 14px;
  padding-bottom: 8px;
}

.featured-release p {
  margin: 0;
  color: rgba(200, 205, 224, 0.82);
  font-size: 0.78rem;
  font-weight: 760;
  text-transform: uppercase;
}

.featured-release img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 6px;
  object-fit: cover;
}

.featured-release div {
  display: grid;
  gap: 2px;
}

.featured-release strong {
  color: var(--hero-text);
  font-size: 0.95rem;
  line-height: 1.35;
}

.featured-release span {
  color: var(--hero-muted);
  font-size: 0.92rem;
  line-height: 1.35;
}

.section {
  position: relative;
  padding: 92px 0;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}

.releases-section {
  background: linear-gradient(180deg, #f7f8fb 0%, #ffffff 48%, #f7f8fb 100%);
}

.section-dark {
  background: var(--dark-bg);
  color: var(--hero-text);
  border-bottom-color: var(--dark-line);
}

.section-dark .section-head h2,
.section-dark .youtube-grid h2,
.section-dark .contacts-grid h2 {
  color: var(--hero-text);
}

.section-dark .section-head p,
.section-dark .youtube-panel p,
.section-dark .contacts-grid p {
  color: var(--dark-muted);
}

.section-head {
  display: grid;
  max-width: 760px;
  gap: 14px;
  margin-bottom: 34px;
}

.section-head::before,
.youtube-panel::before,
.contacts-copy::before {
  content: "";
  width: 72px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--neon-pink));
}

.section-head h2,
.youtube-grid h2,
.contacts-grid h2 {
  margin: 0;
  color: var(--ink);
  font-size: 2.55rem;
  font-weight: 760;
  line-height: 1.08;
  letter-spacing: 0;
}

.section-head p,
.youtube-panel p,
.contacts-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

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

.release-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-width: 0;
  border-top: 1px solid var(--line);
}

.releases-section .release-card {
  position: relative;
  overflow: hidden;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 20px 48px rgba(17, 19, 20, 0.07);
}

.releases-section .release-card::before,
.artist-card::before,
.contact-link::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--neon-pink));
}

.release-cover {
  display: block;
  margin-top: 18px;
  color: inherit;
  text-decoration: none;
}

.releases-section .release-cover {
  margin-top: 0;
}

.release-cover img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 6px;
  object-fit: cover;
  background: var(--soft);
}

.release-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: start;
  padding: 18px 0 16px;
}

.release-body p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 0.83rem;
  font-weight: 700;
}

.release-body h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.18rem;
  font-weight: 760;
  line-height: 1.25;
}

.release-body span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.card-actions details {
  position: relative;
}

.card-actions summary {
  list-style: none;
}

.card-actions summary::-webkit-details-marker {
  display: none;
}

.card-actions details[open] summary {
  border-color: var(--accent);
  color: var(--accent);
}

.card-actions details p {
  position: absolute;
  z-index: 4;
  right: 0;
  width: min(280px, calc(100vw - 48px));
  margin: 10px 0 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  color: var(--muted);
  box-shadow: 0 20px 44px rgba(17, 19, 20, 0.12);
  font-size: 0.88rem;
  line-height: 1.55;
}

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

.artist-card {
  position: relative;
  display: grid;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  overflow: hidden;
}

.artists-section {
  background: #ffffff;
}

.artists-section .artist-card {
  border-color: var(--line);
  background: var(--surface);
  box-shadow: 0 18px 44px rgba(17, 19, 20, 0.06);
}

.artists-section .artist-content h3 {
  color: var(--ink);
}

.artists-section .artist-content p {
  color: var(--muted);
}

.artists-section .artist-content a {
  border-color: var(--line);
  background: var(--surface);
  color: var(--ink);
}

.artists-section .artist-content a:hover {
  border-color: var(--neon-pink);
  color: var(--accent);
}

.artist-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.artist-content {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 16px;
}

.artist-content h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.06rem;
  font-weight: 760;
  line-height: 1.25;
}

.artist-content p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.artist-content a {
  justify-self: start;
  min-height: 38px;
  margin-top: 2px;
}

.youtube-section {
  background: linear-gradient(180deg, #f7f8fb 0%, #ffffff 100%);
}

.youtube-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: 54px;
  align-items: start;
}

.youtube-panel {
  display: grid;
  gap: 22px;
  padding-top: 4px;
}

.youtube-option {
  display: grid;
  gap: 12px;
  min-width: 0;
  overflow-wrap: anywhere;
}

.youtube-option h3 {
  margin: 0;
  color: var(--neon-pink);
  font-size: 0.84rem;
  font-weight: 760;
  line-height: 1.4;
  text-transform: uppercase;
}

.youtube-option p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.youtube-divider {
  width: 100%;
  height: 1px;
  margin: 0;
  border: 0;
  background: var(--line);
}

.youtube-panel .button {
  justify-self: start;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.82fr);
  gap: 58px;
  align-items: start;
}

.about-section {
  background: #ffffff;
}

.about-grid > * {
  min-width: 0;
}

.about-grid .section-head {
  margin-bottom: 0;
}

.about-text {
  grid-column: 1 / -1;
  display: grid;
  gap: 28px;
  max-width: 980px;
  min-width: 0;
  overflow-wrap: anywhere;
}

.about-option {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.about-option h3 {
  margin: 0;
  color: var(--accent);
  font-size: 0.84rem;
  font-weight: 760;
  line-height: 1.4;
  text-transform: uppercase;
}

.about-option p {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.72;
}

.about-option ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 1.15rem;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.65;
}

.about-option li::marker {
  color: var(--accent);
}

.about-divider {
  width: 100%;
  height: 1px;
  margin: 4px 0;
  border: 0;
  background: var(--line);
}

.about-facts {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 18px 0 0;
  list-style: none;
}

.about-facts li {
  display: grid;
  gap: 6px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
}

.about-facts strong {
  color: var(--accent);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.about-facts span {
  color: var(--muted);
  font-size: 0.94rem;
}

.contacts-section {
  padding-bottom: 76px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f8fb 100%);
}

.contacts-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: 58px;
  align-items: start;
}

.contacts-copy {
  display: grid;
  gap: 24px;
  min-width: 0;
  overflow-wrap: anywhere;
}

.contacts-option {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.contacts-option h3 {
  margin: 0;
  color: var(--accent);
  font-size: 0.84rem;
  font-weight: 760;
  line-height: 1.4;
  text-transform: uppercase;
}

.contacts-option ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 1.15rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.contacts-option li::marker {
  color: var(--neon-pink);
}

.contacts-divider {
  width: 100%;
  height: 1px;
  margin: 0;
  border: 0;
  background: var(--line);
}

.contacts-links {
  display: grid;
  gap: 18px;
}

.contact-link {
  position: relative;
  display: grid;
  gap: 4px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  text-decoration: none;
  overflow: hidden;
}

.contact-link span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 760;
  text-transform: uppercase;
}

.contact-link strong {
  color: var(--ink);
  font-size: 1.5rem;
  line-height: 1.25;
}

.social-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.social-list a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 720;
  text-decoration: none;
}

.contacts-section .contacts-option h3 {
  color: var(--neon-pink);
}

.contacts-section .contacts-option ul,
.contacts-section .contacts-option p,
.contacts-section .contacts-links p {
  color: var(--muted);
}

.contacts-section .social-list a {
  border-color: var(--line);
  background: var(--surface);
  color: var(--ink);
}

.contacts-section .social-list a:hover {
  border-color: var(--neon-pink);
  color: var(--accent);
}

.social-list a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.site-footer {
  padding: 24px 0 36px;
  background: var(--bg);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--dark-muted);
  font-size: 0.9rem;
}

.footer-inner p {
  margin: 0;
}

.footer-inner a {
  color: var(--ink);
  font-weight: 720;
  text-decoration: none;
}

@media (max-width: 1100px) {
  .release-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 960px) {
  body {
    font-size: 16px;
  }

  .hero {
    min-height: auto;
    padding: 70px 0 64px;
  }

  .hero-grid,
  .youtube-grid,
  .about-grid,
  .contacts-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .hero h1 {
    font-size: 4rem;
  }

  .hero-lead {
    font-size: 1.16rem;
  }

  .featured-release {
    max-width: 420px;
  }
}

@media (max-width: 760px) {
  :root {
    --header: 68px;
  }

  .shell {
    width: min(calc(100% - 32px), var(--max));
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    top: calc(var(--header) + 12px);
    right: 16px;
    left: 16px;
    display: grid;
    gap: 6px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--surface);
    box-shadow: 0 22px 60px rgba(17, 19, 20, 0.16);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  }

  .menu-open .site-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav a {
    display: flex;
    min-height: 44px;
    align-items: center;
    padding: 8px 10px;
    border-radius: 4px;
    color: var(--ink);
  }

  .site-nav a:hover,
  .site-nav a.is-active {
    background: var(--bg);
    color: var(--accent);
  }

  .section {
    padding: 70px 0;
  }

  .section-head h2,
  .youtube-grid h2,
  .contacts-grid h2 {
    font-size: 2.05rem;
  }

  .release-grid,
  .artist-grid,
  .about-facts {
    grid-template-columns: 1fr;
  }

  .card-actions details p {
    right: auto;
    left: 0;
  }
}

@media (max-width: 520px) {
  .hero {
    padding: 52px 0 56px;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .hero-lead {
    font-size: 1.04rem;
  }

  .hero-actions,
  .card-actions,
  .social-list,
  .footer-inner {
    align-items: stretch;
    flex-direction: column;
  }

  .button,
  .card-actions a,
  .card-actions summary,
  .social-list a {
    width: 100%;
  }

  .contact-link strong {
    font-size: 1.16rem;
    overflow-wrap: anywhere;
  }
}
