:root {
  --green-950: #063e2a;
  --green-800: #0b5d3b;
  --green-650: #18734e;
  --green-100: #e8f2ed;
  --blue-700: #1557a6;
  --blue-900: #0c3567;
  --yellow: #f7c928;
  --ink: #10212b;
  --muted: #53626b;
  --line: #dce4e0;
  --white: #fff;
  --shadow: 0 24px 60px rgba(13, 55, 38, 0.13);
  --shell: min(1180px, calc(100vw - 40px));
}

* { box-sizing: border-box; }
html { overflow-x: clip; scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
.shell { width: var(--shell); margin-inline: auto; }
.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: 16px;
  top: -80px;
  z-index: 100;
  padding: 12px 18px;
  color: var(--white);
  background: var(--green-950);
  border-radius: 6px;
  transition: top 180ms ease;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(12px);
  transition: box-shadow 180ms ease, border-color 180ms ease;
}
.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 32px rgba(16, 33, 43, 0.08);
}
.nav-wrap {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--green-950);
  text-decoration: none;
  line-height: 1.15;
}
.brand strong { display: block; font-size: 18px; letter-spacing: -0.01em; }
.brand small { display: block; margin-top: 4px; color: var(--muted); font-size: 12px; }
.brand-mark { position: relative; width: 31px; height: 38px; transform: rotate(-9deg); }
.brand-mark::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 0;
  width: 3px;
  height: 38px;
  background: var(--green-650);
  border-radius: 999px;
}
.brand-mark span {
  position: absolute;
  width: 15px;
  height: 9px;
  border: 2px solid var(--green-650);
  border-radius: 100% 0 100% 0;
}
.brand-mark span:nth-child(1) { left: 0; top: 5px; }
.brand-mark span:nth-child(2) { right: 0; top: 15px; transform: scaleX(-1); }
.brand-mark span:nth-child(3) { left: 0; top: 25px; }
.site-nav { display: flex; align-items: center; gap: 29px; }
.site-nav a {
  color: #294038;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
  transition: color 160ms ease;
}
.site-nav a:hover, .site-nav a:focus-visible { color: var(--green-650); }
.site-nav a[aria-current="page"] {
  color: var(--green-950);
  text-decoration: underline;
  text-decoration-color: var(--green-650);
  text-decoration-thickness: 3px;
  text-underline-offset: 8px;
}
.site-nav .nav-cta {
  padding: 10px 18px;
  color: var(--white);
  background: var(--green-800);
  border-radius: 7px;
}
.menu-toggle { display: none; }

.hero {
  min-height: 675px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: clamp(52px, 7vw, 102px);
  padding-block: 56px 64px;
  position: relative;
}
.hero::before,
.process-section::before {
  content: "";
  position: absolute;
  inset: 0 auto auto calc((100vw - min(1180px, 100vw - 40px)) / -2);
  width: 220px;
  height: 220px;
  opacity: 0.5;
  pointer-events: none;
  background:
    repeating-radial-gradient(ellipse at 0 20%, transparent 0 15px, rgba(11, 93, 59, 0.11) 16px 17px, transparent 18px 31px);
}
.hero-copy { position: relative; z-index: 1; }
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 24px;
  color: var(--green-950);
  font-size: clamp(56px, 6vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}
.hero-lede {
  max-width: 520px;
  margin-bottom: 20px;
  font-size: clamp(24px, 2.2vw, 34px);
  font-weight: 620;
  line-height: 1.23;
  letter-spacing: -0.025em;
}
.hero-note { max-width: 540px; color: var(--muted); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 23px;
  border: 2px solid transparent;
  border-radius: 7px;
  font-size: 15px;
  font-weight: 720;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--white); background: var(--green-800); }
.button-primary:hover { background: var(--green-950); }
.button-secondary { color: var(--green-800); border-color: var(--green-800); background: var(--white); }
.button-secondary:hover { color: var(--white); background: var(--green-800); }
.hero-media { margin: 0; position: relative; }
.hero-media::after {
  content: "";
  position: absolute;
  left: -22px;
  bottom: 42px;
  width: 7px;
  height: 52%;
  background: var(--yellow);
  border-radius: 999px;
}
.hero-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 1.25;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: var(--shadow);
}
.hero-media figcaption { margin-top: 12px; color: var(--muted); font-size: 13px; }
.hero-media figcaption a { color: var(--blue-700); font-weight: 650; text-underline-offset: 3px; }

