
:root{
  --cream:#fbf7ef;
  --paper:#fffdf8;
  --navy:#0e2c4a;
  --navy-dark:#0c2b49;
  --green:#103f25;
  --green-soft:#55724a;
  --orange:#c94a1a;
  --gold:#c78d00;
  --blue:#126697;
  --muted:#5b6570;
  --line:rgba(16,63,37,.16);
  --shadow:0 16px 36px rgba(14,44,74,.10);
  --max:1240px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  color:#121927;
  background:
    radial-gradient(circle at 0% 0%, rgba(201,74,26,.07), transparent 22rem),
    radial-gradient(circle at 100% 20%, rgba(16,63,37,.07), transparent 24rem),
    var(--cream);
  font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  line-height:1.55;
}
body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  background-image:linear-gradient(115deg, transparent 0 47%, rgba(201,74,26,.04) 48% 52%, transparent 53%);
  background-size:72px 72px;
  opacity:.45;
}
img{max-width:100%;height:auto;display:block}
a{color:inherit}
.skip-link{
  position:absolute;
  left:1rem;
  top:-5rem;
  z-index:999;
  background:var(--navy);
  color:white;
  padding:.6rem 1rem;
  border-radius:99px;
}
.skip-link:focus{top:1rem}
.container{
  width:min(var(--max), calc(100% - 2rem));
  margin-inline:auto;
  position:relative;
  z-index:1;
}

/* Header */
.site-header{
  position:sticky;
  top:0;
  z-index:40;
  background:rgba(251,247,239,.96);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(14,44,74,.08);
}
.header-inner{
  width:min(1320px, calc(100% - 2rem));
  min-height:94px;
  margin-inline:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1.5rem;
}
.logo-link{display:block;flex:0 1 620px;min-width:260px}
.logo-link img{width:min(590px, 48vw)}
.site-nav{
  display:flex;
  align-items:center;
  gap:.9rem;
  white-space:nowrap;
}
.site-nav a{
  text-decoration:none;
  font-weight:900;
  letter-spacing:.02em;
  font-size:clamp(1rem,1.1vw,1.2rem);
  color:var(--navy);
  padding:.72rem 1.05rem;
  border-radius:999px;
}
.site-nav .nav-pill.active{
  background:var(--green);
  color:white;
}
.site-nav .contact-pill{
  background:var(--navy);
  color:white;
  box-shadow:0 10px 22px rgba(14,44,74,.18);
}
.menu-toggle{
  display:none;
  border:0;
  background:var(--navy);
  color:white;
  font-weight:900;
  border-radius:999px;
  padding:.75rem 1rem;
  cursor:pointer;
}

/* Home */
.hero-section{
  padding:clamp(1.5rem,3vw,3rem) 0 clamp(1.8rem,4vw,3.5rem);
}
.intro-grid{
  display:grid;
  grid-template-columns:minmax(0,.9fr) minmax(420px,1.1fr);
  align-items:start;
  gap:clamp(1.2rem,3vw,2.5rem);
}
.welcome-card{
  background:rgba(255,253,248,.88);
  border:1px solid var(--line);
  border-radius:28px;
  box-shadow:var(--shadow);
  padding:clamp(1.25rem,2.5vw,2.2rem);
}
.welcome-card h1{
  margin:0 0 1rem;
  color:var(--green);
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(1.55rem,2.35vw,2.45rem);
  line-height:1.13;
  letter-spacing:-.02em;
}
.welcome-card p{
  color:var(--navy);
  font-size:clamp(.98rem,1.08vw,1.08rem);
  margin:.8rem 0;
}
.welcome-card .affiliation{
  font-weight:800;
  color:var(--green);
}
.welcome-card .affiliation a{
  color:var(--orange);
  text-underline-offset:4px;
  text-decoration-thickness:2px;
}
.hero-images{
  display:grid;
  gap:1rem;
  align-self:start;
}
.values-image{
  border-radius:28px;
  box-shadow:var(--shadow);
  background:#fff7eb;
  border:1px solid rgba(16,63,37,.12);
}
.people-image{
  border-radius:22px;
  background:transparent;
  border:0;
  box-shadow:none;
}
.community-section{
  padding:clamp(2.5rem,5vw,4.8rem) 0;
}
.section-heading{
  text-align:center;
  max-width:760px;
  margin:0 auto clamp(1.6rem,3vw,2.4rem);
}
.section-heading h2{
  margin:0 0 .5rem;
  color:var(--green);
  font-family:Georgia,"Times New Roman",serif;
  font-style:italic;
  font-size:clamp(2rem,4.6vw,4.1rem);
  line-height:.98;
}
.section-heading p{
  margin:0;
  color:var(--navy);
  font-weight:800;
  font-size:clamp(.98rem,1.2vw,1.1rem);
}
.community-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:clamp(1rem,2vw,1.5rem);
  max-width:1120px;
  margin-inline:auto;
}
.community-card{
  display:grid;
  grid-template-columns:130px minmax(0,1fr);
  gap:1.2rem;
  align-items:center;
  background:rgba(255,253,248,.88);
  border:1px solid rgba(16,63,37,.14);
  border-radius:24px;
  box-shadow:0 10px 24px rgba(14,44,74,.07);
  padding:clamp(1rem,2vw,1.5rem);
}
.community-card img{
  width:118px;
  height:118px;
  object-fit:contain;
}
.community-card h3{
  margin:0 0 .45rem;
  color:var(--navy);
  font-size:clamp(1.25rem,2vw,1.65rem);
  line-height:1.12;
}
.community-card p{
  margin:0;
  color:var(--navy);
  font-size:.98rem;
}
.next-service-section{
  padding:clamp(1rem,3vw,2.2rem) 0 clamp(3rem,5vw,5rem);
}
.next-service-card{
  width:100%;
  border-radius:30px;
  box-shadow:var(--shadow);
  background:#f5f2e9;
}

