:root {
  --cream: #f6f1e8;
  --cream-light: #fbfaf6;
  --tan: #e8e4da;
  --navy: #0f2a44;
  --navy-soft: #1c3a58;
  --gold: #a77e3b;
  --ink: #141414;
  --muted: #5b5750;
  --serif: "Fraunces", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --maxw: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-family: var(--serif); color: var(--navy); font-weight: 500; letter-spacing: -0.01em; line-height: 1.1; margin: 0; }
p { margin: 0 0 1.1em; }
a { color: inherit; }
img { max-width: 100%; display: block; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.eyebrow {
  font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 22px;
}
.lead { font-size: 19px; color: var(--muted); max-width: 640px; }

/* Buttons */
.btn {
  display: inline-block; background: var(--navy); color: #fff; text-decoration: none;
  padding: 14px 26px; border-radius: 4px; font-weight: 500; font-size: 15px;
  transition: background .2s ease, transform .2s ease; border: none; cursor: pointer;
}
.btn:hover { background: var(--navy-soft); transform: translateY(-1px); }
.btn-lg { padding: 17px 36px; font-size: 16px; }
.link-cta {
  display: inline-block; color: var(--navy); font-weight: 600; text-decoration: none;
  border-bottom: 2px solid var(--gold); padding-bottom: 3px; transition: opacity .2s;
}
.link-cta:hover { opacity: .7; }

/* Header */
header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(246,241,232,.88); backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(15,42,68,.08);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.logo { font-family: var(--serif); font-weight: 600; font-size: 21px; color: var(--navy); text-decoration: none; letter-spacing: -0.01em; }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a { text-decoration: none; font-size: 15px; color: var(--ink); font-weight: 500; transition: color .2s; }
.nav-links a:not(.btn):hover { color: var(--gold); }
.nav-links a.btn { color: #fff; }
.nav-links a.btn:hover { color: #fff; }
.nav-toggle { display: none; background: none; border: 0; font-size: 24px; color: var(--navy); cursor: pointer; }

section { padding: 96px 0; }

/* Hero */
.hero { padding: 84px 0 96px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 60px; align-items: center; }
.hero h1 { font-size: clamp(42px, 6vw, 66px); margin-bottom: 28px; }
.hero .lead { margin-bottom: 30px; font-size: 18px; }
.hero-img { border-radius: 8px; overflow: hidden; aspect-ratio: 4/5; box-shadow: 0 30px 60px -30px rgba(15,42,68,.35); }
.hero-img img { width: 100%; height: 100%; object-fit: cover; }

/* Problem */
.problem { background: var(--cream-light); border-top: 1px solid var(--tan); border-bottom: 1px solid var(--tan); }
.problem h2 { font-size: clamp(28px, 4vw, 40px); max-width: 760px; margin-bottom: 24px; }
.problem-list { list-style: none; padding: 0; margin: 34px 0 0; display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.problem-list li {
  background: var(--cream); border: 1px solid var(--tan); border-radius: 6px;
  padding: 22px 24px; font-weight: 500; color: var(--navy); position: relative; padding-left: 52px;
}
.problem-list li::before {
  content: ""; position: absolute; left: 22px; top: 26px; width: 14px; height: 14px;
  border: 2px solid var(--gold); border-radius: 50%;
}

/* Section heading block */
.sec-head { max-width: 720px; margin-bottom: 56px; }
.sec-head h2 { font-size: clamp(30px, 4.4vw, 46px); margin-bottom: 20px; }

/* Who we serve cards */
.paths { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.path {
  background: var(--cream-light); border: 1px solid var(--tan); border-radius: 8px;
  padding: 34px 30px; transition: transform .25s ease, box-shadow .25s ease;
}
.path:hover { transform: translateY(-4px); box-shadow: 0 24px 40px -28px rgba(15,42,68,.4); }
.path .num { font-family: var(--serif); font-size: 40px; color: var(--gold); font-weight: 500; line-height: 1; margin-bottom: 18px; }
.path h3 { font-size: 23px; margin-bottom: 14px; }
.path p { color: var(--muted); font-size: 16px; margin: 0; }

/* How we help */
.help { background: var(--navy); color: #eef1f5; }
.help h2, .help h3 { color: #fff; }
.help .eyebrow { color: #d6b877; }
.help .lead { color: #b9c4d1; }
.services { display: grid; grid-template-columns: repeat(2,1fr); gap: 2px; background: rgba(255,255,255,.12); border-radius: 8px; overflow: hidden; }
.service { background: var(--navy); padding: 34px 32px; }
.service h3 { font-size: 21px; margin-bottom: 12px; }
.service p { color: #a9b5c3; font-size: 16px; margin: 0; }
.onpurpose { margin-top: 48px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.14); border-radius: 8px; padding: 40px; }
.onpurpose h3 { font-size: 26px; margin-bottom: 16px; }
.onpurpose p { color: #b9c4d1; margin: 0; max-width: 780px; }

/* About */
.bios { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-bottom: 56px; }
.bio { display: grid; grid-template-columns: 150px 1fr; gap: 26px; align-items: start; }
.bio-photo { width: 150px; height: 180px; border-radius: 8px; overflow: hidden; background: var(--tan); }
.bio-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.bio h3 { font-size: 22px; margin-bottom: 4px; }
.bio .role { color: var(--gold); font-weight: 600; font-size: 14px; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 14px; }
.bio p { color: var(--muted); font-size: 15.5px; margin: 0 0 14px; }
.bio-li { display: inline-block; font-size: 14px; font-weight: 600; color: var(--navy); text-decoration: none; border-bottom: 2px solid var(--gold); padding-bottom: 2px; transition: opacity .2s; }
.bio-li:hover { opacity: .7; }
.together { border-radius: 8px; overflow: hidden; max-width: 540px; margin: 0 auto; box-shadow: 0 24px 50px -30px rgba(15,42,68,.4); }
.together img { width: 100%; height: auto; display: block; }
.caption { text-align: center; color: var(--muted); font-style: italic; margin-top: 16px; font-size: 15px; }
.disclaimer { max-width: 780px; margin: 44px auto 0; text-align: center; color: var(--muted); font-size: 13.5px; line-height: 1.6; }

/* Contact */
.contact { background: var(--cream-light); border-top: 1px solid var(--tan); }
.contact-cta { max-width: 720px; margin: 0 auto; text-align: center; }
.contact-cta .lead { margin: 0 auto 34px; }
.contact h2 { font-size: clamp(30px, 4.4vw, 46px); margin-bottom: 20px; }

/* Footer */
footer { background: var(--navy); color: #cfd8e2; padding: 64px 0 40px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.foot-logo { font-family: var(--serif); font-weight: 600; font-size: 22px; color: #fff; margin-bottom: 12px; }
footer p { color: #9fb0c1; font-size: 15px; }
.foot-col h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .1em; color: #d6b877; margin: 0 0 16px; font-family: var(--sans); font-weight: 600; }
.foot-col a { display: block; text-decoration: none; color: #cfd8e2; font-size: 15px; margin-bottom: 10px; transition: color .2s; }
.foot-col a:hover { color: #fff; }
.foot-bottom { border-top: 1px solid rgba(255,255,255,.12); padding-top: 28px; }
.foot-bottom .copy { font-size: 14px; color: #8ea0b3; margin-bottom: 14px; }
.foot-bottom .disc { font-size: 12.5px; color: #7e91a5; line-height: 1.6; max-width: 900px; margin: 0; }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* Newsletter modal */
.page-head .btn { margin-top: 26px; }
.modal-overlay {
  position: fixed; inset: 0; background: rgba(15,42,68,.6); backdrop-filter: blur(3px);
  display: none; align-items: center; justify-content: center; z-index: 200; padding: 24px;
  opacity: 0; transition: opacity .25s ease;
}
.modal-overlay.open { display: flex; opacity: 1; }
.modal-box {
  background: var(--cream-light); border-radius: 12px; max-width: 480px; width: 100%;
  padding: 40px 38px; position: relative; box-shadow: 0 40px 80px -30px rgba(0,0,0,.5);
  transform: translateY(12px) scale(.98); transition: transform .25s ease;
}
.modal-overlay.open .modal-box { transform: none; }
.modal-box .eyebrow { margin-bottom: 14px; }
.modal-box h3 { font-size: 28px; margin-bottom: 12px; }
.modal-box p { color: var(--muted); font-size: 16px; margin-bottom: 24px; }
.modal-close {
  position: absolute; top: 16px; right: 18px; background: none; border: 0; cursor: pointer;
  font-size: 26px; line-height: 1; color: var(--muted); transition: color .2s;
}
.modal-close:hover { color: var(--navy); }
.modal-placeholder {
  border: 1px dashed #cdbf9e; border-radius: 8px; padding: 24px; text-align: center;
  color: var(--muted); font-size: 14px; background: #fff;
}

/* ===== Blog index ===== */
.page-head { padding: 80px 0 40px; }
.page-head .eyebrow { margin-bottom: 16px; }
.page-head h1 { font-size: clamp(38px, 5.5vw, 58px); margin-bottom: 18px; }
.page-head p { max-width: 640px; color: var(--muted); font-size: 19px; }

.post-list { padding: 20px 0 100px; display: grid; gap: 28px; }
.post-card {
  display: grid; grid-template-columns: 200px 1fr; gap: 34px; align-items: center;
  background: var(--cream-light); border: 1px solid var(--tan); border-radius: 10px;
  padding: 32px; text-decoration: none; transition: transform .25s ease, box-shadow .25s ease;
}
.post-card:hover { transform: translateY(-3px); box-shadow: 0 24px 44px -28px rgba(15,42,68,.4); }
.post-card .post-tag { font-size: 42px; }
.post-card .post-meta { font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 12px; }
.post-card h2 { font-size: 27px; margin-bottom: 12px; line-height: 1.15; }
.post-card p { color: var(--muted); font-size: 16px; margin: 0 0 14px; }
.post-card .readmore { color: var(--navy); font-weight: 600; border-bottom: 2px solid var(--gold); padding-bottom: 2px; display: inline-block; }

/* ===== Article ===== */
.article { padding: 0 0 90px; background: #fff; }
.article-inner { max-width: 720px; margin: 0 auto; padding-top: 60px; }
.back-link { display: inline-block; color: var(--muted); text-decoration: none; font-size: 14px; font-weight: 500; margin-bottom: 32px; }
.back-link:hover { color: var(--gold); }
.article-meta { font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 18px; }
.article h1 { font-size: clamp(34px, 5vw, 52px); margin-bottom: 18px; line-height: 1.08; }
.article .subtitle { font-size: 20px; color: var(--muted); font-style: italic; margin-bottom: 28px; }
.byline { display: flex; align-items: center; gap: 14px; padding: 20px 0; border-top: 1px solid var(--tan); border-bottom: 1px solid var(--tan); margin-bottom: 44px; }
.byline img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.byline .b-name { font-weight: 600; color: var(--navy); font-size: 15px; }
.byline .b-role { font-size: 13.5px; color: var(--muted); }
.byline .b-li { font-size: 13px; font-weight: 600; color: var(--navy); text-decoration: none; border-bottom: 1.5px solid var(--gold); padding-bottom: 1px; }
.byline .b-li:hover { opacity: .7; }
.article-body { font-size: 18px; line-height: 1.75; color: #2a2824; }
.article-body h2 { font-size: 30px; margin: 52px 0 18px; }
.article-body h3 { font-size: 22px; margin: 38px 0 12px; }
.article-body p { margin: 0 0 22px; }
.article-body ul { margin: 0 0 22px; padding-left: 22px; }
.article-body li { margin-bottom: 10px; }
.article-body a { color: var(--navy); font-weight: 500; text-decoration: underline; text-decoration-color: var(--gold); text-underline-offset: 3px; }
.article-body strong { color: var(--navy); }
.article-body em { color: var(--muted); }
.callout { background: var(--cream); border-left: 3px solid var(--gold); border-radius: 0 8px 8px 0; padding: 22px 26px; margin: 32px 0; font-size: 16.5px; }
.callout p:last-child { margin-bottom: 0; }
.article-cta { margin-top: 56px; padding: 40px; background: var(--navy); border-radius: 10px; text-align: center; }
.article-cta h3 { color: #fff; font-size: 26px; margin-bottom: 14px; }
.article-cta p { color: #b9c4d1; max-width: 520px; margin: 0 auto 26px; }

/* Responsive */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-img { max-width: 460px; }
  .problem-list, .paths, .services, .bios, .foot-grid { grid-template-columns: 1fr; }
  .bios { gap: 32px; }
  .post-card { grid-template-columns: 1fr; gap: 16px; text-align: left; }
  .post-card .post-tag { font-size: 34px; }
  .nav-links { display: none; }
  .nav-links.open { display: flex; position: absolute; top: 74px; left: 0; right: 0; flex-direction: column; background: var(--cream); padding: 20px 28px; gap: 20px; border-bottom: 1px solid var(--tan); }
  .nav-toggle { display: block; }
  section { padding: 72px 0; }
}
@media (max-width: 560px) {
  .bio { grid-template-columns: 1fr; }
  .bio-photo { width: 130px; }
}
