/* ─────────────────────────────────────────
   ONA Music Studio — Stylesheet
   Variables → css/tokens.css
   ───────────────────────────────────────── */

/* ─── RESET ─── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--display);
  min-height: 100vh;
  overflow-x: hidden;
  transition: background 0.4s ease, color 0.4s ease;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

button:focus-visible,
a:focus-visible,
[role="button"]:focus-visible,
[role="option"]:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* ─── NOISE OVERLAY ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.025'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: rgba(58, 142, 255, 0.35); }

/* ─────────────────────────────────────────
   NAV
   ───────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 64px;
  background: color-mix(in srgb, var(--black) 8%, transparent);
  backdrop-filter: blur(20px);
  border-bottom: none;
  display: flex;
  align-items: center;
  padding: 0 32px;
  z-index: 1000;
}

.nav-menu {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 6px;
  pointer-events: auto;
}

/* ─── NAV TABS ─── */
.nav-tabs {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

/* ─── NAV SWITCH ─── */
.nav-switch {
  position: relative;
  display: flex;
  align-items: center;
  width: 80px;
  height: 36px;
  border-radius: 18px;
  background: transparent;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.14),
    inset 0 1px 5px rgba(0,0,0,0.28);
}

.nav-switch-pill {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 37px;
  height: 30px;
  border-radius: 15px;
  background: rgba(255,255,255,0.13);
  border: none;
  box-shadow: none;
  backdrop-filter: blur(10px);
  transition: transform 0.45s cubic-bezier(0.77, 0, 0.18, 1);
  pointer-events: none;
}

.nav-switch-pill.is-contact {
  transform: translateX(37px);
}

.nav-switch-btn {
  width: 50%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 1;
  color: rgba(255,255,255,0.35);
  transition: color 0.3s ease;
  padding: 0;
}

.nav-switch-btn.active {
  color: rgba(255,255,255,0.92);
}

.nav-switch-btn svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  pointer-events: none;
}

body.light .nav-switch-btn {
  color: rgba(0,0,0,0.35);
}

body.light .nav-switch-btn.active {
  color: rgba(0,0,0,0.85);
}

body.light .nav-switch-pill {
  background: rgba(0,0,0,0.10);
}

body.light .nav-switch {
  box-shadow:
    inset 0 0 0 1px rgba(0,0,0,0.14),
    inset 0 1px 5px rgba(0,0,0,0.08);
}

/* ─── ISOTIPO BTN (solo móvil) ─── */
.nav-isotipo-btn {
  display: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  opacity: 0.55;
  transition: opacity 0.2s ease;
}

.nav-isotipo-btn:hover { opacity: 1; }

.nav-isotipo-btn img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

body.light .nav-isotipo-btn img { filter: brightness(0); }

/* ─── MENÚ MÓVIL RACK ─── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1100;
  pointer-events: none;
  visibility: hidden;
}

.mobile-menu.open {
  pointer-events: auto;
  visibility: visible;
}

/* Fondo oscuro detrás del panel */
.mobile-menu::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.mobile-menu.open::before {
  opacity: 1;
}

.mobile-menu-panel {
  position: absolute;
  inset: 0;
  background: #0c0c0c;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: 72px 20px 48px;
  transform: translateY(-100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu.open .mobile-menu-panel {
  transform: translateY(0);
}

/* ─── RACK FRAME ─── */
.rack {
  display: flex;
  flex: 1;
  max-height: 520px;
  background: #080808;
  border: 2px solid #2a2a2a;
  border-radius: 6px;
  overflow: hidden;
  box-shadow:
    0 16px 48px rgba(0,0,0,0.8),
    inset 0 1px 0 rgba(255,255,255,0.04),
    inset 0 -1px 0 rgba(0,0,0,0.6);
}

/* Raíl lateral con agujeros de tornillos */
.rack-rail {
  width: 20px;
  flex-shrink: 0;
  background: #141414;
  background-image:
    radial-gradient(ellipse 5px 3px at center, #2a2a2a 60%, transparent 100%);
  background-size: 20px 22px;
  background-position: center 8px;
  background-repeat: repeat-y;
  border-right: 1px solid #1f1f1f;
}

.rack-rail:last-child {
  border-right: none;
  border-left: 1px solid #1f1f1f;
}

/* Columna de módulos */
.rack-units {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* ─── MOBILE RACK UNIT (menú móvil, cada página = 1 módulo) ─── */
.mobile-rack-unit {
  flex: 1;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 56px;
  background: linear-gradient(180deg, #222 0%, #181818 100%);
  border: none;
  border-bottom: 1px solid #0a0a0a;
  border-top: 1px solid #2e2e2e;
  cursor: pointer;
  padding: 0;
  opacity: 0;
  transition: background 0.2s, opacity 0s;
}

.mobile-rack-unit:first-child { border-top: none; }
.mobile-rack-unit:last-child  { border-bottom: none; }

.mobile-rack-unit:hover {
  background: linear-gradient(180deg, #2c2c2c 0%, #202020 100%);
}

/* Entrada escalonada al abrir */
@keyframes rackSlideIn {
  from { opacity: 0; transform: translateX(-6px); }
  to   { opacity: 1; transform: translateX(0); }
}

.mobile-menu.open .mobile-rack-unit:nth-child(1) { animation: rackSlideIn 0.28s cubic-bezier(0.16,1,0.3,1) 0.28s forwards; }
.mobile-menu.open .mobile-rack-unit:nth-child(2) { animation: rackSlideIn 0.28s cubic-bezier(0.16,1,0.3,1) 0.34s forwards; }
.mobile-menu.open .mobile-rack-unit:nth-child(3) { animation: rackSlideIn 0.28s cubic-bezier(0.16,1,0.3,1) 0.40s forwards; }
.mobile-menu.open .mobile-rack-unit:nth-child(4) { animation: rackSlideIn 0.28s cubic-bezier(0.16,1,0.3,1) 0.46s forwards; }
.mobile-menu.open .mobile-rack-unit:nth-child(5) { animation: rackSlideIn 0.28s cubic-bezier(0.16,1,0.3,1) 0.52s forwards; }

/* Orejeta de rack con tornillos — menú móvil */
.mobile-menu .rack-ear {
  width: 22px;
  height: 100%;
  background: #161616;
  border-right: 1px solid #0e0e0e;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  padding: 10px 0;
  flex-shrink: 0;
}

.mobile-menu .rack-ear:last-child {
  border-right: none;
  border-left: 1px solid #0e0e0e;
}

.mobile-menu .rack-screw {
  display: block;
  width: 9px !important;
  height: 9px !important;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 35%, #3c3c3c, #111);
  border: 1px solid #3a3a3a;
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.7), 0 1px 0 rgba(255,255,255,0.04);
  position: static !important;
  top: auto !important;
  left: auto !important;
  bottom: auto !important;
  right: auto !important;
}

/* Faceplate del módulo */
.mobile-menu .rack-face {
  flex: 1;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 12px 0 10px;
  gap: 10px;
}

.mobile-menu .rack-ch {
  font-family: var(--mono);
  font-size: 8px;
  color: #3a3a3a;
  letter-spacing: 0.08em;
  flex-shrink: 0;
  user-select: none;
}

.mobile-menu .rack-name {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #aaa;
  flex: 1;
  text-align: left;
  white-space: nowrap;
  transition: color 0.2s;
}

.mobile-rack-unit:hover .rack-name { color: #fff; }

/* VU meter decorativo — menú móvil */
.mobile-menu .rack-vu {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 20px;
  flex-shrink: 0;
}

.mobile-menu .rack-vu span {
  display: block;
  width: 3px;
  border-radius: 1px 1px 0 0;
  background: var(--accent);
  opacity: 0.18;
  transition: opacity 0.2s, height 0.2s;
  transform-origin: bottom;
}

.mobile-menu .rack-vu span:nth-child(1) { height: 6px; }
.mobile-menu .rack-vu span:nth-child(2) { height: 12px; }
.mobile-menu .rack-vu span:nth-child(3) { height: 8px; }
.mobile-menu .rack-vu span:nth-child(4) { height: 16px; }
.mobile-menu .rack-vu span:nth-child(5) { height: 10px; }

.mobile-rack-unit:hover .rack-vu span { opacity: 0.75; }

@keyframes vuPulse {
  0%, 100% { transform: scaleY(1); }
  50%       { transform: scaleY(0.35); }
}

.mobile-rack-unit:hover .rack-vu span:nth-child(1) { animation: vuPulse 0.65s ease infinite 0s; }
.mobile-rack-unit:hover .rack-vu span:nth-child(2) { animation: vuPulse 0.65s ease infinite 0.1s; }
.mobile-rack-unit:hover .rack-vu span:nth-child(3) { animation: vuPulse 0.65s ease infinite 0.05s; }
.mobile-rack-unit:hover .rack-vu span:nth-child(4) { animation: vuPulse 0.65s ease infinite 0.18s; }
.mobile-rack-unit:hover .rack-vu span:nth-child(5) { animation: vuPulse 0.65s ease infinite 0.08s; }

/* LED indicador — menú móvil */
.mobile-menu .rack-led {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--accent);
  opacity: 0.2;
  box-shadow: 0 0 4px var(--accent);
  transition: opacity 0.2s, box-shadow 0.2s;
}

.mobile-rack-unit:hover .rack-led {
  opacity: 1;
  box-shadow: 0 0 10px var(--accent), 0 0 20px var(--accent);
}

/* ─── TAB CIERRE ─── */
.mobile-menu-pull {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 32px;
  background: none;
  border: 1px solid #2a2a2a;
  border-bottom: none;
  border-radius: 40px 40px 0 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  transition: color 0.2s, border-color 0.2s;
  padding-bottom: 4px;
}

.mobile-menu-pull:hover { color: #aaa; border-color: #444; }

.mobile-menu-pull svg {
  width: 14px;
  height: 9px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mobile-menu-close:hover { color: var(--white); }

.mobile-menu-close svg {
  width: 20px;
  height: 20px;
  display: block;
}

/* ─── THEME TOGGLE ─── */
.nav-ig {
  margin-left: auto;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--white-dim);
  transition: color 0.3s ease;
  text-decoration: none;
}

.nav-ig:hover { color: var(--white); }

.nav-ig svg {
  width: 17px;
  height: 17px;
  stroke: currentColor;
}

.theme-toggle {
  margin-left: 0;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  cursor: pointer;
  display: grid;
  place-items: center;
  color: var(--white-dim);
  transition: color 0.3s ease;
}

.theme-toggle:hover { color: var(--white); }

.theme-toggle svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  grid-area: 1 / 1;
  transition: opacity 0.3s ease, transform 0.4s ease;
}

.theme-toggle .icon-moon { opacity: 1; transform: rotate(0deg) scale(1); }
.theme-toggle .icon-sun  { opacity: 0; transform: rotate(90deg) scale(0.6); }

body.light .theme-toggle .icon-moon { opacity: 0; transform: rotate(-90deg) scale(0.6); }
body.light .theme-toggle .icon-sun  { opacity: 1; transform: rotate(0deg) scale(1); }

/* ─────────────────────────────────────────
   PANELS
   ───────────────────────────────────────── */
.panel {
  display: none;
  padding-top: 64px;
  min-height: 100vh;
  animation: fadeUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}

.panel.active { display: block; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─────────────────────────────────────────
   HERO
   ───────────────────────────────────────── */
.hero {
  margin-top: -64px;
  height: 100vh;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background: #080808;
}

/* ─── SLIDESHOW BACKGROUND ─── */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 1.6s ease;
  pointer-events: none;
}

.hero-slide.active {
  opacity: 0.42;
}

body.light .hero-slide.active {
  opacity: 0.42;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8,8,8,0.88) 0%,
    rgba(8,8,8,0.45) 55%,
    rgba(8,8,8,0.78) 100%
  );
  z-index: 1;
  pointer-events: none;
  transition: background 0.4s ease;
}

body.light .hero-video-overlay {
  display: none;
}

.hero-bg-lines {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 79px, var(--border) 79px, var(--border) 80px),
    repeating-linear-gradient(90deg, transparent, transparent 79px, var(--border) 79px, var(--border) 80px);
  opacity: 0.3;
  z-index: 2;
}

/* ─── BLUE ATMOSPHERIC GLOW ─── */
.hero-bg-glow {
  position: absolute;
  right: -5%;
  top: 15%;
  width: 65%;
  height: 70%;
  background: radial-gradient(ellipse at center, var(--accent-glow) 0%, transparent 68%);
  pointer-events: none;
  z-index: 2;
}

.hero-bg-circle {
  position: absolute;
  right: -15vw;
  top: 50%;
  transform: translateY(-50%);
  width: 70vw;
  height: 70vw;
  border-radius: 50%;
  border: 1px solid var(--accent-dim);
  box-shadow: 0 0 80px rgba(58, 142, 255, 0.1), inset 0 0 80px rgba(58, 142, 255, 0.04);
  animation: spin 60s linear infinite;
  z-index: 3;
}

.hero-bg-circle::before {
  content: '';
  position: absolute;
  inset: 15%;
  border-radius: 50%;
  border: 1px solid rgba(58, 142, 255, 0.1);
}

.hero-bg-circle::after {
  content: '';
  position: absolute;
  inset: 32%;
  border-radius: 50%;
  border: 1px solid rgba(58, 142, 255, 0.07);
}

@keyframes spin {
  from { transform: translateY(-50%) rotate(0deg); }
  to   { transform: translateY(-50%) rotate(360deg); }
}

.hero-logo-bg {
  position: absolute;
  z-index: 2;
  width: clamp(200px, 30vw, 460px);
  height: clamp(100px, 15vw, 230px);
  left: 50%;
  top: 42%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  user-select: none;
}

.hero-logo {
  position: absolute;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  width: clamp(200px, 30vw, 460px);
  height: auto;
  display: block;
  opacity: 0.9;
  filter:
    brightness(0) invert(1) brightness(0.7)
    drop-shadow(0 0 9px rgba(58, 142, 255, 0.38))
    drop-shadow(0 0 24px rgba(58, 142, 255, 0.18))
    drop-shadow(0 0 40px rgba(58, 142, 255, 0.08));
  mix-blend-mode: screen;
}

body.light .hero-logo {
  filter: brightness(0) invert(1);
  opacity: 0.5;
}

.hero-bio {
  position: absolute;
  bottom: 48px;
  left: 48px;
  z-index: 5;
  max-width: 620px;
  background: color-mix(in srgb, var(--black) 72%, transparent);
  backdrop-filter: blur(12px);
  border-left: 2px solid var(--accent);
  padding: 14px 20px 14px 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
  cursor: default;
  transition: padding 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-bio:hover {
  padding: 20px 24px 20px 20px;
}

.hero-bio-details {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 0;
  transition: max-height 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.7s ease, margin-top 0.6s ease;
}

.hero-bio:hover .hero-bio-details {
  max-height: 260px;
  opacity: 1;
  margin-top: 10px;
}

.hero-bio-tag {
  font-family: var(--mono);
  font-size: 15px;
  color: var(--accent);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-bio-credits {
  font-family: var(--mono);
  font-size: 16px;
  color: var(--white-dim);
  line-height: 1.8;
  max-width: none;
}

.hero-indicator {
  position: absolute;
  bottom: 64px;
  right: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 4;
}

.hero-indicator span {
  font-family: var(--mono);
  font-size: 9px;
  color: var(--white-ghost);
  letter-spacing: 0.2em;
  writing-mode: vertical-rl;
}

.hero-indicator-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  opacity: 0.6;
}

/* ─────────────────────────────────────────
   HITS TICKER
   ───────────────────────────────────────── */
.hits-ticker {
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  position: relative;
}

.hits-ticker::before,
.hits-ticker::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.hits-ticker::before {
  left: 0;
  background: linear-gradient(to right, var(--surface), transparent);
}

.hits-ticker::after {
  right: 0;
  background: linear-gradient(to left, var(--surface), transparent);
}

.hits-ticker-track {
  display: flex;
  width: max-content;
  animation: tickerScroll 36s linear infinite;
}

.hits-ticker-track:hover { animation-play-state: paused; }

@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.hits-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 28px;
  text-decoration: none;
  border-right: 1px solid var(--border);
  flex-shrink: 0;
  transition: background 0.2s ease;
  cursor: pointer;
}

.hits-item:hover { background: var(--surface-2); }

.hits-item-cover {
  width: 52px;
  height: 52px;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
  filter: grayscale(20%);
  transition: filter 0.3s ease;
}

.hits-item:hover .hits-item-cover { filter: grayscale(0%); }

.hits-item-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hits-item-title {
  font-family: var(--display);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.hits-item-artist {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--white-dim);
  letter-spacing: 0.08em;
  white-space: nowrap;
}

/* ─────────────────────────────────────────
   SECTIONS
   ───────────────────────────────────────── */
.section {
  padding: 80px 48px;
  border-bottom: 1px solid var(--border);
}

.section-label {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--white-dim);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 48px;
}

.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, rgba(58, 142, 255, 0.45), transparent);
  max-width: 200px;
}

