/* outfit-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/outfit-v15-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* outfit-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/outfit-v15-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* outfit-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/outfit-v15-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* outfit-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/outfit-v15-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* outfit-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/outfit-v15-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* outfit-800 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 800;
  src: url('../fonts/outfit-v15-latin-800.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/*
 * ═══════════════════════════════════════════════════════════════
 *  BONDO FOUNDATION — SHARED STYLESHEET
 *  All pages link to this file.
 *  Page-specific styles live in a <style> block within each HTML.
 *  Self-host Outfit font when style is final (replace @import above).
 * ═══════════════════════════════════════════════════════════════
 */

/* ── BRAND TOKENS ───────────────────────────────────────────────
   Source palette from presentations:
   #BB9963 gold       #5C4975 purple     #4A79A5 blue
   #4B9F87 teal       #A9A9A9 mid-grey   #384450 dark slate
   #FFFFFF white      #B14435 brick      #E7A23D warm gold
   #797979 muted      #56C1FF sky blue
──────────────────────────────────────────────────────────────── */
:root {
  /* Core */
  --white:    #FFFFFF;
  --off:      #F8F9FA;
  --light:    #F2F5F8;
  --ivory:    #F7F4EF;
  --slate:    #384450;
  --slate2:   #2A343F;

  /* Accents */
  --blue:     #4A79A5;
  --blue2:    #3A6490;
  --blue-l:   #EBF1F7;
  --teal:     #4B9F87;
  --teal2:    #3A8A73;
  --teal-l:   #EBF5F2;
  --gold:     #BB9963;
  --gold-l:   #F5EFE4;
  --warm:     #E7A23D;
  --warm2:    #C8861A;
  --warm-l:   #FDF3E3;
  --purple:   #5C4975;
  --brick:    #B14435;

  /* Neutrals */
  --muted:    #797979;
  --mid-grey: #A9A9A9;
  --border:   rgba(56,68,80,0.1);
  --border-d: rgba(255,255,255,0.08);

  /* Typography */
  --font:     'Outfit', system-ui, sans-serif;

  /* Layout */
  --max:      1240px;
  --content:  760px;
  --ease:     cubic-bezier(0.4,0,0.2,1);
}

/* ── RESET ──────────────────────────────────────────────────────*/
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--white);
  color: var(--slate);
  line-height: 1.7;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
h1,h2,h3,h4 { font-family: var(--font); }

/* ── UTILITY ────────────────────────────────────────────────────*/
.container { max-width: var(--max); margin: 0 auto; padding: 0 2.5rem; }
.content-body { max-width: var(--content); margin: 0 auto; padding: 0 2.5rem; }

.section-tag {
  display: inline-block;
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--blue); border: 1.5px solid var(--blue);
  padding: 0.25rem 0.75rem; border-radius: 3px;
  margin-bottom: 1.5rem;
}
.section-tag.teal   { color: var(--teal); border-color: var(--teal); }
.section-tag.warm   { color: var(--warm); border-color: var(--warm); }
.section-tag.white  { color: rgba(255,255,255,0.6); border-color: rgba(255,255,255,0.3); }
.section-tag.gold   { color: var(--gold); border-color: var(--gold); }

