/* ============================================================
   UBUNTU ACROSS BOARDERS | Design System v4
   Editorial + modern UI. Fraunces (display) + Source Sans 3 (text).
   African diamond patternwork woven through every surface.
   Uniform spacing scale · perfect responsive · a11y first.
   ============================================================ */

:root {
  --clay:   #C4501D;
  --clay-d: #A63F12;
  --gold:   #E8A33C;
  --gold-d: #B97B14;
  --teal:   #0E6B5B;
  --teal-d: #0A5245;
  --indigo: #274E86;
  --ink:    #1E1512;
  --ink-2:  #140D0A;
  --ink-soft: #6B5648;
  --paper:  #FAF6EE;
  --sand:   #F1E7D6;
  --line:   rgba(30, 21, 18, .10);
  --white:  #FFFFFF;
  --shadow-s: 0 2px 10px rgba(30, 21, 18, .06);
  --shadow: 0 14px 40px rgba(30, 21, 18, .10);
  --shadow-l: 0 30px 70px rgba(30, 21, 18, .16);
  --radius: 20px;
  --radius-btn: 14px;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --font-head: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Source Sans 3", "Segoe UI", Tahoma, sans-serif;
  --font-mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  /* African diamond motif | woven through the site */
  --pat: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='56' viewBox='0 0 56 56'%3E%3Cg fill='none' stroke='%23C4501D' stroke-width='1.2'%3E%3Cpath d='M28 6 L50 28 L28 50 L6 28 Z'/%3E%3Cpath d='M28 17 L39 28 L28 39 L17 28 Z'/%3E%3C/g%3E%3C/svg%3E");
  --pat-cream: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='56' viewBox='0 0 56 56'%3E%3Cg fill='none' stroke='%23FAF6EE' stroke-width='1.2'%3E%3Cpath d='M28 6 L50 28 L28 50 L6 28 Z'/%3E%3Cpath d='M28 17 L39 28 L28 39 L17 28 Z'/%3E%3C/g%3E%3C/svg%3E");
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }

body {
  font-family: var(--font-body);
  font-size: clamp(1.02rem, .98rem + .2vw, 1.1rem);
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* whisper of film grain */
body::after {
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 2000; opacity: .022;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); }
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 600; line-height: 1.12; color: var(--ink); }
::selection { background: var(--gold); color: var(--ink); }

/* Accessibility: focus + skip link */
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 3px solid rgba(232, 163, 60, .85); outline-offset: 3px; border-radius: 6px;
}
.skip {
  position: absolute; left: 1rem; top: -100px; z-index: 300;
  background: var(--ink); color: var(--paper); font-weight: 700;
  padding: .7rem 1.2rem; border-radius: 0 0 12px 12px; text-decoration: none;
  transition: top .2s ease;
}
.skip:focus { top: 0; }

.container { width: min(1180px, 92%); margin: 0 auto; }

.kicker {
  font-family: var(--font-body); font-weight: 700; font-size: .76rem;
  letter-spacing: .26em; text-transform: uppercase; color: var(--clay);
  display: inline-block; margin-bottom: .9rem;
}
.kicker::before { content: ""; display: inline-block; width: 26px; height: 2px; background: var(--gold); vertical-align: middle; margin-right: .7rem; }
.kicker.live::before { display: none; }

/* ---------- Scroll progress ---------- */
.progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 100%;
  background: linear-gradient(90deg, var(--clay), var(--gold));
  transform: scaleX(0); transform-origin: 0 50%; z-index: 120;
}

/* ---------- Buttons (modern, uniform) ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  font-family: var(--font-body); font-weight: 700; font-size: .95rem; letter-spacing: .015em;
  padding: .88rem 1.6rem; border-radius: var(--radius-btn); border: 1.5px solid transparent;
  text-decoration: none; cursor: pointer; line-height: 1.2;
  box-shadow: 0 1px 2px rgba(30, 21, 18, .10);
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease), color .18s var(--ease), border-color .18s var(--ease);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(30, 21, 18, .16); }
.btn:active { transform: translateY(0) scale(.985); box-shadow: 0 2px 8px rgba(30, 21, 18, .12); }
.btn svg { width: 18px; height: 18px; flex: none; transition: transform .2s var(--ease); }
.btn:hover svg { transform: translateX(2px); }
.btn-clay { background: var(--clay); color: #FFF9F1; }
.btn-clay:hover { background: var(--clay-d); }
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold:hover { background: #D6922B; }
.btn-teal { background: var(--teal); color: #F2FBF8; }
.btn-teal:hover { background: var(--teal-d); }
.btn-indigo { background: var(--indigo); color: #F2F6FC; }
.btn-outline { border-color: rgba(30, 21, 18, .22); color: var(--ink); background: transparent; box-shadow: none; }
.btn-outline:hover { border-color: var(--clay); color: var(--clay); background: rgba(196, 80, 29, .06); }
.btn-outline-light { border-color: rgba(250, 246, 238, .5); color: var(--paper); background: rgba(250, 246, 238, .06); box-shadow: none; }
.btn-outline-light:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.btn-light { background: var(--paper); color: var(--ink); }
.btn-light:hover { background: var(--white); }
.btn-sm { padding: .62rem 1.15rem; font-size: .87rem; border-radius: 11px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 246, 238, .9);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s var(--ease), background .3s var(--ease);
}
.site-header.scrolled { box-shadow: var(--shadow-s); background: rgba(250, 246, 238, .98); }
.nav-bar { display: flex; align-items: center; justify-content: space-between; padding: .72rem 0; }
.brand { display: flex; align-items: center; gap: .75rem; text-decoration: none; }
.brand img { width: 44px; height: 44px; }
.brand-text { line-height: 1.08; }
.brand-text .b1 { display: block; font-family: var(--font-head); font-weight: 700; font-size: 1.22rem; color: var(--ink); }
.brand-text .b2 { display: block; font-family: var(--font-body); font-weight: 700; font-size: .62rem; letter-spacing: .34em; color: var(--clay); }
.main-nav { display: flex; align-items: center; gap: 1.6rem; }
.main-nav a {
  font-family: var(--font-body); font-weight: 600; font-size: .95rem;
  color: var(--ink); text-decoration: none; position: relative; padding: .3rem 0;
}
.main-nav a::after {
  content: ""; position: absolute; left: 0; bottom: -4px; height: 2px; width: 0;
  background: var(--clay); transition: width .25s var(--ease);
}
.main-nav a:hover::after, .main-nav a[aria-current="page"]::after { width: 100%; }
.main-nav a[aria-current="page"] { color: var(--clay); }
.nav-cta { margin-left: .3rem; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: .4rem; }
.nav-toggle span { display: block; width: 26px; height: 3px; background: var(--ink); border-radius: 2px; margin: 5px 0; transition: .25s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Pattern band & ticker ---------- */
.pattern-band { height: 12px; background: url("../assets/pattern-band.svg") repeat-x; background-size: 96px 12px; }
.ticker { overflow: hidden; background: var(--ink); position: relative; }
.ticker::before { content: ""; position: absolute; inset: 0; background-image: var(--pat-cream); background-size: 56px; opacity: .05; pointer-events: none; }
.ticker-track { display: flex; width: max-content; padding: .68rem 0; animation: tick 34s linear infinite; position: relative; }
.ticker-track span {
  font-family: var(--font-body); font-weight: 600; font-size: .78rem; letter-spacing: .3em;
  color: rgba(250, 246, 238, .78); text-transform: uppercase; padding: 0 1.7rem; white-space: nowrap;
}
.ticker-track span b { color: var(--gold); font-weight: 700; }
@keyframes tick { to { transform: translateX(-50%); } }
.ticker:hover .ticker-track { animation-play-state: paused; }

