/* ============================================================
   /nosotros — capa específica de página (hereda styles + v4/v5/v6)
   Solo añade lo que el sistema no tenía: hero declarativo,
   grid de fundadores, stats de escala (4), pull-quote y card de
   evidencia. Nada de colores nuevos: todo desde las variables.
   ============================================================ */

/* ---------- HERO DECLARATIVO (texto = elemento visual) ---------- */
.hero--decl { text-align: left; padding: 210px 0 116px; }
.hero--decl .hero__inner { max-width: var(--maxw); margin: 0 auto; padding: 0 40px; }
.hero--decl .hero__col { max-width: 920px; }      /* ~8/12 */
.hero--decl .label { display: block; margin-bottom: 26px; }
.hero--decl h1 { letter-spacing: -0.018em; }
.hero--decl h1 .line { display: block; }
.hero--decl .chapeau { margin: 30px 0 34px; max-width: 720px; }
.hero--decl .hero__body { max-width: 720px; color: var(--carbon-70); font-size: 17px; line-height: 1.7; }

/* mantiene la entrada por líneas del sistema, pero alineada a la izquierda */
.hero--decl .hero__body { opacity: 0; transform: translateY(16px); animation: heroIn 0.8s ease forwards; animation-delay: 0.62s; }

@media (prefers-reduced-motion: reduce) {
  .hero--decl .hero__body { animation: none !important; opacity: 1 !important; transform: none !important; }
}

/* ---------- COLUMNA EDITORIAL (secciones de texto largo) ---------- */
.prose { max-width: 760px; }            /* ~7/12 */
.prose--wide { max-width: 860px; }      /* ~8/12 */
.prose p { color: var(--carbon-70); font-size: 17px; line-height: 1.72; }
.prose p + p { margin-top: 22px; }
.prose strong { color: var(--carbon); font-weight: 600; }
.prose em { font-style: italic; }
.prose .brand { color: var(--teal); font-weight: 500; font-style: normal; }

/* ---------- FUNDADORES (retrato + texto, ritmo espejado) ---------- */
.founder {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 7fr);
  gap: 80px;
  align-items: start;
}
.founder--mirror { grid-template-columns: minmax(0, 7fr) minmax(0, 4fr); }
.founder__media { position: relative; }
.founder--mirror .founder__media { order: 2; }

/* slot de retrato — overlay carbón sutil mediante marco, sin tapar el drop */
image-slot.founder__photo {
  display: block; width: 100%; height: auto;
  aspect-ratio: 4 / 5; border-radius: 10px;
  border: 1px solid var(--border);
  box-shadow: 0 22px 54px rgba(30,42,56,0.12);
}
.founder__media::after {
  content: ""; position: absolute; inset: 0; border-radius: 10px;
  box-shadow: inset 0 0 0 1px rgba(30,42,56,0.06);
  pointer-events: none;
}
.founder__credit {
  margin-top: 14px; font-size: 12.5px; letter-spacing: 0.02em;
  color: rgba(30,42,56,0.72);
}

.founder__body { padding-top: 4px; }
.founder__body .label { display: block; margin-bottom: 16px; }
.founder__body h2 { margin-bottom: 26px; }
.founder__body .prose { max-width: 620px; }

/* ---------- STATS DE ESCALA (4, sobre teal) ---------- */
.scale-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.scale-stat { padding: 8px 28px; }
.scale-stat + .scale-stat { border-left: 1px solid rgba(255,255,255,0.18); }
.scale-stat__num {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(56px, 5.4vw, 80px); line-height: 1; color: #fff;
}
.scale-stat__num .suffix { color: #f0d68a; }      /* oro legible sobre teal */
.scale-stat__rule {
  height: 2px; width: 0; background: var(--gold); margin: 22px 0 16px;
  transition: width 0.8s var(--ease) 1.6s;
}
.scale-stats.in .scale-stat__rule { width: 46px; }
.scale-stat__label {
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.86); line-height: 1.4;
}
@media (prefers-reduced-motion: reduce) {
  .scale-stat__rule { transition: none !important; width: 46px; }
}

/* ---------- PERSPECTIVA — pull-quote con borde oro ---------- */
.pullquote {
  margin-top: 40px; padding: 6px 0 6px 30px;
  border-left: 3px solid var(--gold);
}
.pullquote p {
  font-family: var(--display); font-style: italic;
  font-size: clamp(26px, 2.6vw, 34px); line-height: 1.32;
  color: var(--carbon); max-width: 640px;
}

/* ---------- EVIDENCIA — card de caso ---------- */
.evidence { max-width: 820px; margin: 0 auto; }
.evidence-card {
  background: var(--platinum);
  border-left: 4px solid var(--gold);
  border-radius: 0 12px 12px 0;
  padding: 44px 48px;
  box-shadow: 0 2px 14px rgba(30,42,56,0.05);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.evidence-card:hover { transform: translateY(-6px); box-shadow: 0 22px 54px rgba(30,42,56,0.12); }
.evidence-card p { color: var(--carbon-70); font-size: 17px; line-height: 1.72; }
.evidence-card .big { font-family: var(--display); font-size: 32px; line-height: 1; color: var(--carbon); white-space: nowrap; }
.evidence-card .big.teal { color: var(--teal); }
.evidence-card .big.gold { color: var(--gold); }
.evidence-card .ev-shift {
  display: flex; align-items: baseline; gap: 16px; flex-wrap: wrap;
  margin: 26px 0; padding: 22px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.evidence-card .ev-arrow { color: var(--gold); font-size: 26px; }
.evidence-card .ev-cap { font-size: 12.5px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(30,42,56,0.72); }
.evidence-card__cta {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 8px;
  color: var(--teal); font-weight: 600; font-size: 15px; text-decoration: none;
}
.evidence-card__cta .arrow { transition: transform 0.25s var(--ease); }
.evidence-card__cta:hover .arrow { transform: translateX(4px); }

/* ---------- CTA FINAL (nota + subheadline) ---------- */
.finalcta--decl { background: var(--white); }
.finalcta--decl .chapeau { max-width: 660px; margin: 26px auto 38px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .founder, .founder--mirror { grid-template-columns: 1fr; gap: 36px; }
  .founder--mirror .founder__media { order: 0; }
  .founder__media { max-width: 420px; }
  .scale-stats { grid-template-columns: 1fr 1fr; }
  .scale-stat:nth-child(odd) { border-left: 0; }
  .scale-stat:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,0.18); padding-top: 30px; }
  .scale-stat:nth-child(n+3) .scale-stat__num { margin-top: 4px; }
}

@media (max-width: 760px) {
  .hero--decl { padding: 138px 0 70px; }
  .scale-stats { grid-template-columns: 1fr; }
  .scale-stat { border-left: 0 !important; padding: 0; }
  .scale-stat + .scale-stat { border-top: 1px solid rgba(255,255,255,0.18); padding-top: 30px; margin-top: 30px; }
  .scale-stat__rule { margin: 16px 0 12px; }
  .evidence-card { padding: 32px 26px; }
  .pullquote { padding-left: 22px; }
}