/* ── BUTTONS ────────────────────────────────────────────────────*/
 .btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font); font-weight: 600; font-size: 0.9rem;
  letter-spacing: 0.03em; padding: 0.875rem 2rem;
  border-radius: 6px; border: none;
  transition: 0.25s var(--ease); cursor: pointer;
  text-decoration: none;
}
.cp a.btn { text-decoration: none; color: inherit; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-blue  { background: var(--blue);  color: var(--white); }
.btn-blue:hover  { background: var(--blue2);  transform: translateY(-2px); box-shadow: 0 8px 24px rgba(74,121,165,0.3); }
.btn-teal  { background: var(--teal);  color: var(--white); }
.btn-teal:hover  { background: var(--teal2);  transform: translateY(-2px); box-shadow: 0 8px 24px rgba(75,159,135,0.3); }
.btn-warm  { background: var(--warm);  color: var(--white); }
.btn-warm:hover  { background: var(--warm2);  transform: translateY(-2px); box-shadow: 0 8px 24px rgba(231,162,61,0.3); }
.btn-slate { background: var(--slate); color: var(--white); }
.btn-slate:hover { background: var(--slate2); transform: translateY(-2px); }
.btn-white { background: var(--white); color: var(--blue); }
.btn-white:hover { background: var(--off); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
.btn-outline {
  background: transparent; color: var(--slate);
  border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--slate); transform: translateY(-2px); }
.btn-outline-white {
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.45);
}
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
.btn-outline-blue {
  background: transparent; color: var(--blue);
  border: 1.5px solid var(--blue);
}
.btn-outline-blue:hover { background: var(--blue); color: var(--white); transform: translateY(-2px); }
.btn-outline-teal {
  background: transparent; color: var(--teal);
  border: 1.5px solid var(--teal);
}
.btn-outline-teal:hover { background: var(--teal); color: var(--white); transform: translateY(-2px); }
.btn-pill {
  border-radius: 100px; padding: 0.625rem 1.5rem; font-size: 0.875rem;
}

/* ── NAVBAR ─────────────────────────────────────────────────────*/
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.25rem 2.5rem;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease),
              box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
/* Transparent — over video/dark hero */
#nav.transparent {
  background: transparent;
  border-bottom: 1px solid transparent;
}
#nav.transparent .hamburger span { background: var(--white); }
#nav.transparent .nav-participate { background: rgba(255,255,255,0.15); color: var(--white); border: 1.5px solid rgba(255,255,255,0.4); }
#nav.transparent .nav-donate { background: rgba(231,162,61,0.2); color: rgba(255,255,255,0.9); border: 1.5px solid rgba(231,162,61,0.5); }
/* Solid — default or on scroll */
#nav.solid,
#nav.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.875rem 2.5rem;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 24px rgba(56,68,80,0.08);
}
/* Logo swap */
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 48px; transition: height 0.3s var(--ease); }
#nav.scrolled .nav-logo img { height: 40px; }
.logo-dark  { display: block; }
.logo-light { display: none; }
#nav.transparent .logo-dark  { display: none; }
#nav.transparent .logo-light { display: block; }

.nav-right { display: flex; align-items: center; gap: 1rem; }
.nav-donate {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: var(--font); font-weight: 600; font-size: 0.8rem;
  letter-spacing: 0.03em; padding: 0.55rem 1.25rem;
  border-radius: 100px; border: 1.5px solid var(--warm);
  background: var(--warm-l); color: var(--warm2);
  transition: 0.25s var(--ease);
}
.nav-donate:hover { background: var(--warm); color: var(--white); }
.nav-donate svg { width: 14px; height: 14px; }
.nav-participate {
  display: inline-flex; align-items: center;
  font-family: var(--font); font-weight: 600; font-size: 0.875rem;
  padding: 0.625rem 1.5rem; border-radius: 100px;
  background: var(--blue); color: var(--white);
  transition: 0.25s var(--ease);
}
.nav-participate:hover { background: var(--blue2); transform: translateY(-1px); }
.hamburger {
  background: none; border: none; cursor: pointer;
  display: flex; flex-direction: column; gap: 5px; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--slate); border-radius: 2px;
  transition: 0.3s var(--ease);
}
.nav-menu-wrap { position: relative; }
.nav-menu-wrap:hover .nav-dropdown { opacity: 1; pointer-events: all; transform: translateY(0); }
.nav-dropdown {
  position: absolute; top: 100%; right: 0;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 10px; min-width: 240px; padding: 0.75rem 0;
  opacity: 0; pointer-events: none; transform: translateY(8px);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
  box-shadow: 0 16px 48px rgba(56,68,80,0.14);
  max-height: calc(100vh - 80px); overflow-y: auto;
}
.nav-dropdown::before {
  content: ''; position: absolute;
  top: -0.75rem; left: 0; right: 0; height: 0.75rem;
}
.nav-section + .nav-section { border-top: 1px solid var(--border); margin-top: 0.5rem; padding-top: 0.75rem; }
.nav-section-label {
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--muted); padding: 0 1.25rem 0.4rem;
}
.nav-dropdown a {
  display: block; padding: 0.5rem 1.25rem;
  font-size: 0.9rem; font-weight: 400; color: var(--slate);
  transition: background 0.15s, color 0.15s;
}
.nav-dropdown a:hover { background: var(--blue-l); color: var(--blue); }
.nav-dropdown a.nav-overview {
  font-weight: 600; color: var(--slate);
  border-bottom: 1px solid var(--border); margin-bottom: 0.2rem;
}
.nav-dropdown a.nav-sub {
  font-size: 0.82rem; color: var(--muted);
  padding: 0.35rem 1.25rem 0.35rem 2rem;
}
.nav-dropdown a.nav-sub:hover { background: var(--blue-l); color: var(--blue); }