/* ---------- Reveal ---------- */
.js [data-reveal] {
  opacity: 0; transform: translateY(26px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  transition-delay: var(--d, 0s);
}
.js [data-reveal="left"] { transform: translateX(-32px); }
.js [data-reveal="right"] { transform: translateX(32px); }
.js [data-reveal="scale"] { transform: scale(.95); }
.js [data-reveal].is-in { opacity: 1; transform: none; }

/* ---------- Full-bleed heroes ---------- */
.hero-full, .camp-hero {
  position: relative; color: var(--paper); overflow: hidden;
  display: flex; align-items: center;
  background-size: cover; background-position: center 38%;
}
.hero-full { min-height: clamp(540px, 80vh, 780px); padding: 6.5rem 0 5.2rem; }
.camp-hero { min-height: clamp(580px, 84vh, 820px); padding: 7rem 0 5.6rem; background-position: center 45%; }
.hero-full::before, .camp-hero::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(97deg, rgba(20, 13, 10, .9) 0%, rgba(20, 13, 10, .64) 48%, rgba(20, 13, 10, .2) 100%);
}
/* pattern weave over the open sky side */
.hero-full::after, .camp-hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: var(--pat-cream); background-size: 56px; opacity: .12;
  -webkit-mask-image: linear-gradient(to left, black 0%, transparent 55%);
  mask-image: linear-gradient(to left, black 0%, transparent 55%);
}
.hero-full .container, .camp-hero .container { position: relative; z-index: 2; }
.hero-full h1, .camp-hero h1 {
  color: var(--paper); font-weight: 600; line-height: 1.06; margin-bottom: 1.2rem;
}
.hero-full h1 { font-size: clamp(2.6rem, 5.6vw, 4.4rem); max-width: 15em; }
.camp-hero h1 { font-size: clamp(2.7rem, 5.8vw, 4.6rem); max-width: 14em; }
.hero-full h1 em { font-style: italic; color: var(--gold); }
.camp-hero h1 .hl { color: var(--gold); font-style: italic; }
.hero-full p.lede, .camp-hero p.lede {
  font-size: clamp(1.08rem, 1rem + .38vw, 1.26rem); line-height: 1.65;
  color: rgba(250, 246, 238, .93); max-width: 37rem; margin-bottom: 2.1rem;
}
.hero-full .kicker, .camp-hero .kicker { color: var(--gold); }
.hero-full .kicker::before, .camp-hero .kicker::before { background: var(--clay); }
.hero-actions, .camp-actions { display: flex; gap: .9rem; flex-wrap: wrap; }
.camp-actions { margin-bottom: 1.6rem; }
.hero-meta { position: absolute; z-index: 2; right: 4%; bottom: 2.2rem; display: flex; gap: 2.4rem; color: rgba(250,246,238,.85); }
.hero-meta div { text-align: right; }
.hero-meta strong { display: block; font-family: var(--font-head); font-size: 1.5rem; color: var(--gold); font-weight: 600; }
.hero-meta span { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; }
.live-dot { display: inline-block; width: 9px; height: 9px; border-radius: 50%; background: #FF5C38; margin-right: .45rem; animation: pulse 1.7s ease infinite; vertical-align: middle; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(255,92,56,.55); } 55% { box-shadow: 0 0 0 8px rgba(255,92,56,0); } }

/* ---------- Sections (uniform rhythm) ---------- */
section { padding: clamp(4.2rem, 7vw, 6.2rem) 0; }
.section-head { max-width: 46rem; margin-bottom: clamp(2.4rem, 4vw, 3.2rem); }
.section-head h2 { font-size: clamp(1.9rem, 3.4vw, 2.8rem); margin-bottom: .8rem; }
.section-head p { color: var(--ink-soft); font-size: 1.08rem; }
.center { text-align: center; }
.center .section-head { margin-left: auto; margin-right: auto; }

/* ---------- Cards ---------- */
.pillars { background: var(--sand); position: relative; }
.pillars::before { content: ""; position: absolute; inset: 0; background-image: var(--pat); background-size: 56px; opacity: .05; pointer-events: none; }
.pillars > .container { position: relative; }
.pillar-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.pillar-card {
  background: var(--white); border-radius: var(--radius); padding: 2.1rem 1.7rem;
  border: 1px solid var(--line); box-shadow: var(--shadow-s); position: relative; overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.pillar-card::after {
  content: ""; position: absolute; right: -18px; top: -18px; width: 84px; height: 84px;
  background-image: var(--pat); background-size: 42px; opacity: .12; pointer-events: none;
  transition: opacity .3s ease;
}
.pillar-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.pillar-card:hover::after { opacity: .22; }
.pillar-icon {
  width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center;
  background: rgba(196, 80, 29, .1); color: var(--clay); margin-bottom: 1.3rem;
  transition: transform .4s var(--ease);
}
.pillar-card:hover .pillar-icon { transform: rotate(-8deg) scale(1.06); }
.pillar-card:nth-child(4n+2) .pillar-icon { background: rgba(232, 163, 60, .16); color: var(--gold-d); }
.pillar-card:nth-child(4n+3) .pillar-icon { background: rgba(14, 107, 91, .1); color: var(--teal); }
.pillar-card:nth-child(4n+4) .pillar-icon { background: rgba(39, 78, 134, .1); color: var(--indigo); }
.pillar-icon svg { width: 26px; height: 26px; }
.pillar-card .prog { font-family: var(--font-body); font-size: .7rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-soft); }
.pillar-card h3 { font-size: 1.3rem; margin: .35rem 0 .6rem; }
.pillar-card p { font-size: .96rem; color: var(--ink-soft); }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; counter-reset: step; }
.step { position: relative; padding: 2rem 1.7rem; background: var(--white); border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow-s); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.step::before {
  counter-increment: step; content: "0" counter(step);
  font-family: var(--font-head); font-style: italic; font-weight: 500; font-size: 2.4rem;
  color: var(--gold); display: block; margin-bottom: .6rem; line-height: 1;
}
.step h3 { font-size: 1.22rem; margin-bottom: .5rem; }
.step p { font-size: .97rem; color: var(--ink-soft); }

