:root {
  --black: #0b0b0b;
  --black-2: #111111;
  --graphite: #2b2b2b;
  --steel: #9fa4a8;
  --silver: #bfc3c7;
  --concrete: #d7d7d4;
  --bone: #f1efe9;
  --white: #faf9f5;
  --line-dark: rgba(241, 239, 233, .18);
  --line-light: rgba(11, 11, 11, .18);
  --max: 1440px;
  --gutter: clamp(22px, 5vw, 80px);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--black); }
body {
  margin: 0;
  color: var(--bone);
  background: var(--black);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
::selection { background: var(--silver); color: var(--black); }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; left: 20px; top: 14px; z-index: 1000; transform: translateY(-160%);
  padding: 10px 16px; background: var(--bone); color: var(--black); border-radius: 999px;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--gutter);
  border-bottom: 1px solid transparent;
  transition: background .35s ease, border-color .35s ease, backdrop-filter .35s ease;
}
.site-header.is-scrolled {
  background: rgba(11,11,11,.82); border-color: var(--line-dark); backdrop-filter: blur(18px);
}
.brand { display: flex; align-items: center; gap: 12px; letter-spacing: .18em; font-size: .8rem; font-weight: 650; }
.brand img { width: 36px; height: 36px; object-fit: contain; }
.main-nav { display: flex; align-items: center; gap: clamp(16px, 2vw, 34px); font-size: .78rem; letter-spacing: .08em; }
.main-nav a { opacity: .76; transition: opacity .2s ease; }
.main-nav a:hover, .main-nav a:focus-visible { opacity: 1; }
.nav-cta { border: 1px solid var(--silver); padding: 9px 14px; border-radius: 999px; }
.menu-toggle { display: none; background: none; border: 0; color: var(--bone); width: 44px; height: 44px; padding: 10px; }
.menu-toggle span:not(.sr-only) { display: block; width: 100%; height: 1px; background: currentColor; margin: 7px 0; }

.section, .hero, .contact { position: relative; overflow: hidden; }
.section { padding: clamp(104px, 12vw, 180px) var(--gutter); }
.section-dark { background: var(--black); color: var(--bone); }
.section-light { background: var(--bone); color: var(--black); }
.section-concrete { background: var(--concrete); color: var(--black); }
.section > *, .hero > *, .contact > * { position: relative; z-index: 2; }

.section-label {
  display: flex; gap: 16px; align-items: center; position: absolute; top: 34px; left: var(--gutter);
  font-size: .68rem; letter-spacing: .2em; font-weight: 700; opacity: .62;
}
.section-label span:first-child { border: 1px solid currentColor; border-radius: 50%; width: 32px; height: 32px; display: grid; place-items: center; }
.eyebrow { margin: 0 0 20px; color: var(--silver); font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; font-weight: 700; }
.eyebrow.dark { color: #555b60; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.02; letter-spacing: -.04em; }
h2 { font-size: clamp(2.5rem, 5.6vw, 6.8rem); font-weight: 540; }
p { max-width: 72ch; }

.hero { min-height: 100svh; display: flex; align-items: center; padding: 130px var(--gutter) 72px; }
.hero-noise { position: absolute; inset: 0; opacity: .19; background-image: url('assets/material-texture.jpg'); background-size: 880px; mix-blend-mode: soft-light; filter: contrast(1.3); z-index: 0; }
.hero::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 75% 48%, rgba(191,195,199,.12), transparent 37%), linear-gradient(90deg, rgba(11,11,11,.98), rgba(11,11,11,.78) 56%, rgba(11,11,11,.88)); z-index: 1; }
.hero-grid { width: min(var(--max), 100%); margin: 0 auto; display: grid; grid-template-columns: minmax(0,1.08fr) minmax(360px,.92fr); align-items: center; gap: clamp(40px, 6vw, 110px); }
.hero-copy { max-width: 850px; }
.hero h1 { font-size: clamp(3.65rem, 8.3vw, 10.2rem); font-weight: 430; max-width: 10ch; margin-bottom: 34px; }
.hero h1 span { color: var(--silver); }
.hero-lead { font-size: clamp(1.04rem, 1.5vw, 1.35rem); max-width: 50ch; color: rgba(241,239,233,.72); }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 44px; flex-wrap: wrap; }
.button { display: inline-flex; justify-content: center; align-items: center; min-height: 48px; padding: 13px 20px; border-radius: 999px; font-size: .78rem; letter-spacing: .08em; font-weight: 700; transition: transform .3s var(--ease), background .3s ease, color .3s ease; }
.button:hover { transform: translateY(-2px); }
.button-light { background: var(--bone); color: var(--black); }
.button-dark { background: var(--black); color: var(--bone); border: 0; }
.button-outline { border: 1px solid currentColor; background: transparent; }
.text-link { font-size: .78rem; letter-spacing: .12em; opacity: .78; }
.text-link span { margin-left: 8px; }
.hero-symbol { min-height: 620px; display: grid; place-items: center; position: relative; }
.hero-mark { width: min(520px, 78vw); filter: drop-shadow(0 34px 60px rgba(0,0,0,.32)); animation: mark-breathe 7s ease-in-out infinite; }
.orbit { position: absolute; border: 1px solid rgba(191,195,199,.3); border-radius: 50%; }
.orbit-one { width: 560px; height: 560px; animation: orbit-spin 36s linear infinite; }
.orbit-two { width: 720px; height: 350px; transform: rotate(-18deg); border-color: rgba(191,195,199,.12); animation: orbit-spin-reverse 50s linear infinite; }
.presence { position: absolute; width: 8px; height: 8px; background: var(--silver); border-radius: 50%; box-shadow: 0 0 30px rgba(191,195,199,.9); }
.presence-one { top: 24%; right: 16%; animation: drift-a 6s ease-in-out infinite alternate; }
.presence-two { bottom: 22%; left: 12%; animation: drift-b 8s ease-in-out infinite alternate; }
.symbol-caption { position: absolute; right: 0; bottom: 5%; font-size: .68rem; letter-spacing: .14em; line-height: 1.7; color: rgba(241,239,233,.5); text-transform: uppercase; }
.hero-index { position: absolute; bottom: 26px; left: var(--gutter); display: flex; gap: 14px; font-size: .65rem; letter-spacing: .2em; opacity: .42; }

.about-grid { width: min(var(--max), 100%); margin: 0 auto; display: grid; grid-template-columns: 1fr .8fr; gap: clamp(50px, 8vw, 130px); align-items: center; }
.about-copy h2 { font-size: clamp(3rem, 5.2vw, 6.6rem); max-width: 11ch; }
.large-copy { font-size: clamp(1.2rem, 1.7vw, 1.55rem); line-height: 1.48; max-width: 49ch; }
.about-copy > p:not(.eyebrow):not(.large-copy) { color: rgba(11,11,11,.67); }
.micro-facts { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line-light); margin-top: 56px; border: 1px solid var(--line-light); }
.micro-facts div { background: var(--bone); padding: 24px 20px; }
.micro-facts strong { display: block; font-size: 1.45rem; font-weight: 520; }
.micro-facts span { display: block; color: rgba(11,11,11,.58); font-size: .72rem; margin-top: 4px; }
.editorial-frame { margin: 0; position: relative; border-radius: 46% 46% 12px 12px; overflow: hidden; background: var(--black); min-height: 680px; }
.editorial-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(11,11,11,.92)); }
.editorial-frame img { width: 100%; height: 100%; min-height: 680px; object-fit: cover; object-position: 70% center; filter: grayscale(1) contrast(1.08); transform: scale(1.24); }
.editorial-frame figcaption { position: absolute; z-index: 2; left: 28px; right: 28px; bottom: 28px; color: var(--bone); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; }

