:root {
  --navy: #03336d;
  --navy-deep: #022858;
  --blue: #0d56a6;
  --yellow: #f6c421;
  --gold: #c59a3d;
  --red: #be222e;
  --white: #ffffff;
  --ink: #10233b;
  --muted: #617083;
  --line: #dce3eb;
  --surface: #f5f7fa;
  --serif: "Source Serif 4", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
  --page: min(1240px, calc(100% - 64px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--white); font-family: var(--sans); }
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
.page-width { width: var(--page); margin-inline: auto; }
.purpose > *,
.section-intro,
.model-layout > *,
.ods-layout > *,
.content-grid article,
.directory-preview article,
.agenda-strip > *,
.contact-layout > *,
.roadmap-grid article,
.archive-grid article,
.model-grid article,
.ods-grid article { min-width: 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 86px;
  padding: 10px max(28px, calc((100vw - 1340px) / 2));
  background: rgb(255 255 255 / 96%);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand { display: flex; align-items: center; gap: 12px; min-width: 218px; }
.brand img,
.footer-brand img {
  width: 62px;
  height: 62px;
  object-fit: contain;
  border: 1px solid rgb(3 51 109 / 16%);
  border-radius: 50%;
  background: var(--white);
}
.brand span,
.footer-brand span { display: grid; }
.brand strong { color: var(--navy); font-size: 16px; line-height: 1.05; }
.brand small { color: var(--navy); font-size: 14px; font-weight: 700; }

.desktop-nav { display: flex; justify-content: center; gap: clamp(14px, 1.4vw, 26px); }
.desktop-nav a {
  position: relative;
  padding: 31px 0 27px;
  color: #30425a;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}
.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  height: 3px;
  background: var(--yellow);
  content: "";
  opacity: 0;
  transform: scaleX(0.65);
  transition: opacity 180ms ease, transform 180ms ease;
}
.desktop-nav a:hover::after,
.desktop-nav a.active::after { opacity: 1; transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 14px; }
.language { color: var(--navy); font-size: 12px; font-weight: 800; white-space: nowrap; }
.language span { color: var(--muted); }
.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--navy);
  background: var(--white);
  font-size: 24px;
}
.mobile-nav {
  position: fixed;
  inset: 72px 0 auto;
  z-index: 29;
  display: none;
  grid-template-columns: 1fr;
  padding: 12px 18px 24px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 18px 40px rgb(11 35 64 / 14%);
}
.mobile-nav a {
  padding: 14px 2px;
  color: var(--navy);
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  font-weight: 800;
}
.nav-open .mobile-nav { display: grid; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgb(3 51 109 / 18%); }
.button-yellow { color: var(--navy-deep); background: var(--yellow); }
.button-white { color: var(--navy); background: var(--white); border-color: var(--white); }
.button-navy { color: var(--white); background: var(--navy); }
.header-cta { min-height: 44px; padding-inline: 22px; }
.button-row { display: flex; flex-wrap: wrap; gap: 14px; }

.hero {
  position: relative;
  min-height: 670px;
  overflow: hidden;
  background: var(--navy);
}
.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgb(2 40 88 / 98%) 0%, rgb(2 40 88 / 90%) 30%, rgb(2 40 88 / 58%) 48%, rgb(2 40 88 / 20%) 66%, transparent 83%),
    linear-gradient(180deg, rgb(3 51 109 / 8%) 0%, rgb(3 51 109 / 20%) 100%);
}
.hero-home .hero-media {
  object-position: center;
}
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 670px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.hero-content h1,
.institutional-copy h1,
.page-hero h1 {
  max-width: 780px;
  margin: 0;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(56px, 6vw, 88px);
  line-height: 0.96;
  letter-spacing: 0;
}
.hero-content > p,
.page-hero p,
.institutional-copy > p:not(.section-label) {
  max-width: 620px;
  margin: 28px 0 32px;
  color: rgb(255 255 255 / 88%);
  font-size: 18px;
  line-height: 1.65;
}
.tricolor {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  height: 6px;
}
.tricolor i:nth-child(1) { background: var(--yellow); }
.tricolor i:nth-child(2) { background: var(--navy); }
.tricolor i:nth-child(3) { background: var(--red); }

