/* =====================================================
   Impact — Faith-Driven Entrepreneurship
   Design language: elegant serif display, warm cream,
   deep brand green, amber-gold accents, arch motif.
   ===================================================== */

:root {
  /* Brand */
  --green-deep: #143726;
  --green-dark: #226644;
  --green: #2a7a54;
  --sage: #dde9dd;
  --sage-soft: #e7efe5;
  --amber: #c17a2b;
  --amber-soft: #e9b872;

  /* Neutrals */
  --cream: #e8dcc2;
  --paper: #faf6ec;
  --ink: #17201b;
  --ink-soft: #4a544e;
  --ink-faint: #79837c;
  --line: #d2c4a2;

  /* Type */
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius: 20px;
  --radius-sm: 12px;
  --shadow-soft: 0 2px 20px rgba(23, 32, 27, 0.06);
  --shadow-lift: 0 20px 50px rgba(23, 32, 27, 0.12);
}

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

html {
  scroll-behavior: smooth;
  /* Firefox scrollbar */
  scrollbar-color: #c17a2b #ede3cc;
}

/* Golden scrollbar (Chrome/Safari/Edge) */
::-webkit-scrollbar { width: 13px; }

::-webkit-scrollbar-track { background: #ede3cc; }

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #e9b872 0%, #c17a2b 60%, #ad6c24 100%);
  border-radius: 999px;
  border: 3px solid #ede3cc;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #f2cd8b 0%, #c98a2f 60%, #ad6c24 100%);
}

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 1.0625rem;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-narrow {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* =========== Header =========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(232, 220, 194, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(210, 196, 162, 0.7);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0.85rem 1.5rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo img { width: 46px; height: 46px; object-fit: contain; }

.nav-logo .wordmark {
  font-family: "Montserrat", var(--sans);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #226644;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover { color: var(--green-dark); background: var(--sage-soft); }

.nav-links a.active { color: var(--green-deep); font-weight: 600; }

.nav-links a.nav-cta {
  background: var(--green-deep);
  color: var(--cream);
  font-weight: 600;
  margin-left: 0.75rem;
  padding: 0.6rem 1.3rem;
}

.nav-links a.nav-cta:hover { background: var(--green-dark); color: #fff; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--green-deep);
  padding: 0.4rem;
}

.nav-toggle svg { width: 26px; height: 26px; }

@media (max-width: 880px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    padding: 0.75rem 1.25rem 1.25rem;
    gap: 0.15rem;
    box-shadow: var(--shadow-lift);
  }
  .nav-links.open { display: flex; }
  .nav-links a { display: block; padding: 0.8rem 1rem; }
  .nav-links a.nav-cta { margin-left: 0; text-align: center; margin-top: 0.5rem; }
}

/* =========== Type helpers =========== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.1rem;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 1.5px;
  background: var(--amber);
  opacity: 0.7;
}

.eyebrow.centered { justify-content: center; }
.eyebrow.centered::after {
  content: "";
  width: 26px;
  height: 1.5px;
  background: var(--amber);
  opacity: 0.7;
}

h1, h2, h3 { line-height: 1.12; }

.display {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.01em;
}

.section-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 4.4vw, 3.1rem);
  color: var(--green-deep);
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.section-lead {
  color: var(--ink-soft);
  max-width: 40rem;
  font-size: 1.1rem;
}

section { padding: 6.5rem 0; position: relative; }

.section-head { margin-bottom: 3.25rem; }
.section-head.centered { text-align: center; }
.section-head.centered .section-lead { margin-left: auto; margin-right: auto; }

/* On dark sections */
.on-dark .section-title { color: var(--cream); }
.on-dark .section-lead { color: rgba(250, 248, 243, 0.72); }
.on-dark .eyebrow { color: var(--amber-soft); }
.on-dark .eyebrow::before, .on-dark .eyebrow.centered::after { background: var(--amber-soft); }

/* =========== Buttons =========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.98rem;
  border-radius: 999px;
  padding: 0.95rem 1.9rem;
  cursor: pointer;
  border: none;
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s, color 0.25s;
}

.btn-primary {
  background: var(--green-deep);
  color: var(--cream);
}

.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(20, 55, 38, 0.28);
}

.btn-gold {
  background: var(--amber);
  color: #fff;
}

.btn-gold:hover {
  background: #ad6c24;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(193, 122, 43, 0.32);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid rgba(20, 55, 38, 0.35);
  color: var(--green-deep);
}

.btn-outline:hover { border-color: var(--green-deep); background: rgba(20, 55, 38, 0.05); }

.on-dark .btn-outline {
  border-color: rgba(250, 248, 243, 0.4);
  color: var(--cream);
}

.on-dark .btn-outline:hover { border-color: var(--cream); background: rgba(250, 248, 243, 0.08); }

.btn-block { width: 100%; }

.btn:active { transform: translateY(0) scale(0.97); }

/* Big stats & year cards (pitch deck) */
.big-stat, .year-card { transition: transform 0.3s, box-shadow 0.3s; }
.big-stat:hover, .year-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }

/* =========== Arch motif =========== */
.arch-motif {
  position: absolute;
  pointer-events: none;
  opacity: 0.5;
}

/* =========== Hero =========== */
.hero {
  padding: 6.5rem 0 0;
  overflow: hidden;
  position: relative;
}

/* Dramatic illumination washing over the whole first screen */
.hero::before {
  content: "";
  position: absolute;
  inset: -10% 0 0 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 130% 95% at 50% 100%,
      rgba(255, 254, 245, 1) 0%,
      rgba(255, 247, 214, 0.95) 24%,
      rgba(251, 233, 178, 0.6) 48%,
      rgba(244, 221, 158, 0.2) 70%,
      rgba(244, 221, 158, 0) 86%);
  opacity: 0;
  animation:
    glowIn 2.2s ease 0.5s forwards,
    heroGlowPulse 8s ease-in-out 3.5s infinite;
}

