:root {
  --ink: #090806;
  --ink-soft: #13100c;
  --paper: #f0e7d7;
  --muted: #b5a78f;
  --gold: #d7ae67;
  --gold-bright: #f0cf8e;
  --line: rgba(215, 174, 103, .25);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--paper);
  background: var(--ink);
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}
a { color: inherit; }
img { display: block; max-width: 100%; }

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem clamp(1.25rem, 4vw, 4.5rem);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.brand, .footer-brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  color: var(--paper);
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  letter-spacing: .24em;
  text-decoration: none;
}
.brand img { width: 48px; height: 48px; object-fit: contain; }
nav { display: flex; gap: clamp(1.2rem, 3vw, 3rem); }
nav a {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-decoration: none;
  text-transform: uppercase;
}
nav a:hover { color: var(--gold-bright); }
.menu-button { display: none; }

.hero {
  min-height: 100svh;
  position: relative;
  display: grid;
  align-items: end;
  padding: 8rem clamp(1.25rem, 7vw, 8rem) clamp(5.5rem, 10vh, 8rem);
  isolation: isolate;
}
.hero-image, .hero-shade { position: absolute; inset: 0; z-index: -2; }
.hero-image {
  background-image: url("assets/no-he-aprendido-a-amar.png");
  background-position: center;
  background-size: cover;
  transform: scale(1.01);
}
.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5,4,3,.94) 0%, rgba(5,4,3,.63) 45%, rgba(5,4,3,.2) 75%),
    linear-gradient(0deg, rgba(5,4,3,.9) 0%, transparent 45%);
}
.hero-content { max-width: 760px; }
.eyebrow {
  margin: 0 0 1.1rem;
  color: var(--gold);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .25em;
}
h1, h2, h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  line-height: .98;
  font-weight: 600;
}
h1 { font-size: clamp(3.4rem, 7.5vw, 7.5rem); max-width: 11ch; }
.hero-line {
  margin: 1.2rem 0 2rem;
  color: var(--gold-bright);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.65rem, 3vw, 2.6rem);
  font-style: italic;
}
.hero-actions, .platforms { display: flex; flex-wrap: wrap; gap: .8rem; }
.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: .8rem 1.35rem;
  border: 1px solid transparent;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-decoration: none;
  text-transform: uppercase;
  transition: .2s ease;
}
.button-primary { background: var(--gold); color: #171008; }
.button-primary:hover { background: var(--gold-bright); transform: translateY(-2px); }
.button-quiet, .button-outline { border-color: rgba(255,255,255,.35); background: rgba(0,0,0,.16); }
.button-quiet:hover, .button-outline:hover { border-color: var(--gold); color: var(--gold-bright); }
.scroll-cue {
  position: absolute;
  right: clamp(1.25rem, 4vw, 4.5rem);
  bottom: 2rem;
  color: var(--muted);
  font-size: .68rem;
  letter-spacing: .18em;
  text-decoration: none;
  text-transform: uppercase;
}
.scroll-cue span { color: var(--gold); font-size: 1rem; margin-left: .5rem; }

.section { padding: clamp(5rem, 10vw, 9rem) clamp(1.25rem, 7vw, 8rem); }
.music { background: radial-gradient(circle at 100% 0%, #2b1c0d 0%, transparent 28%), var(--ink); }
.section-heading { max-width: 680px; margin-bottom: clamp(3rem, 7vw, 6rem); }
.section-heading h2, .story h2, .connect h2 { font-size: clamp(3rem, 6vw, 6rem); }
.section-heading > p:last-child, .connect-inner > p:not(.eyebrow) { color: var(--muted); max-width: 610px; }

.release {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, .65fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
  padding: clamp(2rem, 5vw, 4.5rem) 0;
  border-top: 1px solid var(--line);
}
.release-art { overflow: hidden; background: #110e0a; box-shadow: 0 28px 70px rgba(0,0,0,.4); }
.release-art img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.release:hover .release-art img { transform: scale(1.025); }
.landscape-art { aspect-ratio: 2.6 / 1; }
.release-copy { max-width: 520px; }
.release-label { color: var(--gold); font-size: .7rem; font-weight: 600; letter-spacing: .18em; }
.release-copy h3 { font-size: clamp(2.8rem, 5vw, 5rem); }
.release-copy > p:not(.release-label) { color: var(--muted); margin: 1.25rem 0 2rem; }
.release-next { grid-template-columns: minmax(240px, .55fr) minmax(0, 1.45fr); }
.portrait-art { aspect-ratio: 3 / 4; max-width: 470px; }
.release-next .release-copy { max-width: 680px; }
.text-link {
  display: inline-flex;
  gap: .6rem;
  color: var(--gold-bright);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .13em;
  text-decoration: none;
  text-transform: uppercase;
  border-bottom: 1px solid var(--gold);
  padding-bottom: .35rem;
}

.manifesto {
  min-height: 66vh;
  display: grid;
  place-content: center;
  text-align: center;
  padding: 5rem 1.25rem;
  border-block: 1px solid var(--line);
  background: linear-gradient(rgba(7,6,4,.9), rgba(7,6,4,.92)), url("assets/entre-lineas.png") center 42% / cover;
}
.manifesto-mark { color: var(--gold); font-family: Georgia, serif; font-size: 5rem; line-height: .5; }
.manifesto p { margin: 1.4rem 0 .2rem; color: var(--muted); font-family: "Cormorant Garamond", serif; font-size: clamp(1.4rem, 2.5vw, 2rem); }
.manifesto h2 { font-size: clamp(3.2rem, 8vw, 8rem); }
.manifesto span { margin-top: 1.5rem; color: var(--gold); font-size: .75rem; letter-spacing: .35em; }

.story {
  display: grid;
  grid-template-columns: minmax(260px, .7fr) minmax(0, 1.3fr);
  align-items: center;
  gap: clamp(2rem, 8vw, 8rem);
  background: #0d0b08;
}
.story-mark {
  display: grid;
  place-items: center;
  min-height: 440px;
  border: 1px solid var(--line);
  background: radial-gradient(circle, rgba(215,174,103,.09), transparent 62%);
}
.story-monogram {
  display: block;
  width: min(58%, 245px);
  height: auto;
  object-fit: contain;
}
.story-copy p { color: var(--muted); }
.story-copy blockquote {
  margin: 2.4rem 0 0;
  padding-left: 1.5rem;
  border-left: 2px solid var(--gold);
  color: var(--paper);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-style: italic;
}

.connect { text-align: center; background: radial-gradient(circle at 50% 120%, #3c2813, transparent 48%); }
.connect-inner { max-width: 900px; margin: auto; }
.connect-inner > p:not(.eyebrow) { margin-inline: auto; }
.social-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 2.5rem; margin-top: 2.8rem; }
.social-links a { color: var(--gold-bright); text-decoration: none; border-bottom: 1px solid var(--line); padding: .5rem 0; }

footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem clamp(1.25rem, 4vw, 4.5rem);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .68rem;
  letter-spacing: .08em;
}
.footer-brand { justify-self: start; font-size: .82rem; }
.footer-brand img { width: 40px; height: 40px; object-fit: contain; }
.footer-domain { justify-self: end; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 820px) {
  .site-header { position: absolute; }
  .brand span { font-size: .86rem; }
  .menu-button {
    display: block;
    border: 1px solid rgba(255,255,255,.32);
    background: rgba(0,0,0,.35);
    color: var(--paper);
    padding: .65rem .8rem;
    font: inherit;
    font-size: .7rem;
    letter-spacing: .12em;
    text-transform: uppercase;
  }
  nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    display: none;
    flex-direction: column;
    padding: 1.4rem;
    background: rgba(9,8,6,.97);
    border-bottom: 1px solid var(--line);
  }
  nav.open { display: flex; }
  .hero { min-height: 88svh; padding-top: 7rem; }
  .hero-image { background-position: 64% center; }
  .hero-shade { background: linear-gradient(0deg, rgba(5,4,3,.96) 4%, rgba(5,4,3,.5) 67%, rgba(5,4,3,.35)); }
  h1 { font-size: clamp(3rem, 14vw, 5rem); }
  .release, .release-next, .story { grid-template-columns: 1fr; }
  .release-next .release-art { order: 0; }
  .release-next .release-copy { order: 1; }
  .portrait-art { max-width: 100%; }
  .landscape-art { aspect-ratio: 16 / 9; }
  .story-mark { min-height: 320px; }
  footer { grid-template-columns: 1fr; text-align: center; }
  .footer-brand, .footer-domain { justify-self: center; }
  footer p { margin: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
