/* ============================================================
   DJ MICHAEL JET — paleta tomada del logo (azul→violeta→magenta→naranja)
   ============================================================ */
:root {
  --ink:        #0A0613;
  --ink-2:      #120A24;
  --ink-3:      #1B1036;
  --blue:       #2E6FB0;
  --violet:     #6B2C8F;
  --magenta:    #B0245E;
  --red:        #D23B3B;
  --orange:     #E0742E;
  --amber:      #FFB627;
  --bone:       #ECE7F5;
  --muted:      #9A8DB8;
  --line:       rgba(255, 255, 255, 0.08);

  /* degradado del logo */
  --grad: linear-gradient(100deg, var(--blue), var(--violet) 32%, var(--magenta) 60%, var(--red) 80%, var(--orange));

  --display: "Anton", "Arial Narrow", sans-serif;
  --body:    "Space Grotesk", system-ui, sans-serif;
  --mono:    "Space Mono", ui-monospace, monospace;

  --maxw: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--bone);
  font-family: var(--body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(50vw 50vw at 12% -5%, rgba(46, 111, 176, 0.26), transparent 60%),
    radial-gradient(45vw 45vw at 95% 8%, rgba(176, 36, 94, 0.22), transparent 60%),
    radial-gradient(55vw 55vw at 70% 105%, rgba(224, 116, 46, 0.16), transparent 60%);
  z-index: -1;
  pointer-events: none;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--orange);
}

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Botones ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  font-family: var(--mono);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 26px;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.2s;
}
.btn-primary { background: var(--amber); color: #1a0d00; font-weight: 700; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(255, 182, 39, 0.32); }
.btn-ghost { background: transparent; color: var(--bone); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); }

/* ============================================================ NAV */
header.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(10, 6, 19, 0.72);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 38px; width: auto; }
.brand .name { font-family: var(--display); font-size: 1.25rem; letter-spacing: 0.06em; text-transform: uppercase; }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.18s;
}
.nav-links a:hover { color: var(--bone); }
.nav-toggle { display: none; background: none; border: 0; color: var(--bone); font-size: 1.6rem; cursor: pointer; }

/* ============================================================ HERO */
.hero { position: relative; min-height: 90vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: -1; background-size: cover; background-position: center; }
.hero-bg img, .hero-bg video { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,6,19,.55), rgba(10,6,19,.85)); }
.hidden { display: none !important; }
.equalizer {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  gap: 6px;
  padding: 0 4vw;
  opacity: 0.42;
  z-index: 0;
  pointer-events: none;
  mask-image: linear-gradient(to top, black 8%, transparent 80%);
}
.eq-bar { flex: 1; background: var(--grad); border-radius: 3px 3px 0 0; height: 12%; animation: pulse 1.1s ease-in-out infinite alternate; }
@keyframes pulse { to { height: var(--h, 70%); } }

.hero-content { position: relative; z-index: 1; padding: 70px 0; text-align: center; width: 100%; }
.hero-logo { max-width: min(640px, 86%); margin: 14px auto 26px; filter: drop-shadow(0 18px 50px rgba(176, 36, 94, 0.35)); }
.hero-tagline { max-width: 560px; margin: 0 auto 32px; font-size: 1.12rem; color: var(--muted); }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* ============================================================ BANNER MUSICAL */
.music-banner {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(rgba(10, 6, 19, 0.84), rgba(10, 6, 19, 0.84)), var(--grad);
  padding: 56px 0;
}
.music-grid { display: grid; grid-template-columns: 0.85fr 1.4fr; gap: 40px; align-items: center; }
.music-copy h2 { font-family: var(--display); font-size: clamp(2rem, 5vw, 3.4rem); text-transform: uppercase; line-height: 0.95; margin: 12px 0 14px; }
.music-copy p { color: var(--muted); margin-bottom: 20px; }
.sc-embed { border-radius: 6px; overflow: hidden; border: 1px solid var(--line); box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5); }
.sc-embed iframe { display: block; width: 100%; border: 0; }

/* ============================================================ SECCIONES */
section { padding: 92px 0; }
.section-head { margin-bottom: 50px; max-width: 640px; }
.section-head h2 { font-family: var(--display); font-size: clamp(2.2rem, 6vw, 4rem); text-transform: uppercase; line-height: 0.92; margin: 14px 0 0; }

