/* ============================================================
   CoNEXT — Global Partnership
   Design system: teal (#00A0B8) + ink + warm bone, editorial
   serif display (Newsreader) over a clean grotesque (Archivo),
   forward double-arrow motif from the logo.
   ============================================================ */

:root {
  --ink:        #0E1316;
  --ink-2:      #161D22;
  --ink-soft:   #28323a;
  --teal:       #00A0B8;
  --teal-deep:  #007F93;
  --teal-light: #73D3DE;
  --paper:      #F4F1EA;
  --paper-2:    #ECE7DC;
  --white:      #FFFFFF;
  --line:       rgba(14,19,22,.12);
  --line-d:     rgba(255,255,255,.14);
  --muted:      #5b6168;
  --muted-d:    rgba(255,255,255,.62);

  --serif: "Newsreader", Georgia, "Times New Roman", serif;
  --sans: "Archivo", "Helvetica Neue", Arial, sans-serif;

  --maxw: 1240px;
  --gut: clamp(20px, 5vw, 64px);
}

/* tweakable hooks */
html[data-headline="sans"] h1,
html[data-headline="sans"] h2,
html[data-headline="sans"] .acc-q,
html[data-headline="sans"] .region-row .rname,
html[data-headline="sans"] .gov-card h3 {
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: -.02em;
}
html[data-headline="sans"] .it { font-style: normal; }
.hero-bg::after { transition: background .4s ease; }

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ---------- type ---------- */
h1,h2,h3,h4 { font-family: var(--serif); font-weight: 420; margin: 0; line-height: 1.04; letter-spacing: -.01em; }
.eyebrow {
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--teal-deep);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px; background: var(--teal);
  display: inline-block;
}
.eyebrow.center { justify-content: center; }
.lead { font-size: clamp(18px, 2.1vw, 22px); line-height: 1.6; color: var(--muted); font-weight: 400; }
em, .it { font-style: italic; }

