:root {
  --navy:    #0A3D62;
  --navy2:   #0F5486;
  --navy-dk: #072338;
  --red:     #F15A22;
  --red2:    #FF7440;
  --gold:    #FFC107;
  --sky:     #EAF1FA;
  --bg:      #FFFFFF;
  --bg-alt:  #F5F8FC;
  --ink:     #1E2A3B;
  --muted:   #64748B;
  --border:  #E2E8F0;
  --white:   #fff;
  --nav-h:   72px;
  --radius:  12px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; max-width: 100%; overflow-x: hidden; }
body {
  font-family: 'Inter', sans-serif; color: var(--ink); background: var(--bg);
  font-size: 16px; line-height: 1.65; overflow-x: hidden; max-width: 100%;
}
h1, h2, h3, .font-display { font-family: 'Jost', sans-serif; font-weight: 700; line-height: 1.2; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.material-symbols-rounded { font-variation-settings: 'FILL' 1; }
.container { width: 100%; max-width: 1208px; margin-inline: auto; padding-inline: 24px; }
.c-gold { color: var(--red); }
[hidden] { display: none !important; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 28px; border-radius: 50px; font-weight: 600; font-size: .93rem;
  border: none; cursor: pointer; transition: transform .18s, opacity .15s, background .15s, box-shadow .18s;
  white-space: nowrap;
}
.btn .material-symbols-rounded { font-size: 19px !important; }
.btn:hover { transform: translateY(-2px); }
.btn-gold  { background: linear-gradient(135deg, var(--red2), var(--red)); color: var(--white); box-shadow: 0 10px 24px rgba(241,90,34,.3); }
.btn-gold:hover { box-shadow: 0 14px 30px rgba(241,90,34,.4); }
.btn-brand { background: var(--navy); color: var(--white); box-shadow: 0 10px 24px rgba(10,61,98,.25); }
.btn-brand:hover { box-shadow: 0 14px 30px rgba(10,61,98,.35); }
.btn-outline { background: rgba(255,255,255,.06); color: var(--white); border: 1.5px solid rgba(255,255,255,.6); backdrop-filter: blur(4px); }
.btn-outline:hover { background: rgba(255,255,255,.14); }
.btn.full { width: 100%; justify-content: center; }

/* ── Nav ──────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  height: var(--nav-h); display: flex; align-items: center;
  background: var(--white); box-shadow: 0 1px 0 var(--border); transition: box-shadow .2s;
}
.nav.scrolled { box-shadow: 0 4px 20px rgba(27,59,111,.1); }
.nav-inner { width: 100%; max-width: 1208px; margin-inline: auto; padding-inline: 24px; display: flex; align-items: center; gap: 28px; min-width: 0; }
.nav-logo { display: flex; align-items: center; gap: 10px; margin-right: auto; min-width: 0; flex-shrink: 1; }
.nav-logo-mark { width: auto; height: 30px; flex-shrink: 0; }
.nav-logo-text { min-width: 0; overflow: hidden; }
.nav-logo-name { display: block; font-family: 'Jost', sans-serif; font-weight: 700; font-size: 1.05rem; color: var(--navy); white-space: nowrap; }
.nav-logo-sub  { display: block; font-size: .68rem; color: var(--muted); letter-spacing: .06em; text-transform: uppercase; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.nav-menu { display: flex; align-items: center; gap: 26px; list-style: none; }
.nav-menu a { font-size: .89rem; font-weight: 500; color: var(--ink); transition: color .15s; }
.nav-menu a:hover, .nav-menu a.nav-active { color: var(--red); }
.nav-cta { background: var(--red); color: var(--white) !important; padding: 9px 18px; border-radius: 8px; }
.nav-cta:hover { color: var(--white) !important; opacity: .9; }

.lang-drop { position: relative; flex-shrink: 0; }
.lang-drop-btn { display: flex; align-items: center; gap: 5px; background: none; border: none; cursor: pointer; font-family: inherit; padding: 6px; color: var(--ink); }
.lang-flag { font-size: 1.1rem; }
.lang-code { font-size: .78rem; font-weight: 700; }
.lang-chevron { transition: transform .15s; }
.lang-drop.open .lang-chevron { transform: rotate(180deg); }
.lang-drop-menu {
  position: absolute; top: calc(100% + 10px); right: 0; background: var(--white);
  border-radius: 10px; box-shadow: 0 10px 30px rgba(27,59,111,.15); padding: 6px;
  opacity: 0; pointer-events: none; transform: translateY(-6px); transition: opacity .15s, transform .15s;
  min-width: 160px; border: 1px solid var(--border);
}
.lang-drop.open .lang-drop-menu { opacity: 1; pointer-events: auto; transform: translateY(0); }
.lang-drop-item { display: flex; align-items: center; gap: 8px; padding: 8px 10px; border-radius: 6px; font-size: .85rem; }
.lang-drop-item:hover { background: var(--sky); }

.nav-burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; flex-shrink: 0; }
.nav-burger span { width: 22px; height: 2px; background: var(--navy); border-radius: 2px; }

.drawer-overlay { position: fixed; inset: 0; background: rgba(18,42,82,.5); z-index: 600; opacity: 0; pointer-events: none; transition: opacity .25s; }
.drawer-overlay.open { opacity: 1; pointer-events: auto; }
.nav-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(320px, 86vw);
  background: var(--white); z-index: 601; padding: 24px; display: flex; flex-direction: column; gap: 20px;
  transform: translateX(100%); transition: transform .3s;
}
.nav-drawer.open { transform: translateX(0); }
.drawer-close { align-self: flex-end; background: none; border: none; cursor: pointer; padding: 6px; }
.drawer-logo { font-family: 'Jost', sans-serif; font-weight: 700; font-size: 1.2rem; color: var(--navy); }
.drawer-langs { display: flex; gap: 8px; }
.drawer-lang-btn { display: flex; align-items: center; gap: 6px; padding: 7px 12px; border-radius: 8px; border: 1px solid var(--border); font-size: .82rem; font-weight: 600; }
.drawer-lang-active { background: var(--sky); border-color: var(--navy); }
.drawer-nav { display: flex; flex-direction: column; gap: 4px; }
.drawer-link { padding: 12px 4px; border-bottom: 1px solid var(--border); font-weight: 500; }
.drawer-ctas { margin-top: auto; }
.btn-gold.full, .drawer-ctas .btn { color: var(--white); }

/* ── Hero ─────────────────────────────────────────────────── */
.hero { position: relative; min-height: 680px; display: flex; align-items: center; overflow: hidden; background: var(--navy); padding-bottom: 70px; }
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 28%; background-repeat: no-repeat;
  transform: scale(1.04);
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(120deg, rgba(241,90,34,.22), transparent 42%),
    linear-gradient(0deg, rgba(7,35,58,.97) 0%, rgba(10,61,98,.72) 38%, rgba(10,61,98,.6) 62%, rgba(10,61,98,.8) 100%);
}
.hero::after {
  content: ''; position: absolute; left: -2%; right: -2%; bottom: -1px; height: 90px; z-index: 3; pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100' preserveAspectRatio='none'%3E%3Cpath d='M0,45 C220,95 420,0 700,35 C980,70 1200,10 1440,55 L1440,100 L0,100 Z' fill='%23F5F8FC'/%3E%3C/svg%3E") no-repeat bottom center;
  background-size: 100% 100%;
}
.hero-inner { position: relative; z-index: 2; padding-top: var(--nav-h); max-width: 720px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px; color: var(--white);
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.28);
  backdrop-filter: blur(6px);
  font-weight: 600; letter-spacing: .04em; text-transform: uppercase; font-size: .74rem;
  padding: 7px 14px; border-radius: 50px; margin-bottom: 24px;
}
.hero-title { color: var(--white); font-size: clamp(2.4rem, 5.4vw, 3.8rem); margin-bottom: 22px; letter-spacing: -.01em; text-shadow: 0 4px 24px rgba(0,0,0,.25); }
.hero-sub { color: rgba(255,255,255,.88); font-size: 1.14rem; max-width: 560px; margin-bottom: 38px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── Sections ─────────────────────────────────────────────── */
.section { padding: 88px 0; }
.section-header { max-width: 640px; margin-bottom: 48px; }
.section-tag { color: var(--red); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; font-size: .76rem; margin-bottom: 12px; }
.section-title { font-size: clamp(1.6rem, 2.8vw, 2.3rem); color: var(--navy); }
.section-sub { margin-top: 16px; color: var(--muted); font-size: 1.02rem; }

/* ── Pillars ──────────────────────────────────────────────── */
.pillars { background: var(--bg-alt); position: relative; }
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pillar-card {
  position: relative; background: var(--white); border-radius: 18px; padding: 36px 30px 30px;
  border: 1px solid var(--border); box-shadow: 0 4px 18px rgba(10,61,98,.06); overflow: hidden;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.pillar-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--navy), var(--red)); transform: scaleX(0); transform-origin: left; transition: transform .3s; }