/* Vignette — deep green shadow at the edges makes the light pop */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 150% 105% at 50% 100%,
      rgba(20, 55, 38, 0) 52%,
      rgba(20, 55, 38, 0.14) 76%,
      rgba(20, 55, 38, 0.38) 100%),
    linear-gradient(to bottom,
      rgba(20, 55, 38, 0.16) 0%,
      rgba(20, 55, 38, 0) 30%);
}

@keyframes heroGlowPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.78; transform: scale(1.05); }
}

/* God rays — beams of light fanning out from behind the arches */
.god-rays {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 3200px;
  height: 3200px;
  z-index: 0;
  pointer-events: none;
  /* Soft, luminous gold — the glory of God — melting into white light.
     Center is faded out so the rays have no visible starting tip. */
  background: radial-gradient(circle at 50% 50%,
    rgba(232, 196, 120, 0) 0%,
    rgba(232, 196, 120, 0) 5%,
    rgba(232, 196, 120, 0.55) 9%,
    rgba(236, 204, 134, 0.78) 13%,
    rgba(240, 212, 148, 0.72) 18%,
    rgba(248, 228, 178, 0.6) 28%,
    rgba(253, 243, 210, 0.48) 38%,
    rgba(255, 253, 244, 0.35) 48%,
    rgba(255, 255, 255, 0) 57%);
  -webkit-mask-image: repeating-conic-gradient(from 0deg at 50% 50%,
    rgba(0, 0, 0, 0) 0deg,
    rgba(0, 0, 0, 0.25) 3deg,
    rgba(0, 0, 0, 0.9) 7deg,
    rgba(0, 0, 0, 0.9) 14deg,
    rgba(0, 0, 0, 0.25) 18deg,
    rgba(0, 0, 0, 0) 21deg,
    rgba(0, 0, 0, 0.5) 26deg,
    rgba(0, 0, 0, 0.5) 30deg,
    rgba(0, 0, 0, 0) 34deg,
    rgba(0, 0, 0, 0) 36deg);
  mask-image: repeating-conic-gradient(from 0deg at 50% 50%,
    rgba(0, 0, 0, 0) 0deg,
    rgba(0, 0, 0, 0.25) 3deg,
    rgba(0, 0, 0, 0.9) 7deg,
    rgba(0, 0, 0, 0.9) 14deg,
    rgba(0, 0, 0, 0.25) 18deg,
    rgba(0, 0, 0, 0) 21deg,
    rgba(0, 0, 0, 0.5) 26deg,
    rgba(0, 0, 0, 0.5) 30deg,
    rgba(0, 0, 0, 0) 34deg,
    rgba(0, 0, 0, 0) 36deg);
  filter: blur(10px);
  opacity: 0;
  animation:
    raysIn 2.5s ease 1s forwards,
    raysSpin 90s linear 1s infinite;
}

