:root {
  --emerald-950: #042a24;
  --emerald-900: #063f35;
  --emerald-800: #075447;
  --gold: #c99a3d;
  --gold-light: #edcf88;
  --cream: #fbf5e9;
  --ivory: #fffdf8;
  --ink: #10241f;
  --muted: #5d6864;
  --border: rgba(151, 111, 36, .25);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "DM Sans", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--ivory); font-family: var(--sans); font-size: 16px; line-height: 1.65; }
img { display: block; width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 1000; background: white; padding: .75rem 1rem; }
.skip-link:focus { top: 1rem; }

.site-header { position: fixed; inset: 0 0 auto; z-index: 100; background: rgba(4,42,36,.9); color: white; border-bottom: 1px solid rgba(237,207,136,.22); backdrop-filter: blur(18px); }
.nav-wrap { max-width: 1240px; min-height: 78px; padding: 0 2rem; margin: auto; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: .7rem; text-decoration: none; }
.brand-mark { display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid var(--gold-light); border-radius: 50%; color: var(--gold-light); font-size: 1.4rem; }
.brand b { display: block; font: 700 1.65rem/1 var(--serif); letter-spacing: .16em; color: var(--gold-light); }
.brand small { display: block; font-size: .58rem; letter-spacing: .24em; margin-top: .35rem; }
nav { display: flex; align-items: center; gap: 1.7rem; }
nav a { font-size: .9rem; font-weight: 600; text-decoration: none; }
nav a[aria-current="page"] { color: var(--gold-light); }
.nav-cta { color: var(--emerald-950); background: var(--gold-light); padding: .68rem 1.05rem; border-radius: 999px; }
.nav-toggle { display: none; border: 1px solid rgba(255,255,255,.35); border-radius: 999px; color: white; background: transparent; padding: .55rem .9rem; font: 600 .9rem var(--sans); }

