/* =====================================================
   Germán Montes · El Cantor Criollo
   Paleta: noche de fogón, crudo de poncho, rojo pañuelo,
   oro pampa. Firma visual: guarda pampa (rombos).
   ===================================================== */

:root {
  --noche: #1a110a;
  --noche-suave: #241810;
  --crudo: #f0e6d2;
  --crudo-hondo: #e4d6ba;
  --cuero: #a56a3a;
  --panuelo: #c43b2a;
  --panuelo-oscuro: #a02e20;
  --oro: #d9a441;
  --tinta: #2b1d11;
  --tinta-suave: #55432f;
  --display: 'Yeseva One', serif;
  --cuerpo: 'Lora', Georgia, serif;
  --rotulo: 'Oswald', 'Arial Narrow', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--cuerpo);
  background: var(--noche);
  color: var(--tinta);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ---------- Guarda pampa (firma visual) ---------- */
.guarda {
  height: 26px;
  background-color: var(--noche);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='52' height='26' viewBox='0 0 52 26'%3E%3Cpath d='M13 3 23 13 13 23 3 13Z' fill='none' stroke='%23d9a441' stroke-width='2'/%3E%3Cpath d='M39 3 49 13 39 23 29 13Z' fill='none' stroke='%23c43b2a' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-position: center;
}
.guarda-invertida { background-color: var(--crudo); }

/* ---------- Tipos y rótulos ---------- */
.eyebrow {
  font-family: var(--rotulo);
  font-weight: 500;
  font-size: .85rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--oro);
  margin-bottom: 1rem;
}
.eyebrow-oscuro { color: var(--panuelo); }

.titulo-seccion {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.1rem, 5vw, 3.2rem);
  color: var(--tinta);
  margin-bottom: 2.5rem;
  line-height: 1.1;
}
.titulo-claro { color: var(--crudo); }

.contenedor { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }
.contenedor-angosto { max-width: 760px; }
.seccion { padding: 5.5rem 0; }
.seccion-crudo { background: var(--crudo); }
.seccion-noche {
  background:
    radial-gradient(ellipse 80% 60% at 70% 0%, rgba(217,164,65,.07), transparent 60%),
    var(--noche);
  color: var(--crudo);
}

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(26,17,10,0);
  transition: background .35s ease, box-shadow .35s ease;
}
.nav.solido {
  background: rgba(26,17,10,.96);
  box-shadow: 0 2px 18px rgba(0,0,0,.45);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: .8rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav-marca { text-decoration: none; line-height: 1.15; }
.nav-marca-nombre {
  display: block;
  font-family: var(--display);
  font-size: 1.15rem;
  color: var(--crudo);
}
.nav-marca-sub {
  display: block;
  font-family: var(--rotulo);
  font-size: .62rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--oro);
}
.nav-links { display: flex; align-items: center; gap: 1.6rem; }
.nav-links a {
  font-family: var(--rotulo);
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--crudo);
  text-decoration: none;
  padding: .3rem 0;
  border-bottom: 2px solid transparent;
  transition: color .25s, border-color .25s;
}
.nav-links a:hover { color: var(--oro); border-color: var(--oro); }
.nav-links a.nav-cta {
  border: 2px solid var(--panuelo);
  padding: .45rem 1rem;
  background: var(--panuelo);
  color: var(--crudo);
  transition: background .25s, border-color .25s;
}
.nav-links a.nav-cta:hover { background: var(--panuelo-oscuro); border-color: var(--panuelo-oscuro); color: var(--crudo); }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
}
.nav-burger span {
  width: 26px; height: 3px;
  background: var(--crudo);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav-burger.abierto span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-burger.abierto span:nth-child(2) { opacity: 0; }
.nav-burger.abierto span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    radial-gradient(ellipse 70% 55% at 25% 20%, rgba(217,164,65,.10), transparent 65%),
    radial-gradient(ellipse 60% 50% at 85% 80%, rgba(196,59,42,.08), transparent 60%),
    var(--noche);
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 7.5rem 1.5rem 4rem;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 3rem;
  align-items: center;
  flex: 1;
}
.hero-titulo {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(3.4rem, 9vw, 6.5rem);
  line-height: .95;
  color: var(--crudo);
}
.hero-rol {
  font-family: var(--rotulo);
  font-weight: 600;
  font-size: clamp(1.05rem, 2.4vw, 1.5rem);
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--panuelo);
  margin: 1rem 0 1.4rem;
}
.hero-bajada {
  color: #cdbfa5;
  max-width: 46ch;
  font-size: 1.06rem;
  margin-bottom: 2.2rem;
}
.hero-botones { display: flex; flex-wrap: wrap; gap: 1rem; }