@keyframes raysIn {
  to { opacity: 1; }
}

@keyframes raysSpin {
  from { transform: translate(-50%, 50%) rotate(0deg); }
  to { transform: translate(-50%, 50%) rotate(360deg); }
}

/* Keep the rays centered even before the animation starts */
.god-rays { transform: translate(-50%, 50%); }

.hero-inner, .hero-arches {
  position: relative;
  z-index: 1;
}

.hero-inner {
  position: relative;
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.6rem, 6.4vw, 4.6rem);
  color: var(--green-deep);
  letter-spacing: -0.015em;
  margin-bottom: 1.6rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--green);
}

.hero h1 .h1-line2 {
  font-family: var(--sans);
  font-style: normal;
  font-weight: 600;
  font-size: 0.34em;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--green);
  display: inline-block;
  margin-top: 1.1rem;
}

.hero h1 .h1-line2 em {
  font-style: normal;
  color: var(--amber);
}

.hero-sub {
  color: var(--ink-soft);
  font-size: 1.2rem;
  max-width: 34rem;
  margin: 0 auto 2.4rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.hero-mission {
  font-size: 0.92rem;
  color: var(--ink-faint);
  max-width: 34rem;
  margin: 0 auto;
}

.hero-mission strong { color: var(--amber); font-weight: 600; }

/* Hero eyebrow — gradient gold lettering with a glistening sheen */
.hero .eyebrow {
  background: linear-gradient(100deg,
    #c17a2b 0%,
    #c17a2b 38%,
    #e9b872 46%,
    #fdf3d3 50%,
    #e9b872 54%,
    #c17a2b 62%,
    #c17a2b 100%);
  background-size: 250% 100%;
  background-position: 130% center;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  /* Keep the entrance rise (overridden otherwise) alongside the sheen */
  animation:
    rise 0.9s cubic-bezier(0.2, 0.65, 0.3, 1) 0.1s forwards,
    glisten 4.5s ease-in-out 2s infinite;
}

@keyframes glisten {
  0% { background-position: 130% center; }
  45% { background-position: -30% center; }
  100% { background-position: -30% center; }
}

/* Hero entrance — staggered rise on page load */
@keyframes rise {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: none; }
}

.hero-inner > * {
  opacity: 0;
  animation: rise 0.9s cubic-bezier(0.2, 0.65, 0.3, 1) forwards;
}

.hero-inner > *:nth-child(1) { animation-delay: 0.1s; }
.hero-inner > *:nth-child(2) { animation-delay: 0.25s; }
.hero-inner > *:nth-child(3) { animation-delay: 0.45s; }
.hero-inner > *:nth-child(4) { animation-delay: 0.6s; }
.hero-inner > *:nth-child(5) { animation-delay: 0.75s; }

/* Hero arches — echo of the logo, drawn in on load then gently floating */
.hero-arches {
  display: block;
  width: min(640px, 86vw);
  margin: 3.5rem auto -2px;
  animation: archFloat 7s ease-in-out 2.6s infinite;
}

.hero-arches path {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: drawArch 1.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.hero-arches path:nth-child(1) { animation-delay: 0.5s; }
.hero-arches path:nth-child(2) { animation-delay: 0.75s; }
.hero-arches path:nth-child(3) { animation-delay: 1s; }
.hero-arches path:nth-child(4) { animation-delay: 1.25s; }

@keyframes drawArch {
  to { stroke-dashoffset: 0; }
}

@keyframes archFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Light glowing from behind the arches */
.arch-glow {
  opacity: 0;
  animation:
    glowIn 1.8s ease 0.7s forwards,
    glowPulse 6s ease-in-out 3.2s infinite;
}

@keyframes glowIn {
  to { opacity: 1; }
}

@keyframes glowPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.85; }
}

