:root {
  --ink: #171314;
  --paper: #fff9f4;
  --paper-soft: #f5ede3;
  --rose: #f01858;
  --rose-deep: #a80f3f;
  --gold: #e0b54d;
  --sage: #9ab89b;
  --blue: #214f6d;
  --muted: #6e6261;
  --line: rgba(23, 19, 20, 0.13);
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(70, 20, 38, 0.22);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 92px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

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

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

.site-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  left: 0;
  padding: 18px clamp(18px, 4vw, 56px);
  position: fixed;
  right: 0;
  top: 0;
  transition:
    background 180ms ease,
    box-shadow 180ms ease;
  z-index: 20;
}

.site-header.is-scrolled {
  background: rgba(255, 249, 244, 0.9);
  box-shadow: 0 8px 30px rgba(23, 19, 20, 0.08);
  backdrop-filter: blur(16px);
}

.brand-mark,
.main-nav {
  align-items: center;
  display: flex;
  gap: 12px;
}

.brand-mark {
  color: var(--white);
  font-weight: 800;
}

.site-header.is-scrolled .brand-mark {
  color: var(--ink);
}

.brand-symbol {
  align-items: center;
  aspect-ratio: 1;
  background: var(--white);
  border-radius: 50%;
  color: var(--rose);
  display: inline-flex;
  font-size: 0.77rem;
  justify-content: center;
  width: 40px;
}

.site-header.is-scrolled .brand-symbol {
  background: var(--rose);
  color: var(--white);
}

.main-nav {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.92rem;
  font-weight: 700;
}

.site-header.is-scrolled .main-nav {
  color: var(--muted);
}

.main-nav a {
  padding: 10px 4px;
}

.hero {
  align-items: end;
  background:
    linear-gradient(90deg, rgba(23, 19, 20, 0.86) 0%, rgba(23, 19, 20, 0.5) 47%, rgba(160, 15, 63, 0.1) 100%),
    url("assets/vamos-palante.png") center / cover no-repeat;
  color: var(--white);
  display: grid;
  min-height: 88svh;
  overflow: hidden;
  padding: 126px clamp(20px, 5vw, 72px) 42px;
  position: relative;
}