.section-label .num {
  color: var(--accent);
  margin-right: 4px;
  opacity: 0.8;
}

.section h2 {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  line-height: 1.1;
}

.section p {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--white-dim);
  line-height: 1.9;
  max-width: 560px;
}

/* ─────────────────────────────────────────
   BIO
   ───────────────────────────────────────── */
.bio-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px 80px;
  margin-top: 48px;
  align-items: start;
}

.bio-grid h2 {
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0;
}

.bio-right {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-top: 8px;
}

.bio-right p {
  max-width: none;
}

.bio-artists-label {
  display: block;
  font-family: var(--mono);
  font-size: 9px;
  color: var(--white-ghost);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.bio-artists-list {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--white-dim);
  line-height: 2.2;
  max-width: none;
}

/* ─── HERO BIO LINK ─── */
.hero-bio-link {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--white-dim);
  letter-spacing: 0.12em;
  text-decoration: none;
  transition: color 0.2s ease;
  text-align: left;
}

.hero-bio-link:hover { color: var(--white); }

/* ─── HITS CTA ─── */
.hits-cta {
  padding: 0;
  background: var(--black);
}

.hits-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  background: none;
  border: none;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  color: var(--white-ghost);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 22px 48px;
  cursor: pointer;
  transition: color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.hits-cta-btn svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  flex-shrink: 0;
  opacity: 0.6;
  transition: opacity 0.25s ease;
}

.hits-cta-btn:hover {
  color: var(--accent);
  border-top-color: var(--accent);
  border-bottom-color: var(--accent);
  background: var(--accent-glow);
  box-shadow:
    0 -1px 18px rgba(58,142,255,0.18),
    0  1px 18px rgba(58,142,255,0.18);
}

.hits-cta-btn:hover svg { opacity: 1; }

/* ─────────────────────────────────────────
   SERVICES
   ───────────────────────────────────────── */
.services-block {
  margin-top: 48px;
  border-top: 1px solid var(--border);
}

.services-block + .services-block { margin-top: 40px; }

.services-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0 16px;
}

.services-category-label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
}

.services-category-cta {
  background: none;
  border: 1px solid var(--border-light);
  color: var(--white-dim);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  padding: 8px 16px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.services-category-cta:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.services-list {
  display: flex;
  flex-direction: column;
}

.services-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  gap: 24px;
}

.services-item:last-child { border-bottom: none; }

.services-item--expandable {
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
}

.services-item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.services-item--featured .services-name,
.services-item--featured .services-item-header .services-name {
  color: var(--white);
}

.services-name {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--white-dim);
}

.services-price {
  font-family: var(--mono);
  font-size: 20px;
  font-weight: 500;
  color: var(--white);
  white-space: nowrap;
  flex-shrink: 0;
}

.services-unit {
  font-size: 12px;
  color: var(--white-dim);
  margin-left: 2px;
}

.services-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-bottom: 4px;
}

.services-features li {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--white-dim);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.6;
}

.services-features li::before {
  content: '—';
  color: var(--accent);
  flex-shrink: 0;
  font-size: 10px;
  margin-top: 1px;
}

/* ─────────────────────────────────────────
   ABOUT PANEL
   ───────────────────────────────────────── */
.about-panel {
  max-width: 1100px;
  margin: 0 auto;
}

.about-content {
  padding: 80px 48px 64px;
  border-bottom: 1px solid var(--border);
  max-width: 720px;
}

