/* ============================================================
   CAOS PRODUCE — styles.css
   v20260624
   ============================================================ */

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --bg:          #0a0a0a;
  --fg:          #f0f0f0;
  --accent:      #00f5d4;
  --accent-glow: rgba(0, 245, 212, 0.18);
  --accent-dim:  rgba(0, 245, 212, 0.08);
  --border:      rgba(240, 240, 240, 0.1);
  --border-med:  rgba(240, 240, 240, 0.18);
  --muted:       rgba(240, 240, 240, 0.45);

  --font:        'Space Grotesk', sans-serif;

  --banner-h:    40px;
  --nav-h:       64px;

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.76, 0, 0.24, 1);

  --container:   1240px;
  --gutter:      clamp(20px, 5vw, 60px);

  --radius:      2px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background: var(--bg);
  color: var(--fg);
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--fg);
  overflow-x: hidden;
  padding-top: calc(var(--banner-h) + var(--nav-h));
  cursor: none;
}

body.banner-closed {
  padding-top: var(--nav-h);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul { list-style: none; }

button {
  background: none;
  border: none;
  cursor: none;
  font-family: var(--font);
}

input, textarea, select {
  font-family: var(--font);
}

/* ── Cursor ─────────────────────────────────────────────────── */
#cursor {
  position: fixed;
  top: 0; left: 0;
  width: 10px; height: 10px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s var(--ease-out),
              height 0.2s var(--ease-out),
              opacity 0.2s;
  mix-blend-mode: difference;
}

#cursor-follower {
  position: fixed;
  top: 0; left: 0;
  width: 36px; height: 36px;
  border: 1px solid rgba(0, 245, 212, 0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.35s var(--ease-out),
              height 0.35s var(--ease-out),
              opacity 0.35s,
              border-color 0.35s;
}

body.cursor-hover #cursor {
  width: 6px; height: 6px;
  opacity: 0.6;
}

body.cursor-hover #cursor-follower {
  width: 56px; height: 56px;
  border-color: rgba(0, 245, 212, 0.7);
}

@media (hover: none) {
  #cursor, #cursor-follower { display: none; }
  body { cursor: auto; }
  button { cursor: pointer; }
  a { cursor: pointer; }
}

/* ── Demo Banner ────────────────────────────────────────────── */
#demo-banner {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--banner-h);
  z-index: 1000;
  background: #050505;
  border-bottom: 1px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 20px;
  font-size: 11px;
  letter-spacing: 0.03em;
  color: rgba(240, 240, 240, 0.7);
  transition: transform 0.4s var(--ease-in-out), opacity 0.4s;
}

#demo-banner a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

#demo-banner strong {
  color: var(--fg);
  font-weight: 600;
}

.banner-close {
  position: absolute;
  right: 16px;
  width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  color: var(--muted);
  transition: color 0.2s;
  line-height: 1;
}

.banner-close:hover { color: var(--fg); }

#demo-banner.is-closed {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

/* ── Navigation ─────────────────────────────────────────────── */
#nav {
  position: fixed;
  top: var(--banner-h);
  left: 0; right: 0;
  height: var(--nav-h);
  z-index: 990;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--gutter);
  transition: top 0.4s var(--ease-in-out),
              background 0.4s,
              border-color 0.4s;
  border-bottom: 1px solid transparent;
}

body.banner-closed #nav {
  top: 0;
}

#nav.scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-svg {
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-out);
  animation: neonLogoAura 3s ease-in-out infinite;
}

.nav-logo:hover .logo-svg {
  transform: rotate(15deg);
}

.logo-glow-layer {
  animation: neonGlowPulse 3s ease-in-out infinite;
}

@keyframes neonLogoAura {
  0%, 100% {
    filter: drop-shadow(0 0 2px rgba(200,215,255,0.55))
            drop-shadow(0 0 6px rgba(180,200,255,0.25));
  }
  50% {
    filter: drop-shadow(0 0 4px rgba(220,235,255,0.9))
            drop-shadow(0 0 12px rgba(180,200,255,0.45));
  }
}

@keyframes neonGlowPulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.45; }
}

.nav-wordmark {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.3s var(--ease-out);
}

.nav-link:hover {
  color: var(--fg);
}

.nav-link:hover::after { width: 100%; }

.nav-link--cta {
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 7px 16px;
  border-radius: var(--radius);
  transition: background 0.2s, color 0.2s;
}

.nav-link--cta::after { display: none; }

.nav-link--cta:hover {
  background: var(--accent);
  color: var(--bg);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 28px;
  padding: 4px 0;
}

.toggle-bar {
  display: block;
  width: 100%; height: 1.5px;
  background: var(--fg);
  transition: transform 0.35s var(--ease-out), opacity 0.35s;
  transform-origin: center;
}