.principles::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 12% 20%, rgba(191,195,199,.08), transparent 28%); }
.principles-intro { width: min(var(--max), 100%); margin: 0 auto 80px; }
.principles-intro h2 { max-width: 12ch; }
.principle-grid { width: min(var(--max), 100%); margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.principle-card { min-height: 340px; padding: 28px; border-right: 1px solid var(--line-dark); position: relative; overflow: hidden; }
.principle-card:last-child { border-right: 0; }
.principle-card::before { content: ""; position: absolute; inset: auto 0 0 0; height: 0; background: var(--bone); transition: height .5s var(--ease); z-index: -1; }
.principle-card:hover, .principle-card:focus-within { color: var(--black); }
.principle-card:hover::before, .principle-card:focus-within::before { height: 100%; }
.card-number { font-size: .65rem; letter-spacing: .2em; opacity: .55; }
.principle-card h3 { margin-top: 120px; font-size: 1.65rem; font-weight: 520; }
.principle-card p { color: rgba(241,239,233,.64); font-size: .9rem; }
.principle-card:hover p { color: rgba(11,11,11,.66); }
.values-marquee { width: min(var(--max), 100%); margin: 64px auto 0; display: flex; gap: 42px; overflow: hidden; color: var(--silver); font-size: clamp(1.4rem, 3vw, 3.6rem); letter-spacing: -.02em; white-space: nowrap; opacity: .72; }
.values-marquee span::after { content: "·"; margin-left: 42px; }

.territories-layout { width: min(var(--max), 100%); margin: 0 auto; display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(42px, 8vw, 140px); align-items: center; }
.territories-copy h2 { font-size: clamp(2.8rem, 5vw, 6.2rem); max-width: 12ch; }
.territories-copy > p:not(.eyebrow) { color: rgba(11,11,11,.62); }
.territory-detail { margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--line-light); min-height: 160px; }
.territory-detail span { font-size: .68rem; letter-spacing: .2em; color: #656a6d; }
.territory-detail h3 { font-size: 1.6rem; margin: 12px 0; }
.territory-detail p { margin-bottom: 0; color: rgba(11,11,11,.66); }
.territory-orbit { position: relative; min-height: 760px; display: grid; place-items: center; }
.orbit-ring { position: absolute; border: 1px solid rgba(11,11,11,.16); border-radius: 50%; }
.ring-a { width: 540px; height: 540px; }
.ring-b { width: 700px; height: 410px; transform: rotate(18deg); }
.orbit-logo { width: 180px; }
.territory-node { position: absolute; width: 132px; min-height: 68px; border: 1px solid rgba(11,11,11,.25); background: rgba(241,239,233,.52); backdrop-filter: blur(10px); border-radius: 999px; padding: 10px; font-size: .68rem; line-height: 1.22; cursor: pointer; color: var(--black); transition: transform .35s var(--ease), background .25s ease, color .25s ease, border-color .25s ease; }
.territory-node:hover, .territory-node:focus-visible, .territory-node.is-active { background: var(--black); color: var(--bone); border-color: var(--black); transform: scale(1.06); outline: none; }
.node-1 { top: 4%; left: 43%; }
.node-2 { top: 20%; right: 2%; }
.node-3 { top: 58%; right: 3%; }
.node-4 { bottom: 4%; left: 44%; }
.node-5 { top: 58%; left: 1%; }
.node-6 { top: 20%; left: 0; }
.node-7 { top: 43%; left: 42%; transform: translateY(-50%); }
.node-7:hover, .node-7:focus-visible, .node-7.is-active { transform: translateY(-50%) scale(1.06); }

.programs-header { width: min(var(--max), 100%); margin: 0 auto 70px; display: grid; grid-template-columns: .4fr 1.6fr; gap: 40px; align-items: start; }
.programs-header h2 { font-size: clamp(2.8rem, 5.2vw, 6.6rem); max-width: 13ch; }
.program-grid { width: min(var(--max), 100%); margin: 0 auto; display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
.program-card { min-height: 520px; display: grid; grid-template-rows: 1fr auto; border: 1px solid var(--line-light); background: var(--white); overflow: hidden; transition: transform .45s var(--ease), box-shadow .45s var(--ease); }
.program-card:hover, .program-card:focus-visible { transform: translateY(-7px); box-shadow: 0 30px 70px rgba(11,11,11,.12); outline: none; }
.program-card.feature { grid-column: span 2; grid-template-columns: 1.1fr .9fr; grid-template-rows: 1fr; }
.program-visual { min-height: 260px; display: grid; place-items: center; overflow: hidden; background: var(--black); color: var(--bone); position: relative; }
.program-visual::before, .program-visual::after { content: ""; position: absolute; border: 1px solid rgba(241,239,233,.2); border-radius: 50%; }
.program-visual::before { width: 300px; height: 300px; }
.program-visual::after { width: 420px; height: 220px; transform: rotate(-20deg); }
.visual-entrar { min-height: 520px; grid-template-columns: 1fr; align-content: center; justify-items: start; padding-left: 10%; background: radial-gradient(circle at 75% 45%, rgba(191,195,199,.28), transparent 28%), var(--black); }
.visual-entrar span { position: relative; z-index: 2; font-size: clamp(3.2rem, 7vw, 8.2rem); line-height: .8; letter-spacing: -.065em; font-weight: 450; }
.visual-entrar span:last-child { color: var(--silver); margin-left: 10%; }
.visual-libertad span { font-size: 8rem; line-height: .7; color: var(--silver); }
.visual-libertad small { position: absolute; margin-top: 118px; letter-spacing: .28em; }
.visual-formacion span { font-size: 9rem; font-weight: 200; transform: rotate(-4deg); color: var(--silver); }
.visual-impacto { grid-template-columns: auto auto; gap: 24px; font-size: 8rem; color: var(--silver); }
.program-content { padding: 34px; }
.program-type { font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: #676b6e; }
.program-content h3 { font-size: clamp(2rem, 3.3vw, 4rem); font-weight: 520; margin: 12px 0 22px; }
.program-content > p:not(.program-type) { color: rgba(11,11,11,.64); max-width: 52ch; }
.program-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 30px; }
.program-meta span { border: 1px solid var(--line-light); padding: 6px 10px; border-radius: 999px; font-size: .65rem; letter-spacing: .06em; }

.trajectory::before { content: ""; position: absolute; inset: 0; background: linear-gradient(115deg, transparent 55%, rgba(191,195,199,.05)); }
.trajectory-grid { width: min(var(--max), 100%); margin: 0 auto; display: grid; grid-template-columns: 1fr .9fr; gap: clamp(50px, 8vw, 130px); }
.trajectory-copy h2 { font-size: clamp(2.8rem, 5vw, 6.3rem); max-width: 12ch; }
.trajectory-copy p { color: rgba(241,239,233,.65); }
.trajectory-copy .button { margin-top: 28px; }
.timeline { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--line-dark); }
.timeline li { display: grid; grid-template-columns: 100px 1fr; gap: 26px; padding: 28px 0; border-bottom: 1px solid var(--line-dark); }
.timeline > li > span { color: var(--silver); font-size: .72rem; letter-spacing: .14em; }
.timeline strong { font-weight: 520; font-size: 1.1rem; }
.timeline p { margin: 8px 0 0; color: rgba(241,239,233,.54); font-size: .88rem; }

.transparency-intro { width: min(1000px, 100%); margin: 0 auto 70px; }
.transparency-intro h2 { font-size: clamp(2.8rem, 5vw, 6.4rem); max-width: 12ch; }
.transparency-intro > p:not(.eyebrow) { font-size: 1.05rem; color: rgba(11,11,11,.64); }
.director-board { width: min(var(--max), 100%); margin: 0 auto 18px; display: grid; grid-template-columns: repeat(3,1fr); border: 1px solid var(--line-light); }
.director-board div { padding: 24px; border-right: 1px solid var(--line-light); }
.director-board div:last-child { border-right: 0; }
.director-board span { display: block; font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; color: #666b6e; margin-bottom: 8px; }
.director-board strong { font-weight: 520; }
.document-grid { width: min(var(--max), 100%); margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--line-light); border: 1px solid var(--line-light); }
.document-card { min-height: 300px; padding: 26px; background: var(--bone); display: flex; flex-direction: column; transition: background .35s ease, color .35s ease; }
.document-card:hover, .document-card:focus-visible { background: var(--black); color: var(--bone); outline: none; }
.doc-icon { align-self: flex-end; font-size: 1.4rem; }
.doc-date { margin-top: 58px; font-size: .66rem; letter-spacing: .14em; color: #6c7072; }
.document-card:hover .doc-date { color: var(--silver); }
.document-card h3 { font-size: 1.4rem; margin: 20px 0 10px; }
.document-card p { color: rgba(11,11,11,.58); font-size: .84rem; margin-bottom: 0; }
.document-card:hover p { color: rgba(241,239,233,.6); }

.contact { min-height: 88svh; padding: clamp(120px, 14vw, 210px) var(--gutter); display: grid; grid-template-columns: .3fr 1.05fr .65fr; gap: clamp(32px, 6vw, 100px); align-items: center; }
.contact::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 20% 50%, rgba(191,195,199,.1), transparent 25%); }
.contact-symbol img { width: min(280px, 22vw); opacity: .38; }
.contact-copy h2 { font-size: clamp(3.4rem, 6vw, 7.4rem); max-width: 10ch; }
.contact-copy > p:not(.eyebrow):not(.contact-note) { color: rgba(241,239,233,.66); font-size: 1.05rem; }
.contact-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 38px; }
.contact-note { margin-top: 18px; color: rgba(241,239,233,.38); font-size: .72rem; }
.contact-manifesto blockquote { margin: 0; padding-left: 28px; border-left: 1px solid var(--silver); font-size: clamp(1.5rem, 2.4vw, 3rem); line-height: 1.22; font-weight: 300; color: var(--silver); }

