:root {
  --neon: #CAFF00;
  --neon-dim: rgba(202,255,0,0.5);
  --black: #0A0A0A;
  --gray-dark: #111111;
  --gray-mid: #1A1A1A;
  --gray-border: #2A2A2A;
  --white: #F5F5F0;
  --white-dim: rgba(245,245,240,0.55);
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black); color: var(--white);
  font-family: var(--font-body); font-size: 16px; line-height: 1.6;
  overflow-x: hidden;
}
.noise {
  position: fixed; inset: 0; z-index: 9999; pointer-events: none; opacity: 0.4;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
}

/* ===== NAV ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 48px; border-bottom: 1px solid transparent;
  background: rgba(10,10,10,0); backdrop-filter: blur(0px);
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s, padding 0.3s;
}
nav.scrolled { background: rgba(10,10,10,0.92); border-bottom-color: var(--gray-border); backdrop-filter: blur(12px); padding: 12px 48px; }
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo img { height: 38px; width: auto; }
.nav-logo span { font-family: var(--font-display); font-size: 26px; letter-spacing: 0.12em; color: var(--neon); }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a { font-size: 12px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white-dim); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover { color: var(--neon); }
.lang-toggle { display: flex; gap: 4px; }
.lang-btn { padding: 4px 10px; border-radius: 4px; cursor: pointer; border: 1px solid var(--gray-border); background: transparent; color: var(--white-dim); transition: all 0.2s; font-family: var(--font-body); font-size: 11px; font-weight: 500; }
.lang-btn.active, .lang-btn:hover { background: var(--neon); color: var(--black); border-color: var(--neon); }
.nav-toggle { display: none; background: none; border: none; color: var(--white); font-size: 24px; cursor: pointer; }

/* ===== LANGUAGE ===== */
.inline-en, .inline-es { display: none; }
body.lang-es .inline-es { display: inline; }
body.lang-en .inline-en { display: inline; }
[data-lang]{ display:none; }
body.lang-es [data-lang="es"]{ display:block; }
body.lang-en [data-lang="en"]{ display:block; }

/* ===== HERO ===== */
.hero { min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 100px 24px 60px; position: relative; overflow: hidden; }
.hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(202,255,0,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(202,255,0,0.04) 1px, transparent 1px); background-size: 60px 60px; }
.hero-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 900px; height: 900px; max-width: 130vw; max-height: 130vw; background: radial-gradient(circle, rgba(202,255,0,0.10) 0%, transparent 60%); pointer-events: none; }
.hero-logo { width: 150px; height: auto; margin-bottom: 28px; position: relative; filter: drop-shadow(0 0 40px rgba(202,255,0,0.3)); animation: float 6s ease-in-out infinite; }
@keyframes float { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-12px);} }
.hero-name { font-family: var(--font-display); font-size: clamp(64px, 13vw, 200px); line-height: 0.85; letter-spacing: 0.04em; position: relative; margin-bottom: 18px; }
.hero-label { font-size: clamp(11px, 1.6vw, 14px); font-weight: 500; letter-spacing: 0.28em; text-transform: uppercase; color: var(--white); position: relative; margin-bottom: 36px; }
.hero-label .dot { color: var(--neon); margin: 0 8px; }
.hero-tagline { font-family: var(--font-display); font-size: clamp(22px, 3.4vw, 44px); line-height: 1.05; letter-spacing: 0.02em; position: relative; max-width: 14ch; }
.hero-tagline .neon { color: var(--neon); display:block; }
.scroll-cue { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--white-dim); display:flex; flex-direction:column; align-items:center; gap:8px; animation: bob 2s infinite; }
@keyframes bob { 0%,100%{transform:translateX(-50%) translateY(0);} 50%{transform:translateX(-50%) translateY(6px);} }