/* ---------- Quote band (patterned) ---------- */
.quote-band { background: var(--ink); color: var(--paper); text-align: center; padding: clamp(3.6rem, 7vw, 5.2rem) 0; position: relative; overflow: hidden; }
.quote-band::before { content: ""; position: absolute; inset: 0; background-image: var(--pat-cream); background-size: 56px; opacity: .06; pointer-events: none; }
.quote-band .container { position: relative; }
.quote-band blockquote { font-family: var(--font-head); font-style: italic; font-weight: 500; font-size: clamp(1.6rem, 3.6vw, 2.6rem); max-width: 44rem; margin: 0 auto 1rem; color: var(--paper); line-height: 1.25; }
.quote-band cite { font-style: normal; font-family: var(--font-body); font-weight: 600; color: var(--gold); letter-spacing: .1em; font-size: .95rem; }

/* ---------- Stats ---------- */
.stats { background: var(--ink); color: var(--paper); position: relative; overflow: hidden; }
.stats::before { content: ""; position: absolute; inset: 0; background-image: var(--pat-cream); background-size: 56px; opacity: .05; pointer-events: none; }
.stats .container { position: relative; }
.stats.rounded { border-radius: var(--radius); padding: 3rem 1.8rem; }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.8rem; text-align: center; }
.stat-num { font-family: var(--font-head); font-weight: 600; font-size: clamp(2.3rem, 4.4vw, 3.3rem); color: var(--gold); line-height: 1; }
.stat-label { display: block; margin-top: .6rem; font-size: .88rem; letter-spacing: .08em; color: rgba(250, 246, 238, .75); }

/* ---------- Spotlight (home campaign band) ---------- */
.spotlight { position: relative; color: var(--paper); overflow: hidden; background: var(--ink-2); }
.spotlight::before { content: ""; position: absolute; inset: 0; background: url("../assets/redrocks-hero.webp?v=2") center 42% / cover no-repeat; opacity: .5; }
.spotlight::after { content: ""; position: absolute; inset: 0; background: linear-gradient(94deg, rgba(20,13,10,.94) 8%, rgba(20,13,10,.72) 52%, rgba(20,13,10,.25) 100%); }
.spotlight .container { position: relative; z-index: 2; }
.spotlight h2 { color: var(--paper); font-size: clamp(2rem, 3.8vw, 3rem); margin-bottom: 1rem; }
.spotlight p { color: rgba(250, 246, 238, .92); margin-bottom: 1.6rem; font-size: 1.08rem; max-width: 38rem; }
.spotlight .kicker { color: var(--gold); }
.trust-row { display: flex; flex-wrap: wrap; gap: .6rem; margin: 0 0 1.7rem; }
.trust-chip {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-body); font-weight: 600; font-size: .8rem;
  background: rgba(250, 246, 238, .1); border: 1px solid rgba(250, 246, 238, .28);
  color: var(--paper); padding: .45rem 1rem; border-radius: 999px;
  backdrop-filter: blur(4px);
}
.trust-chip svg { width: 14px; height: 14px; color: var(--gold); }