.audience-paths {
  position: relative;
  z-index: 4;
  display: grid;
  width: min(1060px, calc(100% - 64px));
  grid-template-columns: 1fr 1fr;
  margin: -54px auto 0;
  background: var(--white);
  box-shadow: 0 20px 55px rgb(11 35 64 / 16%);
}
.audience-paths a {
  display: grid;
  min-height: 146px;
  align-content: center;
  padding: 28px 42px;
  border-left: 5px solid var(--yellow);
}
.audience-paths a + a { border-left-color: var(--red); box-shadow: inset 1px 0 var(--line); }
.audience-paths span,
.section-label {
  margin: 0 0 9px;
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}
.audience-paths strong { color: var(--navy); font-family: var(--serif); font-size: 25px; line-height: 1.08; }
.audience-paths small { margin-top: 6px; color: var(--muted); font-size: 12px; line-height: 1.45; }

.purpose,
.documents-band,
.agenda-strip {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 70px;
  align-items: center;
  padding-block: 105px;
}
.section-intro h2,
.section-heading-row h2,
.community-copy h2,
.alliances-preview h2,
.contact-layout h2,
.impact-copy h2,
.institutional-contact h2,
.agenda-strip h2,
.documents-band h2,
.content-grid h2,
.ods-layout h2 {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(36px, 4.2vw, 60px);
  line-height: 1.06;
}
.purpose-copy,
.documents-band > p,
.agenda-strip > p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.model-band,
.ods-band {
  background: var(--navy-deep);
  color: var(--white);
}
.model-band.standalone,
.ods-band.standalone { margin-bottom: 0; }
.model-layout,
.ods-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: center;
  padding-block: 86px;
}
.section-label.light { color: var(--yellow); }
.model-layout h2,
.ods-layout h2,
.community-copy h2,
.contact-layout h2,
.impact-copy h2,
.institutional-contact h2 { color: var(--white); }
.model-grid,
.ods-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.model-grid article,
.ods-grid article {
  display: grid;
  place-items: center;
  min-height: 150px;
  padding: 22px;
  border: 1px solid rgb(255 255 255 / 18%);
  background: rgb(255 255 255 / 7%);
  text-align: center;
}
.model-grid b,
.ods-grid b { display: block; margin-bottom: 30px; color: var(--yellow); font-size: 12px; }
.model-grid span,
.ods-grid span {
  display: block;
  width: 100%;
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.08;
}

.pillars-band {
  background: var(--surface);
  border-block: 1px solid var(--line);
}
.pillars,
.cooperation-list,
.content-grid,
.directory-preview,
.contact-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.pillars article,
.cooperation-list article,
.content-grid article,
.directory-preview article,
.contact-cards a {
  min-height: 250px;
  padding: 42px 32px;
  border-left: 1px solid var(--line);
}
.pillars article,
.cooperation-list article {
  display: grid;
  align-content: center;
  gap: 12px;
  text-align: center;
}
.pillars article:last-child,
.cooperation-list article:last-child,
.content-grid article:last-child,
.directory-preview article:last-child,
.contact-cards a:last-child { border-right: 1px solid var(--line); }
.pillars b,
.cooperation-list b,
.content-grid b,
.directory-preview b,
.contact-cards span { color: var(--red); font-size: 12px; font-weight: 800; text-transform: uppercase; }
.pillars h3,
.cooperation-list h3 {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.1;
}
.pillars p,
.cooperation-list p,
.content-grid p,
.directory-preview p,
.contact-cards p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.activities,
.activation-band,
.cooperation,
.institutional-gallery,
.content-grid,
.directory-preview,
.archive-grid,
.contact-cards { padding-block: 100px; }