.proof-band { background: linear-gradient(115deg, var(--green-950), var(--green-800)); color: var(--white); }
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.proof-item { min-height: 150px; display: flex; flex-direction: column; justify-content: center; padding: 30px 42px; }
.proof-item + .proof-item { border-left: 1px solid rgba(255, 255, 255, 0.25); }
.proof-item strong { color: var(--yellow); font-size: clamp(32px, 3vw, 46px); line-height: 1.05; }
.proof-item span { max-width: 270px; margin-top: 8px; color: #e6f2ec; font-size: 14px; line-height: 1.5; }

.section { padding-block: clamp(88px, 10vw, 140px); }
.section-heading { max-width: 760px; margin: 0 auto 62px; text-align: center; }
.section-heading h2, .support-copy h2 {
  margin-bottom: 18px;
  color: var(--green-950);
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}
.section-heading p { margin-bottom: 0; color: var(--muted); font-size: 19px; }
.section-heading-light h2, .section-heading-light p { color: var(--white); }
.section-heading-light p { color: #dcece4; }

.impact-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.impact-item { padding: 0 34px; }
.impact-item + .impact-item { border-left: 1px solid var(--line); }
.impact-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  color: var(--blue-700);
}
.impact-icon svg { width: 52px; height: 52px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 2.2; }
.impact-item h3 { margin-bottom: 10px; color: var(--green-950); font-size: 21px; }
.impact-item p { margin-bottom: 0; color: var(--muted); font-size: 15px; }

.stories-section { color: var(--white); background: var(--green-950); overflow: hidden; }
.story-timeline { position: relative; margin: 0; padding: 0; list-style: none; }
.story-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: rgba(247, 201, 40, 0.45);
}
.story-entry {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.16fr;
  align-items: center;
  gap: clamp(58px, 7vw, 102px);
  padding: 76px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.story-entry:last-child { border-bottom: 1px solid rgba(255, 255, 255, 0.16); }
.story-entry::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 92px;
  left: 50%;
  width: 17px;
  height: 17px;
  background: var(--green-950);
  border: 3px solid var(--yellow);
  border-radius: 50%;
  transform: translateX(-50%);
}
.story-entry:nth-child(even) { grid-template-columns: 1.16fr 1fr; }
.story-entry:nth-child(even) .story-copy { order: 2; padding: 0 0 0 28px; }
.story-entry:nth-child(even) .story-media { order: 1; }
.story-copy { padding-right: 28px; }
.story-date { margin-bottom: 12px; color: var(--yellow); font-size: 17px; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; }
.story-copy h3 { max-width: 500px; margin-bottom: 18px; font-size: clamp(32px, 3.3vw, 48px); line-height: 1.08; letter-spacing: -0.035em; }
.story-copy > p:not(.story-date) { max-width: 540px; margin-bottom: 24px; color: #dcece4; font-size: 17px; }
.story-media { margin: 0; }
.story-media img { width: 100%; aspect-ratio: 1.45; object-fit: cover; border-radius: 13px; box-shadow: 0 24px 50px rgba(0, 24, 16, 0.32); }
.story-media figcaption { margin-top: 11px; color: #bcd4c8; font-size: 12px; }
.story-link { color: var(--yellow); font-size: 14px; font-weight: 750; text-decoration-thickness: 1px; text-underline-offset: 5px; }
.story-link:hover, .story-link:focus-visible { color: var(--white); }
.story-result { max-width: 520px; margin: 0 0 24px; padding: 14px 18px; color: var(--white); border-left: 4px solid var(--yellow); background: rgba(255, 255, 255, 0.08); font-size: 15px; }
.story-highlights { max-width: 540px; margin: 0 0 26px; padding: 0; list-style: none; }
.story-highlights li { position: relative; padding: 8px 0 8px 25px; color: #e5f1eb; font-size: 14px; border-top: 1px solid rgba(255, 255, 255, 0.12); }
.story-highlights li::before { content: ""; position: absolute; left: 2px; top: 16px; width: 7px; height: 7px; background: var(--yellow); border-radius: 50%; }
.story-actions { display: flex; flex-wrap: wrap; gap: 12px 24px; }
.allies { margin-top: 82px; padding: 44px; background: var(--green-800); border-top: 5px solid var(--yellow); border-radius: 14px; }
.allies-heading { display: grid; grid-template-columns: 0.75fr 1.25fr; gap: 40px; align-items: end; margin-bottom: 34px; }
.allies-heading h3 { margin: 0; font-size: clamp(30px, 3vw, 42px); letter-spacing: -0.03em; }
.allies-heading p { max-width: 530px; margin: 0; color: #dcece4; }
.allies-list { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255, 255, 255, 0.24); }
.allies-list article { padding: 26px 22px 0 0; }
.allies-list article + article { padding-left: 22px; border-left: 1px solid rgba(255, 255, 255, 0.2); }
.allies-list strong { display: block; margin-bottom: 8px; color: var(--yellow); font-size: 17px; line-height: 1.25; }
.allies-list span { display: block; color: #e2eee8; font-size: 13px; line-height: 1.55; }
.ally-link { display: inline-block; margin-top: 12px; color: var(--yellow); font-size: 13px; font-weight: 750; text-underline-offset: 4px; }
.ally-link:hover, .ally-link:focus-visible { color: var(--white); }

.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 235px; gap: 16px; }
.gallery-item {
  grid-column: span 4;
  position: relative;
  overflow: hidden;
  padding: 0;
  color: var(--white);
  background: var(--green-950);
  border: 0;
  border-radius: 10px;
  cursor: zoom-in;
  text-align: left;
}
.gallery-wide { grid-column: span 8; }
.gallery-tall { grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms ease; }
.gallery-item:hover img, .gallery-item:focus-visible img { transform: scale(1.035); }
.gallery-item span {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 7px 10px;
  color: var(--white);
  background: rgba(6, 62, 42, 0.9);
  border-radius: 5px;
  font-size: 13px;
  font-weight: 700;
}

.process-section { position: relative; overflow: hidden; background: #f6faf8; }
.process-list { display: grid; grid-template-columns: repeat(5, 1fr); margin: 0; padding: 0; list-style: none; }
.process-list li { padding: 0 24px; position: relative; }
.process-list li + li::before { content: ""; position: absolute; left: 0; top: 20px; width: 1px; height: 78%; background: var(--line); }
.process-list strong { width: 42px; height: 42px; display: grid; place-items: center; margin-bottom: 24px; color: var(--white); background: var(--green-800); border-radius: 50%; font-size: 16px; }
.process-list h3 { margin-bottom: 9px; color: var(--green-950); font-size: 19px; }
.process-list p { margin-bottom: 0; color: var(--muted); font-size: 14px; }

.uluk-section { position: relative; overflow: hidden; color: var(--white); background: var(--green-950); }
.uluk-section::before {
  content: "";
  position: absolute;
  inset: -120px -120px auto auto;
  width: 480px;
  height: 480px;
  opacity: 0.18;
  background: repeating-radial-gradient(ellipse at 50% 50%, transparent 0 19px, var(--yellow) 20px 21px, transparent 22px 39px);
  pointer-events: none;
}
.uluk-shell { position: relative; z-index: 1; }
.uluk-intro { display: grid; grid-template-columns: 1.22fr 0.78fr; grid-template-areas: "title investment" "lede investment"; gap: 20px 70px; align-items: end; }
.uluk-intro h2 { grid-area: title; margin-bottom: 0; color: var(--white); font-size: clamp(58px, 7.6vw, 102px); line-height: 0.94; letter-spacing: -0.06em; }
.uluk-intro > p { grid-area: lede; max-width: 690px; margin: 0; color: #dcece4; font-size: clamp(22px, 2.1vw, 30px); line-height: 1.25; }
.investment { grid-area: investment; padding-left: 34px; border-left: 5px solid var(--yellow); }
.investment > span { display: block; color: #dcece4; font-size: 14px; font-weight: 750; letter-spacing: 0.06em; text-transform: uppercase; }
.investment-total { display: block; margin: 8px 0 18px; color: var(--yellow); font-size: clamp(42px, 5vw, 70px); line-height: 1; letter-spacing: -0.045em; }
.donation-progress { position: relative; height: 10px; overflow: hidden; background: rgba(255, 255, 255, 0.2); border: 1px solid rgba(255, 255, 255, 0.24); border-radius: 999px; }
.donation-progress::before { content: ""; position: absolute; left: 0; top: 50%; z-index: 1; width: 10px; height: 10px; background: var(--yellow); border: 2px solid var(--green-950); border-radius: 50%; transform: translate(-1px, -50%); }
.donation-progress > span { width: 0%; height: 100%; display: block; background: var(--yellow); }
.donation-status { display: flex; justify-content: space-between; gap: 18px; margin-top: 9px; color: #dcece4; font-size: 12px; line-height: 1.4; }
.donation-status strong { color: var(--white); font-size: inherit; }
.donation-status span { text-align: right; }
.uluk-media { display: grid; grid-template-columns: 0.76fr 1.24fr; gap: 22px; align-items: end; margin-top: 60px; }
.uluk-photo { position: relative; width: 100%; display: block; padding: 0; overflow: hidden; color: var(--white); background: #052f21; border: 0; border-radius: 16px; box-shadow: 0 24px 58px rgba(0, 23, 15, 0.32); cursor: zoom-in; text-align: left; }
.uluk-photo::after { content: ""; position: absolute; inset: 42% 0 0; background: linear-gradient(transparent, rgba(0, 25, 17, 0.82)); pointer-events: none; }
.uluk-photo-building { aspect-ratio: 0.82; }
.uluk-photo-sign { aspect-ratio: 1.4; }
.uluk-photo img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform 420ms ease; }
.uluk-photo-building img { object-position: 50% 42%; }
.uluk-photo-sign img { object-position: center; }
.uluk-photo span { position: absolute; left: 22px; right: 22px; bottom: 19px; z-index: 1; color: var(--white); font-size: 15px; font-weight: 750; letter-spacing: 0.01em; }
.uluk-photo:hover img { transform: scale(1.025); }
.uluk-photo:focus-visible { outline: 3px solid var(--yellow); outline-offset: 4px; }
.uluk-media + .energy-path { margin-top: 32px; }
.energy-path { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-top: 72px; padding: 48px 32px 42px; color: var(--ink); background: var(--white); border-radius: 18px; box-shadow: 0 28px 70px rgba(0, 25, 17, 0.32); }
.energy-path::before { content: ""; position: absolute; left: 11%; right: 11%; top: 85px; border-top: 3px dashed var(--yellow); }
.energy-path article { position: relative; z-index: 1; text-align: center; }
.path-icon { width: 74px; height: 74px; display: grid; place-items: center; margin: 0 auto 19px; color: var(--blue-700); background: var(--white); border: 2px solid var(--yellow); border-radius: 50%; }
.path-icon svg, .logistics-note svg { width: 40px; height: 40px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.energy-path h3 { max-width: 165px; margin: 0 auto; color: var(--green-950); font-size: 17px; line-height: 1.25; }
.logistics-note { display: flex; align-items: center; gap: 22px; width: min(820px, 100%); margin: 28px auto 0; padding: 20px 26px; background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 12px; }
.logistics-note > span { flex: 0 0 55px; width: 55px; height: 55px; display: grid; place-items: center; color: var(--yellow); background: rgba(247, 201, 40, 0.12); border-radius: 50%; }
.logistics-note strong { display: block; color: var(--yellow); font-size: 17px; }
.logistics-note p { margin: 2px 0 0; color: #dcece4; font-size: 14px; }
.uluk-action { display: flex; justify-content: space-between; align-items: center; gap: 48px; margin-top: 58px; padding-top: 38px; border-top: 1px solid rgba(255, 255, 255, 0.24); }
.uluk-action h3 { margin-bottom: 7px; font-size: 27px; }
.uluk-action p { max-width: 650px; margin: 0; color: #dcece4; }
.button-yellow { flex: 0 0 auto; color: var(--green-950); background: var(--yellow); }
.button-yellow:hover { background: #ffdb4d; }

/* Voluntariado */
.volunteer-hero { min-height: 630px; }
.volunteer-hero .hero-media img { aspect-ratio: 1.58; }
.volunteer-roles { padding-block: 58px 112px; }
.roles-layout { display: grid; grid-template-columns: minmax(270px, 0.65fr) 1.35fr; gap: clamp(50px, 7vw, 95px); align-items: start; }
.roles-heading { position: sticky; top: 126px; }
.roles-heading h2 {
  max-width: 360px;
  margin-bottom: 18px;
  color: var(--green-950);
  font-size: clamp(40px, 4vw, 58px);
  line-height: 1.04;
  letter-spacing: -0.045em;
}
.roles-heading p { max-width: 350px; margin: 0; color: var(--muted); }
.roles-list { border-top: 1px solid var(--line); }
.volunteer-role {
  position: relative;
  display: grid;
  grid-template-columns: 66px minmax(175px, 0.66fr) 1.34fr;
  gap: 22px;
  align-items: center;
  min-height: 132px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.volunteer-role::before { content: ""; position: absolute; left: 0; top: 18px; bottom: 18px; width: 4px; background: var(--yellow); border-radius: 99px; }
.role-icon { width: 56px; height: 56px; display: grid; place-items: center; margin-left: 14px; color: var(--green-650); }
.role-icon svg { width: 46px; height: 46px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.volunteer-role h3 { margin: 0; color: var(--green-950); font-size: 20px; line-height: 1.25; }
.volunteer-role p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.55; }
.roles-note { display: flex; align-items: center; gap: 12px; margin: 24px 0 0; color: var(--blue-700); font-size: 14px; }
.roles-note span { flex: 0 0 24px; width: 24px; height: 24px; display: grid; place-items: center; border: 2px solid currentColor; border-radius: 50%; font-size: 13px; font-weight: 800; }

.volunteer-process { padding-top: 88px; background: #f6faf8; }
.volunteer-steps { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); margin: 0; padding: 0; list-style: none; }
.volunteer-steps::before { content: ""; position: absolute; left: 10%; right: 10%; top: 36px; border-top: 2px solid #cfdad5; }
.volunteer-steps li { position: relative; z-index: 1; padding: 0 24px; text-align: center; }
.volunteer-steps li::after { content: ""; position: absolute; left: 50%; top: 31px; z-index: -1; width: 13px; height: 13px; background: var(--yellow); border: 4px solid #f6faf8; border-radius: 50%; transform: translateX(-50%); }
.volunteer-steps strong { width: 64px; height: 64px; display: grid; place-items: center; margin: 0 auto 36px; color: var(--green-950); background: #f6faf8; border: 2px solid var(--green-950); border-radius: 50%; font-size: 28px; }
.volunteer-steps h3 { margin-bottom: 8px; color: var(--green-950); font-size: 20px; }
.volunteer-steps p { max-width: 250px; margin: 0 auto; color: var(--muted); font-size: 14px; }

.territory-section { padding-block: 0 100px; background: #f6faf8; }
.territory-panel { padding: 42px 44px 30px; color: var(--white); background: var(--green-950); border-radius: 18px; }
.territory-panel h2 { margin-bottom: 30px; color: var(--white); font-size: clamp(34px, 3.5vw, 48px); line-height: 1.08; letter-spacing: -0.035em; }
.territory-rules { display: grid; grid-template-columns: repeat(4, 1fr); }
.territory-rules article { padding: 0 28px; text-align: center; }
.territory-rules article + article { border-left: 2px solid var(--yellow); }
.territory-icon { width: 62px; height: 62px; display: grid; place-items: center; margin: 0 auto 15px; color: var(--yellow); }
.territory-icon svg { width: 52px; height: 52px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.territory-rules p { margin: 0; color: #eef6f2; font-size: 15px; line-height: 1.5; }
.territory-note { margin: 30px 0 0; padding-top: 20px; color: #d8ebe2; border-top: 1px solid rgba(255, 255, 255, 0.22); text-align: center; font-size: 14px; }

.volunteer-cta { display: grid; grid-template-columns: 0.9fr 1.1fr; overflow: hidden; border: 1px solid var(--line); border-radius: 18px; }
.volunteer-cta-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(36px, 5vw, 68px); }
.volunteer-cta-copy h2 { margin-bottom: 20px; color: var(--green-950); font-size: clamp(38px, 4vw, 56px); line-height: 1.05; letter-spacing: -0.045em; }
.volunteer-cta-copy > p { margin-bottom: 30px; color: var(--muted); font-size: 18px; }
.volunteer-contact { display: flex; flex-wrap: wrap; align-items: center; gap: 20px 30px; }
.contact-email { color: var(--green-950); font-size: 15px; font-weight: 720; text-underline-offset: 4px; }
.contact-email:hover, .contact-email:focus-visible { color: var(--blue-700); }
.volunteer-cta figure { min-height: 470px; margin: 0; position: relative; background: var(--green-950); }
.volunteer-cta figure img { width: 100%; height: 100%; object-fit: cover; }
.volunteer-cta figcaption { position: absolute; right: 16px; bottom: 14px; padding: 7px 10px; color: var(--white); background: rgba(6, 62, 42, 0.9); border-radius: 5px; font-size: 12px; }

.sources { padding-block: 50px; }
.sources h2 { margin-bottom: 20px; color: var(--green-950); font-size: 22px; }
.source-links { display: flex; flex-wrap: wrap; gap: 14px 28px; }
.source-links a { color: var(--blue-700); font-size: 14px; font-weight: 650; text-underline-offset: 4px; }
.site-footer { padding-block: 34px; color: #dcece4; background: #052f21; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: end; }
.footer-grid strong { color: var(--white); font-size: 19px; }
.footer-grid p { margin: 6px 0 0; font-size: 13px; }
.footer-grid > p { text-align: right; }

.lightbox { width: min(1040px, calc(100vw - 32px)); max-height: calc(100vh - 32px); padding: 0; color: var(--white); background: #051a12; border: 0; border-radius: 12px; overflow: hidden; }
.lightbox::backdrop { background: rgba(0, 14, 9, 0.86); backdrop-filter: blur(6px); }
.lightbox img { width: 100%; max-height: calc(100vh - 145px); object-fit: contain; background: #051a12; }
.lightbox p { margin: 0; padding: 16px 56px 18px 20px; font-size: 14px; }
.lightbox-close { position: absolute; right: 12px; top: 10px; z-index: 2; width: 40px; height: 40px; display: grid; place-items: center; padding: 0; color: var(--white); background: rgba(0, 0, 0, 0.62); border: 0; border-radius: 50%; cursor: pointer; font-size: 27px; line-height: 1; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 600ms ease, transform 600ms ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1080px) {
  .nav-wrap { gap: 18px; }
  .site-nav { gap: 18px; }
}

@media (max-width: 980px) {
  .hero { min-height: auto; grid-template-columns: 1fr; gap: 48px; padding-top: 70px; }
  .hero-copy { max-width: 760px; }
  .hero-media { width: min(760px, 100%); }
  .proof-item { padding-inline: 24px; }
  .impact-grid { grid-template-columns: repeat(2, 1fr); gap: 48px 0; }
  .impact-item:nth-child(3) { border-left: 0; }
  .allies-heading { grid-template-columns: 1fr; gap: 12px; }
  .allies-list { grid-template-columns: repeat(2, 1fr); gap: 30px 0; }
  .allies-list article:nth-child(3) { padding-left: 0; border-left: 0; }
  .process-list { grid-template-columns: 1fr 1fr; gap: 38px 0; }
  .process-list li:nth-child(odd)::before { display: none; }
  .uluk-intro { grid-template-columns: 1fr; grid-template-areas: "title" "lede" "investment"; }
  .investment { margin-top: 22px; }
  .energy-path { grid-template-columns: repeat(3, 1fr); }
  .energy-path::before { display: none; }
  .uluk-action { align-items: flex-start; flex-direction: column; }
  .roles-layout { grid-template-columns: 1fr; }
  .roles-heading { position: static; }
  .roles-heading h2, .roles-heading p { max-width: 680px; }
  .volunteer-cta { grid-template-columns: 1fr; }
  .volunteer-cta figure { min-height: 440px; }
}

@media (max-width: 760px) {
  :root { --shell: min(100% - 28px, 640px); }
  body { font-size: 16px; }
  .nav-wrap { min-height: 70px; }
  .brand strong { font-size: 16px; }
  .brand small { display: none; }
  .menu-toggle { width: 44px; height: 44px; display: grid; place-content: center; gap: 5px; padding: 0; background: transparent; border: 0; border-radius: 6px; }
  .menu-toggle span:not(.sr-only) { width: 24px; height: 2px; display: block; background: var(--green-950); transition: transform 180ms ease, opacity 180ms ease; }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(4) { transform: translateY(-7px) rotate(-45deg); }
  .site-nav { position: fixed; inset: 70px 0 auto; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 18px 20px 28px; background: var(--white); border-top: 1px solid var(--line); box-shadow: 0 24px 45px rgba(16, 33, 43, 0.14); }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 14px 8px; font-size: 17px; }
  .site-nav .nav-cta { margin-top: 8px; padding-inline: 18px; text-align: center; }
  .site-nav a[aria-current="page"] { text-decoration: none; box-shadow: inset 4px 0 0 var(--yellow); }
  .hero { gap: 36px; padding-block: 56px; }
  h1 { font-size: clamp(50px, 15vw, 72px); }
  .hero-lede { font-size: 24px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-media::after { left: -8px; bottom: 40px; width: 5px; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-item { min-height: 120px; padding: 26px 12px; }
  .proof-item + .proof-item { border-left: 0; border-top: 1px solid rgba(255, 255, 255, 0.23); }
  .section { padding-block: 82px; }
  .section-heading { margin-bottom: 46px; text-align: left; }
  .section-heading p { font-size: 17px; }
  .impact-grid { grid-template-columns: 1fr; gap: 0; }
  .impact-item { padding: 28px 0; display: grid; grid-template-columns: 64px 1fr; column-gap: 16px; }
  .impact-item + .impact-item { border-left: 0; border-top: 1px solid var(--line); }
  .impact-icon { grid-row: span 2; margin: 0; }
  .impact-item h3 { margin-top: 5px; }
  .story-timeline::before { left: 8px; }
  .story-entry, .story-entry:nth-child(even) { grid-template-columns: 1fr; gap: 30px; padding: 58px 0 58px 36px; }
  .story-entry::before { top: 67px; left: 8px; }
  .story-entry .story-copy, .story-entry:nth-child(even) .story-copy { order: 1; padding: 0; }
  .story-entry .story-media, .story-entry:nth-child(even) .story-media { order: 2; }
  .story-copy h3 { font-size: 35px; }
  .story-media img { aspect-ratio: 1.35; }
  .allies { margin-top: 58px; padding: 32px 24px; }
  .allies-list { grid-template-columns: 1fr; gap: 0; }
  .allies-list article, .allies-list article + article, .allies-list article:nth-child(3) { padding: 22px 0; border-left: 0; border-top: 1px solid rgba(255, 255, 255, 0.18); }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .gallery-item, .gallery-wide { grid-column: 1; }
  .gallery-tall { grid-row: auto; }
  .process-list { grid-template-columns: 1fr; gap: 0; }
  .process-list li { display: grid; grid-template-columns: 48px 1fr; gap: 16px; padding: 22px 0; }
  .process-list li + li::before { top: 0; width: 100%; height: 1px; }
  .process-list strong { margin: 0; }
  .uluk-intro h2 { font-size: clamp(54px, 16vw, 72px); }
  .investment { padding: 22px 0 0; border-left: 0; border-top: 4px solid var(--yellow); }
  .uluk-media { grid-template-columns: 1fr; gap: 18px; margin-top: 44px; }
  .uluk-photo-building { aspect-ratio: 0.92; }
  .uluk-photo-sign { aspect-ratio: 1.4; }
  .uluk-media + .energy-path { margin-top: 26px; }
  .energy-path { grid-template-columns: 1fr; gap: 0; padding: 24px; }
  .energy-path article { display: grid; grid-template-columns: 58px 1fr; align-items: center; gap: 16px; padding: 16px 0; text-align: left; border-top: 1px solid var(--line); }
  .energy-path article:first-child { border-top: 0; }
  .path-icon { width: 54px; height: 54px; margin: 0; }
  .path-icon svg { width: 30px; height: 30px; }
  .energy-path h3 { max-width: none; margin: 0; }
  .logistics-note { align-items: flex-start; padding: 18px; }
  .uluk-action { margin-top: 44px; gap: 26px; }
  .uluk-action .button { width: 100%; }
  .volunteer-hero { padding-bottom: 76px; }
  .volunteer-hero .hero-media img { aspect-ratio: 1.35; }
  .volunteer-roles { padding-block: 40px 82px; }
  .roles-layout { gap: 36px; }
  .volunteer-role { grid-template-columns: 58px 1fr; gap: 8px 16px; padding: 22px 0; }
  .volunteer-role::before { left: -14px; }
  .role-icon { grid-row: span 2; width: 50px; height: 50px; margin-left: 0; }
  .role-icon svg { width: 42px; height: 42px; }
  .volunteer-role p { grid-column: 2; }
  .volunteer-process { padding-top: 82px; }
  .volunteer-steps { grid-template-columns: 1fr; }
  .volunteer-steps::before { top: 32px; bottom: 32px; left: 26px; right: auto; height: auto; border-top: 0; border-left: 2px solid #cfdad5; }
  .volunteer-steps li { display: grid; grid-template-columns: 54px 1fr; gap: 2px 18px; padding: 18px 0; text-align: left; }
  .volunteer-steps li::after { left: 26px; top: 43px; border-width: 3px; transform: translateX(-50%); }
  .volunteer-steps strong { grid-row: span 2; width: 52px; height: 52px; margin: 0; font-size: 22px; }
  .volunteer-steps h3 { margin: 3px 0 1px; }
  .volunteer-steps p { max-width: none; margin: 0; }
  .territory-section { padding-bottom: 82px; }
  .territory-panel { padding: 32px 24px 24px; }
  .territory-rules { grid-template-columns: 1fr; }
  .territory-rules article { display: grid; grid-template-columns: 54px 1fr; align-items: center; gap: 16px; padding: 19px 0; text-align: left; }
  .territory-rules article + article { border-left: 0; border-top: 1px solid rgba(255, 255, 255, 0.2); }
  .territory-icon { width: 50px; height: 50px; margin: 0; }
  .territory-icon svg { width: 44px; height: 44px; }
  .territory-note { text-align: left; }
  .volunteer-cta-copy { padding: 34px 24px 40px; }
  .volunteer-contact { align-items: stretch; flex-direction: column; }
  .volunteer-contact .button { width: 100%; }
  .contact-email { text-align: center; }
  .volunteer-cta figure { min-height: 330px; }
  .source-links { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > p { text-align: left; }
}

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

/* --------------------------------------------------------------------------
   Portada cinematográfica · v4
   -------------------------------------------------------------------------- */

@view-transition { navigation: auto; }

::view-transition-old(root) { animation: page-out 260ms cubic-bezier(.65, 0, .35, 1) both; }
::view-transition-new(root) { animation: page-in 520ms cubic-bezier(.16, 1, .3, 1) both; }

.home-page {
  --night: #031e15;
  --night-deep: #01120d;
  --night-soft: #082b20;
  --solar: #ffd236;
  --electric: #28a8e9;
  --alive: #19b867;
  --mist: #d9eee4;
  color: var(--white);
  background: var(--night-deep);
  overflow-x: clip;
}

.home-page main { background: var(--night); }
.home-page [data-parallax] { translate: 0 var(--parallax-y, 0); will-change: translate; }
.home-page .site-header {
  color: var(--white);
  background: rgba(1, 18, 13, 0.78);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px) saturate(130%);
}
.home-page .site-header.is-scrolled {
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 14px 45px rgba(0, 0, 0, 0.34);
}
.home-page .brand { color: var(--white); }
.home-page .brand small { color: #a7c6b7; }
.home-page .brand-mark::before { background: var(--alive); box-shadow: 0 0 16px rgba(25, 184, 103, 0.45); }
.home-page .brand-mark span { border-color: var(--alive); }
.home-page .site-nav a { color: #dfeee7; }
.home-page .site-nav a:hover,
.home-page .site-nav a:focus-visible { color: var(--solar); }
.home-page .site-nav .nav-cta { color: var(--night-deep); background: var(--solar); }
.home-page .site-nav .nav-cta:hover { color: var(--night-deep); background: #ffe169; }

.home-hero {
  position: relative;
  min-height: min(880px, calc(100svh - 80px));
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(1, 18, 13, 0.98) 0%, rgba(1, 18, 13, 0.88) 32%, rgba(1, 18, 13, 0.06) 68%, rgba(1, 18, 13, 0.18) 100%),
    url("assets/topography.svg") center / cover;
  isolation: isolate;
}
.home-hero::before {
  content: "";
  position: absolute;
  inset: auto auto -30% -13%;
  width: 54vw;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(25, 184, 103, 0.18), transparent 66%);
  filter: blur(20px);
  pointer-events: none;
}
.home-hero-layout {
  position: relative;
  min-height: inherit;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: center;
  gap: 24px;
  padding-block: 35px 54px;
}
.home-hero .hero-copy { position: relative; z-index: 6; align-self: start; margin-top: 0; padding-top: 0; }
.home-hero h1 {
  max-width: 610px;
  margin-bottom: 28px;
  color: var(--white);
  font-size: clamp(72px, 8.6vw, 132px);
  line-height: 0.78;
  letter-spacing: -0.075em;
}
.home-hero h1 span {
  display: block;
  opacity: 0;
  transform: translateY(60px);
  filter: blur(12px);
}
.home-page.is-ready .home-hero h1 span {
  animation: hero-word-in 850ms cubic-bezier(.16, 1, .3, 1) forwards;
}
.home-page.is-ready .home-hero h1 span:nth-child(2) { animation-delay: 80ms; }
.home-page.is-ready .home-hero h1 span:nth-child(3) { animation-delay: 160ms; }
.home-hero .hero-word-accent {
  width: max-content;
  padding-right: 0.08em;
  color: var(--alive);
  text-shadow: 0 0 40px rgba(25, 184, 103, 0.22);
}
.home-hero .hero-lede {
  max-width: 560px;
  margin-bottom: 16px;
  color: var(--white);
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.28;
}
.home-hero .hero-lede::selection { color: var(--night); background: var(--solar); }
.home-hero .hero-note { max-width: 545px; color: #bad2c7; font-size: 15px; }
.home-hero .hero-actions { gap: 9px; margin-top: 26px; }
.home-hero .button { position: relative; overflow: hidden; gap: 13px; padding-inline: 18px; font-size: 14px; }
.home-hero .button svg,
.uluk-action .button svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.home-hero .button-secondary { color: var(--white); background: rgba(3, 30, 21, 0.55); border-color: var(--alive); }
.home-hero .button-secondary:hover { color: var(--night); background: var(--alive); }
.home-hero .button-yellow::after,
.home-page .uluk-action .button::after {
  content: "";
  position: absolute;
  inset: -100% auto -100% -45%;
  width: 28%;
  background: rgba(255, 255, 255, 0.52);
  transform: skewX(-24deg);
  transition: left 550ms cubic-bezier(.16, 1, .3, 1);
}
.home-hero .button-yellow:hover::after,
.home-page .uluk-action .button:hover::after { left: 120%; }

.hero-stage { position: absolute; inset: 0 calc((100vw - min(1180px, 100vw - 40px)) / -2) 0 37%; z-index: 1; }
.hero-night { position: absolute; inset: 5% 0 0 0; margin: 0; }
.hero-night::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--night-deep) 0%, transparent 22%, transparent 84%, rgba(1, 18, 13, 0.42));
  pointer-events: none;
}
.hero-night img { width: 100%; height: 100%; object-fit: cover; object-position: center 48%; filter: contrast(1.08) saturate(1.08); }
.hero-night figcaption {
  position: absolute;
  left: 35%;
  bottom: 22px;
  z-index: 5;
  margin: 0;
  color: #dcece4;
  font-size: 12px;
}
.hero-night figcaption a { color: var(--solar); text-underline-offset: 3px; }
.hero-photo {
  position: absolute;
  right: 2.2%;
  z-index: 4;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.48);
  opacity: 0;
  transform: translateX(56px) rotate(2deg);
}
.home-page.is-ready .hero-photo { animation: hero-photo-in 900ms 420ms cubic-bezier(.16, 1, .3, 1) forwards; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo-students { top: 5%; width: min(25vw, 340px); aspect-ratio: 0.88; border-radius: 44px 6px 44px 44px; }
.hero-photo-work { right: 0; bottom: 0; width: min(28vw, 390px); aspect-ratio: 1.5; border-radius: 54px 6px 6px 54px; }
.hero-energy { position: absolute; inset: 0; z-index: 5; width: 100%; height: 100%; overflow: visible; pointer-events: none; }
.hero-energy path { fill: none; stroke-linecap: round; stroke-linejoin: round; }
.hero-energy .energy-shadow { stroke: rgba(25, 184, 103, 0.52); stroke-width: 14; filter: blur(10px); }
.hero-energy .energy-line { stroke: var(--solar); stroke-width: 4; stroke-dasharray: 1360; stroke-dashoffset: 1360; }
.home-page.is-ready .hero-energy .energy-line { animation: energy-draw 1700ms 620ms cubic-bezier(.16, 1, .3, 1) forwards; }
.hero-energy circle { fill: var(--night); stroke: var(--solar); stroke-width: 5; filter: drop-shadow(0 0 8px var(--solar)); }

.home-page .proof-band {
  position: relative;
  z-index: 8;
  scroll-margin-top: 82px;
  color: var(--white);
  background: rgba(2, 36, 25, 0.96);
  border-block: 1px solid rgba(108, 224, 155, 0.28);
  box-shadow: 0 -24px 80px rgba(0, 0, 0, 0.32);
}
.home-page .proof-grid { position: relative; }
.home-page .proof-grid::before {
  content: "";
  position: absolute;
  left: -10vw;
  right: -10vw;
  top: 50%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--alive), var(--electric), var(--solar), transparent);
  opacity: 0.5;
}
.home-page .proof-item { position: relative; z-index: 1; min-height: 138px; padding: 30px 38px; background: rgba(2, 36, 25, 0.92); }
.home-page .proof-item + .proof-item { border-color: rgba(255, 255, 255, 0.14); }
.home-page .proof-item strong { color: var(--solar); font-size: clamp(38px, 4.2vw, 62px); letter-spacing: -0.045em; }
.home-page .proof-item:nth-child(1) strong { color: var(--alive); }
.home-page .proof-item:nth-child(2) strong { color: var(--electric); }
.home-page .proof-item span { color: #d6e8df; }

.impact-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--night-deep) url("assets/topography.svg") center / cover;
}
.impact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 27% 56%, rgba(25, 184, 103, 0.14), transparent 34%);
  pointer-events: none;
}
.home-page .impact-section .section-heading { max-width: 1120px; margin-inline: 0; text-align: left; }
.home-page .impact-section .section-heading h2 { max-width: 980px; color: var(--white); font-size: clamp(54px, 6.2vw, 88px); line-height: 0.98; }
.home-page .impact-section .section-heading p { max-width: 650px; color: #aecabc; }
.impact-composition { position: relative; display: grid; grid-template-columns: 1.08fr 0.92fr; gap: clamp(44px, 6vw, 88px); align-items: center; }
.impact-media { position: relative; min-height: 680px; margin: 0; overflow: hidden; border-radius: 2px 90px 2px 2px; box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42); }
.impact-media img { width: 100%; height: 100%; object-fit: cover; clip-path: inset(0 100% 0 0); transition: clip-path 1100ms cubic-bezier(.16, 1, .3, 1); }
.impact-media.is-visible img { clip-path: inset(0); }
.impact-media::after { content: ""; position: absolute; inset: 55% 0 0; background: linear-gradient(transparent, rgba(1, 18, 13, 0.84)); }
.impact-media figcaption { position: absolute; left: 24px; bottom: 21px; z-index: 2; color: var(--white); font-size: 13px; }
.home-page .impact-grid { display: block; }
.home-page .impact-item { position: relative; display: grid; grid-template-columns: 62px 1fr; gap: 0 20px; padding: 28px 0; border-top: 1px solid rgba(255, 255, 255, 0.15); transition: padding 280ms ease, color 280ms ease; }
.home-page .impact-item:last-child { border-bottom: 1px solid rgba(255, 255, 255, 0.15); }
.home-page .impact-item + .impact-item { border-left: 0; }
.home-page .impact-item:hover { padding-left: 16px; }
.home-page .impact-icon { grid-row: span 2; width: 52px; height: 52px; margin: 0; color: var(--alive); }
.home-page .impact-item:nth-child(2) .impact-icon { color: var(--solar); }
.home-page .impact-item:nth-child(3) .impact-icon { color: var(--electric); }
.home-page .impact-item:nth-child(4) .impact-icon { color: var(--white); }
.home-page .impact-item h3 { margin: 0 0 6px; color: var(--white); font-size: clamp(28px, 3vw, 42px); line-height: 1; letter-spacing: -0.04em; }
.home-page .impact-item p { max-width: 430px; color: #a9c4b7; }

.home-page .stories-section {
  position: relative;
  color: var(--white);
  background: var(--night) url("assets/topography.svg") center / 1300px auto repeat-y;
}
.home-page .stories-section .section-heading { max-width: 980px; margin-inline: 0; text-align: left; }
.home-page .stories-section .section-heading h2 { color: var(--white); font-size: clamp(54px, 6.5vw, 92px); line-height: 0.96; }
.home-page .story-timeline { --story-progress: 0; padding-left: 124px; }
.home-page .story-timeline::before,
.home-page .story-timeline::after { left: 58px; width: 3px; }
.home-page .story-timeline::before { background: rgba(255, 255, 255, 0.18); }
.home-page .story-timeline::after {
  content: "";
  position: absolute;
  top: 0;
  height: calc(var(--story-progress) * 100%);
  background: linear-gradient(var(--alive), var(--solar), var(--electric));
  box-shadow: 0 0 18px rgba(108, 224, 155, 0.62);
}
.home-page .story-entry,
.home-page .story-entry:nth-child(even) {
  min-height: 680px;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(48px, 7vw, 100px);
  padding: 94px 0;
  border-color: rgba(255, 255, 255, 0.13);
}
.home-page .story-entry::before { left: -66px; top: 108px; width: 18px; height: 18px; background: var(--night); border-color: var(--alive); box-shadow: 0 0 18px rgba(25, 184, 103, 0.65); }
.home-page .story-entry:nth-child(even) .story-copy { order: 1; padding: 0; }
.home-page .story-entry:nth-child(even) .story-media { order: 2; }
.home-page .story-copy { position: relative; z-index: 2; padding: 0; }
.home-page .story-date { margin-bottom: 16px; color: var(--alive); font-size: clamp(54px, 6vw, 88px); line-height: 0.82; letter-spacing: -0.06em; text-transform: none; }
.home-page .story-entry:nth-child(3) .story-date { color: var(--electric); }
.home-page .story-copy h3 { font-size: clamp(38px, 4.2vw, 62px); line-height: 0.98; }
.home-page .story-copy > p:not(.story-date) { color: #b8d0c4; }
.home-page .story-media { position: relative; overflow: hidden; border-radius: 2px 76px 2px 2px; clip-path: inset(0 0 100% 0); transition: clip-path 1000ms 120ms cubic-bezier(.16, 1, .3, 1); }
.home-page .story-entry.is-visible .story-media { clip-path: inset(0); }
.home-page .story-media img { height: 100%; min-height: 470px; aspect-ratio: auto; border-radius: 0; object-fit: cover; transform: scale(1.06); transition: transform 1000ms cubic-bezier(.16, 1, .3, 1); }
.home-page .story-entry.is-visible .story-media img { transform: scale(1); }
.home-page .story-media figcaption { position: absolute; left: 18px; bottom: 16px; z-index: 2; margin: 0; padding: 7px 10px; color: var(--white); background: rgba(1, 18, 13, 0.82); border-radius: 3px; }
.home-page .story-link { color: var(--solar); }
.home-page .story-result { color: var(--white); background: rgba(25, 184, 103, 0.12); border-color: var(--alive); }

.gallery-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--night-deep);
}
.gallery-section::before { content: ""; position: absolute; inset: 0; background: url("assets/topography.svg") center / cover; opacity: 0.72; pointer-events: none; }
.home-page .gallery-section .section-heading { max-width: 900px; margin-inline: 0; text-align: left; }
.home-page .gallery-section .section-heading h2 { color: var(--white); font-size: clamp(54px, 7vw, 96px); }
.home-page .gallery-section .section-heading p { color: #aecabc; }
.home-page .gallery-grid { position: relative; grid-template-columns: repeat(12, 1fr); grid-template-rows: repeat(5, 185px); grid-auto-rows: 185px; gap: 18px; perspective: 1000px; }
.home-page .gallery-item { grid-column: auto; grid-row: auto; min-height: 0; border: 1px solid rgba(255, 255, 255, 0.14); border-radius: 3px 34px 3px 3px; box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3); transform-style: preserve-3d; transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease; }
.home-page .gallery-item { transform: perspective(1000px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)); }
.home-page .gallery-item:nth-child(1) { grid-column: 1 / span 7; grid-row: 1 / span 2; }
.home-page .gallery-item:nth-child(2) { grid-column: 8 / span 5; grid-row: 1 / span 3; }
.home-page .gallery-item:nth-child(3) { grid-column: 1 / span 4; grid-row: 3 / span 2; }
.home-page .gallery-item:nth-child(4) { grid-column: 5 / span 3; grid-row: 3 / span 2; }
.home-page .gallery-item:nth-child(5) { grid-column: 8 / span 5; grid-row: 4 / span 2; }
.home-page .gallery-item::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(transparent, rgba(1, 18, 13, 0.88)); pointer-events: none; }
.home-page .gallery-item:hover,
.home-page .gallery-item:focus-visible { z-index: 3; border-color: rgba(255, 210, 54, 0.76); box-shadow: 0 34px 70px rgba(0, 0, 0, 0.48), 0 0 0 1px rgba(255, 210, 54, 0.2); }
.home-page .gallery-item span { z-index: 2; color: var(--white); background: none; transform: translateY(10px); opacity: 0.78; transition: opacity 260ms ease, transform 260ms ease; }
.home-page .gallery-item:hover span,
.home-page .gallery-item:focus-visible span { opacity: 1; transform: translateY(0); }

.home-page .process-section {
  --process-progress: 0;
  color: var(--white);
  background: var(--night) url("assets/topography.svg") right top / 1000px auto no-repeat;
}
.home-page .process-section::before { display: none; }
.home-page .process-section .section-heading { max-width: 760px; margin-inline: 0; text-align: left; }
.home-page .process-section .section-heading h2 { color: var(--white); font-size: clamp(50px, 5.8vw, 82px); }
.home-page .process-section .section-heading p { color: #b8d0c4; }
.home-page .process-list { position: relative; gap: 0; padding-top: 24px; }
.home-page .process-list { contain: inline-size paint; }
.home-page .process-list::before,
.home-page .process-list::after { content: ""; position: absolute; left: 5%; right: 5%; top: 132px; height: 3px; }
.home-page .process-list::before { background: rgba(255, 255, 255, 0.17); }
.home-page .process-list::after { right: auto; width: calc(var(--process-progress) * 90%); background: linear-gradient(90deg, var(--alive), var(--solar), var(--electric)); box-shadow: 0 0 18px rgba(40, 168, 233, 0.44); }
.home-page .process-list li { position: relative; z-index: 1; padding: 0 18px; }
.home-page .process-list li + li::before { display: none; }
.home-page .process-list strong {
  width: auto;
  height: auto;
  display: block;
  margin: 0 0 48px;
  color: transparent;
  background: none;
  border-radius: 0;
  font-size: clamp(82px, 8vw, 120px);
  font-weight: 780;
  line-height: 0.9;
  letter-spacing: -0.07em;
  -webkit-text-stroke: 2px var(--alive);
}
.home-page .process-list li:nth-child(3) strong { -webkit-text-stroke-color: var(--solar); }
.home-page .process-list li:nth-child(n+4) strong { -webkit-text-stroke-color: var(--electric); }
.home-page .process-list li::after { content: ""; position: absolute; left: 19px; top: 103px; width: 18px; height: 18px; background: var(--night); border: 4px solid var(--alive); border-radius: 50%; box-shadow: 0 0 16px rgba(25, 184, 103, 0.64); }
.home-page .process-list li:nth-child(3)::after { border-color: var(--solar); }
.home-page .process-list li:nth-child(n+4)::after { border-color: var(--electric); }
.home-page .process-list h3 { color: var(--white); font-size: 20px; }
.home-page .process-list p { color: #a9c4b7; }

.home-page .uluk-section {
  color: var(--white);
  background: var(--night-deep) url("assets/topography.svg") center / cover;
  border-top: 1px solid rgba(108, 224, 155, 0.18);
}
.home-page .uluk-section::before { inset: -80px -80px auto auto; width: 400px; height: 400px; opacity: 0.12; }
.home-page .uluk-intro { grid-template-columns: 0.92fr 1.08fr; gap: 22px 70px; }
.home-page .uluk-intro h2 { color: var(--white); font-size: clamp(66px, 8.3vw, 112px); }
.home-page .uluk-intro h2::first-line { color: var(--white); }
.home-page .uluk-intro > p { color: #b8d0c4; }
.home-page .investment { display: grid; grid-template-columns: 132px 1fr; gap: 30px; align-items: center; padding: 0; border: 0; }
.donation-ring { position: relative; width: 126px; aspect-ratio: 1; display: grid; place-items: center; }
.donation-ring svg { position: absolute; inset: 0; width: 100%; height: 100%; transform: rotate(-90deg); }
.donation-ring circle { fill: none; stroke-width: 9; }
.donation-ring .ring-track { stroke: rgba(255, 255, 255, 0.16); }
.donation-ring .ring-value { stroke: var(--alive); stroke-dasharray: 320; stroke-dashoffset: 320; stroke-linecap: round; filter: drop-shadow(0 0 7px rgba(25, 184, 103, 0.55)); }
.donation-ring strong { color: var(--white); font-size: 34px; letter-spacing: -0.05em; }
.campaign-metrics { display: grid; grid-template-columns: repeat(3, 1fr); }
.campaign-metrics > div { min-height: 92px; padding: 0 20px; border-left: 1px solid rgba(255, 255, 255, 0.22); }
.campaign-metrics > div:first-child { padding-left: 0; border-left: 0; }
.campaign-metrics span,
.campaign-metrics small { display: block; color: #a9c4b7; font-size: 12px; }
.campaign-metrics strong { display: block; margin-top: 7px; color: var(--alive); font-size: clamp(24px, 2.2vw, 34px); line-height: 1; white-space: nowrap; }
.campaign-metrics .investment-total { margin: 7px 0 0; color: var(--solar); font-size: clamp(28px, 2.8vw, 40px); }
.campaign-metrics > div:last-child strong { color: var(--white); font-size: 18px; }
.home-page .uluk-media { grid-template-columns: 1.35fr 0.65fr; align-items: stretch; gap: 16px; }
.home-page .uluk-photo { min-height: 470px; border: 1px solid rgba(255, 255, 255, 0.18); border-radius: 2px 48px 2px 2px; }
.home-page .uluk-photo-building,
.home-page .uluk-photo-sign { aspect-ratio: auto; }
.home-page .uluk-photo img { transform: scale(1.03); }
.home-page .uluk-photo-building img { object-position: center 43%; }
.home-page .uluk-photo-sign img { object-position: 52% center; }
.home-page .energy-path {
  gap: 0;
  margin-top: 0;
  padding: 34px 0;
  color: var(--white);
  background: rgba(2, 36, 25, 0.84);
  border-block: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0;
  box-shadow: none;
}
.home-page .energy-path::before { top: 70px; border-color: rgba(108, 224, 155, 0.38); }
.home-page .energy-path article { padding-inline: 20px; }
.home-page .energy-path article + article { border-left: 1px solid rgba(255, 255, 255, 0.16); }
.home-page .path-icon { width: 64px; height: 64px; color: var(--alive); background: var(--night-soft); border-color: rgba(108, 224, 155, 0.42); }
.home-page .energy-path article:nth-child(3) .path-icon { color: var(--solar); }
.home-page .energy-path article:nth-child(n+4) .path-icon { color: var(--electric); }
.home-page .energy-path h3 { color: var(--white); }
.home-page .logistics-note { background: rgba(40, 168, 233, 0.08); border-color: rgba(40, 168, 233, 0.32); }
.home-page .uluk-action { position: relative; overflow: hidden; padding-block: 54px 8px; }
.home-page .uluk-action h3 { max-width: 630px; color: var(--white); font-size: clamp(44px, 5vw, 72px); line-height: 0.95; letter-spacing: -0.05em; }
.home-page .uluk-action .button { position: relative; overflow: hidden; min-height: 62px; padding-inline: 34px; }

.home-page .sources { color: var(--white); background: var(--night-deep); }
.home-page .sources h2 { color: var(--white); }
.home-page .source-links a { color: var(--electric); }
.home-page .site-footer { border-top: 1px solid rgba(255, 255, 255, 0.1); background: #010d09; }

@supports (animation-timeline: view()) {
  .home-page .impact-media img,
  .home-page .uluk-photo img { animation: media-breathe linear both; animation-timeline: view(); animation-range: entry 0% cover 100%; }
}

@media (max-width: 1080px) {
  .home-hero-layout { grid-template-columns: 0.9fr 1.1fr; }
  .hero-stage { left: 43%; }
  .hero-photo-students { width: 27vw; }
  .home-page .story-timeline { padding-left: 92px; }
  .home-page .story-timeline::before,
  .home-page .story-timeline::after { left: 38px; }
  .home-page .story-entry::before { left: -63px; }
}

@media (max-width: 980px) {
  .home-hero { min-height: 930px; }
  .home-hero-layout { display: block; padding-top: 70px; }
  .home-hero .hero-copy { width: min(620px, 84%); }
  .home-hero h1 { font-size: clamp(72px, 13vw, 112px); }
  .hero-stage { inset: 29% -20px 0 18%; }
  .hero-photo-students { width: min(32vw, 290px); }
  .hero-photo-work { width: min(36vw, 340px); }
  .impact-composition { grid-template-columns: 1fr; }
  .impact-media { min-height: 560px; }
  .home-page .story-entry,
  .home-page .story-entry:nth-child(even) { grid-template-columns: 1fr; min-height: auto; }
  .home-page .story-entry .story-copy,
  .home-page .story-entry:nth-child(even) .story-copy { order: 1; }
  .home-page .story-entry .story-media,
  .home-page .story-entry:nth-child(even) .story-media { order: 2; }
  .home-page .process-list { grid-template-columns: repeat(5, minmax(165px, 1fr)); overflow-x: auto; padding-bottom: 24px; scrollbar-color: var(--alive) rgba(255, 255, 255, 0.08); }
  .home-page .process-list::before,
  .home-page .process-list::after { min-width: 760px; }
  .home-page .uluk-intro { grid-template-columns: 1fr; grid-template-areas: "title" "lede" "investment"; }
  .home-page .investment { margin-top: 30px; }
}

@media (max-width: 760px) {
  .home-page .site-nav { background: rgba(1, 18, 13, 0.98); border-color: rgba(255, 255, 255, 0.12); }
  .home-page .menu-toggle span:not(.sr-only) { background: var(--white); }
  .home-page .site-nav a[aria-current="page"] { box-shadow: inset 4px 0 0 var(--solar); }
  .home-hero { min-height: 940px; }
  .home-hero-layout { padding-top: 54px; }
  .home-hero .hero-copy { width: 100%; }
  .home-hero .hero-copy { margin-top: 0; }
  .home-hero h1 { font-size: clamp(64px, 21vw, 86px); line-height: 0.82; }
  .home-hero .hero-lede { font-size: 22px; }
  .home-hero .hero-note { font-size: 14px; }
  .hero-stage { inset: 49% -14px 0 0; }
  .hero-night::after { background: linear-gradient(180deg, var(--night-deep), transparent 24%, rgba(1, 18, 13, 0.25)); }
  .hero-night figcaption { left: 16px; right: 16px; bottom: 12px; }
  .hero-photo-students { top: 2%; right: 3%; width: 42vw; border-radius: 28px 4px 28px 28px; }
  .hero-photo-work { display: none; }
  .hero-energy { transform: scale(1.2) translate(-8%, 5%); }
  .home-page .proof-grid { grid-template-columns: 1fr; }
  .home-page .proof-grid::before { display: none; }
  .home-page .proof-item { min-height: 112px; padding-inline: 10px; }
  .home-page .impact-section .section-heading h2,
  .home-page .stories-section .section-heading h2,
  .home-page .gallery-section .section-heading h2 { font-size: 48px; }
  .impact-media { min-height: 430px; border-radius: 2px 48px 2px 2px; }
  .home-page .impact-item { grid-template-columns: 52px 1fr; }
  .home-page .impact-item h3 { font-size: 30px; }
  .home-page .story-timeline { padding-left: 42px; }
  .home-page .story-timeline::before,
  .home-page .story-timeline::after { left: 7px; }
  .home-page .story-entry,
  .home-page .story-entry:nth-child(even) { gap: 28px; padding: 62px 0; }
  .home-page .story-entry::before { left: -42px; top: 70px; }
  .home-page .story-date { font-size: 58px; }
  .home-page .story-copy h3 { font-size: 38px; }
  .home-page .story-media { border-radius: 2px 42px 2px 2px; }
  .home-page .story-media img { min-height: 310px; }
  .home-page .gallery-grid { display: flex; gap: 14px; margin-right: -14px; padding-right: 14px; overflow-x: auto; scroll-snap-type: x mandatory; }
  .home-page .gallery-item,
  .home-page .gallery-item:nth-child(n) { flex: 0 0 84vw; height: 520px; grid-column: auto; grid-row: auto; scroll-snap-align: start; }
  .home-page .process-section .section-heading h2 { font-size: 48px; }
  .home-page .process-list { margin-right: -14px; padding-right: 14px; }
  .home-page .process-list li { display: block; grid-template-columns: none; min-width: 190px; padding-inline: 12px; }
  .home-page .process-list li::after { left: 13px; }
  .home-page .process-list strong { margin-bottom: 52px; }
  .home-page .process-list h3 { min-height: 48px; }
  .home-page .investment { grid-template-columns: 100px 1fr; gap: 18px; }
  .donation-ring { width: 96px; }
  .donation-ring strong { font-size: 27px; }
  .campaign-metrics { grid-template-columns: 1fr; }
  .campaign-metrics > div { min-height: auto; padding: 12px 0; border-left: 0; border-top: 1px solid rgba(255, 255, 255, 0.18); }
  .campaign-metrics > div:first-child { border-top: 0; }
  .home-page .uluk-media { grid-template-columns: 1fr; }
  .home-page .uluk-photo { min-height: 360px; }
  .home-page .energy-path { padding: 12px 0; }
  .home-page .energy-path article { padding-inline: 0; }
  .home-page .energy-path article + article { border-left: 0; }
  .home-page .uluk-action h3 { font-size: 48px; }
}

@media (prefers-reduced-motion: reduce) {
  ::view-transition-old(root),
  ::view-transition-new(root) { animation: none; }
  .home-page .home-hero h1 span,
  .home-page .hero-photo { opacity: 1; filter: none; transform: none; animation: none; }
  .home-page .hero-energy .energy-line { stroke-dashoffset: 0; animation: none; }
  .home-page [data-parallax],
  .home-page [data-tilt] { transform: none !important; }
  .home-page .impact-media img,
  .home-page .story-media { clip-path: inset(0); }
  .home-page .impact-media img,
  .home-page .uluk-photo img { animation: none; }
}

@keyframes hero-word-in { to { opacity: 1; transform: none; filter: none; } }
@keyframes hero-photo-in { to { opacity: 1; transform: none; } }
@keyframes energy-draw { to { stroke-dashoffset: 0; } }
@keyframes media-breathe { from { transform: scale(1.08); } to { transform: scale(1); } }
@keyframes page-out { to { opacity: 0; transform: scale(0.985); filter: blur(4px); } }
@keyframes page-in { from { opacity: 0; clip-path: inset(0 0 100% 0); } to { opacity: 1; clip-path: inset(0); } }

/* --------------------------------------------------------------------------
   Voluntarios · archivo de reconocimiento · v6
   -------------------------------------------------------------------------- */

.recognition-page {
  --recognition-night: #031e15;
  --recognition-deep: #01120d;
  --recognition-green: #18b868;
  --recognition-yellow: #ffd127;
  --recognition-blue: #28a8e9;
  color: var(--white);
  background: var(--recognition-deep);
}

.recognition-page .site-header {
  color: var(--white);
  background: rgba(1, 18, 13, 0.88);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.recognition-page .brand,
.recognition-page .site-nav a { color: var(--white); }
.recognition-page .brand small { color: #8ec6a9; }
.recognition-page .site-nav a:hover,
.recognition-page .site-nav a[aria-current="page"] { color: var(--recognition-green); }
.recognition-page .site-nav a[aria-current="page"] { text-decoration-color: var(--recognition-green); }
.recognition-page .site-nav .nav-cta { color: var(--recognition-deep); background: var(--recognition-yellow); }

.recognition-hero {
  position: relative;
  min-height: clamp(640px, 68vh, 720px);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(1, 18, 13, 0.98) 0 30%, rgba(1, 18, 13, 0.22) 58%, rgba(1, 18, 13, 0.05)),
    var(--recognition-night) url("assets/topography.svg") left center / 720px auto no-repeat;
}

.recognition-hero-layout {
  position: relative;
  min-height: clamp(640px, 68vh, 720px);
  display: grid;
  grid-template-columns: minmax(420px, 0.9fr) minmax(0, 1.3fr);
  align-items: start;
  gap: 42px;
  padding-block: 24px 80px;
}

.recognition-hero-copy { position: relative; z-index: 3; align-self: center; }
.recognition-hero-copy h1 {
  max-width: 620px;
  margin: 0;
  color: var(--white);
  font-size: clamp(66px, 5.8vw, 90px);
  line-height: 0.84;
  letter-spacing: -0.075em;
}
.recognition-hero-copy h1 span { display: block; white-space: nowrap; }
.recognition-hero-copy h1 span:nth-child(2) { color: var(--recognition-green); }
.recognition-hero-copy h1 span:nth-child(3) { color: var(--recognition-yellow); }
.recognition-hero-copy > p {
  max-width: 510px;
  margin: 34px 0 0;
  color: #d5e3dc;
  font-size: clamp(18px, 1.5vw, 23px);
  line-height: 1.58;
}

.recognition-hero-media {
  position: relative;
  z-index: 1;
  min-width: 0;
  height: clamp(440px, 50vh, 560px);
  margin: 0;
  overflow: hidden;
  background: #0b2b20;
  border-radius: 3px 64px 3px 64px;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.34);
}
.recognition-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(1, 18, 13, 0.28), transparent 35%);
}
.recognition-hero-media img {
  width: 100%;
  height: 110%;
  object-fit: cover;
  object-position: center 46%;
}
.recognition-hero-media figcaption {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 18px;
  left: 22px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  text-align: right;
}

.recognition-energy {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 28px;
  width: 72%;
  height: auto;
  overflow: visible;
  pointer-events: none;
  filter: drop-shadow(0 0 9px rgba(255, 209, 39, 0.55));
}
.recognition-energy path {
  fill: none;
  stroke: url("#recognition-gradient");
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 1250;
  animation: recognition-line 1.8s 0.35s cubic-bezier(.16, 1, .3, 1) both;
}

.recognition-names,
.recognition-history {
  color: var(--white);
  background: var(--recognition-night) url("assets/topography.svg") right center / 920px auto no-repeat;
}
@media (min-width: 901px) {
  .recognition-names { padding-top: 70px; }
}
.recognition-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  align-items: end;
  gap: 42px;
  margin-bottom: clamp(50px, 7vw, 88px);
}
.recognition-heading h2 {
  max-width: 880px;
  margin: 0;
  color: var(--white);
  font-size: clamp(52px, 6vw, 90px);
  line-height: 0.96;
  letter-spacing: -0.055em;
}
.recognition-heading h2 span { color: var(--recognition-yellow); }
.recognition-heading > p {
  max-width: 520px;
  margin: 0 0 8px;
  color: #a9c4b7;
  font-size: 17px;
}
.recognition-names .recognition-heading { grid-template-columns: 1fr; gap: 18px; }
.recognition-names .recognition-heading h2 { font-size: clamp(52px, 5.1vw, 78px); }
.recognition-names .recognition-heading > p { max-width: 680px; }
@media (min-width: 601px) {
  .recognition-names .recognition-heading h2 { white-space: nowrap; }
}

.recognition-person-list { border-top: 1px solid rgba(255, 255, 255, 0.18); }
.recognition-person {
  position: relative;
  display: grid;
  grid-template-columns: 180px minmax(280px, 1.1fr) minmax(260px, 0.9fr);
  align-items: center;
  gap: 34px;
  min-height: 190px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
.recognition-person::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 140px;
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, var(--recognition-green), transparent);
}
.recognition-person:nth-child(2)::before { background: linear-gradient(90deg, var(--recognition-blue), transparent); }
.recognition-index {
  color: transparent;
  font-size: clamp(82px, 8vw, 118px);
  font-weight: 760;
  line-height: 1;
  letter-spacing: -0.08em;
  -webkit-text-stroke: 2px var(--recognition-green);
}
.recognition-person:nth-child(2) .recognition-index { -webkit-text-stroke-color: var(--recognition-blue); }
.recognition-person-name h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(31px, 3vw, 47px);
  line-height: 1.05;
}
.recognition-person-name > p {
  margin: 8px 0 0;
  color: var(--recognition-green);
  font-size: 19px;
  font-weight: 760;
}
.recognition-person:nth-child(2) .recognition-person-name > p { color: var(--recognition-blue); }
.recognition-person-copy > p { margin: 0 0 14px; color: #c3d5cc; font-size: 18px; }
.recognition-person-copy a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--recognition-yellow);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.inline-arrow {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.recognition-collective {
  color: var(--white);
  background:
    radial-gradient(circle at 72% 18%, rgba(24, 184, 104, 0.12), transparent 30%),
    var(--recognition-deep);
}
.collective-heading { grid-template-columns: 1.08fr 0.92fr; }
.collective-list { border: 1px solid rgba(91, 198, 137, 0.32); }
.collective-entry {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.58fr);
  min-height: 480px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}
.collective-entry:last-child { border-bottom: 0; }
.collective-entry-reverse { grid-template-columns: minmax(0, 0.58fr) minmax(280px, 0.42fr); }
.collective-entry-reverse .collective-copy { order: 2; }
.collective-entry-reverse figure { order: 1; }
.collective-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 5vw, 72px);
}
.collective-copy::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  background: linear-gradient(var(--recognition-green), var(--recognition-yellow), var(--recognition-blue));
}
.collective-copy > span {
  margin-bottom: 38px;
  color: transparent;
  font-size: 58px;
  font-weight: 760;
  line-height: 1;
  -webkit-text-stroke: 1.5px var(--recognition-green);
}
.collective-entry:nth-child(2) .collective-copy > span { -webkit-text-stroke-color: var(--recognition-yellow); }
.collective-entry:nth-child(3) .collective-copy > span { -webkit-text-stroke-color: var(--recognition-blue); }
.collective-copy h3 {
  max-width: 440px;
  margin: 0;
  color: var(--white);
  font-size: clamp(34px, 3.2vw, 50px);
  line-height: 1.02;
}
.collective-copy p { max-width: 420px; margin: 18px 0 0; color: #b8d0c4; font-size: 17px; }
.collective-entry figure {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: #0b2b20;
}
.collective-entry img { width: 100%; height: 112%; object-fit: cover; }
.collective-entry:first-child img { object-position: center; }
.collective-entry:nth-child(2) img { object-position: center 44%; }

.recognition-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 0;
  padding: 52px 0 0;
  list-style: none;
}
.recognition-timeline::before {
  content: "";
  position: absolute;
  top: 18px;
  right: 7%;
  left: 7%;
  height: 3px;
  background: linear-gradient(90deg, var(--recognition-green), var(--recognition-yellow), var(--recognition-blue));
  box-shadow: 0 0 18px rgba(91, 224, 143, 0.44);
}
.recognition-timeline li {
  position: relative;
  padding: 12px clamp(18px, 3vw, 44px) 0;
  text-align: center;
}
.recognition-timeline li::before {
  content: "";
  position: absolute;
  top: -43px;
  left: 50%;
  width: 19px;
  height: 19px;
  background: var(--recognition-night);
  border: 4px solid var(--recognition-green);
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(91, 224, 143, 0.52);
  transform: translateX(-50%);
}
.recognition-timeline li:nth-child(2)::before { border-color: var(--recognition-yellow); }
.recognition-timeline li:nth-child(3)::before { border-color: var(--recognition-blue); }
.recognition-timeline strong { color: var(--recognition-green); font-size: 34px; }
.recognition-timeline li:nth-child(2) strong { color: var(--recognition-yellow); }
.recognition-timeline li:nth-child(3) strong { color: var(--recognition-blue); }
.recognition-timeline p { max-width: 330px; margin: 10px auto 0; color: #d5e3dc; font-size: 18px; }

.recognition-register {
  color: var(--white);
  background: var(--recognition-deep) url("assets/topography.svg") left bottom / 900px auto no-repeat;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.recognition-register-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: center;
  gap: clamp(54px, 8vw, 124px);
}
.recognition-register h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(54px, 6.3vw, 92px);
  line-height: 0.94;
  letter-spacing: -0.06em;
}
.recognition-register h2 span { color: var(--recognition-green); }
.recognition-register-layout > div > p { max-width: 560px; margin: 0 0 28px; color: #d5e3dc; font-size: 20px; }
.recognition-register .button { display: inline-flex; gap: 34px; }
.recognition-email { display: block; width: fit-content; margin-top: 24px; color: var(--recognition-blue); font-size: 18px; font-weight: 740; }
.recognition-page .site-footer { color: #b8d0c4; background: #000d09; border-top: 1px solid rgba(255, 255, 255, 0.14); }
.recognition-page .site-footer strong { color: var(--white); }

/* Tablet also needs the compact navigation: the full menu cannot fit safely. */
@media (max-width: 900px) {
  :root { --shell: min(100% - 32px, 820px); }
  .nav-wrap { min-height: 70px; }
  .brand small { display: none; }
  .menu-toggle {
    width: 44px;
    height: 44px;
    display: grid;
    place-content: center;
    gap: 5px;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 6px;
  }
  .menu-toggle span:not(.sr-only) {
    width: 24px;
    height: 2px;
    display: block;
    background: var(--green-950);
    transition: transform 180ms ease, opacity 180ms ease;
  }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(4) { transform: translateY(-7px) rotate(-45deg); }
  .site-nav {
    position: fixed;
    inset: 70px 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    padding: 18px 20px 28px;
    background: var(--white);
    border-top: 1px solid var(--line);
    box-shadow: 0 24px 45px rgba(16, 33, 43, 0.14);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 14px 8px; font-size: 17px; }
  .site-nav .nav-cta { margin-top: 8px; padding-inline: 18px; text-align: center; }
  .site-nav a[aria-current="page"] { text-decoration: none; box-shadow: inset 4px 0 0 var(--yellow); }
  .home-page .site-nav,
  .recognition-page .site-nav { background: rgba(1, 18, 13, 0.98); border-color: rgba(255, 255, 255, 0.12); }
  .home-page .menu-toggle span:not(.sr-only),
  .recognition-page .menu-toggle span:not(.sr-only) { background: var(--white); }
  .home-page .site-nav a[aria-current="page"],
  .recognition-page .site-nav a[aria-current="page"] { box-shadow: inset 4px 0 0 var(--solar); }

  .home-hero { min-height: 1080px; }
  .home-hero-layout { padding-top: 56px; }
  .home-hero .hero-copy { width: 100%; max-width: 620px; }
  .home-hero h1 { font-size: clamp(76px, 12vw, 96px); }
  .hero-stage { inset: 54% 0 0; }
  .hero-photo-students { width: min(34vw, 270px); }

  .recognition-hero,
  .recognition-hero-layout { min-height: auto; }
  .recognition-hero-layout { grid-template-columns: 1fr; gap: 52px; padding-block: 66px 110px; }
  .recognition-hero-copy { max-width: 680px; }
  .recognition-hero-copy h1 { font-size: clamp(72px, 12vw, 96px); }
  .recognition-hero-media { height: 520px; }
  .recognition-energy { bottom: 34px; width: 96%; }
  .recognition-heading { grid-template-columns: 1fr; gap: 22px; }
  .recognition-person { grid-template-columns: 126px minmax(0, 1fr); gap: 12px 30px; padding-block: 34px; }
  .recognition-person::before { left: 94px; }
  .recognition-person-copy { grid-column: 2; }
  .collective-entry,
  .collective-entry-reverse { grid-template-columns: minmax(250px, 0.44fr) minmax(0, 0.56fr); min-height: 410px; }
  .collective-entry-reverse .collective-copy { order: 2; }
  .collective-entry-reverse figure { order: 1; }
  .collective-copy { padding: 36px; }
  .recognition-register-layout { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .recognition-hero-layout { gap: 38px; padding-block: 52px 86px; }
  .recognition-hero-copy h1 { font-size: clamp(55px, 17vw, 72px); }
  .recognition-hero-copy > p { margin-top: 24px; font-size: 17px; }
  .recognition-hero-media { height: 420px; border-radius: 2px 42px 2px 42px; }
  .recognition-hero-media img { object-position: 43% center; }
  .recognition-hero-media figcaption { font-size: 11px; text-align: left; }
  .recognition-energy { bottom: 22px; width: 120%; }
  .recognition-heading h2 { font-size: 48px; }
  .recognition-person {
    grid-template-columns: 82px minmax(0, 1fr);
    align-items: start;
    gap: 18px;
    padding-block: 30px;
  }
  .recognition-person::before { display: none; }
  .recognition-index { font-size: 66px; }
  .recognition-person-name h3 { font-size: 30px; }
  .recognition-person-name > p { font-size: 16px; }
  .recognition-person-copy { grid-column: 1 / -1; }
  .collective-list { border-right: 0; border-left: 0; }
  .collective-entry,
  .collective-entry-reverse { display: flex; min-height: 0; flex-direction: column; }
  .collective-entry-reverse .collective-copy,
  .collective-entry-reverse figure { order: initial; }
  .collective-copy { min-height: 320px; padding: 38px 28px; }
  .collective-copy > span { margin-bottom: 30px; }
  .collective-entry figure { height: 330px; }
  .recognition-timeline { grid-template-columns: 1fr; gap: 0; padding: 0 0 0 42px; }
  .recognition-timeline::before { top: 10px; right: auto; bottom: 10px; left: 10px; width: 3px; height: auto; }
  .recognition-timeline li { min-height: 150px; padding: 0 0 34px 22px; text-align: left; }
  .recognition-timeline li::before { top: 7px; left: -31px; transform: none; }
  .recognition-timeline p { margin-inline: 0; }
  .recognition-register-layout { gap: 34px; }
  .recognition-register h2 { font-size: 50px; }
  .recognition-register-layout > div > p { font-size: 17px; }
  .recognition-register .button { width: 100%; justify-content: space-between; gap: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  .recognition-energy path { stroke-dasharray: none; animation: none; }
  .recognition-page [data-parallax] { translate: none !important; }
}

@keyframes recognition-line {
  from { stroke-dashoffset: 1250; }
  to { stroke-dashoffset: 0; }
}

/* Directorio simple de voluntarios */
.volunteer-directory {
  min-height: calc(100svh - 224px);
  padding-block: clamp(72px, 9vw, 132px);
  color: var(--white);
  background:
    radial-gradient(circle at 82% 8%, rgba(24, 184, 104, 0.12), transparent 28%),
    var(--recognition-deep) url("assets/topography.svg") right top / 900px auto no-repeat;
}
.volunteer-directory h1 {
  margin: 0 0 clamp(48px, 7vw, 86px);
  color: var(--white);
  font-size: clamp(62px, 8vw, 118px);
  line-height: 0.9;
  letter-spacing: -0.065em;
}
.volunteer-directory h1 span { color: var(--recognition-yellow); }
.volunteer-matrix {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 280px));
  gap: clamp(24px, 3vw, 42px);
  justify-content: start;
}
.volunteer-profile {
  position: relative;
  margin: 0;
}
.volunteer-profile::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--recognition-green), var(--recognition-yellow), var(--recognition-blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 420ms cubic-bezier(.16, 1, .3, 1);
}
.volunteer-profile:hover::before,
.volunteer-profile:focus-within::before { transform: scaleX(1); }
.volunteer-profile img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center;
  border-radius: 2px 36px 2px 2px;
  filter: saturate(0.88);
  transition: filter 300ms ease, transform 500ms cubic-bezier(.16, 1, .3, 1);
}
.volunteer-profile:hover img { filter: saturate(1.05); transform: scale(1.015); }
.volunteer-profile h2 {
  margin: 18px 0 0;
  color: var(--white);
  font-size: 24px;
  line-height: 1.12;
  letter-spacing: -0.025em;
}

@media (max-width: 600px) {
  .volunteer-directory { min-height: calc(100svh - 194px); padding-block: 60px 86px; }
  .volunteer-directory h1 { margin-bottom: 42px; font-size: 62px; }
  .volunteer-matrix { grid-template-columns: minmax(0, 1fr); }
  .volunteer-profile img { aspect-ratio: 1; }
  .volunteer-profile h2 { font-size: 26px; }
}

/* Ajustes editoriales · portada, campaña y galería independiente */
.home-page .story-actions {
  gap: 10px 22px;
  align-items: center;
}
.home-page .story-actions .story-link {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
}
.home-page .story-actions .story-link::after {
  content: "↗";
  margin-left: 7px;
  font-size: 0.9em;
  text-decoration: none;
}
.home-page .story-media-video img { object-position: center; }

.home-page .uluk-intro {
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  grid-template-areas: "title title" "lede investment";
  gap: 28px 72px;
  align-items: center;
}
.home-page .uluk-intro h2 {
  max-width: 900px;
  font-size: clamp(52px, 6.2vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.05em;
}
.home-page .uluk-intro > p {
  max-width: 620px;
  font-size: clamp(20px, 1.8vw, 27px);
}
.home-page .uluk-intro > p strong {
  display: block;
  margin-bottom: 5px;
  color: var(--solar);
  font-size: 0.78em;
  font-weight: 800;
  letter-spacing: 0.01em;
}
.home-page .investment {
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 26px;
}
.home-page .donation-ring { width: 112px; }
.home-page .campaign-metrics strong { font-size: clamp(23px, 2vw, 31px); }
.home-page .campaign-metrics .investment-total { font-size: clamp(28px, 2.5vw, 37px); }
.home-page .uluk-media {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 18px;
  margin-top: 54px;
}
.home-page .uluk-photo,
.home-page .uluk-photo-building,
.home-page .uluk-photo-sign {
  min-height: 0;
  aspect-ratio: 16 / 9;
}
.home-page .uluk-photo-building img { object-position: center 46%; }
.home-page .uluk-photo-sign img { object-position: center; }

.uluk-scope {
  display: grid;
  grid-template-columns: minmax(250px, 0.78fr) minmax(0, 1.22fr);
  grid-template-areas: "heading list";
  gap: 34px clamp(54px, 7vw, 108px);
  align-items: start;
  margin-top: 48px;
  padding: 54px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
.uluk-scope-heading { grid-area: heading; }
.uluk-scope-heading h3 {
  max-width: 390px;
  margin: 0 0 16px;
  color: var(--white);
  font-size: clamp(32px, 3.5vw, 48px);
  line-height: 1;
  letter-spacing: -0.04em;
}
.uluk-scope-heading p {
  max-width: 430px;
  margin: 0;
  color: #b8d0c4;
  font-size: 16px;
}
.uluk-scope-list {
  grid-area: list;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: uluk-items;
}
.uluk-scope-list li {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 18px;
  align-items: baseline;
  padding: 18px 0;
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: clamp(20px, 2vw, 29px);
  font-weight: 720;
  line-height: 1.2;
  letter-spacing: -0.025em;
}
.uluk-scope-list li:last-child { border-bottom: 1px solid rgba(255, 255, 255, 0.15); }
.uluk-scope-list span {
  color: var(--alive);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.gallery-page {
  --night-deep: #01120d;
  --alive: #19b867;
  --solar: #ffd236;
  --electric: #28a8e9;
  color: var(--white);
  background: var(--night-deep);
}
.gallery-page .site-header {
  color: var(--white);
  background: rgba(1, 18, 13, 0.88);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}
.gallery-page .site-header.is-scrolled {
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 14px 45px rgba(0, 0, 0, 0.34);
}
.gallery-page .brand,
.gallery-page .site-nav a { color: var(--white); }
.gallery-page .brand small { color: #a7c6b7; }
.gallery-page .brand-mark::before { background: var(--alive); box-shadow: 0 0 16px rgba(25, 184, 103, 0.45); }
.gallery-page .brand-mark span { border-color: var(--alive); }
.gallery-page .site-nav a:hover,
.gallery-page .site-nav a:focus-visible,
.gallery-page .site-nav a[aria-current="page"] { color: var(--solar); }
.gallery-page .site-nav .nav-cta { color: var(--night-deep); background: var(--solar); }
.gallery-directory {
  min-height: 100svh;
  padding: clamp(118px, 12vw, 176px) 0 clamp(84px, 10vw, 150px);
  background:
    radial-gradient(circle at 88% 4%, rgba(25, 184, 103, 0.14), transparent 28%),
    var(--night-deep) url("assets/topography.svg") right top / 1000px auto no-repeat;
}
.gallery-page-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: 48px;
  align-items: end;
  margin-bottom: clamp(48px, 7vw, 86px);
}
.gallery-page-heading h1 {
  margin: 0;
  color: var(--white);
  font-size: clamp(62px, 8vw, 116px);
  line-height: 0.88;
  letter-spacing: -0.065em;
}
.gallery-page-heading h1 span { color: var(--solar); }
.gallery-page-heading p {
  max-width: 420px;
  margin: 0 0 5px;
  color: #b8d0c4;
  font-size: clamp(17px, 1.7vw, 23px);
}
.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-flow: dense;
  grid-auto-rows: 170px;
  gap: 18px;
}
.gallery-page-grid .gallery-item {
  grid-column: span 4;
  grid-row: span 2;
  min-height: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 2px 34px 2px 2px;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.32);
  transform: perspective(1000px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}
.gallery-page-grid .gallery-page-wide { grid-column: span 8; }
.gallery-page-grid .gallery-page-tall { grid-row: span 4; }
.gallery-page-grid .gallery-item::after {
  content: "";
  position: absolute;
  inset: 42% 0 0;
  background: linear-gradient(transparent, rgba(1, 18, 13, 0.9));
  pointer-events: none;
}
.gallery-page-grid .gallery-item span {
  z-index: 2;
  color: var(--white);
  background: none;
}
.gallery-page-grid .gallery-item:hover,
.gallery-page-grid .gallery-item:focus-visible {
  z-index: 3;
  border-color: rgba(255, 210, 54, 0.72);
  box-shadow: 0 34px 70px rgba(0, 0, 0, 0.5);
}

@media (max-width: 980px) {
  .home-page .uluk-intro {
    grid-template-columns: 1fr;
    grid-template-areas: "title" "lede" "investment";
    gap: 20px;
  }
  .home-page .investment { margin-top: 16px; }
  .uluk-scope {
    grid-template-columns: 1fr;
    grid-template-areas: "heading" "list";
    gap: 28px;
  }
  .gallery-page-grid { grid-auto-rows: 145px; }
}

@media (max-width: 720px) {
  .home-page .uluk-intro h2 { font-size: clamp(45px, 13.5vw, 62px); }
  .home-page .investment { grid-template-columns: 94px minmax(0, 1fr); gap: 17px; }
  .home-page .investment { align-items: start; }
  .home-page .donation-ring { width: 92px; }
  .home-page .uluk-media {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 38px;
  }
  .home-page .uluk-photo,
  .home-page .uluk-photo-building,
  .home-page .uluk-photo-sign {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }
  .uluk-scope {
    grid-template-columns: 1fr;
    grid-template-areas: "heading" "list";
    gap: 28px;
    margin-top: 32px;
    padding: 40px 0;
  }
  .uluk-scope-list li { grid-template-columns: 40px 1fr; padding: 15px 0; }
  .gallery-page-heading { grid-template-columns: 1fr; gap: 22px; }
  .gallery-page-heading h1 { font-size: clamp(58px, 17vw, 84px); }
  .gallery-page-grid { grid-template-columns: 1fr; grid-auto-rows: auto; gap: 15px; }
  .gallery-page-grid .gallery-item,
  .gallery-page-grid .gallery-page-wide,
  .gallery-page-grid .gallery-page-tall {
    grid-column: 1;
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }
  .gallery-page-grid .gallery-page-wide { aspect-ratio: 16 / 10; }
}

/* Proporciones de la sección de impacto · v10 */
.home-page .impact-composition { display: block; }
.home-page .impact-media {
  width: 100%;
  min-height: 0;
  aspect-ratio: 2 / 1;
  border-radius: 2px 72px 2px 2px;
}
.home-page .impact-media img {
  object-position: center 47%;
}
.home-page .impact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}
.home-page .impact-item {
  display: block;
  min-width: 0;
  padding: 30px clamp(18px, 2.2vw, 31px);
  border-top: 0;
  border-bottom: 0;
}
.home-page .impact-item + .impact-item {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}
.home-page .impact-item:last-child { border-bottom: 0; }
.home-page .impact-item:hover { padding-left: clamp(18px, 2.2vw, 31px); }
.home-page .impact-icon {
  width: 46px;
  height: 46px;
  margin-bottom: 20px;
}
.home-page .impact-icon svg { width: 44px; height: 44px; }
.home-page .impact-item h3 {
  margin-bottom: 10px;
  font-size: clamp(27px, 2.5vw, 36px);
}
.home-page .impact-item p { font-size: 15px; line-height: 1.55; }

@media (max-width: 980px) {
  .home-page .impact-media { aspect-ratio: 16 / 9; }
  .home-page .impact-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-page .impact-item:nth-child(n + 3) { border-top: 1px solid rgba(255, 255, 255, 0.16); }
  .home-page .impact-item:nth-child(3) { border-left: 0; }
  .home-page .impact-item:nth-child(4) { border-left: 1px solid rgba(255, 255, 255, 0.16); }
}

@media (max-width: 600px) {
  .home-page .impact-media {
    aspect-ratio: 16 / 10;
    border-radius: 2px 42px 2px 2px;
  }
  .home-page .impact-grid { grid-template-columns: 1fr; margin-top: 28px; }
  .home-page .impact-item {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 0 16px;
    padding: 24px 0;
  }
  .home-page .impact-item + .impact-item,
  .home-page .impact-item:nth-child(n + 3),
  .home-page .impact-item:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-left: 0;
  }
  .home-page .impact-icon { grid-row: span 2; width: 44px; height: 44px; margin: 0; }
  .home-page .impact-icon svg { width: 40px; height: 40px; }
  .home-page .impact-item h3 { margin: 1px 0 7px; font-size: 29px; }
  .home-page .impact-item p { font-size: 15px; }
}

/* Campaña compacta de Uluk Kichá · v11 */
.uluk-compact-section {
  padding-block: clamp(70px, 7.5vw, 106px);
  border-top: 1px solid rgba(108, 224, 155, 0.16);
  scroll-margin-top: 80px;
}
.uluk-compact-shell { position: relative; z-index: 1; }
.uluk-compact-header {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(310px, 0.8fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 38px;
}
.uluk-compact-header h2 {
  max-width: 760px;
  margin: 0;
  color: var(--white);
  font-size: clamp(58px, 6.6vw, 88px);
  line-height: 0.86;
  letter-spacing: -0.06em;
}
.uluk-compact-header p {
  max-width: 470px;
  margin: 0 0 4px;
  color: #b8d0c4;
  font-size: clamp(19px, 1.7vw, 25px);
  line-height: 1.28;
}
.uluk-compact-header p strong {
  display: block;
  margin-bottom: 6px;
  color: var(--solar);
  font-size: 0.78em;
  letter-spacing: 0.01em;
}
.uluk-project-summary {
  display: block;
  max-width: 500px;
  margin-top: 15px;
  color: #8fb1a2;
  font-size: 0.64em;
  line-height: 1.5;
}
.uluk-compact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(28px, 4vw, 52px);
  align-items: start;
}
.uluk-compact-visual {
  position: relative;
  min-width: 0;
  padding-bottom: 70px;
}
.uluk-compact-photo {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  padding: 0;
  color: var(--white);
  background: var(--night-soft);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 2px 38px 2px 2px;
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.34);
  cursor: zoom-in;
  text-align: left;
}
.uluk-main-photo { aspect-ratio: 16 / 10; }
.uluk-inset-photo {
  position: absolute;
  right: 18px;
  bottom: 0;
  width: 46%;
  aspect-ratio: 16 / 9;
  border: 5px solid var(--night-deep);
  border-radius: 2px 26px 2px 2px;
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.48);
}
.uluk-compact-photo::after {
  content: "";
  position: absolute;
  inset: 46% 0 0;
  background: linear-gradient(transparent, rgba(1, 18, 13, 0.86));
  pointer-events: none;
}
.uluk-compact-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms cubic-bezier(.16, 1, .3, 1);
}
.uluk-main-photo img { object-position: center 45%; }
.uluk-inset-photo img { object-position: center; }
.uluk-compact-photo span {
  position: absolute;
  z-index: 2;
  left: 18px;
  right: 18px;
  bottom: 15px;
  font-size: 13px;
  font-weight: 750;
}
.uluk-compact-photo:hover img { transform: scale(1.025); }
.uluk-compact-photo:focus-visible { outline: 3px solid var(--solar); outline-offset: 4px; }

.uluk-compact-panel {
  display: grid;
  grid-template-columns: minmax(160px, 0.72fr) minmax(0, 1.28fr);
  grid-template-areas: "progress scope" "action action";
  gap: 24px 30px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 2px 38px 2px 2px;
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.2);
}
.uluk-compact-progress {
  grid-area: progress;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  min-width: 0;
  padding-right: 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}
.uluk-compact-progress .donation-ring { width: 92px; }
.uluk-compact-progress .donation-ring strong { font-size: 27px; }
.uluk-progress-copy > span {
  display: block;
  color: #9fc2b2;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.uluk-progress-copy > strong {
  display: block;
  margin: 5px 0 12px;
  color: var(--solar);
  font-size: clamp(27px, 2.5vw, 37px);
  line-height: 1;
  letter-spacing: -0.045em;
  white-space: nowrap;
}
.uluk-progress-copy p { margin: 0; color: #b8d0c4; font-size: 13px; }
.uluk-progress-copy p b { color: var(--alive); font-size: 18px; }

.uluk-compact-scope { grid-area: scope; min-width: 0; }
.uluk-compact-scope h3 {
  max-width: 340px;
  margin: 0 0 18px;
  color: var(--white);
  font-size: clamp(28px, 2.8vw, 39px);
  line-height: 0.98;
  letter-spacing: -0.045em;
}
.uluk-compact-scope ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.uluk-compact-scope li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 54px;
  padding: 8px 0;
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 14px;
  font-weight: 720;
  line-height: 1.2;
}
.uluk-compact-scope li:last-child { grid-column: 1 / -1; }
.uluk-compact-scope svg {
  width: 30px;
  height: 30px;
  color: var(--alive);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.uluk-compact-scope li:nth-child(2) svg,
.uluk-compact-scope li:nth-child(3) svg { color: var(--solar); }
.uluk-compact-scope li:nth-child(4) svg,
.uluk-compact-scope li:nth-child(5) svg { color: var(--electric); }

.uluk-compact-action {
  grid-area: action;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.uluk-compact-action strong { display: block; color: var(--white); font-size: 20px; }
.uluk-compact-action p { max-width: 390px; margin: 4px 0 0; color: #9fc2b2; font-size: 13px; line-height: 1.45; }
.uluk-compact-action .button {
  flex: 0 0 auto;
  min-height: 50px;
  padding-inline: 24px;
  white-space: nowrap;
}

/* Contacto transparente para coordinar donaciones · v14 */
.donation-contact-section {
  position: relative;
  padding: 0 0 clamp(72px, 8vw, 112px);
  color: var(--white);
  background: var(--night);
  scroll-margin-top: 80px;
}
.donation-contact-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
  overflow: hidden;
  padding: clamp(34px, 4.5vw, 62px);
  background:
    radial-gradient(circle at 4% 0%, rgba(255, 199, 34, 0.13), transparent 35%),
    rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 2px 42px 2px 2px;
  box-shadow: 0 26px 68px rgba(0, 0, 0, 0.22);
}
.donation-contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: min(260px, 34%);
  height: 4px;
  background: linear-gradient(90deg, var(--solar), var(--alive));
}
.donation-contact-copy h2 {
  max-width: 630px;
  margin: 0;
  color: var(--white);
  font-size: clamp(40px, 4.7vw, 68px);
  line-height: 0.96;
  letter-spacing: -0.05em;
}
.donation-contact-copy p {
  max-width: 670px;
  margin: 22px 0 0;
  color: #b8d0c4;
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.65;
}
.donation-contact-details {
  min-width: 0;
  padding-left: clamp(28px, 3vw, 48px);
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}
.donation-contact-person {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}
.donation-contact-person > img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  object-position: center 26%;
  border: 2px solid rgba(255, 199, 34, 0.72);
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
}
.donation-contact-person span {
  display: block;
  margin: 1px 0 5px;
  color: #8fb1a2;
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.donation-contact-person strong {
  display: block;
  color: var(--white);
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.2;
}
.donation-contact-person a {
  display: inline-block;
  margin-top: 7px;
  color: var(--solar);
  font-weight: 720;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  overflow-wrap: anywhere;
}
.donation-contact-note {
  margin: 24px 0 0;
  color: #9fc2b2;
  font-size: 14px;
  line-height: 1.55;
}
.donation-contact-button {
  width: fit-content;
  min-height: 52px;
  margin-top: 24px;
}
.donation-contact-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 980px) {
  .uluk-compact-header { grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr); gap: 28px; }
  .uluk-compact-header h2 { font-size: clamp(54px, 8vw, 72px); }
  .uluk-compact-layout { grid-template-columns: 1fr; gap: 24px; }
  .uluk-compact-visual {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    padding: 0;
  }
  .uluk-main-photo,
  .uluk-inset-photo {
    position: relative;
    inset: auto;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-width: 1px;
    border-radius: 2px 30px 2px 2px;
  }
  .uluk-compact-panel { grid-template-columns: minmax(170px, 0.65fr) minmax(0, 1.35fr); }
  .donation-contact-card { grid-template-columns: 1fr; }
  .donation-contact-details {
    padding: 30px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-left: 0;
  }
}

@media (max-width: 640px) {
  .uluk-compact-section { padding-block: 58px 74px; }
  .uluk-compact-header { grid-template-columns: 1fr; gap: 20px; margin-bottom: 30px; }
  .uluk-compact-header h2 { font-size: clamp(48px, 14vw, 62px); }
  .uluk-compact-header p { font-size: 18px; }
  .uluk-compact-visual { display: block; padding-bottom: 54px; }
  .uluk-main-photo { aspect-ratio: 16 / 10; }
  .uluk-inset-photo {
    position: absolute;
    right: 10px;
    bottom: 0;
    width: 48%;
    aspect-ratio: 16 / 9;
    border-width: 4px;
    border-color: var(--night-deep);
  }
  .uluk-inset-photo span { display: none; }
  .uluk-compact-panel {
    grid-template-columns: 1fr;
    grid-template-areas: "progress" "scope" "action";
    gap: 24px;
    padding: 22px 18px;
    border-radius: 2px 30px 2px 2px;
  }
  .uluk-compact-progress {
    flex-direction: row;
    align-items: center;
    gap: 20px;
    padding: 0 0 22px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }
  .uluk-compact-progress .donation-ring { flex: 0 0 84px; width: 84px; }
  .uluk-progress-copy > strong { font-size: 30px; }
  .uluk-compact-scope h3 { font-size: 31px; }
  .uluk-compact-scope ul { gap: 6px 14px; }
  .uluk-compact-scope li { grid-template-columns: 30px minmax(0, 1fr); font-size: 13px; }
  .uluk-compact-scope svg { width: 27px; height: 27px; }
  .uluk-compact-action { align-items: stretch; flex-direction: column; gap: 18px; }
  .uluk-compact-action .button { width: 100%; }
  .uluk-project-summary { margin-top: 12px; font-size: 0.78em; }
  .donation-contact-section { padding-bottom: 74px; }
  .donation-contact-card { gap: 26px; padding: 30px 22px; border-radius: 2px 30px 2px 2px; }
  .donation-contact-copy h2 { font-size: clamp(38px, 12vw, 51px); }
  .donation-contact-copy p { margin-top: 18px; font-size: 16px; }
  .donation-contact-details { padding-top: 26px; }
  .donation-contact-person { grid-template-columns: 64px minmax(0, 1fr); gap: 14px; }
  .donation-contact-person > img { width: 64px; height: 64px; }
  .donation-contact-button { width: 100%; justify-content: space-between; }
}