/* ---------- Involve cards ---------- */
.involve-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.involve-card { border-radius: var(--radius); padding: 2.2rem 1.8rem; color: var(--paper); display: flex; flex-direction: column; gap: .9rem; min-height: 230px; position: relative; overflow: hidden; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.involve-card::after { content: ""; position: absolute; right: -20px; bottom: -20px; width: 110px; height: 110px; background-image: var(--pat-cream); background-size: 55px; opacity: .1; pointer-events: none; }
.involve-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-l); }
.involve-card h3 { color: var(--paper); font-size: 1.45rem; }
.involve-card p { font-size: .98rem; opacity: .93; flex: 1; }
.involve-card a.btn { align-self: flex-start; }
.involve-donate { background: linear-gradient(155deg, var(--clay), #8E3510); }
.involve-volunteer { background: linear-gradient(155deg, var(--teal), #07463B); }
.involve-partner { background: linear-gradient(155deg, var(--indigo), #142C4E); }

/* ---------- Page hero (interior, patterned) ---------- */
.page-hero { background: var(--sand); padding: clamp(3.6rem, 7vw, 5.2rem) 0; border-bottom: 1px solid var(--line); position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; background-image: var(--pat); background-size: 56px; opacity: .06; pointer-events: none; }
.page-hero .container { position: relative; }
.page-hero h1 { font-size: clamp(2.3rem, 4.8vw, 3.6rem); margin-bottom: .9rem; max-width: 20em; }
.page-hero p { max-width: 46rem; font-size: 1.14rem; color: var(--ink-soft); }

/* ---------- About ---------- */
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.7rem; margin-bottom: 3rem; }
.mv-card { background: var(--white); border-radius: var(--radius); padding: 2.3rem; border: 1px solid var(--line); box-shadow: var(--shadow-s); position: relative; overflow: hidden; transition: transform .3s var(--ease); }
.mv-card:hover { transform: translateY(-5px); }
.mv-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--gold); }
.mv-card::after { content: ""; position: absolute; right: -16px; top: -16px; width: 90px; height: 90px; background-image: var(--pat); background-size: 45px; opacity: .1; pointer-events: none; }
.mv-card:last-child::before { background: var(--teal); }
.mv-card h3 { font-size: 1.5rem; margin-bottom: .7rem; }
.values-list { list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(205px, 1fr)); gap: 1.1rem; }
.values-list li { background: var(--white); border-radius: 16px; padding: 1.4rem; border: 1px solid var(--line); box-shadow: var(--shadow-s); transition: transform .3s var(--ease); }
.values-list li:hover { transform: translateY(-4px); }
.values-list strong { font-family: var(--font-head); font-weight: 600; font-size: 1.08rem; color: var(--clay); display: block; margin-bottom: .25rem; }
.values-list span { font-size: .93rem; color: var(--ink-soft); }

/* ---------- Leadership portrait ---------- */
.profile {
  display: grid; grid-template-columns: 300px 1fr; gap: 3.2rem; align-items: center;
  background: var(--white); border-radius: var(--radius); padding: clamp(2rem, 4.5vw, 3.4rem);
  border: 1px solid var(--line); box-shadow: var(--shadow); position: relative; overflow: hidden;
}
.profile::before { content: ""; position: absolute; right: -60px; top: -60px; width: 240px; height: 240px; background-image: var(--pat); background-size: 60px; opacity: .08; pointer-events: none; }
.portrait { position: relative; }
.portrait img {
  width: 100%; aspect-ratio: 3 / 4; object-fit: cover; object-position: center top;
  border-radius: 24px; box-shadow: var(--shadow);
}
.portrait::after {
  content: ""; position: absolute; inset: -12px; border-radius: 30px;
  border: 1.5px dashed rgba(196, 80, 29, .45); pointer-events: none;
}
.portrait .pat-corner {
  position: absolute; left: -14px; bottom: -14px; width: 74px; height: 74px;
  background-image: var(--pat); background-size: 37px; opacity: .5; pointer-events: none;
}
.profile h3 { font-size: clamp(1.6rem, 3vw, 2.1rem); }
.profile .role { font-family: var(--font-body); font-weight: 700; font-size: .78rem; letter-spacing: .22em; text-transform: uppercase; color: var(--clay); margin: .35rem 0 1rem; }
.profile p.bio { color: var(--ink-soft); margin-bottom: 1rem; }
.profile .btn { margin-top: .5rem; }

/* ---------- Causes ---------- */
.cause-block { display: grid; grid-template-columns: 100px 1fr; gap: 2.2rem; padding: 3rem 0; border-bottom: 1px solid var(--line); }
.cause-block:first-of-type { padding-top: 0; }
.cause-block:last-of-type { border-bottom: none; padding-bottom: 0; }
.cause-num { font-family: var(--font-head); font-style: italic; font-weight: 500; font-size: 3.2rem; color: var(--clay); line-height: 1; }
.cause-block:nth-of-type(2) .cause-num { color: var(--gold-d); }
.cause-block:nth-of-type(3) .cause-num { color: var(--teal); }
.cause-block:nth-of-type(4) .cause-num { color: var(--indigo); }
.cause-block h3 { font-size: 1.7rem; margin-bottom: .25rem; }
.cause-block .prog { font-family: var(--font-body); font-weight: 700; font-size: .74rem; letter-spacing: .22em; text-transform: uppercase; color: var(--ink-soft); }
.cause-block p { margin: .8rem 0; color: var(--ink-soft); max-width: 46rem; }
.cause-block ul { margin: .4rem 0 0 1.2rem; color: var(--ink-soft); }
.cause-block li { margin: .3rem 0; }
.chip {
  display: inline-block; margin-top: 1rem; font-family: var(--font-body); font-weight: 700;
  font-size: .74rem; letter-spacing: .16em; text-transform: uppercase;
  background: rgba(232, 163, 60, .16); color: var(--gold-d); padding: .42rem 1rem; border-radius: 999px;
}
.chip-live { background: rgba(14, 107, 91, .12); color: var(--teal); }
.chip-live a { color: inherit; }

/* ---------- Note card ---------- */
.note-card {
  background: var(--white); border: 1px solid var(--line); border-left: 5px solid var(--teal);
  border-radius: var(--radius); padding: 1.9rem 2.1rem; margin: 1.6rem 0; box-shadow: var(--shadow-s);
  position: relative; overflow: hidden;
}
.note-card::after { content: ""; position: absolute; right: -14px; bottom: -14px; width: 80px; height: 80px; background-image: var(--pat); background-size: 40px; opacity: .1; pointer-events: none; }
.note-card h3 { margin-bottom: .5rem; font-size: 1.3rem; }
.note-card p { color: var(--ink-soft); }
.note-card.gold { border-left-color: var(--gold); }

/* ============================================================
   CAMPAIGN | conversion system
   ============================================================ */
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.how-card { background: var(--white); border-radius: var(--radius); padding: 2.1rem 1.8rem; border: 1px solid var(--line); box-shadow: var(--shadow-s); position: relative; overflow: hidden; transition: transform .3s var(--ease); }
.how-card::after { content: ""; position: absolute; right: -14px; top: -14px; width: 80px; height: 80px; background-image: var(--pat); background-size: 40px; opacity: .1; pointer-events: none; }
.how-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.how-num {
  width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center;
  background: var(--ink); color: var(--gold); font-family: var(--font-head); font-style: italic; font-size: 1.25rem;
  margin-bottom: 1.1rem;
}
.how-card h3 { font-size: 1.28rem; margin-bottom: .55rem; }
.how-card p { font-size: .97rem; color: var(--ink-soft); }

.promise { background: var(--teal); color: var(--paper); text-align: center; padding: clamp(3.2rem, 6vw, 4.6rem) 0; position: relative; overflow: hidden; }
.promise::before { content: ""; position: absolute; inset: 0; background-image: var(--pat-cream); background-size: 56px; opacity: .07; pointer-events: none; }
.promise .container { position: relative; }
.promise .shield { width: 52px; height: 52px; margin: 0 auto 1.1rem; color: var(--gold); }
.promise h2 { color: var(--paper); font-size: clamp(1.7rem, 3.2vw, 2.4rem); margin-bottom: .9rem; }
.promise p { max-width: 46rem; margin: 0 auto; color: rgba(250, 246, 238, .95); font-size: 1.07rem; }
.promise strong { color: var(--gold); }

/* Give channels */
.give-wrap { max-width: 50rem; margin: 0 auto; display: grid; gap: 1.2rem; }
.channel {
  display: grid; grid-template-columns: 54px 1fr auto; gap: 1.3rem; align-items: center;
  background: var(--white); border-radius: var(--radius); padding: 1.4rem 1.6rem;
  border: 1px solid var(--line); border-left: 5px solid var(--teal); box-shadow: var(--shadow-s);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.channel:hover { transform: translateX(6px); box-shadow: var(--shadow); }
.channel:nth-child(2) { border-left-color: var(--gold); }
.channel:nth-child(3) { border-left-color: var(--indigo); }
.channel-ico { width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center; background: var(--sand); color: var(--ink); }
.channel-ico svg { width: 25px; height: 25px; }
.channel h3 { font-size: 1.2rem; margin-bottom: .2rem; }
.channel p { font-size: .92rem; color: var(--ink-soft); }
.channel-actions { display: flex; gap: .55rem; flex-wrap: wrap; justify-content: flex-end; }
.copy-btn {
  font-family: var(--font-body); font-weight: 700; font-size: .8rem; cursor: pointer;
  background: var(--sand); color: var(--ink); border: none; border-radius: 10px; padding: .6rem 1.1rem;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.copy-btn:hover { background: var(--gold); transform: translateY(-1px); }
.copy-btn.copied { background: var(--teal); color: var(--paper); }
.give-note { text-align: center; font-size: .95rem; color: var(--ink-soft); margin: 1.4rem auto 0; max-width: 40rem; }
.give-note strong { color: var(--clay); }

/* Bank details card */
.bank-card {
  background: var(--ink); color: var(--paper); border-radius: var(--radius);
  padding: clamp(1.8rem, 4vw, 2.6rem); max-width: 50rem; margin: 2.2rem auto 0;
  box-shadow: var(--shadow-l); position: relative; overflow: hidden;
}
.bank-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--clay), var(--gold)); }
.bank-card::after { content: ""; position: absolute; right: -30px; bottom: -30px; width: 160px; height: 160px; background-image: var(--pat-cream); background-size: 53px; opacity: .07; pointer-events: none; }
.bank-card h3 { color: var(--paper); font-size: 1.5rem; margin-bottom: .4rem; }
.bank-card .bank-sub { color: rgba(250, 246, 238, .7); font-size: .92rem; margin-bottom: 1.4rem; }
.bank-row { display: flex; justify-content: space-between; align-items: baseline; gap: 1.5rem; padding: .8rem 0; border-bottom: 1px dashed rgba(250, 246, 238, .18); }
.bank-row:last-of-type { border-bottom: none; }
.bank-row dt { font-size: .74rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: rgba(250, 246, 238, .6); flex: none; }
.bank-row dd { font-family: var(--font-mono); font-size: .95rem; color: var(--paper); text-align: right; word-break: break-word; }
.bank-row dd.hl { color: var(--gold); font-weight: 700; }
.bank-actions { display: flex; gap: .6rem; flex-wrap: wrap; margin-top: 1.5rem; }
.bank-actions .copy-btn { background: rgba(250, 246, 238, .12); color: var(--paper); }
.bank-actions .copy-btn:hover { background: var(--gold); color: var(--ink); }
.bank-foot { margin-top: 1.2rem; font-size: .88rem; color: rgba(250, 246, 238, .72); }
.bank-foot a { color: var(--gold); }

/* Tiers */
.tier-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.4rem; }
.tier { background: var(--white); border-radius: var(--radius); padding: 1.9rem 1.6rem; border: 1px solid var(--line); border-top: 4px solid var(--gold); box-shadow: var(--shadow-s); position: relative; overflow: hidden; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.tier::after { content: ""; position: absolute; right: -12px; bottom: -12px; width: 70px; height: 70px; background-image: var(--pat); background-size: 35px; opacity: .1; pointer-events: none; }
.tier:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.tier-amt { font-family: var(--font-head); font-weight: 600; font-size: 1.7rem; color: var(--clay); }
.tier-amt small { font-size: .58em; color: var(--ink-soft); font-family: var(--font-body); font-weight: 600; }
.tier h3 { font-size: 1.15rem; margin: .5rem 0 .4rem; }
.tier p { font-size: .93rem; color: var(--ink-soft); }

/* Emotional band */
.heart-band { background: var(--paper); }
.band-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.band-split img { border-radius: var(--radius); box-shadow: var(--shadow-l); border: 5px solid var(--white); }
.band-split blockquote { font-family: var(--font-head); font-style: italic; font-weight: 500; font-size: clamp(1.5rem, 2.8vw, 2.1rem); line-height: 1.3; color: var(--ink); margin-bottom: 1rem; }
.band-split cite { font-style: normal; font-family: var(--font-body); font-weight: 700; font-size: .82rem; letter-spacing: .2em; text-transform: uppercase; color: var(--clay); }
.band-split p { color: var(--ink-soft); margin-top: 1.1rem; }

/* Share + FAQ */
.share-row { display: flex; gap: .9rem; flex-wrap: wrap; justify-content: center; }
.faq { max-width: 48rem; margin: 0 auto; display: grid; gap: 1rem; }
.faq details { background: var(--white); border-radius: 16px; border: 1px solid var(--line); box-shadow: var(--shadow-s); overflow: hidden; }
.faq summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; font-family: var(--font-head); font-weight: 600; font-size: 1.12rem; padding: 1.25rem 1.5rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--font-body); font-size: 1.6rem; color: var(--clay); line-height: 1; transition: transform .3s var(--ease); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 1.5rem 1.4rem; color: var(--ink-soft); font-size: .99rem; }

