/* =========================================================
   Ingenio Criollo — estilos
   Paleta: negro terciopelo + oro de marca #E8C36A + crema
   ========================================================= */
:root {
  --bg: #0b0a0c;
  --bg-2: #141218;
  --bg-3: #1c1822;
  --gold: #E8C36A;
  --gold-2: #f6e2a6;
  --gold-3: #b8902f;
  --cream: #f6eedc;
  --muted: #b9ae9a;
  --line: rgba(232, 195, 106, .18);
  --red: #b4282e;
  --font-display: "Bebas Neue", Impact, "Arial Narrow", sans-serif;
  --font-body: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-script: "Great Vibes", "Gabriola", cursive;
  --wrap: 1180px;
  --r: 18px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--bg); color: var(--cream);
  font-family: var(--font-body); font-size: 17px; line-height: 1.6;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
body.no-scroll { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { margin: 0; font-weight: 400; }
p { margin: 0 0 1em; }
[hidden] { display: none !important; }
.wrap { width: min(var(--wrap), calc(100% - 2.5rem)); margin-inline: auto; }
.center { text-align: center; }
.ico { width: 1.15em; height: 1.15em; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; vertical-align: -.2em; flex: none; }

/* tipografía */
.h2 {
  font-family: var(--font-display); font-size: clamp(2.8rem, 6vw, 4.6rem); line-height: .95;
  letter-spacing: .02em; color: var(--cream); margin-bottom: .35em;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: .5em;
  font-size: .78rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
}
.lead { color: var(--muted); max-width: 48ch; font-size: 1.05rem; }
.script { font-family: var(--font-script); font-weight: 400; }
.sec-head { margin-bottom: 2.6rem; }

/* botones */
.btns { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.6rem; }
.btns--center { justify-content: center; }
.btn {
  display: inline-flex; align-items: center; gap: .55em;
  padding: .85em 1.45em; border-radius: 999px; font-weight: 700; font-size: .95rem; letter-spacing: .02em;
  border: 1px solid transparent; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s, border-color .25s;
  white-space: nowrap;
}
.btn--sm { padding: .6em 1.1em; font-size: .85rem; }
.btn--gold {
  color: #1a1406; background: linear-gradient(180deg, var(--gold-2), var(--gold) 55%, var(--gold-3));
  box-shadow: 0 8px 28px rgba(232, 195, 106, .22), inset 0 1px 0 rgba(255,255,255,.45);
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(232, 195, 106, .35), inset 0 1px 0 rgba(255,255,255,.5); }
.btn--ghost { color: var(--cream); border-color: var(--line); background: rgba(255,255,255,.03); backdrop-filter: blur(6px); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-2); transform: translateY(-2px); }
.pill {
  display: inline-flex; align-items: center; gap: .45em; padding: .45em .9em; border-radius: 999px;
  font-size: .82rem; font-weight: 600; color: var(--cream); border: 1px solid var(--line); background: rgba(255,255,255,.03);
  transition: border-color .2s, color .2s, background .2s;
}
.pill:hover { border-color: var(--gold); color: var(--gold-2); background: rgba(232,195,106,.08); }
.pill--soon { color: var(--muted); border-style: dashed; }
.soon { display: inline-flex; align-items: center; gap: .5em; color: var(--muted); font-weight: 600; margin-top: 1.2rem; }