.pillar-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(10,61,98,.14); border-color: transparent; }
.pillar-card:hover::before { transform: scaleX(1); }
.pillar-num { position: absolute; top: 14px; right: 20px; font-family: 'Jost', sans-serif; font-weight: 700; font-size: 3.2rem; color: var(--sky); line-height: 1; z-index: 0; }
.pillar-icon {
  position: relative; z-index: 1; width: 58px; height: 58px; border-radius: 16px;
  background: linear-gradient(135deg, var(--navy), var(--navy2));
  display: flex; align-items: center; justify-content: center; margin-bottom: 22px;
  box-shadow: 0 8px 18px rgba(10,61,98,.25);
}
.pillar-icon .material-symbols-rounded { color: var(--white); font-size: 27px !important; }
.pillar-card h3 { position: relative; z-index: 1; font-size: 1.15rem; color: var(--navy); margin-bottom: 10px; }
.pillar-card p { position: relative; z-index: 1; color: var(--muted); font-size: .95rem; }

/* ── Story ────────────────────────────────────────────────── */
.story-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 64px; align-items: center; }
.story-media { position: relative; }
.story-media::before {
  content: ''; position: absolute; top: -20px; left: -20px; width: 100%; height: 100%;
  border: 3px solid var(--red); border-radius: var(--radius); z-index: 0;
}
.story-photo {
  position: relative; z-index: 1;
  width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--radius);
  box-shadow: 0 24px 50px rgba(10,61,98,.22);
}
.story-photo-placeholder {
  aspect-ratio: 4/5; border-radius: var(--radius); background: linear-gradient(160deg, var(--sky), var(--border));
  display: flex; align-items: center; justify-content: center;
}
.story-photo-placeholder .material-symbols-rounded { font-size: 96px !important; color: var(--navy); opacity: .35; }
.story-quote {
  position: relative; z-index: 2; margin: -54px 22px 0 auto; max-width: 300px;
  background: var(--navy); color: var(--white); border-radius: 14px; padding: 22px 24px;
  box-shadow: 0 20px 40px rgba(10,61,98,.3);
}
.story-quote .material-symbols-rounded { color: var(--gold); font-size: 26px !important; margin-bottom: 8px; display: block; }
.story-quote p { font-family: 'Jost', sans-serif; font-weight: 600; font-size: 1rem; line-height: 1.5; }