.evidence-strip {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 70px;
  align-items: center;
  padding-block: 90px;
  border-top: 1px solid var(--line);
}
.evidence-strip h2,
.archive-grid h2,
.activation-band h2 {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(34px, 3.8vw, 56px);
  line-height: 1.06;
}
.evidence-strip > p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}
.archive-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.archive-grid .section-intro {
  grid-column: 1 / -1;
  max-width: 780px;
  margin-bottom: 42px;
}
.archive-grid article,
.activation-list article {
  min-height: 230px;
  padding: 32px 26px;
  border-left: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.archive-grid article {
  display: grid;
  align-content: start;
  gap: 18px;
  overflow: hidden;
}
.archive-grid article img {
  width: calc(100% + 52px);
  height: 168px;
  margin: -32px -26px 8px;
  object-fit: cover;
  object-position: center;
}
.archive-grid article:nth-of-type(2) img { object-position: center 42%; }
.archive-grid article:nth-of-type(3) img { object-position: center 35%; }
.archive-grid article:nth-of-type(4) img { object-position: center 48%; }
.archive-grid article:last-child,
.activation-list article:last-child { border-right: 1px solid var(--line); }
.archive-grid b,
.activation-list b {
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.archive-grid p,
.activation-list p {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}
.discipline-map article {
  position: relative;
  align-content: start;
  min-height: 260px;
  padding-top: 42px;
  background: linear-gradient(180deg, rgb(245 247 250 / 72%), rgb(255 255 255 / 100%));
}
.discipline-map article::before {
  position: absolute;
  top: 0;
  right: 26px;
  left: 26px;
  height: 5px;
  background: var(--yellow);
  content: "";
}
.discipline-map article:nth-of-type(2)::before,
.discipline-map article:nth-of-type(5)::before { background: var(--red); }
.discipline-map article:nth-of-type(3)::before { background: var(--navy); }
.discipline-map article:nth-of-type(4)::before { background: #15945e; }
.discipline-map p { margin-top: 30px; }
.activation-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 44px;
  border-top: 1px solid var(--line);
}
.evidence-strip.has-media {
  grid-template-columns: 0.9fr 1.1fr;
}
.evidence-strip.has-media figure {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  background: var(--navy);
}
.evidence-strip.has-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.evidence-strip.has-media div p:not(.section-label) {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}
.roadmap-section {
  padding-block: 98px;
  border-top: 1px solid var(--line);
}
.roadmap-section .section-intro {
  max-width: 760px;
  margin-bottom: 44px;
}
.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 4px solid var(--yellow);
  border-bottom: 1px solid var(--line);
}
.roadmap-grid article {
  min-height: 390px;
  padding: 34px 26px;
  border-left: 1px solid var(--line);
}
.roadmap-grid article:nth-child(2) { border-top: 4px solid var(--red); }
.roadmap-grid article:nth-child(3) { border-top: 4px solid var(--navy); }
.roadmap-grid article:nth-child(4) { border-top: 4px solid #15945e; }
.roadmap-grid article:last-child { border-right: 1px solid var(--line); }
.roadmap-grid span {
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}
.roadmap-grid h3 {
  margin: 10px 0 24px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 27px;
  line-height: 1.1;
}
.roadmap-grid ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.roadmap-grid li {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}
.roadmap-grid strong { color: var(--navy); }

.contact-form-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(420px, 1fr);
  gap: 54px;
  align-items: start;
  padding-block: 95px 42px;
}
.contact-form-copy {
  position: sticky;
  top: 118px;
}
.contact-form-copy h2 {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.04;
}
.contact-form-copy p:not(.section-label) {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}
.contact-form {
  display: grid;
  gap: 18px;
  padding: 34px;
  border: 1px solid var(--line);
  border-top: 5px solid var(--yellow);
  background: var(--white);
  box-shadow: 0 20px 55px rgb(11 35 64 / 10%);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.contact-form label {
  display: grid;
  gap: 9px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  color: var(--ink);
  font: 600 14px/1.45 var(--sans);
  padding: 12px 13px;
}
.contact-form textarea {
  min-height: 168px;
  resize: vertical;
}
.contact-form .form-wide {
  grid-column: 1 / -1;
}
.form-note {
  margin: -4px 0 4px;
  padding: 14px 16px;
  color: #344966;
  border-left: 4px solid var(--yellow);
  background: rgb(246 196 33 / 12%);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.55;
}
.conditional-fields {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgb(245 247 250 / 72%);
}
.conditional-fields.is-hidden,
.is-hidden {
  display: none;
}
.conditional-fields legend {
  padding: 0 8px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.1;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid rgb(246 196 33 / 32%);
  border-color: var(--gold);
}
.contact-form .privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.55;
}
.contact-form .privacy-check input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 2px;
  accent-color: var(--navy);
}
.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}
.cf-turnstile {
  min-height: 65px;
  min-width: 300px;
}
.form-footer .button {
  min-width: 190px;
}
.contact-form .button:disabled {
  cursor: progress;
  opacity: 0.72;
  transform: none;
}
.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.55;
}
.form-status.is-error {
  color: var(--red);
}
.section-heading-row {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 52px;
}
.section-heading-row > p { margin: 0 0 7px; color: var(--muted); font-size: 14px; line-height: 1.7; }
.activity-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 20px;
  height: 610px;
  min-height: 0;
}
figure { margin: 0; }
.feature-photo,
.activity-stack figure,
.activity-rail figure,
.gallery-row figure,
.hero-photo,
.hero-card,
.community-image,
.institutional-media,
.impact-image {
  position: relative;
  overflow: hidden;
  background: var(--navy);
}
.feature-photo img,
.activity-stack img,
.activity-rail img,
.gallery-row img,
.hero-photo img,
.community-image img,
.institutional-media img,
.impact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-card {
  display: grid;
  min-height: 360px;
  place-items: center;
  background: var(--white);
}
.hero-card img { width: min(72%, 360px); object-fit: contain; }
.logo-showcase {
  isolation: isolate;
  min-height: 390px;
  padding: 38px;
  border: 1px solid rgb(255 255 255 / 18%);
  background:
    linear-gradient(135deg, rgb(255 255 255 / 96%), rgb(245 247 250 / 98%)),
    radial-gradient(circle at 78% 22%, rgb(246 196 33 / 24%), transparent 34%);
  box-shadow: inset 0 0 0 10px rgb(3 51 109 / 5%), 0 28px 55px rgb(1 26 59 / 24%);
}
.logo-showcase::before,
.logo-showcase::after {
  position: absolute;
  z-index: 0;
  content: "";
}
.logo-showcase::before {
  inset: 20px;
  border: 1px solid rgb(3 51 109 / 13%);
}
.logo-showcase::after {
  right: 0;
  bottom: 0;
  left: 0;
  height: 11px;
  background: linear-gradient(90deg, var(--yellow) 0 34%, var(--navy) 34% 67%, var(--red) 67%);
}
.logo-showcase .logo-ring {
  position: absolute;
  z-index: 1;
  width: min(72%, 340px);
  aspect-ratio: 1;
  border: 2px solid rgb(3 51 109 / 9%);
  border-radius: 50%;
}
.logo-showcase img {
  position: relative;
  z-index: 2;
  width: min(58%, 275px);
  border: 12px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 18px 38px rgb(3 51 109 / 15%);
}
.logo-showcase figcaption {
  position: relative;
  z-index: 2;
  align-self: end;
  justify-self: stretch;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 30px;
  color: var(--navy);
}
.logo-showcase figcaption strong {
  font-family: var(--serif);
  font-size: 23px;
  line-height: 1.05;
}
.logo-showcase figcaption span {
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  text-align: right;
  text-transform: uppercase;
}
.feature-photo figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  gap: 6px;
  padding: 26px 30px;
  color: var(--white);
  background: rgb(3 51 109 / 92%);
}
.feature-photo figcaption span,
.activity-stack figcaption span { color: var(--yellow); font-size: 10px; font-weight: 800; text-transform: uppercase; }
.feature-photo figcaption strong { font-family: var(--serif); font-size: 27px; }
.activity-stack {
  display: grid;
  grid-template-rows: minmax(0, 1fr) minmax(0, 1fr);
  gap: 20px;
  min-height: 0;
}
.activity-stack figure:nth-child(1) img { object-position: center 44%; }
.activity-stack figure:nth-child(2) img { object-position: center 47%; }
.activity-stack figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 22px;
  color: var(--white);
  background: rgb(3 51 109 / 92%);
}
.activity-stack figcaption strong { font-family: var(--serif); font-size: 22px; }
.activity-rail {
  display: grid;
  grid-template-columns: repeat(5, minmax(190px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
.activity-rail.expanded { padding-block: 90px 45px; overflow-x: auto; }
.activity-rail figure { height: 255px; min-width: 0; }
.activity-rail figcaption,
.gallery-row figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  padding: 12px 14px;
  color: var(--navy);
  background: var(--white);
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
}

.community-section,
.impact-section { background: var(--navy-deep); }
.community-layout,
.impact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 610px;
}
.community-copy,
.impact-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 70px 80px 70px 0;
}
.community-copy > p:not(.section-label) {
  margin: 26px 0 32px;
  color: rgb(255 255 255 / 76%);
  font-size: 15px;
  line-height: 1.8;
}
.community-image img,
.impact-image img { object-position: center 44%; }