/* Mobile menu */
.mobile-menu {
  display: none; position: fixed; inset: 0;
  background: var(--slate); z-index: 99;
  padding: 5rem 2.5rem 2.5rem;
  flex-direction: column; gap: 0; overflow-y: auto;
  max-height: 100dvh;
}
.mobile-menu.open { display: flex; }
.mobile-close {
  position: absolute; top: 1.25rem; right: 2.5rem;
  background: none; border: none; color: var(--white);
  font-size: 1.75rem; cursor: pointer; line-height: 1;
}
.mobile-menu a {
  font-family: var(--font); font-weight: 600; font-size: 1rem;
  color: var(--white); padding: 0.875rem 0;
  border-bottom: 1px solid var(--border-d);
  transition: color 0.2s;
}
.mobile-menu a.sub {
  font-size: 0.875em; font-weight: 400;
  color: rgba(255,255,255,0.55); padding: 0.5rem 1.5rem;
  border-bottom-color: transparent;
}
.mobile-menu a:hover { color: var(--warm); }
.mobile-menu a.sub:hover { color: var(--warm); }

/* ── PAGE HERO (inner pages) ────────────────────────────────────*/
.page-hero {
  position: relative; min-height: 60vh;
  display: flex; align-items: flex-end;
  padding: 8rem 2.5rem 4rem; overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.35);
}
.page-hero-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(56,68,80,0.2) 0%, rgba(56,68,80,0.8) 100%);
}
.page-hero-content { position: relative; z-index: 2; max-width: var(--max); width: 100%; }
.page-hero-eyebrow {
  display: flex; align-items: center; gap: 1rem; margin-bottom: 1.25rem;
}
.eyebrow-line { width: 36px; height: 2px; background: var(--warm); }
.eyebrow-text {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--warm);
}
.page-hero-h1 {
  font-size: clamp(2.4rem, 5vw, 4.2rem); font-weight: 700;
  color: var(--white); line-height: 1.08; letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.page-hero-h1 em { font-style: normal; color: var(--warm); }
.page-hero-sub {
  font-size: 1.1rem; font-weight: 300; color: rgba(255,255,255,0.7);
  max-width: 580px; line-height: 1.75; margin-bottom: 2rem;
}
.page-hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── CONTENT STYLES (shared long-form pages) ────────────────────*/
.content-h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem); font-weight: 700;
  color: var(--slate); margin: 4rem 0 1.5rem; line-height: 1.2;
}
.content-h2:first-child { margin-top: 0; }
.content-h2.light { color: var(--white); }
.content-p {
  font-size: 1.05rem; font-weight: 300; color: var(--muted);
  line-height: 1.85; margin-bottom: 1.5rem;
}
.content-p strong { color: var(--slate); font-weight: 600; }
.statement-block {
  margin: 3.5rem 0; padding: 2.5rem 3rem;
  background: var(--light); border-left: 4px solid var(--blue);
  border-radius: 0 8px 8px 0;
}
.statement-block h3 {
  font-size: 1.3rem; font-weight: 600; color: var(--slate);
  line-height: 1.35; margin-bottom: 0.75rem;
}
.statement-block p {
  font-size: 1rem; font-weight: 300; color: var(--muted); line-height: 1.8;
}
.pull-quote { margin: 3.5rem 0; padding: 2rem 2.5rem; position: relative; }
.pull-quote::before {
  content: '"'; position: absolute; top: -0.5rem; left: 1rem;
  font-size: 6rem; color: var(--blue); opacity: 0.15;
  line-height: 1; pointer-events: none;
}
.pull-quote p {
  font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 600;
  color: var(--slate); line-height: 1.4; position: relative; z-index: 1;
}