.nav-toggle[aria-expanded="true"] .toggle-bar:nth-child(1) {
  transform: translateY(3.75px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .toggle-bar:nth-child(2) {
  transform: translateY(-3.75px) rotate(-45deg);
}

/* Mobile Menu */
#mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 980;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: var(--gutter);
  transform: translateX(100%);
  transition: transform 0.5s var(--ease-in-out);
  border-left: 1px solid var(--border);
}

#mobile-menu.is-open {
  transform: translateX(0);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-link {
  font-size: clamp(36px, 8vw, 56px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--muted);
  line-height: 1.1;
  transition: color 0.2s;
  display: block;
}

.mobile-link:hover { color: var(--fg); }
.mobile-link--accent { color: var(--accent); }
.mobile-link--accent:hover { color: var(--accent); opacity: 0.8; }

.mobile-footer-info {
  position: absolute;
  bottom: 40px; left: var(--gutter);
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-transform: uppercase;
}

/* ── Hero ───────────────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  margin-top: calc(-1 * (var(--banner-h) + var(--nav-h)));
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%,  rgba(0, 245, 212, 0.055) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 20%,  rgba(0, 180, 255, 0.04)  0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 60% 85%,  rgba(80,  0, 180, 0.05)  0%, transparent 60%),
    #0a0a0a;
  animation: heroBgShift 12s ease-in-out infinite alternate;
}

@keyframes heroBgShift {
  0% {
    background:
      radial-gradient(ellipse 80% 60% at 20% 50%,  rgba(0, 245, 212, 0.055) 0%, transparent 60%),
      radial-gradient(ellipse 60% 80% at 80% 20%,  rgba(0, 180, 255, 0.04)  0%, transparent 55%),
      radial-gradient(ellipse 70% 50% at 60% 85%,  rgba(80,  0, 180, 0.05)  0%, transparent 60%),
      #0a0a0a;
  }
  50% {
    background:
      radial-gradient(ellipse 70% 55% at 75% 40%,  rgba(0, 245, 212, 0.06)  0%, transparent 60%),
      radial-gradient(ellipse 55% 70% at 15% 70%,  rgba(0, 180, 255, 0.035) 0%, transparent 55%),
      radial-gradient(ellipse 65% 60% at 50% 15%,  rgba(80,  0, 180, 0.045) 0%, transparent 60%),
      #0a0a0a;
  }
  100% {
    background:
      radial-gradient(ellipse 75% 65% at 40% 70%,  rgba(0, 245, 212, 0.05)  0%, transparent 60%),
      radial-gradient(ellipse 65% 55% at 85% 50%,  rgba(0, 180, 255, 0.045) 0%, transparent 55%),
      radial-gradient(ellipse 80% 45% at 10% 30%,  rgba(80,  0, 180, 0.06)  0%, transparent 60%),
      #0a0a0a;
  }
}

#grain-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.55;
  mix-blend-mode: overlay;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: calc(var(--banner-h) + var(--nav-h) + 40px) var(--gutter) 60px;
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
}

.hero-title-wrap {
  margin-bottom: clamp(24px, 4vw, 40px);
}

.hero-line {
  line-height: 0.92;
  overflow: hidden;
}

.hero-word {
  display: inline-block;
  font-size: clamp(72px, 13vw, 180px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 0.92;
  text-transform: uppercase;
  color: var(--fg);
  will-change: transform, opacity;
}

.hero-word--outline {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--fg);
}

.hero-sub {
  font-size: clamp(13px, 1.6vw, 17px);
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: clamp(32px, 5vw, 52px);
  opacity: 0;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
}

.hero-meta {
  position: absolute;
  bottom: 40px;
  right: var(--gutter);
  z-index: 10;
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 4px;
  opacity: 0;
}

.hero-location {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-tagline {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-weight: 500;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: var(--gutter);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.1); }
}

.hero-scroll span {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  writing-mode: vertical-rl;
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background 0.25s, color 0.25s, border-color 0.25s,
              box-shadow 0.25s, transform 0.25s var(--ease-out);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.06);
  opacity: 0;
  transition: opacity 0.2s;
}

.btn:hover::before { opacity: 1; }

.btn-primary {
  background: var(--accent);
  color: var(--bg);
  border: 1px solid var(--accent);
}

.btn-primary:hover {
  background: transparent;
  color: var(--accent);
  box-shadow: 0 0 20px var(--accent-glow);
}

.btn-ghost {
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--border-med);
}

.btn-ghost:hover {
  border-color: var(--fg);
  color: var(--fg);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid rgba(0, 245, 212, 0.35);
  font-size: 11px;
  padding: 10px 20px;
}

.btn-outline:hover {
  background: var(--accent-dim);
  border-color: var(--accent);
}

.btn-sm {
  padding: 9px 18px;
  font-size: 10px;
}

/* ── Container / Layout ─────────────────────────────────────── */
.container {
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ── Section Headers ────────────────────────────────────────── */
.section-header {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: clamp(40px, 6vw, 72px);
  border-bottom: 1px solid var(--border);
  padding-bottom: 20px;
}

.section-num {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* ── Servicios ──────────────────────────────────────────────── */
#servicios {
  padding: clamp(80px, 10vw, 140px) 0;
  border-top: 1px solid var(--border);
}

.servicios-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  max-width: 860px;
  margin: 0 auto;
}

.servicio-card {
  background: var(--bg);
  padding: clamp(32px, 4vw, 52px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  transition: background 0.3s;
  transform-style: preserve-3d;
  will-change: transform;
}

.servicio-card:hover {
  background: #0f0f0f;
}

.card-icon {
  color: var(--accent);
  transition: transform 0.3s var(--ease-out);
}

.servicio-card:hover .card-icon {
  transform: scale(1.1);
}

.card-title {
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.card-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
  flex-grow: 1;
}

.card-line {
  height: 1px;
  background: var(--border);
  transition: background 0.3s, transform 0.3s;
  transform-origin: left;
}

.servicio-card:hover .card-line {
  background: var(--accent);
}

.card-arrow {
  font-size: 18px;
  color: var(--accent);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.3s, transform 0.3s var(--ease-out);
  display: block;
  line-height: 1;
}

.servicio-card:hover .card-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ── Artistas ───────────────────────────────────────────────── */
#artistas {
  padding: clamp(80px, 10vw, 140px) 0;
  border-top: 1px solid var(--border);
}

.artistas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.artista-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

.artista-card--featured {
  grid-row: span 1;
}

.artista-img-wrap {
  position: relative;
  overflow: hidden;
}

.artista-img-wrap img {
  width: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-out), filter 0.4s;
  filter: grayscale(40%) brightness(0.85);
}