/* =============== NAV =============== */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50; padding: .9rem 0;
  transition: background .35s, padding .35s, box-shadow .35s;
}
.nav--solid { background: rgba(11,10,12,.82); backdrop-filter: blur(14px); padding: .5rem 0; box-shadow: 0 1px 0 var(--line); }
.nav__in { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.nav__brand img { width: 150px; height: auto; filter: drop-shadow(0 2px 10px rgba(0,0,0,.6)); }
.nav__links { display: flex; align-items: center; gap: 1.8rem; font-weight: 600; font-size: .95rem; }
.nav__links a:not(.btn) { position: relative; opacity: .9; }
.nav__links a:not(.btn)::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
.nav__links a:not(.btn):hover::after { transform: scaleX(1); }
.nav__cta { margin-left: .4rem; }
.nav__burger { display: none; background: none; border: 0; padding: .4rem; cursor: pointer; }
.nav__burger span { display: block; width: 26px; height: 2px; background: var(--cream); margin: 6px 0; transition: transform .3s, opacity .3s; }

/* =============== HERO =============== */
.hero { position: relative; min-height: 100svh; display: grid; align-items: center; padding: 7.5rem 0 4rem; overflow: hidden; }
.hero__bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse 60% 50% at 78% 40%, rgba(232,195,106,.16), transparent 60%),
    radial-gradient(ellipse 50% 40% at 15% 85%, rgba(180,40,46,.12), transparent 60%),
    linear-gradient(180deg, #0e0c11 0%, var(--bg) 100%);
}
.hero__bg::after {
  content: ""; position: absolute; inset: 0; opacity: .07; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='.8'/></svg>");
}
.hero__in { display: grid; grid-template-columns: 1.05fr .95fr; gap: 3rem; align-items: center; }
.hero__title {
  font-family: var(--font-display); font-size: clamp(4.2rem, 11vw, 9.5rem); line-height: .88; letter-spacing: .02em;
  background: linear-gradient(180deg, var(--gold-2) 0%, var(--gold) 45%, var(--gold-3) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 6px 24px rgba(232,195,106,.18));
}
.hero__tagline { font-size: clamp(2rem, 4vw, 3rem); color: var(--gold-2); margin: .4em 0 .5em; line-height: 1.1; }
.hero__desc { color: var(--muted); max-width: 46ch; font-size: 1.05rem; }
.hero__art { margin: 0; position: relative; }
.hero__art img {
  width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: var(--r);
  box-shadow: 0 30px 80px rgba(0,0,0,.6), 0 0 0 1px var(--line);
  transform: rotate(-1.5deg);
}
.hero__art::before {
  content: ""; position: absolute; inset: -8% -6% auto auto; width: 60%; aspect-ratio: 1; border-radius: 50%; z-index: -1;
  background: radial-gradient(circle, rgba(232,195,106,.28), transparent 65%); filter: blur(10px);
}
.hero__scroll { position: absolute; left: 50%; bottom: 1.6rem; width: 26px; height: 42px; border: 1.5px solid var(--line); border-radius: 14px; transform: translateX(-50%); }
.hero__scroll span { position: absolute; left: 50%; top: 8px; width: 3px; height: 8px; border-radius: 2px; background: var(--gold); transform: translateX(-50%); animation: wheel 1.8s infinite; }
@keyframes wheel { 0% { transform: translate(-50%, 0); opacity: 1 } 80% { transform: translate(-50%, 14px); opacity: 0 } 100% { opacity: 0 } }

/* =============== ÚLTIMO LANZAMIENTO =============== */
.latest { padding: 5rem 0 3rem; }
.latest__card {
  display: grid; grid-template-columns: minmax(220px, 380px) 1fr; gap: 2.5rem; align-items: center;
  background: linear-gradient(135deg, var(--bg-3), var(--bg-2)); border: 1px solid var(--line); border-radius: calc(var(--r) + 6px);
  padding: 2rem; position: relative; overflow: hidden;
}
.latest__card::before { content: ""; position: absolute; inset: auto auto -40% -10%; width: 60%; aspect-ratio: 1; background: radial-gradient(circle, rgba(232,195,106,.14), transparent 65%); pointer-events: none; }
.latest__type { color: var(--gold); font-weight: 700; letter-spacing: .18em; text-transform: uppercase; font-size: .78rem; margin-bottom: .4rem; }
.latest__title { font-family: var(--font-display); font-size: clamp(2.6rem, 5vw, 4.4rem); line-height: .95; letter-spacing: .02em; }
.spotify { margin-top: 1.5rem; border-radius: 12px; }