/* ── Mission / Vision / Values cards ─────────────────────── */
.mvv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.mvv-card {
  background: var(--white); border-radius: 16px; padding: 34px 28px 30px; position: relative;
  box-shadow: 0 4px 18px rgba(10,61,98,.06); border-top: 4px solid var(--navy);
  transition: transform .25s, box-shadow .25s;
}
.mvv-card:nth-child(2) { border-top-color: var(--red); }
.mvv-card:nth-child(3) { border-top-color: var(--gold); }
.mvv-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(10,61,98,.14); }
.mvv-card .pillar-icon { background: linear-gradient(135deg, var(--navy), var(--navy2)); }
.mvv-card:nth-child(2) .pillar-icon { background: linear-gradient(135deg, var(--red), var(--red2)); }
.mvv-card:nth-child(3) .pillar-icon { background: linear-gradient(135deg, #E0A400, var(--gold)); }
.mvv-card h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: 10px; }
.mvv-card p { color: var(--muted); font-size: .93rem; }
.mvv-list { list-style: none; display: flex; flex-direction: column; gap: 10px; color: var(--ink); font-size: .9rem; font-weight: 500; }
.mvv-list li { padding-left: 20px; position: relative; }
.mvv-list li::before { content: '✓'; position: absolute; left: 0; top: -1px; color: var(--gold); font-weight: 700; }

/* ── Stats ────────────────────────────────────────────────── */
.stats { background: var(--navy-dk); position: relative; overflow: hidden; }
.stats::before {
  content: ''; position: absolute; inset: 0; opacity: .5;
  background:
    radial-gradient(circle at 12% 20%, rgba(241,90,34,.18), transparent 40%),
    radial-gradient(circle at 88% 80%, rgba(15,84,134,.5), transparent 45%);
}
.stats .container { position: relative; z-index: 1; }
.stats .section-title { color: var(--white); }
.stats .section-tag { color: var(--gold, #FFC107); }
.section-header.center { text-align: center; max-width: 640px; margin-inline: auto; }
.stats-grid {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: stretch;
}
.stat-card {
  padding: 14px 40px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 8px;
  border-left: 1px solid rgba(255,255,255,.14);
}
.stat-card:first-child { border-left: none; }
.stat-card .material-symbols-rounded { color: var(--gold); font-size: 24px !important; }
.stat-num { font-family: 'Jost', sans-serif; font-size: 2.6rem; font-weight: 700; color: var(--white); line-height: 1; letter-spacing: -.02em; }
.stat-label { color: rgba(255,255,255,.68); font-size: .82rem; letter-spacing: .01em; }

/* ── Gallery ──────────────────────────────────────────────── */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gallery-item { aspect-ratio: 3/4; border-radius: 12px; overflow: hidden; position: relative; }
.gallery-item:nth-child(2), .gallery-item:nth-child(3) { margin-top: 32px; }
.gallery-item::after { content: ''; position: absolute; inset: 0; background: linear-gradient(200deg, transparent 60%, rgba(10,61,98,.35)); opacity: 0; transition: opacity .3s; }
.gallery-item:hover::after { opacity: 1; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-preview { background: var(--bg-alt); }
.gallery-full-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 200px; grid-auto-flow: dense; gap: 18px; }
.gallery-full-item { border-radius: var(--radius); overflow: hidden; position: relative; }
.gallery-full-item:nth-child(3n+1) { grid-row: span 2; }
.gallery-full-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.gallery-full-item:hover img { transform: scale(1.08); }
.gallery-caption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 14px 16px 10px;
  background: linear-gradient(to top, rgba(10,61,98,.85), transparent);
  color: var(--white); font-size: .82rem; font-weight: 600;
}
.center-cta { text-align: center; margin-top: 32px; }
.center-cta .link-arrow { justify-content: center; }
.story-role { color: var(--red); font-weight: 600; margin: 6px 0 16px; }
.story-text { color: var(--muted); font-size: 1.02rem; margin: 18px 0 22px; white-space: pre-line; }
.link-arrow { display: inline-flex; align-items: center; gap: 6px; color: var(--navy); font-weight: 600; }
.link-arrow .material-symbols-rounded { font-size: 18px !important; transition: transform .15s; }
.link-arrow:hover .material-symbols-rounded { transform: translateX(4px); }

/* ── Values ───────────────────────────────────────────────── */
.values { background: var(--sky); }
.values .section-title { color: var(--navy); }
.values .section-tag { color: var(--red); }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 18px; }
.value-item {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 12px; padding: 22px; display: flex; flex-direction: column; gap: 12px;
  color: var(--ink); font-weight: 500; font-size: .94rem;
}
.value-item .material-symbols-rounded { color: var(--red); font-size: 26px !important; }

/* ── Team ─────────────────────────────────────────────────── */
.team-preview { background: var(--white); }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; max-width: 640px; }
.team-card {
  background: var(--white); border-radius: 16px; border: 1px solid var(--border);
  box-shadow: 0 3px 14px rgba(10,61,98,.05); transition: transform .2s, box-shadow .2s;
  padding: 24px 20px; text-align: center;
}
.team-card:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(10,61,98,.12); }
.team-card[data-bio] { cursor: pointer; }
.team-photo {
  width: 84px; height: 84px; aspect-ratio: 1/1; border-radius: 50%; margin: 0 auto;
  background: linear-gradient(150deg, var(--navy), var(--navy2) 55%, var(--red) 130%);
  display: flex; align-items: center; justify-content: center; overflow: hidden; border: 3px solid var(--sky); position: relative;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.team-card:hover .team-photo img { transform: scale(1.05); }
.team-photo .material-symbols-rounded { font-size: 32px !important; color: var(--white); opacity: .7; }
.team-card-body { padding: 14px 0 0; text-align: center; }
.team-name { font-size: .96rem; color: var(--navy); }
.team-role {
  display: inline-block; color: var(--red); font-size: .68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .04em; margin-top: 7px;
  background: var(--sky); padding: 3px 10px; border-radius: 50px;
}
.team-bio { color: var(--muted); font-size: .84rem; margin-top: 10px; line-height: 1.55; text-align: left; }
.team-bio-clamp { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.team-readmore {
  display: inline-block; margin-top: 8px; background: none; border: none; padding: 0;
  cursor: pointer; color: var(--red); font-weight: 700; font-size: .8rem; font-family: inherit;
}
.team-readmore:hover { text-decoration: underline; }

/* ── Team member modal ───────────────────────────────────── */
.team-modal-overlay {
  position: fixed; inset: 0; z-index: 950; background: rgba(7,35,58,.65);
  display: flex; align-items: center; justify-content: center; padding: 20px;
  opacity: 0; pointer-events: none; transition: opacity .2s;
}
.team-modal-overlay.show { opacity: 1; pointer-events: auto; }
.team-modal {
  position: relative; background: var(--white); border-radius: 20px;
  width: min(460px, 100%); max-height: 85vh; overflow-y: auto;
  padding: 40px 32px 34px; text-align: center;
  box-shadow: 0 30px 70px rgba(0,0,0,.35);
  transform: translateY(12px) scale(.97); transition: transform .2s;
}
.team-modal-overlay.show .team-modal { transform: translateY(0) scale(1); }
.team-modal-close {
  position: absolute; top: 14px; right: 14px; width: 34px; height: 34px; border-radius: 50%;
  background: var(--bg-alt); border: none; color: var(--muted); cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: background .15s;
}
.team-modal-close:hover { background: var(--border); }
.team-modal-photo {
  width: 108px; height: 108px; border-radius: 50%; margin: 0 auto 18px;
  background: linear-gradient(150deg, var(--navy), var(--navy2) 55%, var(--red) 130%);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
  border: 4px solid var(--sky);
}
.team-modal-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-modal-photo .material-symbols-rounded { font-size: 44px !important; color: var(--white); opacity: .7; }
.team-modal-name { font-size: 1.2rem; color: var(--navy); }
.team-modal-role {
  display: inline-block; color: var(--red); font-size: .74rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .04em; margin-top: 8px;
  background: var(--sky); padding: 4px 12px; border-radius: 50px;
}
.team-modal-bio { color: var(--muted); font-size: .92rem; line-height: 1.7; margin-top: 18px; text-align: left; white-space: pre-line; }

/* ── News ─────────────────────────────────────────────────── */
.news-preview { background: var(--bg-alt); }
.news-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 26px; }
.news-card { background: var(--white); border-radius: 16px; overflow: hidden; border: 1px solid var(--border); box-shadow: 0 4px 18px rgba(10,61,98,.06); transition: transform .25s, box-shadow .25s; }
.news-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(10,61,98,.14); }
.news-card-img { aspect-ratio: 16/10; background: var(--sky); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.news-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.news-card:hover .news-card-img img { transform: scale(1.06); }
.news-card-img .material-symbols-rounded { font-size: 40px !important; color: var(--navy); opacity: .35; }
.news-card-body { padding: 22px; }
.news-card-body h3 { font-size: 1.06rem; color: var(--navy); margin-bottom: 8px; }
.news-card-body p { color: var(--muted); font-size: .88rem; margin-bottom: 14px; }
.empty-msg { color: var(--muted); }

/* ── Participe ────────────────────────────────────────────── */
.participe { background: var(--white); }
.participe-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.parte-card { background: var(--bg-alt); border-radius: var(--radius); padding: 34px; border: 1px solid var(--border); }
.parte-card-alt { background: var(--navy); color: var(--white); border-color: var(--navy); }
.parte-icon { width: 52px; height: 52px; border-radius: 12px; background: var(--sky); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.parte-icon .material-symbols-rounded { color: var(--navy); font-size: 26px !important; }
.parte-icon-alt { background: rgba(255,255,255,.14); }
.parte-icon-alt .material-symbols-rounded { color: var(--white); }
.parte-title { font-size: 1.15rem; margin-bottom: 10px; color: var(--navy); }
.parte-card-alt .parte-title { color: var(--white); }
.parte-text { color: var(--muted); font-size: .92rem; margin-bottom: 20px; }
.parte-card-alt .parte-text { color: rgba(255,255,255,.82); }

/* ── Footer ───────────────────────────────────────────────── */
.footer { background: var(--navy-dk); color: rgba(255,255,255,.72); }
.footer-top { padding: 64px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.footer-logo-wrap { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-logo-img { width: auto; height: 26px; }
.footer-logo { font-family: 'Jost', sans-serif; font-weight: 700; color: var(--white); font-size: 1.1rem; }
.footer-tagline { font-size: .9rem; margin-bottom: 18px; max-width: 280px; }
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center; transition: background .15s;
}
.social-btn:hover { background: var(--red); }
.footer-col-title { color: var(--white); font-size: .84rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 16px; }
.footer-info-item { display: flex; align-items: flex-start; gap: 10px; font-size: .88rem; margin-bottom: 12px; }
.f-icon { color: var(--red2); font-size: 18px !important; margin-top: 1px; }
.footer-nav-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-nav-list a { font-size: .88rem; transition: color .15s; }
.footer-nav-list a:hover { color: var(--red2); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 18px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; font-size: .78rem; flex-wrap: wrap; gap: 8px; }

/* ── Page hero (inner pages) ──────────────────────────────── */
.page-hero { background: var(--navy); padding: calc(var(--nav-h) + 56px) 0 76px; position: relative; overflow: hidden; }
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(120deg, rgba(241,90,34,.22), transparent 50%),
    radial-gradient(circle at 90% 10%, rgba(15,84,134,.6), transparent 45%);
}
.page-hero::after {
  content: ''; position: absolute; left: -2%; right: -2%; bottom: -1px; height: 60px; z-index: 1; pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100' preserveAspectRatio='none'%3E%3Cpath d='M0,45 C220,95 420,0 700,35 C980,70 1200,10 1440,55 L1440,100 L0,100 Z' fill='%23FFFFFF'/%3E%3C/svg%3E") no-repeat bottom center;
  background-size: 100% 100%;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero .section-tag { color: var(--red2); }
.page-title { color: var(--white); font-size: clamp(1.8rem, 3.6vw, 2.5rem); }
.page-sub { color: rgba(255,255,255,.82); margin-top: 14px; max-width: 620px; font-size: 1.02rem; }
.back-link { color: var(--red2) !important; margin-bottom: 18px; }

/* ── Missions phases ──────────────────────────────────────── */
.phases-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.phase-card { position: relative; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 34px; box-shadow: 0 2px 10px rgba(27,59,111,.05); }
.phase-num { position: absolute; top: 24px; right: 28px; font-family: 'Jost', sans-serif; font-size: 2.2rem; color: var(--sky); font-weight: 700; }
.phase-card h3 { font-size: 1.18rem; color: var(--navy); margin: 6px 0 10px; }
.phase-card p { color: var(--muted); font-size: .95rem; }

/* ── FAQ ───────────────────────────────────────────────────── */
.faq-section { background: var(--white); }
.faq-list { max-width: 760px; margin-inline: auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px 22px; }
.faq-item summary {
  cursor: pointer; font-weight: 600; color: var(--navy); font-size: .98rem;
  display: flex; align-items: center; justify-content: space-between; gap: 12px; list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-caret { transition: transform .2s; color: var(--red); flex-shrink: 0; }
.faq-item[open] .faq-caret { transform: rotate(180deg); }
.faq-item p { color: var(--muted); font-size: .92rem; margin-top: 12px; }

.cta-band { background: var(--sky); }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }

/* ── News detail ──────────────────────────────────────────── */
.post-container { max-width: 660px; margin-inline: auto; }
.post-cover { width: 100%; max-height: 360px; aspect-ratio: 16/9; object-fit: cover; border-radius: var(--radius); margin-bottom: 26px; box-shadow: 0 10px 26px rgba(10,61,98,.12); }
.post-content { font-size: .96rem; line-height: 1.75; color: var(--ink); }
.post-content p { margin-bottom: 15px; }
.post-content h2 { color: var(--navy); font-size: 1.25rem; margin: 24px 0 10px; }
.post-content h3 { color: var(--navy); font-size: 1.08rem; margin: 20px 0 8px; }
.post-content img { max-width: 100%; border-radius: 8px; margin: 14px auto; box-shadow: 0 6px 18px rgba(10,61,98,.1); }
.post-hero.page-hero { padding-top: calc(var(--nav-h) + 32px); padding-bottom: 52px; }
.post-hero .page-title { font-size: clamp(1.5rem, 2.8vw, 2rem); }

/* ── Contact ──────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px; }
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-label { display: flex; flex-direction: column; gap: 6px; font-weight: 600; font-size: .9rem; }
.form-input {
  padding: 12px 14px; border: 1px solid var(--border); border-radius: 8px;
  font-family: inherit; font-size: .95rem; background: var(--white); outline: none; transition: border-color .15s;
}
.form-input:focus { border-color: var(--navy); }
.form-textarea { min-height: 140px; resize: vertical; }
.contact-info { display: flex; flex-direction: column; gap: 18px; }
.info-card { background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.info-card h3 { display: flex; align-items: center; gap: 8px; font-size: 1rem; color: var(--navy); margin-bottom: 10px; }
.info-card h3 .material-symbols-rounded { color: var(--red); }
.info-card p { color: var(--muted); font-size: .92rem; }

.give-section { background: var(--bg-alt); }
.give-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.give-grid-3 { grid-template-columns: repeat(3, 1fr); }
.give-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; }
.give-card h3 { color: var(--navy); font-size: 1.05rem; margin-bottom: 14px; }
.give-list { list-style: none; display: flex; flex-direction: column; gap: 8px; font-size: .92rem; color: var(--ink); }

/* ── Popup / destaque ─────────────────────────────────────── */
.popup-overlay {
  display: none; position: fixed; inset: 0; z-index: 900;
  background: rgba(18,42,82,.65); align-items: center; justify-content: center; padding: 20px;
}
.popup-modal {
  position: relative; background: var(--white); border-radius: 16px; overflow: hidden;
  width: min(440px, 100%); box-shadow: 0 30px 70px rgba(0,0,0,.35);
}
.popup-modal-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.popup-modal-body { padding: 28px; }
.popup-eyebrow { display: block; color: var(--red); font-weight: 700; font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 8px; }
.popup-title { display: block; font-family: 'Jost', sans-serif; font-size: 1.25rem; color: var(--navy); margin-bottom: 10px; }
.popup-body { color: var(--muted); font-size: .92rem; margin-bottom: 18px; }
.popup-btn { display: inline-flex; background: var(--navy); color: var(--white); padding: 11px 22px; border-radius: 8px; font-weight: 600; font-size: .88rem; }
.popup-close {
  position: absolute; top: 12px; right: 12px; width: 32px; height: 32px; border-radius: 50%;
  background: rgba(0,0,0,.4); color: var(--white); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center; z-index: 2;
}

/* ── Reveal ───────────────────────────────────────────────── */
.reveal-up { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal-up.revealed { opacity: 1; transform: none; }

/* ══════════════ RESPONSIVE ══════════════════════════════════ */
@media (max-width: 900px) {
  .nav-menu { display: none; }
  .nav-burger { display: flex; }
  .story-grid { grid-template-columns: 1fr; }
  .story-media { max-width: 340px; margin: 0 auto; }
  .story-quote { max-width: 220px; margin-top: -40px; }
  .pillars-grid { grid-template-columns: 1fr; }
  .mvv-grid { grid-template-columns: 1fr; }
  .participe-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .give-grid, .give-grid-3 { grid-template-columns: 1fr; }
  .phases-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-full-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-card { border-left: none; padding: 10px 22px; }
}
@media (max-width: 560px) {
  .nav-logo-mark { height: 22px; }
  .nav-logo-sub { display: none; }
  .section { padding: 60px 0; }
  .hero { min-height: auto; padding-top: 20px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .cta-band-inner { flex-direction: column; align-items: flex-start; }
  .story-media::before { display: none; }
  .team-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(2), .gallery-item:nth-child(3) { margin-top: 0; }
  .gallery-full-grid { grid-template-columns: 1fr; grid-auto-rows: 260px; }
  .gallery-full-item:nth-child(3n+1) { grid-row: span 1; }
}