/* Stat band */
.stat-band {
  background: var(--green-deep);
  color: var(--cream);
  padding: 3.25rem 0;
}

.stat-band-label {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--amber-soft);
  margin-bottom: 2rem;
}

.stat-band .stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-band .stat-value {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 500;
  color: var(--amber-soft);
  line-height: 1.1;
}

.stat-band .stat-label {
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250, 248, 243, 0.65);
  margin-top: 0.5rem;
}

@media (max-width: 640px) {
  .stat-band .stats { grid-template-columns: 1fr; gap: 1.75rem; }
}

/* =========== Grids & cards =========== */
.grid {
  display: grid;
  gap: 1.5rem;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1000px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 2.1rem 1.9rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }

.card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.4rem;
  color: var(--green-deep);
  margin-bottom: 0.7rem;
}

.card p {
  font-size: 0.97rem;
  color: var(--ink-soft);
  flex-grow: 1;
}

.card .btn { margin-top: 1.5rem; }

.card-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--amber);
  margin-bottom: 1.1rem;
}

.card-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--sage);
  color: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.3rem;
  transition: background 0.35s, color 0.35s, transform 0.35s;
}

.card-icon svg { width: 22px; height: 22px; }

.card:hover .card-icon {
  background: var(--green-dark);
  color: var(--cream);
  transform: translateY(-4px) rotate(-4deg);
}

.card:hover .card-num { color: var(--green-dark); }
.card-num { transition: color 0.35s; }

/* Minimal (borderless) list items on sage sections */
.pillar-card {
  padding: 2rem 1.75rem;
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

/* =========== Dark journey section =========== */
.journey {
  background: var(--green-deep);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.journey-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(250, 248, 243, 0.14);
}

@media (max-width: 900px) {
  .journey-steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .journey-steps { grid-template-columns: 1fr; }
}

.journey-step {
  padding: 2.4rem 1.8rem 2.6rem;
  border-right: 1px solid rgba(250, 248, 243, 0.14);
  border-bottom: 1px solid rgba(250, 248, 243, 0.14);
  display: flex;
  flex-direction: column;
  transition: background 0.35s;
}

.journey-step:hover { background: rgba(250, 248, 243, 0.07); }

.journey-step .num { transition: color 0.35s, transform 0.35s; }

.journey-step:hover .num {
  color: #fff;
  transform: translateX(4px);
}

.journey-step:last-child { border-right: none; }

@media (max-width: 900px) {
  .journey-step:nth-child(2n) { border-right: none; }
}

@media (max-width: 560px) {
  .journey-step { border-right: none; }
}

.journey-step .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 2.6rem;
  color: var(--amber-soft);
  line-height: 1;
  margin-bottom: 1.2rem;
}

.journey-step h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.55rem;
  margin-bottom: 0.7rem;
}

.journey-step p {
  font-size: 0.95rem;
  color: rgba(250, 248, 243, 0.72);
  flex-grow: 1;
}

.journey-step a {
  margin-top: 1.6rem;
  font-weight: 600;
  font-size: 0.93rem;
  color: var(--amber-soft);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition: gap 0.25s, color 0.25s;
}

.journey-step a:hover { color: #fff; gap: 0.75rem; }

/* =========== Testimonials =========== */
.testimonial {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 2.3rem 2.1rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }

.testimonial blockquote::before { transition: transform 0.35s; display: inline-block; }
.testimonial:hover blockquote::before { transform: scale(1.25) rotate(-6deg); }

.testimonial blockquote {
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.55;
  flex-grow: 1;
}

.testimonial blockquote::before {
  content: "“";
  display: block;
  font-size: 3rem;
  line-height: 0.6;
  color: var(--amber-soft);
  margin-bottom: 0.9rem;
}

.testimonial footer { margin-top: 1.6rem; }

.testimonial .t-name { font-weight: 600; color: var(--green-deep); font-size: 0.98rem; }
.testimonial .t-role { font-size: 0.82rem; color: var(--amber); margin-top: 0.1rem; }
.testimonial .t-stat {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--green-dark);
  background: var(--sage);
  border-radius: 999px;
  padding: 0.3rem 0.85rem;
  margin-top: 0.8rem;
}