/* ---------- layout ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gut); }
section { position: relative; }
.pad { padding-block: clamp(72px, 11vh, 140px); }
.dark { background: var(--ink); color: var(--paper); }
.dark .lead { color: var(--muted-d); }
.dark .eyebrow { color: var(--teal-light); }
.dark .eyebrow::before { background: var(--teal-light); }

/* ---------- arrow motif ---------- */
.arrows { display: inline-flex; align-items: center; gap: 3px; }
.arrows i {
  width: 0; height: 0;
  border-style: solid;
  border-width: var(--ah) 0 var(--ah) var(--aw);
  border-color: transparent transparent transparent var(--teal);
  display: block;
  --ah: 7px; --aw: 11px;
}
.arrows i:nth-child(2) { opacity: .55; }
.arrows.lg i { --ah: 13px; --aw: 20px; }
.arrows.sm i { --ah: 5px; --aw: 8px; }
.arrows.ink i { border-left-color: var(--ink); }
.arrows.white i { border-left-color: var(--white); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--sans); font-size: 13px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 16px 26px; border-radius: 2px; cursor: pointer;
  border: 1px solid transparent; transition: all .25s ease;
  white-space: nowrap; line-height: 1;
}
.btn .tri { width:0;height:0;border-style:solid;border-width:5px 0 5px 8px;border-color:transparent transparent transparent currentColor; transition: transform .25s ease; }
.btn:hover .tri { transform: translateX(4px); }
.btn-teal { background: var(--teal); color: #fff; }
.btn-teal:hover { background: var(--teal-deep); }
.btn-ink { background: var(--ink); color: var(--paper); }
.btn-ink:hover { background: var(--ink-soft); }
.btn-ghost { background: transparent; border-color: var(--line); color: var(--ink); }
.btn-ghost:hover { border-color: var(--ink); }
.dark .btn-ghost { border-color: var(--line-d); color: var(--paper); }
.dark .btn-ghost:hover { border-color: var(--paper); background: rgba(255,255,255,.05); }

/* (nav behavior handled in site.js) */
.nav-links a.cur { color: var(--teal); opacity: 1; }
.nav.scrolled .nav-links a.cur { color: var(--teal); }

/* ============================================================
   INNER PAGE PATTERNS
   ============================================================ */

/* banner hero */
.banner {
  position: relative; background: var(--ink); color: var(--paper);
  padding-top: clamp(130px, 17vh, 200px); padding-bottom: clamp(60px, 9vh, 110px);
  overflow: hidden;
}
.banner .ph { position: absolute; inset: 0; z-index: 0; }
.banner .ph::after { opacity: .55; }
.banner::after { content: ""; position: absolute; inset: 0; z-index: 1; background:
  linear-gradient(180deg, rgba(14,19,22,.72), rgba(14,19,22,.86)); }
.banner .wrap { position: relative; z-index: 2; }
.banner h1 { font-size: clamp(38px, 6vw, 80px); font-weight: 360; max-width: 18ch; letter-spacing: -.018em; }
.banner h1 .it { color: var(--teal-light); }
.banner .lead { color: rgba(244,241,234,.84); max-width: 56ch; margin-top: 22px; }
.crumb { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: rgba(244,241,234,.6); margin-bottom: 22px; display: inline-flex; gap: 10px; align-items: center; }
.crumb a { color: var(--teal-light); }

/* generic prose + measure */
.measure { max-width: 760px; }
.prose p { color: var(--ink); margin: 0 0 1.1em; }
.prose p.lead { color: var(--muted); }

/* section intro heading */
.sec-head { max-width: 820px; margin-bottom: clamp(36px, 5vw, 58px); }
.sec-head h2 { font-size: clamp(30px, 4.2vw, 54px); font-weight: 380; }

/* numbered faith / belief blocks */
.faith { display: grid; gap: 0; border-top: 1px solid var(--line); }
.faith-item { display: grid; grid-template-columns: 120px 1fr; gap: clamp(20px,4vw,56px); padding: clamp(28px,4vw,46px) 0; border-bottom: 1px solid var(--line); align-items: start; }
.faith-item .fnum { font-family: var(--serif); font-style: italic; font-weight: 300; font-size: clamp(34px,4vw,52px); color: var(--teal); line-height: 1; }
.faith-item h3 { font-size: clamp(22px,2.6vw,30px); font-weight: 440; margin-bottom: 14px; }
.faith-item p { margin: 0; color: var(--muted); max-width: 62ch; font-size: 16.5px; }
.dark .faith { border-color: var(--line-d); }
.dark .faith-item { border-color: var(--line-d); }
.dark .faith-item p { color: var(--muted-d); }
.dark .faith-item h3 { color: var(--paper); }
.dark .faith-item .fnum { color: var(--teal-light); }

/* commitment list (covenant page) */
.commit { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px,4vw,40px) clamp(40px,6vw,80px); }
.commit-item { padding-top: 24px; border-top: 2px solid var(--teal); }
.commit-item .ci-num { font-size: 13px; font-weight: 700; letter-spacing: .12em; color: var(--teal-deep); margin-bottom: 12px; display: block; }
.commit-item p { margin: 0; font-size: 17px; line-height: 1.5; }
.dark .commit-item p { color: var(--paper); }

/* checklist (maximize list) */
.checks { display: grid; gap: 4px; }
.check-row { display: flex; gap: 18px; align-items: baseline; padding: 18px 0; border-bottom: 1px solid var(--line); }
.dark .check-row { border-color: var(--line-d); }
.check-row .ck { flex: none; margin-top: 4px; }
.check-row p { margin: 0; font-size: 17px; }
.dark .check-row p { color: rgba(244,241,234,.9); }

/* region cards grid (regions page) */
.region-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(20px,3vw,32px); }
.region-card { position: relative; overflow: hidden; border-radius: 3px; aspect-ratio: 16/10; cursor: pointer; }
.region-card .ph { position: absolute; inset: 0; }
.region-card .rc-slot { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; --slot-radius: 0px; }
.region-card .rc-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; z-index: 1; }
.region-card .rc-slot::part(frame) { background:
  repeating-linear-gradient(135deg, rgba(0,160,184,.10) 0 2px, transparent 2px 11px), var(--ink-2); }