/* Page hero */
.page-hero{
  text-align:center;
  padding:clamp(2rem,5vw,4rem) 0 clamp(1.1rem,3vw,2rem);
}
.page-hero h1{
  margin:0;
  color:var(--green);
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(2.2rem,4.5vw,4rem);
  line-height:1;
}
.page-hero p{
  max-width:780px;
  margin:.7rem auto 0;
  color:var(--navy);
  font-size:clamp(1rem,1.4vw,1.2rem);
}
.divider{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:.75rem;
  color:#9baa83;
  margin:.85rem auto;
}
.divider::before,.divider::after{
  content:"";
  width:110px;
  height:2px;
  background:currentColor;
}
.divider span{font-size:1.4rem}

/* Events */
.events-section{
  padding:0 0 clamp(3rem,5vw,5rem);
}
.events-grid{
  display:grid;
  grid-template-columns:1.3fr .95fr .95fr;
  gap:clamp(1rem,1.8vw,1.5rem);
  align-items:stretch;
}
.event-card{
  --accent:var(--green-soft);
  display:flex;
  flex-direction:column;
  background:rgba(255,253,248,.9);
  border:1.5px solid color-mix(in srgb, var(--accent) 55%, white);
  border-radius:24px;
  box-shadow:0 12px 26px rgba(14,44,74,.08);
  padding:clamp(1rem,2vw,1.45rem);
}
.event-card.gold{--accent:var(--gold)}
.event-card.blue{--accent:var(--blue)}
.event-icon{
  width:62px;
  height:62px;
  margin:0 auto .55rem;
  color:var(--accent);
  border:3px solid currentColor;
  border-radius:12px;
  position:relative;
}
.event-icon::before,.event-icon::after{
  content:"";
  position:absolute;
  top:-10px;
  width:8px;
  height:18px;
  border-radius:99px;
  background:currentColor;
}
.event-icon::before{left:14px}
.event-icon::after{right:14px}
.event-card h2{
  color:var(--green);
  text-align:center;
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(1.45rem,2.1vw,2rem);
  line-height:1.1;
  margin:.2rem 0 .9rem;
}
.next-event{
  background:var(--accent);
  color:white;
  border-radius:99px;
  padding:.75rem 1rem;
  display:flex;
  flex-direction:column;
  align-items:center;
  line-height:1.2;
  font-weight:900;
  margin-bottom:1rem;
}
.next-event span{
  text-transform:uppercase;
  font-size:.84rem;
  letter-spacing:.04em;
}
.event-card p{
  margin:.25rem 0 1rem;
  color:#101725;
  text-align:center;
}
.event-details{
  border-top:1px dashed color-mix(in srgb,var(--accent) 60%,transparent);
  border-bottom:1px dashed color-mix(in srgb,var(--accent) 60%,transparent);
  padding:1rem 0;
  margin:.5rem 0 1rem;
  display:grid;
  gap:1rem;
}
.event-details.two-col{
  grid-template-columns:repeat(2,minmax(0,1fr));
}
.event-card h3{
  margin:0 0 .35rem;
  color:var(--accent);
  font-size:1rem;
  text-transform:uppercase;
}
.event-details p{text-align:left;margin:0}
.event-dates{
  margin-top:auto;
  padding-top:.5rem;
}
.event-dates ul{
  margin:.5rem 0 0;
  padding-left:1.2rem;
}
.event-dates li{margin:.25rem 0}
.event-button{
  margin-top:1rem;
  text-align:center;
  text-decoration:none;
  color:var(--accent);
  border:2px solid var(--accent);
  border-radius:999px;
  padding:.75rem .9rem;
  font-weight:900;
  text-transform:uppercase;
  font-size:.92rem;
}
.welcome-line{
  text-align:center;
  color:var(--green-soft);
  font-family:"Segoe Print","Bradley Hand",cursive;
  font-size:clamp(1.05rem,1.6vw,1.45rem);
  margin:1rem 0 0;
}

