@font-face{font-family:"Montserrat";src:url("../fonts/Montserrat-Variable.ttf") format("truetype-variations");font-weight:100 900;font-style:normal;font-display:swap}
@font-face{font-family:"Montserrat";src:url("../fonts/Montserrat-Italic-Variable.ttf") format("truetype-variations");font-weight:100 900;font-style:italic;font-display:swap}

:root{
  --forest:#3C514B;
  --sage:#5B7B72;
  --sage-text:#5B7B72;
  --maroon:#7D282F;
  --slate:#263940;
  --cream:#EEEAE6;
  --ink:#1c211f;
  --white:#fff;
  --wrap:1300px;
  --focus:#7D282F;
}

*,*::before,*::after{box-sizing:border-box}
html{-webkit-text-size-adjust:100%}
body{
  margin:0;
  background:var(--white);
  color:var(--ink);
  font-family:"Montserrat",system-ui,-apple-system,"Segoe UI",sans-serif;
  font-size:1.0625rem;
  line-height:1.65;
  text-wrap:pretty;
}
img{max-width:100%;height:auto;display:block}
a{color:var(--maroon)}
a:hover,a:focus{color:var(--forest)}
:where(a,button,summary,[tabindex]):focus-visible{outline:3px solid var(--focus);outline-offset:2px;border-radius:2px}

.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0 0 0 0);white-space:nowrap;border:0}