.region-card .rc-slot::part(empty) { color: rgba(244,241,234,.62); }
.region-card .rc-grad { position: absolute; inset: 0; z-index: 2; pointer-events: none; background: linear-gradient(180deg, rgba(14,19,22,.05) 30%, rgba(14,19,22,.85)); transition: background .35s; }
.region-card:hover .rc-grad { background: linear-gradient(180deg, rgba(0,160,184,.18) 0%, rgba(14,19,22,.9)); }
.region-card .rc-body { position: absolute; left: 0; bottom: 0; z-index: 3; padding: clamp(22px,3vw,34px); color: var(--paper); pointer-events: none; }
.region-card .rc-num { font-size: 12px; letter-spacing: .16em; color: var(--teal-light); font-weight: 600; }
.region-card .rc-name { font-family: var(--serif); font-size: clamp(26px,3vw,38px); font-weight: 420; margin: 6px 0 4px; line-height: 1.05; }
.region-card .rc-desc { font-size: 14.5px; color: rgba(244,241,234,.78); max-width: 40ch; opacity: 0; max-height: 0; transition: opacity .35s, max-height .35s, margin .35s; }
.region-card:hover .rc-desc { opacity: 1; max-height: 80px; margin-top: 8px; }

/* process steps (partner page) */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.step { background: var(--paper); padding: 32px 28px; }
.step .st-n { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--teal); color: var(--teal-deep); font-weight: 600; font-size: 15px; margin-bottom: 18px; }
.step h4 { font-family: var(--serif); font-size: 21px; font-weight: 440; margin-bottom: 8px; }
.step p { margin: 0; color: var(--muted); font-size: 15px; }

/* form */
.form-card { background: var(--white); border: 1px solid var(--line); border-radius: 4px; padding: clamp(28px,4vw,48px); }
.field { margin-bottom: 22px; }
.field label { display: block; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; font-weight: 600; color: var(--muted); margin-bottom: 9px; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--sans); font-size: 16px; color: var(--ink);
  padding: 14px 16px; border: 1px solid var(--line); border-radius: 2px; background: var(--paper);
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(0,160,184,.14); }
.field textarea { resize: vertical; min-height: 120px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.form-note { font-size: 13.5px; color: var(--muted); margin-top: 4px; }
.form-ok { background: rgba(0,160,184,.08); border: 1px solid var(--teal); color: var(--teal-deep); padding: 16px 20px; border-radius: 2px; font-size: 15px; display: none; }
.form-ok.show { display: block; }

/* quote band */
.quote-band { background: var(--ink); color: var(--paper); text-align: center; }
.quote-band blockquote { margin: 0; font-family: var(--serif); font-weight: 300; font-style: italic; font-size: clamp(26px,3.4vw,44px); line-height: 1.3; max-width: 24ch; margin-inline: auto; }
.quote-band cite { display: block; margin-top: 26px; font-family: var(--sans); font-style: normal; font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--teal-light); }

/* cta band */
.cta-band { text-align: center; }
.cta-band h2 { font-size: clamp(32px,4.6vw,60px); font-weight: 360; max-width: 18ch; margin: 0 auto 18px; }
.cta-band h2 .it { color: var(--teal); }