.hero { min-height: 100svh; padding: 8.4rem max(2rem, calc((100vw - 1240px)/2)) 4rem; display: grid; grid-template-columns: .93fr 1.07fr; align-items: center; gap: clamp(2.5rem, 6vw, 7rem); color: white; overflow: hidden; position: relative; background: radial-gradient(circle at 75% 25%, rgba(201,154,61,.2), transparent 30%), linear-gradient(125deg, #031f1b 0%, #063f35 58%, #075447 100%); }
.hero::after { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .18; background-image: linear-gradient(90deg, transparent 49.5%, rgba(237,207,136,.25) 50%, transparent 50.5%); background-size: 84px 100%; }
.hero-copy, .hero-art { position: relative; z-index: 1; }
.eyebrow { margin: 0 0 1rem; color: var(--gold-light); font-size: .75rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; }
h1, h2, h3 { font-family: var(--serif); margin: 0; line-height: .96; }
h1 { font-size: clamp(3.3rem, 6vw, 6.8rem); font-weight: 600; letter-spacing: -.045em; }
h1 em { color: var(--gold-light); font-style: normal; }
.hero-text { max-width: 620px; margin: 1.7rem 0 0; color: rgba(255,255,255,.82); font-size: 1.07rem; }
.button-row { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.button { display: inline-flex; align-items: center; justify-content: space-between; gap: 1.2rem; min-height: 52px; padding: .78rem 1.2rem; border: 1px solid transparent; border-radius: 4px; text-decoration: none; font-weight: 700; transition: transform .2s ease, background .2s ease, color .2s ease; }
.button:hover { transform: translateY(-2px); }
.primary { background: var(--gold-light); color: var(--emerald-950); }
.secondary, .ghost { border-color: rgba(255,255,255,.45); color: white; }
.microcopy { margin-top: 1.2rem; color: rgba(255,255,255,.55); font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; }
.hero-art { max-width: 590px; justify-self: end; }
.hero-art img { aspect-ratio: 4/5; object-fit: cover; border-radius: 999px 999px 24px 24px; border: 1px solid rgba(237,207,136,.55); box-shadow: 0 40px 100px rgba(0,0,0,.38); }
.hero-badge { position: absolute; left: -2.5rem; bottom: 2rem; padding: 1rem 1.3rem; background: rgba(255,253,248,.94); color: var(--emerald-950); box-shadow: 0 20px 40px rgba(0,0,0,.25); }
.hero-badge strong, .hero-badge span { display: block; }
.hero-badge strong { font-family: var(--serif); font-size: 1.35rem; }
.hero-badge span { color: var(--muted); font-size: .8rem; }

.proof-strip { display: grid; grid-template-columns: repeat(4,1fr); background: var(--cream); border-bottom: 1px solid var(--border); }
.proof-strip div { padding: 2rem; text-align: center; border-right: 1px solid var(--border); }
.proof-strip div:last-child { border-right: 0; }
.proof-strip strong { display: block; color: var(--emerald-900); font: 700 clamp(1.8rem,3vw,2.8rem)/1 var(--serif); }
.proof-strip span { display: block; margin-top: .5rem; color: var(--muted); font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; }

.section { max-width: 1240px; margin: auto; padding: clamp(5rem,9vw,9rem) 2rem; }
.section-heading { max-width: 760px; margin-bottom: 3rem; }
h2 { font-size: clamp(2.8rem,5vw,5.4rem); font-weight: 600; letter-spacing: -.04em; }
.section-heading > p:last-child, .building-copy > p, .network-copy > p, .partner-intro > p { color: var(--muted); font-size: 1.05rem; max-width: 680px; }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.feature-card { position: relative; min-height: 660px; overflow: hidden; background: var(--emerald-950); color: white; }
.feature-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.8,.2,1); }
.feature-card:hover img { transform: scale(1.025); }
.feature-card::after { content: ""; position: absolute; inset: 40% 0 0; background: linear-gradient(transparent, rgba(3,31,27,.96)); }
.feature-copy { position: absolute; z-index: 1; inset: auto 2rem 2rem; }
.feature-copy span { color: var(--gold-light); text-transform: uppercase; letter-spacing: .18em; font-size: .72rem; }
.feature-copy h3 { margin-top: .7rem; font-size: clamp(2.1rem,3.4vw,3.5rem); }
.feature-copy p { max-width: 520px; color: rgba(255,255,255,.78); }

.building { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(3rem,7vw,7rem); align-items: center; }
.building-image img { aspect-ratio: 4/5; object-fit: cover; box-shadow: 0 30px 70px rgba(4,42,36,.16); }
.pillar-list { margin-top: 2rem; border-top: 1px solid var(--border); }
.pillar-list div { display: grid; grid-template-columns: 48px 1fr; gap: 1rem; align-items: start; padding: 1.1rem 0; border-bottom: 1px solid var(--border); }
.pillar-list span { color: var(--gold); font: 600 1rem var(--serif); }
.pillar-list p { margin: 0; color: var(--muted); }
.pillar-list strong { display: block; color: var(--ink); font-family: var(--serif); font-size: 1.25rem; }

.network-section { display: grid; grid-template-columns: 1.12fr .88fr; min-height: 700px; background: var(--emerald-950); color: white; }
.network-visual img { height: 100%; object-fit: cover; }
.network-copy { padding: clamp(4rem,8vw,8rem); align-self: center; }
.network-copy > p { color: rgba(255,255,255,.72); }
blockquote { margin: 2rem 0 0; padding: 1.6rem 0 0; border-top: 1px solid rgba(237,207,136,.35); color: var(--gold-light); font: italic 600 clamp(1.5rem,2.2vw,2.2rem)/1.25 var(--serif); }

.partner { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(3rem,8vw,8rem); align-items: start; }
.partner-actions { display: grid; gap: .7rem; margin-top: 2rem; }
.partner-actions div { display: grid; grid-template-columns: 105px 1fr; padding: 1rem 0; border-bottom: 1px solid var(--border); }
.partner-actions b { color: var(--emerald-900); font-family: var(--serif); font-size: 1.3rem; }
.partner-actions span { color: var(--muted); }
.form-card { position: sticky; top: 110px; padding: 2.2rem; color: white; background: linear-gradient(145deg, var(--emerald-900), var(--emerald-950)); box-shadow: 0 30px 70px rgba(4,42,36,.18); }
.form-top span { color: var(--gold-light); font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .2em; }
.form-top h3 { margin: .8rem 0; font-size: 2.7rem; }
.form-top p { color: rgba(255,255,255,.72); }
.wide { width: 100%; margin-top: 1rem; }
.form-note { margin: .8rem 0 0; text-align: center; color: rgba(255,255,255,.5); font-size: .75rem; }

.final-cta { padding: clamp(5rem,10vw,9rem) 2rem; text-align: center; color: white; background: linear-gradient(rgba(4,42,36,.78),rgba(4,42,36,.95)), url("assets/partnership.jpeg") center 33%/cover; }
.final-cta > div { max-width: 850px; margin: auto; }
.final-cta p:not(.eyebrow) { max-width: 630px; margin: 1.5rem auto 0; color: rgba(255,255,255,.78); }
.centered { justify-content: center; }
.gold { background: var(--gold-light); color: var(--emerald-950); }

.ministry-foundation { scroll-margin-top: 78px; background: var(--ivory); }
.foundation-intro { max-width: 1240px; margin: auto; padding: clamp(5rem,9vw,9rem) 2rem clamp(2.5rem,5vw,4rem); }
.foundation-intro h2 em { color: var(--gold); font-style: italic; }
.statement-card h2 em { color: var(--gold-light); font-style: italic; }
.foundation-intro > p:last-child { max-width: 760px; color: var(--muted); font-size: 1.08rem; }
.gather-scripture { max-width: 1240px; margin: auto; padding: clamp(2.5rem,5vw,4rem) 2rem clamp(5rem,9vw,8rem); display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2.5rem,7vw,7rem); align-items: start; }
.gather-scripture h2 { font-size: clamp(2.6rem,4.5vw,4.8rem); }
.gather-scripture > div > p:last-child { color: var(--muted); }
.gather-scripture blockquote { margin: 0; padding: 0 0 0 2rem; border-top: 0; border-left: 1px solid var(--border); color: var(--emerald-900); }
.gather-scripture cite { display: block; margin-top: 1rem; color: var(--muted); font: 600 .78rem var(--sans); letter-spacing: .12em; text-transform: uppercase; }
.vision-mission-section { padding: clamp(4.5rem,8vw,8rem) max(2rem, calc((100vw - 1240px)/2)); display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; color: white; background: var(--emerald-950); }
.statement-card { padding: clamp(2rem,4vw,4rem); border: 1px solid rgba(237,207,136,.25); background: linear-gradient(145deg,rgba(255,255,255,.07),rgba(255,255,255,.015)); }
.statement-card h2 { font-size: clamp(2.8rem,5vw,5rem); }
.statement-card > p:not(.eyebrow) { color: rgba(255,255,255,.74); }
.gather-verbs { margin-top: 2rem; }
.gather-verbs div { display: grid; grid-template-columns: 90px 1fr; gap: 1rem; padding: 1rem 0; border-top: 1px solid rgba(237,207,136,.22); }
.gather-verbs strong { color: var(--gold-light); font: 600 1.35rem var(--serif); }
.gather-verbs span { color: rgba(255,255,255,.72); }
.statement-card blockquote { color: var(--gold-light); }
.statement-card blockquote strong { color: white; }
.vision-lines { display: grid; gap: .65rem; margin-top: 1.7rem; }
.vision-lines span { padding-bottom: .65rem; border-bottom: 1px solid rgba(237,207,136,.22); color: var(--gold-light); font-weight: 700; }

