@font-face {
  font-family: "Geist";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("fonts/geist-latin.woff2") format("woff2");
}

:root {
  --font-geist-sans: "Geist";
  --cream: #f8f5ed;
  --paper: #fffdf8;
  --navy: #0c2a4a;
  --forest: #1d6545;
  --coral: #f06045;
  --gold: #edae20;
  --sky: #63b6d3;
  --ink: #142d43;
  --muted: #5e6d78;
  --line: #dedbd2;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-geist-sans), Arial, Helvetica, sans-serif;
}

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

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

main {
  overflow: hidden;
}

.site-header {
  width: min(1380px, calc(100% - 72px));
  min-height: 104px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  z-index: 20;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--navy);
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-weight: 800;
  letter-spacing: -0.035em;
}

.brand-mark {
  width: 58px;
  height: 62px;
  display: inline-block;
  position: relative;
  flex: 0 0 58px;
}

.brand-mark::before {
  content: "";
  position: absolute;
  width: 4px;
  height: 42px;
  border-radius: 4px;
  background: var(--navy);
  left: 28px;
  bottom: 2px;
}

.brand-branch {
  position: absolute;
  height: 4px;
  width: 27px;
  border-radius: 4px;
  background: var(--navy);
  transform-origin: right center;
}

.branch-left { left: 5px; top: 28px; transform: rotate(35deg); }
.branch-right { right: 5px; top: 24px; transform: rotate(-40deg); }
.branch-top { left: 10px; top: 15px; width: 25px; transform: rotate(52deg); }

.brand-dot {
  position: absolute;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--cream);
}

.dot-coral { left: 0; top: 8px; background: var(--coral); }
.dot-sky { left: 0; top: 34px; background: var(--sky); }
.dot-gold { right: 0; top: 15px; background: var(--gold); }

.brand-leaf {
  position: absolute;
  width: 13px;
  height: 23px;
  border-radius: 100% 0 100% 0;
  background: var(--forest);
  left: 30px;
  top: 0;
  transform: rotate(18deg);
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3.4vw, 50px);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--navy);
}

nav > a:not(.nav-join):not(.nav-request) {
  position: relative;
}

nav > a:not(.nav-join):not(.nav-request)::after {
  content: "";
  position: absolute;
  height: 2px;
  left: 0;
  right: 100%;
  bottom: -8px;
  background: var(--coral);
  transition: right 180ms ease;
}

nav > a:hover::after { right: 0; }

.nav-join {
  background: var(--coral);
  color: white;
  padding: 16px 28px;
  border-radius: 13px;
  box-shadow: 0 8px 24px rgba(240, 96, 69, 0.18);
  transition: transform 180ms ease, background 180ms ease;
}

.nav-join:hover { transform: translateY(-2px); background: #df5037; }
.nav-request {
  padding: 13px 19px;
  border: 1px solid var(--navy);
  border-radius: 12px;
  color: var(--navy);
  white-space: nowrap;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}
.nav-request:hover { color: white; background: var(--navy); transform: translateY(-2px); }

.hero {
  width: min(1380px, calc(100% - 72px));
  min-height: 730px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(48px, 5vw, 76px);
  align-items: center;
  padding: 48px 0 72px;
}

.hero-copy {
  position: relative;
  z-index: 4;
  min-width: 0;
  animation: fade-up 620ms ease both;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--forest);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.82rem;
  font-weight: 800;
}

h1, h2, h3, p { margin-top: 0; }