.site-footer { padding: 34px var(--gutter); background: var(--black); border-top: 1px solid var(--line-dark); display: grid; grid-template-columns: .7fr 1.5fr auto; gap: 34px; align-items: center; color: var(--bone); }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand img { width: 46px; }
.footer-brand strong { display: block; letter-spacing: .15em; font-size: .76rem; }
.footer-brand span { display: block; color: rgba(241,239,233,.45); font-size: .68rem; margin-top: 3px; }
.footer-legal p { margin: 2px 0; color: rgba(241,239,233,.42); font-size: .68rem; }
.back-top { font-size: .68rem; letter-spacing: .1em; }

.prototype-dialog { width: min(580px, calc(100% - 32px)); border: 0; border-radius: 18px; padding: 42px; color: var(--black); background: var(--bone); box-shadow: 0 30px 100px rgba(0,0,0,.5); }
.prototype-dialog::backdrop { background: rgba(0,0,0,.72); backdrop-filter: blur(8px); }
.prototype-dialog h2 { font-size: 2.2rem; }
.prototype-dialog p:not(.eyebrow) { color: rgba(11,11,11,.66); }
.dialog-close { position: absolute; top: 14px; right: 16px; border: 0; background: transparent; font-size: 1.8rem; cursor: pointer; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@keyframes mark-breathe { 0%,100%{transform:scale(1)} 50%{transform:scale(1.025)} }
@keyframes orbit-spin { to { transform: rotate(360deg); } }
@keyframes orbit-spin-reverse { from { transform: rotate(-18deg); } to { transform: rotate(-378deg); } }
@keyframes drift-a { to { transform: translate(-26px, 18px); } }
@keyframes drift-b { to { transform: translate(34px, -20px); } }

@media (max-width: 1050px) {
  .main-nav { position: fixed; inset: 73px 16px auto 16px; background: rgba(11,11,11,.96); border: 1px solid var(--line-dark); border-radius: 16px; padding: 22px; flex-direction: column; align-items: stretch; transform: translateY(-18px); opacity: 0; pointer-events: none; transition: .3s var(--ease); }
  .main-nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .menu-toggle { display: block; }
  .hero-grid, .about-grid, .territories-layout, .trajectory-grid { grid-template-columns: 1fr; }
  .hero-copy { padding-top: 32px; }
  .hero h1 { max-width: 11ch; }
  .hero-symbol { min-height: 520px; }
  .principle-grid { grid-template-columns: repeat(2,1fr); }
  .principle-card:nth-child(2) { border-right: 0; }
  .principle-card:nth-child(-n+2) { border-bottom: 1px solid var(--line-dark); }
  .programs-header { grid-template-columns: 1fr; }
  .document-grid { grid-template-columns: repeat(2,1fr); }
  .contact { grid-template-columns: 1fr; }
  .contact-symbol { display: none; }
  .contact-manifesto { max-width: 650px; }
}

@media (max-width: 720px) {
  :root { --gutter: 20px; }
  .site-header { padding: 14px var(--gutter); }
  .brand-word { font-size: .72rem; }
  .hero { min-height: auto; padding-top: 120px; }
  .hero-grid { gap: 20px; }
  .hero h1 { font-size: clamp(3rem, 15vw, 5.2rem); }
  .hero-symbol { min-height: 420px; }
  .hero-mark { width: 270px; }
  .orbit-one { width: 330px; height: 330px; }
  .orbit-two { width: 390px; height: 220px; }
  .symbol-caption { right: auto; left: 0; bottom: 0; }
  h2 { font-size: clamp(2.6rem, 12vw, 4.7rem); }
  .about-copy h2, .territories-copy h2, .programs-header h2, .trajectory-copy h2, .voices-intro h2, .transparency-intro h2 { font-size: clamp(2.7rem, 12vw, 4.7rem); }
  .micro-facts { grid-template-columns: 1fr; }
  .editorial-frame, .editorial-frame img { min-height: 500px; }
  .principle-grid { grid-template-columns: 1fr; }
  .principle-card { border-right: 0; border-bottom: 1px solid var(--line-dark); min-height: 270px; }
  .principle-card h3 { margin-top: 80px; }
  .territory-orbit { min-height: 650px; transform: scale(.86); margin: -40px -30px; }
  .ring-a { width: 430px; height: 430px; }
  .ring-b { width: 520px; height: 320px; }
  .territory-node { width: 112px; font-size: .61rem; }
  .program-grid { grid-template-columns: 1fr; }
  .program-card.feature { grid-column: auto; grid-template-columns: 1fr; grid-template-rows: auto auto; }
  .visual-entrar { min-height: 350px; }
  .director-board, .document-grid { grid-template-columns: 1fr; }
  .director-board div { border-right: 0; border-bottom: 1px solid var(--line-light); }
  .director-board div:last-child { border-bottom: 0; }
  .timeline li { grid-template-columns: 72px 1fr; }
  .contact { padding-top: 120px; }
  .contact-copy h2 { font-size: clamp(3rem, 14vw, 5rem); }
  .site-footer { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}


/* Voces de la experiencia ------------------------------------------------ */
.voices::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 82% 20%, rgba(191,195,199,.11), transparent 28%), linear-gradient(145deg, transparent 52%, rgba(191,195,199,.035)); }
.voices-layout { width: min(var(--max), 100%); margin: 0 auto; display: grid; grid-template-columns: minmax(300px,.72fr) minmax(0,1.28fr); gap: clamp(54px, 9vw, 150px); align-items: start; }
.voices-intro { position: sticky; top: 128px; }
.voices-intro h2 { max-width: 9.2ch; font-size: clamp(3rem, 5.4vw, 6.7rem); }
.voices-intro > p:not(.eyebrow):not(.voices-note) { color: rgba(241,239,233,.66); font-size: 1.03rem; }
.voices-intro .button { margin-top: 28px; }
.voices-note { margin-top: 18px; color: rgba(241,239,233,.4); font-size: .73rem; max-width: 54ch; }
.voices-stage { min-width: 0; }
.voices-rule { display: flex; align-items: center; gap: 12px; margin-bottom: 34px; }
.voices-rule span:first-child { width: 9px; height: 9px; border-radius: 50%; background: var(--silver); }
.voices-rule span:last-child { flex: 1; height: 1px; background: var(--line-dark); }
.voices-status { min-height: 430px; border: 1px solid var(--line-dark); display: grid; grid-template-columns: auto 1fr; gap: 28px; align-content: center; padding: clamp(32px, 6vw, 72px); background: rgba(255,255,255,.015); }
.voices-status-mark { font-size: clamp(3rem, 7vw, 7rem); line-height: .8; color: var(--silver); font-weight: 250; }
.voices-status strong { display: block; font-size: clamp(1.45rem, 2.4vw, 2.5rem); font-weight: 450; letter-spacing: -.035em; }
.voices-status p { margin: 12px 0 0; color: rgba(241,239,233,.48); }
.voices-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1px; background: var(--line-dark); border: 1px solid var(--line-dark); }
.voice-card { min-height: 370px; padding: clamp(28px, 4vw, 48px); background: var(--black); display: flex; flex-direction: column; position: relative; overflow: hidden; }
.voice-card::after { content: ""; position: absolute; width: 170px; height: 170px; border: 1px solid rgba(191,195,199,.1); border-radius: 50%; right: -70px; bottom: -80px; transition: transform .55s var(--ease); }
.voice-card:hover::after { transform: scale(1.22); }
.voice-quote-mark { color: var(--silver); font-family: Georgia, serif; font-size: 5rem; line-height: .7; opacity: .8; }
.voice-card blockquote { margin: 32px 0 48px; font-size: clamp(1.25rem, 1.9vw, 2rem); line-height: 1.32; font-weight: 300; letter-spacing: -.025em; }
.voice-card footer { margin-top: auto; padding-top: 24px; border-top: 1px solid var(--line-dark); }
.voice-card footer strong, .voice-card footer span { display: block; }
.voice-card footer strong { font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; }
.voice-card footer span { color: rgba(241,239,233,.43); font-size: .72rem; margin-top: 7px; }

