:root {
  color-scheme: dark;
  --bg: #120b12;
  --bg-soft: #1f1420;
  --text: #fff8f4;
  --muted: #d8c5ca;
  --line: rgba(255, 255, 255, 0.16);
  --pink: #b41665;
  --pink-light: #ff5aa3;
  --gold: #d99a3d;
  --teal: #20c6bd;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  letter-spacing: 0;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 28px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(18, 11, 18, 0.76);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: grid;
  gap: 2px;
  line-height: 1;
  text-transform: uppercase;
}

.brand-script {
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 0.16em;
}

.brand-block {
  width: max-content;
  padding: 4px 8px;
  background: #fff;
  color: #31172b;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 3vw, 36px);
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav a {
  transition: color 160ms ease;
}

.nav a:hover {
  color: var(--text);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  padding: 150px clamp(18px, 6vw, 82px) 64px;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% center;
  filter: saturate(1.06);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(18, 11, 18, 0.92) 0%, rgba(18, 11, 18, 0.66) 36%, rgba(18, 11, 18, 0.16) 72%),
    linear-gradient(0deg, var(--bg) 0%, rgba(18, 11, 18, 0) 40%);
}

.hero-content {
  width: min(720px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--pink-light);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 850px;
  font-size: clamp(54px, 9vw, 122px);
  text-transform: uppercase;
}

h2 {
  font-size: clamp(34px, 5vw, 70px);
  text-transform: uppercase;
}

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

.hero-copy {
  max-width: 620px;
  color: #fff;
  font-size: clamp(19px, 2vw, 25px);
}

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

.button,
.platforms a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-weight: 900;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button.primary {
  background: linear-gradient(135deg, var(--pink), var(--pink-light));
  border-color: transparent;
  color: #fff;
}

.button.secondary,
.platforms a {
  background: rgba(255, 255, 255, 0.08);
}

.section {
  padding: clamp(72px, 9vw, 130px) clamp(18px, 6vw, 82px);
}

.section-heading {
  max-width: 850px;
  margin-bottom: 42px;
}

.release {
  background: var(--bg);
}

.release-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: clamp(30px, 6vw, 84px);
  align-items: start;
}

.release-copy {
  border-left: 3px solid var(--pink-light);
  padding-left: clamp(22px, 3vw, 34px);
}

.cover-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.cover-pair figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg-soft);
  box-shadow: var(--shadow);
}

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

.single-cover {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg-soft);
  box-shadow: var(--shadow);
}

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

.single-cover.gold {
  border-color: rgba(217, 154, 61, 0.46);
}

figcaption {
  padding: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.listen {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
  background: linear-gradient(135deg, rgba(180, 22, 101, 0.24), rgba(32, 198, 189, 0.12));
  border-block: 1px solid var(--line);
}

.platforms {
  display: grid;
  gap: 12px;
  min-width: min(360px, 100%);
}

.about {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 84px);
  align-items: center;
}

.about-image {
  max-height: 760px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.italiano {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.62fr);
  gap: clamp(30px, 6vw, 84px);
  align-items: center;
  background: linear-gradient(135deg, rgba(217, 154, 61, 0.24), rgba(20, 12, 16, 0.94));
  border-block: 1px solid var(--line);
}

.italiano .button {
  margin-top: 14px;
}

.duo {
  background: linear-gradient(135deg, rgba(217, 154, 61, 0.22), rgba(32, 198, 189, 0.12));
  border-block: 1px solid var(--line);
}

.duo-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1fr);
  gap: clamp(30px, 6vw, 84px);
  align-items: center;
}

.duo-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.duo-facts span {
  min-height: 70px;
  display: flex;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-weight: 900;
}

.duo-feature {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg-soft);
  box-shadow: var(--shadow);
}

.duo-feature img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: 54% center;
}

.duo-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.duo-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg-soft);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: end;
  background: #170f18;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 34px clamp(18px, 6vw, 82px);
  border-top: 1px solid var(--line);
  background: #0d080d;
}

.site-footer p {
  margin: 8px 0 0;
  font-size: 14px;
}

.legal {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-weight: 800;
}

.legal-dialog {
  width: min(680px, calc(100% - 32px));
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #170f18;
  color: var(--text);
  box-shadow: var(--shadow);
}

.legal-dialog::backdrop {
  background: rgba(0, 0, 0, 0.72);
}

.legal-dialog h2 {
  font-size: 34px;
}

.close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--text);
  font-size: 24px;
  cursor: pointer;
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .release-grid,
  .italiano,
  .listen,
  .about,
  .duo-grid,
  .contact {
    grid-template-columns: 1fr;
  }

  .duo-facts,
  .duo-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-actions {
    margin-top: 0;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 14px 16px;
    gap: 14px;
  }

  .brand-script {
    font-size: 17px;
  }

  .brand-block {
    font-size: 14px;
  }

  .nav {
    gap: 16px;
    font-size: 13px;
  }

  .hero {
    min-height: 86vh;
    padding: 150px 18px 44px;
  }

  .hero-media img {
    object-position: 69% center;
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(18, 11, 18, 0.86), rgba(18, 11, 18, 0.46)),
      linear-gradient(0deg, var(--bg) 0%, rgba(18, 11, 18, 0) 48%);
  }

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 34px;
  }

  p {
    font-size: 16px;
  }

  .cover-pair {
    grid-template-columns: 1fr;
  }

  .duo-facts,
  .duo-gallery {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
  }
}