.about-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.about-body p {
  font-family: var(--mono);
  font-size: 15px;
  color: var(--white-dim);
  line-height: 1.9;
  max-width: none;
}

.about-signature {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.about-signature-name {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}

.about-signature-role {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--white-dim);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.about-location {
  padding: 64px 48px 80px;
}

.about-location .section-location {
  margin-top: 48px;
}

/* ─────────────────────────────────────────
   EQUIPMENT
   ───────────────────────────────────────── */
.equipment-list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
}

.equipment-item {
  display: grid;
  grid-template-columns: 40px 1fr auto auto;
  align-items: center;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s, padding 0.2s;
}

.equipment-item:last-child { border-bottom: none; }

.equipment-category {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 28px 0 10px;
  border-bottom: 1px solid var(--border);
}

.equipment-category:first-child { padding-top: 0; }

.equipment-item:hover {
  background: var(--surface);
  padding-left: 12px;
  padding-right: 12px;
  margin: 0 -12px;
  box-shadow: inset 3px 0 0 var(--accent);
}

.equipment-num {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--accent);
  opacity: 0.65;
}

.equipment-name {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.equipment-brand {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--white-dim);
  letter-spacing: 0.1em;
}

.equipment-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.7;
  border: 1px solid var(--accent-dim);
  padding: 4px 10px;
}

/* ─── EQUIPMENT ACCORDION ─── */
.equip-accordion { margin-top: 48px; }

.equip-group {
  border-bottom: 1px solid var(--border);
}

.equip-group-hd {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  cursor: pointer;
  user-select: none;
  transition: padding 0.2s;
}

.equip-group-hd:hover { padding-left: 6px; }

.equip-group-name {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  flex: 1;
}

.equip-group-count {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--white-ghost);
  letter-spacing: 0.08em;
}

.equip-group-chevron {
  width: 15px;
  height: 15px;
  color: var(--white-dim);
  transition: transform 0.3s ease, color 0.2s;
  flex-shrink: 0;
}

.equip-group.open .equip-group-chevron,
.equip-group.hover-open .equip-group-chevron { color: var(--accent); }

.equip-group-bd {
  height: 0;
  overflow: hidden;
  opacity: 0;
  /* transición manejada por JS con alturas reales */
}

.equip-group-chevron {
  transition: transform 0.38s cubic-bezier(0.16, 1, 0.3, 1), color 0.2s;
}

.equip-group.open .equip-group-chevron,
.equip-group.hover-open .equip-group-chevron { transform: rotate(180deg); }

.equip-group .equipment-item:first-child { border-top: 1px solid var(--border); }

/* ─────────────────────────────────────────
   PRICING
   ───────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 48px;
}

.pricing-card {
  background: var(--black);
  padding: 40px;
  position: relative;
}

.pricing-card.featured { background: var(--surface); }

.pricing-badge {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  background: var(--accent);
  padding: 4px 10px;
  display: inline-block;
  margin-bottom: 32px;
}

.pricing-empty-badge {
  height: 25px;
  margin-bottom: 32px;
}

.pricing-name {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--white-dim);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.pricing-price {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}

.pricing-period {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--white-dim);
  margin-bottom: 32px;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-features li {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--white-dim);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features li::before {
  content: '';
  width: 16px;
  height: 1px;
  background: var(--white-ghost);
  flex-shrink: 0;
}

.pricing-cta {
  margin-top: 28px;
  width: 100%;
  padding: 14px;
  background: transparent;
  border: 1px solid var(--border-light);
  color: var(--white-dim);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.pricing-cta:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* ─── PRICING DOTS ─── */
.pricing-dots {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
}

.pricing-dot {
  width: 20px;
  height: 2px;
  background: var(--border-light);
  transition: width 0.3s ease, background 0.3s ease;
}

.pricing-dot.active {
  width: 36px;
  background: var(--accent);
}

/* ─────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
}

.footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 64px 48px;
  border-bottom: 1px solid var(--border);
}

.footer-cta-label {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--white-dim);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.footer-cta-heading {
  font-family: var(--display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--white);
}

.footer-cta-btn {
  flex-shrink: 0;
  padding: 16px 32px;
  background: var(--white);
  color: var(--black);
  border: none;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: opacity 0.2s ease;
  white-space: nowrap;
}

.footer-cta-btn:hover { opacity: 0.75; }

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding: 56px 48px;
  border-bottom: 1px solid var(--border);
}

.footer-logo-img {
  height: 22px;
  width: auto;
  display: block;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
  opacity: 0.6;
}

body.light .footer-logo-img {
  filter: brightness(0);
  opacity: 0.5;
}

.footer-tagline {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--white-dim);
  line-height: 2.2;
  max-width: none;
}

.footer-col-title {
  font-family: var(--mono);
  font-size: 9px;
  color: var(--white-ghost);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-links,
.footer-address {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links a,
.footer-address span,
.footer-address a {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--white-dim);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s ease;
  line-height: 1;
}

.footer-links a:hover,
.footer-address a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  gap: 16px;
}

.footer-ig {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--white-ghost);
  text-decoration: none;
  letter-spacing: 0.08em;
  transition: color 0.2s ease;
}

.footer-ig svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  flex-shrink: 0;
}

.footer-ig:hover { color: var(--white-dim); }

.footer-copy {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--white-ghost);
  letter-spacing: 0.1em;
}

.footer-claim {
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.6;
  letter-spacing: 0.05em;
}

/* ─────────────────────────────────────────
   CONTACT PANEL
   ───────────────────────────────────────── */
.contact-panel {
  min-height: calc(100vh - 64px);
  max-width: 720px;
  margin: 0 auto;
  padding: 80px 48px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.contact-header h2 {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-top: 16px;
}

/* ─── CONTACT TABS ─── */
.contact-tabs {
  display: flex;
  flex-direction: row;
  border: 1px solid var(--border);
  overflow-x: auto;
  scrollbar-width: none;
}

.contact-tabs::-webkit-scrollbar { display: none; }

.contact-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 12px;
  background: var(--surface);
  border: none;
  border-right: 1px solid var(--border);
  color: var(--white-dim);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
  flex: 1;
}

.contact-tab:last-child { border-right: none; }

.contact-tab svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.contact-tab:hover {
  background: var(--surface-2);
  color: var(--white);
}

.contact-tab.active {
  background: var(--black);
  color: var(--accent);
  box-shadow: inset 0 2px 0 var(--accent);
}

.contact-tab.active svg { stroke: var(--accent); }

/* ─── CONTACT FORMS ─── */
.contact-forms { padding-top: 8px; }

.contact-form {
  display: none;
  flex-direction: column;
  gap: 0;
}

.contact-form.active { display: flex; }

/* ─── FORM NOTE ─── */
.form-note {
  border: 1px solid var(--border);
  padding: 20px 24px;
  margin-bottom: 32px;
  background: var(--surface);
}

.form-note p {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--white-dim);
  line-height: 1.9;
  max-width: none;
}

.form-note strong {
  color: var(--white);
  font-weight: 500;
}

.form-note em {
  font-style: normal;
  color: var(--white-dim);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ─── PROYECTO: lista ─── */
.proy-input-row {
  display: flex;
  gap: 8px;
  align-items: flex-end;
  margin-top: 8px;
}

.proy-input-row .form-input { flex: 1; }

.proy-add-btn {
  width: 36px;
  height: 36px;
  background: var(--white);
  color: var(--black);
  border: none;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
  margin-bottom: 1px;
}

.proy-add-btn:hover { opacity: 0.75; }

.proy-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  margin-top: 16px;
  gap: 1px;
}

.proy-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-family: var(--mono);
  font-size: 12px;
  color: var(--white-dim);
}

.proy-list li button {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--white-ghost);
  display: flex;
  align-items: center;
  padding: 0;
  transition: color 0.2s;
  flex-shrink: 0;
}

.proy-list li button:hover { color: var(--white); }

.proy-list li button svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
}

/* ─── WA BUTTON ─── */
.wa-btn {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 18px;
  background: var(--accent);
  color: #fff;
  border: none;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 0 32px rgba(58, 142, 255, 0.25);
}

.wa-btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.wa-btn:disabled { opacity: 0.25; cursor: not-allowed; }
.wa-btn:not(:disabled):hover { opacity: 0.8; }

/* ─── CUSTOM SELECT ─── */
.custom-select { position: relative; }

.custom-select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
  cursor: pointer;
  user-select: none;
  transition: border-color 0.2s ease;
}

.custom-select-trigger:hover { border-color: var(--accent); }
.custom-select.open .custom-select-trigger { border-color: var(--accent); }

.custom-select-value {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--white-ghost);
  transition: color 0.2s ease;
}

.custom-select.has-value .custom-select-value { color: var(--white); }

.custom-select-arrow {
  width: 12px;
  height: 12px;
  stroke: var(--white-dim);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), stroke 0.2s ease;
}

.custom-select.open .custom-select-arrow {
  transform: rotate(180deg);
  stroke: var(--white);
}

.custom-select-dropdown {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  right: 0;
  background: var(--surface-2);
  border: 1px solid var(--border-light);
  z-index: 100;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s ease;
  pointer-events: none;
}

.custom-select.open .custom-select-dropdown {
  max-height: 320px;
  opacity: 1;
  pointer-events: all;
  overflow-y: auto;
}

.custom-select-dropdown::-webkit-scrollbar { width: 3px; }
.custom-select-dropdown::-webkit-scrollbar-track { background: transparent; }
.custom-select-dropdown::-webkit-scrollbar-thumb { background: var(--border-light); }

.custom-select-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--white-dim);
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.custom-select-option:last-child { border-bottom: none; }

.custom-select-option::before {
  content: '—';
  font-size: 10px;
  color: transparent;
  transition: color 0.15s ease;
  flex-shrink: 0;
}

.custom-select-option:hover { background: var(--surface); color: var(--white); }
.custom-select-option:hover::before { color: var(--white-ghost); }
.custom-select-option.selected { color: var(--accent); }
.custom-select-option.selected::before { color: var(--accent); }

/* ─────────────────────────────────────────
   FORM
   ───────────────────────────────────────── */
.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}

.form-label {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--white-dim);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.form-input,
.form-textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border-light);
  color: var(--white);
  font-family: var(--mono);
  font-size: 14px;
  padding: 12px 0;
  outline: none;
  transition: border-color 0.2s ease;
  width: 100%;
}

