/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --bg:        #14100c;
  --bg-2:      #1b1611;
  --bg-3:      #251e17;
  --cream:     #f2e9d8;
  --cream-2:   #ddcdae;
  --cream-3:   #9c8b71;
  --accent:    #c68a3f;   /* madera / ámbar */
  --accent-2:  #e0a95e;
  --wine:      #7a3b2e;   /* acento cálido secundario, cuero */
  --line:      rgba(242,233,216,.12);

  --serif: "Fraunces", "Georgia", serif;
  --sans:  "Inter", -apple-system, sans-serif;

  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { -webkit-text-size-adjust: 100%; tab-size: 2; scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  background: var(--bg);
  color: var(--cream-2);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.08; letter-spacing: -0.01em; font-family: var(--serif); font-weight: 500; color: var(--cream); }
em { font-style: italic; color: var(--accent-2); }
::selection { background: var(--accent); color: var(--bg); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .6rem 1rem; background: var(--cream); color: var(--bg);
  z-index: 9999; border-radius: 8px; font-weight: 500;
}
.skip-link:focus { top: 1rem; }

/* =============================================================
   3. Utilities
   ============================================================= */
.container { max-width: clamp(1180px, 70vw, 1600px); margin: 0 auto; padding: 0 1.5rem; }
.hide-mobile { display: none; }
@media (min-width: 720px) { .hide-mobile { display: inline; } }

.kicker {
  font-size: .8rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent-2); font-weight: 500; margin-bottom: .8rem;
}
.section-sub { color: var(--cream-3); max-width: 46ch; margin-top: 1rem; font-size: 1.05rem; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: none; }

/* =============================================================
   4. Typography scale
   ============================================================= */
h2 { font-size: clamp(1.7rem, 3.8vw, 2.5rem); }
h3 { font-size: 1.3rem; }

/* =============================================================
   5. Components
   ============================================================= */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .95rem 1.8rem; border-radius: 999px; font-weight: 500; font-size: .95rem;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), background .35s var(--ease-out);
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--wine));
  color: var(--bg-2);
  box-shadow: 0 8px 24px rgba(198,138,63,.25);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(198,138,63,.38); }
.btn-ghost {
  border: 1px solid var(--line); color: var(--cream-2);
}
.btn-ghost:hover { background: rgba(242,233,216,.06); transform: translateY(-3px); }

/* Nav */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 1.5rem;
  background: transparent;
  transition: background .4s var(--ease-out), padding .4s var(--ease-out), backdrop-filter .4s var(--ease-out);
}
.nav.is-scrolled {
  background: rgba(20,16,12,.82);
  backdrop-filter: blur(14px) saturate(1.2);
  padding: .75rem 1.5rem;
  border-bottom: 1px solid var(--line);
}
.nav-brand { font-family: var(--serif); font-size: 1.25rem; color: var(--cream); font-style: italic; }
.nav-links { display: none; gap: 2rem; font-size: .92rem; }
.nav-links a { color: var(--cream-2); transition: color .25s; position: relative; }
.nav-links a:hover { color: var(--accent-2); }
.nav-cta { display: none; }
.nav-cta { padding: .8rem 1.5rem; font-size: .88rem; }
.nav-toggle {
  display: flex; flex-direction: column; justify-content: center; gap: 5px; width: 26px; height: 26px; padding: 0;
}
.nav-toggle span { display: block; width: 100%; height: 2px; background: var(--cream); transition: transform .3s var(--ease-out), opacity .3s var(--ease-out); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 960px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-toggle { display: none; }
}

@media (max-width: 959px) {
  .nav-links.is-open {
    display: flex; flex-direction: column; gap: 0;
    position: fixed; top: 0; left: 0; right: 0; padding: 5.5rem 1.5rem 1.5rem;
    background: rgba(20,16,12,.98); backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line); z-index: 450;
    animation: navDrop .35s var(--ease-out);
    max-height: 100vh; max-height: 100svh; overflow-y: auto; -webkit-overflow-scrolling: touch;
  }
  .nav-links.is-open a { padding: .85rem 0; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .nav-links.is-open a:last-child { border-bottom: none; }
}
@keyframes navDrop { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }

/* Cursor (desktop only) */
.cursor { position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9998; opacity: 0; transition: opacity .25s var(--ease-out); }
.cursor.is-ready { opacity: 1; }
.cursor-dot, .cursor-ring { position: fixed; top: 0; left: 0; border-radius: 50%; transform: translate3d(-50%,-50%,0); }
.cursor-dot { width: 6px; height: 6px; background: var(--accent-2); }
.cursor-ring { width: 34px; height: 34px; border: 1px solid var(--accent-2); transition: width .2s, height .2s, border-color .2s; }
@media (hover: none), (pointer: coarse) { .cursor { display: none; } }

/* Splash */
.splash {
  position: fixed; inset: 0; z-index: 9999; background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  animation: splashHide 1.6s var(--ease-out) forwards;
  animation-delay: .3s;
}
.splash-glyph { font-family: var(--serif); font-style: italic; font-size: 3rem; color: var(--accent); animation: splashPulse 1.1s var(--ease-soft) infinite; }
@keyframes splashPulse { 0%,100% { opacity: .4; transform: scale(.9); } 50% { opacity: 1; transform: scale(1.05); } }
@keyframes splashHide { to { opacity: 0; visibility: hidden; pointer-events: none; } }

.hero-grain {
  position: fixed; inset: 0; z-index: 1; pointer-events: none; opacity: .05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* =============================================================
   6. Sections
   ============================================================= */

/* HERO */
.hero { position: relative; min-height: 80svh; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 18%; filter: saturate(1.08) contrast(1.05); }
.hero-bg-tint { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,16,12,.55) 0%, rgba(20,16,12,.55) 40%, rgba(20,16,12,.96) 100%); }
.hero-mesh {
  position: absolute; inset: 0; z-index: -1; opacity: .5; pointer-events: none;
  background: radial-gradient(circle at 20% 20%, rgba(198,138,63,.35), transparent 45%),
              radial-gradient(circle at 80% 30%, rgba(122,59,46,.3), transparent 50%);
  animation: meshFloat 14s ease-in-out infinite alternate;
}
@keyframes meshFloat { from { transform: translate(0,0) scale(1); } to { transform: translate(-3%, 3%) scale(1.08); } }

