/* extracted from original index.html */
:root{
  --ink:#1E2A44;
  --ink-2:#131C30;
  --paper:#FBF6EC;
  --paper-2:#F1E6D0;
  --paper-3:#E9DCC0;
  --gold:#D7973E;
  --gold-dark:#B67A2A;
  --rose:#A23A63;
  --rose-dark:#832F51;
  --teal:#3F6E6B;
  --charcoal:#241F1A;
  --line:rgba(30,42,68,0.14);
  --line-light:rgba(251,246,236,0.18);
  --font-display:'Fraunces', serif;
  --font-body:'Karla', sans-serif;
  --font-mono:'IBM Plex Mono', monospace;
  --maxw:1180px;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto;}
  *{animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important;}
}
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--charcoal);
  background:var(--paper);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%; display:block;}
a{color:inherit;}
.wrap{max-width:var(--maxw); margin:0 auto; padding:0 28px;}
h1,h2,h3,h4{font-family:var(--font-display); font-weight:600; margin:0; letter-spacing:-0.01em;}
p{margin:0;}
.eyebrow{
  font-family:var(--font-mono);
  font-size:12.5px;
  letter-spacing:0.14em;
  text-transform:uppercase;
  color:var(--rose);
  display:inline-flex;
  align-items:center;
  gap:10px;
}
.eyebrow::before{
  content:"";
  width:22px; height:1px;
  background:var(--rose);
  display:inline-block;
}
.section{padding:108px 0;}
.section-head{max-width:640px; margin-bottom:56px;}
.section-head h2{font-size:clamp(28px,3.6vw,42px); margin-top:14px;}
.section-head p{margin-top:16px; font-size:17px; color:#4a4238;}
:focus-visible{outline:3px solid var(--gold); outline-offset:3px;}

/* ============ ARCH SHAPES (signature motif) ============ */
.arch-top{ border-radius: 300px 300px 10px 10px; }
.arch-frame{
  position:relative;
  overflow:hidden;
}
.lattice-bg{
  background-image:
    repeating-linear-gradient(45deg, rgba(251,246,236,0.055) 0 1px, transparent 1px 42px),
    repeating-linear-gradient(-45deg, rgba(251,246,236,0.055) 0 1px, transparent 1px 42px);
}
.lattice-bg-dark{
  background-image:
    repeating-linear-gradient(45deg, rgba(30,42,68,0.05) 0 1px, transparent 1px 36px),
    repeating-linear-gradient(-45deg, rgba(30,42,68,0.05) 0 1px, transparent 1px 36px);
}

/* ============ NAV ============ */
.nav{
  position:sticky; top:0; z-index:50;
  background:rgba(251,246,236,0.92);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}

.nav-links .nav-cta{
  font-family:var(--font-body); font-weight:700; font-size:14px;
  background:var(--ink); color:var(--paper);
  padding:10px 20px; border-radius:100px; text-decoration:none;
  transition:background 0.2s ease, transform 0.2s ease;
}
.nav-links .nav-cta:hover{background:var(--rose); transform:translateY(-1px);}
.nav-toggle{
    display:none; 
    background:none; 
    border:none; 
    cursor:pointer; 
    padding:8px;
    
}
.nav-toggle span{
    display:block; 
    width:24px; 
    height:2px; 
    background:var(--ink); 
    margin:5px 0; 
    transition:transform .25s, 
    opacity .25s;}

.nav .wrap{
  display:flex; align-items:center; justify-content:space-between;
  height:78px;
}
.brand{display:flex; align-items:center; gap:12px; font-family:var(--font-display); font-weight:600; font-size:19px; text-decoration:none;}
.brand img{width:38px; height:38px; border-radius:50%; object-fit:cover; box-shadow:0 0 0 2px var(--paper), 0 0 0 3px var(--rose);}
.nav-links{display:flex; align-items:center; gap:30px; list-style:none; margin:0; padding:0;}
.nav-links a{
  text-decoration:none; font-size:14.5px; font-weight:600; color:var(--ink);
  position:relative; padding:4px 0;
}

.nav-links a::after{
  content:""; position:absolute; left:0; bottom:0; width:0; height:2px; background:var(--gold);
  transition:width 0.25s ease;
}
.nav-links a:hover::after{width:100%;}

/* ============ BUTTONS ============ */
.btn{
  display:inline-flex; align-items:center; gap:8px;
  font-family:var(--font-body); font-weight:700; font-size:15px;
  padding:14px 26px; border-radius:100px;
  text-decoration:none; cursor:pointer; border:1.5px solid transparent;
  transition:transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color .2s ease;
}
.btn:hover{transform:translateY(-2px);}
.btn-primary{background:var(--gold); color:var(--ink-2);}
.btn-primary:hover{background:var(--gold-dark);}
.btn-outline-light{border-color:var(--line-light); color:var(--paper);}
.btn-outline-light:hover{background:rgba(251,246,236,0.1);}
.btn-outline-dark{border-color:var(--ink); color:var(--ink);}
.btn-outline-dark:hover{background:var(--ink); color:var(--paper);}
.btn-rose{background:var(--rose); color:#fff;}
.btn-rose:hover{background:var(--rose-dark);}

/* ============ HERO ============ */
.hero{
  position:relative;
  background:radial-gradient(120% 140% at 78% 10%, #26365a 0%, var(--ink) 45%, var(--ink-2) 100%);
  color:var(--paper);
  overflow:hidden;
  padding:150px 0 130px;
}
.hero::before{ /* soft light glow, like light through a window */
  content:"";
  position:absolute; top:-10%; right:-6%;
  width:640px; height:640px; border-radius:50%;
  background:radial-gradient(circle, rgba(215,151,62,0.28) 0%, rgba(162,58,99,0.14) 45%, transparent 72%);
  filter:blur(10px);
  pointer-events:none;
}
.hero-inner{position:relative; z-index:2; max-width:720px;}
.hero .eyebrow{color:var(--gold);}
.hero .eyebrow::before{background:var(--gold);}
.hero h1{
  font-size:clamp(52px, 9vw, 96px);
  line-height:0.98;
  margin-top:22px;
  color:var(--paper);
}
.hero-tagline{
  font-family:var(--font-display);
  font-style:italic;
  font-weight:400;
  font-size:clamp(19px,2.3vw,25px);
  color:var(--paper-2);
  margin-top:22px;
  max-width:520px;
}
.hero-sentence{
  font-size:18px;
  color:rgba(251,246,236,0.82);
  margin-top:20px;
  max-width:520px;
}
.hero-actions{display:flex; flex-wrap:wrap; gap:14px; margin-top:40px;}

.hero-arches{
  position:absolute; right:0; bottom:0; left:0;
  height:210px;
  display:flex; align-items:flex-end; z-index:1;
  opacity:0.9;
}
.hero-arches svg{width:100%; height:100%;}

/* ============ TRUST STRIP ============ */
.trust-strip{
  background:var(--paper-2);
  border-bottom:1px solid var(--line);
  padding:22px 0;
}
.trust-strip .wrap{
  display:flex; flex-wrap:wrap; gap:14px 34px; align-items:center; justify-content:center;
  font-family:var(--font-mono); font-size:12.5px; letter-spacing:0.04em; color:#5a5044;
  text-align:center;
}
.trust-strip strong{color:var(--ink); font-weight:600;}

/* ============ ABOUT ============ */
.about-grid{
  display:grid; grid-template-columns:1fr 1fr; gap:64px;
  align-items:start;
}
.about-block + .about-block{margin-top:44px;}
.about-block h3{font-size:15px; font-family:var(--font-mono); letter-spacing:0.08em; text-transform:uppercase; color:var(--teal); margin-bottom:12px; font-weight:500;}
.about-block p{color:#463f34; font-size:16px;}
.story-text{max-height:170px; overflow:hidden; transition:max-height .35s ease;}
.story-text.is-expanded{max-height:2000px;}
.story-toggle{
  margin-top:16px; padding:0; border:0; background:none; cursor:pointer;
  color:var(--rose); font-family:var(--font-mono); font-size:13px; font-weight:500;
}
.story-toggle:hover{text-decoration:underline;}
.story-toggle span{display:inline-block; margin-left:6px; transition:transform .2s ease;}
.story-toggle[aria-expanded="true"] span{transform:rotate(90deg);}
.diff-list{list-style:none; margin:0; padding:0;}
.diff-list li{
  display:flex; gap:14px; padding:16px 0; border-top:1px solid var(--line); font-size:15.5px; color:#3c352b;
}
.diff-list li:last-child{border-bottom:1px solid var(--line);} 
.diff-mark{
  font-family:var(--font-mono); color:var(--rose); font-weight:600; flex-shrink:0;
}

/* stats — the "windows onto the challenge" */
.stats-wrap{margin-top:26px;}
.stats-grid{
  display:grid; grid-template-columns:repeat(4,1fr); gap:18px;
}
.stat-card{
  background:var(--ink);
  color:var(--paper);
  padding:38px 22px 26px;
  text-align:center;
  border-radius:120px 120px 12px 12px;
}
.stat-num{font-family:var(--font-display); font-weight:600; font-size:clamp(26px,3vw,34px); color:var(--gold);}
.stat-label{font-size:13px; margin-top:10px; color:rgba(251,246,236,0.78); line-height:1.45;}
.stats-note{
  margin-top:22px; font-size:15px; color:#463f34; max-width:640px;
  padding:18px 22px; background:var(--paper-2); border-left:3px solid var(--teal); border-radius:4px;
}
.stats-source{font-family:var(--font-mono); font-size:11px; color:#8a8072; display:block; margin-top:6px;}

/* ============ SERVICES ============ */
.services{background:var(--ink); color:var(--paper);} 
.services .section-head p{color:rgba(251,246,236,0.72);} 
.services .eyebrow{color:var(--gold);} 
.services .eyebrow::before{background:var(--gold);} 
.services-grid{
  display:grid; grid-template-columns:repeat(4,1fr); gap:2px;
  background:var(--line-light);
  border:1px solid var(--line-light);
}
.service-card{
  background:var(--ink); padding:38px 26px; min-height:270px;
  display:flex; flex-direction:column; justify-content:space-between;
  transition:background 0.25s ease;
}
.service-card:hover{background:#243254;}
.service-num{font-family:var(--font-mono); font-size:12px; color:var(--gold);} 
.service-card h3{font-size:21px; margin-top:60px; color:var(--paper); font-weight:600;} 
.service-card p{font-size:14.5px; margin-top:12px; color:rgba(251,246,236,0.68);} 

/* ============ GET INVOLVED ============ */
.involved-grid{
  display:grid; grid-template-columns:repeat(4,1fr); gap:20px;
}
.involved-card{
  border:1px solid var(--line); border-radius:16px 16px 100px 100px / 16px 16px 40px 40px;
  padding:32px 26px 40px; background:var(--paper-2);
  display:flex; flex-direction:column; height:100%;
  transition:transform 0.25s ease, box-shadow 0.25s ease;
}
.involved-card:hover{transform:translateY(-4px); box-shadow:0 18px 34px -20px rgba(30,42,68,0.35);} 
.involved-card h3{font-size:22px;} 
.involved-card p{font-size:14.5px; color:#4a4238; margin-top:10px; flex-grow:1;} 
.involved-card a{
  margin-top:20px; font-family:var(--font-mono); font-size:13px; font-weight:500;
  color:var(--rose); text-decoration:none; display:inline-flex; align-items:center; gap:6px;
}
.involved-card a:hover{text-decoration:underline;} 
.involved-card.c-learn{border-top:5px solid var(--gold);} 
.involved-card.c-volunteer{border-top:5px solid var(--teal);} 
.involved-card.c-partner{border-top:5px solid var(--rose);} 
.involved-card.c-donate{border-top:5px solid var(--ink);} 

/* ============ VISION ============ */
.vision{
  background:var(--paper-3);
  padding:120px 0;
  position:relative;
  overflow:hidden;
}
.vision-inner{max-width:800px; margin:0 auto; text-align:center; position:relative; z-index:2;} 
.vision h2{
  font-size:clamp(30px,4.4vw,52px);
  font-weight:500;
  line-height:1.28;
}
.vision h2 em{color:var(--rose); font-style:italic; font-weight:500;} 
.vision .eyebrow{justify-content:center;} 
.vision-arch-deco{
  position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
  width:520px; height:520px; border-radius:50%;
  border:1px solid rgba(30,42,68,0.09);
}
.vision-arch-deco::before, .vision-arch-deco::after{
  content:""; position:absolute; inset:60px; border-radius:50%; border:1px solid rgba(30,42,68,0.09);
}
.vision-arch-deco::after{inset:120px;}

/* ============ FAQ ============ */
.faq-list{max-width:820px;} 
.faq-item{border-bottom:1px solid var(--line);} 
.faq-item summary{
  list-style:none; cursor:pointer;
  display:flex; align-items:center; justify-content:space-between; gap:20px;
  padding:26px 4px; font-family:var(--font-display); font-weight:600; font-size:19px;
}
.faq-item summary::-webkit-details-marker{display:none;} 
.faq-cat{
  font-family:var(--font-mono); font-size:11px; letter-spacing:0.08em; text-transform:uppercase;
  color:var(--teal); display:block; margin-bottom:6px; font-weight:500;
}
.faq-plus{
  flex-shrink:0; width:30px; height:30px; border-radius:50%; border:1.5px solid var(--ink);
  position:relative;
}
.faq-plus::before, .faq-plus::after{
  content:""; position:absolute; background:var(--ink); top:50%; left:50%; transform:translate(-50%,-50%);
}
.faq-plus::before{width:12px; height:1.5px;} 
.faq-plus::after{width:1.5px; height:12px; transition:transform 0.25s ease, opacity .25s ease;} 
.faq-item[open] .faq-plus::after{transform:translate(-50%,-50%) rotate(90deg); opacity:0;} 
.faq-item[open] .faq-plus{background:var(--gold); border-color:var(--gold);} 
.faq-item[open] .faq-plus::before,.faq-item[open] .faq-plus::after{background:var(--ink);} 
.faq-answer{padding:0 4px 28px; max-width:680px; color:#463f34; font-size:15.5px;}
.faq-actions{margin-top:34px;}
.faq-page-hero{background:var(--ink); color:var(--paper); padding:96px 0 88px;}
.faq-page-hero .eyebrow{color:var(--gold);}
.faq-page-hero .eyebrow::before{background:var(--gold);}
.faq-page-hero h1{font-size:clamp(42px,6vw,72px); line-height:1.05; margin-top:18px;}
.faq-page-hero p{font-size:18px; color:rgba(251,246,236,0.72); margin-top:18px; max-width:520px;}
.faq-page-content{min-height:620px;}
.faq-page-list{max-width:900px;}
.faq-page-back{margin-top:42px;}

/* ============ CONTACT ============ */
.contact{background:var(--ink); color:var(--paper);} 
.contact-grid{display:grid; grid-template-columns:1fr 1fr; gap:70px;} 
.contact .eyebrow{color:var(--gold);} 
.contact .eyebrow::before{background:var(--gold);} 
.contact h2{color:var(--paper); font-size:clamp(28px,3.6vw,40px); margin-top:14px;} 
.contact-lead{color:rgba(251,246,236,0.7); margin-top:16px; font-size:16px; max-width:420px;} 
.contact-meta{margin-top:36px;} 
.contact-meta a{text-decoration:none; color:var(--paper); font-weight:600;} 
.contact-meta a:hover{color:var(--gold);} 
.contact-meta-row{display:flex; align-items:center; gap:12px; padding:12px 0; border-top:1px solid var(--line-light); font-size:15px;} 
.contact-meta-row:last-child{border-bottom:1px solid var(--line-light);} 
.contact-meta-label{font-family:var(--font-mono); font-size:11.5px; color:rgba(251,246,236,0.55); width:110px; flex-shrink:0; text-transform:uppercase; letter-spacing:.06em;} 
.social-row{display:flex; gap:12px; margin-top:26px;} 
.social-row a{
  width:38px; height:38px; border-radius:50%; border:1px solid var(--line-light);
  display:flex; align-items:center; justify-content:center; text-decoration:none;
  font-family:var(--font-mono); font-size:11px; color:var(--paper);
  transition:background .2s ease, border-color .2s ease;
}
.social-row a:hover{background:var(--gold); border-color:var(--gold); color:var(--ink-2);} 

.form{display:flex; flex-direction:column; gap:16px;} 
.field{display:flex; flex-direction:column; gap:8px;} 
.field label{font-family:var(--font-mono); font-size:12px; letter-spacing:.06em; text-transform:uppercase; color:rgba(251,246,236,0.65);} 
.field input, .field select, .field textarea{
  background:rgba(251,246,236,0.06);
  border:1px solid var(--line-light);
  border-radius:8px; padding:13px 14px;
  font-family:var(--font-body); font-size:15px; color:var(--paper);
}
.field input::placeholder, .field textarea::placeholder{color:rgba(251,246,236,0.35);} 
.field input:focus, .field select:focus, .field textarea:focus{outline:none; border-color:var(--gold); background:rgba(251,246,236,0.1);} 
.field select option{color:#111;} 
.form-note{font-size:12.5px; color:rgba(251,246,236,0.45); margin-top:2px;} 
.newsletter{
  margin-top:48px; padding-top:32px; border-top:1px solid var(--line-light);
}
.newsletter h4{font-size:15px; font-weight:600; color:var(--paper);} 
.newsletter p{font-size:13.5px; color:rgba(251,246,236,0.6); margin-top:6px;} 
.newsletter-form{display:flex; gap:10px; margin-top:16px; flex-wrap:wrap;} 
.newsletter-form input{flex:1; min-width:180px; background:rgba(251,246,236,0.06); border:1px solid var(--line-light); border-radius:100px; padding:11px 18px; color:var(--paper); font-size:14px;} 
.newsletter-form input::placeholder{color:rgba(251,246,236,0.35);} 
.newsletter-form button{border-radius:100px; padding:11px 22px; font-size:14px;} 

/* ============ FOOTER ============ */
.footer{background:var(--ink-2); color:rgba(251,246,236,0.6); padding:70px 0 30px;} 
.footer-top{display:grid; grid-template-columns:1.6fr repeat(5,1fr); gap:36px; padding-bottom:50px;} 
.footer-brand{display:flex; align-items:center; gap:10px; font-family:var(--font-display); font-weight:600; font-size:18px; color:var(--paper);} 
.footer-brand img{width:32px; height:32px; border-radius:50%; object-fit:cover;} 
.footer-tag{font-size:13.5px; margin-top:14px; max-width:220px; line-height:1.6;} 
.footer-col h5{font-family:var(--font-mono); font-size:11.5px; letter-spacing:.08em; text-transform:uppercase; color:rgba(251,246,236,0.4); font-weight:500; margin-bottom:16px;} 
.footer-col ul{list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:11px;} 
.footer-col a{text-decoration:none; font-size:14px; color:rgba(251,246,236,0.72);} 
.footer-col a:hover{color:var(--gold);} 
.footer-bottom{
  border-top:1px solid var(--line-light); padding-top:24px;
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px;
  font-size:12.5px; font-family:var(--font-mono); color:rgba(251,246,236,0.4);
}

/* ============ REVEAL ANIM ============ */
.reveal{opacity:0; transform:translateY(18px); transition:opacity .7s ease, transform .7s ease;} 
.reveal.is-visible{opacity:1; transform:translateY(0);} 

/* ============ RESPONSIVE ============ */
@media (max-width:980px){
  .about-grid{grid-template-columns:1fr; gap:44px;}
  .stats-grid{grid-template-columns:repeat(2,1fr);} 
  .services-grid{grid-template-columns:repeat(2,1fr);} 
  .involved-grid{grid-template-columns:repeat(2,1fr);} 
  .contact-grid{grid-template-columns:1fr; gap:50px;} 
  .footer-top{grid-template-columns:repeat(3,1fr);} 
}
@media (max-width:720px){
  .section{padding:76px 0;} 
  .nav-links{
    position:fixed; inset:78px 0 0 0; background:var(--paper);
    flex-direction:column; align-items:flex-start; padding:30px 28px; gap:22px;
    transform:translateX(100%); transition:transform .3s ease; overflow-y:auto;
    max-height: none;
    height: auto;
  }
  .nav-links.open{

    max-height: none;
    height: auto;
    transform:translateX(0);
    min-height: max-content;

} 
  .nav-links a{font-size:17px;} 
  .nav-toggle{display:block;} 
  .hero{padding:120px 0 100px;} 
  .stats-grid{grid-template-columns:1fr 1fr;} 
  .services-grid{grid-template-columns:1fr;} 
  .involved-grid{grid-template-columns:1fr;} 
  .footer-top{grid-template-columns:1fr 1fr; gap:30px;} 
  .hero-arches{height:110px;} 
  
}