/* Sticky give bar */
.sticky-give {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
  background: rgba(20, 13, 10, .95); backdrop-filter: blur(10px);
  color: var(--paper); padding: .8rem 4%;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  transform: translateY(110%); transition: transform .4s var(--ease);
  box-shadow: 0 -12px 34px rgba(0,0,0,.28); border-top: 1px solid rgba(232,163,60,.35);
}
.sticky-give.show { transform: none; }
.sticky-give .sg-text { font-family: var(--font-body); font-weight: 600; font-size: .95rem; }
.sticky-give .sg-text b { color: var(--gold); }
.sticky-give .sg-note { display: block; font-weight: 400; font-size: .78rem; color: rgba(250, 246, 238, .7); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: var(--paper); padding: 4rem 0 1.8rem; position: relative; }
.site-footer::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 120px; background-image: var(--pat-cream); background-size: 56px; opacity: .04; pointer-events: none; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 2.6rem; margin-bottom: 2.6rem; position: relative; }
.footer-grid h4 { color: var(--gold); font-family: var(--font-body); font-weight: 700; font-size: .82rem; letter-spacing: .24em; text-transform: uppercase; margin-bottom: 1.1rem; }
.footer-grid a { color: rgba(250, 246, 238, .82); text-decoration: none; display: block; padding: .2rem 0; transition: color .2s ease, transform .2s ease; }
.footer-grid a:hover { color: var(--gold); transform: translateX(3px); }
.footer-brand img { width: 52px; margin-bottom: .9rem; }
.footer-brand p { font-size: .96rem; color: rgba(250, 246, 238, .75); max-width: 22rem; }
.social-row { display: flex; gap: .7rem; margin-top: 1.2rem; }
.social-row a { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: rgba(250, 246, 238, .08); border: 1px solid rgba(250, 246, 238, .18); transition: background .25s ease, transform .25s ease; }
.social-row a:hover { background: var(--clay); transform: translateY(-3px); }
.social-row svg { width: 18px; height: 18px; color: var(--paper); }
.footer-bottom { border-top: 1px solid rgba(250, 246, 238, .14); padding-top: 1.5rem; font-size: .85rem; color: rgba(250, 246, 238, .58); display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; position: relative; }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .pillar-grid { grid-template-columns: repeat(2, 1fr); }
  .steps, .involve-grid, .how-grid { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .profile { grid-template-columns: 1fr; text-align: center; gap: 2.2rem; }
  .portrait { max-width: 280px; margin: 0 auto; }
  .profile .btn { justify-content: center; }
  .hero-meta { display: none; }
  .band-split { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .main-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--paper); flex-direction: column; align-items: flex-start;
    padding: 1.3rem 5%; gap: 1rem; display: none; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .main-nav.open { display: flex; }
  .nav-toggle { display: block; }
  .pillar-grid, .tier-grid { grid-template-columns: 1fr; }
  .cause-block { grid-template-columns: 1fr; gap: .7rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .channel { grid-template-columns: 54px 1fr; }
  .channel-actions { grid-column: 1 / -1; justify-content: flex-start; }
  .mv-grid { grid-template-columns: 1fr; }
  .bank-row { flex-direction: column; gap: .2rem; }
  .bank-row dd { text-align: left; }
  .sticky-give .sg-note { display: none; }
  .hero-full, .camp-hero { min-height: 0; padding: 5.5rem 0 4rem; }
}
@media (max-width: 560px) {
  .hero-actions, .camp-actions, .share-row, .bank-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn, .camp-actions .btn, .share-row .btn, .bank-actions .copy-btn { width: 100%; }
  .footer-bottom { flex-direction: column; gap: .4rem; }
  .sticky-give { padding: .7rem 4%; }
  .sticky-give .sg-text { font-size: .84rem; }
  .cause-num { font-size: 2.4rem; }
  .profile { padding: 1.6rem; }
  .note-card { padding: 1.5rem 1.4rem; }
  .values-list { grid-template-columns: 1fr; }
  .stat-grid { gap: 1.2rem; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001s !important; animation-iteration-count: 1 !important; transition-duration: .001s !important; }
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
}

/* ============================================================
   v5 refinements | authority, clarity, performance
   ============================================================ */
body.has-sticky { padding-bottom: 76px; }
.fee-note { font-size: .92rem; color: var(--ink-soft); text-align: center; margin-top: 1.3rem; max-width: 42rem; margin-left: auto; margin-right: auto; }
.who-photo { width: 88px; height: 88px; border-radius: 50%; object-fit: cover; object-position: center 30%; margin-bottom: 1.1rem; box-shadow: var(--shadow-s); }
.reg-strip {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--white);
}
.reg-strip .container {
  display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem 2.6rem;
  padding: .95rem 0; font-family: var(--font-body); font-weight: 600;
  font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft);
}
.reg-strip b { color: var(--ink); font-weight: 700; }
.section-head h2 { max-width: 22em; }
img[loading="lazy"] { background: var(--sand); }