/* ===== SECTION SHARED ===== */
section { position: relative; }
.section-pad { padding: 110px 8vw; }
.section-label { font-size: 11px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--neon); margin-bottom: 18px; display: flex; align-items: center; gap: 12px; }
.section-label::before { content: ''; width: 28px; height: 1px; background: var(--neon); }
.section-title { font-family: var(--font-display); font-size: clamp(44px, 6.5vw, 96px); line-height: 0.95; letter-spacing: 0.02em; margin-bottom: 28px; }
.section-title .neon { color: var(--neon); }
.grid-bg { position: absolute; inset: 0; background-image: linear-gradient(rgba(202,255,0,0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(202,255,0,0.025) 1px, transparent 1px); background-size: 60px 60px; pointer-events: none; }

/* ===== ABOUT ===== */
.about { border-top: 1px solid var(--gray-border); }
.about-wrap { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: center; }
.about-text p { font-size: 16px; color: var(--white-dim); line-height: 1.85; margin-bottom: 22px; }
.about-text p strong { color: var(--white); font-weight: 500; }
.about-why { background: var(--gray-dark); border: 1px solid var(--gray-border); border-left: 3px solid var(--neon); border-radius: 0 8px 8px 0; padding: 28px 30px; margin-top: 8px; }
.about-why h4 { font-family: var(--font-display); font-size: 24px; letter-spacing: 0.05em; color: var(--neon); margin-bottom: 14px; }
.about-why p { font-size: 14px; color: var(--white-dim); line-height: 1.7; margin-bottom: 10px; font-style: italic; }
.about-why p:last-child { margin-bottom: 0; }
.about-visual { position: relative; aspect-ratio: 3/4; border-radius: 6px; overflow: hidden; border: 1px solid var(--gray-border); }
.about-loc { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.loc-chip { font-size: 12px; padding: 6px 14px; border: 1px solid var(--gray-border); border-radius: 40px; color: var(--white-dim); letter-spacing: 0.04em; }
.loc-chip.primary { border-color: var(--neon); color: var(--neon); }

/* ===== ARTISTS (vinyl) ===== */
.artists { border-top: 1px solid var(--gray-border); overflow: hidden; }
.vinyl-row { display: flex; gap: 60px; justify-content: center; flex-wrap: wrap; margin-top: 50px; perspective: 1800px; }
.vinyl { position: relative; width: 420px; max-width: 88vw; cursor: pointer; text-decoration: none; }
.vinyl:hover { z-index: 5; }
.vinyl-sleeve { position: relative; width: 300px; max-width: 72%; aspect-ratio: 1; border-radius: 4px; overflow: visible; transform-style: preserve-3d; transition: transform 0.5s cubic-bezier(.2,.8,.2,1); z-index: 2; }
.vinyl-disc { position: absolute; top: 0; right: 0; width: 92%; height: 92%; border-radius: 50%; background: repeating-radial-gradient(circle at center, #111 0 2px, #1c1c1c 2px 4px), radial-gradient(circle at center, #000 38%, #1a1a1a 39%); top: 4%; transition: transform 0.6s cubic-bezier(.2,.8,.2,1); z-index: 1; transform: translateX(15%); box-shadow: 0 20px 50px rgba(0,0,0,0.6); }
.vinyl-disc::after { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 32%; height: 32%; border-radius: 50%; background: var(--neon); box-shadow: 0 0 0 4px #000 inset; }
.vinyl-disc::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 5%; height: 5%; border-radius: 50%; background: #000; z-index: 3; }
.vinyl-cover { position: relative; width: 100%; height: 100%; border-radius: 4px; overflow: hidden; box-shadow: 0 30px 60px rgba(0,0,0,0.7); z-index: 2; border: 1px solid var(--gray-border); }
.vinyl-cover img { width: 100%; height: 100%; object-fit: cover; }
.vinyl-cover::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, transparent 60%, rgba(202,255,0,0.08)); }
.vinyl:hover .vinyl-disc { transform: translateX(43%) rotate(8deg); }
.vinyl:hover .vinyl-sleeve { transform: translateY(-10px); }
.vinyl-info { margin-top: 26px; text-align: center; width: 300px; max-width: 72%; }
.vinyl-genre { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--neon); margin-bottom: 6px; }
.vinyl-name { font-family: var(--font-display); font-size: 40px; letter-spacing: 0.04em; line-height: 1; }
.vinyl-cta { display: inline-flex; align-items: center; gap: 7px; margin-top: 12px; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white-dim); transition: color 0.2s, gap 0.2s; }
.vinyl:hover .vinyl-cta { color: var(--neon); gap: 12px; }

/* ===== COLLABS ===== */
.collabs { border-top: 1px solid var(--gray-border); background: var(--gray-dark); }
.collab-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 50px; }
.collab-card { position: relative; aspect-ratio: 4/5; border-radius: 6px; overflow: hidden; border: 1px solid var(--gray-border); }
.collab-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; filter: grayscale(0.2); }
.collab-card:hover img { transform: scale(1.05); filter: grayscale(0); }
.collab-overlay { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 24px; background: linear-gradient(transparent 40%, rgba(0,0,0,0.85)); }
.collab-name { font-family: var(--font-display); font-size: 30px; letter-spacing: 0.03em; line-height: 1; }
.collab-role { font-size: 12px; color: var(--neon); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 6px; }
.collab-intro { max-width: 640px; font-size: 16px; color: var(--white-dim); line-height: 1.8; }