/* Beliefs */
.beliefs-page{padding:0 0 4rem}
.beliefs-doc{
  max-width:940px;
  margin-inline:auto;
  background:rgba(255,253,248,.9);
  border:1px solid var(--line);
  border-radius:28px;
  box-shadow:var(--shadow);
  padding:clamp(1.2rem,3vw,3rem);
}
.doc-title{
  text-align:center;
  color:var(--navy);
  font-family:Impact,Haettenschweiler,"Arial Narrow Bold",sans-serif;
  letter-spacing:.06em;
  font-size:clamp(2rem,4vw,3.3rem);
  line-height:1;
  margin:0;
}
.doc-subtitle{
  text-align:center;
  color:var(--orange);
  font-weight:900;
  letter-spacing:.08em;
}
.doc-lead{text-align:center;color:var(--navy)}
blockquote{
  margin:1.5rem auto 2rem;
  max-width:760px;
  border-top:2px solid rgba(155,170,131,.6);
  border-bottom:2px solid rgba(155,170,131,.6);
  padding:1.2rem;
  color:var(--green);
  font-family:Georgia,"Times New Roman",serif;
  text-align:center;
  font-size:clamp(1.1rem,1.8vw,1.45rem);
}
blockquote cite{
  display:block;
  margin-top:.7rem;
  color:var(--orange);
  font-family:system-ui,sans-serif;
  font-weight:900;
  font-style:normal;
  font-size:.95rem;
}
.belief-block{
  border-top:1px solid rgba(16,63,37,.13);
  padding:clamp(1.4rem,3vw,2.2rem) 0;
}
.belief-block h2{
  margin:0 0 .2rem;
  color:var(--green);
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(1.7rem,3vw,2.5rem);
}
.belief-block h3{
  margin:0 0 .75rem;
  color:var(--orange);
  text-transform:uppercase;
  letter-spacing:.05em;
  font-size:.95rem;
}
.belief-block ul{
  display:grid;
  gap:.7rem;
  list-style:none;
  padding:0;
  margin:1rem 0 0;
}
.belief-block li{
  background:rgba(232,236,223,.45);
  border-radius:16px;
  padding:.9rem 1rem .9rem 2.6rem;
  position:relative;
}
.belief-block li::before{
  content:"❤";
  color:var(--orange);
  position:absolute;
  left:1rem;
  top:.92rem;
  font-size:.8rem;
}

/* Contact */
.contact-section{padding:0 0 4rem}
.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:1.5rem;
}
.contact-panel,.contact-note{
  background:rgba(255,253,248,.9);
  border:1px solid var(--line);
  border-radius:26px;
  box-shadow:var(--shadow);
  padding:clamp(1.2rem,3vw,2rem);
}
.contact-panel{
  background:var(--green);
  color:white;
}
.contact-panel h2,.contact-note h2{
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(1.6rem,2.8vw,2.5rem);
  margin:0 0 .75rem;
}
.email-link{
  display:inline-flex;
  margin-top:.8rem;
  background:white;
  color:var(--green);
  border-radius:999px;
  padding:.85rem 1rem;
  font-weight:900;
  text-decoration:none;
}
.contact-note a{
  color:var(--orange);
  font-weight:800;
}

/* Footer */
.site-footer{
  background:var(--navy);
  color:white;
  padding:2rem clamp(1rem,3vw,2rem) 1.5rem;
}
.footer-top{
  max-width:1320px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:2rem;
}
.footer-brand img{
  width:min(520px,52vw);
}
.footer-brand p{
  color:rgba(255,255,255,.72);
  margin:.75rem 0 0;
  font-size:1.1rem;
}
.footer-nav{
  display:flex;
  flex-wrap:wrap;
  justify-content:flex-end;
  gap:1.25rem;
}
.footer-nav a{
  color:white;
  text-decoration:none;
  font-weight:900;
  font-size:1.08rem;
}
.footer-nav a:hover{text-decoration:underline}
.copyright{
  text-align:center;
  color:rgba(255,255,255,.7);
  margin:2rem 0 0;
  font-size:1rem;
}