.alliances-preview {
  display: grid;
  grid-template-columns: 100px 1fr 0.7fr;
  gap: 55px;
  align-items: center;
  padding-block: 110px;
}
.alliance-mark { display: grid; gap: 8px; }
.alliance-mark span { display: block; height: 11px; }
.alliance-mark span:nth-child(1) { width: 72px; background: var(--yellow); }
.alliance-mark span:nth-child(2) { width: 90px; background: var(--navy); }
.alliance-mark span:nth-child(3) { width: 58px; background: var(--red); }
.alliance-copy p { margin: 0 0 26px; color: var(--muted); font-size: 14px; line-height: 1.75; }

.agenda-strip {
  grid-template-columns: 0.8fr 1fr auto;
  border-top: 1px solid var(--line);
}
.agenda-strip ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.agenda-strip li {
  padding: 10px 14px;
  color: var(--navy);
  border: 1px solid var(--line);
  background: var(--surface);
  font-size: 12px;
  font-weight: 800;
}

.contact-section,
.institutional-contact,
.page-hero { background: var(--navy); }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 0.75fr 0.75fr;
  gap: 50px;
  align-items: center;
  min-height: 300px;
}
.contact-layout > a,
.contact-cards a {
  display: grid;
  gap: 12px;
  align-content: center;
  color: var(--white);
  border-left: 4px solid var(--yellow);
  background: rgb(255 255 255 / 6%);
}
.contact-layout > a:last-child { border-left-color: var(--red); }
.contact-layout a span { color: rgb(255 255 255 / 68%); font-size: 11px; text-transform: uppercase; }
.contact-layout a strong { font-family: var(--serif); font-size: 23px; line-height: 1.08; }