/* ===== SERVICES (Iron Man panel) ===== */
/* ===== SERVICES (tarjetas: título -> hover/tap revela ítems) ===== */
.services { border-top: 1px solid var(--gray-border); background: var(--gray-dark); overflow: visible; }
.svc-hint { margin-top: 16px; font-size: 13px; color: var(--white-dim); letter-spacing: 0.02em; }
.svc-grid { margin-top: 46px; display: grid; grid-template-columns: 1fr; gap: 16px; }
.svc-card { position: relative; background: linear-gradient(135deg, rgba(20,24,20,0.9), rgba(10,12,10,0.95)); border: 1px solid rgba(202,255,0,0.22); border-radius: 14px; padding: 26px 22px; cursor: pointer; outline: none; transition: transform 0.4s cubic-bezier(.2,.8,.2,1), box-shadow 0.4s, border-color 0.3s; transform-origin: center top; }
.svc-card:focus-visible { border-color: var(--neon); }
.svc-card::before { content: ''; position: absolute; inset: 0; border-radius: 14px; background-image: linear-gradient(rgba(202,255,0,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(202,255,0,0.05) 1px, transparent 1px); background-size: 22px 22px; pointer-events: none; opacity: 0.6; }
.svc-card__head { position: relative; padding-right: 34px; }
.svc-card__num { font-family: var(--font-display); font-size: 16px; color: var(--neon-dim); letter-spacing: 0.1em; }
.svc-card__title { font-family: var(--font-display); font-size: clamp(22px, 1.7vw, 28px); letter-spacing: 0.03em; line-height: 1.04; margin-top: 6px; color: var(--white); }
.svc-card__cue { position: absolute; top: 0; right: 0; width: 28px; height: 28px; border: 1px solid var(--gray-border); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--neon); font-size: 18px; line-height: 1; transition: transform 0.3s, border-color 0.3s, background 0.3s; }
/* base (mobile-first): ítems ocultos, acordeón en flujo */
.svc-card__items { position: relative; max-height: 0; overflow: hidden; opacity: 0; display: grid; grid-template-columns: 1fr; gap: 12px; margin-top: 0; transition: max-height 0.45s ease, opacity 0.35s ease, margin-top 0.35s ease; }

/* ===== MÓVIL / TÁCTIL: acordeón por tap ===== */
@media (max-width: 900px) {
  .svc-card.open .svc-card__items { max-height: 520px; opacity: 1; margin-top: 22px; }
  .svc-card.open .svc-card__cue { transform: rotate(45deg); border-color: var(--neon); background: rgba(202,255,0,0.1); }
}