.hero-inner { position: relative; z-index: 2; padding: 8rem 1.5rem 5rem; max-width: 780px; margin: 0 auto; width: 100%; text-align: center; }
.hero-meta { display: inline-flex; align-items: center; gap: .55rem; font-size: .82rem; color: var(--cream-3); margin-bottom: 1.4rem; letter-spacing: .03em; }
.hero-meta .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent-2); box-shadow: 0 0 10px var(--accent-2); }
.hero-glyph { display: block; font-family: var(--serif); font-style: italic; font-size: 1.6rem; color: var(--accent); margin-bottom: .6rem; }
.hero-title { font-size: clamp(3.6rem, 12.5vw, 7.4rem); margin-bottom: 1.2rem; display: flex; justify-content: center; }
.hero-logo {
  width: clamp(200px, 28vw, 350px); height: auto; display: block;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,.5));
}
.hero-title-text {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.hero-sub { color: var(--cream-2); font-size: clamp(1.1rem, 2.2vw, 1.3rem); max-width: 54ch; margin: 0 auto 2.2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1.1rem; justify-content: center; }

.hero-marquee { position: absolute; left: 0; right: 0; bottom: 0; width: 100%; z-index: 2; border-top: 1px solid var(--line); overflow: hidden; padding: 1rem 0; background: rgba(20,16,12,.5); }
.marquee-track { display: flex; width: max-content; white-space: nowrap; animation: marquee 28s linear infinite; }
.marquee-track span { font-family: var(--serif); font-style: italic; font-size: 1rem; color: var(--cream-3); padding-right: 0; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes marqueeReverse { from { transform: translateX(-50%); } to { transform: translateX(0); } }
.marquee-track-reverse { animation-name: marqueeReverse; }

.venues-marquee { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; padding: 1.1rem 0; margin-top: 3.5rem; background: var(--bg-3); }
.venues-marquee .marquee-track { animation-duration: 32s; }
.venues-marquee span { font-family: var(--sans); font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; color: var(--cream-3); }

/* TIPOS DE EVENTO */
.stats { padding: 3rem 0; background: var(--bg); border-bottom: 1px solid var(--line); }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; text-align: center; }
.stats-item { display: flex; flex-direction: column; gap: .3rem; }
.stats-num { font-family: var(--serif); font-style: italic; font-size: clamp(1.9rem, 4vw, 2.6rem); color: var(--accent); line-height: 1; }
.stats-label { font-size: .82rem; color: var(--cream-3); letter-spacing: .02em; }
@media (max-width: 560px) { .stats-num { font-size: 1.9rem; } .stats-label { font-size: .72rem; } }

.eventos { padding: 5.5rem 0; background: var(--bg-2); border-bottom: 1px solid var(--line); }
.eventos-cta { display: flex; flex-direction: column; align-items: center; gap: 1rem; margin-top: 3rem; text-align: center; }
.eventos-cta p { color: var(--cream-3); font-size: .95rem; }
.eventos-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .9rem; margin-top: 3rem; }
@media (min-width: 720px) { .eventos-grid { gap: 1.2rem; } }
@media (min-width: 1024px) { .eventos-grid { grid-template-columns: repeat(4, 1fr); } }
.evento-card {
  position: relative; overflow: hidden; display: block; text-decoration: none; cursor: pointer;
  background: var(--bg-3); border: 1px solid var(--line); border-radius: 14px; padding: 1rem .9rem;
  transition: transform .35s var(--ease-out), border-color .35s var(--ease-out);
  background-size: cover; background-position: center;
}
.evento-card::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(180deg, rgba(20,16,12,.55) 0%, rgba(20,16,12,.88) 75%, rgba(20,16,12,.96) 100%);
}
.evento-card > * { position: relative; z-index: 1; }
.evento-card:hover { transform: translateY(-5px); border-color: rgba(198,138,63,.35); }
.evento-icon {
  width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--accent), var(--wine)); margin-bottom: .7rem;
}
.evento-icon svg { width: 16px; height: 16px; fill: none; stroke: var(--bg); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.evento-card h3 { font-size: .92rem; margin-bottom: .3rem; line-height: 1.2; }
.evento-card p { color: var(--cream-2); font-size: .76rem; line-height: 1.4; }
.evento-card-hint {
  display: inline-flex; align-items: center; gap: .4rem; margin-top: .7rem;
  font-size: .72rem; color: var(--accent-2); font-weight: 500;
  opacity: 0; transform: translateX(-4px); transition: opacity .35s var(--ease-out), transform .35s var(--ease-out);
}
.evento-card:hover .evento-card-hint { opacity: 1; transform: translateX(0); }
@media (hover: none) {
  .evento-card-hint { opacity: 1; transform: translateX(0); }
}
@media (min-width: 720px) {
  .evento-card { padding: 1.6rem 1.4rem; }
  .evento-icon { width: 46px; height: 46px; margin-bottom: 1rem; }
  .evento-icon svg { width: 22px; height: 22px; }
  .evento-card h3 { font-size: 1.1rem; margin-bottom: .4rem; }
  .evento-card p { font-size: .9rem; }
  .evento-card-hint { font-size: .82rem; margin-top: .9rem; }
}

/* BIO */
.bio { padding: 7rem 0 5rem; background: var(--bg); }
.bio-grid { display: grid; gap: 2rem; align-items: center; }
.bio-content h2 { margin-bottom: 1.6rem; }
.bio-text { margin-bottom: 1.1rem; max-width: 62ch; color: var(--cream-2); }
.bio-photo {
  border-radius: 14px; overflow: hidden; border: 1px solid var(--line);
  aspect-ratio: 4/4.5;
}
.bio-photo img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.05) brightness(.94); }

@media (min-width: 720px) {
  .bio-grid { grid-template-columns: 1fr; }
  .bio-photo { grid-column: 1; grid-row: 2; margin-left: auto; max-width: 340px; }
}
@media (min-width: 980px) {
  .bio-grid { grid-template-columns: 1.15fr .85fr; }
  .bio-photo { grid-column: 2; grid-row: 1; margin-left: 0; max-width: none; }
}