/* Responsive */
@media (max-width: 1040px){
  .header-inner{min-height:82px}
  .logo-link img{width:min(470px,55vw)}
  .site-nav{gap:.35rem}
  .site-nav a{font-size:1rem;padding:.62rem .8rem}
  .intro-grid{grid-template-columns:1fr}
  .hero-images{max-width:820px;margin-inline:auto}
  .events-grid{grid-template-columns:1fr}
  .event-details.two-col{grid-template-columns:1fr}
}
@media (max-width: 760px){
  .container{width:min(100% - 1.25rem, var(--max))}
  .header-inner{
    width:calc(100% - 1rem);
    min-height:74px;
    gap:.6rem;
  }
  .logo-link{min-width:0;flex:1}
  .logo-link img{width:min(310px,68vw)}
  .menu-toggle{display:inline-flex}
  .site-nav{
    position:absolute;
    top:calc(100% + 1px);
    left:.65rem;
    right:.65rem;
    display:none;
    flex-direction:column;
    align-items:stretch;
    background:rgba(251,247,239,.99);
    border:1px solid rgba(16,63,37,.12);
    box-shadow:var(--shadow);
    border-radius:20px;
    padding:.65rem;
  }
  .site-header.nav-open .site-nav{display:flex}
  .site-nav a{
    text-align:center;
    padding:.75rem .9rem;
  }
  .hero-section{padding-top:1rem}
  .welcome-card{border-radius:22px;padding:1rem}
  .welcome-card h1{font-size:clamp(1.45rem,7vw,2.1rem)}
  .welcome-card p{font-size:.98rem}
  .values-image{border-radius:20px}
  .people-image{border-radius:16px}
  .community-grid{grid-template-columns:1fr}
  .community-card{
    grid-template-columns:92px minmax(0,1fr);
    gap:.9rem;
    border-radius:20px;
  }
  .community-card img{width:88px;height:88px}
  .community-card h3{font-size:1.18rem}
  .community-card p{font-size:.93rem;line-height:1.45}
  .next-service-card{border-radius:18px}
  .footer-top{
    flex-direction:column;
    align-items:flex-start;
  }
  .footer-brand img{width:min(440px,90vw)}
  .footer-nav{
    justify-content:flex-start;
    gap:.85rem 1.1rem;
  }
  .copyright{text-align:left;margin-top:1.4rem}
  .contact-grid{grid-template-columns:1fr}
}
@media (max-width: 430px){
  .community-card{
    grid-template-columns:1fr;
    text-align:center;
    justify-items:center;
  }
  .community-card img{width:104px;height:104px}
}

/* ------------------------------------------------------------
   Final heading scale adjustment
   Make headings proportional to the homepage "Welcome" heading.
   ------------------------------------------------------------ */
.welcome-card h1 {
  font-size: clamp(1.7rem, 2.4vw, 2.35rem);
  line-height: 1.12;
}

.section-heading h2 {
  font-size: clamp(1.85rem, 3vw, 2.55rem);
  line-height: 1.08;
}

.page-hero h1 {
  font-size: clamp(1.9rem, 3.1vw, 2.65rem);
  line-height: 1.08;
}

.event-card h2 {
  font-size: clamp(1.35rem, 1.9vw, 1.75rem);
  line-height: 1.12;
}

.community-card h3 {
  font-size: clamp(1.12rem, 1.55vw, 1.38rem);
  line-height: 1.16;
}

.doc-title {
  font-size: clamp(1.75rem, 3vw, 2.45rem);
  line-height: 1.08;
}

.belief-block h2 {
  font-size: clamp(1.45rem, 2.2vw, 1.95rem);
  line-height: 1.14;
}

.contact-panel h2,
.contact-note h2 {
  font-size: clamp(1.45rem, 2.2vw, 1.95rem);
  line-height: 1.14;
}

@media (max-width: 760px) {
  .welcome-card h1 {
    font-size: clamp(1.6rem, 8vw, 2.15rem);
  }

  .section-heading h2,
  .page-hero h1 {
    font-size: clamp(1.75rem, 8vw, 2.25rem);
  }

  .event-card h2 {
    font-size: clamp(1.35rem, 7vw, 1.75rem);
  }

  .doc-title {
    font-size: clamp(1.6rem, 8vw, 2.2rem);
  }

  .belief-block h2,
  .contact-panel h2,
  .contact-note h2 {
    font-size: clamp(1.4rem, 7vw, 1.85rem);
  }
}