.review-dialog { width: min(920px, calc(100% - 28px)); max-height: min(92svh, 980px); border: 1px solid rgba(11,11,11,.16); border-radius: 20px; padding: 0; color: var(--black); background: var(--bone); box-shadow: 0 34px 120px rgba(0,0,0,.62); overflow: auto; }
.review-dialog::backdrop { background: rgba(0,0,0,.79); backdrop-filter: blur(10px); }
.review-close { position: sticky; float: right; top: 14px; margin: 14px 14px 0 0; z-index: 3; width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line-light); background: rgba(241,239,233,.92); color: var(--black); font-size: 1.6rem; line-height: 1; cursor: pointer; }
.review-dialog-head { padding: clamp(42px, 7vw, 78px) clamp(24px, 7vw, 76px) 38px; border-bottom: 1px solid var(--line-light); }
.review-dialog-head h2 { font-size: clamp(2.7rem, 6vw, 5.8rem); max-width: 10ch; margin-bottom: 24px; }
.review-dialog-head > p:not(.eyebrow) { color: rgba(11,11,11,.62); font-size: 1rem; }
.review-form { padding: 38px clamp(24px, 7vw, 76px) clamp(48px, 7vw, 76px); }
.form-honeypot { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; white-space: nowrap !important; }
.form-choice { border: 0; padding: 0; margin: 0 0 34px; display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; }
.form-choice legend { width: 100%; font-size: .73rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; margin-bottom: 12px; }
.choice-card { position: relative; display: block; cursor: pointer; }
.choice-card input { position: absolute; opacity: 0; pointer-events: none; }
.choice-card span { min-height: 126px; display: block; padding: 20px; border: 1px solid var(--line-light); transition: background .25s ease, color .25s ease, border-color .25s ease; }
.choice-card strong, .choice-card small { display: block; }
.choice-card strong { font-size: .95rem; }
.choice-card small { color: rgba(11,11,11,.56); margin-top: 9px; line-height: 1.45; }
.choice-card input:checked + span { background: var(--black); color: var(--bone); border-color: var(--black); }
.choice-card input:checked + span small { color: rgba(241,239,233,.58); }
.choice-card input:focus-visible + span { outline: 3px solid var(--steel); outline-offset: 2px; }
.form-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 24px 18px; }
.field { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.field-wide { grid-column: 1 / -1; }
.field > span { font-size: .78rem; font-weight: 650; }
.field > small { color: rgba(11,11,11,.51); font-size: .72rem; margin-top: -3px; }
.field em { color: rgba(11,11,11,.45); font-weight: 400; font-style: normal; }
.field input, .field select, .field textarea { width: 100%; border: 0; border-bottom: 1px solid rgba(11,11,11,.35); border-radius: 0; padding: 13px 2px; background: transparent; color: var(--black); font: inherit; outline: none; }
.field textarea { border: 1px solid rgba(11,11,11,.25); padding: 16px; resize: vertical; min-height: 180px; }
.field input:focus, .field select:focus { border-bottom-color: var(--black); box-shadow: 0 1px 0 var(--black); }
.field textarea:focus { border-color: var(--black); box-shadow: 0 0 0 1px var(--black); }
.char-count { align-self: flex-end; color: rgba(11,11,11,.43); font-size: .68rem !important; font-weight: 400 !important; }
.consent-stack { display: grid; gap: 13px; margin-top: 38px; padding-top: 30px; border-top: 1px solid var(--line-light); }
.check-row { display: grid; grid-template-columns: 20px 1fr; gap: 12px; align-items: start; font-size: .77rem; color: rgba(11,11,11,.68); }
.check-row input { margin: 3px 0 0; width: 16px; height: 16px; accent-color: var(--black); }
.check-row a { text-decoration: underline; text-underline-offset: 3px; color: var(--black); }
.check-row em { font-style: normal; color: rgba(11,11,11,.48); }
.turnstile-slot { margin-top: 28px; min-height: 0; }
.form-submit-row { display: flex; align-items: center; gap: 20px; margin-top: 32px; flex-wrap: wrap; }
.form-submit-row .button:disabled { opacity: .55; cursor: wait; }
.form-status { margin: 0; max-width: 50ch; font-size: .76rem; color: rgba(11,11,11,.58); }
.form-status[data-state="success"] { color: #245f3b; }
.form-status[data-state="error"] { color: #8a2f2f; }

.privacy-page { background: var(--bone); color: var(--black); min-height: 100svh; }
.privacy-header { padding: 24px var(--gutter); border-bottom: 1px solid var(--line-light); display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.privacy-header .brand { color: var(--black); }
.privacy-header .brand img { filter: none; }
.privacy-main { width: min(900px, calc(100% - 40px)); margin: 0 auto; padding: clamp(70px, 10vw, 130px) 0; }
.privacy-main h1 { font-size: clamp(3rem, 8vw, 7rem); max-width: 10ch; }
.privacy-main h2 { font-size: clamp(1.7rem, 3vw, 2.8rem); margin-top: 54px; }
.privacy-main p, .privacy-main li { color: rgba(11,11,11,.68); }
.privacy-main a { text-decoration: underline; text-underline-offset: 3px; }
.privacy-meta { margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line-light); font-size: .74rem; }

@media (max-width: 1050px) {
  .voices-layout { grid-template-columns: 1fr; }
  .voices-intro { position: static; }
}

@media (max-width: 720px) {
  .voices-grid, .form-choice, .form-grid { grid-template-columns: 1fr; }
  .field-wide { grid-column: auto; }
  .voices-status { grid-template-columns: 1fr; min-height: 360px; }
  .voice-card { min-height: 330px; }
  .review-dialog { width: calc(100% - 16px); max-height: 96svh; border-radius: 14px; }
  .review-dialog-head { padding-top: 54px; }
  .form-submit-row { align-items: stretch; flex-direction: column; }
  .form-submit-row .button { width: 100%; }
}

/* ============================================================
   V0.4 · Archivo vivo, proyectos y transparencia segura
   ============================================================ */
.archive { padding-bottom: clamp(80px, 10vw, 140px); }
.archive::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(circle at 18% 16%, rgba(191,195,199,.09), transparent 28%),
    linear-gradient(110deg, transparent 0 58%, rgba(255,255,255,.018) 58% 59%, transparent 59% 100%);
}
.archive-head {
  display: grid; grid-template-columns: minmax(0,1.15fr) minmax(280px,.65fr);
  gap: clamp(36px, 8vw, 130px); align-items: end; max-width: var(--max); margin: 0 auto 54px;
}
.archive-head h2 { max-width: 8ch; }
.archive-head > p { color: rgba(241,239,233,.62); font-size: clamp(1rem,1.5vw,1.3rem); }
.archive-controls { max-width: var(--max); margin: 0 auto 32px; display: flex; gap: 8px; flex-wrap: wrap; }
.archive-filter {
  border: 1px solid var(--line-dark); background: transparent; color: var(--bone); padding: 9px 15px;
  border-radius: 999px; cursor: pointer; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase;
}
.archive-filter:hover, .archive-filter.is-active { background: var(--bone); color: var(--black); border-color: var(--bone); }
.poster-rail {
  display: grid; grid-auto-flow: column; grid-auto-columns: minmax(280px, 28vw); gap: clamp(16px, 2vw, 30px);
  overflow-x: auto; overflow-y: hidden; padding: 20px max(var(--gutter), calc((100vw - var(--max))/2)) 42px;
  margin-inline: calc(var(--gutter) * -1); scroll-snap-type: x mandatory; scrollbar-width: thin;
  perspective: 1600px;
}
.poster-card {
  min-height: 610px; scroll-snap-align: start; transform-style: preserve-3d; transition: transform .38s var(--ease);
}
.poster-card:nth-child(even) { margin-top: 42px; }
.poster-card a { display: grid; grid-template-rows: minmax(410px, 1fr) auto; min-height: 100%; }
.poster-art {
  position: relative; overflow: hidden; background:
    linear-gradient(145deg, rgba(255,255,255,.09), rgba(255,255,255,.01)),
    var(--graphite); border: 1px solid var(--line-dark); padding: 28px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.poster-card:nth-child(3n+2) .poster-art { background: var(--bone); color: var(--black); }
.poster-card:nth-child(3n+3) .poster-art { background: var(--silver); color: var(--black); }
.poster-art::before {
  content: ""; position: absolute; width: 260px; height: 260px; border: 1px solid currentColor; opacity: .12;
  border-radius: 48% 52% 45% 55% / 59% 40% 60% 41%; right: -86px; top: -70px; transform: rotate(calc(var(--poster-index) * 17deg));
}
.poster-art::after { content: ""; position: absolute; left: 28px; right: 28px; bottom: 83px; height: 1px; background: currentColor; opacity: .2; }
.poster-art.has-image { padding: 0; background: var(--graphite); }
.poster-art.has-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease), filter .7s ease; }
.poster-card:hover .poster-art.has-image img { transform: scale(1.045); filter: contrast(1.04); }
.poster-mark { font-size: clamp(3rem, 7vw, 8rem); font-weight: 250; letter-spacing: -.09em; opacity: .18; }
.poster-art strong { position: relative; z-index: 1; max-width: 8ch; font-size: clamp(2rem, 3.2vw, 4.4rem); line-height: .93; letter-spacing: -.07em; font-weight: 500; }
.poster-art small { position: relative; z-index: 1; font-size: .72rem; letter-spacing: .18em; }
.poster-meta { padding: 24px 2px 0; }
.poster-meta > span:first-child { color: var(--silver); font-size: .66rem; text-transform: uppercase; letter-spacing: .16em; }
.poster-meta h3 { margin: 11px 0 10px; font-size: clamp(1.45rem, 2vw, 2.3rem); }
.poster-meta p { color: rgba(241,239,233,.58); font-size: .86rem; min-height: 4.2em; }
.poster-action { display: inline-block; margin-top: 18px; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; }
.archive-foot { max-width: var(--max); margin: 18px auto 0; display: flex; justify-content: space-between; gap: 28px; align-items: center; border-top: 1px solid var(--line-dark); padding-top: 26px; }
.archive-foot p { color: rgba(241,239,233,.54); margin: 0; }
.archive-empty { width: min(600px, 82vw); padding: 50px; border: 1px solid var(--line-dark); }

.impact-lab .impact-layout { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: minmax(0,1fr) minmax(320px,.85fr); gap: clamp(50px,9vw,150px); }
.impact-method { display: grid; grid-template-columns: 42px 1fr; gap: 10px 20px; align-content: start; }
.impact-method > span { width: 36px; height: 36px; border: 1px solid var(--line-light); border-radius: 50%; display: grid; place-items: center; font-size: .65rem; }
.impact-method h3 { margin: 3px 0 0; font-size: 1.3rem; }
.impact-method p { grid-column: 2; color: rgba(11,11,11,.6); margin: 0 0 30px; }

.governance-preview .governance-grid, .governance-full .governance-grid {
  max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: minmax(0,.85fr) minmax(360px,1fr); gap: clamp(50px,9vw,150px);
}
.governance-grid > div:first-child > p:not(.eyebrow) { color: rgba(11,11,11,.62); margin-bottom: 32px; }
.people-list { border-top: 1px solid var(--line-light); }
.person-row { display: grid; grid-template-columns: 54px 1fr; gap: 22px; padding: 28px 0; border-bottom: 1px solid var(--line-light); }
.person-row > span { font-size: .68rem; letter-spacing: .15em; color: #666; }
.person-row h3 { margin: 0 0 8px; font-size: clamp(1.6rem,2.4vw,2.8rem); }
.person-row p { margin: 0 0 8px; font-size: .86rem; font-weight: 650; }
.person-row small { color: rgba(11,11,11,.55); }

/* Project detail */
.project-page, .transparency-page, .legal-page { background: var(--black); }
.project-nav { display: flex !important; }
.project-loading { min-height: 100svh; display: grid; place-items: center; text-align: center; }
.loading-mark { display: block; font-size: 6rem; color: var(--silver); }
.project-hero { min-height: 92svh; padding: clamp(130px,15vw,210px) var(--gutter) 80px; }
.project-hero-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: minmax(0,1fr) minmax(320px,.68fr); gap: clamp(40px,8vw,130px); align-items: center; }
.project-hero-copy h1 { font-size: clamp(4rem,9vw,10rem); max-width: 9ch; font-weight: 470; }
.project-summary { font-size: clamp(1.15rem,2vw,1.65rem); color: rgba(241,239,233,.66); max-width: 46ch; }
.project-status { display: inline-block; margin-top: 22px; border: 1px solid var(--line-dark); padding: 8px 13px; border-radius: 999px; font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; }
.project-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 30px; }
.project-tags span { font-size: .68rem; border-bottom: 1px solid var(--silver); padding: 6px 0; margin-right: 12px; }
.project-poster { aspect-ratio: 3/4; border: 1px solid var(--line-dark); background: linear-gradient(150deg,var(--graphite),#151515); padding: 34px; display: flex; flex-direction: column; justify-content: space-between; position: relative; overflow: hidden; }
.project-poster::after { content:""; width: 320px; height: 320px; border: 1px solid rgba(241,239,233,.13); border-radius: 50%; position:absolute; right:-120px; top:-100px; }
.project-poster.has-image { padding: 0; }
.project-poster.has-image img { width:100%; height:100%; object-fit:cover; }
.project-poster-year { font-size: .72rem; letter-spacing: .2em; }
.project-poster strong { font-size: clamp(2.4rem,4vw,5rem); max-width: 7ch; line-height:.94; letter-spacing:-.07em; z-index:1; }
.project-poster small { z-index:1; letter-spacing:.12em; text-transform:uppercase; }
.project-story { padding-top: clamp(90px,12vw,170px); }
.project-story-grid { max-width: var(--max); margin:0 auto; display:grid; grid-template-columns:minmax(220px,.38fr) minmax(0,1fr); gap:clamp(50px,10vw,160px); }
.project-sticky { position:sticky; top:120px; align-self:start; border-top:1px solid var(--line-light); padding-top:20px; }
.project-sticky span { font-size:clamp(3rem,6vw,7rem); line-height:1; font-weight:250; }
.project-sticky p { margin:20px 0 8px; font-weight:650; }
.project-sticky small { color:rgba(11,11,11,.55); }
.project-story-copy h2 { max-width:10ch; }
.project-story-copy > p { font-size:clamp(1.1rem,1.8vw,1.55rem); line-height:1.55; }
.privacy-note { margin-top:50px; border:1px solid var(--line-light); padding:26px; display:grid; grid-template-columns:170px 1fr; gap:22px; }
.privacy-note p { margin:0; color:rgba(11,11,11,.62); }
.project-impact { padding: clamp(100px,12vw,180px) var(--gutter); }
.project-section-head { max-width:var(--max); margin:0 auto 54px; }
.project-section-head h2 { max-width:10ch; }
.project-section-head.light h2 { color:var(--bone); }
.project-impact-grid { max-width:var(--max); margin:0 auto; display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:1px; background:var(--line-light); border:1px solid var(--line-light); }
.metric-card, .metric-empty, .findings-card { background:var(--concrete); padding:clamp(28px,4vw,48px); min-height:280px; }
.metric-card strong { display:block; font-size:clamp(3rem,6vw,7rem); font-weight:250; line-height:1; }
.metric-card span { display:block; margin-top:14px; font-weight:650; }
.metric-card p { color:rgba(11,11,11,.54); font-size:.75rem; margin-top:18px; }
.metric-empty { grid-column:span 2; }
.metric-empty > span { font-size:.66rem; letter-spacing:.16em; }
.metric-empty h3, .findings-card h3 { font-size:clamp(1.8rem,3vw,3rem); margin:20px 0; }
.metric-empty p { color:rgba(11,11,11,.6); }
.findings-card { background:var(--bone); }
.findings-list { margin:24px 0 0; padding:0; list-style:none; }
.findings-list li { padding:12px 0; border-top:1px solid var(--line-light); }
.project-gallery { padding:clamp(100px,12vw,180px) var(--gutter); }
.project-gallery-grid { max-width:var(--max); margin:0 auto; display:grid; grid-template-columns:repeat(12,1fr); gap:16px; }
.gallery-item { grid-column:span 5; border:0; background:transparent; color:var(--bone); padding:0; text-align:left; cursor:pointer; }
.gallery-item:nth-child(3n+2) { grid-column:span 7; margin-top:80px; }
.gallery-item:nth-child(3n+3) { grid-column:2 / span 8; }
.gallery-item img { width:100%; aspect-ratio:4/3; object-fit:cover; filter:saturate(.78) contrast(1.04); }
.gallery-item span { display:block; margin-top:10px; font-size:.72rem; color:rgba(241,239,233,.58); }
.gallery-dialog { width:min(1100px,94vw); max-height:94svh; border:1px solid var(--line-dark); background:var(--black); color:var(--bone); padding:18px; }
.gallery-dialog::backdrop { background:rgba(0,0,0,.88); }
.gallery-dialog button { position:absolute; right:18px; top:18px; z-index:2; width:42px; height:42px; border-radius:50%; border:1px solid var(--line-dark); background:var(--black); color:var(--bone); font-size:1.5rem; cursor:pointer; }
.gallery-dialog figure { margin:0; }
.gallery-dialog img { max-height:82svh; width:100%; object-fit:contain; }
.gallery-dialog figcaption { padding-top:12px; color:rgba(241,239,233,.6); font-size:.75rem; }
.project-media, .project-press { padding:clamp(100px,12vw,180px) var(--gutter); }
.video-frame { max-width:var(--max); margin:0 auto; aspect-ratio:16/9; background:var(--black); }
.video-frame iframe { width:100%; height:100%; border:0; }
.press-list { max-width:var(--max); margin:0 auto; border-top:1px solid var(--line-light); }
.press-row { display:grid; grid-template-columns:220px 1fr 30px; gap:20px; padding:24px 0; border-bottom:1px solid var(--line-light); align-items:center; }
.press-row span { font-size:.7rem; color:rgba(11,11,11,.55); text-transform:uppercase; letter-spacing:.1em; }
.press-row strong { font-size:1.05rem; }
.project-close { padding:clamp(100px,12vw,180px) var(--gutter); text-align:center; }
.project-close h2 { max-width:9ch; margin:0 auto 36px; }
.project-not-found { min-height:100svh; display:grid; place-items:center; padding:120px var(--gutter); }
.project-not-found-copy { max-width:800px; }

/* Transparency */
.transparency-hero { min-height:78svh; padding:clamp(150px,16vw,240px) var(--gutter) 90px; display:grid; grid-template-columns:minmax(0,1fr) minmax(240px,.45fr); align-items:end; gap:50px; }
.transparency-hero-copy { max-width:var(--max); }
.transparency-hero h1 { font-size:clamp(4rem,9vw,10rem); max-width:10ch; }
.transparency-hero-copy > p:last-child { color:rgba(241,239,233,.62); font-size:clamp(1.05rem,1.7vw,1.4rem); }
.transparency-hero-mark img { opacity:.18; max-width:420px; }
.public-profile-grid { max-width:var(--max); margin:0 auto; display:grid; grid-template-columns:minmax(0,.75fr) minmax(400px,1fr); gap:clamp(50px,9vw,140px); }
.public-profile dl { margin:0; border-top:1px solid var(--line-light); }
.public-profile dl > div { display:grid; grid-template-columns:200px 1fr; gap:20px; padding:20px 0; border-bottom:1px solid var(--line-light); }
.public-profile dt { color:rgba(11,11,11,.55); font-size:.72rem; text-transform:uppercase; letter-spacing:.1em; }
.public-profile dd { margin:0; font-weight:650; }
.transparency-principles-grid { max-width:var(--max); margin:0 auto; display:grid; grid-template-columns:minmax(0,.75fr) minmax(400px,1fr); gap:clamp(50px,9vw,140px); }
.transparency-principles ol { list-style:none; padding:0; margin:0; border-top:1px solid var(--line-dark); }
.transparency-principles li { display:grid; grid-template-columns:50px 1fr; gap:18px; padding:22px 0; border-bottom:1px solid var(--line-dark); }
.transparency-principles li span { color:var(--silver); font-size:.68rem; }
.transparency-principles li p { margin:0; }
.public-library-grid { max-width:var(--max); margin:0 auto; display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:1px; background:var(--line-light); border:1px solid var(--line-light); }
.public-item { background:var(--bone); padding:clamp(28px,4vw,50px); min-height:270px; }
.public-item > span { display:inline-block; font-size:.65rem; letter-spacing:.12em; text-transform:uppercase; border:1px solid var(--line-light); padding:7px 10px; border-radius:999px; }
.public-item h3 { font-size:clamp(1.8rem,3vw,3.4rem); margin:40px 0 14px; }
.public-item p { color:rgba(11,11,11,.6); }
.transparency-request { padding:clamp(100px,12vw,180px) var(--gutter); }
.transparency-request > div { max-width:900px; margin:0 auto; }
.transparency-request h2 { max-width:10ch; }
.transparency-request p { color:rgba(241,239,233,.62); margin-bottom:32px; }

/* Legal */
.legal-hero { padding:clamp(150px,16vw,240px) var(--gutter) 90px; }
.legal-hero h1 { font-size:clamp(4rem,9vw,9rem); max-width:10ch; }
.legal-hero > p:last-child { color:rgba(241,239,233,.62); font-size:1.2rem; }
.legal-content { padding:clamp(80px,10vw,140px) max(var(--gutter),calc((100vw - 900px)/2)); }
.legal-content h2 { font-size:clamp(1.8rem,3vw,3rem); margin-top:54px; }
.legal-content p { color:rgba(11,11,11,.66); font-size:1.03rem; }
.legal-content a { text-decoration:underline; text-underline-offset:3px; }
.legal-update { border-top:1px solid var(--line-light); padding-top:22px; margin-top:60px; font-size:.76rem!important; }
.error-page { background:var(--bone); color:var(--black); min-height:100svh; display:grid; place-items:center; }
.error-page main { max-width:800px; padding:40px; text-align:center; }
.error-page img { width:120px; margin:0 auto 30px; }
.error-page h1 { font-size:clamp(3rem,8vw,7rem); }

@media (max-width: 1000px) {
  .archive-head, .impact-lab .impact-layout, .governance-preview .governance-grid, .governance-full .governance-grid,
  .project-hero-grid, .project-story-grid, .public-profile-grid, .transparency-principles-grid { grid-template-columns:1fr; }
  .poster-rail { grid-auto-columns:minmax(280px,72vw); }
  .project-sticky { position:static; }
  .project-impact-grid { grid-template-columns:1fr 1fr; }
  .transparency-hero { grid-template-columns:1fr; }
  .transparency-hero-mark { display:none; }
}
@media (max-width: 720px) {
  .project-nav a:not(.nav-cta) { display:none; }
  .archive-head { margin-bottom:34px; }
  .poster-rail { grid-auto-columns:82vw; }
  .poster-card { min-height:560px; }
  .poster-card:nth-child(even) { margin-top:24px; }
  .archive-foot { align-items:flex-start; flex-direction:column; }
  .impact-method { margin-top:20px; }
  .project-hero { min-height:auto; }
  .project-hero-copy h1 { font-size:clamp(3.4rem,16vw,6.5rem); }
  .project-poster { max-width:420px; width:100%; }
  .privacy-note { grid-template-columns:1fr; }
  .project-impact-grid, .public-library-grid { grid-template-columns:1fr; }
  .metric-empty { grid-column:auto; }
  .project-gallery-grid { display:block; }
  .gallery-item, .gallery-item:nth-child(3n+2), .gallery-item:nth-child(3n+3) { display:block; width:100%; margin:0 0 24px; }
  .press-row { grid-template-columns:1fr 30px; }
  .press-row span { grid-column:1 / -1; }
  .public-profile dl > div { grid-template-columns:1fr; gap:7px; }
}

/* ============================================================
   CORPOTEAÖ v0.5 · Curaduría web institucional
   Aplicación exacta de marca + UX editorial interactiva
   ============================================================ */

:root {
  --header-h: 92px;
  --focus: #f1efe9;
  --shadow-soft: 0 28px 90px rgba(0,0,0,.14);
  --shadow-dark: 0 34px 110px rgba(0,0,0,.38);
}

body { overflow-x: hidden; }
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: .12;
  background-image: url('assets/material-texture.jpg');
  background-size: 760px;
  mix-blend-mode: soft-light;
}

/* Marca oficial: nunca se recompone con tipografía del sistema */
.site-header { min-height: var(--header-h); padding-top: 15px; padding-bottom: 15px; }
.brand-official { gap: 0; flex: 0 0 auto; }
.brand-lockup { display: block; object-fit: contain; }
.brand-lockup-desktop { width: clamp(190px, 16vw, 255px) !important; height: auto !important; }
.brand-lockup-mobile { display: none !important; width: 42px !important; height: auto !important; }
.site-header.is-scrolled .brand-lockup-desktop { width: clamp(178px, 14.5vw, 232px) !important; }
.main-nav { gap: clamp(13px, 1.65vw, 28px); }
.main-nav a { position: relative; }
.main-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: -7px;
  height: 1px; background: var(--silver);
  transition: right .35s var(--ease);
}
.main-nav a:not(.nav-cta):hover::after,
.main-nav a:not(.nav-cta):focus-visible::after { right: 0; }
.nav-cta { padding: 10px 16px; background: rgba(241,239,233,.035); backdrop-filter: blur(12px); }
.nav-cta:hover { background: var(--bone); color: var(--black); }

