
:root{
  --teal:#0F4A52;
  --teal-dark:#083A41;
  --teal-header:#2A727B;   /* lighter so raven emblem is visible */
  --rust:#C15A33;
  --sage:#A2B49A;
  --cream:#F4F1E6;
  --gold:#C9A34A;
  --ink:#17313A;
  --white:#FFFFFF;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Arial,Helvetica,sans-serif;
  color:var(--ink);
  background:var(--cream);
  line-height:1.58;
}
a{color:inherit}
img{max-width:100%;display:block}
.container{
  width:min(1180px,92%);
  margin-left:auto;
  margin-right:auto;
}

/* ---------------- Header ---------------- */
.top-ribbon{
  background:var(--teal-header);
  border-bottom:2px solid var(--gold);
  position:sticky;
  top:0;
  z-index:1000;
}
.top-ribbon .container{
  width:min(1180px,92%);
  margin-inline:auto;
}
.nav{
  min-height:104px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:34px;
  padding:8px 0;
}
.brand-logo{
  display:block;
  text-decoration:none;
  width:min(600px,52vw);
  flex:0 1 600px;
}
.brand-logo img{
  width:100%;
  max-height:86px;
  object-fit:contain;
  object-position:left center;
}
.nav-links{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:28px;
  white-space:nowrap;
  flex:0 0 auto;
}
.nav-links a{
  color:white;
  text-decoration:none;
  font-weight:700;
  font-size:.95rem;
}
.nav-links a:hover{color:#FFE0A3}
.donate{
  background:var(--rust);
  padding:12px 18px;
  border-radius:4px;
  color:#fff!important;
}
.mobile-toggle{
  display:none;
  background:none;
  border:0;
  color:white;
  font-size:1.6rem;
}

/* ---------------- Hero ---------------- */
.hero{
  position:relative;
  overflow:hidden;
  background:linear-gradient(180deg,#fbf7ed 0%,var(--cream) 100%);
  border-bottom:1px solid rgba(15,74,82,.15);
}
.hero-inner{
  display:grid;
  grid-template-columns:1.08fr .92fr;
  align-items:end;
  min-height:610px;
}
.hero-copy{padding:72px 0 90px}
.eyebrow{
  font-weight:800;
  letter-spacing:.18em;
  color:var(--rust);
  text-transform:uppercase;
  font-size:.78rem;
}
h1,h2,h3{
  font-family:Georgia,"Times New Roman",serif;
  color:var(--teal-dark);
  margin-top:0;
}
h1{
  font-size:clamp(3rem,6vw,5.3rem);
  line-height:.98;
  margin-bottom:18px;
}
h2{font-size:clamp(2rem,4vw,3rem);line-height:1.08}
h3{font-size:1.45rem}
.hero-sub{
  font-family:Georgia,serif;
  font-style:italic;
  color:var(--rust);
  font-size:clamp(1.4rem,2.5vw,2rem);
  margin:0 0 22px;
}
.hero-copy p{font-size:1.08rem;max-width:680px}
.gold-divider{
  display:flex;
  align-items:center;
  gap:10px;
  margin:24px 0;
}
.gold-divider::before,.gold-divider::after{
  content:"";
  height:1px;
  background:var(--gold);
  width:75px;
}
.gold-dot{
  width:8px;
  height:8px;
  background:var(--gold);
  border-radius:50%;
}
.cta-row{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:26px;
}
.btn{
  display:inline-block;
  text-decoration:none;
  font-weight:800;
  padding:13px 22px;
  border-radius:4px;
  border:2px solid var(--teal);
}
.btn.primary{background:var(--teal);color:white}
.btn.secondary{background:transparent;color:var(--teal)}
.btn.rust{background:var(--rust);border-color:var(--rust);color:white}
.hero-photo{
  align-self:end;
  display:flex;
  justify-content:center;
  align-items:flex-end;
  padding-top:35px;
}
.hero-photo img{
  width:min(500px,100%);
  max-height:555px;
  object-fit:cover;
  object-position:50% 10%;
  border-radius:250px 250px 0 0;
  box-shadow:0 18px 50px rgba(15,74,82,.12);
}
.landscape{
  position:absolute;
  left:0;right:0;bottom:0;
  height:105px;
  pointer-events:none;
  opacity:.86;
}
.landscape::before,.landscape::after{
  content:"";
  position:absolute;
  left:-5%;
  width:110%;
  border-radius:50% 50% 0 0;
}
.landscape::before{
  bottom:0;
  height:74px;
  background:#B9C4AE;
  clip-path:polygon(0 62%,8% 36%,18% 55%,29% 18%,42% 55%,55% 26%,68% 58%,82% 28%,100% 58%,100% 100%,0 100%);
}
.landscape::after{
  bottom:0;
  height:48px;
  background:#7E9177;
  clip-path:polygon(0 62%,13% 38%,21% 67%,36% 21%,50% 63%,64% 33%,76% 70%,88% 39%,100% 58%,100% 100%,0 100%);
}

/* ---------------- Values ---------------- */
.values{
  background:white;
  border-top:1px solid #e7dfcb;
  border-bottom:1px solid #e7dfcb;
}
.values-grid{display:grid;grid-template-columns:repeat(3,1fr)}
.value{
  padding:30px 32px;
  display:grid;
  grid-template-columns:56px 1fr;
  gap:16px;
  align-items:start;
}
.value:not(:last-child){border-right:1px solid #d7caa5}
.icon{
  width:54px;
  height:54px;
  border-radius:50%;
  background:var(--teal);
  color:white;
  display:grid;
  place-items:center;
  font-size:1.4rem;
  border:2px solid var(--gold);
}
.value h3{margin:0 0 6px;font-size:1.35rem}
.value p{margin:0}

/* ---------------- Content ---------------- */
.section{padding:70px 0}
.section.alt{background:#FBF8F0}
.two-col{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:56px;
  align-items:center;
}
.card{
  background:white;
  border:1px solid #e1d7bb;
  border-radius:8px;
  padding:30px;
  box-shadow:0 8px 22px rgba(20,45,48,.05);
}
.quote{
  border-left:4px solid var(--gold);
  padding:4px 0 4px 22px;
  font-family:Georgia,serif;
  font-size:1.25rem;
  color:var(--teal-dark);
}
.smallcaps{
  text-transform:uppercase;
  letter-spacing:.12em;
  font-weight:800;
  font-size:.78rem;
  color:var(--rust);
}
.priority-list{
  display:grid;
  gap:14px;
  margin:24px 0 0;
  padding:0;
  list-style:none;
}
.priority-list li{
  padding:15px 18px;
  border-left:4px solid var(--rust);
  background:white;
  box-shadow:0 5px 14px rgba(20,45,48,.04);
}
.page-hero{
  padding:70px 0 40px;
  background:#faf7ef;
  border-bottom:1px solid #e1d7bb;
}
.page-hero h1{
  font-size:clamp(2.6rem,5vw,4.4rem);
  margin-bottom:14px;
}
.kicker{
  font-family:Georgia,serif;
  color:var(--rust);
  font-style:italic;
  font-size:1.35rem;
}
.timeline{display:grid;gap:18px}
.timeline-item{
  padding:18px 22px;
  border-left:3px solid var(--gold);
  background:white;
}

/* ---------------- Meet Raven gallery ---------------- */
.photo-section{padding:10px 0 70px}
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.gallery-card{
  background:white;
  border:1px solid #e1d7bb;
  border-radius:8px;
  overflow:hidden;
  box-shadow:0 7px 20px rgba(20,45,48,.05);
}
.gallery-card img{width:100%;height:250px;object-fit:cover}
.gallery-card.portrait img{object-position:center 20%}
.gallery-caption{padding:14px 16px;font-size:.94rem}
.feature-gallery{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:20px;
  margin-top:24px;
}
.feature-gallery .big img{height:460px;object-fit:cover}
.feature-stack{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}
.feature-stack img{
  height:220px;
  width:100%;
  object-fit:cover;
  border-radius:8px;
  border:1px solid #e1d7bb;
}

/* ---------------- Footer ---------------- */
.bottom-ribbon{
  background:var(--teal-dark);
  color:white;
  border-top:2px solid var(--gold);
  padding:30px 0 18px;
}
.footer-grid{
  display:grid;
  grid-template-columns:minmax(250px,1fr) minmax(340px,1fr);
  gap:60px;
  align-items:center;
}
.footer-grid > div:last-child{
  justify-self:end;
  text-align:left;
}
.footer-title{
  font-family:Georgia,serif;
  font-size:1.55rem;
  margin:0 0 8px;
}
.connect-title{
  font-weight:800;
  font-size:1rem;
  margin:0 0 10px;
}
.footer-social{
  display:flex;
  align-items:center;
  gap:14px;
  margin:0;
  padding:0;
  list-style:none;
}
.social-circle{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  width:42px !important;
  height:42px !important;
  flex:0 0 42px !important;
  border-radius:50% !important;
  background:var(--cream) !important;
  color:var(--teal-dark) !important;
  text-decoration:none !important;
  border:2px solid var(--gold) !important;
  line-height:1 !important;
  overflow:hidden !important;
}
.social-circle svg{
  display:block !important;
  width:18px !important;
  height:18px !important;
  fill:currentColor !important;
}
.footer-email{
  color:white;
  text-decoration:none;
  font-size:.95rem;
  overflow-wrap:anywhere;
}
.footer-email:hover{color:#FFE0A3}
.footer-social::before,
.footer-social::after,
.social-circle::before,
.social-circle::after{
  content:none !important; /* removes stray dash/pseudo-element */
}
.footer-gold{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  margin:18px 0 10px;
}
.footer-gold::before,.footer-gold::after{
  content:"";
  height:1px;
  background:var(--gold);
  width:110px;
}
.footer-gold span{
  width:7px;
  height:7px;
  border-radius:50%;
  background:var(--gold);
}
.disclaimer{
  text-align:center;
  font-size:.85rem;
  color:#d8e1df;
}

/* ---------------- Responsive ---------------- */
@media(max-width:980px){
  .brand-logo{width:min(500px,55vw)}
  .nav-links{gap:18px}
}
@media(max-width:900px){
  .mobile-toggle{display:block}
  .nav{min-height:84px}
  .brand-logo{width:min(390px,72vw)}
  .nav-links{
    display:none;
    position:absolute;
    left:0;right:0;
    top:84px;
    background:var(--teal-header);
    padding:18px 4%;
    flex-direction:column;
    align-items:flex-start;
    border-top:1px solid rgba(255,255,255,.15);
  }
  .nav-links.open{display:flex}
  .hero-inner,.two-col,.feature-gallery{grid-template-columns:1fr}
  .hero-copy{padding:50px 0 24px}
  .hero-photo{padding-top:0}
  .values-grid,.gallery-grid{grid-template-columns:1fr}
  .value:not(:last-child){border-right:0;border-bottom:1px solid #d7caa5}
  .footer-grid{
    grid-template-columns:1fr;
    gap:26px;
    text-align:center;
  }
  .footer-grid > div:last-child{
    justify-self:center;
    text-align:center;
  }
  .footer-social{justify-content:center;flex-wrap:wrap}
  .feature-gallery .big img{height:380px}
  .feature-stack{grid-template-columns:1fr 1fr}
}
@media(max-width:560px){
  .brand-logo{width:min(310px,74vw)}
  .feature-stack{grid-template-columns:1fr}
  .feature-stack img{height:260px}
}


/* CACHE-PROOF V2 OVERRIDES */
.top-ribbon{
  background:#2A727B !important;
}
.top-ribbon .container,
.nav{
  width:min(1180px,92%) !important;
  margin-left:auto !important;
  margin-right:auto !important;
}
.nav{
  display:flex !important;
  align-items:center !important;
  justify-content:space-between !important;
  gap:30px !important;
}
.brand-logo{
  width:min(580px,52vw) !important;
  max-width:580px !important;
}
.brand-logo img{
  width:100% !important;
  max-height:84px !important;
  object-fit:contain !important;
}
.footer-grid{
  width:100% !important;
  display:grid !important;
  grid-template-columns:1fr 1.15fr !important;
  align-items:center !important;
  gap:56px !important;
}
.footer-grid > div:last-child{
  justify-self:end !important;
  text-align:left !important;
}
.footer-social{
  display:flex !important;
  align-items:center !important;
  gap:12px !important;
  margin:0 !important;
  padding:0 !important;
}
.social-circle{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  width:42px !important;
  height:42px !important;
  min-width:42px !important;
  min-height:42px !important;
  max-width:42px !important;
  max-height:42px !important;
  border-radius:999px !important;
  background:#F4F1E6 !important;
  border:2px solid #C9A34A !important;
  overflow:hidden !important;
  color:#083A41 !important;
  font-size:0 !important;
  line-height:0 !important;
}
.social-circle svg{
  display:block !important;
  width:18px !important;
  height:18px !important;
  max-width:18px !important;
  max-height:18px !important;
  fill:#083A41 !important;
}
.footer-social::before,
.footer-social::after,
.social-circle::before,
.social-circle::after{
  content:none !important;
  display:none !important;
}
.footer-email{
  color:#fff !important;
  font-size:.95rem !important;
  line-height:1.35 !important;
  text-decoration:none !important;
}
@media(max-width:900px){
  .top-ribbon .container,
  .nav{
    width:min(94%,1180px) !important;
  }
  .footer-grid{
    grid-template-columns:1fr !important;
    text-align:center !important;
  }
  .footer-grid > div:last-child{
    justify-self:center !important;
    text-align:center !important;
  }
  .footer-social{justify-content:center !important;flex-wrap:wrap !important;}
}


/* PHOTO REORDER V3 */
.home-community-photo{
  padding:34px 0 12px;
  background:#FBF8F0;
}
.home-community-photo figure,
.meet-top-photo figure{
  margin:0;
}
.home-community-photo img,
.meet-top-photo img{
  width:100%;
  max-height:430px;
  object-fit:cover;
  object-position:center center;
  border-radius:10px;
  border:1px solid #e1d7bb;
  box-shadow:0 8px 22px rgba(20,45,48,.06);
}
.home-community-photo figcaption,
.meet-top-photo figcaption{
  margin-top:10px;
  font-size:.94rem;
  color:#52666c;
}
.meet-top-photo{
  padding:34px 0 18px;
  background:#faf7ef;
}
.photo-contain{
  background:#f7f2e8;
}
.photo-contain img{
  object-fit:contain !important;
  object-position:center center !important;
  background:#f7f2e8;
}
.gallery-card.gallery-card.family-fair img{
  width:100%;
  height:320px !important;
  object-fit:contain !important;
  object-position:center center !important;
  background:#f7f2e8;
  display:block;
}
.gallery-card.cityhall img{
  width:100%;
  height:320px !important;
  object-fit:contain !important;
  object-position:center center !important;
  background:#f7f2e8;
  display:block;
}
.raprd-showcase{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:34px;
  align-items:center;
  background:white;
  border:1px solid #e1d7bb;
  border-radius:10px;
  padding:22px;
  box-shadow:0 8px 22px rgba(20,45,48,.05);
}
.raprd-showcase img{
  width:100%;
  height:420px;
  object-fit:contain;
  object-position:center center;
  background:#f7f2e8;
  border-radius:8px;
}
.raprd-showcase h3{
  margin-bottom:10px;
}
.raprd-showcase p{
  margin-bottom:12px;
}
.raprd-link{
  color:var(--teal);
  font-weight:700;
}
@media(max-width:900px){
  .raprd-showcase{grid-template-columns:1fr}
  .raprd-showcase img{height:auto}
  .home-community-photo img,
  .meet-top-photo img{max-height:none}
}

/* PHOTO CROP FIX V6 */
.community-grid{
  align-items:start;
}
.community-grid .gallery-card{
  display:flex;
  flex-direction:column;
}
.community-grid .gallery-card img{
  width:100% !important;
  height:auto !important;
  max-height:none !important;
  object-fit:contain !important;
  object-position:center center !important;
  aspect-ratio:auto !important;
  background:#f7f2e8 !important;
  display:block !important;
}
.community-grid .gallery-caption{
  min-height:84px;
}
@media(max-width:900px){
  .community-grid .gallery-caption{
    min-height:unset;
  }
}


/* CROPPED PHOTO SET V7 */
.cropped-card img{
  width:100% !important;
  height:430px !important;
  object-fit:contain !important;
  object-position:center center !important;
  background:#f7f2e8 !important;
}
.cropped-stack img{
  width:100% !important;
  height:220px !important;
  object-fit:cover !important;
  object-position:center center !important;
}
.cropped-community-grid{
  align-items:stretch !important;
}
.cropped-community-grid .gallery-card{
  display:flex !important;
  flex-direction:column !important;
}
.cropped-community-grid .gallery-card img{
  width:100% !important;
  height:320px !important;
  object-fit:contain !important;
  object-position:center center !important;
  background:#f7f2e8 !important;
}
.cropped-community-grid .gallery-caption{
  min-height:84px;
}
@media(max-width:900px){
  .cropped-card img,
  .cropped-stack img,
  .cropped-community-grid .gallery-card img{
    height:auto !important;
    max-height:none !important;
  }
  .cropped-community-grid .gallery-caption{min-height:0}
}


/* ENDORSEMENTS V9 */
.endorsements-section{
  background:#FBF8F0;
}
.endorsements-section h2{
  margin-bottom:32px;
}
.endorsements-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.endorsement-card{
  background:#fff;
  border:1px solid #e1d7bb;
  border-top:3px solid var(--gold);
  border-radius:8px;
  padding:24px 22px;
  box-shadow:0 6px 16px rgba(20,45,48,.05);
}
.endorsement-card h3{
  margin:0 0 7px;
  color:var(--teal-dark);
  font-size:1.35rem;
}
.endorsement-card p{
  margin:0;
  color:#52666c;
}
@media(max-width:900px){
  .endorsements-grid{
    grid-template-columns:1fr 1fr;
  }
}
@media(max-width:560px){
  .endorsements-grid{
    grid-template-columns:1fr;
  }
}