.skip-link{
  position:absolute;left:-9999px;top:0;z-index:9999;
  background:var(--slate);color:#fff;padding:.75rem 1.25rem;
  font-weight:600;text-decoration:none;
}
.skip-link:focus{left:.5rem;top:.5rem;color:#fff}

/* ---------- header / menu ---------- */
.site-header{
  position:sticky;top:0;z-index:900;
  background:var(--white);
  border-bottom:1px solid var(--slate);
}
.header-inner{
  max-width:1400px;margin:0 auto;padding:.5rem 1rem;
  display:flex;align-items:center;justify-content:space-between;gap:1rem;
  flex-wrap:wrap;
}
.header-logo{display:block;flex:0 0 auto}
.header-logo img{width:208px;height:auto}

.nav-toggle{
  display:none;
  align-items:center;gap:.6rem;
  min-height:44px;padding:.5rem .75rem;
  background:transparent;border:1px solid var(--slate);border-radius:4px;
  font:inherit;font-weight:600;color:var(--slate);cursor:pointer;
}
.nav-toggle .bars{display:grid;gap:4px}
.nav-toggle .bars span{display:block;width:22px;height:2px;background:var(--slate)}

.site-nav>ul{list-style:none;margin:0;padding:0;display:flex;flex-wrap:wrap;align-items:center;gap:.15rem}
.site-nav a,.site-nav .sub-toggle{
  display:flex;align-items:center;gap:.4rem;
  min-height:44px;padding:.5rem .9rem;
  font-size:.95rem;font-weight:500;line-height:1.2;
  color:var(--forest);text-decoration:none;
  background:transparent;border:0;border-radius:3px;
  font-family:inherit;cursor:pointer;
}
.site-nav a:hover,.site-nav a:focus,
.site-nav .sub-toggle:hover,.site-nav .sub-toggle:focus{background:var(--cream);color:var(--slate)}
.site-nav [aria-current="page"]{background:var(--maroon);color:#fff}
.site-nav [aria-current="page"]:hover,.site-nav [aria-current="page"]:focus{background:var(--maroon);color:#fff}

.has-sub{position:relative}
.caret{width:0;height:0;border-left:4px solid transparent;border-right:4px solid transparent;border-top:5px solid currentColor}
.subnav{
  position:absolute;top:100%;left:0;min-width:14rem;
  list-style:none;margin:0;padding:.35rem 0;
  display:none;flex-direction:column;gap:0;
  background:var(--slate);border-radius:0 0 4px 4px;
  box-shadow:0 8px 20px rgba(38,57,64,.25);
}
.subnav li{width:100%}
.subnav a{color:#fff;border-radius:0;font-weight:400}
.subnav a:hover,.subnav a:focus{background:#fff;color:var(--slate)}
.has-sub.open .subnav{display:flex}

@media (max-width:1200px){
  .nav-toggle{display:inline-flex}
  .site-nav{display:none;width:100%;background:var(--slate);border-radius:4px;padding:.35rem 0}
  .site-nav.open{display:block}
  .site-nav>ul{flex-direction:column;align-items:stretch;gap:0}
  .site-nav a,.site-nav .sub-toggle{color:#fff;width:100%;border-radius:0}
  .site-nav a:hover,.site-nav a:focus,
  .site-nav .sub-toggle:hover,.site-nav .sub-toggle:focus{background:#fff;color:var(--slate)}
  .subnav{position:static;display:none;box-shadow:none;background:rgba(255,255,255,.08);padding:0}
  .subnav a{padding-left:2rem}
  .has-sub.open .subnav{display:flex}
}

/* ---------- hero ---------- */
.hero{
  position:relative;
  background:#3C514B url("../images/pexels-jaymantri-4827.jpg") center/cover no-repeat;
  text-align:center;
}
.hero::before{
  content:"";position:absolute;inset:0;
  background:linear-gradient(to top,rgba(60,81,75,.72) 0%,rgba(60,81,75,.10) 100%);
}
.hero-inner{
  position:relative;
  max-width:var(--wrap);margin:0 auto;
  padding:clamp(6rem,18vw,18.75rem) 1rem;
}
.hero h1{
  margin:0;color:#fff;
  font-size:clamp(2rem,6vw,4rem);font-weight:700;line-height:1.1;
  text-shadow:3px 3px 6px rgba(48,16,19,.85);
  animation:fade-in-left .6s ease-out both;
}
.hero--short .hero-inner{padding:clamp(4rem,10vw,9rem) 1rem}
.hero-divider{position:absolute;left:0;bottom:-1px;width:100%;height:50px;line-height:0;overflow:hidden}
.hero-divider svg{display:block;width:100%;height:100%;transform:scaleY(-1)}
.hero-divider path,.footer-divider path{fill:#fff}
@keyframes fade-in-left{from{transform:translateX(-60px);opacity:0}to{transform:none;opacity:1}}
@media (prefers-reduced-motion:reduce){.hero h1{animation:none}}

/* ---------- layout ---------- */
main{display:block}
.wrap{max-width:var(--wrap);margin:0 auto;padding:0 1.25rem}
.section{padding-block:3.5rem}
.section--tight{padding-block:2rem 3.5rem}
.split{display:grid;grid-template-columns:1fr 1fr;gap:3rem;align-items:start}
.narrow{max-width:60rem}
@media (max-width:1000px){.split{grid-template-columns:1fr;gap:2.25rem}}

.lead{color:var(--sage-text);font-size:1.5rem;line-height:1.35;margin:0 0 1.5rem}
.lead--big{font-size:clamp(1.6rem,3.2vw,2.3rem);line-height:1.25}
.lead em{color:inherit}
.lead-accent{color:var(--maroon)}
.lead-plum{color:#671245}
.h-display{font-size:clamp(1.6rem,3.2vw,2.3rem);line-height:1.25;font-weight:600;color:var(--sage-text);margin:0 0 1.25rem}
.h-display--maroon{color:var(--maroon)}
.h-display--center{text-align:center}
.h-inline{font-size:1.1875rem;line-height:1.4;font-weight:700;color:var(--sage-text);margin:0 0 1.1rem}
.h-inline--ink{color:var(--ink)}
.h-inline--maroon{color:var(--maroon)}
h2{font-size:1.1875rem;line-height:1.4;font-weight:700;color:var(--ink);margin:1.75rem 0 .75rem}
h2:first-child{margin-top:0}
h3{font-size:1.1875rem;line-height:1.4;font-weight:700;color:var(--ink);margin:1.25rem 0 .4rem}
h3.h-inline{margin:1.75rem 0 .4rem}
p{margin:0 0 1.1rem}
.body-sage{color:var(--sage-text);font-size:1.1875rem;line-height:1.5}
.body-sage.lead-accent,.body-ink.lead-accent{color:var(--maroon)}
.body-ink{color:var(--ink);font-size:1.1875rem;line-height:1.5}
ul.plain{margin:0 0 1.25rem;padding-left:1.4rem}
ul.plain li{margin-bottom:.5rem}
.muted{color:var(--sage-text);font-size:1.1875rem;line-height:1.5}
.ref{display:block;color:var(--sage-text);font-size:1em;margin-top:0}
.core-belief{font-style:italic}
.post-body p,.post-body li{color:var(--sage-text);font-size:1.1875rem;line-height:1.5}
.post-body .lead-accent{color:var(--maroon)}
.post-body blockquote p{color:var(--sage-text)}
.beliefs{padding-left:1.25rem}
.beliefs .core-belief{margin-bottom:1.5rem}
blockquote{margin:0 0 1.5rem;padding-left:1.25rem;color:var(--sage-text);font-style:italic;font-size:1.1875rem;line-height:1.5}
blockquote p{margin-bottom:.35rem}

.band-title{background:var(--sage);border-radius:40px;padding:2rem 3rem;margin:1rem 0 2.5rem}
.band-title h2{color:#fff;font-size:clamp(1.75rem,3.4vw,2.5rem);line-height:1.2;margin:0;font-weight:700}
@media (max-width:640px){.band-title{border-radius:24px;padding:1.5rem 1.5rem}}

.figure{margin:0 0 2rem}
.figure img{width:100%;border-radius:2px}
.figcaption{font-size:.9rem;color:var(--sage-text);margin-top:.5rem}

.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:.5rem;
  min-height:48px;padding:.75rem 1.75rem;
  background:var(--maroon);color:#fff;text-decoration:none;
  font-weight:600;letter-spacing:.04em;border-radius:3px;border:2px solid var(--maroon);
}
.btn:hover,.btn:focus{background:#fff;color:var(--maroon)}
.btn--outline{background:transparent;color:var(--maroon)}
.btn--outline:hover,.btn--outline:focus{background:var(--maroon);color:#fff}

.author{display:grid;grid-template-columns:auto 1fr;gap:2rem;align-items:start;max-width:64rem;margin:3rem auto 0;padding:2rem;border:1px solid var(--sage);border-radius:12px}
.author img{width:200px;border-radius:2px}
.author p{margin:0 0 1rem;color:var(--sage-text);font-size:1.1875rem;line-height:1.5}
.author p:last-child{margin-bottom:0}
.author .host{color:var(--sage-text);font-style:italic;font-weight:600;font-size:1.25rem;line-height:1.4}
.author--sm{max-width:44rem;gap:1.25rem;padding:1.25rem 1.5rem;border-radius:10px}
.author--sm img{width:110px}
.author--sm p{font-size:1rem;line-height:1.55}
@media (max-width:640px){.author{grid-template-columns:1fr;justify-items:center;text-align:left;padding:1.5rem}.author img{width:170px}.author--sm img{width:110px}}

.gallery{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:1rem;margin:2rem 0}
.gallery img{width:100%;border-radius:2px}

.post-list{list-style:none;margin:0 auto;padding:0;display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,320px));gap:2.5rem;justify-content:center}
.post-list a{display:block;text-decoration:none;color:var(--forest);text-align:center}
.post-list img{width:100%;aspect-ratio:4/3;object-fit:cover;border-radius:2px}
.post-list span{display:block;margin-top:.75rem;font-size:1.05rem;font-weight:600;line-height:1.3}
.post-list a:hover span,.post-list a:focus span{color:var(--maroon);text-decoration:underline}

.definition{list-style:none;margin:0 0 1.5rem;padding:0 0 0 2rem}
.definition li{margin-bottom:.35rem;font-size:1.1875rem;line-height:1.5;font-weight:700;color:var(--sage-text)}
.definition b{font-weight:700;color:var(--maroon)}

.pay-intro{max-width:760px;margin:0 auto 2.5rem;text-align:center}
.pay-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:1.5rem;align-items:stretch}
.pay-card{position:relative;overflow:hidden;display:flex;flex-direction:column;gap:.75rem;background:var(--forest);color:#fff;border-radius:18px;padding:1.75rem 1.5rem;text-align:center}
.pay-card::before{content:"";position:absolute;top:-70px;right:-80px;width:210px;height:210px;background:rgba(255,255,255,.07);border-radius:999px}
.pay-card>*{position:relative;margin:0}
.pay-card h3{color:#fff;font-size:1.0625rem;font-weight:900;letter-spacing:.06em;text-transform:uppercase;line-height:1.3;margin:0 0 .25rem}
.pay-card p{font-size:1rem;line-height:1.6}
.pay-card a{color:#fff}
.pay-card address{font-style:normal;font-size:1rem;line-height:1.6;background:rgba(255,255,255,.09);border-radius:12px;padding:.9rem 1rem}
.pay-note{font-size:.9375rem;line-height:1.5}
.pay-card a:not(.btn){text-decoration:underline;text-underline-offset:3px}
.pay-stack-title{font-size:1.5rem;line-height:1.25;color:var(--ink);font-weight:700;margin:0 0 1rem;text-align:center}
.pay-stack{display:grid;gap:14px}
.pay-stack .pay-card{padding:1.25rem 1.5rem;border-radius:18px;box-shadow:0 8px 20px rgba(0,0,0,.12);text-align:center;gap:.6rem}
.pay-stack .pay-card::before{top:-40px;right:-50px;width:140px;height:140px}
.pay-stack .pay-card h3{font-size:1rem;letter-spacing:.09em;margin:0 0 .1rem}
.pay-stack .pay-card p{font-size:.9375rem;line-height:1.55}
.pay-stack .pay-card address{font-size:.875rem;padding:.65rem .8rem;border-radius:14px;background:rgba(255,255,255,.10);border:1px solid rgba(255,255,255,.16)}
.pay-stack .pay-note{font-size:.8125rem}
.pay-stack .btn{align-self:center;min-height:42px;padding:.6rem 1.05rem;font-size:.875rem}
.pay-card .btn{align-self:center;background:#fff;border-color:#fff;color:#1b1f1e;border-radius:999px;font-weight:900;letter-spacing:.02em;min-height:46px;padding:.7rem 1.4rem}
.pay-card .btn:hover,.pay-card .btn:focus{background:var(--maroon);border-color:#fff;color:#fff}
.pay-card .btn--outline{background:transparent;color:#fff}
.pay-card .btn--outline:hover,.pay-card .btn--outline:focus{background:#fff;color:var(--forest)}

/* ---------- events / calendar ---------- */
.calendar{margin:1.5rem 0 2.5rem;min-height:320px}
.calendar-lead{color:var(--sage-text);font-size:1.1875rem;line-height:1.5;text-align:center;margin:0 0 1.5rem}

/* ---------- footer ---------- */
.site-footer{
  position:relative;
  background:#3C514B url("../images/pexels-jaymantri-4827.jpg") left center/cover no-repeat;
  color:#fff;
}
.site-footer::before{content:"";position:absolute;inset:0;background:var(--forest);opacity:.8}
.footer-divider{position:absolute;top:-1px;left:0;width:100%;height:50px;line-height:0;overflow:hidden}
.footer-divider svg{display:block;width:100%;height:100%}
.footer-inner{
  position:relative;
  max-width:1400px;margin:0 auto;padding:5rem 1.25rem 1rem;
  display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:2.5rem;align-items:center;
}
.site-footer a{color:#fff}
.site-footer a:hover,.site-footer a:focus{color:#fff;text-decoration:underline}
.footer-brand{text-align:center}
.footer-brand img{max-width:200px;margin:0 auto 1rem}
.footer-contact{list-style:none;margin:0;padding:0;display:grid;gap:.4rem;justify-items:center}
.footer-contact a{display:inline-flex;align-items:center;gap:.5rem;min-height:44px;text-decoration:none;font-size:1.0625rem}
.footer-contact svg{width:20px;height:20px;fill:currentColor;flex:0 0 auto}
.footer-contact .line-icon{fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}
.footer-message{text-align:center;margin:0;font-size:1.0625rem;line-height:1.5}
.footer-actions{display:grid;gap:1.5rem;justify-items:center}
.footer-social{list-style:none;margin:0;padding:0;display:flex;gap:1.75rem}
.footer-social a{display:flex;align-items:center;justify-content:center;width:44px;height:44px}
.footer-social svg{width:38px;height:38px;fill:#fff}
.footer-social a:hover svg,.footer-social a:focus svg{fill:var(--cream)}
.footer-buttons{display:flex;flex-wrap:wrap;gap:1rem;justify-content:center}
.footer-buttons .btn{border-radius:0;font-style:italic;font-weight:700;letter-spacing:.02em;min-height:52px;padding:.75rem 1.5rem;font-size:1.0625rem}
.footer-buttons .btn-membership{background:rgba(38,57,64,.55);border-color:rgba(38,57,64,.55);color:#fff}
.footer-buttons .btn-membership:hover,.footer-buttons .btn-membership:focus{background:#fff;border-color:#fff;color:var(--forest)}
.footer-buttons .btn-give{background:var(--maroon);border-color:var(--maroon);color:#fff}
.footer-buttons .btn-give:hover,.footer-buttons .btn-give:focus{background:#fff;border-color:#fff;color:var(--maroon)}
.footer-legal{position:relative;text-align:center;padding:1.5rem 1.25rem 2.5rem;font-size:.9375rem;line-height:1.7}
@media (max-width:900px){.footer-inner{text-align:center}}

.ext::after{content:"\2197";font-size:.85em;margin-left:.15em;text-decoration:none}

.hope-wrap{max-width:860px;margin:0 auto}
.hope-sub{margin:0 auto 22px;font-size:1.1875rem;line-height:1.7;max-width:760px;text-align:center;color:var(--sage-text)}
.hope-card{position:relative;overflow:hidden;border-radius:20px;padding:2rem 1.75rem;background:var(--forest);color:#fff;box-shadow:0 12px 26px rgba(0,0,0,.14);text-align:center}
.hope-card::before{content:"";position:absolute;top:-60px;right:-70px;width:220px;height:220px;background:rgba(255,255,255,.08);border-radius:999px}
.hope-card>*{position:relative}
.hope-card-title{margin:0 0 14px;font-size:1.125rem;font-weight:900;letter-spacing:.4px;color:#fff}
.hope-card-text{margin:0 0 18px;font-size:1rem;line-height:1.75}
.hope-list-title{margin:0 0 10px;font-size:.875rem;font-weight:900;text-transform:uppercase;letter-spacing:.6px;color:#fff}
.hope-list{list-style:none;margin:0 auto 18px;padding:0;text-align:center}
.hope-list li{margin-bottom:8px;font-size:1rem;line-height:1.65}
.hope-list li::before{content:"\2022 "}
.hope-note{margin:0 0 16px;font-size:.9375rem;line-height:1.65}
.hope-note-strong{font-weight:900}
.hope-divider{border:0;height:1px;margin:26px 0;background:rgba(255,255,255,.25)}
.hope-cta{margin-top:22px}
.hope-btn{display:inline-flex;align-items:center;justify-content:center;min-height:48px;padding:.9rem 1.75rem;border-radius:999px;background:#fff;color:#1b1f1e;text-decoration:none;font-weight:900;font-size:.9375rem;letter-spacing:.8px}
.hope-btn:hover,.hope-btn:focus{background:var(--maroon);color:#fff}
.hope-btn:focus-visible{outline:3px solid rgba(255,255,255,.85);outline-offset:3px}
.hope-form-note{margin:14px 0 0;font-size:.9375rem;line-height:1.6;text-align:center}
.hope-form-note:last-child{margin-bottom:0}

.ext::after{content:"\2197";font-size:.85em;margin-left:.15em;text-decoration:none}