@media (max-width: 900px) {
  .faith-item { grid-template-columns: 1fr; gap: 8px; }
  .commit, .field-row { grid-template-columns: 1fr; }
  .region-cards { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .region-card .rc-desc { opacity: 1; max-height: 80px; margin-top: 8px; }
}

/* ---------- header / nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--gut);
  transition: background .3s ease, padding .3s ease, box-shadow .3s ease;
}
.nav.scrolled { background: rgba(244,241,234,.92); backdrop-filter: blur(12px); padding-block: 12px; box-shadow: 0 1px 0 var(--line); }
.nav-logo img { height: 30px; width: auto; transition: filter .3s; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-size: 13px; font-weight: 500; letter-spacing: .06em;
  color: var(--paper); opacity: .9; transition: opacity .2s, color .2s; position: relative;
}
.nav.scrolled .nav-links a { color: var(--ink); }
.nav.scrolled .nav-logo img { filter: none; }
.nav-links a:not(.btn):hover { opacity: 1; color: var(--teal); }
.nav .btn { padding: 11px 20px; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--paper); margin: 5px 0; transition: .3s; }
.nav.scrolled .nav-toggle span { background: var(--ink); }

/* ---------- hero ---------- */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: flex-end;
  color: var(--paper); overflow: hidden; background: var(--ink);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg::after { content: ""; position: absolute; inset: 0; background:
  linear-gradient(180deg, rgba(14,19,22,calc(var(--hero-veil,.9) * .6)) 0%, rgba(14,19,22,calc(var(--hero-veil,.9) * .4)) 38%, rgba(14,19,22,var(--hero-veil,.9)) 100%); }
.hero-inner { position: relative; z-index: 2; width: 100%; padding-block: clamp(60px,10vh,120px); }
.hero h1 {
  font-size: clamp(40px, 6.6vw, 92px);
  font-weight: 380; line-height: .98; max-width: 16ch; letter-spacing: -.018em;
}
.hero h1 .it { color: var(--teal-light); }
.hero .lead { color: rgba(244,241,234,.86); max-width: 56ch; margin-top: 28px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 40px; }
.hero-scroll { position: absolute; left: var(--gut); bottom: 30px; z-index: 3; display: flex; align-items: center; gap: 12px;
  font-size: 11px; letter-spacing: .24em; text-transform: uppercase; color: rgba(244,241,234,.7); }
.hero-scroll .arrows { transform: rotate(90deg); }

/* hero slideshow */
.hero-slides { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.6s ease; will-change: opacity; transform: scale(1.04); }
.hero-slide.active { opacity: 1; }
@media (prefers-reduced-motion: reduce) { .hero-slide { transition: none; } }


/* image placeholder */
.ph {
  position: relative; background:
    repeating-linear-gradient(135deg, rgba(0,160,184,.10) 0 2px, transparent 2px 11px),
    var(--ink-2);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.ph::after {
  content: attr(data-label);
  font-family: var(--sans); font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.4); padding: 6px 12px; border: 1px solid rgba(255,255,255,.18); border-radius: 2px;
  text-align: center; max-width: 80%;
}
.ph.light { background:
    repeating-linear-gradient(135deg, rgba(0,127,147,.12) 0 2px, transparent 2px 11px),
    var(--paper-2); }
.ph.light::after { color: var(--muted); border-color: var(--line); }

/* ---------- purpose / statement ---------- */
.statement { text-align: center; }
.statement .big {
  font-size: clamp(28px, 4.3vw, 60px); font-weight: 360; line-height: 1.1;
  max-width: 20ch; margin: 0 auto; letter-spacing: -.015em;
}
.statement .big .teal { color: var(--teal); font-style: italic; }

/* ---------- generic two-col ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 90px); align-items: center; }
.split .col-head h2 { font-size: clamp(30px, 4vw, 52px); font-weight: 400; }
.title-xl { font-size: clamp(32px, 4.6vw, 60px); font-weight: 380; }

/* ---------- beliefs accordion ---------- */
.beliefs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,5vw,70px); align-items: start; }
.acc { border-top: 1px solid var(--line-d); }
.dark .acc-item { border-bottom: 1px solid var(--line-d); }
.acc-item { border-bottom: 1px solid var(--line); }
.acc-q {
  width: 100%; background: none; border: 0; cursor: pointer; text-align: left;
  display: flex; align-items: center; gap: 18px; padding: 22px 0; color: inherit;
  font-family: var(--serif); font-size: clamp(18px,2vw,23px); font-weight: 400; letter-spacing: -.01em;
}
.acc-q .idx { font-family: var(--sans); font-size: 12px; font-weight: 600; letter-spacing: .1em; color: var(--teal); min-width: 30px; }
.acc-q .pm { margin-left: auto; position: relative; width: 16px; height: 16px; flex: none; }
.acc-q .pm::before, .acc-q .pm::after { content:""; position:absolute; background: var(--teal); transition: transform .3s ease; }
.acc-q .pm::before { left:0; top:7px; width:16px; height:2px; }
.acc-q .pm::after  { left:7px; top:0; width:2px; height:16px; }
.acc-item.open .pm::after { transform: scaleY(0); }
.acc-a { max-height: 0; overflow: hidden; transition: max-height .45s ease; }
.acc-a > div { padding: 0 0 24px 48px; color: var(--muted); max-width: 60ch; }
.dark .acc-a > div { color: var(--muted-d); }