/* ============================================================
   v6 | Vibrant hero system: layered media, colour wash, motion
   ============================================================ */

/* --- Photo layer with Ken Burns breathing --- */
.hero-full, .camp-hero { background-color: var(--ink); }
.hero-media {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center 38%;
  animation: kenburns 26s var(--ease) infinite alternate;
  will-change: transform;
}
.camp-hero .hero-media { background-position: center 45%; }
@keyframes kenburns {
  from { transform: scale(1.02) translate3d(0, 0, 0); }
  to   { transform: scale(1.10) translate3d(-1.4%, -1.2%, 0); }
}

/* --- Vibrant duotone wash over the photo --- */
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(85% 115% at 88% 16%, rgba(232, 163, 60, .30), transparent 55%),
    radial-gradient(80% 110% at 10% 92%, rgba(14, 107, 91, .40), transparent 60%),
    linear-gradient(100deg, rgba(196, 80, 18, .34) 0%, rgba(196, 80, 18, .10) 40%, transparent 72%);
}

/* --- Contrast scrim + cinematic bottom vignette --- */
.hero-full::before, .camp-hero::before {
  z-index: 1;
  background:
    linear-gradient(0deg, rgba(20, 13, 10, .55) 0%, transparent 32%),
    linear-gradient(97deg, rgba(20, 13, 10, .92) 0%, rgba(20, 13, 10, .66) 46%, rgba(20, 13, 10, .12) 100%);
}

/* --- Drifting pattern weave --- */
.hero-full::after, .camp-hero::after {
  z-index: 1;
  animation: patternDrift 44s linear infinite;
}
@keyframes patternDrift { to { background-position: 112px 56px; } }

/* --- Floating light orbs and diamond deco --- */
.hero-orb { position: absolute; z-index: 1; pointer-events: none; border-radius: 50%; }
.hero-orb.o1 {
  width: 440px; height: 440px; right: -90px; bottom: -130px;
  background: radial-gradient(circle, rgba(232, 163, 60, .40), transparent 68%);
  animation: breathe 9s ease-in-out infinite;
}
.hero-orb.o2 {
  width: 380px; height: 380px; right: 15%; top: -150px;
  background: radial-gradient(circle, rgba(14, 107, 91, .46), transparent 68%);
  animation: breathe 11s ease-in-out -4s infinite;
}
.hero-orb.o3 {
  width: 118px; height: 118px; right: 23%; bottom: 17%; border-radius: 0;
  border: 1.5px solid rgba(232, 163, 60, .55);
  animation: floatSpin 15s ease-in-out infinite;
}
@keyframes breathe {
  0%, 100% { opacity: .55; transform: scale(1); }
  50%      { opacity: .95; transform: scale(1.13); }
}
@keyframes floatSpin {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50%      { transform: rotate(51deg) translateY(-20px); }
}

/* --- Entrance choreography --- */
.hero-full .container > *, .camp-hero .container > * {
  opacity: 0; animation: heroIn .9s var(--ease) forwards;
}
.hero-full .container > *:nth-child(1), .camp-hero .container > *:nth-child(1) { animation-delay: .05s; }
.hero-full .container > *:nth-child(2), .camp-hero .container > *:nth-child(2) { animation-delay: .18s; }
.hero-full .container > *:nth-child(3), .camp-hero .container > *:nth-child(3) { animation-delay: .31s; }
.hero-full .container > *:nth-child(4), .camp-hero .container > *:nth-child(4) { animation-delay: .44s; }
.hero-full .container > *:nth-child(5), .camp-hero .container > *:nth-child(5) { animation-delay: .57s; }
@keyframes heroIn {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: none; }
}
.hero-meta { opacity: 0; animation: heroIn .9s var(--ease) .7s forwards; }

/* --- Headline depth + drawn accent underline --- */
.hero-full h1, .camp-hero h1 { text-shadow: 0 2px 34px rgba(10, 6, 4, .45); }
.hero-full h1 em, .camp-hero h1 .hl {
  background-image: linear-gradient(92deg, var(--clay), var(--gold));
  background-repeat: no-repeat;
  background-position: 0 94%;
  background-size: 0% 3px;
  animation: drawLine 1.1s var(--ease) .95s forwards;
}
@keyframes drawLine { to { background-size: 100% 3px; } }