/* portadas */
.cover { position: relative; aspect-ratio: 1; border-radius: 14px; overflow: hidden; box-shadow: 0 18px 50px rgba(0,0,0,.55), 0 0 0 1px var(--line); background: var(--bg-3); }
.cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.cover--big { border-radius: var(--r); }
.cover--ph { display: grid; place-items: center; text-align: center; padding: 1rem;
  background: radial-gradient(circle at 30% 20%, rgba(232,195,106,.25), transparent 55%), linear-gradient(160deg, #2a1f12, #0f0c10 70%); }
.cover--ph span { font-family: var(--font-display); font-size: clamp(3rem, 9vw, 6rem); line-height: 1; color: var(--gold); letter-spacing: .05em; }
.cover--ph em { position: absolute; left: 0; right: 0; bottom: .9rem; font-style: normal; font-size: .75rem; color: var(--muted); letter-spacing: .1em; text-transform: uppercase; padding: 0 .8rem; }

/* =============== MÚSICA =============== */
.music { padding: 4rem 0 6rem; }
.songs { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.6rem; }
.song { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--r); padding: 1rem; transition: transform .35s var(--ease), border-color .35s, box-shadow .35s; }
.song:hover { transform: translateY(-6px); border-color: rgba(232,195,106,.45); box-shadow: 0 24px 50px rgba(0,0,0,.5); }
.song:hover .cover img { transform: scale(1.04); }
.song__body { padding: 1rem .3rem .3rem; }
.song__title { font-family: var(--font-display); font-size: 1.75rem; letter-spacing: .02em; line-height: 1.05; }
.song__meta { color: var(--muted); font-size: .85rem; margin: .3rem 0 .9rem; }
.song__links { display: flex; flex-wrap: wrap; gap: .45rem; }
.platforms { margin-top: 3.5rem; text-align: center; }
.platforms__label { color: var(--muted); font-size: .85rem; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 1rem; }
.platforms__row { display: flex; flex-wrap: wrap; justify-content: center; gap: .7rem; }
.plat { display: inline-flex; align-items: center; gap: .55em; padding: .75em 1.2em; border-radius: 12px; border: 1px solid var(--line); font-weight: 600; transition: border-color .2s, color .2s, transform .2s; }
.plat:hover { border-color: var(--gold); color: var(--gold-2); transform: translateY(-2px); }

/* =============== VÍDEOS =============== */
.videos { position: relative; padding: 6rem 0; overflow: hidden; }
.videos__bg { position: absolute; inset: 0; z-index: -1; background: url("../img/fiesta.jpg") center/cover no-repeat; }
.videos__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, var(--bg) 0%, rgba(11,10,12,.78) 30%, rgba(11,10,12,.78) 70%, var(--bg) 100%); }
.vgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.6rem; margin-bottom: 2rem; }
.video { margin: 0; }
.video__btn, .video iframe { position: relative; display: block; width: 100%; aspect-ratio: 16/9; border: 0; border-radius: 14px; overflow: hidden; background: #000; padding: 0; cursor: pointer; box-shadow: 0 18px 50px rgba(0,0,0,.55), 0 0 0 1px var(--line); }
.video__btn img { width: 100%; height: 100%; object-fit: cover; opacity: .85; transition: transform .6s var(--ease), opacity .3s; }
.video__btn:hover img { transform: scale(1.04); opacity: 1; }
.video__play { position: absolute; inset: 0; margin: auto; width: 70px; height: 70px; border-radius: 50%; display: grid; place-items: center;
  background: linear-gradient(180deg, var(--gold-2), var(--gold-3)); color: #1a1406; box-shadow: 0 10px 30px rgba(0,0,0,.5); transition: transform .25s var(--ease); }
.video__play .ico { width: 2rem; height: 2rem; margin-left: .2rem; }
.video__btn:hover .video__play { transform: scale(1.08); }
.video figcaption { margin-top: .7rem; font-weight: 600; font-size: .95rem; }

/* =============== BANDA =============== */
.band { padding: 6rem 0; }
.band__in { display: grid; grid-template-columns: .9fr 1.1fr; gap: 4rem; align-items: center; }
.band__photo { margin: 0; position: relative; }
.band__photo img { border-radius: var(--r); box-shadow: 0 30px 80px rgba(0,0,0,.6), 0 0 0 1px var(--line); }
.band__photo figcaption { position: absolute; right: 1.2rem; bottom: .6rem; font-size: 2.2rem; color: var(--gold-2); text-shadow: 0 2px 12px rgba(0,0,0,.8); }
.band__text p { color: var(--muted); }
.band__text p:first-of-type { color: var(--cream); font-size: 1.1rem; }
.band__loc { display: inline-block; margin-top: .6rem; padding: .4em 1em; border: 1px solid var(--line); border-radius: 999px; font-size: .85rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold) !important; }

/* =============== CONTACTO =============== */
.contact { padding: 5rem 0 6rem; background:
  radial-gradient(ellipse 70% 60% at 50% 100%, rgba(232,195,106,.12), transparent 65%), var(--bg-2); border-top: 1px solid var(--line); }
.socials { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin: 2rem 0; }
.social { display: inline-flex; flex-direction: column; align-items: center; gap: .5rem; width: 116px; padding: 1.1rem .6rem; border-radius: 16px; border: 1px solid var(--line); background: rgba(255,255,255,.02); font-weight: 600; font-size: .9rem; transition: transform .25s var(--ease), border-color .25s, background .25s; }
.social .ico { width: 1.9rem; height: 1.9rem; color: var(--gold); }
.social:hover { transform: translateY(-4px); border-color: var(--gold); background: rgba(232,195,106,.07); }
.contact__lbl { color: var(--muted); margin-top: 2rem; }

/* =============== FOOTER =============== */
.foot { padding: 2.5rem 0; border-top: 1px solid var(--line); color: var(--muted); font-size: .85rem; }
.foot__in { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.foot p { margin: 0; }

/* =============== ÚLTIMOS LANZAMIENTOS =============== */
.releases { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 440px), 1fr)); gap: 1.4rem; }
.release {
  display: grid; grid-template-columns: 200px 1fr; grid-template-areas: "art body" "art player" "art links"; gap: .8rem 1.6rem; align-items: center;
  background: linear-gradient(135deg, var(--bg-3), var(--bg-2)); border: 1px solid var(--line); border-radius: calc(var(--r) + 4px);
  padding: 1.2rem; position: relative; overflow: hidden; transition: transform .35s var(--ease), border-color .35s;
}
.release:hover { transform: translateY(-4px); border-color: rgba(232,195,106,.45); }
.release::before { content: ""; position: absolute; inset: auto auto -50% -15%; width: 60%; aspect-ratio: 1; background: radial-gradient(circle, rgba(232,195,106,.14), transparent 65%); pointer-events: none; }
.release__art { width: 200px; grid-area: art; align-self: center; }
.release__body { grid-area: body; align-self: end; }
.release__links { grid-area: links; display: flex; flex-wrap: wrap; align-items: center; gap: .45rem; align-self: start; }
.release__also { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-right: .3rem; }
.release__links .pill { font-size: .78rem; padding: .4em .8em; }
.release__player { grid-area: player; position: relative; z-index: 1; align-self: start; border-radius: 14px; overflow: hidden; box-shadow: 0 0 0 1px var(--line); background: #1e1b23; }
.release__player .spotify { height: 80px; display: block; }
.release__player .embed-ph { padding: .9rem 1rem; gap: .5rem; }
.release__player .embed-ph p { font-size: .85rem; }
.release__player .spotify { margin: 0; }
.release--soon { opacity: .8; grid-template-areas: "art body"; }
.release__title { margin-bottom: .2rem; }
.release--soon .release__body { align-self: center; }
.release--soon .cover--ph em { color: var(--gold); letter-spacing: .2em; }
.release--soon .soon { margin-top: .6rem; font-size: .92rem; }
.release__type { color: var(--gold); font-weight: 700; letter-spacing: .18em; text-transform: uppercase; font-size: .72rem; margin-bottom: .3rem; }
.release__title { font-family: var(--font-display); font-size: clamp(1.9rem, 3.2vw, 2.6rem); line-height: .95; letter-spacing: .02em; }

.player { margin-top: 2.2rem; }
.player__list { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 440px), 1fr)); gap: 1rem; }
.player .platforms__label { text-align: center; }
.spotify { display: block; border-radius: 12px; }