/* ===== ESCRITORIO: 5 tarjetas, hover/foco = zoom + pull-out superpuesto ===== */
@media (min-width: 901px) {
  .services { padding-bottom: 180px; }
  .svc-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; align-items: start; }
  .svc-card { min-height: 150px; }
  .svc-card__items .panel-item { font-size: 13.5px; align-items: flex-start; }
  .svc-card__items .panel-item .pi-dot { margin-top: 6px; }
  .svc-card__items {
    position: absolute; top: 100%; left: 50%;
    transform: translateX(-50%) translateY(-12px);
    width: 380px; max-width: 92vw; max-height: none; overflow: visible; opacity: 0; pointer-events: none;
    margin-top: 0; padding: 22px 22px;
    background: linear-gradient(135deg, rgba(22,26,22,0.98), rgba(10,12,10,0.99));
    border: 1px solid var(--neon); border-top: none; border-radius: 0 0 14px 14px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
    grid-template-columns: 1fr 1fr; gap: 10px 18px;
    transition: opacity 0.35s ease, transform 0.4s cubic-bezier(.2,.8,.2,1);
    z-index: 5;
  }
  .svc-card:hover, .svc-card:focus-within, .svc-card.open {
    transform: scale(1.06) translateY(-6px); border-color: var(--neon);
    box-shadow: 0 26px 60px rgba(0,0,0,0.55), 0 0 50px rgba(202,255,0,0.12); z-index: 30;
  }
  .svc-card:hover .svc-card__items, .svc-card:focus-within .svc-card__items, .svc-card.open .svc-card__items {
    opacity: 1; transform: translateX(-50%) translateY(0); pointer-events: auto;
  }
  .svc-card:hover .svc-card__cue, .svc-card:focus-within .svc-card__cue, .svc-card.open .svc-card__cue {
    transform: rotate(45deg); border-color: var(--neon); background: rgba(202,255,0,0.1);
  }
}

/* ===== TEAM ===== */
.team { border-top: 1px solid var(--gray-border); }
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 50px; max-width: 880px; }
.member { border: 1px solid var(--gray-border); border-radius: 8px; overflow: hidden; background: var(--gray-dark); transition: border-color 0.3s; }
.member:hover { border-color: var(--neon); }
.member-photo { aspect-ratio: 4/5; overflow: hidden; }
.member-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; transition: transform 0.6s; }
.member:hover .member-photo img { transform: scale(1.04); }
.member-body { padding: 24px 26px; }
.member-name { font-family: var(--font-display); font-size: 30px; letter-spacing: 0.04em; }
.member-role { font-size: 12px; color: var(--neon); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 4px; margin-bottom: 14px; }
.member-bio { font-size: 13px; color: var(--white-dim); line-height: 1.65; margin-bottom: 18px; }
.member-bio.placeholder { font-style: italic; opacity: 0.6; }
.member-contact { display: flex; gap: 10px; }
.member-contact a { width: 38px; height: 38px; border: 1px solid var(--gray-border); border-radius: 6px; display: flex; align-items: center; justify-content: center; color: var(--white-dim); text-decoration: none; transition: all 0.2s; font-size: 15px; }
.member-contact a:hover { border-color: var(--neon); color: var(--neon); }

/* ===== CONTACT ===== */
.contact { border-top: 1px solid var(--gray-border); background: var(--gray-dark); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; margin-top: 44px; }
.contact-info p { font-size: 15px; color: var(--white-dim); line-height: 1.8; margin-bottom: 32px; }
.contact-detail { display: flex; flex-direction: column; gap: 14px; }
.contact-item { display: flex; align-items: center; gap: 14px; font-size: 14px; color: var(--white-dim); text-decoration: none; transition: color 0.2s; }
.contact-item:hover { color: var(--neon); }
.contact-item .ci-ic { width: 38px; height: 38px; border: 1px solid var(--gray-border); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white-dim); }
.form-input, .form-select, .form-textarea { background: var(--black); border: 1px solid var(--gray-border); border-radius: 6px; padding: 12px 16px; color: var(--white); font-family: var(--font-body); font-size: 14px; transition: border-color 0.2s; outline: none; width: 100%; }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--neon); }
.form-select option { background: var(--gray-dark); }
.form-textarea { resize: vertical; min-height: 110px; }
#otherWrap { display: none; }
.btn-primary { display: inline-block; padding: 14px 32px; background: var(--neon); color: var(--black); font-family: var(--font-body); font-size: 13px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none; border-radius: 4px; border: 1px solid var(--neon); cursor: pointer; transition: all 0.2s; text-align: center; }
.btn-primary:hover { background: transparent; color: var(--neon); }
.form-status { display: none; text-align: center; padding: 10px; border-radius: 4px; font-size: 13px; margin-top: 6px; }