/* --- Gold button sheen --- */
.btn-gold { position: relative; overflow: hidden; }
.btn-gold::after {
  content: ""; position: absolute; top: -20%; bottom: -20%; left: 0; width: 45%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, .5), transparent);
  transform: translateX(-160%) skewX(-18deg);
  animation: sheen 5s ease-in-out 1.8s infinite;
  pointer-events: none;
}
@keyframes sheen {
  0%, 18%  { transform: translateX(-160%) skewX(-18deg); }
  38%, 100% { transform: translateX(360%) skewX(-18deg); }
}

/* --- Interior page heroes: rich ink band with living colour --- */
.page-hero {
  background:
    url("../assets/pattern-band.svg") bottom left / 96px 12px repeat-x,
    radial-gradient(65% 160% at 106% 40%, rgba(14, 107, 91, .50), transparent 62%),
    radial-gradient(60% 150% at -6% 120%, rgba(196, 80, 18, .52), transparent 60%),
    radial-gradient(90% 130% at 46% -50%, rgba(232, 163, 60, .26), transparent 58%),
    var(--ink);
  border-bottom: none;
  color: var(--paper);
  padding: clamp(4.4rem, 8vw, 6.2rem) 0;
}
.page-hero::before {
  background-image: var(--pat-cream); background-size: 56px; opacity: .10;
  animation: patternDrift 44s linear infinite;
  -webkit-mask-image: linear-gradient(to right, black 0%, transparent 78%);
  mask-image: linear-gradient(to right, black 0%, transparent 78%);
}
.page-hero::after {
  content: ""; position: absolute; right: 7%; top: 50%; width: 150px; height: 150px;
  border: 1.5px solid rgba(232, 163, 60, .45);
  transform: translateY(-50%) rotate(45deg);
  animation: floatSpinSoft 13s ease-in-out infinite;
  pointer-events: none;
}
@keyframes floatSpinSoft {
  0%, 100% { transform: translateY(-50%) rotate(45deg) scale(1); opacity: .8; }
  50%      { transform: translateY(-54%) rotate(48deg) scale(1.06); opacity: 1; }
}
.page-hero h1 { color: var(--paper); text-shadow: 0 2px 26px rgba(10, 6, 4, .4); }
.page-hero p { color: rgba(250, 246, 238, .86); }
.page-hero .kicker { color: var(--gold); }
.page-hero .kicker::before { background: var(--clay); }

@media (max-width: 720px) {
  .hero-orb.o3 { display: none; }
  .hero-orb.o1 { width: 300px; height: 300px; right: -120px; }
  .hero-orb.o2 { width: 260px; height: 260px; right: -60px; top: -110px; }
  .page-hero::after { width: 96px; height: 96px; right: 5%; }
}

/* ============================================================
   v7 | Engagement layer: WhatsApp float, appeal log, 404
   ============================================================ */
.wa-float {
  position: fixed; right: 20px; bottom: 22px; z-index: 96;
  width: 58px; height: 58px; border-radius: 50%;
  background: #1EBE5D; color: #fff;
  display: grid; place-items: center; text-decoration: none;
  box-shadow: 0 10px 26px rgba(30, 21, 18, .30);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), background .22s;
}
.wa-float:hover { transform: translateY(-3px) scale(1.05); background: #17A34E; box-shadow: 0 16px 34px rgba(30, 21, 18, .36); }
.wa-float svg { width: 30px; height: 30px; }
body.has-sticky .wa-float { bottom: 94px; }
@media (max-width: 720px) {
  .wa-float { width: 52px; height: 52px; right: 14px; bottom: 16px; }
  .wa-float svg { width: 27px; height: 27px; }
  body.has-sticky .wa-float { bottom: 88px; }
}

/* appeal log */
.appeal-log {
  background: var(--white); border: 1px solid var(--line); border-left: 4px solid var(--gold);
  border-radius: 14px; padding: 1.25rem 1.5rem; margin-top: 1.6rem; text-align: left;
  box-shadow: var(--shadow-s);
}
.appeal-log h3 { font-size: .8rem; letter-spacing: .22em; text-transform: uppercase; color: var(--clay); margin-bottom: .7rem; font-family: var(--font-body); font-weight: 700; }
.appeal-log p { font-size: .95rem; color: var(--ink-soft); margin-bottom: .55rem; }
.appeal-log p b { color: var(--ink); }
.appeal-log .log-next { font-style: italic; margin-bottom: 0; }

/* 404 */
.err-hero { min-height: 62vh; display: flex; align-items: center; }
.err-hero .code { font-family: var(--font-head); font-size: clamp(5rem, 14vw, 9rem); font-weight: 700; line-height: 1; color: var(--gold); }
.err-links { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: 2rem; }

/* ============================================================
   v8 | Fixes: underline removal, mobile contrast, light interior heroes
   (adopted from the interim live patch, kept verbatim)
   ============================================================ */

/* the drawn underline broke when headlines wrapped: removed entirely */
.hero-full h1 em, .camp-hero h1 .hl {
  background-image: none;
  animation: none;
}

/* stray wireframe diamond over photos: gone */
.hero-orb.o3, .page-hero .hero-orb.o3 { display: none; }

/* mobile text contrast over bright photo areas */
@media (max-width: 720px) {
  .hero-full::before, .camp-hero::before {
    background: linear-gradient(0deg, rgba(20, 13, 10, .68) 0%, rgba(20, 13, 10, .40) 45%, rgba(20, 13, 10, .55) 100%);
  }
}

/* interior heroes: vibrant LIGHT treatment instead of muddy dark */
.page-hero {
  background:
    url("../assets/pattern-band.svg") bottom left / 96px 12px repeat-x,
    radial-gradient(58% 150% at 104% 24%, rgba(14, 107, 91, .20), transparent 62%),
    radial-gradient(52% 130% at -4% 108%, rgba(196, 80, 29, .24), transparent 60%),
    radial-gradient(85% 120% at 46% -46%, rgba(232, 163, 60, .30), transparent 62%),
    linear-gradient(180deg, var(--paper) 0%, var(--sand) 100%);
  color: var(--ink);
}
.page-hero::before {
  background-image: var(--pat);
  opacity: .09;
  -webkit-mask-image: linear-gradient(to right, black 0%, transparent 72%);
  mask-image: linear-gradient(to right, black 0%, transparent 72%);
}
.page-hero::after { border-color: rgba(196, 80, 29, .38); }
.page-hero h1 { color: var(--ink); text-shadow: none; }
.page-hero p { color: var(--ink-soft); }
.page-hero .kicker { color: var(--clay); }
.page-hero .kicker::before { background: var(--gold); }

/* ============================================================
   v9 | Correctness: overflow clip, no-JS reveal fallback
   ============================================================ */
html, body { overflow-x: clip; }

/* ============================================================
   v10 | Our Work rebuild: programme blocks, method, criteria, milestones
   ============================================================ */
.method-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.method-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.9rem; box-shadow: var(--shadow-s); border-top: 4px solid var(--teal);
  position: relative; overflow: hidden;
}
.method-card .mnum {
  font-family: var(--font-head); font-style: italic; font-weight: 600;
  font-size: 1.5rem; color: var(--gold-d); display: block; margin-bottom: .5rem;
}
.method-card h3 { font-size: 1.25rem; margin-bottom: .5rem; }
.method-card p { color: var(--ink-soft); font-size: .97rem; }