/* Guía de recorrido: navegación de alta densidad sin cargar el menú */
.section-rail {
  position: fixed;
  z-index: 90;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  gap: 9px;
  padding: 12px 8px;
  border: 1px solid rgba(191,195,199,.16);
  border-radius: 999px;
  background: rgba(11,11,11,.48);
  backdrop-filter: blur(18px);
}
.section-rail a { position: relative; display: grid; place-items: center; width: 18px; height: 18px; }
.section-rail a span { width: 4px; height: 4px; border-radius: 50%; background: rgba(241,239,233,.38); transition: transform .25s var(--ease), background .25s ease; }
.section-rail a small {
  position: absolute; right: 28px; white-space: nowrap; opacity: 0; transform: translateX(8px);
  pointer-events: none; padding: 5px 8px; border-radius: 4px; background: var(--bone); color: var(--black);
  font-size: .62rem; letter-spacing: .09em; text-transform: uppercase; transition: .25s var(--ease);
}
.section-rail a:hover small, .section-rail a:focus-visible small { opacity: 1; transform: translateX(0); }
.section-rail a.is-active span { transform: scale(2.2); background: var(--bone); }

.section { padding-top: clamp(96px, 10vw, 152px); padding-bottom: clamp(96px, 10vw, 152px); }
.section-label { top: 27px; }