.form-input::placeholder,
.form-textarea::placeholder { color: var(--white-ghost); }

.form-input:focus,
.form-textarea:focus { border-color: var(--accent); }

.form-textarea {
  resize: none;
  height: 120px;
  line-height: 1.8;
}

/* ─── SUCCESS MSG ─── */
.form-success {
  display: none;
  padding: 20px;
  border: 1px solid var(--border-light);
  margin-top: 16px;
}

.form-success.show { display: block; }

.form-success p {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--white-dim);
  line-height: 1.8;
}

/* ─────────────────────────────────────────
   UBICACIÓN
   ───────────────────────────────────────── */
.section-location {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 48px 64px;
  align-items: center;
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.location-info h2 { margin-bottom: 0; }
.location-info p  { margin-bottom: 0; }

.location-address {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.location-map { width: 100%; }

.map-container {
  border: 1px solid var(--border);
  overflow: hidden;
}

.map-info-label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-ghost);
}

.map-info-value {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--white-dim);
}

.map-go-btn {
  display: inline-block;
  margin-top: 8px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--white-dim);
  text-decoration: none;
  transition: color 0.2s ease;
}

.map-go-btn:hover { color: var(--accent); }

/* ─── MAPBOX OVERRIDES ─── */
.mapboxgl-ctrl-bottom-right { margin-bottom: 12px; margin-right: 12px; }

.mapboxgl-ctrl-group {
  background: var(--surface-2) !important;
  border: 1px solid var(--border) !important;
  border-radius: 4px !important;
  box-shadow: none !important;
}

.mapboxgl-ctrl-group button {
  background: transparent !important;
  border-bottom: 1px solid var(--border) !important;
}

.mapboxgl-ctrl-group button:last-child { border-bottom: none !important; }

.mapboxgl-ctrl-icon { filter: invert(1) opacity(0.4); }
.mapboxgl-ctrl-icon:hover { filter: invert(1) opacity(0.8); }

/* ─── MARKER ─── */
.map-marker {
  position: relative;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-marker-dot {
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 12px rgba(58, 142, 255, 0.6);
}

.map-marker-pulse {
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  animation: markerPulse 2s ease-out infinite;
  z-index: 1;
}

@keyframes markerPulse {
  0%   { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(4); opacity: 0; }
}

/* ─────────────────────────────────────────
   SCROLL REVEAL
   ───────────────────────────────────────── */
.reveal { opacity: 1; transform: none; }

/* ─────────────────────────────────────────
   GALLERY — filmstrip horizontal
   ───────────────────────────────────────── */
.gallery-strip {
  display: flex;
  overflow-x: auto;
  gap: 2px;
  margin-top: 48px;
  scrollbar-width: none;
  height: 480px;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}

.gallery-strip::-webkit-scrollbar { display: none; }

.gallery-strip.is-dragging { cursor: grabbing; }
.gallery-strip.is-dragging img { pointer-events: none; }

.gallery-strip-item {
  flex: 0 0 300px;
  height: 100%;
  position: relative;
  overflow: hidden;
  background: var(--surface);
}

.gallery-strip-item.wide { flex: 0 0 500px; }

.gallery-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(100%);
  opacity: 0.72;
  transition: filter 0.65s ease, opacity 0.5s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-strip-item:hover img {
  filter: none;
  opacity: 1;
  transform: scale(1.05);
}

/* Degradado oscuro inferior — base siempre visible */
.gallery-strip-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(8,8,8,0.7) 100%);
  z-index: 1;
  pointer-events: none;
}

/* Número editorial */
.gallery-strip-num {
  position: absolute;
  bottom: 14px;
  left: 16px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.3em;
  z-index: 3;
  opacity: 0.4;
  transition: opacity 0.35s ease, transform 0.35s ease;
  transform: translateY(4px);
}

.gallery-strip-item:hover .gallery-strip-num {
  opacity: 1;
  transform: translateY(0);
}

/* Hint de arrastre */
.gallery-hint {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  font-family: var(--mono);
  font-size: 9px;
  color: var(--white-ghost);
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.gallery-hint::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--accent-dim);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   RESPONSIVE — Sistema unificado de breakpoints
   768px  Tablet / teléfono grande
   640px  Teléfono (landscape)
   480px  Teléfono pequeño (portrait estándar)
   380px  Teléfono muy pequeño
════════════════════════════════════════════ */

/* ── 768px ───────────────────────────────── */
@media (max-width: 768px) {
  nav {
    padding: 0 16px;
  }
  .nav-menu { display: none !important; }
  .nav-isotipo-btn {
    display: flex;
  }

  /* Hero */
  .hero-bio { bottom: 24px; left: 20px; max-width: calc(100% - 40px); }
  .hero-bio-tag { font-size: 11px; }
  .hero-bio-credits { font-size: 12px; }
  .hero-bio-link { font-size: 11px; }

  /* Sections */
  .section { padding: 60px 20px; }

  /* Services → 1 col */
  .bio-grid { grid-template-columns: 1fr; gap: 32px; }

  /* Pricing */
  .pricing-grid {
    display: flex;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 0;
    background: transparent;
    scrollbar-width: none;
    padding-bottom: 0;
  }
  .pricing-grid::-webkit-scrollbar { display: none; }
  .pricing-card {
    flex: 0 0 85%;
    scroll-snap-align: center;
    border: 1px solid var(--border);
    margin-right: 1px;
  }
  .pricing-card:last-child { margin-right: 0; }
  .pricing-dots { display: flex !important; }

  /* Contact */
  .contact-panel { padding: 40px 20px; gap: 32px; }
  .contact-tab span { display: none; }
  .contact-tab { padding: 14px 12px; }

  /* Equipment accordion */
  .equipment-item { grid-template-columns: 28px 1fr; gap: 12px; }
  .equipment-brand, .equipment-tag { display: none; }
  .equip-group-hd { padding: 16px 0; }

  /* About + Location */
  .about-content { padding: 48px 20px 40px; }
  .about-location { padding: 40px 20px 56px; }
  .section-location { grid-template-columns: 1fr; gap: 32px; }
  #mapbox-about { height: 280px !important; }
  .hits-cta-btn { padding: 18px 24px; }
  .services-block { margin-top: 32px; }

  /* Gallery + Gear panel */
  .gallery-panel-inner { padding: 0 20px; }
  .gear-panel-section { padding: 48px 0 0; }
  .gallery-panel-section { padding: 48px 0 0; padding-bottom: 64px; margin-top: 40px; }
  .gallery-panel-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
    gap: 6px;
  }
  .gallery-panel-item:nth-child(1),
  .gallery-panel-item:nth-child(7),
  .gallery-panel-item:nth-child(8) { grid-column: span 2; }

  /* Footer */
  .footer-cta { flex-direction: column; align-items: flex-start; padding: 40px 20px; }
  .footer-main { grid-template-columns: 1fr; gap: 40px; padding: 40px 20px; }
  .footer-bottom { padding: 20px; flex-direction: column; gap: 8px; align-items: flex-start; }
}

/* ── 640px ───────────────────────────────── */
@media (max-width: 640px) {
  /* Page banner */
  .page-banner { padding: 0 20px; height: 44vh; }
  .page-banner-logo-wrap { width: clamp(220px, 70vw, 400px); transform: translate(-10%, -50%); }

  /* Music panel */
  .singles-section { padding: 40px 20px; }
  .awards-section { padding: 40px 20px 64px; }
  /* Móvil: sin barra de desplazamiento; la card deja ver el inicio de la siguiente */
  .singles-carousel {
    scrollbar-width: none;
    padding-bottom: 2px;
  }
  .singles-carousel::-webkit-scrollbar { display: none; }
  .single-card { flex: 0 0 calc(100vw - 110px); }
  .awards-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 16px; }
  .award-disc { width: 90px; height: 90px; }

  /* Hits CTA */
  .hits-cta-btn { padding: 18px 20px; font-size: 9px; letter-spacing: 0.16em; }

  /* Svc cards */
  .svc-card-foot { flex-direction: column; align-items: flex-start; gap: 14px; }
  .svc-cta { width: 100%; text-align: center; }
  .svc-proyecto { flex-direction: column; align-items: flex-start; }
  .svc-proyecto-right { width: 100%; justify-content: space-between; }
}

/* ── 480px ───────────────────────────────── */
@media (max-width: 480px) {

  /* Hits CTA */
  .hits-cta-btn { gap: 8px; }
  .hits-cta-btn svg { display: none; }

  /* Services grid */
  .svc-grid { grid-template-columns: 1fr; }
  .svc-card { border-right: none; border-bottom: 1px solid var(--border); }
  .svc-card:last-child { border-bottom: none; }
  .svc-option-detail { display: none; }

  /* Gallery: 1 columna en pantallas muy pequeñas */
  .gallery-panel-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
    gap: 6px;
  }
  .gallery-panel-item:nth-child(1),
  .gallery-panel-item:nth-child(7),
  .gallery-panel-item:nth-child(8) { grid-column: span 1; }

  /* Contact tabs: reducir padding para que quepan */
  .contact-tab { flex-shrink: 0; padding: 14px 10px; }

  /* About location */
  .about-location { padding: 32px 20px 48px; }
  #mapbox-about { height: 240px !important; }

  /* Awards: 2-col en pequeño */
  .awards-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 12px; }

  /* Equip accordion */
  .equip-group-count { display: none; }
  .equip-group-hd { padding: 14px 0; }
}