.boton {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--rotulo);
  font-weight: 500;
  font-size: .9rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: .85rem 1.5rem;
  transition: transform .2s, background .25s, color .25s, box-shadow .25s;
}
.boton svg { width: 20px; height: 20px; flex: none; }
.boton:hover { transform: translateY(-2px); }
.boton-rojo {
  background: var(--panuelo);
  color: var(--crudo);
  box-shadow: 0 6px 20px rgba(196,59,42,.35);
}
.boton-rojo:hover { background: var(--panuelo-oscuro); }
.boton-linea {
  border: 2px solid var(--oro);
  color: var(--oro);
}
.boton-linea:hover { background: var(--oro); color: var(--noche); }
.boton-grande { padding: 1.05rem 2rem; font-size: 1rem; }

.hero-foto { justify-self: center; text-align: center; }
.hero-foto-marco {
  position: relative;
  max-width: 380px;
  border: 3px solid var(--oro);
  outline: 3px solid var(--panuelo);
  outline-offset: 8px;
  transform: rotate(-1.5deg);
  box-shadow: 0 25px 60px rgba(0,0,0,.55);
}
.hero-foto-pie {
  margin-top: 1.6rem;
  font-style: italic;
  color: var(--cuero);
  font-size: .95rem;
}

/* ---------- Historia ---------- */
.historia-grilla {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 3.5rem;
  align-items: start;
}
.historia-texto p { margin-bottom: 1.3rem; }
.historia-texto .destacado {
  font-size: 1.3rem;
  line-height: 1.5;
  font-weight: 500;
  color: var(--tinta);
  border-left: 4px solid var(--panuelo);
  padding-left: 1.2rem;
}
.historia-texto strong { color: var(--panuelo-oscuro); }

.mojones { list-style: none; }
.mojon {
  position: relative;
  padding: 0 0 1.8rem 2rem;
  border-left: 2px solid var(--cuero);
}
.mojon:last-child { padding-bottom: 0; }
.mojon::before {
  content: "";
  position: absolute;
  left: -8px; top: 6px;
  width: 14px; height: 14px;
  background: var(--panuelo);
  transform: rotate(45deg);
  border: 2px solid var(--crudo);
  box-shadow: 0 0 0 2px var(--cuero);
}
.mojon-año {
  font-family: var(--rotulo);
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .25em;
  color: var(--cuero);
  text-transform: uppercase;
}
.mojon h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.25rem;
  margin: .2rem 0 .4rem;
}
.mojon p { font-size: .96rem; color: var(--tinta-suave); }

/* ---------- Música ---------- */
.musica-grilla {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.musica-sub {
  font-family: var(--rotulo);
  font-weight: 500;
  font-size: .85rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--oro);
  margin-bottom: 1rem;
}
.embed-spotify {
  width: 100%;
  height: 420px;
  border: 0;
  border-radius: 14px;
}
.embed-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 3px solid var(--oro);
  box-shadow: 0 15px 40px rgba(0,0,0,.5);
}
.embed-video iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}
.enlace-flecha {
  display: inline-block;
  margin-top: 1rem;
  font-family: var(--rotulo);
  font-size: .85rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--oro);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .25s;
}
.enlace-flecha:hover { border-color: var(--oro); }