.artista-card--featured .artista-img-wrap img {
  height: 480px;
}

.artista-card--sm .artista-img-wrap img {
  height: 200px;
}

.artista-card:hover .artista-img-wrap img {
  transform: scale(1.04);
  filter: grayscale(0%) brightness(0.95);
}

.artista-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.8) 0%, transparent 60%);
}

.artista-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--accent);
  color: var(--bg);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: var(--radius);
}

.artista-info {
  padding: 20px 0 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.artista-name {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1;
}

.artista-card--sm .artista-name {
  font-size: 18px;
}

.artista-tags {
  display: flex;
  gap: 12px;
  align-items: center;
}

.artista-genre {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.05em;
}

.artista-city {
  font-size: 10px;
  color: var(--accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}

.artista-cta {
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-top: 4px;
  transition: gap 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.artista-cta:hover { opacity: 0.7; }

.artistas-secondary {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ── Fechas ─────────────────────────────────────────────────── */
#fechas {
  padding: clamp(80px, 10vw, 140px) 0;
  border-top: 1px solid var(--border);
}

/* (fecha-featured / fechas-list removed — replaced by .evento-block / .lineup-item) */

/* ── Sobre CAOS ─────────────────────────────────────────────── */
#sobre {
  padding: clamp(80px, 10vw, 140px) 0;
  border-top: 1px solid var(--border);
}

.sobre-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.sobre-inner .section-header {
  grid-column: 1 / -1;
}

.sobre-text-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sobre-text {
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.75;
  color: rgba(240,240,240,0.8);
}

.sobre-quote {
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--fg);
  border-left: 3px solid var(--accent);
  padding-left: 20px;
  line-height: 1.3;
  font-style: normal;
}

.sobre-img-col img {
  width: 100%;
  border-radius: var(--radius);
  filter: grayscale(30%) brightness(0.7);
  object-fit: cover;
  height: 340px;
}

/* ── Contacto ───────────────────────────────────────────────── */
#contacto {
  padding: clamp(80px, 10vw, 140px) 0;
  border-top: 1px solid var(--border);
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}