/* ── 380px ───────────────────────────────── */
@media (max-width: 380px) {
  /* Footer */
  .footer-bottom { font-size: 9px; }

  /* Awards: 1-col en pantallas muy estrechas */
  .awards-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* ─────────────────────────────────────────
   NAV MENU
   ───────────────────────────────────────── */
.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.nav-menu-item {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px 12px;
  transition: color 0.25s ease, text-shadow 0.25s ease;
}

.nav-menu-item:hover {
  color: rgba(255,255,255,0.9);
  text-shadow:
    0 0 16px rgba(58,142,255,0.7),
    0 0 40px rgba(58,142,255,0.3);
}

.nav-menu-item.active {
  color: var(--white);
  text-shadow:
    0 0 12px rgba(58,142,255,0.45),
    0 0 28px rgba(58,142,255,0.2);
}

body.light .nav-menu-item {
  color: rgba(0,0,0,0.35);
}

body.light .nav-menu-item:hover {
  color: rgba(0,0,0,0.85);
  text-shadow:
    0 0 16px rgba(29,95,207,0.5),
    0 0 40px rgba(29,95,207,0.2);
}

body.light .nav-menu-item.active {
  color: var(--white);
  text-shadow:
    0 0 12px rgba(29,95,207,0.4),
    0 0 28px rgba(29,95,207,0.15);
}

/* ─────────────────────────────────────────
   PANEL: MUSIC
   ───────────────────────────────────────── */
.music-panel {
  position: relative;
  min-height: 100vh;
}

/* ─── PAGE BANNER ─── */
.page-banner {
  position: relative;
  height: 38vh;
  min-height: 240px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 48px;
}

.page-banner-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.28;
  pointer-events: none;
}

.page-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, var(--black) 35%, rgba(8,8,8,0.5) 70%, rgba(8,8,8,0.75) 100%);
  pointer-events: none;
  z-index: 1;
}

.page-banner-logo-wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-20%, -50%);
  z-index: 2;
  pointer-events: none;
  width: clamp(320px, 40vw, 630px);
  height: clamp(160px, 20vw, 300px);
}

.page-banner-logo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0;
  transition: opacity 2.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-banner-logo.active {
  opacity: 0.07;
}

.page-banner-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.page-banner-title {
  font-family: var(--display);
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--white);
}

/* ─── SINGLES CAROUSEL ─── */
.singles-section {
  padding: 56px 48px;
  border-bottom: 1px solid var(--border);
}

.singles-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: color-mix(in srgb, var(--accent) 65%, var(--border-light)) color-mix(in srgb, var(--white) 8%, transparent);
  margin-top: 32px;
  padding-bottom: 18px;
  cursor: grab;
}

.singles-carousel::-webkit-scrollbar { height: 6px; }
.singles-carousel::-webkit-scrollbar-button { width: 0; height: 0; display: none; }
.singles-carousel::-webkit-scrollbar-track {
  background: color-mix(in srgb, var(--white) 8%, transparent);
  border-radius: 999px;
}
.singles-carousel::-webkit-scrollbar-thumb {
  background: color-mix(in srgb, var(--accent) 65%, var(--border-light));
  border-radius: 999px;
}
.singles-carousel::-webkit-scrollbar-thumb:hover { background: var(--accent); }
.singles-carousel.is-dragging { cursor: grabbing; user-select: none; }

.single-card {
  flex: 0 0 300px;
  scroll-snap-align: start;
  border-radius: 8px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: border-color 0.2s ease;
}

.single-card:hover { border-color: var(--border-light); }

.single-card iframe {
  display: block;
  width: 100%;
  height: 352px;
  border: none;
}

.single-card-placeholder {
  height: 352px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.single-card-placeholder svg {
  width: 24px;
  height: 24px;
  color: var(--white-ghost);
  opacity: 0.5;
}

.single-card-placeholder span {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-ghost);
}

.singles-carousel-shell {
  position: relative;
}

/* ─── AWARDS ─── */
.awards-section {
  padding: 56px 48px 88px;
}

.awards-section .section-label {
  margin-bottom: 52px;
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 56px 32px;
}

.award-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.award-item.pending { opacity: 0.32; }

.award-disc {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
  transition: transform 0.6s cubic-bezier(0.2, 0, 0.2, 1);
}

.award-item:not(.pending):hover .award-disc {
  transform: rotate(8deg) scale(1.06);
}

/* vinyl grooves */
.award-disc::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: repeating-radial-gradient(
    circle at 50% 50%,
    transparent 0px,
    transparent 3px,
    rgba(0,0,0,0.13) 3px,
    rgba(0,0,0,0.13) 3.5px
  );
  z-index: 1;
}

/* central hole */
.award-disc::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  z-index: 3;
}

.award-disc.oro {
  background:
    radial-gradient(circle at 34% 30%, rgba(255,255,200,0.75) 0%, transparent 42%),
    radial-gradient(circle at 50% 50%, #fff0a0 0%, #f0c030 20%, #d08a00 48%, #8c5a00 74%, #4a2e00 100%);
  box-shadow:
    inset 0 2px 3px rgba(255,240,140,0.9),
    0 0 0 1.5px rgba(220,170,0,0.5),
    0 8px 32px rgba(180,120,0,0.4);
}

.award-disc.oro::after {
  background: radial-gradient(circle, #2a1500 0%, #100800 100%);
}

.award-disc.platino {
  background:
    radial-gradient(circle at 34% 30%, rgba(255,255,255,0.92) 0%, transparent 42%),
    radial-gradient(circle at 50% 50%, #ffffff 0%, #d4d4d4 20%, #8c8c8c 48%, #505050 74%, #202020 100%);
  box-shadow:
    inset 0 2px 3px rgba(255,255,255,1),
    0 0 0 1.5px rgba(160,160,160,0.45),
    0 8px 28px rgba(80,80,80,0.3);
}

.award-disc.platino::after {
  background: radial-gradient(circle, #0c0c0c 0%, #040404 100%);
}

.award-disc.diamante {
  background:
    radial-gradient(circle at 34% 30%, rgba(210,235,255,0.95) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, #d0e8ff 0%, #80b4ff 20%, #3a8eff 48%, #0e38b0 74%, #040c3a 100%);
  box-shadow:
    inset 0 2px 3px rgba(200,230,255,1),
    0 0 0 1.5px rgba(58,142,255,0.55),
    0 8px 32px rgba(58,142,255,0.4),
    0 0 52px rgba(58,142,255,0.12);
}

.award-disc.diamante::after {
  background: radial-gradient(circle, #020818 0%, #010408 100%);
}

.award-disc-badge {
  position: absolute;
  bottom: 7px;
  right: 7px;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 2px 7px;
  border-radius: 20px;
  z-index: 4;
  line-height: 1.4;
}

.award-disc.oro .award-disc-badge {
  background: rgba(80,40,0,0.92);
  color: #f0c840;
}

.award-disc.platino .award-disc-badge {
  background: rgba(20,20,20,0.92);
  color: #d8d8d8;
}

.award-disc.diamante .award-disc-badge {
  background: rgba(0,8,48,0.92);
  color: #80b4ff;
}

.award-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.award-type {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-ghost);
}

.award-song {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}

.award-artist {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--white-dim);
  letter-spacing: 0.06em;
}

/* ─────────────────────────────────────────
   SERVICE CARDS
   ───────────────────────────────────────── */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 48px;
  border: 1px solid var(--border);
}

.svc-carousel-shell {
  position: relative;
}

.svc-card {
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--border);
  background: var(--surface);
}

.svc-card:last-child { border-right: none; }

/* Card header */
.svc-card-head {
  padding: 22px 24px 18px;
  border-bottom: 1px solid var(--border);
}

.svc-head-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 6px;
}

/* Project toggle button */
.svc-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
  font-family: var(--mono);
  font-size: 7.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white-ghost);
  background: transparent;
  border: 1px solid var(--border-light);
  padding: 5px 9px 5px 7px;
  cursor: pointer;
  border-radius: 2px;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  line-height: 1;
}

.svc-toggle svg {
  width: 10px; height: 10px;
  flex-shrink: 0;
}

.svc-toggle-check { display: none; }

.svc-toggle:hover {
  color: var(--white-dim);
  border-color: var(--white-dim);
}

.svc-toggle.active {
  color: var(--accent);
  border-color: var(--accent);
  background: var(--accent-dim);
}

.svc-toggle.active .svc-toggle-plus  { display: none; }
.svc-toggle.active .svc-toggle-check { display: block; }

/* Card active-in-project border */
.svc-card.in-project > .svc-card-head {
  border-bottom-color: var(--accent);
  box-shadow: inset 0 2px 0 0 var(--accent);
}

.svc-type {
  display: block;
  font-family: var(--display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--white);
}

.svc-desc {
  display: block;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: var(--white-dim);
  line-height: 1.6;
}

/* Options */
.svc-options {
  flex: 1;
  display: grid;
  grid-auto-rows: minmax(64px, 1fr);
  min-height: 0;
}

.svc-card[data-service="grabacion"] .svc-options {
  grid-template-rows: repeat(4, minmax(0, 1fr));
}

.svc-card[data-service="grabacion"] .svc-option {
  min-height: 0;
}

.svc-card[data-service="grabacion"] .svc-option-summary {
  min-height: 158px;
  visibility: visible;
  display: block;
}

.svc-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 15px 24px 15px 22px;
  border-bottom: 1px solid var(--border);
  border-left: 2px solid transparent;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
  user-select: none;
}

.svc-option:last-child { border-bottom: none; }

.svc-option:hover {
  background: var(--surface-2);
}

.svc-option.active {
  background: var(--surface-2);
  border-left-color: var(--accent);
}

.svc-option-info {
  display: flex;
  align-items: center;
  gap: 9px;
  flex: 1;
  min-width: 0;
}

.svc-option-name {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--white-dim);
  white-space: nowrap;
  transition: color 0.15s ease;
}

.svc-option.active .svc-option-name { color: var(--white); }

.svc-option-detail {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.03em;
  color: var(--white-ghost);
  line-height: 1.5;
  transition: color 0.15s ease;
}

.svc-option.active .svc-option-detail { color: var(--white-dim); }

.svc-option-summary {
  min-height: 150px;
  padding: 18px 24px 20px;
  border-top: 1px solid var(--border);
  background: color-mix(in srgb, var(--surface-2) 60%, transparent);
}

.svc-option-summary[hidden] {
  display: block;
  visibility: hidden;
}

.svc-summary-title {
  display: block;
  margin-bottom: 11px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.svc-option-summary ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.svc-option-summary li {
  position: relative;
  padding-left: 13px;
  font-family: var(--mono);
  font-size: 10px;
  line-height: 1.45;
  color: var(--white-dim);
}

.svc-option-summary li::before {
  content: '';
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
}

.svc-option-price {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--white-ghost);
  white-space: nowrap;
  flex-shrink: 0;
  transition: color 0.15s ease;
}

.svc-option.active .svc-option-price { color: var(--accent); }