.hero::after {
  background:
    radial-gradient(circle at 80% 20%, rgba(224, 181, 77, 0.42), transparent 28%),
    linear-gradient(0deg, rgba(23, 19, 20, 0.82), transparent 42%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.hero-backdrop {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 92px 92px;
  inset: 0;
  opacity: 0.18;
  position: absolute;
}

.hero-content,
.hero-release {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 780px;
}

.eyebrow {
  color: var(--gold);
  font-size: 0.77rem;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 14px;
  text-transform: uppercase;
}

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

h1 {
  font-size: clamp(4rem, 10vw, 8.5rem);
  letter-spacing: 0;
  line-height: 0.86;
  margin-bottom: 24px;
  max-width: 900px;
}

h2 {
  font-size: clamp(2.1rem, 5vw, 4.8rem);
  letter-spacing: 0;
  line-height: 0.94;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.2rem;
  line-height: 1.05;
}

.hero-copy,
.section-heading p,
.identity-copy p,
.contact p {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.58;
  max-width: 650px;
}

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

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

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

.button.primary {
  background: var(--rose);
  color: var(--white);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.38);
  color: var(--white);
}

.button.ghost {
  border-color: var(--line);
  color: var(--ink);
}

.hero-release {
  align-items: center;
  background: rgba(255, 249, 244, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 8px;
  box-shadow: var(--shadow);
  color: var(--ink);
  display: flex;
  gap: 14px;
  justify-self: end;
  margin-top: 42px;
  max-width: 360px;
  padding: 12px;
}

.hero-release img {
  aspect-ratio: 1;
  border-radius: 6px;
  object-fit: cover;
  width: 82px;
}

.hero-release span,
.panel-topline,
.release-card span {
  color: var(--muted);
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-release strong {
  display: block;
  font-size: 1.2rem;
  margin-top: 3px;
}

section:not(.hero) {
  padding: clamp(64px, 10vw, 116px) clamp(20px, 5vw, 72px);
}

.now-playing {
  background: var(--paper);
}

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

.section-heading p,
.identity-copy p,
.contact p {
  color: var(--muted);
}

.music-grid {
  align-items: stretch;
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
}

.listen-panel,
.track-list,
.preview-card,
.values article,
.release-card,
.contact {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.listen-panel {
  box-shadow: 0 18px 60px rgba(23, 19, 20, 0.09);
  padding: 18px;
}

.panel-topline {
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
}

.track-list {
  padding: 26px;
}

.track-list h3 {
  margin-bottom: 18px;
}

.track-list ol {
  counter-reset: tracks;
  display: grid;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.track-list li {
  align-items: center;
  border-bottom: 1px solid var(--line);
  counter-increment: tracks;
  display: grid;
  gap: 6px;
  grid-template-columns: 36px 1fr auto;
  min-height: 62px;
}

.track-list li::before {
  color: var(--rose);
  content: counter(tracks, decimal-leading-zero);
  font-size: 0.78rem;
  font-weight: 900;
}

.track-list small {
  color: var(--muted);
  font-weight: 800;
}

.preview-section {
  margin-top: 28px;
  scroll-margin-top: 92px;
}

.preview-heading {
  align-items: end;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  margin-bottom: 16px;
}

.preview-heading .eyebrow {
  color: var(--rose);
  margin-bottom: 8px;
}

.preview-heading h3 {
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  margin-bottom: 0;
}

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

.preview-card {
  align-items: center;
  display: grid;
  gap: 14px;
  grid-template-columns: 96px minmax(0, 1fr);
  padding: 12px;
}

.preview-card img {
  aspect-ratio: 1;
  border-radius: 6px;
  object-fit: cover;
  width: 96px;
}

.preview-card span {
  color: var(--muted);
  display: block;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.preview-card strong {
  display: block;
  font-size: 1.08rem;
  margin: 4px 0 10px;
}

.preview-card audio {
  inline-size: 100%;
  max-inline-size: 360px;
}

.identity {
  background:
    linear-gradient(110deg, rgba(33, 79, 109, 0.95), rgba(23, 19, 20, 0.96)),
    url("assets/no-tengo-miedo.png") center / cover fixed;
  color: var(--white);
  display: grid;
  gap: 44px;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
}

.values {
  display: grid;
  gap: 14px;
}

.values article {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  padding: 24px;
}

.values span {
  color: var(--gold);
  display: block;
  font-weight: 900;
  margin-bottom: 24px;
}

.values p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
  margin-bottom: 0;
}

.compact {
  margin-bottom: 22px;
}

.release-row {
  display: grid;
  gap: 16px;
  grid-template-columns: 1.2fr 1fr 1fr;
}

.release-card {
  overflow: hidden;
}

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

.release-card div {
  padding: 20px;
}

.release-card h3 {
  margin: 8px 0 9px;
}

.release-card p {
  color: var(--muted);
  line-height: 1.45;
  margin-bottom: 0;
}

.release-card.featured {
  background: var(--ink);
  color: var(--white);
}

.release-card.featured p,
.release-card.featured span {
  color: rgba(255, 255, 255, 0.72);
}

.contact {
  align-items: center;
  display: flex;
  gap: 28px;
  justify-content: space-between;
  margin: clamp(38px, 6vw, 72px) clamp(20px, 5vw, 72px);
  padding: clamp(26px, 5vw, 48px);
}

.contact .eyebrow {
  color: var(--rose);
}

.contact h2 {
  font-size: clamp(2rem, 4vw, 3.9rem);
  max-width: 820px;
}

.contact p {
  margin-bottom: 0;
}

.site-footer {
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  font-size: 0.9rem;
  justify-content: space-between;
  padding: 24px clamp(20px, 5vw, 72px);
}

.site-footer a {
  color: var(--rose);
  font-weight: 900;
}

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

  .main-nav {
    display: none;
  }

  .hero {
    min-height: 92svh;
    padding-top: 106px;
  }

  .hero-release {
    justify-self: stretch;
    max-width: none;
  }

  .music-grid,
  .identity,
  .release-row,
  .preview-grid {
    grid-template-columns: 1fr;
  }

  .identity {
    background-attachment: scroll;
  }

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

@media (max-width: 540px) {
  .brand-mark span:last-child {
    max-width: 160px;
  }

  h1 {
    font-size: clamp(3.1rem, 18vw, 5rem);
  }

  .hero-copy,
  .section-heading p,
  .identity-copy p,
  .contact p {
    font-size: 1rem;
  }

  .button {
    width: 100%;
  }

  .panel-topline {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .track-list li {
    grid-template-columns: 32px 1fr;
  }

  .track-list small {
    grid-column: 2;
  }

  .preview-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .preview-card {
    grid-template-columns: 74px minmax(0, 1fr);
  }

  .preview-card img {
    width: 74px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}
