:root {
  --page: #100f0c;
  --surface: #181511;
  --surface-strong: #231a14;
  --ink: #f6efe1;
  --muted: #c7b9a2;
  --quiet: #968875;
  --ember: #b8462e;
  --gold: #d6a145;
  --moss: #66704f;
  --forest: #12221b;
  --line: rgba(246, 239, 225, 0.18);
  --shadow: rgba(0, 0, 0, 0.48);
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  padding: 0 28px;
  background: rgba(16, 15, 12, 0.76);
  border-bottom: 1px solid rgba(246, 239, 225, 0.12);
  backdrop-filter: blur(16px);
}

.brand-link {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  font-weight: 700;
  text-decoration: none;
}

.main-nav {
  display: flex;
  gap: 22px;
}

.main-nav a {
  color: var(--muted);
  font-size: 0.94rem;
  text-decoration: none;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.brand-link:hover,
.brand-link:focus-visible {
  color: var(--gold);
}

.hero {
  position: relative;
  min-height: min(760px, 86vh);
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -2;
  background-image: url("assets/lautaro-cover.jpg");
  background-size: cover;
  background-position: center 38%;
  transform: scale(1.03);
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(16, 15, 12, 0.94) 0%, rgba(16, 15, 12, 0.68) 42%, rgba(16, 15, 12, 0.18) 100%),
    linear-gradient(0deg, rgba(16, 15, 12, 0.92) 0%, rgba(16, 15, 12, 0.12) 46%, rgba(16, 15, 12, 0.54) 100%);
}

.hero-content {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 140px 0 78px;
}

.eyebrow,
.section-label {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.92rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.02;
}

h1 {
  max-width: 820px;
  margin-bottom: 14px;
  font-size: clamp(4.25rem, 15vw, 9.8rem);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.4rem, 6vw, 5rem);
}

.hero-kicker {
  max-width: 700px;
  margin-bottom: 16px;
  color: var(--ink);
  font-size: clamp(1.5rem, 3.4vw, 2.7rem);
  font-weight: 800;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.8vw, 1.24rem);
}

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

.button,
.social-links a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
}

.button {
  padding: 0 18px;
}

.button-primary {
  background: var(--gold);
  color: #191007;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #f0bd62;
}

.button-ghost {
  border: 1px solid var(--line);
  background: rgba(246, 239, 225, 0.08);
  color: var(--ink);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: var(--gold);
  color: var(--gold);
}

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

.release-section,
.album-section,
.identity-section,
.links-section {
  padding: clamp(64px, 8vw, 112px) 0;
}

.release-section {
  background: linear-gradient(180deg, #100f0c 0%, #181511 100%);
}

.release-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.84fr) minmax(320px, 1fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
}

.cover-block {
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(246, 239, 225, 0.2);
  border-radius: 8px;
  box-shadow: 0 24px 60px var(--shadow);
}

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

.release-lead,
.section-heading p,
.identity-copy p {
  color: var(--muted);
  font-size: 1.08rem;
}

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

.facts div {
  min-height: 86px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.facts dt {
  color: var(--quiet);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
}

.facts dd {
  margin: 6px 0 0;
  color: var(--ink);
  font-weight: 800;
}

.album-section {
  background:
    linear-gradient(180deg, rgba(18, 34, 27, 0.72), rgba(16, 15, 12, 1)),
    var(--forest);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-heading.compact {
  max-width: 620px;
}

.tracklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: tracks;
}

.tracklist li {
  counter-increment: tracks;
  min-height: 66px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid rgba(246, 239, 225, 0.16);
  border-radius: 8px;
  background: rgba(16, 15, 12, 0.5);
}

.tracklist li::before {
  content: counter(tracks, decimal-leading-zero);
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

.tracklist span {
  min-width: 0;
  color: var(--ink);
  font-weight: 800;
}

.tracklist strong {
  justify-self: end;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(214, 161, 69, 0.14);
  color: var(--gold);
  font-size: 0.8rem;
}

.identity-section {
  background: var(--surface);
}

.identity-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 84px);
}

.identity-copy {
  padding-top: 8px;
}

.identity-copy p:last-child {
  margin-bottom: 0;
}

.links-section {
  background: var(--surface-strong);
}

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

.social-links a {
  padding: 0 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
}

.social-links a:hover,
.social-links a:focus-visible {
  border-color: var(--gold);
  background: rgba(214, 161, 69, 0.16);
  color: var(--gold);
}

.site-footer {
  padding: 28px 20px 34px;
  background: #0b0a08;
  color: var(--quiet);
  text-align: center;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 820px) {
  .site-header {
    padding: 0 18px;
  }

  .main-nav {
    gap: 14px;
  }

  .hero {
    min-height: 84vh;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(16, 15, 12, 0.96) 0%, rgba(16, 15, 12, 0.58) 58%, rgba(16, 15, 12, 0.42) 100%);
  }

  .hero-content {
    padding-bottom: 56px;
  }

  .release-grid,
  .identity-grid,
  .tracklist,
  .social-links {
    grid-template-columns: 1fr;
  }

  .cover-block {
    max-width: 520px;
  }
}

@media (max-width: 520px) {
  .site-header {
    min-height: 58px;
  }

  .brand-link {
    font-size: 1rem;
  }

  .main-nav a {
    font-size: 0.86rem;
  }

  .hero-content,
  .section-shell {
    width: min(var(--max), calc(100% - 28px));
  }

  h1 {
    font-size: clamp(3rem, 15.4vw, 3.9rem);
  }

  h2 {
    font-size: clamp(2.1rem, 12vw, 3.2rem);
  }

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

  .tracklist li {
    grid-template-columns: auto 1fr;
  }

  .tracklist strong {
    grid-column: 2;
    justify-self: start;
  }

  .hero-actions .button {
    width: 100%;
  }
}