/* TRAYECTORIA */
.trayectoria { padding: 6rem 0 0; background: var(--bg-2); border-top: 1px solid var(--line); }
.trayectoria-title { max-width: 16ch; }
.trayectoria-grid { display: grid; gap: 2rem; margin-top: 3.5rem; padding-bottom: 4rem; align-items: start; }
.timeline-big { margin-top: 0; padding-bottom: 0; }
.trayectoria-photo { border-radius: 14px; overflow: hidden; border: 1px solid var(--line); aspect-ratio: 4/3; }
.trayectoria-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; }
@media (min-width: 900px) {
  .trayectoria-grid { grid-template-columns: 1.3fr .95fr; gap: 3rem; align-items: center; }
}
.timeline-big .timeline-item { padding-left: 1.6rem; }
.timeline-big .timeline-year { font-size: 1.4rem; }
.timeline-big .timeline-item p { font-size: 1.05rem; }
.timeline { margin-top: 3rem; display: grid; gap: 1.5rem; }
@media (min-width: 720px) { .timeline { grid-template-columns: repeat(2, 1fr); gap: 2rem 3rem; } }
.timeline-item { padding-left: 1.4rem; border-left: 2px solid var(--accent); }
.timeline-year { display: block; font-family: var(--serif); font-style: italic; color: var(--accent-2); font-size: 1.1rem; margin-bottom: .4rem; }
.timeline-item p { color: var(--cream-2); }
.timeline-item strong { color: var(--cream); font-weight: 600; }

/* ESCENARIOS */
.escenarios { background: var(--bg); }
.escenarios-media {
  position: relative; width: 100%; aspect-ratio: 16/11; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  background-size: cover; background-position: center;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.escenarios-media::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(180deg, rgba(20,16,12,.55) 0%, rgba(20,16,12,.72) 100%);
}
.escenarios-caption { position: relative; padding: 2.5rem 1.5rem; text-align: center; z-index: 1; }
.escenarios-caption h2 { max-width: 20ch; margin: .3rem auto 0; font-size: clamp(2.1rem, 5vw, 3.4rem); }
@media (min-width: 720px) { .escenarios-media { aspect-ratio: 21/8; } }

/* GALERÍA */
.galeria { padding: 5.5rem 0; background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.galeria-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .6rem; margin-top: 3rem; max-width: 1180px; margin-left: auto; margin-right: auto; }
@media (min-width: 720px) { .galeria-grid { gap: .9rem; } }
.galeria-item {
  position: relative; display: block; aspect-ratio: 16/9;
  border-radius: 12px; overflow: hidden; border: 1px solid var(--line);
}
.galeria-item img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; display: block; }
.galeria-item img[src*="daniel-dramatic"] { object-position: center 32%; }
.galeria-item img[src*="beno-clean"] { object-position: center 35%; }
.galeria-item img[src*="nora-new"] { object-position: center 10%; }
.galeria-item img[src*="beno-dynamic"] { object-position: center 0%; }
.galeria-item img[src*="duo-live"] { object-position: center 32%; }
.galeria-item img[src*="nora-live"] { object-position: center 5%; }
.galeria-item img[src*="beno-smile"] { object-position: center 17%; }
.galeria-item img[src*="daniel-lit"] { object-position: center 8%; }
.galeria-item img[src*="sign-detail"] { object-position: center 55%; }
.galeria-cta { display: flex; justify-content: center; margin-top: 2.4rem; }

/* TESTIMONIOS */
.testimonios { padding: 6.5rem 0; background: var(--bg); }
.testimonios-grid { display: grid; grid-template-columns: 1fr; gap: 1.3rem; margin-top: 3rem; }
@media (min-width: 720px) { .testimonios-grid { grid-template-columns: repeat(3, 1fr); } }
.testimonio-card {
  background: var(--bg-3); border: 1px solid var(--line); border-top: 3px solid var(--accent);
  border-radius: 12px; padding: 1.6rem 1.4rem;
}
.testimonio-card p { font-family: var(--serif); font-style: italic; color: var(--cream-2); font-size: 1.05rem; margin-bottom: 1rem; }
.testimonio-stars { display: flex; gap: .25rem; margin-bottom: .9rem; }
.testimonio-stars svg { width: 15px; height: 15px; fill: var(--accent); }
.testimonio-card cite { font-family: var(--sans); font-style: normal; font-size: .8rem; color: var(--accent-2); letter-spacing: .03em; }

/* COLABORACIONES */
.colaboraciones { padding: 6.5rem 0; background: var(--bg); }

