/* ============ PAGE INTRO ============ */
.page-intro {
  padding: clamp(60px, 8vw, 110px) 0 clamp(50px, 6vw, 80px);
  position: relative;
  overflow: hidden;
}
.page-intro .iso-wm {
  width: 700px; height: 700px;
  right: -260px; top: -200px;
  opacity: 0.04;
}
.intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: end;
}
.intro-text .eyebrow { margin-bottom: 28px; }
.intro-text h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(54px, 7vw, 104px);
  line-height: 0.98;
  letter-spacing: -0.02em;
}
.intro-text h1 em { font-style: italic; color: var(--teal); }
.intro-aside p {
  font-size: 17.5px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--ink);
  opacity: 0.8;
  margin-bottom: 18px;
}
.intro-aside p:last-child { margin-bottom: 0; }
@media (max-width: 860px) { .intro-grid { grid-template-columns: 1fr; } }

/* ============ FOUNDER HERO ============ */
.founder {
  padding: clamp(60px, 7vw, 100px) 0 clamp(80px, 9vw, 130px);
  position: relative;
  overflow: hidden;
}
.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.f-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  max-width: 520px;
}
.f-photo .frame {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  overflow: hidden;
}
.f-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
}
.f-photo .ring-1 {
  position: absolute;
  width: 240px; height: 240px;
  border-radius: 50%;
  border: 1px dashed var(--ink);
  right: -60px; top: -60px;
  opacity: 0.3;
  animation: rotate 90s linear infinite;
}
.f-photo .ring-2 {
  position: absolute;
  width: 140px; height: 140px;
  border-radius: 50%;
  background: var(--sand);
  right: 30px; bottom: -40px;
  display: grid; place-items: center;
  color: var(--ink);
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  text-align: center;
  line-height: 1.2;
  padding: 24px;
  box-shadow: 0 18px 40px -16px rgba(38,70,83,0.3);
}
.f-photo .badge-quote {
  position: absolute;
  left: -30px; top: 38%;
  background: var(--bg);
  border: 1px solid var(--hairline);
  border-radius: 22px;
  padding: 16px 20px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--ink);
  max-width: 200px;
  line-height: 1.3;
  box-shadow: 0 14px 36px -16px rgba(38,70,83,0.25);
}
@keyframes rotate { 100% { transform: rotate(360deg); } }

.f-body .eyebrow { margin-bottom: 22px; }
.f-body h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 4.8vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.015em;
}
.f-body h2 em { font-style: italic; color: var(--teal); }
.f-body p {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.65;
  margin-top: 24px;
  color: var(--ink);
  opacity: 0.82;
  max-width: 52ch;
}
.f-body .signature {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.f-body .signature .line { width: 40px; height: 1px; background: var(--ink); opacity: 0.4; }
.f-body .signature .name {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
}
.f-body .signature .role {
  font-size: 13px;
  color: var(--muted);
  margin-top: 2px;
}
@media (max-width: 860px) {
  .founder-grid { grid-template-columns: 1fr; }
  .f-photo { margin: 0 auto; }
  .f-photo .badge-quote { left: 10px; }
}

/* ============ PILARES (Reto/Objetivo/Propósito grande) ============ */
.pilares {
  background: var(--paper);
  padding: clamp(90px, 11vw, 160px) 0;
  position: relative;
  overflow: hidden;
}
.pilares .iso-wm {
  width: 800px; height: 800px;
  left: -300px; top: -200px;
  opacity: 0.05;
}
.pil-head {
  text-align: center;
  margin-bottom: 90px;
}
.pil-head .eyebrow { justify-content: center; }
.pil-head h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 5.5vw, 76px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  max-width: 22ch;
  margin: 24px auto 0;
}
.pil-head h2 em { font-style: italic; color: var(--teal); }

.pil-list {
  display: grid;
  gap: 40px;
}
.pil-row {
  display: grid;
  grid-template-columns: 80px 1fr 1.4fr;
  gap: clamp(30px, 5vw, 80px);
  align-items: start;
  padding: 50px 0;
  border-top: 1px solid var(--hairline);
}
.pil-row:last-child { border-bottom: 1px solid var(--hairline); }
.pil-row .pnum {
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  color: var(--muted);
}
.pil-row .ptitle {
  display: flex; flex-direction: column;
  gap: 14px;
}
.pil-row .ptitle .lbl {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-2);
  font-weight: 500;
  display: inline-flex; align-items: center; gap: 10px;
}
.pil-row .ptitle .lbl .dot { background: var(--coral); }
.pil-row:nth-child(2) .ptitle .lbl .dot { background: var(--sand); }
.pil-row:nth-child(3) .ptitle .lbl .dot { background: var(--teal); }
.pil-row .ptitle h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.pil-row .ptitle h3 em { font-style: italic; color: var(--teal); }
.pil-row .pbody p {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--ink);
  opacity: 0.85;
  margin-bottom: 16px;
}
@media (max-width: 860px) {
  .pil-row { grid-template-columns: 1fr; gap: 20px; }
}

/* ============ MANIFIESTO ============ */
.manifest {
  padding: clamp(100px, 13vw, 180px) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.manifest .iso-wm {
  width: 900px; height: 900px;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.04;
}
.manifest h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(42px, 6vw, 92px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  max-width: 22ch;
  margin: 24px auto 0;
  position: relative; z-index: 1;
}
.manifest h2 em { font-style: italic; color: var(--teal); }
.manifest h2 .strike {
  position: relative; display: inline-block;
  color: var(--muted);
  font-weight: 300;
}
.manifest h2 .strike::after {
  content: ""; position: absolute;
  left: -4%; right: -4%; top: 54%;
  height: 3px; background: var(--coral);
  transform: rotate(-2deg);
}
.manifest .eyebrow { justify-content: center; }
.manifest .ctas {
  margin-top: 50px; display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center;
  position: relative; z-index: 1;
}

/* ============ TIMELINE / TRAYECTORIA ============ */
.timeline {
  padding: clamp(80px, 9vw, 130px) 0;
  background: var(--ink);
  color: var(--bg);
  position: relative;
  overflow: hidden;
}
.timeline .iso-wm {
  width: 600px; height: 600px;
  right: -200px; bottom: -200px;
  opacity: 0.07;
  filter: brightness(0) invert(1);
}
.timeline-head .eyebrow { color: var(--sand); }
.timeline-head .eyebrow::before { background: var(--sand); }
.timeline-head h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 4.8vw, 64px);
  line-height: 1.04;
  max-width: 18ch;
  margin: 18px 0 60px;
}
.timeline-head h2 em { font-style: italic; color: var(--sand); }
.tl-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(253,252,249, 0.15);
  border-top: 1px solid rgba(253,252,249, 0.15);
  border-bottom: 1px solid rgba(253,252,249, 0.15);
}
.tl-cell {
  background: var(--ink);
  padding: 40px 28px;
  display: flex; flex-direction: column;
  gap: 14px;
}
.tl-cell .year {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--sand);
  letter-spacing: 0.05em;
}
.tl-cell .num {
  font-family: var(--serif);
  font-size: 48px;
  line-height: 1;
  letter-spacing: -0.02em;
}
.tl-cell .num em { font-size: 0.6em; font-style: italic; color: var(--sand); }
.tl-cell .desc {
  font-size: 14.5px;
  font-weight: 300;
  opacity: 0.85;
  line-height: 1.55;
}
@media (max-width: 860px) { .tl-grid { grid-template-columns: 1fr 1fr; } }
