

* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --charcoal: #232629;
  --sage-green: #A8AF8A;
  --sage-brown: #8A7F6A;
  --sand: #F4F1E8;
  --sky-blue: #7F9DB8;
  --paper: #FBF9F3;
  --text-dark: #2A2D2A;
  --text-mid: #5C5E54;
  --border-soft: #E4DFD0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--paper);
  color: var(--text-dark);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
}

.container-narrow {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ───────────── NAV ───────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 249, 243, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-soft);
}
.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo img { width: 36px; height: 36px; object-fit: contain; }
.nav-logo span {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--charcoal);
}
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-mid);
  transition: color 0.2s;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--charcoal);
  border-bottom-color: var(--sage-green);
}
.nav-cta {
  display: inline-block;
  background: var(--charcoal);
  color: var(--sand) !important;
  padding: 9px 20px !important;
  margin-left: 8px;
  border-radius: 3px;
  border-bottom: none !important;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.4;
  transition: background 0.2s;
}
.nav-cta:hover { background: #3D4247; border-bottom: none !important; }

/* Mobile menu toggle button */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  width: 32px;
  height: 32px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  margin-bottom: 5px;
  transition: transform 0.25s, opacity 0.25s;
}
.nav-toggle span:last-child { margin-bottom: 0; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); margin-bottom: 0; }

/* Mobile dropdown panel */
.nav-mobile-panel {
  display: none;
  flex-direction: column;
  background: var(--paper);
  border-top: 1px solid var(--border-soft);
  padding: 8px 32px 20px;
}
.nav-mobile-panel.open { display: flex; }
.nav-mobile-panel a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  padding: 14px 0;
  border-bottom: 1px solid var(--border-soft);
}
.nav-mobile-panel a:last-child { border-bottom: none; }
.nav-mobile-panel a.active { color: var(--sage-brown); }
.nav-mobile-panel .nav-cta {
  margin: 14px 0 0;
  text-align: center;
  display: block;
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
}

/* ───────────── HERO ───────────── */
.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 32px 80px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(35,38,41,0.62) 0%, rgba(35,38,41,0.86) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--sage-green);
  margin-bottom: 18px;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 54px;
  font-weight: 700;
  color: var(--sand);
  line-height: 1.2;
  margin-bottom: 22px;
}
.hero-rule {
  width: 50px;
  height: 2px;
  background: var(--sage-green);
  margin: 22px auto;
}
.hero-sub {
  font-size: 16px;
  font-weight: 400;
  color: #D8D4C4;
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ───────────── BUTTONS ───────────── */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--sage-green);
  color: var(--charcoal);
}
.btn-primary:hover { background: #97a075; }
.btn-outline {
  background: transparent;
  color: var(--sand);
  border: 1.5px solid var(--sand);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); }
.btn-dark {
  background: var(--charcoal);
  color: var(--sand);
}
.btn-dark:hover { background: #34383c; }
.btn-sage-outline {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--sage-green);
}
.btn-sage-outline:hover { background: var(--sage-green); color: var(--charcoal); }

/* ───────────── SECTIONS ───────────── */
.section {
  padding: 96px 32px;
}
.section-tight { padding: 64px 32px; }
.section-sand { background: var(--sand); }
.section-charcoal { background: var(--charcoal); color: var(--sand); }
.section-border-top { border-top: 1px solid var(--border-soft); }
.section-border-bottom { border-bottom: 1px solid var(--border-soft); }

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage-brown);
  margin-bottom: 14px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.3;
  margin-bottom: 16px;
}
.section-title.light { color: var(--sand); }
.section-sub {
  font-size: 15px;
  font-style: italic;
  color: var(--text-mid);
  line-height: 1.8;
}
.section-sub.light { color: #C8C4B4; }

/* ───────────── SCRIPTURE BLOCK ───────────── */
.scripture-block {
  text-align: center;
  padding: 40px 48px;
  margin: 32px auto;
  background: var(--charcoal);
  border-radius: 4px;
  max-width: 680px;
}
.scripture-text {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-style: italic;
  font-weight: 500;
  line-height: 2;
  color: var(--sand);
}
.scripture-ref {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sky-blue);
  margin-top: 16px;
}

/* ───────────── PULL QUOTE ───────────── */
.pull-quote {
  border-left: 3px solid var(--sage-green);
  padding: 14px 26px;
  margin: 32px 0;
}
.pull-quote p {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.6;
  color: var(--charcoal);
}