/* ---------- covenant ---------- */
.cov-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line-d); border: 1px solid var(--line-d); }
.cov-cell { background: var(--ink); padding: 34px 32px; }
.cov-cell .n { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; color: var(--teal-light); }
.cov-cell .n b { font-family: var(--serif); font-size: 30px; font-weight: 300; font-style: italic; }
.cov-cell p { margin: 0; color: rgba(244,241,234,.82); font-size: 16px; line-height: 1.55; }

/* ---------- regions ---------- */
.regions-layout { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(30px,5vw,72px); align-items: center; }
.region-list { display: flex; flex-direction: column; }
.region-row {
  display: flex; align-items: baseline; gap: 18px; padding: 17px 0; border-bottom: 1px solid var(--line);
  cursor: pointer; transition: padding-left .25s ease, color .2s; position: relative;
}
.region-row .rnum { font-size: 12px; font-weight: 600; letter-spacing: .1em; color: var(--muted); min-width: 28px; font-variant-numeric: tabular-nums; }
.region-row .rname { font-family: var(--serif); font-size: clamp(22px,2.6vw,33px); font-weight: 400; transition: color .2s; }
.region-row .rmeta { margin-left: auto; font-size: 12.5px; letter-spacing: .04em; color: var(--muted); opacity: 0; transform: translateX(-8px); transition: .25s; }
.region-row::before { content:""; position:absolute; left:-22px; top:50%; transform: translateY(-50%) scaleX(0); transform-origin: left; width:14px; height:2px; background: var(--teal); transition: transform .25s ease; }
.region-row:hover, .region-row.active { padding-left: 26px; }
.region-row:hover::before, .region-row.active::before { transform: translateY(-50%) scaleX(1); }
.region-row:hover .rname, .region-row.active .rname { color: var(--teal); }
.region-row:hover .rmeta, .region-row.active .rmeta { opacity: 1; transform: translateX(0); }
.region-visual { position: relative; aspect-ratio: 4/5; border-radius: 2px; overflow: hidden; }
.region-visual .ph { position:absolute; inset:0; }
.region-badge { position: absolute; left: 20px; bottom: 20px; z-index: 3; background: rgba(14,19,22,.7); backdrop-filter: blur(6px);
  color: var(--paper); padding: 12px 18px; border-radius: 2px; border:1px solid rgba(255,255,255,.12); }
.region-badge .rb-name { font-family: var(--serif); font-size: 21px; }
.region-badge .rb-sub { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--teal-light); margin-top: 2px; }