.page-hero { position: relative; overflow: hidden; }
.page-hero.compact .page-width { padding-block: 105px; }
.page-hero .two-col,
.two-col {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 70px;
  align-items: center;
}
.hero-photo { height: 430px; }
.guild-hero .hero-photo img { object-position: center 42%; }
.page-hero .hero-photo img[src*="lgd-sostenibilidad-playa"] { object-position: 42% center; }
.page-hero .hero-photo img[src*="lgd-formacion-salud-taller"] { object-position: 58% center; }

.page-hero.with-photo,
.page-hero.identity-hero {
  min-height: 610px;
}
.page-hero.with-photo .page-width.two-col,
.page-hero.identity-hero .page-width.two-col {
  width: 100%;
  max-width: none;
  min-height: 610px;
  margin: 0;
  padding-block: 0;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 0;
}
.page-hero.with-photo .page-width.two-col > div,
.page-hero.identity-hero .page-width.two-col > div {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 70px 34px 70px max(56px, calc((100vw - 1240px) / 2));
}
.page-hero.with-photo .page-width.two-col > div > a {
  margin-top: -4px;
}
.page-hero.with-photo h1 {
  font-size: clamp(42px, 4.35vw, 66px);
  line-height: 1;
}
.page-hero.with-photo .hero-photo,
.page-hero.identity-hero .hero-card {
  min-height: 610px;
  height: 610px;
  margin-left: -140px;
}
.page-hero.with-photo .hero-photo::before {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 1;
  width: 24%;
  background:
    linear-gradient(90deg, var(--navy) 0%, rgb(3 51 109 / 70%) 24%, rgb(3 51 109 / 26%) 56%, transparent 100%),
    linear-gradient(180deg, rgb(3 51 109 / 6%) 0%, rgb(3 51 109 / 10%) 100%);
  content: "";
  pointer-events: none;
}
.page-hero.identity-hero .hero-card {
  border: 0;
  box-shadow:
    inset 150px 0 95px -105px rgb(3 51 109 / 42%),
    0 28px 55px rgb(1 26 59 / 18%);
}