/* ============================================================ BANNER BIO */
.about { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center; }
.about-photo { position: relative; border-radius: 8px; overflow: hidden; aspect-ratio: 4 / 5; border: 1px solid var(--line); }
.about-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(160deg, transparent 45%, rgba(107, 44, 143, 0.42)); mix-blend-mode: screen; }
.about-photo img, .about-photo video { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.about-copy h2 { font-family: var(--display); font-size: clamp(2.2rem, 6vw, 4rem); text-transform: uppercase; line-height: 0.9; margin: 14px 0 22px; }
.about-copy p { color: #c8bce0; margin-bottom: 16px; font-size: 1.05rem; }
.stats { display: flex; gap: 36px; margin-top: 30px; flex-wrap: wrap; }
.stat .num { font-family: var(--display); font-size: 2.6rem; line-height: 1; }
.stat .label { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }

/* ============================================================ PACKS */
.packs-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 26px; }
.pack-card { background: var(--ink-2); border: 1px solid var(--line); border-radius: 8px; overflow: hidden; display: flex; flex-direction: column; transition: transform 0.2s ease, border-color 0.2s; }
.pack-card:hover { transform: translateY(-4px); border-color: rgba(255, 182, 39, 0.45); }
.pack-cover { aspect-ratio: 16 / 9; background: linear-gradient(rgba(10,6,19,.4), rgba(10,6,19,.4)), var(--grad); }
.pack-cover img { width: 100%; height: 100%; object-fit: cover; }
.pack-body { padding: 20px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.pack-price { font-family: var(--mono); font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--amber); margin-bottom: 8px; }
.pack-body h3 { font-size: 1.18rem; margin-bottom: 8px; }
.pack-body p { color: var(--muted); font-size: 0.92rem; flex: 1; }
.pack-body .btn { margin-top: 16px; align-self: flex-start; }

/* ============================================================ SETS */
.sets-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(330px, 1fr)); gap: 26px; }
.set-card { background: var(--ink-2); border: 1px solid var(--line); border-radius: 8px; overflow: hidden; display: flex; flex-direction: column; transition: transform 0.2s ease, border-color 0.2s; }
.set-card:hover { transform: translateY(-4px); border-color: rgba(224, 116, 46, 0.45); }
.set-media { background: #000; aspect-ratio: 16 / 9; }
.set-media iframe { width: 100%; height: 100%; border: 0; display: block; }
.set-media.yt-thumb { position: relative; cursor: pointer; }
.set-media.yt-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.set-media.yt-thumb .yt-play {
  position: absolute; inset: 0; margin: auto; width: 64px; height: 64px;
  border-radius: 50%; border: none; background: rgba(10, 6, 19, 0.65);
  color: var(--bone); font-size: 1.4rem; display: grid; place-items: center;
  cursor: pointer; transition: background 0.18s, transform 0.18s;
}
.set-media.yt-thumb:hover .yt-play { background: var(--orange); transform: scale(1.08); }

/* ---- Enlaces a YouTube (separados de la grilla) ---- */
#setsYoutube { margin-top: 28px; }
.yt-links-label {
  font-family: var(--mono); font-size: 0.75rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 14px;
}
.yt-links { display: flex; flex-wrap: wrap; gap: 12px; }
.yt-link {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px; border-radius: 999px; border: 1px solid var(--line);
  background: var(--ink-2); color: var(--bone); text-decoration: none;
  font-size: 0.9rem; transition: border-color 0.18s, transform 0.18s;
}
.yt-link:hover { border-color: #ff0000; transform: translateY(-2px); }
.yt-link svg { width: 18px; height: 18px; fill: #ff0000; flex-shrink: 0; }
.set-media.audio { aspect-ratio: auto; display: flex; flex-direction: column; justify-content: center; padding: 28px 22px; background: linear-gradient(rgba(10, 6, 19, 0.6), rgba(10, 6, 19, 0.6)), var(--grad); }
.set-media.audio audio { width: 100%; margin-top: 14px; }
.set-media.audio .badge-play { font-family: var(--display); text-transform: uppercase; font-size: 1.3rem; }
.set-body { padding: 20px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.set-tag { font-family: var(--mono); font-size: 0.65rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--orange); margin-bottom: 8px; }
.set-body h3 { font-size: 1.18rem; margin-bottom: 8px; }
.set-body p { color: var(--muted); font-size: 0.92rem; }
.set-link { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--amber); margin-top: 16px; }
.sets-empty { color: var(--muted); font-family: var(--mono); }

/* ============================================================ BOOK */
.book { background: var(--ink-2); border-top: 1px solid var(--line); }
.book-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 56px; align-items: start; }
.book-copy h2 { font-family: var(--display); font-size: clamp(2.4rem, 7vw, 4.6rem); text-transform: uppercase; line-height: 0.88; margin: 14px 0 20px; }
.book-copy p { color: var(--muted); margin-bottom: 20px; }
.book-mail { font-family: var(--mono); color: var(--orange); word-break: break-all; }
form.book-form { display: grid; gap: 16px; }
.field { display: grid; gap: 6px; }
.field label { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.field input, .field textarea, .field select { background: var(--ink); border: 1px solid var(--line); border-radius: 4px; color: var(--bone); padding: 13px 15px; font-family: var(--body); font-size: 0.98rem; transition: border-color 0.18s; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--orange); }
.field textarea { resize: vertical; min-height: 110px; }
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ============================================================ FOOTER */
footer.site { border-top: 1px solid var(--line); padding: 56px 0 40px; }
.footer-grid { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 24px; }
.footer-logo { height: 64px; width: auto; }
.socials { display: flex; gap: 14px; }
.socials a { display: inline-grid; place-items: center; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 50%; color: var(--muted); transition: all 0.18s; }
.socials a:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-3px); }
.socials svg { width: 20px; height: 20px; }
.copyright { font-family: var(--mono); font-size: 0.72rem; color: var(--muted); margin-top: 28px; text-align: center; }
.copyright a { color: var(--muted); border-bottom: 1px dotted var(--muted); }

/* ============================================================ RESPONSIVE */
@media (max-width: 880px) {
  .nav-links { position: fixed; inset: 74px 0 auto 0; flex-direction: column; background: var(--ink-2); border-bottom: 1px solid var(--line); padding: 24px; gap: 22px; transform: translateY(-130%); transition: transform 0.28s ease; }
  .nav-links.open { transform: translateY(0); }
  .nav-toggle { display: block; }
  .music-grid, .about, .book-grid { grid-template-columns: 1fr; gap: 34px; }
  .about-photo { max-width: 420px; }
  section { padding: 64px 0; }
}
@media (max-width: 520px) {
  .row-2 { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .footer-grid { justify-content: center; text-align: center; }
  .brand .name { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .eq-bar { animation: none; height: 38%; }
  html { scroll-behavior: auto; }
}
