/* =========================================================
   CHE LUIS — El Rey de la Tecnocarrilera
   Hoja de estilos principal
   ========================================================= */

/* ---------- 1. Tokens ---------- */
:root {
  color-scheme: dark;

  --ink:      #04060d;
  --ink-2:    #080d1a;
  --ink-3:    #0e1526;
  --ink-4:    #141d33;

  --text:     #e9edf7;
  --muted:    #97a4be;
  --faint:    #6b7791;

  --blue:     #2f7dff;
  --blue-hi:  #79baff;
  --blue-dim: rgba(47, 125, 255, .18);
  --gold:     #f3b73f;
  --gold-hi:  #ffd98a;

  --line:     rgba(163, 191, 255, .14);
  --line-hi:  rgba(163, 191, 255, .30);

  --chrome: linear-gradient(177deg,
              #ffffff 0%, #e4ecfb 22%, #a9b7d1 44%,
              #77839c 50%, #dfe8f9 58%, #ffffff 76%, #b4c1da 100%);

  --shadow-lg: 0 32px 70px -28px rgba(0, 0, 0, .95);
  --shadow-blue: 0 0 70px -10px rgba(47, 125, 255, .45);

  --r-sm: 10px;
  --r:    16px;
  --r-lg: 24px;

  --gutter: clamp(18px, 4.2vw, 44px);
  --maxw: 1200px;
  --sect: clamp(76px, 10vw, 148px);

  --f-display: "Anton", "Arial Narrow", Impact, sans-serif;
  --f-script:  "Lobster Two", "Brush Script MT", cursive;
  --f-body:    "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

/* ---------- 2. Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: var(--f-body);
  font-size: 16.5px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg, video { max-width: 100%; display: block; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }
[hidden] { display: none !important; }

::selection { background: var(--blue); color: #fff; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--gold); color: #12131a; font-weight: 700;
  padding: 10px 16px; border-radius: 0 0 10px 10px; transition: top .18s;
}
.skip:focus { top: 0; }

/* ---------- 3. Utilidades ---------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--sect); position: relative; }

.kicker {
  display: inline-flex; align-items: center; gap: .6em;
  font-size: clamp(.68rem, 1.5vw, .78rem);
  font-weight: 700; letter-spacing: .26em; text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 18px;
}
.kicker::before {
  content: ""; width: 26px; height: 1px; background: var(--gold); opacity: .6;
}

h1, h2, h3, h4 { font-family: var(--f-display); font-weight: 400; line-height: .96; letter-spacing: .012em; margin: 0; text-transform: uppercase; }

.h-sect {
  font-size: clamp(2.1rem, 6.4vw, 4.1rem);
  line-height: 1;
  margin-bottom: .5em;
}

.script {
  font-family: var(--f-script);
  font-style: italic; font-weight: 700;
  text-transform: none; letter-spacing: 0;
}

.chrome {
  background: var(--chrome);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 3px 0 rgba(0, 0, 0, .55)) drop-shadow(0 0 34px rgba(120, 175, 255, .25));
  /* El degradado solo se pinta dentro de la caja: sin este relleno extra
     las tildes (Á, É, Ú) quedan fuera del área pintada y desaparecen. */
  padding-block: .18em .04em;
  margin-block: -.18em -.04em;
}
@supports not ((background-clip: text) or (-webkit-background-clip: text)) {
  .chrome { color: #f2f6ff; -webkit-text-fill-color: #f2f6ff; }
}

.lead { font-size: clamp(1.02rem, 2.1vw, 1.2rem); color: #cbd5e9; }
.muted { color: var(--muted); }

.rule {
  height: 1px; border: 0; margin: 0;
  background: linear-gradient(90deg, transparent, var(--line-hi) 22%, var(--line-hi) 78%, transparent);
}

/* Botones */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700; font-size: .93rem; letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .18s cubic-bezier(.2,.7,.2,1), box-shadow .2s, background .2s, border-color .2s, color .2s;
  white-space: nowrap;
}
.btn svg { width: 1.15em; height: 1.15em; flex: none; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--gold {
  background: linear-gradient(180deg, var(--gold-hi), var(--gold));
  color: #17130a;
  box-shadow: 0 14px 34px -14px rgba(243, 183, 63, .85);
}
.btn--gold:hover { box-shadow: 0 20px 44px -14px rgba(243, 183, 63, .95); }

.btn--wa {
  background: linear-gradient(180deg, #3ddc72, #1faa50);
  color: #05230f;
  box-shadow: 0 14px 34px -14px rgba(37, 211, 102, .8);
}

.btn--ghost {
  border-color: var(--line-hi);
  color: var(--text);
  background: rgba(255, 255, 255, .03);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover { border-color: var(--blue-hi); color: #fff; background: rgba(47, 125, 255, .12); }

/* Estrella decorativa */
.star { width: .8em; height: .8em; fill: currentColor; flex: none; }

/* Reveal al hacer scroll */
.reveal { opacity: 0; transform: translateY(22px); }
.reveal.is-in {
  opacity: 1; transform: none;
  transition: opacity .75s ease, transform .75s cubic-bezier(.2,.75,.25,1);
}

/* Grano global */
.grain {
  position: fixed; inset: 0; z-index: 90; pointer-events: none;
  opacity: .30; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'>\
<filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/>\
<feColorMatrix type='saturate' values='0'/></filter>\
<rect width='100%' height='100%' filter='url(%23n)' opacity='.5'/></svg>");
}

/* ---------- 4. Header ---------- */
.hdr {
  position: fixed; inset: 0 0 auto; z-index: 100;
  transition: background .3s, backdrop-filter .3s, border-color .3s, padding .3s;
  border-bottom: 1px solid transparent;
  padding-block: 14px;
}
.hdr.is-stuck {
  background: rgba(4, 6, 13, .82);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line);
  padding-block: 8px;
}
.hdr__in { display: flex; align-items: center; gap: 20px; }

.brand { display: flex; align-items: center; gap: 12px; margin-right: auto; }
.brand__mark { width: 46px; height: 46px; color: #fff; transition: width .3s, height .3s; }
.hdr.is-stuck .brand__mark { width: 38px; height: 38px; }
.brand__mark img { width: 100%; height: 100%; object-fit: contain; }
.brand__txt { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: var(--f-display); font-size: 1.12rem; letter-spacing: .1em; }
.brand__sub { font-size: .58rem; letter-spacing: .21em; text-transform: uppercase; color: var(--gold); margin-top: 4px; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  padding: 9px 12px; border-radius: 999px;
  font-size: .8rem; font-weight: 600; letter-spacing: .09em; text-transform: uppercase;
  white-space: nowrap;
  color: #c2cde3; transition: color .18s, background .18s;
}
.nav > .btn { display: none; }
.nav a:hover { color: #fff; background: rgba(255, 255, 255, .06); }
.nav a.is-active { color: var(--gold); }

.hdr .btn { padding: 11px 20px; font-size: .78rem; }

.burger {
  display: none; width: 46px; height: 46px; border-radius: 12px;
  border: 1px solid var(--line-hi); background: rgba(255, 255, 255, .04);
  cursor: pointer; align-items: center; justify-content: center; flex-direction: column; gap: 5px;
}
.burger span { display: block; width: 19px; height: 2px; background: #dbe4f5; border-radius: 2px; transition: transform .25s, opacity .2s; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- 5. Hero ---------- */
.hero {
  position: relative; isolation: isolate;
  min-height: 100svh;
  display: flex; align-items: center;
  padding-block: 132px 60px;
  overflow: hidden;
}

.hero__bg { position: absolute; inset: 0; z-index: -2; background: var(--ink); }

.hero__rays {
  position: absolute; z-index: -1;
  width: 168vmax; height: 168vmax;
  top: 46%; left: 66%;
  translate: -50% -50%;
  background: repeating-conic-gradient(from 8deg at 50% 50%,
    rgba(121, 186, 255, .085) 0deg 2.1deg,
    transparent 2.1deg 8deg);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 4%, rgba(0,0,0,.65) 30%, transparent 62%);
  mask-image: radial-gradient(circle at 50% 50%, #000 4%, rgba(0,0,0,.65) 30%, transparent 62%);
  animation: spin 190s linear infinite;
}
@keyframes spin { to { rotate: 360deg; } }

.hero__glow {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(48% 52% at 68% 40%, rgba(47, 125, 255, .34), transparent 70%),
    radial-gradient(42% 44% at 18% 78%, rgba(243, 183, 63, .13), transparent 72%),
    radial-gradient(70% 60% at 50% 108%, rgba(9, 16, 36, .9), transparent 70%);
}
.hero__vign {
  position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(120% 90% at 50% 40%, transparent 42%, rgba(4, 6, 13, .88) 100%);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, .96fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  width: 100%;
}

.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 15px 7px 11px;
  border: 1px solid var(--line-hi); border-radius: 999px;
  background: rgba(255, 255, 255, .04);
  font-size: .7rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: #d8e1f3;
  margin-bottom: 22px;
}
.hero__eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--gold);
  box-shadow: 0 0 0 4px rgba(243, 183, 63, .18);
}

.hero h1 {
  font-size: clamp(3.6rem, 15.5vw, 9.6rem);
  line-height: .82;
  letter-spacing: -.005em;
  margin: 0 0 .1em;
}

.hero__title2 {
  display: block;
  font-family: var(--f-script); font-style: italic; font-weight: 700;
  text-transform: none; letter-spacing: 0;
  font-size: clamp(1.45rem, 5.2vw, 3rem);
  line-height: 1.1;
  color: var(--gold);
  text-shadow: 0 0 40px rgba(243, 183, 63, .35);
  margin-bottom: .55em;
}

.hero__pitch {
  max-width: 47ch;
  color: #c4cfe4;
  font-size: clamp(1rem, 2vw, 1.13rem);
  margin: 0 0 32px;
}

.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 40px; }

.hero__stats {
  display: flex; flex-wrap: wrap; gap: clamp(18px, 3.4vw, 40px);
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.hero__stat b {
  display: block;
  font-family: var(--f-display); font-weight: 400;
  font-size: clamp(1.6rem, 3.6vw, 2.3rem);
  line-height: 1;
  background: var(--chrome); -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
}
.hero__stat span {
  display: block; margin-top: 7px;
  font-size: .68rem; letter-spacing: .17em; text-transform: uppercase; color: var(--muted);
}

/* Figura del hero */
.hero__fig {
  position: relative; justify-self: center;
  width: 100%; max-width: 540px;
  display: flex; align-items: flex-end; justify-content: center;
}
.hero__emblem {
  position: absolute; z-index: 0;
  inset: -2% -8% auto auto; width: 88%;
  opacity: .10;
  filter: drop-shadow(0 0 60px rgba(47, 125, 255, .55));
  animation: float 13s ease-in-out infinite;
}
.hero__emblem img { width: 100%; height: auto; }
@keyframes float { 50% { translate: 0 -16px; } }

.hero__photo {
  position: relative; z-index: 1;
  width: auto; max-width: 100%;
  max-height: min(76svh, 760px);
  filter: drop-shadow(0 46px 60px rgba(0, 0, 0, .85));
  -webkit-mask-image: linear-gradient(180deg, #000 86%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 86%, transparent 100%);
}
.hero__floor {
  position: absolute; z-index: 0;
  left: 50%; bottom: 2%; translate: -50% 0;
  width: 92%; height: 90px;
  background: radial-gradient(50% 50% at 50% 50%, rgba(47, 125, 255, .42), transparent 72%);
  filter: blur(14px);
}

.hero__scroll {
  position: absolute; left: 50%; bottom: 22px; translate: -50% 0;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: .6rem; letter-spacing: .3em; text-transform: uppercase; color: var(--faint);
}
.hero__scroll i {
  display: block; width: 1px; height: 38px;
  background: linear-gradient(180deg, transparent, var(--gold));
  animation: drop 2.1s ease-in-out infinite;
}
@keyframes drop { 0%, 100% { opacity: .25; transform: scaleY(.5); transform-origin: top; } 50% { opacity: 1; transform: scaleY(1); } }

/* ---------- 6. Marquesina ---------- */
.marquee {
  position: relative;
  border-block: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(47, 125, 255, .12), rgba(243, 183, 63, .10), rgba(47, 125, 255, .12));
  padding-block: 15px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track { display: flex; width: max-content; animation: slide 42s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__grp { display: flex; align-items: center; gap: 30px; padding-right: 30px; }
.marquee__grp span {
  font-family: var(--f-display); font-size: clamp(1rem, 2.4vw, 1.5rem);
  letter-spacing: .08em; color: #dce5f7; white-space: nowrap;
}
.marquee__grp svg { width: 15px; height: 15px; fill: var(--gold); flex: none; }
@keyframes slide { to { transform: translateX(-50%); } }

/* ---------- 7. Biografía ---------- */
.bio { background: linear-gradient(180deg, var(--ink), var(--ink-2) 55%, var(--ink)); }
.bio__grid {
  display: grid; grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: clamp(30px, 5vw, 68px); align-items: start;
}

.bio__figure { position: relative; }
.bio__frame {
  position: relative;
  border-radius: var(--r-lg);
  padding: 22px 22px 0;
  background:
    linear-gradient(180deg, rgba(47, 125, 255, .16), rgba(10, 15, 30, .2) 45%),
    var(--ink-3);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.bio__frame::before {
  content: ""; position: absolute; inset: 0;
  background: repeating-conic-gradient(from 0deg at 50% 22%,
    rgba(121, 186, 255, .09) 0deg 2deg, transparent 2deg 8deg);
  -webkit-mask-image: radial-gradient(circle at 50% 22%, #000, transparent 68%);
  mask-image: radial-gradient(circle at 50% 22%, #000, transparent 68%);
}
.bio__frame img { position: relative; width: 100%; }

.bio__badge {
  position: absolute; z-index: 2; right: -12px; bottom: 34px;
  background: linear-gradient(180deg, var(--gold-hi), var(--gold));
  color: #1a1408;
  border-radius: 14px;
  padding: 13px 18px;
  box-shadow: 0 18px 40px -16px rgba(243, 183, 63, .8);
  max-width: 190px;
}
.bio__badge b { display: block; font-family: var(--f-display); font-size: 1.08rem; line-height: 1; }
.bio__badge span { display: block; font-size: .66rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; margin-top: 6px; opacity: .78; }

.bio__body p { margin: 0 0 1.15em; color: #bfcade; }
.bio__body p strong { color: var(--text); font-weight: 600; }
.bio__body .lead { color: #dde5f4; }

.quote {
  margin: 34px 0;
  padding: 26px 28px 26px 32px;
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--r) var(--r) 0;
  background: linear-gradient(90deg, rgba(243, 183, 63, .10), transparent 75%);
}
.quote p {
  margin: 0;
  font-family: var(--f-script); font-style: italic; font-weight: 700;
  font-size: clamp(1.18rem, 2.8vw, 1.62rem);
  line-height: 1.32; color: #fff;
}
.quote cite {
  display: block; margin-top: 12px;
  font-family: var(--f-body); font-style: normal;
  font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold);
}

.pillars { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 14px; margin-top: 34px; }
.pillar {
  padding: 20px; border: 1px solid var(--line); border-radius: var(--r);
  background: rgba(255, 255, 255, .025);
  transition: border-color .22s, background .22s, transform .22s;
}
.pillar:hover { border-color: var(--line-hi); background: rgba(47, 125, 255, .07); transform: translateY(-3px); }
.pillar h3 { font-size: 1.02rem; margin-bottom: 8px; color: #fff; }
.pillar p { margin: 0; font-size: .89rem; color: var(--muted); line-height: 1.6; }

/* ---------- 8. Música ---------- */
.music { background: var(--ink); }
.music__head { display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: 22px; margin-bottom: 46px; }
.music__head p { margin: 0; max-width: 48ch; }

/* Lo nuevo: el logo grande a un lado y los sencillos al otro */
.music__new {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
}
.music__art {
  position: relative; margin: 0;
  border: 1px solid rgba(243, 183, 63, .3); border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 70px -24px rgba(243, 183, 63, .5);
}
.music__art img { display: block; width: 100%; height: auto; }

.singles { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 18px; }
.music__new .singles { grid-template-columns: 1fr; }
.single {
  position: relative; overflow: hidden;
  border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 30px 28px 28px;
  background: linear-gradient(155deg, var(--ink-4), var(--ink-2) 58%);
  transition: transform .26s cubic-bezier(.2,.7,.2,1), border-color .26s, box-shadow .26s;
}
.single::after {
  content: ""; position: absolute; right: -60px; top: -60px;
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 125, 255, .3), transparent 68%);
  transition: opacity .3s; opacity: .65;
}
.single:hover { transform: translateY(-5px); border-color: var(--line-hi); box-shadow: var(--shadow-lg); }
.single:hover::after { opacity: 1; }
.single__tag {
  display: inline-block; font-size: .62rem; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 14px;
}
.single h3 { font-size: clamp(1.7rem, 4.4vw, 2.5rem); margin-bottom: 10px; position: relative; }
.single p { margin: 0; color: var(--muted); font-size: .93rem; position: relative; }

.repertorio { margin-top: 54px; }
.repertorio h3 { font-size: 1.28rem; margin-bottom: 20px; color: #fff; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 11px 18px; border-radius: 999px;
  border: 1px solid var(--line); background: rgba(255, 255, 255, .03);
  font-size: .92rem; font-weight: 500; color: #d3dcee;
  transition: border-color .2s, color .2s, background .2s, transform .2s;
}
.chip svg { width: 11px; height: 11px; fill: var(--blue-hi); flex: none; }
.chip:hover { border-color: var(--blue-hi); color: #fff; background: rgba(47, 125, 255, .12); transform: translateY(-2px); }
.chip--gold { border-color: rgba(243, 183, 63, .45); color: var(--gold-hi); background: rgba(243, 183, 63, .08); }
.chip--gold svg { fill: var(--gold); }
.chip small { font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; opacity: .7; }

/* ---------- 9. Videos ---------- */
.videos { background: linear-gradient(180deg, var(--ink), #060b18 40%, var(--ink)); }

.vid {
  position: relative; overflow: hidden;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: #000;
  box-shadow: var(--shadow-lg);
}
.vid__media { position: relative; width: 100%; display: block; background: #000; }
.vid__media img, .vid__media video { width: 100%; height: 100%; object-fit: cover; display: block; }

.vid__btn {
  position: absolute; inset: 0; width: 100%;
  border: 0; padding: 0; margin: 0; background: transparent;
  cursor: pointer; display: block;
}
.vid__btn::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(4, 6, 13, .12) 0%, rgba(4, 6, 13, .18) 45%, rgba(4, 6, 13, .92) 100%);
  transition: background .3s;
}
.vid__btn:hover::after { background: linear-gradient(180deg, rgba(4, 6, 13, .05) 0%, rgba(4, 6, 13, .12) 45%, rgba(4, 6, 13, .9) 100%); }

.vid__play {
  position: absolute; z-index: 2; left: 22px; bottom: 22px;
  display: flex; align-items: center; gap: 13px;
  pointer-events: none;
}
.vid__play i {
  display: grid; place-items: center;
  width: 54px; height: 54px; border-radius: 50%;
  background: linear-gradient(180deg, var(--gold-hi), var(--gold));
  box-shadow: 0 12px 34px -10px rgba(243, 183, 63, .9);
  transition: transform .25s cubic-bezier(.2,.7,.2,1);
}
.vid__play i svg { width: 19px; height: 19px; fill: #16120a; margin-left: 3px; }
.vid__btn:hover .vid__play i { transform: scale(1.1); }
.vid__play b {
  font-family: var(--f-display); font-size: 1.16rem; line-height: 1.05; color: #fff;
  text-shadow: 0 2px 14px rgba(0, 0, 0, .9);
}
.vid--feature .vid__play { left: 30px; bottom: 28px; gap: 18px; }
.vid--feature .vid__play i { width: 68px; height: 68px; }
.vid--feature .vid__play i svg { width: 24px; height: 24px; }
.vid--feature .vid__play b { font-size: clamp(1.4rem, 3vw, 2.1rem); }
.vid__play b small {
  display: block; font-family: var(--f-body); font-size: .62rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; color: var(--gold-hi); margin-top: 5px;
}

.vid__ratio-16 { aspect-ratio: 16 / 9; }
.vid__ratio-9  { aspect-ratio: 9 / 16; }

.videos__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}
.vid--feature { grid-column: span 12; }
.vid--reel    { grid-column: span 4; }

.vid-aside {
  grid-column: span 4;
  display: flex; flex-direction: column; justify-content: center; gap: 16px;
  padding: 30px 28px;
  border: 1px solid var(--line); border-radius: var(--r-lg);
  background: linear-gradient(160deg, var(--ink-4), var(--ink-2) 65%);
}
.vid-aside h3 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); }
.vid-aside p { margin: 0; color: var(--muted); font-size: .93rem; }
.vid-aside .btn { width: 100%; }

/* ---------- 10. Galería ---------- */
.gal { background: var(--ink); }
.gal__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.gal__item {
  position: relative; overflow: hidden;
  border: 1px solid var(--line); border-radius: var(--r);
  background: linear-gradient(170deg, var(--ink-4), var(--ink-2));
  aspect-ratio: 3 / 4;
  cursor: zoom-in; padding: 0;
  transition: border-color .25s, transform .25s cubic-bezier(.2,.7,.2,1);
}
.gal__item::before {
  content: ""; position: absolute; inset: 0;
  background: repeating-conic-gradient(from 0deg at 50% 30%,
    rgba(121, 186, 255, .10) 0deg 2deg, transparent 2deg 8deg);
  -webkit-mask-image: radial-gradient(circle at 50% 30%, #000, transparent 70%);
  mask-image: radial-gradient(circle at 50% 30%, #000, transparent 70%);
  opacity: .8; transition: opacity .3s;
}
.gal__item img {
  position: relative; width: 100%; height: 100%;
  object-fit: contain; object-position: bottom;
  transition: transform .4s cubic-bezier(.2,.7,.2,1);
}
.gal__item:hover { border-color: var(--line-hi); transform: translateY(-4px); }
.gal__item:hover::before { opacity: 1; }
.gal__item:hover img { transform: scale(1.045); }
.gal__item--wide { grid-column: span 2; aspect-ratio: 16 / 11; }

/* Ficha de marca que cierra el mosaico */
.gal__card {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end; gap: 8px;
  aspect-ratio: 3 / 4; padding: 22px;
  border: 1px solid var(--line); border-radius: var(--r);
  background: linear-gradient(170deg, rgba(47, 125, 255, .16), var(--ink-2) 62%);
}
.gal__card img {
  position: absolute; top: -14%; right: -24%; width: 100%;
  opacity: .07; pointer-events: none;
}
.gal__card::after {
  content: ""; position: absolute; inset: 40% 0 0; z-index: 0;
  background: linear-gradient(180deg, transparent, rgba(8, 13, 26, .92) 60%);
}
.gal__card b, .gal__card span, .gal__card a { z-index: 1; }
.gal__card b { position: relative; font-family: var(--f-display); font-size: 1.4rem; line-height: 1; }
.gal__card span { position: relative; font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); }
.gal__card a { position: relative; margin-top: 10px; font-size: .82rem; font-weight: 700; color: var(--blue-hi); }
.gal__card a:hover { text-decoration: underline; }

/* Lightbox */
.lb {
  position: fixed; inset: 0; z-index: 150;
  display: grid; place-items: center;
  background: rgba(3, 5, 11, .94);
  backdrop-filter: blur(10px);
  padding: 56px 20px;
  opacity: 0; pointer-events: none; transition: opacity .25s;
}
.lb.is-open { opacity: 1; pointer-events: auto; }
.lb img { max-width: min(92vw, 780px); max-height: 84vh; object-fit: contain; filter: drop-shadow(0 30px 60px rgba(0,0,0,.9)); }
.lb__close, .lb__nav {
  position: absolute; display: grid; place-items: center;
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid var(--line-hi); background: rgba(255, 255, 255, .06);
  cursor: pointer; transition: background .2s, border-color .2s;
}
.lb__close:hover, .lb__nav:hover { background: rgba(47, 125, 255, .22); border-color: var(--blue-hi); }
.lb__close { top: 18px; right: 18px; font-size: 1.3rem; line-height: 1; }
.lb__nav { top: 50%; translate: 0 -50%; font-size: 1.5rem; line-height: 1; }
.lb__nav--prev { left: 16px; }
.lb__nav--next { right: 16px; }

/* ---------- 11. Regiones ---------- */
.reg { background: linear-gradient(180deg, var(--ink), var(--ink-2)); overflow: hidden; }
.reg__wm {
  position: absolute; z-index: 0; right: -6%; top: 50%; translate: 0 -50%;
  width: min(520px, 42vw); opacity: .055; pointer-events: none;
}
.reg .wrap { position: relative; z-index: 1; }
.reg__grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(28px, 5vw, 64px); align-items: center; }
.reg__list { display: flex; flex-wrap: wrap; gap: 12px; }
.reg__item {
  display: flex; align-items: center; gap: 11px;
  padding: 14px 20px; border-radius: 999px;
  border: 1px solid var(--line); background: rgba(255, 255, 255, .03);
  font-weight: 600; font-size: .96rem; color: #dbe3f3;
  transition: border-color .22s, background .22s, transform .22s;
}
.reg__item:hover { border-color: var(--gold); background: rgba(243, 183, 63, .1); transform: translateY(-2px); }
.reg__item svg { width: 15px; height: 15px; fill: var(--gold); flex: none; }

.reg__note {
  margin-top: 30px; padding: 22px 24px;
  border: 1px dashed var(--line-hi); border-radius: var(--r);
  background: rgba(47, 125, 255, .05);
}
.reg__note p { margin: 0; color: #c3cee3; font-size: .96rem; }

/* ---------- 12. Contacto ---------- */
.contact { position: relative; overflow: hidden; background: var(--ink); }
.contact::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(52% 58% at 78% 30%, rgba(47, 125, 255, .22), transparent 70%),
    radial-gradient(44% 50% at 14% 84%, rgba(243, 183, 63, .13), transparent 72%);
}
.contact .wrap { position: relative; z-index: 1; }
.contact__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(30px, 5vw, 66px); align-items: start; }

.contact h2 { font-size: clamp(2.3rem, 7vw, 4.6rem); }
.contact__sub { max-width: 44ch; margin: 0 0 30px; }

.phones { display: grid; gap: 12px; margin-bottom: 26px; }
.phone {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 20px; border-radius: var(--r);
  border: 1px solid var(--line); background: rgba(255, 255, 255, .035);
  transition: border-color .22s, background .22s, transform .22s;
}
.phone:hover { border-color: var(--gold); background: rgba(243, 183, 63, .08); transform: translateX(4px); }
.phone__ico { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; background: rgba(243, 183, 63, .14); flex: none; }
.phone__ico svg { width: 19px; height: 19px; fill: var(--gold); }
.phone__txt { display: flex; flex-direction: column; line-height: 1.25; }
.phone__txt b { font-family: var(--f-display); font-size: 1.28rem; letter-spacing: .05em; }
.phone__txt span { font-size: .66rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-top: 3px; }

.card-form {
  border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(24px, 3.4vw, 36px);
  background: linear-gradient(165deg, rgba(20, 29, 51, .92), rgba(8, 13, 26, .92));
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(8px);
}
.card-form h3 { font-size: 1.5rem; margin-bottom: 6px; }
.card-form > p { margin: 0 0 22px; font-size: .9rem; color: var(--muted); }

.field { margin-bottom: 15px; }
.field label {
  display: block; margin-bottom: 7px;
  font-size: .67rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--muted);
}
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px;
  border: 1px solid var(--line); border-radius: var(--r-sm);
  background: rgba(4, 6, 13, .6); color: var(--text);
  font: inherit; font-size: .95rem;
  transition: border-color .2s, background .2s;
}
.field textarea { resize: vertical; min-height: 96px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue-hi); background: rgba(4, 6, 13, .85);
}
.field input::placeholder, .field textarea::placeholder { color: #5d6880; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.card-form .btn { width: 100%; margin-top: 8px; }
.card-form small { display: block; margin-top: 14px; text-align: center; font-size: .76rem; color: var(--faint); }

/* ---------- 13. Redes ---------- */
.social { border-top: 1px solid var(--line); background: var(--ink-2); }
.social__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 14px; }
.social__handle {
  margin: 26px 0 0; text-align: center;
  font-size: .92rem; color: var(--muted);
}
.social__handle b { color: var(--gold-hi); font-weight: 600; word-break: break-word; }
.soc {
  position: relative; overflow: hidden;
  display: flex; align-items: center; gap: 15px;
  padding: 20px 22px; border-radius: var(--r);
  border: 1px solid var(--line); background: rgba(255, 255, 255, .025);
  transition: transform .24s cubic-bezier(.2,.7,.2,1), border-color .24s, background .24s;
}
.soc::after {
  content: ""; position: absolute; right: -40px; top: -40px; width: 130px; height: 130px;
  border-radius: 50%; background: var(--soc, var(--blue)); opacity: .12; filter: blur(14px);
  transition: opacity .3s;
}
.soc:hover { transform: translateY(-4px); border-color: var(--line-hi); background: rgba(255, 255, 255, .05); }
.soc:hover::after { opacity: .3; }
.soc__ico { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 13px; flex: none; background: rgba(255, 255, 255, .06); }
.soc__ico svg { width: 22px; height: 22px; fill: #fff; }
.soc__txt { display: flex; flex-direction: column; min-width: 0; }
.soc__txt b { font-size: .98rem; }
.soc__txt span { font-size: .78rem; color: var(--muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* ---------- 14. Footer ---------- */
.ftr { background: var(--ink); border-top: 1px solid var(--line); padding-block: 56px 34px; }
.ftr__top { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); gap: 40px; align-items: start; margin-bottom: 40px; }
.ftr__brand { display: flex; align-items: center; gap: 18px; margin-bottom: 18px; }
.ftr__brand .mark { width: 76px; color: #fff; opacity: .9; flex: none; }
.ftr__brand .mark img { width: 100%; height: auto; }
.ftr__brand h3 { font-size: 1.6rem; }
.ftr__brand p { margin: 6px 0 0; font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }
.ftr__gracias { max-width: 52ch; font-size: .92rem; color: var(--muted); margin: 0; }
.ftr__links { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 20px; }
.ftr__links a { font-size: .9rem; color: var(--muted); transition: color .18s; }
.ftr__links a:hover { color: var(--gold); }
.ftr__bot {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center;
  padding-top: 26px; border-top: 1px solid var(--line);
  font-size: .8rem; color: var(--faint);
}
.ftr__bot p { margin: 0; }

/* WhatsApp flotante */
.fab {
  position: fixed; right: 18px; bottom: 18px; z-index: 95;
  display: grid; place-items: center;
  width: 58px; height: 58px; border-radius: 50%;
  background: linear-gradient(180deg, #3ddc72, #16a34a);
  box-shadow: 0 16px 38px -12px rgba(22, 163, 74, .9);
  transition: transform .22s cubic-bezier(.2,.7,.2,1);
}
.fab svg { width: 29px; height: 29px; fill: #04220f; }
.fab:hover { transform: scale(1.09); }
.fab::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid rgba(61, 220, 114, .55);
  animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse { to { transform: scale(1.7); opacity: 0; } }

/* ---------- 15. Responsive ---------- */
@media (max-width: 900px) {
  .vid--reel { grid-column: span 6; }
  .vid-aside { grid-column: span 12; }
}

@media (max-width: 920px) {
  .nav, .hdr .btn { display: none; }
  .burger { display: flex; }

  .nav.is-open {
    display: flex; flex-direction: column; align-items: stretch; gap: 6px;
    position: fixed; inset: 72px 12px auto;
    padding: 16px; border-radius: var(--r-lg);
    background: rgba(8, 12, 24, .97);
    border: 1px solid var(--line-hi);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(16px);
  }
  .nav.is-open a { padding: 14px 16px; font-size: .95rem; }
  .nav.is-open > .btn { display: inline-flex; margin-top: 8px; justify-content: center; }

  .hero { min-height: auto; padding-block: 120px 56px; text-align: center; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__fig { order: -1; max-width: 340px; }
  .hero__pitch { margin-inline: auto; }
  .hero__cta, .hero__stats { justify-content: center; }
  .hero__eyebrow { margin-inline: auto; }
  .hero__scroll { display: none; }

  .bio__grid, .reg__grid, .contact__grid, .ftr__top { grid-template-columns: 1fr; }
  .bio__figure { max-width: 420px; margin-inline: auto; }
  .music__head { align-items: start; }

  .music__new { grid-template-columns: 1fr; }
  .music__art { max-width: 460px; margin-inline: auto; }
  .music__new .singles { grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); }
}

@media (max-width: 820px) {
  .gal__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .vid--reel { grid-column: span 12; }
  .vid--feature .vid__play i { width: 54px; height: 54px; }
  .field-row { grid-template-columns: 1fr; }
  .hero__stats { gap: 18px 26px; }
  .btn { padding: 13px 20px; font-size: .84rem; }
  .bio__badge { right: 8px; bottom: 14px; padding: 11px 14px; }
  .ftr__bot { justify-content: center; text-align: center; }
  .lb__nav { width: 40px; height: 40px; }
  .lb__nav--prev { left: 8px; } .lb__nav--next { right: 8px; }
}

/* ---------- 16. Movimiento reducido ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Impresión ---------- */
@media print {
  .hdr, .fab, .grain, .hero__scroll, .marquee, .lb { display: none !important; }
  body { background: #fff; color: #000; }
}