.fractal-feature {
  margin-top: 3rem; display: grid; gap: 0; grid-template-columns: 1fr;
  background: linear-gradient(160deg, var(--bg-3), var(--bg-2));
  border: 1px solid rgba(198,138,63,.4); border-radius: 20px; overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,.35);
}
.fractal-collage { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; }
.fractal-collage-item { aspect-ratio: 1/1; overflow: hidden; }
.fractal-collage-item img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; transition: transform .5s var(--ease-out); }
.fractal-collage-item:hover img { transform: scale(1.06); }
.fractal-feature-content { padding: 2rem 1.6rem 2.2rem; }
.fractal-badge {
  display: inline-flex; align-items: center; gap: .4rem; padding: .4rem 1rem; border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--wine)); color: var(--bg);
  font-size: .76rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
  margin-bottom: .9rem;
}
.fractal-feature-content h3 { font-family: var(--serif); font-size: 1.9rem; color: var(--cream); margin-bottom: .35rem; }
.fractal-feature-tagline { color: var(--accent-2); font-style: italic; font-family: var(--serif); font-size: 1.05rem; margin-bottom: 1.3rem; }
.fractal-members { display: grid; grid-template-columns: 1fr; gap: .8rem; margin-bottom: 1.4rem; }
.fractal-members li { list-style: none; padding-left: 1rem; border-left: 2px solid var(--accent); display: flex; flex-direction: column; gap: .1rem; }
.fractal-role { font-size: .76rem; color: var(--cream-3); text-transform: uppercase; letter-spacing: .03em; }
.fractal-members strong { color: var(--cream); font-family: var(--serif); font-size: 1.1rem; font-weight: 500; }

.collab-subheading { margin-top: 4rem; font-family: var(--sans); font-size: .85rem; color: var(--cream-3); text-transform: uppercase; letter-spacing: .05em; text-align: center; }

@media (min-width: 860px) {
  .fractal-feature { grid-template-columns: 1.1fr 1fr; }
  .fractal-collage { width: 100%; height: 400px; aspect-ratio: unset; align-self: start; }
  .fractal-collage-item { aspect-ratio: auto; }
  .fractal-feature-content { padding: 2.8rem 2.6rem; display: flex; flex-direction: column; justify-content: flex-start; }
  .fractal-members { grid-template-columns: repeat(2, 1fr); }
}
.collab-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .8rem; margin-top: 3rem; }
@media (min-width: 720px) { .collab-grid { gap: 1.4rem; } }
@media (min-width: 1024px) { .collab-grid { grid-template-columns: repeat(3, 1fr); } }

.collab-card {
  background: var(--bg-3); border: 1px solid var(--line); border-radius: 16px; overflow: hidden;
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out), border-color .45s var(--ease-out);
}
.collab-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,.35); border-color: rgba(198,138,63,.35); }
.collab-photo { width: 100%; aspect-ratio: 4/3; overflow: hidden; }
.collab-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease-out); }
.collab-photo img[src*="falaz"] { object-position: center 20%; }
.collab-photo img[src*="crossroads"] { object-position: center 12%; }
.collab-card:hover .collab-photo img { transform: scale(1.06); }
.collab-badge {
  width: 54px; height: 54px; margin: 1.3rem 0 0 1.3rem; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--accent), var(--wine));
}
.collab-badge span { font-family: var(--serif); font-style: italic; font-size: 1.5rem; color: var(--bg); }
.collab-card h3 { padding: .7rem .8rem 0; font-size: .95rem; }
.collab-card p { padding: .4rem .8rem 1rem; color: var(--cream-3); font-size: .78rem; line-height: 1.4; }
@media (min-width: 720px) {
  .collab-card h3 { padding: 1rem 1.3rem 0; font-size: 1.15rem; }
  .collab-card p { padding: .6rem 1.3rem 1.4rem; font-size: .93rem; }
}

