/* ============================================================
   PRISMA — web pública
   Monocromo. Exo 2 alojada en el servidor. Ver private/docs (diseño §5).
   ============================================================ */

/* ---- Fuentes: ver fonts.css ---- */

/* ---- Tokens ---- */
:root {
  --ink: #fff;
  --dim: rgba(255, 255, 255, .72);     /* texto secundario (AA sobre negro) */
  --mute: rgba(255, 255, 255, .62);    /* etiquetas y metadatos (AA) */
  --faint: rgba(255, 255, 255, .2);    /* solo decorativo, nunca información */
  --line: rgba(255, 255, 255, .14);
  --ease: cubic-bezier(.16, 1, .3, 1);
  --gut: clamp(16px, 4vw, 56px);
  --maxw: 1440px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { background: #000; color: var(--ink); font-family: 'Exo 2', system-ui, sans-serif; -webkit-font-smoothing: antialiased; text-size-adjust: 100%; }
body { background: #000; overflow-x: hidden; min-height: 100vh; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }
::selection { background: #fff; color: #000; }
:focus-visible { outline: 1px solid #fff; outline-offset: 4px; }
[hidden] { display: none !important; }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ---- Textura: grano y viñeta ---- */
.grain { position: fixed; inset: -100%; width: 300%; height: 300%; z-index: 60; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.78' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 220px 220px; opacity: .05; animation: gm .4s steps(1) infinite; }
@keyframes gm { 0% { transform: translate(0, 0) } 25% { transform: translate(-4%, 3%) } 50% { transform: translate(3%, -4%) } 75% { transform: translate(-2%, 5%) } }
.vig { position: fixed; inset: 0; z-index: 1; pointer-events: none; background: radial-gradient(ellipse 75% 75% at center, transparent 35%, rgba(0, 0, 0, .8) 100%); }

/* ---- Cursor (solo con ratón) ---- */
.cur, .cur-ring { display: none; }
@media (hover: hover) and (pointer: fine) {
  body.has-cur, body.has-cur a, body.has-cur button { cursor: none; }
  .cur { display: block; position: fixed; width: 5px; height: 5px; background: #fff; border-radius: 50%; pointer-events: none; z-index: 99; transform: translate(-50%, -50%); mix-blend-mode: difference; left: -99px; top: -99px; }
  .cur-ring { display: block; position: fixed; width: 34px; height: 34px; border: 1px solid rgba(255, 255, 255, .25); border-radius: 50%; pointer-events: none; z-index: 98; transform: translate(-50%, -50%); left: -99px; top: -99px; transition: width .4s var(--ease), height .4s var(--ease), border-color .4s; }
  .cur-ring.big { width: 110px; height: 110px; border-color: rgba(255, 255, 255, .1); }
}

/* ---- Navegación ---- */
.nav { position: sticky; top: 0; z-index: 40; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: clamp(16px, 3vh, 26px) var(--gut); background: linear-gradient(#000 40%, rgba(0, 0, 0, 0)); }
body.home .nav { position: fixed; left: 0; right: 0; background: none; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand svg { width: 26px; height: auto; flex: none; }
.wm { display: inline-flex; gap: .32em; font-weight: 600; letter-spacing: 0; }
.wm span { display: inline-block; }
.wm .m { transform: scaleX(-1); }
.brand .wm { font-size: 13px; }
.links { display: flex; gap: clamp(18px, 2.4vw, 40px); align-items: center; }
.links a { color: var(--mute); font-size: 11px; letter-spacing: .32em; text-transform: uppercase; transition: color .4s; padding: 6px .32em 6px 0; }
.links a:hover, .links a[aria-current] { color: #fff; }
.pill { color: #fff; border: 1px solid rgba(255, 255, 255, .35); padding: 10px 16px 10px 20px; border-radius: 999px; font-size: 11px; letter-spacing: .32em; text-transform: uppercase; transition: background .4s, color .4s; white-space: nowrap; }
.pill:hover { background: #fff; color: #000; }
.links a.pill { padding: 10px 16px 10px 20px; color: #fff; }
.links a.pill:hover { color: #000; }
.lang { display: flex; gap: 2px; font-size: 10px; letter-spacing: .2em; }
.lang button { background: none; border: 0; color: var(--mute); padding: 8px 6px; cursor: pointer; letter-spacing: .2em; }
.lang button.on { color: #fff; }
.burger { display: none; background: none; border: 0; width: 44px; height: 44px; position: relative; cursor: pointer; }
.burger i { position: absolute; left: 11px; right: 11px; height: 1px; background: #fff; transition: transform .5s var(--ease), top .5s var(--ease); }
.burger i:nth-child(1) { top: 18px; } .burger i:nth-child(2) { top: 26px; }
body.menu-on .burger i:nth-child(1) { top: 22px; transform: rotate(45deg); }
body.menu-on .burger i:nth-child(2) { top: 22px; transform: rotate(-45deg); }
.menu { position: fixed; inset: 0; z-index: 35; background: #000; display: flex; flex-direction: column; justify-content: center; padding: 0 var(--gut); gap: 6px;
  opacity: 0; visibility: hidden; transition: opacity .5s var(--ease), visibility .5s; }
.menu a { font-weight: 200; font-size: 44px; letter-spacing: -.02em; padding: 6px 0; }
.menu .lang { margin-top: 30px; font-size: 12px; }
body.menu-on { overflow: hidden; }
body.menu-on .menu { opacity: 1; visibility: visible; }
@media (max-width: 860px) {
  .links a:not(.pill), .nav > .lang { display: none; }
  .links { margin-left: auto; }
  .burger { display: block; }
}

/* ---- Estructura ---- */
main { position: relative; z-index: 10; }
.wrap { padding: 0 var(--gut); max-width: var(--maxw); margin: 0 auto; }
.kicker { font-size: 10px; letter-spacing: .5em; text-transform: uppercase; color: var(--mute); display: flex; align-items: center; gap: 14px; }
.kicker::before { content: ''; width: 36px; height: 1px; background: var(--line); flex: none; }
.kicker.c { justify-content: center; }
.note { font-size: 12px; color: var(--mute); letter-spacing: .06em; line-height: 1.6; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 1.2s var(--ease), transform 1.2s var(--ease); }
.in .reveal, .reveal.in { opacity: 1; transform: none; }
.in .reveal:nth-child(2) { transition-delay: .12s; } .in .reveal:nth-child(3) { transition-delay: .24s; } .in .reveal:nth-child(4) { transition-delay: .36s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } .grain { animation: none; } }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; background: #fff; color: #000; border: 0; font: 400 11px 'Exo 2', sans-serif; letter-spacing: .3em; text-transform: uppercase;
  padding: 15px 22px 15px 26px; border-radius: 999px; transition: transform .4s var(--ease), background .4s, color .4s; cursor: pointer; min-height: 48px; }
.btn:hover { transform: translateY(-2px); }
.btn.ghost { background: none; color: #fff; border: 1px solid rgba(255, 255, 255, .35); }
.btn.ghost:hover { background: #fff; color: #000; }
.btn[aria-disabled="true"] { opacity: .45; pointer-events: none; }

.page-head { padding: clamp(40px, 10vh, 120px) 0 clamp(28px, 5vh, 56px); }
.page-head h1 { font-weight: 200; font-size: clamp(56px, 11vw, 168px); line-height: .85; letter-spacing: -.03em; margin-top: 18px; }
.page-head .lead { margin-top: 26px; max-width: 640px; font-weight: 300; font-size: clamp(17px, 1.6vw, 22px); line-height: 1.55; color: var(--dim); }

/* ---- Footer ---- */
.foot { position: relative; z-index: 10; margin-top: 120px; padding: 48px var(--gut) 40px; border-top: 1px solid var(--line); display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; font-size: 13px; color: var(--dim); line-height: 1.8; }
.foot h4 { font-weight: 400; font-size: 10px; letter-spacing: .4em; text-transform: uppercase; color: var(--mute); margin-bottom: 12px; }
.foot a:hover { color: #fff; }
.foot .legal { grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: 8px 22px; font-size: 11px; letter-spacing: .12em; color: var(--mute); padding-top: 24px; border-top: 1px solid var(--line); }
@media (max-width: 760px) { .foot { grid-template-columns: 1fr; } }

/* ============================================================
   PORTADA
   ============================================================ */
body.home { background: #000; }
#arena { position: fixed; inset: 0; width: 100vw; height: 100vh; z-index: 0; display: block; }
.arena-fallback { position: fixed; left: 50%; top: 43%; transform: translate(-50%, -50%); width: min(60vw, 520px); z-index: 0; opacity: 0; }
.no-canvas .arena-fallback { opacity: 1; }
.ch { position: relative; z-index: 2; min-height: 100vh; display: flex; padding: 0 var(--gut); }
.hero { align-items: flex-end; justify-content: center; padding-bottom: clamp(40px, 9vh, 110px); text-align: center; }
.hero .wm { font-size: clamp(26px, 4.4vw, 64px); gap: clamp(10px, 1.6vw, 24px); }
.tag { margin-top: clamp(14px, 2.4vh, 26px); font-weight: 300; font-size: clamp(12px, 1.5vw, 20px); letter-spacing: .3em; text-transform: uppercase; padding-left: .3em; }
.sub { margin-top: 12px; font-weight: 300; font-size: 10px; letter-spacing: .5em; color: var(--mute); text-transform: uppercase; padding-left: .5em; }
.ch.side { align-items: center; }
.ch.side.r { justify-content: flex-end; }
.card-txt { max-width: 440px; }
.card-txt h2 { margin-top: 22px; font-weight: 200; font-size: clamp(30px, 4.2vw, 60px); line-height: 1.02; letter-spacing: -.01em; }
.card-txt p { margin-top: 20px; font-weight: 300; font-size: 16px; line-height: 1.7; color: var(--dim); }
.last { align-items: flex-end; justify-content: center; padding-bottom: 14vh; text-align: center; }
.last .inner { width: 100%; max-width: 760px; }
.notify { margin: 26px auto 0; display: flex; border-bottom: 1px solid rgba(255, 255, 255, .45); max-width: 380px; }
.notify input { flex: 1; background: none; border: 0; color: #fff; font: 300 15px 'Exo 2', sans-serif; padding: 14px 0; outline: none; min-width: 0; }
.notify input::placeholder { color: var(--mute); }
.notify button { background: none; border: 0; color: #fff; font: 400 11px 'Exo 2', sans-serif; letter-spacing: .3em; text-transform: uppercase; cursor: pointer; padding: 0 0 0 12px; min-height: 44px; }
.form-msg { margin-top: 14px; font-size: 13px; color: var(--dim); min-height: 1.4em; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.mini-agenda { margin-top: 36px; display: grid; gap: 0; text-align: left; }
.mini-agenda a { display: grid; grid-template-columns: 110px 1fr auto; gap: 16px; padding: 18px 0; border-top: 1px solid var(--line); align-items: baseline; }
.mini-agenda .d { font-size: 11px; letter-spacing: .3em; text-transform: uppercase; color: var(--mute); }
.mini-agenda .t { font-weight: 300; font-size: 20px; }
.mini-agenda .c { font-size: 10px; letter-spacing: .36em; text-transform: uppercase; color: var(--mute); }
.hud { position: fixed; bottom: clamp(16px, 3vh, 30px); left: var(--gut); right: var(--gut); z-index: 20; display: flex; justify-content: space-between; align-items: center; pointer-events: none; }
.hud > * { pointer-events: auto; }
.loc { font-size: 10px; letter-spacing: .4em; color: var(--mute); text-transform: uppercase; }
.snd { background: none; border: 0; color: var(--mute); font: 400 10px 'Exo 2', sans-serif; letter-spacing: .4em; text-transform: uppercase; display: flex; align-items: center; gap: 10px; cursor: pointer; min-height: 44px; }
.snd i { display: flex; gap: 2px; align-items: flex-end; height: 12px; }
.snd i b { width: 2px; background: currentColor; height: 3px; }
.snd.on { color: #fff; }
.snd.on i b { animation: eq .9s ease-in-out infinite; }
.snd.on i b:nth-child(2) { animation-delay: .2s } .snd.on i b:nth-child(3) { animation-delay: .4s } .snd.on i b:nth-child(4) { animation-delay: .1s }
@keyframes eq { 0%, 100% { height: 3px } 50% { height: 12px } }
.prog { position: fixed; right: var(--gut); top: 50%; transform: translateY(-50%); z-index: 20; display: flex; flex-direction: column; gap: 10px; }
.prog b { width: 1px; height: 18px; background: var(--faint); transition: background .6s, height .6s var(--ease); }
.prog b.on { background: #fff; height: 34px; }
body.home .foot { background: #000; }
@media (max-width: 760px) {
  .hero { padding-bottom: 110px; }
  .sub { letter-spacing: .28em; padding-left: .28em; line-height: 1.9; }
  .prog { display: none; }
  .ch.side { align-items: flex-end; padding-bottom: 16vh; }
  .card-txt h2 { font-size: 34px; }
  .loc { display: none; }
  .mini-agenda a { grid-template-columns: 1fr auto; }
  .mini-agenda .c { display: none; }
}

/* ============================================================
   AGENDA · EVENTO · ARTISTAS
   ============================================================ */
.filters { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 28px; }
.filters button { background: none; border: 1px solid var(--line); color: var(--dim); font: 400 11px 'Exo 2', sans-serif; letter-spacing: .24em; text-transform: uppercase; padding: 10px 16px; border-radius: 999px; cursor: pointer; transition: all .4s var(--ease); min-height: 40px; }
.filters button:hover { border-color: rgba(255, 255, 255, .45); color: #fff; }
.filters button.on { background: #fff; color: #000; border-color: #fff; }

.cover { position: relative; overflow: hidden; background: #000; }
.cover canvas, .cover img { position: absolute; inset: 0; width: 100%; height: 100%; display: block; object-fit: cover; }
.cover .ph { position: absolute; left: 18px; bottom: 16px; right: 18px; font-weight: 600; font-size: 12px; letter-spacing: .3em; text-transform: uppercase; color: #fff; mix-blend-mode: difference; }

.feat { display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(24px, 4vw, 64px); border-top: 1px solid var(--line); padding-top: 28px; }
.feat .cover { aspect-ratio: 5 / 4; border: 1px solid var(--line); }
.feat .info { display: flex; flex-direction: column; justify-content: space-between; gap: 28px; padding: 6px 0; }
.date-big { font-weight: 200; font-size: clamp(64px, 9vw, 132px); line-height: .8; letter-spacing: -.04em; }
.date-big small { display: block; font-size: 12px; font-weight: 400; letter-spacing: .4em; color: var(--mute); margin-top: 18px; text-transform: uppercase; }
.feat h2 { font-weight: 300; font-size: clamp(28px, 3.4vw, 48px); line-height: 1.05; margin-top: 14px; }
.lineup-txt { margin-top: 14px; color: var(--dim); font-weight: 300; font-size: 16px; line-height: 1.7; }
.row-cta { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.tagline { font-size: 10px; letter-spacing: .4em; text-transform: uppercase; color: var(--mute); }

.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 28px); margin-top: clamp(48px, 8vh, 96px); }
.grid.g4 { grid-template-columns: repeat(4, 1fr); margin-top: 32px; }
.card { display: block; }
.card .cover { aspect-ratio: 4 / 5; border: 1px solid var(--line); transition: border-color .5s; }
.card:hover .cover { border-color: rgba(255, 255, 255, .4); }
.grid.g4 .card .cover { aspect-ratio: 1; }
.grid.g4 .card h3 { font-size: 19px; }
.card .meta { display: flex; justify-content: space-between; gap: 10px; margin-top: 16px; font-size: 10px; letter-spacing: .36em; text-transform: uppercase; color: var(--mute); }
.card h3 { margin-top: 10px; font-weight: 300; font-size: 22px; }
.card p { margin-top: 6px; color: var(--dim); font-size: 14px; font-weight: 300; }

.section { margin-top: clamp(80px, 14vh, 160px); }
.section > h2 { font-weight: 200; font-size: clamp(36px, 5vw, 72px); letter-spacing: -.02em; margin: 18px 0 30px; }
.arow { display: grid; grid-template-columns: 90px 110px 1fr auto; gap: 18px; align-items: baseline; padding: 20px 0; border-top: 1px solid var(--line); transition: padding .5s var(--ease); }
a.arow:hover { padding-left: 12px; }
.arow .y { color: var(--mute); font-size: 12px; letter-spacing: .2em; }
.arow .d { font-size: 12px; letter-spacing: .24em; text-transform: uppercase; color: var(--dim); }
.arow .t { font-weight: 300; font-size: clamp(18px, 2vw, 26px); }
.arow .c { font-size: 10px; letter-spacing: .36em; text-transform: uppercase; color: var(--mute); }
.empty { padding: 40px 0; border-top: 1px solid var(--line); }
.empty h3 { font-weight: 200; font-size: clamp(28px, 3.4vw, 44px); }
.empty p { margin-top: 12px; color: var(--dim); font-weight: 300; }

.ev-hero { position: relative; height: min(78vh, 760px); border-bottom: 1px solid var(--line); margin-top: -90px; }
.ev-hero .cover { position: absolute; inset: 0; }
.ev-hero .shade { position: absolute; inset: 0; background: linear-gradient(transparent 45%, rgba(0, 0, 0, .92)); }
.ev-hero .ttl { position: absolute; left: var(--gut); right: var(--gut); bottom: clamp(24px, 6vh, 64px); }
.ev-hero h1 { font-weight: 200; font-size: clamp(48px, 9vw, 150px); line-height: .88; letter-spacing: -.03em; margin-top: 18px; overflow-wrap: anywhere; }
.back { display: inline-block; font-size: 11px; letter-spacing: .3em; text-transform: uppercase; color: var(--dim); padding: 10px 0; }
.ev-body { display: grid; grid-template-columns: 1fr 380px; gap: clamp(32px, 6vw, 96px); padding-top: clamp(40px, 8vh, 80px); }
.lead { font-weight: 300; font-size: clamp(18px, 1.8vw, 24px); line-height: 1.55; color: rgba(255, 255, 255, .88); max-width: 680px; }
.prose { max-width: 700px; }
.lead, .prose p { white-space: pre-line; } /* respeta los párrafos escritos en el panel */
.prose p, .prose li { font-weight: 300; font-size: 17px; line-height: 1.75; color: var(--dim); }
.prose p + p, .prose ul { margin-top: 1.1em; }
.prose h2 { font-weight: 300; font-size: 26px; margin: 2em 0 .6em; color: #fff; }
.prose ul { padding-left: 1.2em; }
.prose a { text-decoration: underline; text-underline-offset: 3px; }
.lu { margin-top: 56px; }
.lu-row { display: flex; justify-content: space-between; align-items: baseline; padding: 22px 0; border-top: 1px solid var(--line); gap: 16px; }
.lu-row .n { font-weight: 300; font-size: clamp(24px, 3vw, 40px); letter-spacing: -.01em; transition: padding .5s var(--ease); }
a.lu-row:hover .n { padding-left: 10px; }
.lu-row .r { font-size: 10px; letter-spacing: .36em; text-transform: uppercase; color: var(--mute); white-space: nowrap; }
.box { position: sticky; top: 100px; border: 1px solid var(--line); padding: 28px; align-self: start; background: rgba(0, 0, 0, .6); }
.box dl { display: grid; grid-template-columns: auto 1fr; gap: 14px 18px; font-size: 14px; font-weight: 300; }
.box dt { color: var(--mute); font-size: 10px; letter-spacing: .36em; text-transform: uppercase; padding-top: 3px; }
.tiers { margin: 26px 0; border-top: 1px solid var(--line); }
.tier { display: flex; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid var(--line); font-weight: 300; }
.tier.off { color: var(--mute); text-decoration: line-through; }
.tier b { font-weight: 400; }
.box .btn { width: 100%; }
.duo { margin-top: 90px; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; border-top: 1px solid var(--line); padding-top: 40px; }
.duo h3 { font-weight: 300; font-size: 28px; margin-top: 16px; }
.duo p { color: var(--dim); font-weight: 300; line-height: 1.7; margin-top: 14px; }
.links-ext { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
@media (max-width: 900px) {
  .feat, .ev-body, .duo { grid-template-columns: 1fr; }
  .grid, .grid.g4 { grid-template-columns: 1fr 1fr; }
  .box { position: static; }
}
@media (max-width: 560px) {
  .grid, .grid.g4 { grid-template-columns: 1fr; }
  .grid.g4.keep2 { grid-template-columns: 1fr 1fr; }
  .arow { grid-template-columns: 56px 1fr; gap: 4px 14px; }
  .arow .d { grid-column: 2; } .arow .t { grid-column: 1 / -1; } .arow .c { grid-column: 1 / -1; }
  .ev-hero { margin-top: -80px; }
}

/* ============================================================
   CLUB · MONEDERO · CONTACTO · GALERÍA
   ============================================================ */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); margin-top: 60px; }
.stats div { padding: 28px 0; }
.stats b { display: block; font-weight: 200; font-size: clamp(48px, 7vw, 100px); line-height: .9; letter-spacing: -.03em; }
.stats span { display: block; margin-top: 12px; font-size: 10px; letter-spacing: .4em; text-transform: uppercase; color: var(--mute); }
.timeline { margin-top: 30px; }
.timeline div { display: grid; grid-template-columns: 140px 1fr; gap: 20px; padding: 22px 0; border-top: 1px solid var(--line); }
.timeline b { font-weight: 300; font-size: 22px; }
.timeline p { color: var(--dim); font-weight: 300; line-height: 1.7; }
#seda-wrap { position: relative; height: 82vh; min-height: 480px; margin-top: 60px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; }
#seda { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
#seda-wrap .over { position: absolute; left: var(--gut); bottom: clamp(24px, 6vh, 60px); right: var(--gut); max-width: 560px; }
#seda-wrap .over h2 { font-weight: 200; font-size: clamp(34px, 5vw, 72px); line-height: 1; margin-top: 16px; }
#seda-wrap .over p { margin-top: 16px; color: var(--dim); font-weight: 300; line-height: 1.7; }
.seda-fallback { position: absolute; inset: 0; background: url(/img/logo-arena.png) center 40% / min(70%, 640px) no-repeat, #000; opacity: .5; display: none; }
#seda-wrap.no-gl .seda-fallback { display: block; }
#seda-wrap.no-gl #seda { display: none; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 50px; border-top: 1px solid var(--line); }
.steps div { padding: 28px 24px 28px 0; }
.steps b { display: block; font-weight: 200; font-size: 56px; line-height: 1; }
.steps h3 { font-weight: 400; font-size: 16px; margin-top: 18px; }
.steps p { margin-top: 10px; color: var(--dim); font-weight: 300; line-height: 1.6; font-size: 15px; }
.faq details { border-top: 1px solid var(--line); padding: 20px 0; }
.faq summary { cursor: pointer; font-weight: 300; font-size: 19px; list-style: none; display: flex; justify-content: space-between; gap: 16px; }
.faq summary::after { content: '+'; color: var(--mute); }
.faq details[open] summary::after { content: '−'; }
.faq details p { margin-top: 12px; color: var(--dim); font-weight: 300; line-height: 1.7; max-width: 720px; }
.cform { display: grid; gap: 18px; max-width: 640px; }
.cform label { display: block; font-size: 10px; letter-spacing: .4em; text-transform: uppercase; color: var(--mute); margin-bottom: 8px; }
.cform input, .cform textarea, .cform select { width: 100%; background: none; border: 0; border-bottom: 1px solid rgba(255, 255, 255, .35); color: #fff; font: 300 16px 'Exo 2', sans-serif; padding: 12px 0; outline: none; border-radius: 0; }
.cform select option { background: #000; }
.cform textarea { min-height: 150px; resize: vertical; }
.cform input:focus, .cform textarea:focus { border-bottom-color: #fff; }
.gal { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 30px; }
.gal figure { aspect-ratio: 1; overflow: hidden; background: #0b0b0b; }
.gal img, .gal video { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr 1fr; } .gal { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) {
  .stats { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .timeline div { grid-template-columns: 1fr; gap: 6px; }
}
