: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%; }
}