/* Portada: el isotipo queda intacto; el movimiento vive alrededor */
.hero { padding-top: calc(var(--header-h) + 54px); }
.hero-grid { grid-template-columns: minmax(0,1.02fr) minmax(390px,.98fr); }
.hero h1 { font-size: clamp(3.5rem, 7.4vw, 8.6rem); max-width: 9.5ch; }
.hero-symbol { min-height: 600px; isolation: isolate; --mx: 0px; --my: 0px; }
.hero-mark.official-mark {
  width: min(460px, 72vw);
  height: auto;
  position: relative;
  z-index: 4;
  transform: translate3d(calc(var(--mx) * .06),calc(var(--my) * .06),0);
  animation: mark-breathe 8s ease-in-out infinite;
}
.hero-symbol .orbit { z-index: 1; }
.hero-symbol .orbit-one { width: min(540px, 80vw); height: min(540px, 80vw); }
.hero-symbol .orbit-two { width: min(690px, 98vw); height: 350px; }
.brand-axis { position: absolute; z-index: 2; background: rgba(191,195,199,.16); pointer-events: none; }
.brand-axis.axis-x { width: 86%; height: 1px; }
.brand-axis.axis-y { width: 1px; height: 78%; }
.brand-note {
  position: absolute; z-index: 5; font-size: .58rem; letter-spacing: .18em; color: rgba(241,239,233,.46);
  padding: 5px 8px; border: 1px solid rgba(191,195,199,.12); background: rgba(11,11,11,.54); backdrop-filter: blur(10px);
}
.note-presence { top: 16%; left: 6%; }
.note-embrace { right: 0; top: 43%; }
.note-growth { left: 10%; bottom: 15%; }
.symbol-caption { right: 2%; bottom: 1%; max-width: 42ch; text-align: right; text-transform: none; letter-spacing: .08em; }