.institutional-hero {
  position: relative;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  min-height: 610px;
  background: var(--navy);
  overflow: hidden;
}
.institutional-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 70px 34px 70px max(56px, calc((100vw - 1240px) / 2));
}
.institutional-copy h1 { font-size: clamp(42px, 4.35vw, 66px); line-height: 1; }
.institutional-media {
  margin-left: -140px;
}
.institutional-media::before {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 1;
  width: 24%;
  background:
    linear-gradient(90deg, var(--navy) 0%, rgb(3 51 109 / 70%) 24%, rgb(3 51 109 / 26%) 56%, transparent 100%),
    linear-gradient(180deg, rgb(3 51 109 / 6%) 0%, rgb(3 51 109 / 10%) 100%);
  content: "";
  pointer-events: none;
}
.institutional-media img { object-position: center; }
.credibility-strip { background: var(--surface); border-bottom: 1px solid var(--line); }
.credibility-strip .page-width {
  display: grid;
  grid-template-columns: 1fr repeat(4, auto);
  gap: 30px;
  align-items: center;
  min-height: 105px;
}
.credibility-strip strong { color: var(--navy); font-family: var(--serif); font-size: 22px; line-height: 1.1; }
.credibility-strip span { color: var(--muted); font-size: 11px; font-weight: 800; text-transform: uppercase; }
.cooperation-list.six { grid-template-columns: repeat(3, 1fr); border-block: 1px solid var(--line); }
.cooperation-list.six article { border-bottom: 1px solid var(--line); }
.impact-layout { grid-template-columns: 1.05fr 0.95fr; }
.impact-copy { padding: 70px 0 70px 80px; }
.impact-copy ul {
  display: grid;
  gap: 19px;
  margin: 32px 0 0;
  padding: 0;
  color: rgb(255 255 255 / 76%);
  font-size: 13px;
  line-height: 1.55;
  list-style: none;
}
.impact-copy li { padding-left: 18px; border-left: 3px solid var(--yellow); }
.impact-copy li:nth-child(3) { border-left-color: var(--red); }
.impact-copy strong { color: var(--white); }
.institutional-gallery .section-intro { max-width: 760px; margin-bottom: 48px; }
.gallery-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gallery-row figure { height: 410px; }
.institutional-contact .page-width {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px 70px;
  align-items: center;
  padding-block: 80px;
}
.institutional-contact p:last-child {
  grid-column: 1 / -1;
  margin: 0;
  color: rgb(255 255 255 / 64%);
  font-size: 12px;
}

.content-grid { grid-template-columns: repeat(3, 1fr); border-block: 1px solid var(--line); }
.content-grid article,
.directory-preview article { min-height: 300px; }
.content-grid h2 { margin: 28px 0 14px; font-size: 34px; }
.directory-preview { grid-template-columns: repeat(3, 1fr); border-block: 1px solid var(--line); }
.directory-preview b,
.contact-cards strong { color: var(--navy); font-family: var(--serif); font-size: 27px; line-height: 1.1; }
.directory-preview p { margin-top: 28px; }
.visual-directory article {
  display: grid;
  align-content: start;
  gap: 20px;
  min-height: 380px;
  padding-top: 0;
  overflow: hidden;
  background: var(--white);
}
.visual-directory article img {
  width: calc(100% + 64px);
  height: 205px;
  margin: -42px -32px 8px;
  object-fit: cover;
  object-position: center;
}
.visual-directory article:nth-child(1) img { object-position: center 44%; }
.visual-directory article:nth-child(2) img { object-position: center 48%; }
.visual-directory article:nth-child(3) img { object-position: center 50%; }
.visual-directory p { margin-top: 8px; }
.contact-cards {
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-block: 1px solid var(--line);
}
.contact-cards a {
  min-width: 0;
  min-height: 240px;
  color: var(--ink);
  background: var(--white);
  border-left-color: var(--yellow);
}
.contact-cards strong {
  overflow-wrap: anywhere;
}
.contact-cards a:nth-child(2),
.contact-cards a:nth-child(5) { border-left-color: var(--red); }
.contact-cards a:nth-child(3),
.contact-cards a:nth-child(6) { border-left-color: var(--navy); }