/* ───────────── CARDS ───────────── */
.cards-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.cards-grid .card {
  flex: 1 1 240px;
}
.card {
  background: var(--paper);
  border: 1px solid var(--border-soft);
  border-radius: 4px;
  padding: 32px 28px;
  border-top: 3px solid var(--sage-green);
}
.card:nth-child(2) { border-top-color: var(--sky-blue); }
.card:nth-child(3) { border-top-color: var(--sage-brown); }
.card:nth-child(4) { border-top-color: var(--charcoal); }
.card-icon {
  font-size: 24px;
  margin-bottom: 16px;
  color: var(--sage-green);
}
.card-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 12px;
}
.card p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.75;
}

/* ───────────── TIMELINE / PHASES ───────────── */
.phase-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.phase-item {
  display: flex;
  gap: 32px;
  padding: 36px 0;
  border-bottom: 1px solid var(--border-soft);
}
.phase-item > div:first-child { flex: 0 0 140px; }
.phase-item > div:last-child { flex: 1 1 auto; }
.phase-item:last-child { border-bottom: none; }
.phase-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-brown);
}
.phase-tag.active { color: var(--sky-blue); }
.phase-tag.done { color: var(--sage-green); }
.phase-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.phase-desc {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 560px;
}
.phase-status {
  display: inline-block;
  margin-top: 12px;
  padding: 4px 12px;
  border-radius: 2px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.phase-status.complete { background: #E8EBE0; color: #5C6347; }
.phase-status.progress { background: #E3EAEF; color: #3D5A70; }
.phase-status.upcoming { background: #EFEBE2; color: var(--sage-brown); }

@media (max-width: 680px) {
  .phase-item { flex-direction: column; gap: 8px; }
}

/* ───────────── IMAGE BLOCKS ───────────── */
.img-full {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}
.img-wrap { position: relative; overflow: hidden; }
.img-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px 40px 24px;
  background: linear-gradient(to top, rgba(35,38,41,0.8) 0%, transparent 100%);
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-style: italic;
  color: var(--sand);
}
.two-col-img {
  display: flex;
  gap: 2px;
}
.two-col-img img { width: 50%; height: 320px; object-fit: cover; }

/* ───────────── FORMS ───────────── */
.form-box {
  background: var(--paper);
  border: 1px solid var(--border-soft);
  border-radius: 6px;
  padding: 40px;
  max-width: 480px;
  margin: 0 auto;
}
.form-box.dark {
  background: var(--charcoal);
  border-color: #3A3E42;
}
.form-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 8px;
}
.form-box.dark .form-label { color: #B8B4A4; }
.form-input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border-soft);
  border-radius: 3px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  background: white;
  margin-bottom: 20px;
  color: var(--text-dark);
}
.form-input:focus { outline: 2px solid var(--sage-green); border-color: var(--sage-green); }
.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--charcoal);
  color: var(--sand);
  border: none;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}
.form-submit:hover { background: #34383c; }
.form-note {
  font-size: 12px;
  color: var(--text-mid);
  margin-top: 14px;
  text-align: center;
  line-height: 1.6;
}
.form-box.dark .form-note { color: #9A9688; }

/* ───────────── FOOTER ───────────── */
.footer {
  background: var(--charcoal);
  padding: 64px 32px 32px;
}
.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand { flex: 2 1 280px; display: flex; flex-direction: column; gap: 14px; }
.footer-col { flex: 1 1 160px; }
.footer-logo { width: 48px; height: 48px; object-fit: contain; }
.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--sand);
}
.footer-tagline {
  font-size: 13px;
  color: #A6A290;
  font-style: italic;
  max-width: 280px;
  line-height: 1.6;
}
.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-green);
  margin-bottom: 16px;
}
.footer-col a, .footer-col p {
  display: block;
  font-size: 13px;
  color: #C8C4B4;
  margin-bottom: 10px;
}
.footer-col a:hover { color: var(--sand); }
.footer-bottom {
  max-width: 1140px;
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid #383C40;
  text-align: center;
}
.footer-bottom p {
  font-size: 12px;
  color: #8A8678;
  letter-spacing: 0.04em;
}

@media (max-width: 760px) {
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-title { font-size: 38px; }
  .section-title { font-size: 28px; }
  .two-col-img { grid-template-columns: 1fr; }
}

/* ───────────── MISC ───────────── */
.fragments p {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-style: italic;
  line-height: 2.2;
  color: var(--sage-brown);
  padding-left: 4px;
}
.body-text {
  font-size: 15px;
  line-height: 1.95;
  color: var(--text-dark);
  margin-bottom: 18px;
}
.center { text-align: center; }
.mb-sm { margin-bottom: 16px; }
.mb-md { margin-bottom: 32px; }
.mb-lg { margin-bottom: 56px; }

.badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 2px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--sage-green);
  color: var(--charcoal);
  margin-bottom: 16px;
}