footer { padding: 3rem 2rem; text-align: center; color: rgba(255,255,255,.68); background: #021915; }
.footer-brand b { display: block; color: var(--gold-light); font: 700 2.2rem var(--serif); letter-spacing: .18em; }
.footer-brand span, footer > p { font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; }
.copyright { margin-top: 1.6rem; opacity: .6; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  nav { display: none; position: absolute; left: 1rem; right: 1rem; top: 70px; padding: 1.2rem; flex-direction: column; align-items: stretch; background: var(--emerald-950); border: 1px solid rgba(237,207,136,.25); }
  nav.open { display: flex; }
  nav a { padding: .55rem; }
  .hero { grid-template-columns: 1fr; padding-top: 8rem; }
  .hero-art { max-width: 520px; justify-self: center; }
  .proof-strip { grid-template-columns: 1fr 1fr; }
  .proof-strip div:nth-child(2) { border-right: 0; }
  .proof-strip div:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
  .building, .partner, .network-section { grid-template-columns: 1fr; }
  .gather-scripture, .vision-mission-section { grid-template-columns: 1fr; }
  .network-copy { padding: 4rem 2rem; }
  .network-visual img { max-height: 680px; }
  .form-card { position: static; }
}

@media (max-width: 640px) {
  .nav-wrap { padding: 0 1rem; min-height: 70px; }
  .brand b { font-size: 1.35rem; }
  .brand small { font-size: .5rem; }
  .hero { padding: 7rem 1.2rem 3rem; gap: 3rem; }
  h1 { font-size: clamp(3.15rem,15vw,4.7rem); }
  .button-row { flex-direction: column; }
  .button { width: 100%; }
  .hero-badge { left: -.4rem; bottom: 1rem; }
  .proof-strip { grid-template-columns: 1fr; }
  .proof-strip div { border-right: 0; border-bottom: 1px solid var(--border); }
  .section { padding: 4.5rem 1.2rem; }
  .story-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 540px; }
  .feature-copy { inset: auto 1.3rem 1.3rem; }
  .partner-actions div { grid-template-columns: 1fr; gap: .2rem; }
  .form-card { padding: 1.5rem; }
  .final-cta { padding-inline: 1.2rem; }
  .foundation-intro { padding: 4.5rem 1.2rem 2.5rem; }
  .gather-scripture { padding: 4.5rem 1.2rem; }
  .gather-scripture blockquote { padding-left: 1.2rem; }
  .vision-mission-section { padding: 4.5rem 1.2rem; }
  .statement-card { padding: 1.5rem; }
  .gather-verbs div { grid-template-columns: 1fr; gap: .2rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