.svc-option-price--best {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.svc-option-price--best em {
  font-style: normal;
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.1em;
  color: var(--white-ghost);
  font-weight: 400;
  text-transform: uppercase;
  transition: color 0.15s ease;
}

.svc-option.active .svc-option-price--best em { color: var(--accent); opacity: 0.7; }

/* Card footer */
.svc-card-foot {
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--border);
}

.svc-total {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.svc-total-label {
  font-family: var(--mono);
  font-size: 7.5px;
  letter-spacing: 0.22em;
  color: var(--white-ghost);
  text-transform: uppercase;
}

.svc-total-price {
  font-family: var(--display);
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 1;
  transition: color 0.2s ease;
}

/* CTA button (shared by cards and proyecto strip) */
.svc-cta {
  background: transparent;
  border: 1px solid var(--border-light);
  color: var(--white-dim);
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 10px 18px;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.svc-cta:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 18px rgba(58,142,255,0.1);
}

/* Proyecto a medida strip */
.svc-proyecto {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: none;
}

.svc-proyecto-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.svc-proyecto-right {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
}

.svc-proyecto-price {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white-dim);
  white-space: pre-line;
}

/* Light mode overrides */
body.light .svc-card { background: var(--surface); }
body.light .svc-option.active { background: var(--surface-2); }
body.light .svc-option:hover { background: var(--surface-2); }
body.light .svc-proyecto { background: var(--surface); }

/* svc-grid colapsa a 1-col a partir de 860px */
@media (max-width: 860px) {
  .svc-grid { grid-template-columns: 1fr; }
  .svc-card { border-right: none; border-bottom: 1px solid var(--border); }
  .svc-card:last-child { border-bottom: none; }
  .svc-proyecto { flex-direction: column; align-items: flex-start; }
  .svc-proyecto-right { width: 100%; justify-content: space-between; }
}

/* Carrusel de tarifas en móvil */
@media (max-width: 768px) {
  .svc-carousel-shell {
    margin-top: 32px;
  }

  .svc-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin: 0 -16px;
    padding: 0 16px;
    gap: 0;
    border: none;
    background: transparent;
  }
  .svc-grid::-webkit-scrollbar { display: none; }

  .svc-card {
    flex: 0 0 calc(100vw - 66px);
    scroll-snap-align: start;
    border: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    min-height: unset;
  }
  .svc-card:last-child {
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-right: 0;
  }

  /* Proyecto: botón ancho que engloba todo */
  .svc-proyecto {
    margin-top: 16px;
    border-top: 1px solid var(--border);
    gap: 14px;
  }
  .svc-proyecto-right {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 10px;
  }
  .svc-proyecto .svc-cta {
    width: 100%;
    text-align: center;
    padding: 16px;
    font-size: 10px;
  }

  .svc-options {
    grid-auto-rows: minmax(58px, 1fr);
  }

  .svc-card[data-service="grabacion"] .svc-options {
    grid-template-rows: repeat(4, minmax(56px, 1fr));
  }
}

/* ─── GALLERY + GEAR PANEL ─── */
.gallery-panel-section,
.gear-panel-section {
  padding: 80px 0 0;
}

.gear-panel-section {
  padding-bottom: 0;
}

.gallery-panel-section {
  padding-bottom: 100px;
  border-top: 1px solid var(--border);
  margin-top: 80px;
}

.gallery-panel-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
}

.gallery-panel-inner > h2 {
  font-family: var(--display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 16px 0 0;
  color: var(--white);
}

.gallery-panel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 8px;
  margin-top: 40px;
}

.gallery-panel-item:nth-child(1),
.gallery-panel-item:nth-child(7),
.gallery-panel-item:nth-child(8) { grid-column: span 2; }

.gallery-panel-item {
  position: relative;
  overflow: hidden;
  background: var(--surface);
}

.gallery-panel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(100%);
  transition: filter 0.5s ease, transform 0.5s ease;
}

.gallery-panel-item:hover img {
  filter: grayscale(0%);
  transform: scale(1.03);
}

.gallery-panel-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent);
  opacity: 0;
  transition: opacity 0.4s ease;
  mix-blend-mode: color;
  pointer-events: none;
}

.gallery-panel-item:hover::after {
  opacity: 0.25;
}

.gallery-panel-num {
  position: absolute;
  bottom: 10px;
  right: 12px;
  font-family: var(--mono);
  font-size: 9px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.15em;
  z-index: 2;
  transition: color 0.3s ease;
}

.gallery-panel-item:hover .gallery-panel-num {
  color: var(--accent);
}

/* awards → 2-col desde 900px (tablets) */
@media (max-width: 900px) {
  .awards-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
}

/* ─────────────────────────────────────────
   RACK SECTION — "CONOCE ONA"
   ───────────────────────────────────────── */
.rack-section {
  padding: 80px 48px 80px;
}

.rack-unit {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 4px;
}

/* Fila central: orejetas + panel */
.rack-body {
  display: flex;
  align-items: stretch;
  width: 100%;
}