.hero h1 {
  margin-bottom: 24px;
  color: var(--navy);
  font-size: clamp(3.25rem, 4.4vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
  font-weight: 850;
}

.coral-text { color: var(--coral); }
.forest-text { color: var(--forest); }
.gold-text { color: var(--gold); }

.hero-intro {
  max-width: 560px;
  margin-bottom: 28px;
  font-size: clamp(1.05rem, 1.45vw, 1.3rem);
  line-height: 1.55;
  color: #243d54;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  padding: 0 34px;
  border-radius: 14px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button-primary {
  background: var(--coral);
  color: white;
  box-shadow: 0 12px 28px rgba(240, 96, 69, 0.22);
}

.button-primary:hover { transform: translateY(-2px); background: #df5037; box-shadow: 0 16px 32px rgba(240, 96, 69, 0.28); }

.text-link {
  padding: 15px 0 9px;
  border-bottom: 2px solid var(--navy);
  color: var(--navy);
  font-weight: 750;
}

.text-link span { display: inline-block; margin-left: 8px; transition: transform 180ms ease; }
.text-link:hover span { transform: translateX(5px); }

.city-key {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  color: var(--navy);
  font-size: 0.94rem;
  font-weight: 650;
}

.city-key span { display: flex; align-items: center; gap: 10px; }
.city-key i, .city-dot { width: 16px; height: 16px; border-radius: 50%; display: inline-block; }
.city-key .coral { background: var(--coral); }
.city-key .sky { background: var(--sky); }
.city-key .forest { background: var(--forest); }

.hero-mosaic {
  min-height: 600px;
  position: relative;
  min-width: 0;
  animation: fade-in 800ms 120ms ease both;
}

.photo-card {
  position: absolute;
  z-index: 5;
  overflow: hidden;
  margin: 0;
  border-radius: 22px;
  background: #ddd;
  box-shadow: 0 18px 35px rgba(24, 44, 54, 0.16);
  border: 5px solid rgba(255, 253, 248, 0.9);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.photo-card:hover { transform: translateY(-5px); box-shadow: 0 24px 42px rgba(24, 44, 54, 0.21); }
.photo-card img { height: 100%; object-fit: cover; }
.photo-moving { width: 58%; height: 45%; left: 8%; top: 0; }
.photo-repair { width: 41%; height: 41%; right: -2%; top: 31%; }
.photo-meal { width: 52%; height: 39%; left: 0; bottom: 0; }

.shape-block { position: absolute; z-index: 1; border-radius: 18px; }
.shape-gold { background: var(--gold); width: 150px; height: 155px; left: 2%; top: 8%; }
.shape-sky { background: var(--sky); width: 210px; height: 120px; right: 2%; top: 24%; }

.mosaic-message {
  position: absolute;
  left: 45%;
  top: 49%;
  z-index: 7;
  width: 200px;
  min-height: 150px;
  border-radius: 20px;
  padding: 23px;
  background: var(--forest);
  color: white;
  font-size: 1.15rem;
  line-height: 1.25;
  box-shadow: 0 14px 28px rgba(29, 101, 69, 0.24);
}

.mosaic-message span, .mosaic-message strong { display: block; }
.mosaic-message strong { font-size: 1.25rem; }
.heart-home { position: relative; margin-top: 13px; width: 40px; font-size: 2.45rem; line-height: 1; opacity: 0.95; }
.heart-home i { position: absolute; font-style: normal; font-size: 1.2rem; left: 11px; top: 16px; }

.network-line { position: absolute; z-index: 2; border: 2px solid var(--navy); opacity: 0.95; }
.line-one { width: 70%; height: 64%; left: -3%; top: 24%; border-radius: 52% 48% 55% 45%; border-left-color: transparent; transform: rotate(-9deg); }
.line-two { width: 54%; height: 56%; right: -2%; top: 14%; border-radius: 48% 52% 43% 57%; border-bottom-color: transparent; transform: rotate(12deg); }
.network-node { position: absolute; z-index: 6; width: 34px; height: 34px; border: 5px solid var(--cream); border-radius: 50%; box-shadow: 0 2px 8px rgba(20, 45, 67, 0.15); }
.node-one { background: var(--sky); left: 2%; top: 42%; }
.node-two { background: var(--gold); left: 27%; bottom: 22%; }
.node-three { background: var(--coral); right: 6%; top: 57%; }

.mission-strip {
  background: var(--navy);
  color: white;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding: 0 max(36px, calc((100vw - 1380px) / 2));
}

.mission-strip article {
  min-height: 285px;
  padding: 58px clamp(32px, 4vw, 68px);
  border-left: 1px solid rgba(255,255,255,.13);
  position: relative;
}

.mission-strip article:last-child { border-right: 1px solid rgba(255,255,255,.13); }
.strip-number { color: var(--sky); font-size: .8rem; font-weight: 800; letter-spacing: .14em; }
.mission-strip article:nth-child(2) .strip-number { color: var(--gold); }
.mission-strip article:nth-child(3) .strip-number { color: var(--coral); }
.mission-strip h2 { font-size: 2.1rem; margin: 13px 0 12px; letter-spacing: -0.04em; }
.mission-strip p { margin: 0; max-width: 360px; color: #d9e2e8; line-height: 1.65; }

.section {
  width: min(1240px, calc(100% - 72px));
  margin: 0 auto;
  padding: 125px 0;
}

.section-heading { max-width: 610px; }
.section-heading h2, .faith-copy h2, .join-heading h2 {
  margin-bottom: 22px;
  color: var(--navy);
  font-size: clamp(2.5rem, 4.5vw, 4.5rem);
  line-height: 1.03;
  letter-spacing: -0.055em;
}
.section-heading > p:last-child, .join-heading > p:last-child, .faith-copy > p:not(.eyebrow):not(.verse) {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.65;
}

.how-section { display: grid; grid-template-columns: .85fr 1.15fr; gap: 100px; align-items: start; }
.steps-wrap { min-width: 0; }
.steps { list-style: none; padding: 0; margin: 0; }
.steps li { display: grid; grid-template-columns: 62px 1fr; gap: 24px; padding: 0 0 32px; margin-bottom: 32px; border-bottom: 1px solid var(--line); }
.steps li > span { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 50%; background: var(--paper); color: var(--coral); font-weight: 850; box-shadow: 0 8px 18px rgba(20,45,67,.08); }
.steps li:nth-child(2) > span { color: var(--sky); }
.steps li:nth-child(3) > span { color: var(--forest); }
.steps li:nth-child(4) > span { color: var(--gold); }
.steps h3 { color: var(--navy); font-size: 1.3rem; margin: 3px 0 8px; }
.steps p { margin: 0; color: var(--muted); line-height: 1.6; }
.giving-form-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 26px 28px;
  background: var(--paper);
  border: 1px solid #ebe6db;
  border-left: 6px solid var(--coral);
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(20,45,67,.08);
}
.giving-form-cta .eyebrow { display: block; margin-bottom: 7px; }
.giving-form-cta strong { display: block; color: var(--navy); font-size: 1.15rem; line-height: 1.35; }
.giving-form-cta .button { flex: 0 0 auto; text-align: center; }

.centered { max-width: 760px; margin: 0 auto 58px; text-align: center; }
.opportunity-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.opportunity-grid article { min-height: 310px; padding: 34px 28px; background: var(--paper); border: 1px solid #ebe6db; border-radius: 22px; transition: transform 180ms ease, box-shadow 180ms ease; }
.opportunity-grid article:hover { transform: translateY(-5px); box-shadow: 0 16px 34px rgba(20,45,67,.1); }
.opportunity-grid article > .opportunity-accent { display: block; width: 52px; height: 12px; margin-bottom: 55px; border-radius: 999px; background: var(--coral); box-shadow: 18px 0 0 #f9b8aa; }
.opportunity-grid article:nth-child(2) > .opportunity-accent { background: var(--sky); box-shadow: 18px 0 0 #b9e1ee; }
.opportunity-grid article:nth-child(3) > .opportunity-accent { background: var(--forest); box-shadow: 18px 0 0 #a9d1bb; }
.opportunity-grid article:nth-child(4) > .opportunity-accent { background: var(--gold); box-shadow: 18px 0 0 #f6d98e; }
.opportunity-grid h3 { margin-bottom: 12px; color: var(--navy); font-size: 1.25rem; line-height: 1.2; }
.opportunity-grid p { margin: 0; color: var(--muted); line-height: 1.6; }

.faith-section {
  min-height: 680px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  background: #e1f0ea;
}
.faith-copy { width: min(620px, calc(100% - 72px)); justify-self: end; padding: 110px 80px 110px 0; }
.verse { margin: 38px 0 0; padding-top: 30px; border-top: 1px solid #b6d1c3; color: var(--forest); font-weight: 800; font-size: 1.15rem; }
.verse span { font-weight: 500; }
.faith-art { height: 100%; min-height: 680px; background: var(--forest); position: relative; overflow: hidden; display: grid; place-items: center; }
.faith-art > span { color: white; font-size: clamp(3.5rem, 7vw, 7rem); line-height: .9; letter-spacing: -.065em; font-weight: 850; position: relative; z-index: 3; }
.faith-circle { position: absolute; border-radius: 50%; }
.circle-one { width: 330px; height: 330px; background: var(--coral); left: 4%; top: 8%; }
.circle-two { width: 210px; height: 210px; background: var(--gold); right: 8%; top: 16%; }
.circle-three { width: 150px; height: 150px; background: var(--sky); right: 20%; bottom: 6%; }
.faith-path { position: absolute; width: 80%; height: 66%; border: 3px solid rgba(255,255,255,.85); border-left-color: transparent; border-radius: 50%; transform: rotate(18deg); }

.scripture-section { padding-bottom: 145px; }
.scripture-heading { max-width: 740px; margin-bottom: 58px; }
.scripture-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  grid-template-rows: repeat(2, minmax(270px, auto));
  gap: 18px;
}
.scripture-card {
  --scripture-accent: var(--sky);
  position: relative;
  overflow: hidden;
  padding: 34px;
  border: 1px solid #e5e1d7;
  border-radius: 22px;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 25px rgba(20,45,67,.04);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.scripture-card:hover { transform: translateY(-4px); box-shadow: 0 18px 38px rgba(20,45,67,.1); }
.scripture-card::before {
  content: "";
  position: absolute;
  width: 105px;
  height: 105px;
  right: -42px;
  top: -42px;
  border-radius: 50%;
  background: var(--scripture-accent);
  opacity: .9;
}
.scripture-card:nth-child(2) { --scripture-accent: var(--coral); }
.scripture-card:nth-child(3) { --scripture-accent: var(--gold); }
.scripture-card:nth-child(4) { --scripture-accent: var(--forest); }
.scripture-card:nth-child(5) { --scripture-accent: var(--sky); }
.scripture-featured {
  grid-row: 1 / 3;
  background: var(--navy);
  border-color: var(--navy);
  color: white;
  padding: 46px;
}
.scripture-featured::before {
  width: 220px;
  height: 220px;
  right: -80px;
  top: -80px;
  background: var(--coral);
}
.scripture-featured::after {
  content: "";
  position: absolute;
  width: 165px;
  height: 165px;
  left: -90px;
  bottom: -70px;
  border: 3px solid var(--gold);
  border-radius: 50%;
}
.scripture-reference {
  position: relative;
  z-index: 2;
  color: var(--forest);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .76rem;
  font-weight: 850;
}
.scripture-featured .scripture-reference { color: var(--sky); }
.scripture-card blockquote {
  position: relative;
  z-index: 2;
  margin: auto 0 22px;
  color: var(--navy);
  font-size: clamp(1.45rem, 2.15vw, 2.25rem);
  line-height: 1.16;
  letter-spacing: -.035em;
  font-weight: 800;
}
.scripture-featured blockquote {
  margin-top: auto;
  color: white;
  font-size: clamp(2.2rem, 3.4vw, 3.6rem);
  line-height: 1.05;
}
.scripture-card > p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}
.scripture-featured > p { color: #c7d7e1; font-size: 1.05rem; }
.translation-label { margin: 24px 0 0; color: var(--muted); font-size: .78rem; }

.faq-section { display: grid; grid-template-columns: .72fr 1.28fr; gap: 100px; }
.faq-heading { position: sticky; top: 40px; align-self: start; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); padding: 0 2px; }
.faq-list summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 20px; padding: 25px 0; color: var(--navy); font-weight: 750; font-size: 1.08rem; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { font-size: 1.5rem; line-height: 1; font-weight: 350; color: var(--coral); transition: transform 180ms ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 680px; padding: 0 50px 26px 0; margin: 0; color: var(--muted); line-height: 1.65; }

.join-section { padding: 125px max(36px, calc((100vw - 1240px) / 2)); background: var(--navy); color: white; }
.join-heading { max-width: 760px; margin-bottom: 50px; }
.join-heading .eyebrow { color: var(--sky); }
.join-heading h2 { color: white; }
.join-heading > p:last-child { color: #cbd9e2; }
.city-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.city-card { min-height: 420px; padding: 28px; border: 1px solid rgba(255,255,255,.18); border-radius: 20px; display: flex; flex-direction: column; align-items: center; gap: 20px; transition: transform 180ms ease, background 180ms ease; }
.city-card:hover { transform: translateY(-4px); background: rgba(255,255,255,.07); }
.city-card-header { width: 100%; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 16px; }
.city-card .city-dot { width: 19px; height: 19px; background: var(--coral); }
.city-card.sky .city-dot { background: var(--sky); }
.city-card.forest .city-dot { background: #70bf91; }
.city-card small, .city-card strong { display: block; }
.city-card small { margin-bottom: 8px; color: #b9cbd7; font-size: .76rem; text-transform: uppercase; letter-spacing: .1em; }
.city-card strong { font-size: 1.7rem; }
.city-card i { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.1); font-style: normal; font-size: 1.2rem; }
.qr-frame { display: block; width: min(210px, 80%); padding: 12px; background: white; border-radius: 16px; box-shadow: 0 12px 26px rgba(1,15,28,.2); }
.qr-frame img { display: block; width: 100%; aspect-ratio: 1; object-fit: contain; }
.scan-label { margin-top: auto; color: #cbd9e2; font-size: .86rem; font-weight: 650; }
.join-note { margin: 24px 0 0; color: #91a7b6; font-size: .86rem; }

.passage-library {
  padding: 125px max(36px, calc((100vw - 1240px) / 2));
  background: #e5f0eb;
}
.passage-inner { width: 100%; }
.passage-heading { max-width: 720px; margin-bottom: 58px; }
.passage-list { border-top: 1px solid #b8d0c4; }
.passage-row {
  display: grid;
  grid-template-columns: minmax(190px, .6fr) 1.4fr auto;
  gap: 32px;
  align-items: center;
  padding: 29px 0;
  border-bottom: 1px solid #b8d0c4;
}
.passage-reference { color: var(--forest); font-size: 1.12rem; font-weight: 850; letter-spacing: -.02em; }
.passage-row p { margin: 0; color: #4c675a; line-height: 1.55; }
.passage-row a {
  color: var(--navy);
  font-size: .9rem;
  font-weight: 800;
  white-space: nowrap;
  border-bottom: 2px solid var(--coral);
  padding: 8px 0 6px;
}
.passage-row a span { display: inline-block; margin-left: 6px; transition: transform 180ms ease; }
.passage-row a:hover span { transform: translate(3px, -3px); }

.resources-section {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 90px;
  padding: 125px max(36px, calc((100vw - 1240px) / 2));
  background:
    radial-gradient(circle at 12% 18%, rgba(245,183,49,.18), transparent 25%),
    var(--paper);
}
.resources-heading { align-self: start; max-width: 470px; }
.resources-heading h2 {
  color: var(--navy);
  font-size: clamp(2.7rem, 4.5vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -.055em;
  margin-bottom: 24px;
}
.resources-heading > p:last-child { color: var(--muted); line-height: 1.7; }
.resource-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.resource-card {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  padding: 34px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  border: 1px solid #e5e1d7;
  box-shadow: 0 12px 32px rgba(20,45,67,.07);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.resource-card:hover { transform: translateY(-5px); box-shadow: 0 22px 46px rgba(20,45,67,.14); }
.resource-card::after {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  right: -95px;
  bottom: -95px;
  border: 2px solid currentColor;
  border-radius: 50%;
  opacity: .25;
}
.resource-practice { background: var(--navy); border-color: var(--navy); color: white; }
.resource-journey { background: #e5f0eb; border-color: #c9ddd3; color: var(--navy); }
.resource-topline { display: flex; align-items: center; justify-content: flex-end; margin-bottom: 72px; }
.resource-arrow {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 50%;
  font-size: 1.2rem;
  transition: transform 180ms ease, background 180ms ease;
}
.resource-journey .resource-arrow { border-color: #aecdbd; }
.resource-card:hover .resource-arrow { transform: translate(3px, -3px); background: rgba(255,255,255,.1); }
.resource-source {
  margin-bottom: 12px;
  color: var(--sky);
  font-size: .75rem;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.resource-journey .resource-source { color: var(--forest); }
.resource-card strong {
  display: block;
  margin-bottom: 20px;
  font-size: clamp(1.65rem, 2.4vw, 2.35rem);
  line-height: 1.08;
  letter-spacing: -.035em;
}
.resource-description {
  display: block;
  margin-bottom: 34px;
  color: #c7d7e1;
  line-height: 1.65;
}
.resource-journey .resource-description { color: #4c675a; }
.resource-meta {
  display: block;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.16);
  color: #9fb4c2;
  font-size: .8rem;
  font-weight: 700;
}
.resource-journey .resource-meta { border-top-color: #b8d0c4; color: #5d796b; }

footer { background: #081f36; color: white; padding: 56px max(36px, calc((100vw - 1380px) / 2)); display: grid; grid-template-columns: 1fr 1fr auto; align-items: center; gap: 28px; }
.footer-brand { color: white; font-size: 1.15rem; }
.footer-brand .brand-dot { box-shadow-color: #081f36; }
footer > p { margin: 0; color: #aebfcb; text-align: center; }
footer > div { display: flex; gap: 24px; font-size: .9rem; font-weight: 650; }
footer > div a:hover { color: var(--sky); }
footer small { grid-column: 1 / -1; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.12); color: #8197a6; }
footer .esv-notice { max-width: 1120px; padding-top: 0; border-top: 0; font-size: .66rem; line-height: 1.55; }

@keyframes fade-up { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }

@media (max-width: 1120px) {
  .hero { grid-template-columns: 1fr; padding-top: 64px; }
  .hero-copy { max-width: 850px; }
  .hero-mosaic { width: min(860px, 100%); margin: 20px auto 0; }
  .how-section, .faq-section { gap: 60px; }
  .opportunity-grid { grid-template-columns: repeat(2, 1fr); }
  .faith-copy { padding-right: 50px; }
  .scripture-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .scripture-featured { grid-row: auto; grid-column: 1 / -1; min-height: 440px; }
  .resources-section { gap: 54px; }
  .resource-grid { grid-template-columns: 1fr; }
  .resource-card { min-height: 410px; }
}

@media (max-width: 820px) {
  .site-header { width: min(100% - 36px, 1380px); min-height: 84px; }
  .brand { font-size: 1rem; }
  .brand-mark { transform: scale(.8); transform-origin: left center; width: 46px; flex-basis: 46px; }
  nav a:not(.nav-request) { display: none; }
  .nav-request { padding: 11px 15px; font-size: .86rem; }
  .hero, .section { width: min(100% - 36px, 1240px); }
  .hero { min-height: auto; padding: 54px 0 70px; }
  .hero h1 { font-size: clamp(3rem, 11vw, 4.6rem); }
  .hero-mosaic { min-height: 520px; }
  .mission-strip { grid-template-columns: 1fr; padding: 0 18px; }
  .mission-strip article { min-height: auto; padding: 42px 22px; border-right: 0; border-left: 0; border-bottom: 1px solid rgba(255,255,255,.13); }
  .section { padding: 90px 0; }
  .how-section, .faq-section { grid-template-columns: 1fr; }
  .faq-heading { position: static; }
  .faith-section { grid-template-columns: 1fr; }
  .faith-copy { width: min(100% - 36px, 620px); justify-self: center; padding: 90px 0; }
  .faith-art { min-height: 540px; }
  .city-cards { grid-template-columns: 1fr; }
  .passage-row { grid-template-columns: 1fr; gap: 12px; }
  .passage-row a { justify-self: start; margin-top: 4px; }
  .resources-section { grid-template-columns: 1fr; gap: 42px; padding-top: 90px; padding-bottom: 90px; }
  .resources-heading { max-width: 680px; }
  footer { grid-template-columns: 1fr; text-align: left; }
  footer > p { text-align: left; }
  footer small { grid-column: auto; }
}

@media (max-width: 560px) {
  .site-header { min-height: 76px; }
  .brand > span:last-child { max-width: 125px; line-height: 1.05; }
  .brand-mark { display: none; }
  .hero { padding-top: 42px; }
  .eyebrow { font-size: .72rem; line-height: 1.5; }
  .hero h1 { font-size: clamp(2.85rem, 14vw, 4.2rem); }
  .hero-intro { font-size: 1rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 10px; }
  .city-key { gap: 18px; font-size: .85rem; }
  .hero-mosaic { min-height: 500px; margin-top: 20px; }
  .photo-moving { width: 83%; height: 41%; left: 0; }
  .photo-repair { width: 58%; height: 36%; right: 0; top: 38%; }
  .photo-meal { width: 67%; height: 32%; left: 0; bottom: 0; }
  .mosaic-message { width: 155px; min-height: 120px; left: 38%; top: 31%; padding: 17px; font-size: .9rem; }
  .mosaic-message strong { font-size: 1rem; }
  .heart-home { display: none !important; }
  .shape-sky { right: -30%; }
  .opportunity-grid { grid-template-columns: 1fr; }
  .scripture-grid { grid-template-columns: 1fr; }
  .scripture-featured { grid-column: auto; min-height: 420px; padding: 34px; }
  .scripture-card { min-height: 285px; padding: 28px; }
  .opportunity-grid article { min-height: auto; }
  .opportunity-grid article > span { margin-bottom: 36px; }
  .steps li { grid-template-columns: 48px 1fr; gap: 16px; }
  .steps li > span { width: 44px; height: 44px; }
  .giving-form-cta { align-items: stretch; flex-direction: column; }
  .giving-form-cta .button { width: 100%; }
  .resource-card { min-height: 390px; padding: 28px; }
  .resource-topline { margin-bottom: 58px; }
  .faith-art { min-height: 480px; }
  .faq-list summary { font-size: 1rem; }
  .faq-list details p { padding-right: 12px; }
  .join-section { padding-top: 90px; padding-bottom: 90px; }
  .city-card { padding: 24px 20px; }
  footer > div { flex-wrap: wrap; }
}

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