.plataformas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.plataforma {
  font-family: var(--rotulo);
  font-weight: 500;
  font-size: .9rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--crudo);
  border: 1px solid rgba(240,230,210,.35);
  padding: .7rem 1.6rem;
  transition: border-color .25s, color .25s, background .25s;
}
.plataforma:hover { border-color: var(--oro); color: var(--oro); background: rgba(217,164,65,.06); }

/* ---------- Discografía ---------- */
.discos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.disco {
  background: #fff8ea;
  border: 1px solid var(--crudo-hondo);
  border-top: 5px solid var(--cuero);
  padding: 1.4rem 1.4rem 1.2rem;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: .25rem;
  transition: transform .25s, box-shadow .25s, border-top-color .25s;
}
.disco:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 30px rgba(43,29,17,.18);
  border-top-color: var(--panuelo);
}
.disco-año {
  font-family: var(--rotulo);
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .25em;
  color: var(--cuero);
}
.disco-nombre {
  font-family: var(--display);
  font-size: 1.2rem;
  color: var(--tinta);
  line-height: 1.25;
}
.disco-tipo {
  font-size: .85rem;
  font-style: italic;
  color: var(--tinta-suave);
}
.discos-nota {
  margin-top: 2rem;
  text-align: center;
  font-style: italic;
  color: var(--tinta-suave);
  font-size: .95rem;
}

/* ---------- Contrataciones ---------- */
.seccion-contacto { text-align: center; }
.contacto-texto {
  max-width: 52ch;
  margin: 0 auto 2.2rem;
  color: #cdbfa5;
  font-size: 1.08rem;
}
.contacto-botones {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
  margin-bottom: 2.8rem;
}
.contacto-tel {
  font-family: var(--rotulo);
  font-size: 1.1rem;
  letter-spacing: .1em;
  color: var(--crudo);
  text-decoration: none;
}
.contacto-tel:hover { color: var(--oro); }
.redes { display: flex; justify-content: center; gap: 1.4rem; }
.redes a {
  display: grid;
  place-items: center;
  width: 52px; height: 52px;
  border: 1px solid rgba(240,230,210,.35);
  border-radius: 50%;
  color: var(--crudo);
  transition: border-color .25s, color .25s, transform .25s;
}
.redes a:hover { border-color: var(--oro); color: var(--oro); transform: translateY(-3px); }
.redes svg { width: 22px; height: 22px; }

/* ---------- Footer ---------- */
.pie { background: #120b06; }
.pie-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
  text-align: center;
}
.pie-lema {
  font-family: var(--display);
  color: var(--oro);
  font-size: 1.05rem;
  margin-bottom: .6rem;
}
.pie-copy { color: #7c6a55; font-size: .85rem; }

/* ---------- Animaciones ---------- */
.anim-hero {
  opacity: 0;
  transform: translateY(24px);
  animation: subir .8s ease forwards;
  animation-delay: var(--d, 0s);
}
@keyframes subir {
  to { opacity: 1; transform: translateY(0); }
}
.revelar {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.revelar.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .anim-hero { animation: none; opacity: 1; transform: none; }
  .revelar { transition: none; opacity: 1; transform: none; }
  .boton:hover, .disco:hover, .redes a:hover { transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; padding-top: 6.5rem; gap: 2.5rem; }
  .hero-foto { grid-row: 1; }
  .hero-foto-marco { max-width: 260px; }
  .historia-grilla { grid-template-columns: 1fr; gap: 2.5rem; }
  .musica-grilla { grid-template-columns: 1fr; }
  .discos { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .seccion { padding: 4rem 0; }
  .nav-burger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(75vw, 320px);
    background: var(--noche-suave);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform .35s ease;
    box-shadow: -10px 0 40px rgba(0,0,0,.5);
  }
  .nav-links.abierto { transform: translateX(0); }
  .discos { grid-template-columns: 1fr; }
  .hero-botones { flex-direction: column; align-items: stretch; }
  .boton { justify-content: center; }
  .embed-spotify { height: 360px; }
}