/* ===== FOOTER ===== */
footer { border-top: 1px solid var(--gray-border); padding: 50px 8vw 40px; }
.footer-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 30px; flex-wrap: wrap; padding-bottom: 36px; border-bottom: 1px solid var(--gray-border); }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand img { height: 46px; }
.footer-brand span { font-family: var(--font-display); font-size: 30px; letter-spacing: 0.12em; color: var(--neon); }
.footer-quote { font-family: var(--font-display); font-size: clamp(20px, 2.6vw, 30px); letter-spacing: 0.03em; color: var(--white); max-width: 16ch; line-height: 1.1; }
.footer-quote .neon { color: var(--neon); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 24px; }
.footer-tag { font-size: 11px; color: var(--white-dim); letter-spacing: 0.1em; text-transform: uppercase; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 38px; height: 38px; border: 1px solid var(--gray-border); border-radius: 6px; display: flex; align-items: center; justify-content: center; color: var(--white-dim); text-decoration: none; transition: all 0.2s; font-size: 14px; }
.footer-social a:hover { border-color: var(--neon); color: var(--neon); }

/* ===== ANIMATIONS ===== */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  nav { padding: 14px 22px; }
  nav.scrolled { padding: 10px 22px; }
  .nav-links { display: none; }
  .nav-links.open { display: flex; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; background: rgba(10,10,10,0.97); padding: 20px 22px; gap: 18px; border-bottom: 1px solid var(--gray-border); }
  .nav-toggle { display: block; }
  .section-pad { padding: 80px 24px; }
  .about-wrap { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { max-width: 380px; }
  .collab-grid { grid-template-columns: 1fr; gap: 14px; }
  .collab-card { aspect-ratio: 16/10; }
  .team-grid { grid-template-columns: 1fr; max-width: 420px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .vinyl-row { gap: 50px; }
  /* Sin hover en táctil: el disco arranca oculto y se desliza al entrar en pantalla */
  .vinyl-disc { transform: translateX(0) rotate(0deg); }
  .vinyl.visible .vinyl-disc { transform: translateX(43%) rotate(6deg); }
  .footer-top { flex-direction: column; }
}

/* Fix: vinyl links should not inherit blue link color */
.vinyl, .vinyl:visited { color: var(--white); }
.vinyl .vinyl-name { color: var(--white); }

/* About slideshow - 4 photos rotating with crossfade */
.about-visual .about-slide { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 1s ease; }
.about-visual .about-slide.active { opacity: 1; }

/* ===== COLLAB CARD — clickable project ===== */
.collab-card.has-project { cursor: pointer; }
.collab-card.has-project:focus-visible { outline: 2px solid var(--neon); outline-offset: 3px; }
.collab-view { display: inline-flex; align-items: center; gap: 7px; margin-top: 10px; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--neon); opacity: 0; transform: translateY(6px); transition: opacity 0.3s, transform 0.3s; }
.collab-card.has-project:hover .collab-view,
.collab-card.has-project:focus-visible .collab-view { opacity: 1; transform: translateY(0); }