.contact-lead {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 36px;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-channel {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  transition: border-color 0.2s;
}

.contact-channel:hover {
  border-bottom-color: var(--accent);
}

.channel-label {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}

.channel-value {
  font-size: 15px;
  color: var(--fg);
  font-weight: 500;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.form-input {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--fg);
  padding: 14px 16px;
  font-size: 14px;
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

.form-input::placeholder {
  color: rgba(240, 240, 240, 0.2);
}

.form-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px var(--accent-dim);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.form-note {
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.05em;
}

/* ── Footer ─────────────────────────────────────────────────── */
#footer {
  padding: clamp(60px, 8vw, 100px) 0 40px;
  border-top: 1px solid var(--border);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: clamp(32px, 5vw, 60px);
  margin-bottom: 60px;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.footer-logo-link {
  flex-shrink: 0;
}

.footer-name {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.footer-tagline {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.06em;
}

.footer-heading {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 13px;
  color: var(--muted);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--fg); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.footer-copy {
  font-size: 11px;
  color: rgba(240,240,240,0.3);
  letter-spacing: 0.04em;
}

.footer-credit {
  font-size: 11px;
  color: rgba(240,240,240,0.3);
}

.footer-credit a {
  color: rgba(240,240,240,0.5);
  transition: color 0.2s;
}

.footer-credit a:hover { color: var(--accent); }

/* ── Scroll Reveals ─────────────────────────────────────────── */
/* Defensive: always visible if GSAP fails or hasn't run */
.reveal {
  will-change: transform, opacity;
}

/* ── Responsive ─────────────────────────────────────────────── */

/* Tablet */
@media (max-width: 1024px) {
  .artistas-grid {
    grid-template-columns: 1fr;
  }

  .artistas-secondary {
    flex-direction: row;
  }

  .artista-card--featured .artista-img-wrap img {
    height: 380px;
  }

  .artista-card--sm .artista-img-wrap img {
    height: 220px;
  }

  .sobre-inner {
    grid-template-columns: 1fr;
  }

}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --banner-h: 44px;
    --nav-h:    60px;
  }

  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .nav-wordmark { display: none; }

  .servicios-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .artistas-secondary {
    flex-direction: column;
  }

.contact-wrap {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .hero-meta {
    display: none;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  #demo-banner {
    font-size: 10px;
  }

  .banner-text {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-word {
    font-size: clamp(60px, 18vw, 90px);
  }

  .artistas-secondary {
    gap: 16px;
  }
}

/* ── Artista Placeholder ────────────────────────────────────── */
.artista-placeholder {
  width: 100%;
  height: 480px;
  background: #141414;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.artista-placeholder--sm {
  height: 200px;
}

.artista-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      rgba(255,255,255,0.012) 0px,
      rgba(255,255,255,0.012) 1px,
      transparent 1px,
      transparent 4px
    );
  pointer-events: none;
}

.artista-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(255,255,255,0.03) 0%,
    transparent 70%
  );
}

.placeholder-label {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(240,240,240,0.2);
  position: relative;
  z-index: 1;
  text-align: center;
}

/* ── Evento / Lineup (Fechas section) ───────────────────────── */
.evento-block {
  border: 1px solid var(--border);
  position: relative;
}

.evento-block + .evento-block {
  border-top: none;
}

.evento-header {
  padding: clamp(24px, 3vw, 44px) clamp(24px, 4vw, 52px);
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.evento-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.evento-n {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--accent);
}

.evento-fecha-txt {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.evento-lugar-txt {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.evento-meta .evento-lugar-txt::before {
  content: '·';
  margin-right: 20px;
  opacity: 0.3;
}

.evento-titulo {
  font-size: clamp(22px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 1;
}

.evento-lineup {
  display: flex;
  flex-direction: column;
}

.lineup-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: clamp(18px, 2.5vw, 30px) clamp(24px, 4vw, 52px);
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}

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

.lineup-item:hover {
  background: rgba(255,255,255,0.015);
}

.lineup-billing {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  min-width: 68px;
  padding-top: 6px;
  flex-shrink: 0;
}

.lineup-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.lineup-name {
  font-size: clamp(22px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--fg);
}

.lineup-name--sm {
  font-size: clamp(16px, 2.5vw, 26px);
}

.lineup-desc {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.03em;
  line-height: 1.5;
}

.lineup-badge {
  flex-shrink: 0;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 4px 10px;
  border-radius: var(--radius);
  white-space: nowrap;
  align-self: flex-start;
  margin-top: 4px;
}

/* Responsive: fechas/evento */
@media (max-width: 768px) {
  .lineup-item {
    flex-wrap: wrap;
    gap: 10px;
  }
  .lineup-billing {
    min-width: 52px;
    font-size: 8px;
  }
  .lineup-badge {
    width: 100%;
  }
  .evento-meta {
    gap: 10px;
  }
  .evento-meta .evento-lugar-txt::before {
    margin-right: 10px;
  }
}

/* ── Utility ─────────────────────────────────────────────────── */
.overflow-clip {
  overflow: hidden;
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* Reduced motion: only gate intrusive effects, keep reveals */
@media (prefers-reduced-motion: reduce) {
  .scroll-line { animation: none; }
  .hero-bg     { animation: none; }
  #grain-canvas { display: none; }
}