/* =========== Split / editorial =========== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 2.5rem; }
}

.photo-frame {
  position: relative;
  border-radius: 200px 200px var(--radius) var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
}

.photo-frame img {
  width: 100%;
  height: auto;
  transition: transform 0.6s cubic-bezier(0.2, 0.65, 0.3, 1);
}

.photo-frame:hover img { transform: scale(1.04); }

.prose p {
  color: var(--ink-soft);
  margin-bottom: 1.35rem;
  font-size: 1.05rem;
}

.prose p:last-child { margin-bottom: 0; }

.prose .lede {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--ink);
  line-height: 1.5;
}

/* =========== Verse =========== */
.verse {
  text-align: center;
  max-width: 44rem;
  margin: 0 auto;
}

.verse blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.45;
  margin-bottom: 1.5rem;
}

.verse cite {
  font-style: normal;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--amber-soft);
}

/* =========== Contact =========== */
.contact-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 2.5rem;
  align-items: start;
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.form-card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 2.4rem;
  box-shadow: var(--shadow-soft);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}

@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; }
}

.form-group { margin-bottom: 1.2rem; }

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  margin-bottom: 0.45rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1.05rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.98rem;
  background: var(--cream);
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(42, 122, 84, 0.12);
}

.form-group textarea { min-height: 130px; resize: vertical; }

.aside-card {
  background: var(--green-deep);
  color: var(--cream);
  border-radius: var(--radius);
  padding: 2.4rem;
}

.aside-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.6rem;
  margin-bottom: 0.9rem;
}

.aside-card p {
  font-size: 0.96rem;
  color: rgba(250, 248, 243, 0.75);
  margin-bottom: 1.6rem;
}

.aside-card .email-line {
  font-size: 0.85rem;
  color: rgba(250, 248, 243, 0.6);
  margin: 1.2rem 0 0;
}

.aside-card .email-line strong { color: var(--cream); font-weight: 600; }

/* =========== Footer =========== */
.site-footer {
  background: var(--green-deep);
  color: rgba(250, 248, 243, 0.7);
  padding: 3.5rem 0 2.5rem;
  margin-top: 0;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(250, 248, 243, 0.14);
  margin-bottom: 1.75rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.footer-brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  background: var(--cream);
  border-radius: 50%;
  padding: 4px;
}

.footer-brand .wordmark {
  font-family: "Montserrat", var(--sans);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  list-style: none;
  font-size: 0.92rem;
}

.footer-links a {
  position: relative;
  transition: color 0.25s;
}

.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background: var(--amber-soft);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.footer-links a:hover { color: var(--cream); }
.footer-links a:hover::after { transform: scaleX(1); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(250, 248, 243, 0.5);
}

/* =========== Page hero (interior) =========== */
.page-hero {
  padding: 5.5rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  color: var(--green-deep);
  letter-spacing: -0.015em;
  margin-bottom: 1.1rem;
}

.page-hero p {
  color: var(--ink-soft);
  font-size: 1.15rem;
  max-width: 38rem;
  margin: 0 auto;
}