/* ── FOOTER ─────────────────────────────────────────────────────*/
footer { background: var(--slate); padding: 4.5rem 0 2rem; }
.footer-grid {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; padding: 0 2.5rem 3rem;
  border-bottom: 1px solid var(--border-d);
}
.footer-brand img { height: 44px; margin-bottom: 1.25rem; }
.footer-brand p {
  font-size: 0.875rem; font-weight: 300;
  color: rgba(255,255,255,0.4); line-height: 1.75; max-width: 280px;
}
.footer-col h4 {
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255,255,255,0.25); margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col a {
  font-size: 0.875rem; font-weight: 300;
  color: rgba(255,255,255,0.5); transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  max-width: var(--max); margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  padding: 2rem 2.5rem 0; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: 0.78rem; font-weight: 300; color: rgba(255,255,255,0.25); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.78rem; color: rgba(255,255,255,0.25); transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.6); }
.footer-social { display: flex; gap: 1rem; align-items: center; }
.footer-social a { color: rgba(255,255,255,0.35); transition: color 0.2s; display: flex; }
.footer-social a:hover { color: var(--white); }
.footer-social svg { width: 20px; height: 20px; }

/* Shared mobile menu HTML for copy-paste into each page:
<div class="mobile-menu" id="mobileMenu" style="overflow-y:auto;max-height:100svh;">
  <button class="mobile-close" id="mobileClose">&#x2715;</button>
  ...links...
</div>
Shared JS:
  document.getElementById('hamburgerBtn').addEventListener('click',()=>
    document.getElementById('mobileMenu').classList.add('open'));
  document.getElementById('mobileClose').addEventListener('click',()=>
    document.getElementById('mobileMenu').classList.remove('open'));
  document.querySelectorAll('.mobile-menu a').forEach(a=>
    a.addEventListener('click',()=>
      document.getElementById('mobileMenu').classList.remove('open')));
*/

/* ── REVEAL ANIMATIONS ──────────────────────────────────────────*/
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── SHARE ROW ──────────────────────────────────────────────────*/
.share-row {
  display: flex; align-items: center; gap: 1rem;
  margin-top: 2rem; padding-top: 2rem;
  border-top: 1px solid var(--border); flex-wrap: wrap;
}
.share-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--muted);
}
.share-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.875rem; font-weight: 500; color: var(--slate);
  padding: 0.4rem 0.875rem; border: 1px solid var(--border);
  border-radius: 4px; transition: 0.2s;
}
.share-link:hover { border-color: var(--blue); color: var(--blue); }
.share-link svg { width: 15px; height: 15px; }

/* ── RESPONSIVE ─────────────────────────────────────────────────*/
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
@media (max-width: 768px) {
  .container, .content-body { padding: 0 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; padding: 0 1.5rem 2.5rem; }
  .footer-bottom { padding: 1.5rem 1.5rem 0; }
  .page-hero { padding: 7rem 1.5rem 3rem; }
  .page-hero-h1 { font-size: 2.4rem; }
  .nav-donate { display: none; }
}
@media (max-width: 480px) {
  .page-hero-actions { flex-direction: column; }
}