/* placeholder de contenido de terceros (sin consentimiento) */
.embed-ph {
  display: grid; justify-items: center; gap: .8rem; text-align: center; padding: 2rem 1.4rem;
  background: rgba(255,255,255,.03); border: 1px dashed var(--line); border-radius: 14px; color: var(--muted);
}
.embed-ph .ico { width: 2rem; height: 2rem; color: var(--gold); }
.embed-ph p { margin: 0; max-width: 40ch; font-size: .95rem; }
.embed-ph--video { position: absolute; inset: 0; padding: 1rem; gap: .5rem; background: rgba(11,10,12,.92); border-radius: 14px; align-content: center; }
.embed-ph--video p { font-size: .85rem; }
.video__media { position: relative; aspect-ratio: 16/9; border-radius: 14px; overflow: hidden; background: #000; box-shadow: 0 18px 50px rgba(0,0,0,.55), 0 0 0 1px var(--line); }
.video__media .video__btn, .video__media iframe { position: absolute; inset: 0; width: 100%; height: 100%; box-shadow: none; aspect-ratio: auto; }
.song--soon { opacity: .85; }
.song--soon .cover--ph em { color: var(--gold); letter-spacing: .2em; }
.linklike { background: none; border: 0; padding: 0; color: var(--gold); font: inherit; font-weight: 600; cursor: pointer; text-decoration: underline; text-underline-offset: 3px; }
.linklike:hover { color: var(--gold-2); }

/* =============== AVISO DE COOKIES =============== */
.consent { position: fixed; inset: auto 0 0 0; z-index: 80; padding: 1rem; pointer-events: none; }
.consent__box {
  pointer-events: auto; width: min(720px, 100%); margin-inline: auto; padding: 1.3rem 1.5rem;
  background: rgba(20,18,24,.96); backdrop-filter: blur(16px); border: 1px solid var(--line); border-radius: var(--r);
  box-shadow: 0 24px 60px rgba(0,0,0,.6); animation: consent-in .5s var(--ease);
}
@keyframes consent-in { from { transform: translateY(20px); opacity: 0 } to { transform: none; opacity: 1 } }
.consent__title { display: flex; align-items: center; gap: .5em; font-family: var(--font-display); font-size: 1.5rem; letter-spacing: .03em; margin-bottom: .4rem; }
.consent__title .ico { color: var(--gold); }
.consent__text { color: var(--muted); font-size: .92rem; margin-bottom: 1rem; }
.consent__text a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.consent__panel { display: grid; gap: .6rem; margin: 0 0 1rem; padding: 1rem; border: 1px solid var(--line); border-radius: 12px; background: rgba(255,255,255,.02); }
.consent__opt { display: flex; gap: .7em; align-items: flex-start; font-size: .9rem; color: var(--muted); cursor: pointer; }
.consent__opt input { margin-top: .25em; accent-color: var(--gold); width: 1.05em; height: 1.05em; }
.consent__btns { display: flex; flex-wrap: wrap; align-items: center; gap: .7rem; }

/* =============== FOOTER legal =============== */
.foot__links { display: flex; flex-wrap: wrap; gap: 1.2rem; font-weight: 600; }
.foot__links a:hover { color: var(--gold); }
.foot__links .linklike { font-weight: 600; text-decoration: none; color: inherit; }
.foot__links .linklike:hover { color: var(--gold); }

/* =============== PÁGINAS LEGALES =============== */
.legal { padding: 8rem 0 5rem; max-width: 780px; }
.legal h1 { font-family: var(--font-display); font-size: clamp(2.6rem, 6vw, 4rem); letter-spacing: .02em; line-height: .95; margin-bottom: .3em; }
.legal h2 { font-family: var(--font-display); font-size: 1.8rem; letter-spacing: .03em; margin: 2.2rem 0 .6rem; color: var(--gold-2); }
.legal p, .legal li { color: var(--muted); }
.legal strong { color: var(--cream); }
.legal a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.legal table { width: 100%; border-collapse: collapse; font-size: .9rem; margin: 1rem 0; }
.legal th, .legal td { text-align: left; padding: .6rem .7rem; border-bottom: 1px solid var(--line); vertical-align: top; color: var(--muted); }
.legal th { color: var(--cream); font-weight: 700; }
.legal .meta { font-size: .85rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); }
.legal .back { display: inline-flex; align-items: center; gap: .4em; margin-top: 2.5rem; }