.site-footer { position: relative; background: var(--white); }
.footer-layout {
  display: flex;
  min-height: 130px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand img { width: 58px; height: 58px; }
.footer-brand strong { color: var(--navy); font-size: 14px; }
.footer-brand small,
.footer-layout p { color: var(--muted); font-size: 11px; }

/* Photographic motion system: no reflection overlay. */
.motion-enabled .hero-media {
  animation: hero-cinematic 18s cubic-bezier(0.2, 0.65, 0.3, 1) infinite alternate;
  transform-origin: 62% 45%;
  will-change: transform;
}
.photo-reveal {
  --reveal-delay: 0ms;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  transform-style: preserve-3d;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 420ms ease;
}
.motion-enabled .photo-reveal {
  opacity: 0;
  clip-path: inset(10% 0 10% 0);
  transform: perspective(1100px) translateY(34px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transition:
    opacity 720ms ease var(--reveal-delay),
    clip-path 920ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay),
    transform 920ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay),
    box-shadow 420ms ease;
}
.motion-enabled .photo-reveal.in-view {
  opacity: 1;
  clip-path: inset(0);
  transform: perspective(1100px) translateY(0) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
}
.motion-enabled .photo-reveal.reveal-complete { transition: transform 180ms ease-out, box-shadow 420ms ease; }
.photo-reveal img {
  transform: scale(1.025);
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1), filter 600ms ease;
  will-change: transform;
}
.motion-enabled .photo-reveal:not(.in-view) img { transform: scale(1.1); }
.photo-reveal figcaption { z-index: 2; transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1); }
@media (hover: hover) and (pointer: fine) {
  .motion-enabled .photo-reveal.in-view img {
    animation: photo-drift-desktop 8s ease-in-out 300ms infinite alternate;
  }
  .photo-reveal:hover {
    box-shadow: 0 26px 50px rgb(3 51 109 / 18%);
    transform: perspective(1100px) translateY(-6px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  }
  .photo-reveal:hover img {
    animation: none;
    transform: scale(1.095) translate3d(var(--drift-x, -1.8%), var(--drift-y, -0.8%), 0);
    filter: saturate(1.08) contrast(1.03);
  }
  .photo-reveal:hover figcaption { transform: translateY(-5px); }
}
@keyframes hero-cinematic {
  from { transform: scale(1.025) translate3d(0, 0, 0); }
  to { transform: scale(1.085) translate3d(-1.2%, -0.7%, 0); }
}
@keyframes photo-drift-desktop {
  from { transform: scale(1.03) translate3d(0, 0, 0); }
  to { transform: scale(1.095) translate3d(var(--drift-x, -1.8%), var(--drift-y, -0.9%), 0); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .motion-enabled .hero-media { animation: none; }
  .motion-enabled .photo-reveal,
  .motion-enabled .photo-reveal.in-view,
  .photo-reveal,
  .photo-reveal img,
  .photo-reveal figcaption {
    clip-path: none;
    opacity: 1;
    transform: none;
    transition: none;
  }
  .photo-reveal:hover { box-shadow: none; }
  .photo-reveal:hover img { animation: none; filter: none; transform: none; }
  .photo-reveal:hover figcaption { transform: none; }
}

@media (max-width: 1180px) {
  .desktop-nav { display: none; }
  .site-header { grid-template-columns: 1fr auto; }
  .menu-button { display: grid; }
  .hero-shade { width: 74%; }
  .pillars,
  .cooperation-list,
  .model-grid,
  .ods-grid,
  .contact-cards,
  .roadmap-grid,
  .archive-grid { grid-template-columns: repeat(2, 1fr); }
  .cooperation-list.six { grid-template-columns: repeat(2, 1fr); }
  .credibility-strip .page-width { grid-template-columns: 1fr 1fr; padding-block: 28px; }
  .credibility-strip strong { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  :root { --page: min(calc(100vw - 34px), 560px); }
  html,
  body {
    max-width: 100%;
    overflow-x: clip;
  }
  .page-width {
    width: var(--page);
    max-width: var(--page);
  }
  .site-header { min-height: 72px; padding: 8px 16px; }
  .brand { min-width: 0; gap: 8px; }
  .brand img { width: 50px; height: 50px; }
  .brand strong { font-size: 13px; }
  .brand small { font-size: 12px; }
  .language,
  .header-cta { display: none; }
  .header-actions { gap: 4px; }
  .hero,
  .hero-content { min-height: 690px; }
  .hero-media { object-position: 54% center; }
  .hero-shade { width: 100%; background: rgb(3 51 109 / 80%); clip-path: none; }
  .hero-content { justify-content: flex-end; padding-bottom: 108px; }
  .hero-content h1,
  .page-hero h1,
  .institutional-copy h1 { font-size: 47px; line-height: 0.98; }
  .hero-content > p,
  .page-hero p,
  .institutional-copy > p:not(.section-label) { max-width: 350px; margin: 20px 0 24px; font-size: 15px; line-height: 1.55; }
  .button-row { width: 100%; flex-direction: column; }
  .button-row .button,
  .button { width: 100%; }
  .audience-paths { width: calc(100vw - 34px); grid-template-columns: 1fr; margin-top: -62px; }
  .audience-paths a { min-height: 118px; padding: 20px 24px; }
  .audience-paths a + a { box-shadow: inset 0 1px var(--line); }
  .audience-paths strong { font-size: 21px; }
  .purpose,
  .evidence-strip,
  .section-heading-row,
  .alliances-preview,
  .contact-layout,
  .contact-form-section,
  .institutional-contact .page-width,
  .agenda-strip,
  .documents-band,
  .model-layout,
  .ods-layout,
  .page-hero .two-col,
  .two-col { grid-template-columns: 1fr; gap: 28px; }
  .purpose,
  .agenda-strip,
  .documents-band { padding-block: 74px; }
  .section-intro h2,
  .community-copy h2,
  .alliances-preview h2,
  .contact-layout h2,
  .impact-copy h2,
  .institutional-contact h2,
  .agenda-strip h2,
  .documents-band h2,
  .content-grid h2,
  .ods-layout h2 {
    font-size: 30px;
    overflow-wrap: normal;
    word-break: normal;
  }
  .model-grid span,
  .ods-grid span { font-size: 18px; }
  .ods-layout { padding-block: 64px; }
  .pillars,
  .cooperation-list,
  .cooperation-list.six,
  .content-grid,
  .directory-preview,
  .contact-cards,
  .activation-list,
  .archive-grid,
  .roadmap-grid,
  .model-grid,
  .ods-grid { grid-template-columns: 1fr; }
  .pillars article,
  .cooperation-list article,
  .content-grid article,
  .directory-preview article,
  .archive-grid article,
  .roadmap-grid article,
  .activation-list article,
  .contact-cards a { min-height: 190px; padding: 32px 24px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .archive-grid article img {
    width: calc(100% + 48px);
    height: 220px;
    margin: -32px -24px 8px;
  }
  .evidence-strip.has-media { grid-template-columns: 1fr; }
  .evidence-strip.has-media figure { min-height: 300px; }
  .roadmap-section { padding-block: 74px; }
  .pillars h3,
  .cooperation-list h3 { margin-top: 24px; }
  .activities,
  .activation-band,
  .cooperation,
  .institutional-gallery,
  .contact-form-section,
  .content-grid,
  .directory-preview,
  .archive-grid,
  .contact-cards { padding-block: 74px; }
  .contact-form-copy { position: static; }
  .contact-form { padding: 24px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-footer { align-items: stretch; }
  .cf-turnstile { min-width: 0; }
  .form-footer .button { width: 100%; }
  .activity-feature { height: auto; grid-template-columns: 1fr; }
  .feature-photo { height: 500px; }
  .activity-stack { grid-template-columns: 1fr; grid-template-rows: 330px 330px; }
  .activity-stack figcaption { display: grid; gap: 4px; }
  .logo-showcase { min-height: 340px; padding: 28px; }
  .logo-showcase img { width: min(62%, 220px); border-width: 9px; }
  .logo-showcase figcaption {
    display: grid;
    gap: 6px;
    padding-top: 24px;
  }
  .logo-showcase figcaption span { text-align: left; }
  .visual-directory article img {
    width: calc(100% + 48px);
    height: 230px;
    margin: -32px -24px 4px;
  }
  .activity-rail { grid-template-columns: 1fr; overflow: visible; }
  .activity-rail figure { height: 330px; }
  .community-layout,
  .impact-layout,
  .institutional-hero { grid-template-columns: 1fr; }
  .page-hero.with-photo,
  .page-hero.identity-hero { min-height: auto; }
  .page-hero.with-photo .page-width.two-col,
  .page-hero.identity-hero .page-width.two-col {
    width: 100%;
    max-width: none;
    min-height: auto;
    grid-template-columns: 1fr;
  }
  .page-hero.with-photo .page-width.two-col > div,
  .page-hero.identity-hero .page-width.two-col > div {
    width: var(--page);
    max-width: var(--page);
    min-height: 520px;
    margin-inline: auto;
    padding: 70px 0 38px;
  }
  .page-hero.with-photo .hero-photo,
  .page-hero.identity-hero .hero-card {
    height: 390px;
    min-height: 0;
    margin-left: 0;
  }
  .page-hero.with-photo .hero-photo::before { display: none; }
  .page-hero.identity-hero .hero-card {
    width: var(--page);
    margin-inline: auto;
    margin-bottom: 48px;
    box-shadow: 0 20px 38px rgb(1 26 59 / 18%);
  }
  .community-copy,
  .impact-copy { padding: 70px 0; }
  .community-image,
  .impact-image,
  .hero-photo { height: 390px; }
  .institutional-copy { min-height: 560px; padding: 70px 22px; }
  .institutional-media { height: 390px; }
  .impact-copy { order: -1; }
  .gallery-row { grid-template-columns: 1fr; }
  .gallery-row figure { height: 370px; }
  .footer-layout { min-height: 160px; flex-direction: column; align-items: flex-start; justify-content: center; gap: 18px; }
}