/* =========== Membership =========== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 430px; margin: 0 auto; }
}

.price-card {
  position: relative;
  background: var(--paper);
  border-radius: var(--radius);
  padding: 2.5rem 2rem 2.2rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }

.price-card.popular {
  background: var(--green-deep);
  color: var(--cream);
  box-shadow: var(--shadow-lift);
}

.popular-badge {
  position: absolute;
  top: -0.9rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amber);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.4rem 1.1rem;
  border-radius: 999px;
  white-space: nowrap;
}

.price-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.35rem;
  color: var(--green-deep);
  margin-bottom: 0.9rem;
}

.price-card.popular h3 { color: var(--cream); }

.price {
  font-family: var(--serif);
  font-size: 2.9rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
}

.price-card.popular .price { color: var(--cream); }

.price .period {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--ink-faint);
}

.price-card.popular .period { color: rgba(250, 248, 243, 0.6); }

.savings {
  display: inline-block;
  margin: 0.8rem auto 0;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--amber);
  background: rgba(193, 122, 43, 0.12);
  border-radius: 999px;
  padding: 0.28rem 0.9rem;
}

.price-card.popular .savings {
  color: var(--amber-soft);
  background: rgba(233, 184, 114, 0.15);
}

.price-desc {
  font-size: 0.93rem;
  color: var(--ink-soft);
  margin: 1.3rem 0 1.7rem;
  flex-grow: 1;
}

.price-card.popular .price-desc { color: rgba(250, 248, 243, 0.75); }

.features-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem 2.5rem;
  max-width: 54rem;
}

@media (max-width: 700px) {
  .features-list { grid-template-columns: 1fr; }
}

.features-list li {
  position: relative;
  padding-left: 1.9rem;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.features-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--amber);
  font-weight: 700;
}

.numbered-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 800px) {
  .numbered-steps { grid-template-columns: 1fr; max-width: 440px; }
}

.numbered-step {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 2.1rem 1.9rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s, box-shadow 0.3s;
}

.numbered-step:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }

.numbered-step .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 2.4rem;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 1.1rem;
}

.numbered-step h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.35rem;
  color: var(--green-deep);
  margin-bottom: 0.55rem;
}

.numbered-step p { color: var(--ink-soft); font-size: 0.96rem; }

.callout {
  background: var(--sage);
  border-radius: var(--radius);
  padding: 2.5rem;
}

.callout h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.55rem;
  color: var(--green-deep);
  margin-bottom: 0.9rem;
}

.callout p { color: var(--ink-soft); margin-bottom: 1rem; font-size: 0.99rem; }
.callout p:last-child { margin-bottom: 0; }

/* =========== Pitch deck =========== */
.deck-toolbar {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 1.75rem;
}

.slide {
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 3.5rem;
  margin-bottom: 2rem;
}

@media (max-width: 640px) {
  .slide { padding: 2rem 1.5rem; }
}

.slide h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 2.2rem;
  color: var(--green-deep);
  margin-bottom: 1.9rem;
}

.slide-cover {
  text-align: center;
  padding: 5.5rem 3rem;
  background: var(--green-deep);
  color: var(--cream);
}

.slide-cover img {
  width: 170px;
  height: 170px;
  object-fit: contain;
  margin: 0 auto 2.2rem;
  background: var(--cream);
  border-radius: 50%;
  padding: 18px;
}

.slide-cover .cover-line1 {
  font-family: var(--serif);
  font-size: 2rem;
  margin-bottom: 0.8rem;
}

.slide-cover .cover-line2 {
  font-size: 1.1rem;
  color: rgba(250, 248, 243, 0.72);
  max-width: 30rem;
  margin: 0 auto;
}

.mission-quote {
  font-family: var(--serif);
  background: var(--sage);
  padding: 2.3rem;
  border-radius: var(--radius);
  font-size: 1.45rem;
  color: var(--ink);
  line-height: 1.5;
  margin-bottom: 2.2rem;
}

.pillar-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}

@media (max-width: 640px) {
  .pillar-row { grid-template-columns: repeat(2, 1fr); }
}

.pillar-row .pillar {
  padding: 1.1rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.pillar svg {
  width: 2.6rem;
  height: 2.6rem;
  color: var(--green-dark);
  margin: 0 auto 0.7rem;
  display: block;
}

.bullet-list { list-style: none; display: grid; gap: 0.85rem; }

.bullet-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.95rem;
  padding: 1.15rem 1.3rem;
  background: var(--cream);
  border-radius: var(--radius-sm);
  color: var(--ink-soft);
  font-weight: 500;
  font-size: 0.99rem;
}

.bullet-list .li-dot {
  width: 2.3rem;
  height: 2.3rem;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--sage);
  color: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.big-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.1rem;
}

@media (max-width: 640px) {
  .big-stats { grid-template-columns: 1fr; }
}

.big-stat {
  padding: 1.9rem;
  border-radius: var(--radius);
  background: var(--sage);
}

.big-stat .n {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--green-deep);
  line-height: 1.1;
}

.big-stat .l { color: var(--ink-soft); font-weight: 600; font-size: 0.94rem; margin-top: 0.3rem; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.2rem;
}