/* Quiénes somos: identidad como sistema, no como captura de manual */
.identity-frame {
  margin: 0; position: relative; min-height: 660px; overflow: hidden;
  border: 1px solid var(--line-light); background: linear-gradient(145deg,#e9e7e1,var(--bone) 48%,#d8d8d4);
  display: grid; align-content: center; padding: clamp(38px,6vw,84px);
}
.identity-frame::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 74% 26%, rgba(11,11,11,.08), transparent 28%), linear-gradient(90deg, transparent 49.8%, rgba(11,11,11,.12) 50%, transparent 50.2%);
}
.identity-lockup { position: relative; z-index: 3; width: min(560px, 88%); margin: 0 auto 70px; }
.identity-constellation { position: absolute; inset: 0; pointer-events: none; }
.identity-ring { position: absolute; border: 1px solid rgba(11,11,11,.12); border-radius: 50%; }
.identity-ring.ring-one { width: 470px; height: 470px; right: -150px; top: -120px; }
.identity-ring.ring-two { width: 620px; height: 250px; left: -230px; bottom: -90px; transform: rotate(16deg); }
.identity-dot { position: absolute; border-radius: 50%; background: var(--black); }
.identity-dot.dot-one { width: 11px; height: 11px; top: 12%; left: 12%; }
.identity-dot.dot-two { width: 6px; height: 6px; top: 16%; left: 17%; }
.identity-notes { position: relative; z-index: 4; display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.identity-notes > div { padding: 18px 16px; border-right: 1px solid var(--line-light); }
.identity-notes > div:last-child { border-right: 0; }
.identity-notes span, .identity-notes strong, .identity-notes small { display: block; }
.identity-notes span { font-size: .58rem; letter-spacing: .17em; color: rgba(11,11,11,.42); }
.identity-notes strong { margin-top: 12px; font-size: .8rem; letter-spacing: .1em; }
.identity-notes small { margin-top: 5px; color: rgba(11,11,11,.55); }
.identity-frame figcaption { position: relative; z-index: 4; margin-top: 22px; font-size: .66rem; letter-spacing: .08em; color: rgba(11,11,11,.52); text-transform: uppercase; }

/* Programas: riel editorial horizontal, scroll-snap y control de teclado */
.content-rail-controls {
  width: min(var(--max),100%); margin: -42px auto 26px; display: flex; justify-content: flex-end; align-items: center; gap: 8px;
}
.content-rail-controls span { margin-right: 12px; font-size: .67rem; color: rgba(11,11,11,.48); letter-spacing: .08em; }
.content-rail-controls button, .archive-rail-nav button {
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line-light); background: transparent; color: var(--black); cursor: pointer;
  transition: .25s var(--ease);
}
.content-rail-controls button:hover, .archive-rail-nav button:hover { background: var(--black); color: var(--bone); transform: translateY(-2px); }
.program-rail {
  display: grid !important; grid-auto-flow: column; grid-auto-columns: minmax(350px, 40vw); grid-template-columns: none !important;
  gap: 14px; overflow-x: auto; overscroll-behavior-inline: contain; scroll-snap-type: inline mandatory; scrollbar-width: thin; scrollbar-color: var(--black) transparent;
  padding-bottom: 18px;
}
.program-rail .program-card, .program-rail .program-card.feature {
  grid-column: auto; grid-template-columns: 1fr; grid-template-rows: minmax(290px,1fr) auto; min-height: 570px; scroll-snap-align: start;
  box-shadow: none; transform-style: preserve-3d; position: relative;
}
.program-card::after { content: ""; position: absolute; inset: 0; pointer-events: none; border: 1px solid transparent; transition: border-color .3s ease; }
.program-card:hover::after, .program-card:focus-visible::after { border-color: rgba(11,11,11,.45); }
.program-visual { min-height: 290px; position: relative; overflow: hidden; }
.program-visual::before { content: ""; position: absolute; width: 260px; height: 260px; border: 1px solid rgba(241,239,233,.14); border-radius: 50%; right: -70px; top: -80px; transition: transform .7s var(--ease); }
.program-card:hover .program-visual::before { transform: translate(-18px,18px) rotate(18deg) scale(1.08); }
.program-content { min-height: 270px; }

/* Archivo vivo: navegación lateral y afiches con más profundidad */
.archive-controls { align-items: center; }
.archive-rail-nav { margin-left: auto; display: flex; gap: 8px; }
.archive-rail-nav button { color: var(--bone); border-color: var(--line-dark); }
.archive-rail-nav button:hover { background: var(--bone); color: var(--black); }
.poster-rail { scroll-padding-inline: 2px; scrollbar-width: thin; scrollbar-color: var(--silver) transparent; }
.poster-card { transform-style: preserve-3d; }
.poster-art { position: relative; }
.poster-art::before {
  content: ""; position: absolute; inset: 22px; border: 1px solid currentColor; opacity: .12; pointer-events: none;
}
.poster-mark { letter-spacing: -.08em; }
.poster-mark::after { content: "ARCHIVO VIVO"; display: block; margin-top: 12px; font-size: .58rem; letter-spacing: .18em; opacity: .45; }
.poster-meta { border-top: 1px solid var(--line-dark); }