/* CONTACTO */
.contacto { position: relative; padding: 7rem 0 6rem; overflow: hidden; }
.contacto-bg {
  position: absolute; inset: 0; z-index: -2;
  background-size: cover; background-position: center;
}
.contacto-bg::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(198,138,63,.10), transparent 45%),
    linear-gradient(180deg, rgba(20,16,12,.88) 0%, rgba(20,16,12,.94) 100%);
}
.contacto-bg::after {
  content: ""; position: absolute; inset: 0; opacity: .06; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.contacto-inner { text-align: center; }
.contacto h2 { margin-top: .3rem; }
.contacto .section-sub { margin-left: auto; margin-right: auto; }

.contact-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-top: 3rem; max-width: 640px; margin-left: auto; margin-right: auto; }
@media (min-width: 620px) { .contact-grid { grid-template-columns: repeat(2, 1fr); } }
.contact-grid-3 { max-width: 1050px; }
@media (min-width: 1040px) { .contact-grid-3 { grid-template-columns: repeat(3, 1fr); } }

.contact-card {
  display: flex; align-items: center; justify-content: center; gap: 1rem; padding: 1.1rem 1.3rem;
  background: rgba(37,30,23,.7); border: 1px solid var(--line); border-radius: 14px;
  transition: transform .35s var(--ease-out), border-color .35s var(--ease-out), background .35s var(--ease-out);
  text-align: left; min-width: 0;
}
.contact-card:hover { transform: translateY(-4px); border-color: var(--accent); background: rgba(198,138,63,.1); }
.contact-card-primary { border-color: rgba(198,138,63,.45); background: rgba(198,138,63,.08); }
.contact-icon {
  width: 42px; height: 42px; flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: linear-gradient(135deg, var(--accent), var(--wine)); color: var(--bg);
  font-size: 1.1rem; font-weight: 600;
}
.contact-label { display: block; font-size: .78rem; color: var(--cream-3); text-transform: uppercase; letter-spacing: .06em; }
.contact-value { display: block; font-weight: 500; color: var(--cream); margin-top: .1rem; white-space: nowrap; }
.contact-card > span:not(.contact-icon) { display: flex; flex-direction: column; min-width: 0; }

/* Footer */
.footer { padding: 2.2rem 0; border-top: 1px solid var(--line); background: var(--bg); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; font-size: .85rem; color: var(--cream-3); }
.footer-glyph { font-family: var(--serif); font-style: italic; color: var(--accent); }

/* =============================================================
   7. Reduced motion — only truly intrusive
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .hero-mesh { animation: none; }
  .marquee-track { animation-duration: 60s; }
  .splash { animation-duration: .4s; }
  .splash-glyph { animation: none; }
}

/* =============================================================
   8. Responsive extras
   ============================================================= */
@media (min-width: 1280px) {
  .hero-inner { padding-top: 9rem; }
}

@media (max-width: 719px) {
  .stats { padding: 2rem 0; }
  .eventos { padding: 3.2rem 0; }
  .eventos-grid { margin-top: 2rem; }
  .bio { padding: 3.8rem 0 3rem; }
  .trayectoria { padding: 3.2rem 0 0; }
  .galeria { padding: 3.2rem 0; }
  .galeria-grid { margin-top: 2rem; }
  .galeria-cta { margin-top: 1.8rem; }
  .testimonios { padding: 3.5rem 0; }
  .testimonios-grid { margin-top: 2rem; }
  .colaboraciones { padding: 3.5rem 0; }
  .collab-grid { margin-top: 2rem; }
  .fractal-feature { margin-top: 2rem; }
  .fractal-feature-content { padding: 1.6rem 1.3rem 1.8rem; }
  .fractal-feature-content h3 { font-size: 1.6rem; }
  .collab-subheading { margin-top: 2.6rem; }
  .contacto { padding: 3.8rem 0 3.2rem; }
  .contact-grid { margin-top: 2rem; }
  .footer { padding: 1.6rem 0; }
  .venues-marquee { margin-top: 2rem; }
  .section-sub { font-size: .92rem; }
}

/* =============================================================
   9. WhatsApp flotante
   ============================================================= */
.whatsapp-float {
  position: fixed; right: 1.4rem; bottom: 1.4rem; z-index: 500;
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #25d366, #128c4a);
  color: #fff; box-shadow: 0 10px 26px rgba(0,0,0,.4);
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
.whatsapp-float:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 14px 32px rgba(0,0,0,.5); }
@media (max-width: 480px) {
  .whatsapp-float { width: 50px; height: 50px; right: 1rem; bottom: 1rem; }
}