@media (max-width: 800px) {
  .two-col { grid-template-columns: 1fr; }
}

.subhead {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--green-deep);
  margin-bottom: 1.1rem;
}

.year-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.2rem;
}

@media (max-width: 700px) {
  .year-row { grid-template-columns: 1fr; }
}

.year-card {
  text-align: center;
  padding: 1.9rem 1rem;
  border-radius: var(--radius);
  background: var(--cream);
}

.year-card .y {
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.year-card .amt {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--green-deep);
  margin-bottom: 0.3rem;
  line-height: 1.1;
}

.year-card .desc { font-size: 0.87rem; color: var(--ink-soft); }

.funds-bars { display: grid; gap: 1rem; }

.fund-row .fund-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin-bottom: 0.4rem;
  font-weight: 500;
}

.fund-bar {
  height: 9px;
  border-radius: 999px;
  background: var(--sage);
  overflow: hidden;
}

.fund-bar span {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(to right, var(--green-dark), var(--green));
}

.ask-amount {
  font-family: var(--serif);
  font-size: 3.4rem;
  font-weight: 500;
  color: var(--green-deep);
  margin-bottom: 1.6rem;
  line-height: 1;
}

.team-card {
  display: flex;
  gap: 1.75rem;
  align-items: flex-start;
  background: var(--cream);
  border-radius: var(--radius);
  padding: 2.2rem;
  max-width: 46rem;
  margin: 0 auto;
}

@media (max-width: 640px) {
  .team-card { flex-direction: column; align-items: center; text-align: center; }
}

.team-card img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
}

.team-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.6rem;
  color: var(--green-deep);
  margin-bottom: 0.25rem;
}

.team-card .role { color: var(--amber); font-weight: 500; margin-bottom: 0.9rem; }
.team-card .bio { color: var(--ink-soft); font-size: 0.97rem; }

.deck-contact { text-align: center; padding: 4.5rem 2rem; }

.deck-contact img {
  width: 110px;
  height: 110px;
  object-fit: contain;
  margin: 0 auto 1.6rem;
}

.deck-contact .contact-name {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--green-deep);
  margin-top: 1.8rem;
}

.deck-contact a { color: var(--green-dark); font-weight: 500; display: inline-block; margin-top: 0.45rem; }
.deck-contact a:hover { text-decoration: underline; }

/* =========== Section tints =========== */
.tint-sage { background: var(--sage-soft); }
.tint-paper { background: var(--paper); }

/* =========== Scholarship spotlight =========== */
.scholarship-band {
  background: linear-gradient(135deg, #f6e7c5 0%, #f1dcae 50%, #eed3a0 100%);
  padding: 5.5rem 0;
}

.scholarship-card {
  text-align: center;
  max-width: 46rem;
  margin: 0 auto;
}

.scholarship-card .section-title { color: var(--green-deep); }

.scholarship-card .section-lead { color: #5c5442; }

.scholarship-icon {
  width: 56px;
  height: 56px;
  color: var(--amber);
  margin: 0 auto 1.25rem;
  display: block;
}

.scholarship-band .btn-outline {
  border-color: rgba(20, 55, 38, 0.4);
}

/* =========== Reveal animations =========== */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.65, 0.3, 1), transform 0.8s cubic-bezier(0.2, 0.65, 0.3, 1);
}

.reveal.visible { opacity: 1; transform: none; }

.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-inner > * { opacity: 1; animation: none; }
  .hero-arches { animation: none; }
  .hero-arches path { stroke-dashoffset: 0; animation: none; }
  .arch-glow { opacity: 1; animation: none; }
  .hero::before { opacity: 1; animation: none; }
  .god-rays { opacity: 1; animation: none; }
  .hero .eyebrow { animation: none; background-position: 50% center; }
  html { scroll-behavior: auto; }
}

/* =========== Print (pitch deck) =========== */
@media print {
  .site-header, .site-footer, .deck-toolbar { display: none; }
  body { background: #fff; }
  .slide { page-break-after: always; box-shadow: none; margin: 0; border-radius: 0; }
  section { padding: 0; }
}