/* Orejetas laterales */
.rack-side-ear {
  flex-shrink: 0;
  width: 44px;
  background: linear-gradient(90deg, #2a2a2a 0%, #323232 50%, #282828 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-top: 1px solid #3a3a3a;
  border-bottom: 1px solid #141414;
}

.rack-side-ear--left {
  border-left: 1px solid #3a3a3a;
  border-right: 1px solid #1a1a1a;
  box-shadow: inset 2px 0 6px rgba(255,255,255,0.03), -3px 0 10px rgba(0,0,0,0.6);
}

.rack-side-ear--right {
  border-right: 1px solid #3a3a3a;
  border-left: 1px solid #1a1a1a;
  box-shadow: inset -2px 0 6px rgba(255,255,255,0.03), 3px 0 10px rgba(0,0,0,0.6);
}

.rack-side-screw {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 33%, #4a4a4a 0%, #252525 55%, #111 100%);
  border: 1px solid #3a3a3a;
  box-shadow: 0 2px 4px rgba(0,0,0,0.8), inset 0 0.5px 0 rgba(255,255,255,0.08);
  position: relative;
  flex-shrink: 0;
}

.rack-side-screw::before,
.rack-side-screw::after {
  content: '';
  position: absolute;
  background: rgba(0,0,0,0.6);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  border-radius: 1px;
}
.rack-side-screw::before { width: 56%; height: 1.5px; }
.rack-side-screw::after  { width: 1.5px; height: 56%; }

.rack-side-slot {
  width: 10px;
  height: 22px;
  border-radius: 5px;
  background: #090909;
  border: 1px solid #222;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.95);
  flex-shrink: 0;
}

/* Rails */
.rack-rail {
  height: 26px;
  background: linear-gradient(180deg, #202020 0%, #141414 100%);
  border-left: 1px solid #2a2a2a;
  border-right: 1px solid #2a2a2a;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.rack-rail:first-child {
  border-top: 1px solid #2e2e2e;
  border-bottom: 1px solid #0a0a0a;
  border-radius: 4px 4px 0 0;
}

.rack-rail:last-child {
  border-top: 1px solid #2a2a2a;
  border-bottom: 1px solid #111;
  border-radius: 0 0 4px 4px;
}



.rack-holes {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.rack-holes span {
  display: block;
  width: 22px;
  height: 10px;
  border-radius: 4px;
  border: 1px solid #282828;
  background: #090909;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.95), inset 0 0 0 1px rgba(0,0,0,0.5);
}

/* Main panel */
.rack-panel {
  position: relative;
  flex: 1;
  min-width: 0;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 1px, rgba(255,255,255,0.01) 1px, rgba(255,255,255,0.01) 2px),
    linear-gradient(180deg, #252525 0%, #1c1c1c 40%, #1e1e1e 70%, #232323 100%);
  border-left: 1px solid #2e2e2e;
  border-right: 1px solid #2e2e2e;
  border-top: 1px solid #383838;
  border-bottom: 1px solid #141414;
  padding: 36px 48px;
  display: flex;
  align-items: center;
  gap: 48px;
  min-height: 200px;
}


/* Columns */
.rack-col--left {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  width: 160px;
}

.rack-col--center {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.rack-col--right {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
  width: 180px;
}

/* Brand block */
.rack-brand {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.rack-brand-name {
  font-family: var(--display);
  font-size: 30px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-shadow: 0 0 16px rgba(58,142,255,0.45);
  line-height: 1;
}

.rack-brand-rule {
  width: 36px;
  height: 1.5px;
  background: var(--accent);
  margin: 4px 0 2px;
  opacity: 0.8;
}

.rack-brand-sub {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.28em;
  color: var(--white-dim);
  text-transform: uppercase;
}

.rack-brand-type {
  font-family: var(--mono);
  font-size: 6.5px;
  letter-spacing: 0.18em;
  color: var(--white-ghost);
  text-transform: uppercase;
  margin-top: 3px;
}

/* Knob */
.rack-knob-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.rack-knob {
  width: 62px; height: 62px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 40% 35%, #484848 0%, #1e1e1e 50%, #0d0d0d 100%);
  border: 1.5px solid #363636;
  box-shadow:
    0 6px 18px rgba(0,0,0,0.85),
    0 2px 4px rgba(0,0,0,0.6),
    inset 0 1px 0 rgba(255,255,255,0.07),
    0 0 0 3px rgba(0,0,0,0.3);
  position: relative;
}

.rack-knob::after {
  content: '';
  position: absolute;
  width: 3px; height: 18px;
  background: linear-gradient(to top, rgba(58,142,255,0.2), var(--accent));
  bottom: 7px; left: 50%;
  transform-origin: bottom center;
  transform: translateX(-50%);
  border-radius: 1.5px;
}

.rack-knob--sm {
  width: 44px; height: 44px;
}

.rack-knob--sm::after {
  width: 2px; height: 13px;
  bottom: 5px;
}

.rack-rlabel {
  font-family: var(--mono);
  font-size: 6.5px;
  letter-spacing: 0.22em;
  color: var(--white-ghost);
  text-transform: uppercase;
  text-align: center;
}

.rack-rlabel--center {
  color: rgba(255,255,255,0.2);
}

/* Toggle switch */
.rack-toggle-unit {
  display: flex;
  align-items: center;
  gap: 8px;
}

.rack-toggle-unit--right {
  flex-direction: row-reverse;
}

.rack-toggle {
  width: 10px; height: 28px;
  background: linear-gradient(180deg, #2e2e2e 0%, #181818 50%, #2a2a2a 100%);
  border: 1px solid #3a3a3a;
  border-radius: 2px;
  position: relative;
  box-shadow: 0 2px 6px rgba(0,0,0,0.6);
  flex-shrink: 0;
}

.rack-toggle::before {
  content: '';
  position: absolute;
  top: 3px; left: 50%;
  transform: translateX(-50%);
  width: 6px; height: 11px;
  background: linear-gradient(180deg, #555 0%, #333 100%);
  border-radius: 1px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.4);
}

.rack-toggle--on::before {
  top: auto; bottom: 3px;
  background: linear-gradient(180deg, var(--accent) 0%, #1a3c99 100%);
  box-shadow: 0 0 8px rgba(58,142,255,0.5);
}

.rack-toggle-labels {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.rack-toggle-labels span {
  font-family: var(--mono);
  font-size: 6px;
  letter-spacing: 0.18em;
  color: var(--white-ghost);
  text-transform: uppercase;
  line-height: 1.4;
}

/* VU Meter */
.rack-vu {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.rack-vu-bezel {
  padding: 6px 8px 8px;
  background: #101010;
  border: 2px solid #303030;
  border-radius: 4px;
  box-shadow:
    0 6px 24px rgba(0,0,0,0.85),
    inset 0 1px 0 rgba(255,255,255,0.04),
    0 0 0 1px rgba(255,255,255,0.03);
}

.rack-vu-svg {
  display: block;
  width: 240px;
  height: auto;
  border-radius: 2px;
}

/* VU needle animation */
@keyframes vuSwing {
  0%   { transform: rotate(-44deg); }
  10%  { transform: rotate(14deg); }
  22%  { transform: rotate(-20deg); }
  36%  { transform: rotate(9deg); }
  52%  { transform: rotate(-7deg); }
  66%  { transform: rotate(4deg); }
  80%  { transform: rotate(-3deg); }
  100% { transform: rotate(-4deg); }
}

#vuNeedle {
  transform-origin: 120px 125px;
  animation: vuSwing 6s cubic-bezier(0.23, 1, 0.32, 1) infinite alternate;
}

/* CTA button */
.rack-conoce-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 1px solid var(--border-light);
  color: var(--white-dim);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  padding: 11px 22px;
  cursor: pointer;
  transition: border-color 0.25s, color 0.25s, box-shadow 0.25s;
  white-space: nowrap;
}

.rack-conoce-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 20px rgba(58,142,255,0.12);
}

.rack-conoce-btn svg {
  width: 13px; height: 13px;
  flex-shrink: 0;
}

/* LED */
.rack-led {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 6px var(--accent), 0 0 14px rgba(58,142,255,0.4);
  animation: rackLedPulse 2.2s ease-in-out infinite;
}

@keyframes rackLedPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 6px var(--accent), 0 0 14px rgba(58,142,255,0.4); }
  50%       { opacity: 0.35; box-shadow: none; }
}

/* Right readouts */
.rack-readouts {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  width: 100%;
}

.rack-readout-title {
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.2em;
  color: var(--white-ghost);
  text-transform: uppercase;
}

.rack-readout-row {
  display: flex;
  gap: 18px;
}

.rack-readout-val {
  font-family: var(--mono);
  font-size: 7.5px;
  letter-spacing: 0.1em;
  color: var(--white-dim);
  text-align: right;
  line-height: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.rack-readout-val em {
  font-style: normal;
  font-size: 6px;
  letter-spacing: 0.15em;
  color: var(--white-ghost);
  text-transform: uppercase;
}

/* Knob pair */
.rack-knob-pair {
  display: flex;
  align-items: flex-end;
  gap: 14px;
}

/* Responsive */
@media (max-width: 900px) {
  .rack-section { padding: 60px 24px; }
  .rack-col--left { width: 130px; }
  .rack-col--right { width: 150px; }
  .rack-panel { padding: 28px 32px; gap: 32px; }
  .rack-vu-svg { width: 200px; }
  .rack-holes span { width: 18px; }
  .rack-side-ear { width: 34px; }
  .rack-side-slot { width: 8px; height: 18px; }
  .rack-side-screw { width: 12px; height: 12px; }
}

@media (max-width: 750px) {
  .rack-section { padding: 40px 0; }
  .rack-panel {
    flex-direction: column;
    align-items: center;
    padding: 28px 24px 32px;
    gap: 24px;
    min-height: unset;
  }
  .rack-col--left,
  .rack-col--right {
    width: 100%;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 24px;
  }
  .rack-col--right { flex-direction: row; }
  .rack-col--left .rack-knob-unit { display: none; }
  .rack-side-ear { width: 26px; padding: 10px 0; }
  .rack-side-slot { width: 7px; height: 14px; }
  .rack-side-screw { width: 10px; height: 10px; }
}

@media (max-width: 480px) {
  .rack-section { padding: 32px 0; }
  .rack-panel { padding: 16px 14px 20px; gap: 14px; }
  .rack-vu-svg { width: 180px; }
  .rack-readouts { display: none; }
  .rack-knob-pair { gap: 10px; }
  .rack-rail { height: 20px; }
  .rack-holes { padding: 0 8px; }
  .rack-holes span { width: 10px; height: 7px; }
  .rack-side-ear { display: none; }
}

body.light .rack-panel {
  background:
    repeating-linear-gradient(0deg, transparent, transparent 1px, rgba(0,0,0,0.012) 1px, rgba(0,0,0,0.012) 2px),
    linear-gradient(180deg, #d8d5cf 0%, #c8c5bf 40%, #cac7c1 70%, #c5c2bc 100%);
  border-top-color: #e0ddd7;
  border-bottom-color: #aaa;
  border-left-color: #bbb;
  border-right-color: #bbb;
}

body.light .rack-rail {
  background: linear-gradient(180deg, #c0bdb7 0%, #b5b2ac 100%);
  border-color: #aaa;
}

body.light .rack-holes span {
  background: #888;
  border-color: #777;
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.4);
}

body.light .rack-side-ear {
  background: linear-gradient(90deg, #b8b5af 0%, #c5c2bc 50%, #b0ada8 100%);
  border-color: #aaa;
}

body.light .rack-side-screw {
  background: radial-gradient(circle at 38% 33%, #d0ccc8 0%, #a8a5a0 55%, #888 100%);
  border-color: #999;
}

body.light .rack-side-slot {
  background: #999;
  border-color: #888;
}

body.light .rack-screw {
  background: radial-gradient(circle at 38% 33%, #ccc 0%, #aaa 55%, #888 100%);
  border-color: #999;
}

body.light .rack-brand-name { color: var(--accent); }
body.light .rack-brand-sub  { color: var(--white-dim); }
body.light .rack-brand-type,
body.light .rack-rlabel,
body.light .rack-readout-title,
body.light .rack-readout-val em,
body.light .rack-toggle-labels span { color: rgba(0,0,0,0.4); }
body.light .rack-readout-val { color: var(--white-dim); }

body.light .rack-knob {
  background: radial-gradient(circle at 40% 35%, #666 0%, #333 50%, #111 100%);
  border-color: #444;
}

body.light .rack-toggle {
  background: linear-gradient(180deg, #999 0%, #777 50%, #888 100%);
  border-color: #666;
}

body.light .rack-toggle::before { background: linear-gradient(180deg, #ccc 0%, #aaa 100%); }

body.light .rack-vu-bezel { background: #1a1a1a; border-color: #444; }

body.light .rack-conoce-btn {
  border-color: rgba(0,0,0,0.3);
  color: var(--white-dim);
}

body.light .rack-conoce-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ─────────────────────────────────────────
   PANEL BACK BUTTON
   ───────────────────────────────────────── */

/* Versión dentro del page-banner (position absolute sobre la foto) */
.panel-back {
  position: absolute;
  top: 20px;
  left: 48px;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: color-mix(in srgb, var(--black) 48%, transparent);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.72);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 8px 16px 8px 12px;
  border-radius: 2px;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.panel-back svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.panel-back:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.35);
  background: color-mix(in srgb, var(--black) 64%, transparent);
}

.panel-back:hover svg {
  transform: translateX(-3px);
}

/* Variante Contact — integrado en el header sin foto de fondo */
.panel-back--inline {
  position: static;
  background: none;
  border: none;
  backdrop-filter: none;
  color: var(--white-dim);
  padding: 0 0 20px 0;
  font-size: 11px;
}

.panel-back--inline:hover {
  color: var(--white);
  background: none;
  border: none;
}

@media (max-width: 768px) {
  .panel-back { left: 20px; top: 16px; }
}

/* ─────────────────────────────────────────
   EQUIP LIST (reemplaza accordion)
   ───────────────────────────────────────── */
.equip-list {
  margin-top: 48px;
}

.equip-category-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 32px 0 10px;
  border-bottom: 1px solid var(--border);
  opacity: 0.75;
}

.equip-list .equipment-item:last-of-type {
  margin-bottom: 0;
}

/* ─────────────────────────────────────────
   LIGHT MODE HERO FIX
   ───────────────────────────────────────── */
body.light .hero-video-overlay {
  background: linear-gradient(
    135deg,
    rgba(245,245,245,0.55) 0%,
    rgba(245,245,245,0.35) 55%,
    rgba(245,245,245,0.55) 100%
  );
}

body.light nav {
  background: color-mix(in srgb, var(--black) 9%, transparent);
}

body.light .hero-bio {
  opacity: 0.6;
}

body.light .hero-bio:hover {
  opacity: 1;
}

body.light .contact-panel,
body.light .about-panel,
body.light .music-panel,
body.light .gallery-panel-section,
body.light .gear-panel-section {
  background: var(--black);
}

body.light .contact-form,
body.light .form-input,
body.light .form-textarea {
  color: var(--white);
  background: transparent;
}

body.light .form-input::placeholder,
body.light .form-textarea::placeholder {
  color: var(--white-ghost);
}

body.light .custom-select-dropdown {
  background: var(--surface-2);
  border-color: var(--border);
}

body.light .footer {
  background: var(--black);
}

body.light .hits-ticker {
  background: var(--surface);
}

body.light .hits-ticker::before {
  background: linear-gradient(to right, var(--surface), transparent);
}
body.light .hits-ticker::after {
  background: linear-gradient(to left, var(--surface), transparent);
}

/* ─────────────────────────────────────────
   SVC FONT SIZE BOOST
   ───────────────────────────────────────── */
.svc-total-label {
  font-size: 9px;
}

.svc-cta {
  font-size: 10.5px;
}

/* ─────────────────────────────────────────
   EQUIP HOME — Sección 01
   ───────────────────────────────────────── */
.equip-home {
  display: grid;
  grid-template-columns: 200px 1fr;
  border: 1px solid var(--border);
  margin-top: 48px;
  height: 480px;
}

.equip-home-left {
  border-right: 1px solid var(--border);
  display: grid;
  grid-template-rows: repeat(5, 1fr);
  height: 100%;
}

.equip-home-cat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 20px;
  background: none;
  border: none;
  border-bottom: 1px solid var(--border);
  color: var(--white-dim);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  text-align: left;
  width: 100%;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.equip-home-cat:last-child { border-bottom: none; }

.equip-home-cat-count {
  font-size: 9px;
  color: var(--white-ghost);
  transition: color 0.2s ease;
}

.equip-home-cat:hover {
  background: var(--surface);
  color: var(--white);
}

.equip-home-cat.active {
  background: var(--surface);
  color: var(--accent);
  box-shadow: inset 3px 0 0 var(--accent);
}

.equip-home-cat.active .equip-home-cat-count {
  color: var(--accent);
  opacity: 0.5;
}

.equip-home-right {
  background: var(--black);
  height: 100%;
  overflow: hidden;
}

.equip-home-list {
  display: none;
  flex-direction: column;
  height: 100%;
}

.equip-home-list.active {
  display: flex;
  animation: equipFadeIn 0.22s ease both;
}

@keyframes equipFadeIn {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: translateY(0); }
}

.equip-home-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 24px;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s ease, padding-left 0.2s ease;
}

.equip-home-item:last-child { border-bottom: none; }

.equip-home-item:hover {
  background: var(--surface);
  padding-left: 32px;
}

.equip-home-model {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--white);
}

.equip-home-brand {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--white-dim);
  letter-spacing: 0.1em;
  flex-shrink: 0;
}

.equip-home-footer {
  margin-top: 20px;
  display: flex;
  justify-content: flex-end;
}

.equip-ver-mas {
  background: none;
  border: 1px solid var(--border-light);
  color: var(--white-dim);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  padding: 12px 28px;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.equip-ver-mas:hover {
  color: var(--accent);
  border-color: var(--accent);
  background: var(--accent-glow);
}

@media (max-width: 640px) {
  .equip-home {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    height: auto;
    min-height: 360px;
  }
  .equip-home-left {
    display: flex;
    flex-direction: row;
    height: auto;
    overflow-x: auto;
    border-right: none;
    border-bottom: 1px solid var(--border);
    scrollbar-width: none;
  }
  .equip-home-left::-webkit-scrollbar { display: none; }
  .equip-home-cat {
    flex-shrink: 0;
    flex: 1;
    border-bottom: none;
    border-right: 1px solid var(--border);
    padding: 14px 12px;
    white-space: nowrap;
    justify-content: center;
  }
  .equip-home-cat:last-child { border-right: none; }
  .equip-home-cat.active { box-shadow: inset 0 -3px 0 var(--accent); }
  .equip-home-right { min-height: 280px; }
  .equip-home-item { padding: 0 20px; }
  .equip-home-item:hover { padding-left: 24px; }
  .equip-home-cat-count { display: none; }
}

/* ─────────────────────────────────────────
   2026 CONTENT REFRESH
   ───────────────────────────────────────── */
.svc-type {
  font-size: 21px;
}

.svc-desc {
  font-size: 13px;
  line-height: 1.65;
}

.svc-option {
  align-items: flex-start;
  padding: 20px 24px 20px 22px;
}

.svc-option-name {
  font-size: 14px;
  line-height: 1.4;
}

.svc-option-detail {
  margin-top: 5px;
  font-size: 11.5px;
  line-height: 1.75;
  color: var(--white-dim);
}

.svc-option-price {
  font-size: 20px;
}

.svc-toggle,
.svc-cta {
  font-size: 10px;
}

.equipment-item {
  grid-template-columns: 40px 1fr auto;
}

.equipment-name {
  font-size: 17px;
}

.equipment-name strong {
  font-family: var(--mono);
  font-size: 0.78em;
  letter-spacing: 0.08em;
  color: var(--white-dim);
}

.equipment-tag {
  width: auto;
  height: auto;
}

.single-card {
  flex: 0 0 390px;
  border-radius: 2px;
  background: linear-gradient(145deg, var(--surface), var(--black));
  border-color: var(--border-light);
}

.single-card:hover {
  border-color: color-mix(in srgb, var(--accent) 55%, var(--border));
}

.single-card-artwork {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 40%, var(--accent-dim), transparent 55%),
    var(--surface-2);
}

.single-card-artwork::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.52), transparent 45%);
  pointer-events: none;
}

.single-card-artwork img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.single-card:hover .single-card-artwork img {
  transform: scale(1.025);
}

.single-card-content {
  display: flex;
  flex-direction: column;
  min-height: 245px;
  padding: 24px;
}

.single-card-eyebrow {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

.single-card-title {
  margin-top: 12px;
  font-family: var(--display);
  font-size: 27px;
  line-height: 1.05;
  color: var(--white);
}

.single-card-artist {
  margin-top: 8px;
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.5;
  color: var(--white-dim);
}

.single-card-awards {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.record-award {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 7px 12px 7px 8px;
  border: 1px solid var(--border-light);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.045), transparent 45%),
    color-mix(in srgb, var(--surface-2) 82%, transparent);
}

.record-award-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  color: #d8dce0;
}

.record-award-icon svg {
  width: 36px;
  height: 36px;
  display: block;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 2px 5px rgba(0,0,0,0.45));
}

.record-award-icon--record {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.18);
  background: linear-gradient(145deg, #302a17, #111111 74%);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.05),
    inset 0 0 14px rgba(255,255,255,0.02),
    0 3px 10px rgba(0,0,0,0.34);
  border-radius: 50%;
}

.record-award-icon--record svg {
  width: 33px;
  height: 33px;
  fill: rgba(220,225,230,0.18);
}

.record-award--oro .record-award-icon {
  color: #ddb956;
}

.record-award--oro .record-award-icon--record {
  background: linear-gradient(145deg, #f3df9b, #7e5b12 72%, #40300d);
}

.record-award--platino .record-award-icon {
  color: #e5ebf0;
}

.record-award--platino .record-award-icon--record {
  background: linear-gradient(145deg, #ffffff, #9ea8b4 72%, #5b636e);
}

.record-award--diamante .record-award-icon {
  color: #a8dcff;
}

.record-award--diamante .record-award-icon svg {
  fill: rgba(168,220,255,0.95);
}

.record-award--grammy .record-award-icon,
.record-award--latin_grammy .record-award-icon {
  color: #d9b55d;
}

.record-award--grammy .record-award-icon svg,
.record-award--latin_grammy .record-award-icon svg {
  fill: currentColor;
}

.record-award--billboard .record-award-icon {
  color: #8fc5ff;
}

.record-award--billboard .record-award-icon svg {
  fill: currentColor;
}

.record-award--personalizado .record-award-icon {
  color: #d0d6dc;
}

.record-award-label {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-family: var(--mono);
  text-transform: uppercase;
}

.record-award-label strong {
  font-family: var(--display);
  font-size: 14px;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--white);
}

.record-award-label span {
  max-width: 145px;
  font-size: 8px;
  line-height: 1.3;
  letter-spacing: 0.1em;
  color: var(--white-dim);
}

.single-card-actions {
  display: flex;
  gap: 8px;
  margin-top: auto;
  padding-top: 22px;
}

.stream-link {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border: 1px solid var(--border-light);
  color: var(--white);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.stream-link--spotify:hover {
  color: #1ed760;
  border-color: #1ed760;
  background: rgba(30,215,96,0.06);
}

.stream-link--apple:hover {
  color: #fa466b;
  border-color: #fa466b;
  background: rgba(250,70,107,0.06);
}

.gallery-panel-item {
  width: 100%;
  border: 0;
  padding: 0;
  cursor: zoom-in;
  color: inherit;
}

body.lightbox-open {
  overflow: hidden;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 72px;
  align-items: center;
  padding: 32px;
  background: rgba(4,4,4,0.94);
  backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lightbox-figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 0;
  height: 100%;
}

.lightbox-figure img {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 100px);
  object-fit: contain;
  box-shadow: 0 24px 80px rgba(0,0,0,0.55);
}

.lightbox-figure figcaption {
  margin-top: 14px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.55);
}

.lightbox-close,
.lightbox-nav {
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.04);
  color: #fff;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.lightbox-close:hover,
.lightbox-nav:hover {
  border-color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.1);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 42px;
  height: 42px;
  font-size: 24px;
  line-height: 1;
}

.lightbox-nav {
  width: 48px;
  height: 48px;
  justify-self: center;
  font-size: 18px;
}

.map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

#mapbox-about.map-unavailable {
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, transparent 49.5%, var(--border) 50%, transparent 50.5%),
    linear-gradient(45deg, transparent 49.5%, var(--border) 50%, transparent 50.5%),
    var(--surface);
}

#mapbox-about.map-unavailable::after {
  content: 'Usa Google Maps o Apple Maps para navegar';
  max-width: 220px;
  padding: 14px;
  background: var(--black);
  border: 1px solid var(--border);
  color: var(--white-dim);
  font-family: var(--mono);
  font-size: 10px;
  line-height: 1.6;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

@media (max-width: 640px) {
  .svc-option-detail {
    font-size: 11px;
  }

  .single-card {
    flex-basis: calc(100vw - 110px);
  }

  .single-card-content {
    min-height: 230px;
    padding: 20px;
  }

  .single-card-title {
    font-size: 24px;
  }

  .lightbox {
    grid-template-columns: 48px minmax(0, 1fr) 48px;
    padding: 16px 6px;
  }

  .lightbox-nav {
    width: 40px;
    height: 40px;
  }

  .equipment-item {
    grid-template-columns: 32px 1fr;
    gap: 14px;
  }

  .equipment-tag {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