/* =============== animación reveal =============== */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s var(--ease) var(--d, 0ms), transform .8s var(--ease) var(--d, 0ms); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

/* =============== responsive =============== */
@media (max-width: 900px) {
  .hero { padding-top: 6.5rem; }
  .hero__in { grid-template-columns: 1fr; gap: 2.2rem; }
  .hero__art { order: -1; max-width: 420px; margin-inline: auto; width: 100%; }
  .hero__art img { transform: none; }
  .hero__text { text-align: center; }
  .hero__desc { margin-inline: auto; }
  .btns { justify-content: center; }
  .release { grid-template-columns: 120px 1fr; grid-template-areas: "art body" "player player" "links links"; gap: .9rem 1rem; padding: 1rem; }
  .release__art { width: 120px; align-self: center; }
  .release__body { align-self: center; }
  .release__links { justify-content: flex-start; }
  .release__links .pill span { display: inline; }
  .band__in { grid-template-columns: 1fr; gap: 2.5rem; }
  .band__photo { max-width: 480px; margin-inline: auto; width: 100%; }
  .nav__links {
    position: fixed; inset: 0; flex-direction: column; justify-content: center; gap: 2rem; font-size: 1.5rem;
    background: rgba(11,10,12,.96); backdrop-filter: blur(16px); transform: translateY(-100%); transition: transform .4s var(--ease);
  }
  .nav__links.open { transform: none; }
  .nav__cta { margin: 0; font-size: 1.05rem; }
  .nav__burger { display: block; position: relative; z-index: 60; }
  .nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}
@media (max-width: 520px) {
  body { font-size: 16px; }
  .nav__brand img { width: 120px; }
  .hero__scroll { display: none; }
  .songs { grid-template-columns: 1fr 1fr; gap: .9rem; }
  .song { padding: .6rem; }
  .song__title { font-size: 1.3rem; }
  .song__meta { font-size: .75rem; }
  .pill span { display: none; }
  .pill { padding: .5em .6em; }
  .social { width: 96px; }
  .foot__in { justify-content: center; text-align: center; }
}
