*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy:      #14375E;
  --navy-deep: #0E2846;
  --blue:      #1D74C4;
  --blue-mid:  #2E86DE;
  --ice:       #EFF6FC;
  --ice-line:  #D6E6F4;
  --ink:       #14375E;
  --body:      #3D5670;
  --muted:     #6B849C;
  --gold:      #C9A227;
  --wrap:      1160px;
  --r:         14px;
}
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  color: var(--body); background: #fff;
  line-height: 1.62; font-size: 17px;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 22px; }
h1,h2,h3,h4 { color: var(--ink); line-height: 1.18; letter-spacing: -.02em; }
.eyebrow {
  font-size: 13px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 10px;
}
.lede { font-size: 19px; }
.script { font-style: italic; color: var(--blue); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 26px; border-radius: 999px; font-weight: 700; font-size: 16px;
  border: 2px solid transparent; cursor: pointer; transition: transform .15s, box-shadow .15s;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 8px 20px rgba(29,116,196,.28); }
.btn-primary:hover { background: var(--blue-mid); }
.btn-ghost { border-color: #fff; color: #fff; }
.btn-ghost:hover { background: rgba(255,255,255,.12); }
.btn-outline { border-color: var(--blue); color: var(--blue); }
.btn-outline:hover { background: var(--ice); }

/* ---------- header ---------- */
header {
  position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.96);
  backdrop-filter: blur(8px); border-bottom: 1px solid var(--ice-line);
}
.nav { display: flex; align-items: center; gap: 18px; height: 74px; }
.brand { display: flex; align-items: center; gap: 11px; }
.brand img { width: 42px; height: 42px; }
.brand b { color: var(--ink); font-size: 19px; letter-spacing: -.02em; display: block; line-height: 1.1; }
.brand .sub { font-size: 10.5px; letter-spacing: .18em; color: var(--muted); text-transform: uppercase; display: block; }
.nav nav { margin-left: auto; display: flex; gap: 26px; }
.nav nav a { color: var(--body); font-size: 15px; font-weight: 500; }
.nav nav a:hover { color: var(--blue); text-decoration: none; }
.nav .btn { padding: 10px 20px; font-size: 15px; }
@media (max-width: 940px) { .nav nav { display: none; } }