/* ---------- globe ---------- */
.globe-section { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px,5vw,72px); align-items: center; }
.globe-wrap { display: flex; justify-content: center; }
.globe { width: min(100%, 480px); height: auto; overflow: visible; }
.globe.globe-lg { width: 100%; }
.globe .g-lines { transform-origin: 260px 260px; }
.globe .node {
  filter: drop-shadow(0 0 5px var(--teal-light));
  animation: nodePulse 3.2s ease-in-out infinite;
  animation-delay: calc(var(--i) * 0.38s);
  transform-box: fill-box; transform-origin: center;
}
@keyframes nodePulse {
  0%, 100% { opacity: .55; }
  50% { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) { .globe .node { animation: none; opacity: .9; } }
@media (max-width: 900px) {
  .globe-section { grid-template-columns: 1fr; }
  .globe { width: min(100%, 360px); }
}

/* globe in the regions banner */
.globe-hero::after { background: linear-gradient(115deg, rgba(14,19,22,.9) 0%, rgba(14,19,22,.55) 42%, rgba(14,19,22,.12) 100%); }
.banner-globe {
  position: absolute; z-index: 1; top: 50%; right: 0;
  width: min(56vw, 720px); transform: translateY(-50%);
  -webkit-mask-image: linear-gradient(95deg, transparent 0%, #000 24%);
  mask-image: linear-gradient(95deg, transparent 0%, #000 24%);
  pointer-events: none;
}
.globe-hero .wrap { position: relative; z-index: 2; }
/* stronger, more legible lines on the hero globe */
.globe-lg .g-lines circle,
.globe-lg .g-lines ellipse,
.globe-lg .g-lines line { stroke-opacity: 0.42 !important; }
.globe-lg .g-links { stroke-opacity: 0.55 !important; }
.globe-lg .node { filter: drop-shadow(0 0 7px var(--teal-light)); }
@media (prefers-reduced-motion: reduce) { .globe-lg .node { opacity: 1; } }
@media (max-width: 760px) {
  .banner-globe { right: -22%; width: 118%; opacity: .6; }
}

/* ---------- stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--line-d); }
.stat { background: var(--ink); padding: 40px 28px; text-align: center; }
.stat .num { font-family: var(--serif); font-size: clamp(40px,5vw,64px); font-weight: 320; color: var(--teal-light); line-height: 1; }
.stat .lab { font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted-d); margin-top: 12px; }

/* ---------- governance ---------- */
.gov-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.gov-card { background: var(--white); border: 1px solid var(--line); padding: 32px 30px; border-radius: 3px; transition: transform .3s ease, box-shadow .3s ease; }
.gov-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px -24px rgba(14,19,22,.35); }
.gov-card .gc-ic { width: 38px; height: 38px; display:flex; align-items:center; justify-content:center; margin-bottom: 20px; }
.gov-card h3 { font-size: 24px; font-weight: 440; margin-bottom: 10px; }
.gov-card p { margin: 0; color: var(--muted); font-size: 15.5px; line-height: 1.55; }
.gov-card .gc-term { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--teal-deep); font-weight: 600; }

/* ---------- join CTA ---------- */
.join { text-align: center; position: relative; overflow: hidden; }
.join h2 { font-size: clamp(36px,5.4vw,76px); font-weight: 360; max-width: 18ch; margin: 0 auto 22px; }
.join h2 .it { color: var(--teal-light); }
.crit { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 56px; text-align: left; }
.crit-item { padding-top: 22px; border-top: 1px solid var(--line-d); }
.crit-item .ci-n { color: var(--teal-light); font-size: 13px; font-weight: 600; letter-spacing: .12em; margin-bottom: 10px; display:block; }
.crit-item h4 { font-family: var(--serif); font-size: 21px; font-weight: 420; margin-bottom: 6px; }
.crit-item p { margin: 0; color: var(--muted-d); font-size: 14.5px; }

/* ---------- footer ---------- */
.foot { background: var(--ink-2); color: var(--paper); padding-block: 70px 36px; }
.foot-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; align-items: start; }
.foot img.flogo { height: 36px; margin-bottom: 22px; }
.foot p.fdesc { color: var(--muted-d); max-width: 38ch; font-size: 15px; }
.foot h5 { font-family: var(--sans); font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--teal-light); margin: 0 0 18px; }
.foot ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.foot ul a { color: var(--muted-d); font-size: 15px; transition: color .2s; }
.foot ul a:hover { color: var(--paper); }
.foot-bottom { margin-top: 54px; padding-top: 26px; border-top: 1px solid var(--line-d); display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  font-size: 12.5px; color: var(--muted-d); letter-spacing: .03em; }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .nav-links { position: fixed; inset: 0 0 0 auto; width: min(80vw,320px); background: var(--ink); flex-direction: column; align-items: flex-start;
    justify-content: center; padding: 40px; gap: 26px; transform: translateX(100%); transition: transform .4s cubic-bezier(.2,.7,.2,1); }
  .nav-links.open { transform: none; }
  .nav-links a { color: var(--paper) !important; font-size: 18px; }
  .nav-toggle { display: block; z-index: 70; }
  .split, .regions-layout, .beliefs-grid { grid-template-columns: 1fr; }
  .cov-grid, .crit, .gov-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2,1fr); }
  .foot-top { grid-template-columns: 1fr; gap: 36px; }
  .region-visual { aspect-ratio: 16/10; }
}
@media (max-width: 540px) {
  body { font-size: 16px; }
  .stats { grid-template-columns: 1fr; }
}

/* reduce motion */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