/* Impacto: explorador por capas */
.impact-layout-v2 { align-items: start; }
.impact-intro > p:last-child { color: rgba(11,11,11,.62); font-size: 1.04rem; }
.impact-explorer { border: 1px solid var(--line-light); background: rgba(255,255,255,.32); min-height: 540px; position: relative; }
.impact-tabs { display: grid; grid-template-columns: repeat(4,1fr); border-bottom: 1px solid var(--line-light); }
.impact-tabs button {
  min-height: 74px; padding: 14px 12px; border: 0; border-right: 1px solid var(--line-light); background: transparent; color: rgba(11,11,11,.52);
  font-size: .63rem; letter-spacing: .09em; cursor: pointer; text-align: left; transition: .25s ease;
}
.impact-tabs button:last-child { border-right: 0; }
.impact-tabs button:hover, .impact-tabs button.is-active { background: var(--black); color: var(--bone); }
.impact-panel { display: none; min-height: 460px; padding: clamp(34px,5vw,68px); position: relative; overflow: hidden; }
.impact-panel.is-active { display: block; animation: panel-in .45s var(--ease) both; }
.impact-panel > span { font-size: .65rem; letter-spacing: .2em; color: rgba(11,11,11,.42); }
.impact-panel h3 { margin: 90px 0 18px; font-size: clamp(2.8rem,5vw,5.5rem); font-weight: 450; }
.impact-panel p { max-width: 43ch; color: rgba(11,11,11,.62); font-size: 1.05rem; }
.impact-signal { position: absolute; right: 5%; bottom: 10%; display: flex; gap: 8px; align-items: end; height: 110px; opacity: .28; }
.impact-signal i { display: block; width: 8px; background: var(--black); border-radius: 999px; animation: signal 2.8s ease-in-out infinite alternate; }
.impact-signal i:nth-child(1){height:20%}.impact-signal i:nth-child(2){height:55%;animation-delay:.2s}.impact-signal i:nth-child(3){height:34%;animation-delay:.4s}.impact-signal i:nth-child(4){height:90%;animation-delay:.6s}.impact-signal i:nth-child(5){height:64%;animation-delay:.8s}.impact-signal i:nth-child(6){height:42%;animation-delay:1s}.impact-signal i:nth-child(7){height:76%;animation-delay:1.2s}

/* Voces: estado vacío diseñado como invitación, no placeholder */
.voices-status { border-color: rgba(191,195,199,.32); background: linear-gradient(135deg,rgba(255,255,255,.025),transparent); }
.voices-status-logo { width: clamp(78px,9vw,128px); height: auto; opacity: .72; }
.text-action { margin-top: 22px; padding: 0 0 5px; border: 0; border-bottom: 1px solid var(--silver); color: var(--bone); background: transparent; cursor: pointer; font-size: .75rem; letter-spacing: .1em; }
.text-action:hover { color: var(--silver); }

/* Gestión institucional */
.status-badge { display: inline-flex; align-items: center; gap: 8px; margin: 0 0 22px; padding: 8px 11px; border: 1px solid var(--line-light); border-radius: 999px; font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(11,11,11,.58); }
.status-badge::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--steel); box-shadow: 0 0 0 4px rgba(159,164,168,.14); }
.person-row { transition: background .25s ease, padding .25s var(--ease); }
.person-row:hover { background: rgba(255,255,255,.32); padding-left: 16px; padding-right: 16px; }

/* Cierre y firma */
.contact-symbol { align-self: center; }
.contact-symbol .contact-lockup { width: min(300px,24vw); opacity: .38; }
.footer-brand-official img { width: clamp(190px,16vw,258px); height: auto; }
.site-footer { grid-template-columns: minmax(210px,.8fr) 1.5fr auto; }

/* Páginas internas */
.project-page .site-header .brand-lockup-desktop,
.transparency-page .site-header .brand-lockup-desktop,
.legal-page .site-header .brand-lockup-desktop { width: clamp(180px,15vw,230px) !important; }
.project-poster::before { content: ""; position: absolute; inset: 30px; background: url('assets/brand/isotipo-oficial-hueso.png') center/44% auto no-repeat; opacity: .055; }
.transparency-hero-mark img { width: 100%; opacity: .15; }

/* Respuesta al puntero, sin invadir interacción ni accesibilidad */
.pointer-spotlight {
  position: fixed; z-index: 998; left: 0; top: 0; width: 320px; height: 320px; border-radius: 50%; pointer-events: none;
  transform: translate(-50%,-50%); opacity: 0; transition: opacity .25s ease;
  background: radial-gradient(circle,rgba(191,195,199,.08),transparent 68%); mix-blend-mode: screen;
}
body.has-pointer .pointer-spotlight { opacity: 1; }

@keyframes panel-in { from { opacity:0; transform:translateY(16px) } to { opacity:1; transform:translateY(0) } }
@keyframes signal { from { transform:scaleY(.65); opacity:.45 } to { transform:scaleY(1.1); opacity:1 } }

@media (max-width: 1180px) {
  .brand-lockup-desktop { width: 205px !important; }
  .main-nav { gap: 15px; font-size: .71rem; }
  .section-rail { display: none; }
  .hero-grid { grid-template-columns: 1fr .8fr; }
  .program-rail { grid-auto-columns: minmax(330px,56vw); }
}

@media (max-width: 820px) {
  :root { --header-h: 76px; }
  .brand-lockup-desktop { display: none !important; }
  .brand-lockup-mobile { display: block !important; }
  .site-header { min-height: var(--header-h); }
  .hero { min-height: auto; padding-top: 128px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-symbol { min-height: 480px; margin-top: 18px; }
  .symbol-caption { max-width: 32ch; right: 5%; }
  .identity-frame { min-height: 560px; padding: 34px 24px; }
  .identity-lockup { width: min(500px,94%); }
  .identity-notes { grid-template-columns: 1fr; }
  .identity-notes > div { border-right: 0; border-bottom: 1px solid var(--line-light); }
  .identity-notes > div:last-child { border-bottom: 0; }
  .content-rail-controls { margin-top: 0; justify-content: flex-start; }
  .content-rail-controls span { display: none; }
  .program-rail { grid-auto-columns: 84vw; }
  .archive-rail-nav { width: 100%; margin: 10px 0 0; }
  .impact-tabs { grid-template-columns: 1fr 1fr; }
  .impact-tabs button:nth-child(2) { border-right: 0; }
  .impact-tabs button:nth-child(-n+2) { border-bottom: 1px solid var(--line-light); }
  .contact-symbol { display: block; }
  .contact-symbol .contact-lockup { width: min(250px,60vw); }
  .site-footer { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .hero h1 { font-size: clamp(3.25rem,15vw,5.4rem); }
  .hero-symbol { min-height: 390px; }
  .hero-mark.official-mark { width: 68vw; }
  .brand-note { display: none; }
  .hero-symbol .orbit-one { width: 82vw; height: 82vw; }
  .hero-symbol .orbit-two { width: 96vw; height: 220px; }
  .identity-frame { min-height: 510px; }
  .program-rail { grid-auto-columns: 90vw; }
  .impact-tabs { display: flex; overflow-x: auto; }
  .impact-tabs button { min-width: 150px; border-bottom: 0 !important; }
  .impact-panel { min-height: 420px; }
  .impact-panel h3 { margin-top: 70px; }
  .voices-status { grid-template-columns: 1fr; }
  .footer-brand-official img { width: 210px; }
}

@media (pointer: coarse), (prefers-reduced-motion: reduce) {
  .pointer-spotlight { display: none; }
  .hero-mark.official-mark { transform: none; }
  .impact-signal i { animation: none; }
}
.poster-watermark { position:absolute; width:62%; height:auto; right:-9%; top:11%; opacity:.055; pointer-events:none; }
.poster-card:nth-child(3n+2) .poster-watermark,
.poster-card:nth-child(3n+3) .poster-watermark { filter: invert(1); opacity:.045; }
.project-poster-official-mark { position:absolute; right:-8%; top:-4%; width:62%; height:auto; opacity:.06; pointer-events:none; }