/* ---------- hero ---------- */
.hero { background: var(--navy); color: #fff; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.02fr 1fr; align-items: stretch; }
.hero-copy { padding: 78px 22px 78px 0; max-width: 620px; }
.hero h1 { color: #fff; font-size: clamp(34px, 5vw, 56px); margin-bottom: 20px; }
.hero p { color: #C9DCEE; margin-bottom: 16px; max-width: 30em; }
.hero .row { display: flex; gap: 13px; flex-wrap: wrap; margin-top: 26px; }
.hero-photo { position: relative; margin-right: -50vw; }
.hero-photo img { position: absolute; inset: 0; height: 100%; width: 100%; object-fit: cover; object-position: 62% 50%; }
.hero-photo::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, var(--navy) 0%, rgba(20,55,94,.55) 22%, transparent 55%);
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { padding: 52px 0 40px; }
  .hero-photo { margin: 0 -22px; position: relative; height: 320px; }
  .hero-photo::before { background: linear-gradient(180deg, rgba(20,55,94,.35), transparent 40%); }
  .hero-photo img { position: absolute; }
}

/* ---------- sections ---------- */
section { padding: 72px 0; }
section.tint { background: var(--ice); }
.center { text-align: center; }
.center h2 { font-size: clamp(26px, 3.4vw, 36px); margin-bottom: 12px; }
.center > .wrap > p { max-width: 62ch; margin: 0 auto; }
.mt { margin-top: 40px; }

/* three-up */
.three { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; }
.three .col { text-align: center; }
.three h3 { font-size: 16px; text-transform: uppercase; letter-spacing: .07em; margin: 14px 0 8px; }
.three p { font-size: 15.5px; }
.icon {
  width: 62px; height: 62px; margin: 0 auto; border-radius: 50%;
  background: #fff; border: 1px solid var(--ice-line);
  display: flex; align-items: center; justify-content: center; color: var(--blue);
}
.icon svg { width: 30px; height: 30px; }
section.tint .icon { background: #fff; }
@media (max-width: 820px) { .three { grid-template-columns: 1fr; gap: 30px; } }

/* threats strip */
.threats { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin-top: 34px; }
.threat {
  background: #fff; border: 1px solid var(--ice-line); border-radius: var(--r);
  padding: 18px 12px; text-align: center;
}
.threat b { display: block; font-size: 13px; color: var(--ink); margin-top: 8px; line-height: 1.35; }
.threat .g { font-size: 24px; }
@media (max-width: 780px) { .threats { grid-template-columns: repeat(2, 1fr); } }

/* steps */
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin-top: 40px; }
.step { text-align: center; }
.step .n {
  width: 46px; height: 46px; margin: 0 auto 12px; border-radius: 50%;
  background: var(--blue); color: #fff; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.step b { display: block; color: var(--ink); font-size: 15.5px; margin-bottom: 4px; }
.step p { font-size: 14.5px; }
@media (max-width: 860px) { .steps { grid-template-columns: repeat(2, 1fr); gap: 26px; } }

/* project cards */
.projects { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin-top: 40px; }
.card {
  background: #fff; border: 1px solid var(--ice-line); border-radius: var(--r);
  overflow: hidden; display: flex; flex-direction: column;
}
.card .head { padding: 13px 20px; font-size: 13px; font-weight: 700;
              letter-spacing: .09em; text-transform: uppercase; color: #fff; }
.card .head.active { background: var(--navy); }
.card .head.progress { background: #1E7A5E; }
.card .body { padding: 22px 20px; flex: 1; }
.card h3 { font-size: 19px; margin-bottom: 8px; }
.card p { font-size: 15.5px; }
.card img { border-radius: 10px; margin-bottom: 14px; }
.quote {
  background: var(--ice); border-left: 3px solid #1E7A5E; border-radius: 0 10px 10px 0;
  padding: 16px 18px 16px 16px; margin-bottom: 16px; display: flex; gap: 10px;
}
.quote .qm { font-size: 34px; line-height: .8; color: #1E7A5E; font-weight: 800; }
.quote p { font-size: 15.5px; font-style: italic; color: var(--ink); }
.credit { font-size: 13.5px; color: var(--muted); margin-top: 18px; }
.checklist { list-style: none; margin-top: 16px; }
.checklist li {
  display: flex; align-items: center; gap: 10px; font-size: 15px;
  padding: 8px 0; border-bottom: 1px solid var(--ice-line);
}
.checklist li:last-child { border-bottom: 0; }
.checklist .s { margin-left: auto; font-size: 13px; font-weight: 700; }
.s.done { color: #1E7A5E; } .s.now { color: var(--blue); } .s.next { color: var(--muted); }
@media (max-width: 860px) { .projects { grid-template-columns: 1fr; } }

/* stat band */
.band { background: var(--blue); color: #fff; padding: 44px 0; }
.band .grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; text-align: center; }
.band .big { font-size: clamp(24px, 3vw, 34px); font-weight: 800; letter-spacing: -.02em; }
.band .sm { font-size: 14px; color: #D3E7F8; margin-top: 4px; }
@media (max-width: 820px) { .band .grid { grid-template-columns: 1fr 1fr; gap: 28px; } }

/* donate block */
.donate-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 40px; align-items: center; }
.qr-card {
  background: #fff; border: 1px solid var(--ice-line); border-radius: var(--r);
  padding: 22px; text-align: center;
}
.qr-card img { width: 190px; margin: 0 auto 12px; }
.qr-card b { color: var(--ink); display: block; font-size: 15px; }
.qr-card span { font-size: 13.5px; color: var(--muted); }
.give { display: flex; gap: 13px; flex-wrap: wrap; margin: 24px 0 18px; }
.assure { display: flex; gap: 22px; flex-wrap: wrap; font-size: 14.5px; color: var(--muted); }
.assure b { color: var(--ink); }
@media (max-width: 860px) { .donate-grid { grid-template-columns: 1fr; gap: 28px; } }

/* footer */
footer { background: var(--navy-deep); color: #A9C4DC; padding: 54px 0 26px; font-size: 15px; }
.fgrid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 34px; }
footer h4 { color: #fff; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 14px; }
footer a { color: #A9C4DC; }
footer a:hover { color: #fff; }
footer ul { list-style: none; }
footer li { margin-bottom: 8px; }
.fbrand { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.fbrand img { width: 46px; height: 46px; }
.fbrand b { color: #fff; font-size: 18px; display: block; }
.legal {
  border-top: 1px solid rgba(255,255,255,.12); margin-top: 34px; padding-top: 20px;
  font-size: 13px; color: #8AA6C0; display: flex; gap: 16px; flex-wrap: wrap; justify-content: space-between;
}
@media (max-width: 820px) { .fgrid { grid-template-columns: 1fr; gap: 28px; } }
/* ---------- verify / identity card ---------- */
.verify { display: grid; grid-template-columns: 1.15fr 1fr; gap: 40px; align-items: center; }
.idcard {
  background: #fff; border: 1px solid var(--ice-line); border-radius: var(--r);
  padding: 24px 26px;
}
.idrow {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 11px 0; border-bottom: 1px solid var(--ice-line); font-size: 14.5px;
}
.idrow:last-of-type { border-bottom: 0; }
.idrow span { color: var(--muted); flex: 0 0 auto; }
.idrow b { color: var(--ink); text-align: right; font-size: 14.5px; }
@media (max-width: 880px) {
  .verify { grid-template-columns: 1fr; gap: 26px; }
  .idrow { flex-direction: column; gap: 2px; }
  .idrow b { text-align: left; }
}

/* Language switch chip in the header. Lives here rather than being injected
   into each page's <style> block: index.html has no inline style block, so the
   injected rule silently never landed there and the chip rendered as a plain
   link on the busiest page on the site. */
.langswitch {
  font-size: 13.5px; font-weight: 700; color: var(--blue);
  border: 1px solid var(--ice-line); border-radius: 999px;
  padding: 6px 12px; margin-right: 10px; white-space: nowrap;
}
.langswitch:hover { background: var(--ice); text-decoration: none; }
@media (max-width: 700px) { .langswitch { padding: 5px 9px; font-size: 12.5px; margin-right: 6px; } }