/* ===== PROJECT MODAL ===== */
.proj-modal { position: fixed; inset: 0; z-index: 1000; display: none; align-items: center; justify-content: center; padding: 24px; }
.proj-modal.open { display: flex; }
.proj-modal__backdrop { position: absolute; inset: 0; background: rgba(5,5,5,0.82); backdrop-filter: blur(8px); animation: projFade 0.3s ease; }
@keyframes projFade { from { opacity: 0; } to { opacity: 1; } }
.proj-modal__close { position: absolute; top: 20px; right: 24px; z-index: 3; width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--gray-border); background: rgba(10,10,10,0.7); backdrop-filter: blur(8px); color: var(--white); font-size: 24px; line-height: 1; cursor: pointer; transition: all 0.2s; }
.proj-modal__close:hover { border-color: var(--neon); color: var(--neon); transform: rotate(90deg); }
.proj-modal__dialog { position: relative; z-index: 2; width: 100%; max-width: 760px; max-height: 90vh; overflow-y: auto; background: linear-gradient(135deg, rgba(20,24,20,0.96), rgba(10,12,10,0.98)); border: 1px solid rgba(202,255,0,0.25); border-radius: 14px; box-shadow: 0 0 60px rgba(202,255,0,0.08), inset 0 0 40px rgba(202,255,0,0.03); animation: projIn 0.35s cubic-bezier(.2,.8,.2,1); }
@keyframes projIn { from { opacity: 0; transform: translateY(20px) scale(0.98); } to { opacity: 1; transform: none; } }
.proj-modal__body { padding: 48px 48px 44px; }
.proj-detail__eyebrow { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--neon); margin-bottom: 10px; }
.proj-detail__title { font-family: var(--font-display); font-size: clamp(40px, 7vw, 72px); line-height: 0.9; letter-spacing: 0.03em; }
.proj-detail__meta { font-size: 13px; color: var(--white-dim); letter-spacing: 0.04em; margin-top: 12px; margin-bottom: 28px; }
.proj-detail__video { margin-bottom: 28px; }
.proj-detail .video-embed { aspect-ratio: 16/9; border-radius: 8px; overflow: hidden; border: 1px solid var(--gray-border); }
.proj-detail .video-embed iframe { width: 100%; height: 100%; border: 0; display: block; }
.proj-detail__text p { font-size: 15px; line-height: 1.85; color: var(--white-dim); }
.proj-detail__text p strong { color: var(--white); font-weight: 500; }
.proj-detail__gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 28px; }
.proj-detail__gallery img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 6px; border: 1px solid var(--gray-border); }
.proj-detail__gallery img:only-child { grid-column: 1 / -1; aspect-ratio: 16/9; }
.proj-detail__links { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.proj-link { display: inline-flex; align-items: center; gap: 9px; padding: 13px 26px; border-radius: 6px; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; text-decoration: none; border: 1px solid var(--gray-border); color: var(--white); transition: all 0.2s; }
.proj-link:hover { border-color: var(--neon); color: var(--neon); transform: translateY(-2px); }
@media (max-width: 900px) {
  .proj-modal { padding: 0; }
  .proj-modal__dialog { max-width: 100%; max-height: 100vh; height: 100vh; border-radius: 0; border: none; }
  .proj-modal__body { padding: 70px 22px 40px; }
  .proj-detail__gallery { grid-template-columns: 1fr 1fr; }
}

/* ===== PROJECT MODAL — multi-work (varios proyectos por artista) ===== */
.proj-detail__intro p { font-size: 15px; line-height: 1.85; color: var(--white-dim); }
.proj-works { margin-top: 6px; }
.proj-work { padding-top: 34px; margin-top: 34px; border-top: 1px solid var(--gray-border); }
.proj-work__title { font-family: var(--font-display); font-size: clamp(28px, 4.5vw, 46px); line-height: 0.95; letter-spacing: 0.03em; }
.proj-work__meta { font-size: 12px; letter-spacing: 0.06em; color: var(--neon); text-transform: uppercase; margin-top: 8px; margin-bottom: 20px; }
.proj-work__video { margin-bottom: 20px; }
.proj-work__text p { font-size: 14.5px; line-height: 1.8; color: var(--white-dim); }
.proj-work__text p strong { color: var(--white); font-weight: 500; }
.proj-work__links { display: flex; gap: 12px; margin-top: 20px; flex-wrap: wrap; }

/* Íconos de marca (SVG) en links sociales */
.ico { width: 18px; height: 18px; display: block; }