.prog-block {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2rem, 5vw, 4.2rem);
  align-items: center; padding: clamp(2.4rem, 5vw, 4rem) 0;
}
.prog-block + .prog-block { border-top: 1px solid var(--line); }
.prog-block.flip .prog-media { order: 2; }
.prog-media img {
  width: 100%; border-radius: var(--radius); border: 5px solid var(--white);
  box-shadow: var(--shadow);
}
.prog-copy h3 { font-size: clamp(1.6rem, 2.6vw, 2.1rem); margin-bottom: .8rem; }
.prog-list { list-style: none; margin: 1.1rem 0; display: grid; gap: .6rem; }
.prog-list li { padding-left: 1.6rem; position: relative; color: var(--ink-soft); }
.prog-list li::before {
  content: ""; position: absolute; left: 0; top: .48em; width: 9px; height: 9px;
  background: var(--gold); transform: rotate(45deg);
}
.prog-success { font-family: var(--font-head); font-style: italic; font-size: 1.08rem; color: var(--clay); }
.prog-where {
  font-size: .8rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink-soft); margin-top: .7rem;
}

.criteria-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.criteria-card {
  background: var(--white); border: 1px solid var(--line); border-left: 4px solid var(--gold);
  border-radius: 14px; padding: 1.5rem; box-shadow: var(--shadow-s);
}
.criteria-card h4 { font-family: var(--font-head); font-size: 1.1rem; margin-bottom: .45rem; }
.criteria-card p { font-size: .93rem; color: var(--ink-soft); }

.milestones { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.milestone { border-left: 3px solid var(--gold); padding-left: 1.3rem; }
.milestone b { font-family: var(--font-head); font-weight: 600; font-size: 1.7rem; color: var(--clay); display: block; margin-bottom: .3rem; }
.milestone p { color: var(--ink-soft); font-size: .97rem; }

.start-week {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem; box-shadow: var(--shadow-s); border-top: 4px solid var(--clay);
}
.start-week h3 { font-size: 1.35rem; margin-bottom: .9rem; }
.start-week ol { margin-left: 1.2rem; display: grid; gap: .6rem; color: var(--ink-soft); }

@media (max-width: 900px) {
  .prog-block, .prog-block.flip { grid-template-columns: 1fr; }
  .prog-block.flip .prog-media { order: 0; }
  .method-grid { grid-template-columns: 1fr; }
  .criteria-grid { grid-template-columns: 1fr 1fr; }
  .milestones { grid-template-columns: 1fr; gap: 1.2rem; }
}
@media (max-width: 560px) { .criteria-grid { grid-template-columns: 1fr; } }

/* ============================================================
   v12 | Polish: nav donate pill, anchor offsets, selection, fb credibility
   ============================================================ */
.nav-cta {
  border-radius: 999px;
  padding: .62rem 1.3rem;
  background: linear-gradient(135deg, var(--clay) 0%, var(--clay-d) 100%);
  color: #FFF6EC;
  box-shadow: 0 6px 16px rgba(196, 80, 29, .32);
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), filter .18s;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 9px 20px rgba(196, 80, 29, .40); filter: brightness(1.05); }
.nav-cta svg { width: 14px; height: 14px; }
@media (max-width: 1000px) { .nav-cta { width: 100%; justify-content: center; } }

[id] { scroll-margin-top: 92px; }

::selection { background: var(--gold); color: var(--ink); }

.fb-cred {
  margin-top: 1rem; font-size: .95rem; color: var(--ink-soft);
  display: flex; align-items: center; gap: .55rem; flex-wrap: wrap;
}
.fb-cred svg { width: 17px; height: 17px; color: #1877F2; flex: none; }
.fb-cred a { color: var(--indigo); font-weight: 600; }
.fb-cred a:hover { text-decoration: underline; }

/* ============================================================
   v14 | Ubuntu Vision 2050 identity: night bands, sunrise glow, vision band
   ============================================================ */
:root { --night: #10182E; --night-2: #0B1120; }
.stats, .quote-band {
  background:
    radial-gradient(60% 90% at 50% 118%, rgba(232, 163, 60, .28), transparent 62%),
    linear-gradient(180deg, var(--night) 0%, var(--night-2) 100%);
}
.ticker { background: var(--night-2); }
.site-footer { background: var(--night-2); }

.vision-band {
  background:
    radial-gradient(70% 100% at 50% 115%, rgba(232, 163, 60, .22), transparent 60%),
    radial-gradient(50% 80% at 8% -10%, rgba(14, 107, 91, .35), transparent 60%),
    linear-gradient(180deg, var(--night) 0%, var(--night-2) 100%);
  color: var(--paper);
  padding: clamp(3.4rem, 7vw, 5.4rem) 0;
  position: relative; overflow: hidden;
}
.vision-band::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: var(--pat-cream); background-size: 56px; opacity: .07;
  -webkit-mask-image: linear-gradient(to right, black, transparent 70%);
  mask-image: linear-gradient(to right, black, transparent 70%);
}
.vision-band .container { position: relative; }
.vision-band .kicker { color: var(--gold); }
.vision-band .kicker::before { background: var(--clay); }
.vision-band h2 { color: var(--paper); font-size: clamp(1.9rem, 3.6vw, 2.9rem); max-width: 22em; }
.vision-band .vlede { color: rgba(250, 246, 238, .88); max-width: 46rem; font-size: 1.08rem; margin: .9rem 0 2.2rem; }
.vision-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.vision-grid h3 {
  font-family: var(--font-head); font-weight: 600; font-size: 1.3rem; color: var(--gold);
  margin-bottom: .5rem;
}
.vision-grid p { color: rgba(250, 246, 238, .82); font-size: .98rem; }
.vision-grid .vnum {
  display: block; font-family: var(--font-body); font-weight: 700; font-size: .72rem;
  letter-spacing: .24em; color: rgba(250, 246, 238, .55); margin-bottom: .5rem;
}
@media (max-width: 900px) { .vision-grid { grid-template-columns: 1fr; gap: 1.3rem; } }
.milestones { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .milestones { grid-template-columns: 1fr; } }