.impact-stat {
  text-align: center;
}
.impact-stat .num {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--sage-green);
  line-height: 1;
  margin-bottom: 8px;
}
.impact-stat .label {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #B8B4A4;
}


/* ───────────── MOTION & POLISH ───────────── */
.btn { transition: all 0.2s, transform 0.25s ease, box-shadow 0.25s ease; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(35,38,41,0.16); }
.card { transition: transform 0.25s ease, box-shadow 0.25s ease; }
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(35,38,41,0.09); }

.hero { position: relative; }
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: inherit;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

@media (prefers-reduced-motion: no-preference) {
  .hero::before { animation: heroDrift 18s ease-out forwards; }
  @keyframes heroDrift { from { transform: scale(1); } to { transform: scale(1.06); } }

  .hero-content > * { opacity: 0; animation: fadeUp 0.9s ease forwards; }
  .hero-content > *:nth-child(1) { animation-delay: 0.15s; }
  .hero-content > *:nth-child(2) { animation-delay: 0.3s; }
  .hero-content > *:nth-child(3) { animation-delay: 0.45s; }
  .hero-content > *:nth-child(4) { animation-delay: 0.6s; }
  .hero-content > *:nth-child(5) { animation-delay: 0.75s; }
  @keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

  .reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.8s ease, transform 0.8s ease; }
  .reveal.in { opacity: 1; transform: none; }
}

/* ───────────── PROGRESS TIMELINE ───────────── */
.phase-list { position: relative; padding-left: 30px; }
.phase-list::before {
  content: "";
  position: absolute; left: 5px; top: 40px; bottom: 40px;
  width: 2px; background: var(--border-soft);
}
.phase-item { position: relative; }
.phase-item::before {
  content: "";
  position: absolute; left: -30px; top: 44px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--paper); border: 2px solid var(--sage-brown);
}
.phase-item:has(.phase-status.complete)::before { background: var(--sage-green); border-color: var(--sage-green); }
.phase-item:has(.phase-status.progress)::before { background: var(--sky-blue); border-color: var(--sky-blue); }
@media (prefers-reduced-motion: no-preference) {
  .phase-item:has(.phase-status.progress)::before { animation: pulse 2.4s ease-in-out infinite; }
  @keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(127,157,184,0.45); }
    50% { box-shadow: 0 0 0 9px rgba(127,157,184,0); }
  }
}

/* ───────────── STORY DROP CAPS ───────────── */
.dropcap::first-letter {
  font-family: 'Playfair Display', serif;
  font-size: 3.1em;
  float: left;
  line-height: 0.85;
  padding: 4px 10px 0 0;
  color: var(--sage-brown);
}

/* ───────────── MISSION BAND ───────────── */
.mission-band { position: relative; overflow: hidden; }
.mission-band img { width: 100%; height: 520px; object-fit: cover; object-position: center 30%; display: block; }
.mission-band-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(35,38,41,0.35) 0%, rgba(35,38,41,0.72) 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 40px 32px;
}
.mission-band-overlay .eyebrow { color: var(--sage-green); }
.mission-band-quote {
  font-family: 'Playfair Display', serif;
  font-size: 30px; font-style: italic; font-weight: 500;
  color: var(--sand); line-height: 1.5; max-width: 640px;
  text-shadow: 0 1px 10px rgba(0,0,0,0.4);
}
@media (max-width: 680px) { .mission-band-quote { font-size: 22px; } .mission-band img { height: 440px; } }

/* ───────────── LARGER HERO & NAV POLISH ───────────── */
.hero { min-height: 92vh; } /* subpage heroes keep their inline heights */
.hero-title { font-size: 62px; }
@media (max-width: 760px) { .hero-title { font-size: 40px; } }

.nav-inner { padding: 20px 32px; }
.nav-logo img { width: 42px; height: 42px; }
.nav-logo span { font-size: 17px; }
.nav-links { gap: 34px; }
.nav-links a {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 0;
}

.hero-scroll {
  position: absolute;
  bottom: 34px; left: 50%;
  width: 22px; height: 22px;
  margin-left: -11px;
  border-right: 2px solid rgba(244,241,232,0.85);
  border-bottom: 2px solid rgba(244,241,232,0.85);
  transform: rotate(45deg);
  z-index: 2;
}
@media (prefers-reduced-motion: no-preference) {
  .hero-scroll { animation: scrollBounce 2.2s ease-in-out infinite; }
  @keyframes scrollBounce {
    0%, 100% { transform: rotate(45deg) translate(0, 0); opacity: 0.85; }
    50% { transform: rotate(45deg) translate(6px, 6px); opacity: 0.4; }
  }
}
