@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --ink-950: #111111;
  --ink-900: #1d1d1f;
  --ink-800: #2f2f33;
  --ink-700: #515154;
  --ink-300: #b3b3b8;
  --ink-200: #d2d2d7;
  --ink-100: #e8e8ed;
  --sand-100: #ffffff;
  --sand-200: #f5f5f7;
  --clay-500: #1d1d1f;
  --clay-400: #515154;
  --olive-500: #227c45;
  --gold-300: #86868b;
  --accent-blue: #6e97c8;
  --white: #ffffff;
  --shadow-lg: 0 18px 48px rgba(17, 17, 17, 0.08);
  --shadow-md: 0 10px 28px rgba(17, 17, 17, 0.06);
  --shadow-sm: 0 4px 16px rgba(17, 17, 17, 0.04);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --container: 1240px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.95), rgba(245, 245, 247, 0) 36%),
    #f5f5f7;
  color: var(--ink-950);
  font-family: "Manrope", sans-serif;
  line-height: 1.8;
  min-height: 100vh;
  overflow-x: hidden;
}

body.is-locked {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

main {
  display: block;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  padding: 18px 24px;
  transition: transform 0.32s ease, opacity 0.32s ease;
}

.header-shell {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(17, 17, 17, 0.06);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(17, 17, 17, 0.05);
  display: flex;
  gap: 20px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: var(--container);
  padding: 14px 18px 14px 18px;
  transform-origin: top center;
  transition:
    transform 0.32s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    border-radius 0.25s ease;
}

.site-header.is-scrolled .header-shell {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 36px rgba(17, 17, 17, 0.08);
}

.site-header.is-hidden {
  opacity: 0.96;
  transform: translateY(calc(-100% + 18px));
}

.site-header.is-hidden .header-shell {
  border-radius: 22px;
  transform: scale(0.98);
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  align-items: center;
  background: #314f53;
  border: none;
  border-radius: 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  color: var(--white);
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 0.84rem;
  font-weight: 800;
  height: 46px;
  justify-content: center;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  width: 46px;
}

.brand-mark.music-toggle {
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.brand-mark.music-toggle:hover,
.brand-mark.music-toggle:focus-visible {
  box-shadow: 0 10px 22px rgba(49, 79, 83, 0.2);
  outline: none;
  transform: translateY(-1px);
}

.brand-mark.music-toggle.is-playing {
  background: var(--accent-blue);
  box-shadow: 0 10px 24px rgba(110, 151, 200, 0.24);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.brand-name {
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1;
}

.brand-tag {
  color: var(--ink-700);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-toggle {
  align-items: center;
  background: var(--ink-950);
  border: none;
  border-radius: 999px;
  color: var(--sand-100);
  cursor: pointer;
  display: none;
  height: 44px;
  justify-content: center;
  width: 44px;
}

.nav-toggle-bar {
  background: var(--sand-100);
  border-radius: 999px;
  display: block;
  height: 2px;
  width: 16px;
}

.nav-toggle .nav-toggle-bar + .nav-toggle-bar {
  margin-top: 3px;
}

.nav-panel {
  align-items: center;
  display: flex;
  gap: 10px;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: 4px;
}

.nav-links a {
  border-radius: 999px;
  color: var(--ink-800);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 10px 16px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: rgba(110, 151, 200, 0.08);
  color: var(--ink-950);
  outline: none;
  transform: translateY(-1px);
}

.nav-links a[aria-current="page"] {
  background: rgba(110, 151, 200, 0.1);
  color: var(--accent-blue);
  font-weight: 700;
}

.nav-cta {
  align-items: center;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 999px;
  color: var(--ink-950);
  cursor: pointer;
  display: inline-flex;
  font-size: 0.92rem;
  font-weight: 600;
  justify-content: center;
  padding: 11px 18px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: rgba(110, 151, 200, 0.08);
  border-color: rgba(110, 151, 200, 0.18);
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.06);
  outline: none;
  transform: translateY(-1px);
}

.page-shell {
  margin: 0 auto;
  max-width: var(--container);
  padding: 126px 24px 32px;
}

.hero-shell,
.page-hero {
  overflow: hidden;
  position: relative;
}

.hero-shell {
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfd 100%);
  border: 1px solid rgba(17, 17, 17, 0.05);
  border-radius: 48px;
  box-shadow: var(--shadow-lg);
  color: var(--ink-950);
  display: grid;
  gap: 64px;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.62fr);
  min-height: 760px;
  padding: 76px;
}

.page-home .page-shell {
  padding-top: 112px;
}

.page-home .hero-shell {
  align-items: start;
  min-height: auto;
  padding-top: 54px;
}

.page-home .hero-shell::after {
  display: none;
}

.page-give .page-hero::after {
  display: none;
}

.page-update .page-hero::after {
  display: none;
}

.page-community .page-hero::after {
  display: none;
}

.page-projects .page-hero::after {
  display: none;
}

.page-blog .page-hero::after {
  display: none;
}

.page-blog .page-hero {
  background: transparent;
  border: none;
  box-shadow: none;
  display: block;
  padding: 0;
}

.page-blog .page-hero::before {
  display: none;
}

.page-blog .blog-feature-card {
  margin: 0 auto;
  max-width: 620px;
  min-height: 0;
}

.page-blog .footer .page-shell {
  padding-top: 36px;
}

.page-blog .blog-hero-pair {
  align-items: stretch;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  margin-bottom: 56px;
}

.page-blog .blog-hero-pair .blog-feature-card {
  margin: 0;
  max-width: none;
}

.project-accordion-list {
  display: grid;
  gap: 18px;
}

.project-accordion {
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfd 100%);
  border: 1px solid rgba(17, 17, 17, 0.06);
  border-radius: 28px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.project-accordion summary {
  align-items: center;
  cursor: pointer;
  display: flex;
  font-size: 1.35rem;
  font-weight: 700;
  justify-content: space-between;
  letter-spacing: -0.03em;
  list-style: none;
  padding: 24px 28px;
}

.project-accordion summary::-webkit-details-marker {
  display: none;
}

.project-accordion summary::after {
  color: var(--ink-700);
  content: "▾";
  font-size: 1rem;
  transition: transform 0.24s ease;
}

.project-accordion[open] summary::after {
  transform: rotate(180deg);
}

.project-accordion-body {
  border-top: 1px solid rgba(17, 17, 17, 0.06);
  color: var(--ink-700);
  font-size: 0.98rem;
  line-height: 1.85;
  padding: 28px 32px 32px;
}

.project-accordion summary::after {
  content: "🙂";
}

#projects .giving-grid {
  align-items: start;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.96fr);
  gap: 32px;
}

#projects .section-head {
  align-items: end;
  gap: 56px;
  margin-bottom: 34px;
}

#projects .section-title {
  font-size: clamp(3.5rem, 7vw, 5.2rem);
  letter-spacing: -0.05em;
  line-height: 0.95;
  max-width: 8ch;
}

#projects .section-lede {
  font-size: 0.98rem;
  line-height: 1.7;
  margin-left: auto;
  max-width: 700px;
  padding-bottom: 16px;
}

#projects .project-accordion {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(17, 17, 17, 0.04);
  border-radius: 34px;
  box-shadow: 0 18px 42px rgba(17, 17, 17, 0.04);
}

#projects .project-accordion summary {
  font-size: 1.15rem;
  font-weight: 700;
  padding: 30px 34px;
}

#projects .project-accordion summary::after {
  font-size: 1.25rem;
}

#projects .project-accordion-body {
  padding: 26px 30px 30px;
}

.project-accordion summary {
  -webkit-appearance: none;
  appearance: none;
}

.project-accordion summary::marker {
  content: "";
}

.project-accordion summary::after {
  color: var(--ink-700);
  content: "\1F642";
  font-size: 1rem;
}

#projects .story-card {
  padding: 48px;
}

#projects .giving-slider {
  padding: 20px;
}

#projects .project-copy-card {
  display: flex;
  min-height: 100%;
}

#projects .project-copy-scroll {
  max-height: 520px;
  overflow-y: auto;
  padding-right: 10px;
  scrollbar-width: thin;
  width: 100%;
}

.project-showcase {
  align-items: start;
}

.project-showcase-copy {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.project-showcase-section .giving-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.96fr);
  gap: 32px;
}

.project-showcase-section .project-copy-scroll,
.project-showcase .project-copy-scroll {
  max-height: 520px;
  overflow-y: auto;
  padding-right: 10px;
  scrollbar-width: thin;
  width: 100%;
}

.project-preview-link {
  margin-top: 24px;
}

.project-gallery .slider-slide img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.page-home .hero-copy {
  justify-content: flex-start;
  max-width: 760px;
}

.hero-shell::before,
.page-hero::before {
  background: radial-gradient(circle, rgba(0, 0, 0, 0.04) 0%, transparent 60%);
  content: "";
  height: 520px;
  position: absolute;
  right: -120px;
  top: -160px;
  width: 520px;
}

.hero-shell::after,
.page-hero::after {
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.03));
  border: 1px solid rgba(17, 17, 17, 0.04);
  border-radius: 999px;
  content: "";
  height: 150px;
  left: 56px;
  position: absolute;
  top: 46px;
  width: 150px;
}

.hero-copy,
.page-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.eyebrow {
  color: var(--ink-700);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.hero-pretitle {
  color: var(--ink-950);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.hero-statement {
  color: var(--ink-900);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.45;
  margin-bottom: 18px;
  max-width: 38ch;
  text-transform: none;
}

.hero-statement-title,
.hero-statement-subtitle {
  display: block;
}

.hero-statement-subtitle {
  color: var(--ink-700);
  font-size: 0.95rem;
  font-weight: 600;
  margin-top: 2px;
}

.page-home .hero-statement {
  letter-spacing: -0.01em;
  text-transform: none;
}

.hero-title,
.page-hero-title,
.section-title,
.cta-slab h2,
.footer-title {
  font-family: "Manrope", sans-serif;
  letter-spacing: -0.03em;
  line-height: 1;
}

.hero-title {
  font-size: clamp(3.4rem, 7vw, 5.8rem);
  margin-bottom: 24px;
  max-width: 10ch;
  font-weight: 800;
  line-height: 0.92;
}

.hero-lede,
.page-hero-lede,
.page-hero-note,
.section-lede,
.story-copy p,
.timeline-copy p,
.method-copy p,
.principle-card p,
.team-card p,
.footer-copy,
.contact-subtext {
  color: var(--ink-700);
  font-size: 1rem;
}

.hero-lede {
  max-width: 720px;
  font-size: 1.05rem;
  line-height: 1.85;
}

.hero-actions,
.section-actions,
.modal-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.btn,
.btn-secondary {
  align-items: center;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  font-size: 0.95rem;
  font-weight: 600;
  gap: 8px;
  justify-content: center;
  padding: 14px 22px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn {
  background: var(--ink-950);
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.12);
  color: var(--white);
}

.btn:hover,
.btn:focus-visible {
  box-shadow: 0 14px 30px rgba(17, 17, 17, 0.16);
  outline: none;
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(17, 17, 17, 0.12);
  color: var(--ink-950);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: rgba(17, 17, 17, 0.04);
  outline: none;
  transform: translateY(-2px);
}

.hero-facts {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
  margin-top: 34px;
}

.hero-facts li {
  background: #ffffff;
  border: 1px solid rgba(17, 17, 17, 0.06);
  border-radius: var(--radius-md);
  padding: 22px;
}

.fact-value {
  color: var(--ink-950);
  display: block;
  font-size: 1.65rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.fact-label {
  color: var(--ink-700);
  font-size: 0.84rem;
}

.hero-visual {
  align-items: stretch;
  display: grid;
  gap: 0;
  grid-template-columns: minmax(260px, 360px);
  grid-template-rows: 1fr;
  min-height: 100%;
  position: relative;
  justify-content: end;
  z-index: 1;
}

.hero-scripture-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 246, 248, 0.96));
  border: 1px solid rgba(17, 17, 17, 0.06);
  border-radius: 36px;
  box-shadow: var(--shadow-md);
  min-height: 100%;
  padding: 30px;
  position: relative;
}

.hero-column-label {
  color: var(--ink-700);
  display: block;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  margin-bottom: 22px;
  text-transform: uppercase;
}

.hero-scripture-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  transform: translateX(18px);
}

.hero-scripture-card::before {
  background: radial-gradient(circle at top right, rgba(0, 113, 227, 0.1), transparent 42%);
  content: "";
  inset: 0;
  position: absolute;
}

.scripture-lines,
.hero-scripture-note {
  position: relative;
  z-index: 1;
}

.scripture-lines {
  display: grid;
  gap: 14px;
}

.scripture-lines p {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(17, 17, 17, 0.06);
  border-radius: 22px;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  padding: 22px 22px 24px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.hero-scripture-card:hover .scripture-lines p,
.hero-scripture-card:focus-within .scripture-lines p {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 32px rgba(17, 17, 17, 0.08);
  transform: translateX(6px);
}

.hero-scripture-note {
  color: var(--ink-700);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-top: 26px;
  max-width: 30ch;
}

.visual-card {
  border-radius: 32px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  position: relative;
}

.visual-card img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.visual-card:nth-child(1) {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}

.visual-card:nth-child(2) {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}

.visual-card:nth-child(3) {
  grid-column: 2 / 3;
  grid-row: 2 / 4;
}

.visual-caption,
.floating-note,
.stats-panel,
.timeline-intro,
.side-panel,
.impact-panel,
.cta-slab,
.footer-block {
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(17, 17, 17, 0.06);
  border-radius: 24px;
}

.visual-caption {
  bottom: 18px;
  color: var(--ink-950);
  left: 18px;
  max-width: 260px;
  padding: 18px;
  position: absolute;
}

.visual-caption strong {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.visual-caption span {
  color: var(--ink-700);
  font-size: 0.92rem;
}

.floating-note {
  color: var(--ink-950);
  max-width: 260px;
  padding: 18px;
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-40%);
}

.floating-note strong {
  color: var(--ink-700);
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.floating-note p {
  color: var(--ink-950);
  font-size: 1rem;
}

.section {
  margin-top: 88px;
  padding: 12px 0;
}

.section-head {
  align-items: end;
  display: flex;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 46px;
}

.section-kicker {
  color: var(--clay-500);
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 1.02;
  max-width: 13ch;
  font-weight: 800;
}

.section-lede {
  color: var(--ink-700);
  font-size: 1.03rem;
  line-height: 1.9;
  max-width: 560px;
}

.mission-shell {
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfd 100%);
  border: 1px solid rgba(17, 17, 17, 0.05);
  border-radius: 36px;
  box-shadow: var(--shadow-lg);
  display: grid;
  gap: 52px;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.8fr);
  overflow: hidden;
  padding: 28px 28px 30px;
  position: relative;
}

.mission-shell::before {
  background: radial-gradient(circle at top right, rgba(95, 143, 203, 0.07), transparent 34%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.mission-copy,
.mission-panel {
  position: relative;
  z-index: 1;
}

.mission-copy {
  display: grid;
  gap: 10px;
}

.mission-copy .section-kicker {
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  margin-bottom: 2px;
}

.mission-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  max-width: 16ch;
}

.mission-lede {
  color: var(--ink-700);
  font-size: 0.93rem;
  line-height: 1.85;
  margin-top: 2px;
  max-width: 410px;
}

.mission-panel {
  align-self: center;
  background:
    radial-gradient(circle at top right, rgba(95, 143, 203, 0.08), transparent 32%),
    #ffffff;
  border: 1px solid rgba(17, 17, 17, 0.06);
  border-radius: 24px;
  margin-left: auto;
  max-width: 420px;
  padding: 20px 22px 22px;
  width: 100%;
}

.mission-panel strong {
  color: var(--ink-700);
  display: block;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.mission-points {
  color: var(--ink-700);
  display: grid;
  gap: 0;
  list-style: none;
}

.mission-points li {
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  font-size: 0.92rem;
  line-height: 1.85;
  padding: 12px 0;
}

.mission-points li:first-child {
  border-top: none;
  padding-top: 0;
}

.story-grid,
.band-grid,
.page-hero,
.timeline-grid,
.giving-grid,
.support-grid,
.care-grid,
.footer-grid {
  display: grid;
  gap: 32px;
}

.story-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 36px;
}

.story-card,
.metric-card,
.flow-card,
.snapshot-card,
.timeline-card,
.support-card,
.care-card,
.principle-card,
.team-card,
.media-card,
.footer-block {
  background: #ffffff;
  border: 1px solid rgba(17, 17, 17, 0.06);
  border-radius: 28px;
  box-shadow: var(--shadow-sm);
}

.story-card {
  padding: 48px;
}

.story-card h3 {
  font-size: 1.3rem;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 14px;
}

.story-copy p {
  color: var(--ink-800);
  font-size: 1rem;
  line-height: 1.9;
  margin-top: 20px;
}

.story-copy p:first-of-type {
  margin-top: 0;
}

.side-panel {
  background:
    radial-gradient(circle at top right, rgba(95, 143, 203, 0.08), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f7f7fa 100%);
  color: var(--ink-950);
  padding: 38px;
}

.side-panel strong,
.timeline-intro strong {
  color: var(--ink-700);
  display: block;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.side-panel h3,
.timeline-intro h3,
.impact-panel h3,
.cta-slab h2 {
  font-family: "Manrope", sans-serif;
  font-size: 2.1rem;
  line-height: 1.05;
  margin-bottom: 14px;
  font-weight: 800;
}

.side-panel p,
.timeline-intro p,
.impact-panel p,
.cta-slab p {
  color: var(--ink-700);
}

.checklist {
  display: grid;
  gap: 16px;
  list-style: none;
  margin-top: 24px;
}

.checklist li {
  align-items: start;
  display: grid;
  gap: 10px;
  grid-template-columns: 18px 1fr;
}

.checklist li::before {
  color: rgba(255, 255, 255, 0.7);
  content: "•";
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
  margin-top: 3px;
}

.checklist li::before {
  color: var(--accent-blue);
  content: "\2022";
  font-weight: 700;
}

.flow-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.flow-card,
.metric-card,
.snapshot-card,
.support-card,
.care-card,
.principle-card,
.team-card {
  padding: 34px;
  position: relative;
}

.flow-card::before,
.snapshot-card::before,
.principle-card::before,
.support-card::before,
.care-card::before {
  background: linear-gradient(90deg, var(--ink-950), rgba(17, 17, 17, 0.15));
  border-radius: 999px;
  content: "";
  height: 3px;
  left: 34px;
  position: absolute;
  width: 64px;
  top: 0;
}

.flow-index {
  color: var(--ink-700);
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.flow-card h3,
.snapshot-card h3,
.metric-card h3,
.timeline-card h3,
.support-card h3,
.care-card h3,
.principle-card h3,
.team-card h3 {
  font-size: 1.2rem;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.flow-card p,
.snapshot-card p,
.metric-card p,
.timeline-card p,
.support-card p,
.care-card p,
.principle-card p,
.team-card p {
  color: var(--ink-700);
  font-size: 0.95rem;
  line-height: 1.85;
  margin-top: 16px;
}

.impact-panel {
  background: linear-gradient(180deg, #ffffff 0%, #f7f7fa 100%);
  color: var(--ink-950);
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
  padding: 44px;
}

.impact-copy {
  margin: 0 auto;
  max-width: 820px;
  text-align: center;
}

.impact-list {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
  margin: 0 auto;
  max-width: 960px;
  width: 100%;
}

.impact-list li {
  background:
    radial-gradient(circle at top right, rgba(95, 143, 203, 0.08), transparent 34%),
    rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(17, 17, 17, 0.06);
  border-radius: 22px;
  padding: 22px 24px 24px;
}

.impact-list strong {
  color: var(--ink-950);
  display: block;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.impact-list span {
  color: var(--ink-700);
  font-size: 0.94rem;
  line-height: 1.85;
}

#next-season .impact-list {
  grid-template-columns: repeat(2, minmax(320px, 1fr));
}

.snapshot-grid,
.support-grid,
.care-grid,
.principles-grid,
.team-grid,
.metric-grid,
.media-grid {
  display: grid;
  gap: 28px;
}

.snapshot-grid,
.metric-grid,
.principles-grid,
.media-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.support-grid,
.care-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.team-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.belief-list {
  color: var(--ink-800);
  display: grid;
  gap: 14px 20px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: disc;
  padding-left: 22px;
}

.belief-list li {
  line-height: 1.8;
}

.media-card {
  overflow: hidden;
}

.media-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}

.media-card figcaption,
.media-placeholder {
  color: var(--ink-700);
  font-size: 0.95rem;
  line-height: 1.75;
  padding: 18px 20px 22px;
}

.media-placeholder strong {
  color: var(--ink-950);
  display: block;
  font-size: 1rem;
  margin-bottom: 8px;
}

.snapshot-card span,
.timeline-card .month-label,
.support-card span,
.care-card span {
  color: var(--clay-500);
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.band {
  margin-top: 36px;
}

.band-grid {
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfd 100%);
  border: 1px solid rgba(17, 17, 17, 0.05);
  border-radius: 36px;
  box-shadow: var(--shadow-lg);
  color: var(--ink-950);
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
  overflow: hidden;
  padding: 52px;
  position: relative;
}

.band-grid::before {
  background: radial-gradient(circle, rgba(0, 0, 0, 0.04), transparent 62%);
  content: "";
  height: 380px;
  position: absolute;
  right: -120px;
  top: -120px;
  width: 380px;
}

.band-copy,
.band-actions {
  position: relative;
  z-index: 1;
}

.band-copy {
  max-width: 760px;
}

.band-copy h2 {
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.3rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.03;
  margin-bottom: 14px;
  max-width: 13.5ch;
}

.band-copy p {
  color: var(--ink-700);
  max-width: 680px;
}

.band-actions {
  align-content: end;
  display: grid;
  padding-top: 72px;
}

.band-panel {
  background:
    radial-gradient(circle at top right, rgba(95, 143, 203, 0.07), transparent 34%),
    #ffffff;
  border: 1px solid rgba(17, 17, 17, 0.06);
  border-radius: 28px;
  margin-left: auto;
  max-width: 440px;
  padding: 28px;
}

.band-panel strong {
  color: var(--ink-700);
  display: block;
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.band-panel p {
  color: var(--ink-700);
  margin-bottom: 18px;
}

.band-points {
  color: var(--ink-700);
  display: grid;
  gap: 14px;
  list-style: none;
}

.band-points li {
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  line-height: 1.8;
  padding-top: 14px;
}

.page-hero {
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfd 100%);
  border: 1px solid rgba(17, 17, 17, 0.05);
  border-radius: 44px;
  box-shadow: var(--shadow-lg);
  color: var(--ink-950);
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: 44px;
  padding: 64px;
}

.page-hero-title {
  font-size: clamp(3rem, 6vw, 5rem);
  margin-bottom: 18px;
  max-width: 10ch;
  font-weight: 800;
  line-height: 0.94;
}

.page-hero-lede {
  max-width: 620px;
}

.page-hero-note {
  color: var(--accent-blue);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-top: 16px;
}

.stats-panel,
.timeline-intro {
  color: var(--ink-950);
  display: grid;
  gap: 18px;
  padding: 36px;
  position: relative;
  z-index: 1;
}

.stats-panel {
  background:
    radial-gradient(circle at top right, rgba(95, 143, 203, 0.08), transparent 32%),
    rgba(255, 255, 255, 0.9);
  display: grid;
  gap: 18px;
}

.stats-panel .panel-title {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.stats-stack {
  display: grid;
  gap: 22px;
}

.stats-stack li {
  align-items: start;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  display: grid;
  gap: 8px;
  padding-top: 16px;
}

.stats-stack strong {
  font-size: 1.28rem;
}

.stats-stack span {
  color: var(--ink-700);
  font-size: 0.92rem;
  line-height: 1.7;
  text-align: left;
}

.metric-card strong {
  color: var(--ink-950);
  display: block;
  font-size: 2.4rem;
  line-height: 1;
  margin-bottom: 10px;
}

.timeline-grid {
  grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1fr);
  margin-top: 24px;
}

.timeline-cards {
  display: grid;
  gap: 24px;
  max-height: 820px;
  overflow-y: auto;
  padding-right: 8px;
  scrollbar-width: thin;
}

.timeline-card {
  padding: 40px;
}

.timeline-card ul {
  display: grid;
  gap: 16px;
  list-style: none;
  margin-top: 22px;
}

.timeline-card li {
  border-top: 1px solid rgba(21, 34, 35, 0.08);
  padding-top: 14px;
}

.timeline-card:first-child {
  background:
    radial-gradient(circle at top right, rgba(95, 143, 203, 0.08), transparent 32%),
    #ffffff;
}

.timeline-card strong {
  display: block;
  font-size: 0.92rem;
  margin-bottom: 4px;
}

.method-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.method-card {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(21, 34, 35, 0.08);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 22px;
  grid-template-columns: 72px 1fr;
  padding: 36px;
}

.method-number {
  align-items: center;
  background: linear-gradient(135deg, var(--ink-950), #3a3a3c);
  border-radius: 22px;
  color: var(--sand-100);
  display: inline-flex;
  font-size: 1.4rem;
  font-weight: 700;
  height: 72px;
  justify-content: center;
  width: 72px;
}

.method-copy h3 {
  font-size: 1.14rem;
  line-height: 1.2;
}

.method-copy p {
  color: var(--ink-700);
  font-size: 0.95rem;
  margin-top: 10px;
}

.giving-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
}

.giving-photo,
.care-photo {
  border-radius: 28px;
  min-height: 100%;
  overflow: hidden;
}

.giving-photo img,
.care-photo img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.giving-slider {
  background:
    radial-gradient(circle at top right, rgba(95, 143, 203, 0.08), transparent 30%),
    #ffffff;
  border: 1px solid rgba(17, 17, 17, 0.06);
  border-radius: 28px;
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 18px;
  overflow: hidden;
  padding: 20px;
}

.slider-head {
  align-items: center;
  display: flex;
  gap: 16px;
  justify-content: space-between;
}

.slider-head strong {
  color: var(--ink-950);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.slider-scroll-note {
  color: var(--ink-700);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.slider-controls {
  display: flex;
  gap: 8px;
}

.slider-button {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 999px;
  color: var(--ink-950);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 9px 14px;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.slider-button:hover,
.slider-button:focus-visible {
  background: rgba(95, 143, 203, 0.08);
  border-color: rgba(95, 143, 203, 0.2);
  outline: none;
  transform: translateY(-1px);
}

.slider-viewport {
  border-radius: 24px;
  overflow: hidden;
}

.slider-track {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.slider-track::-webkit-scrollbar {
  display: none;
}

.slider-slide {
  background: #edf2f7;
  border-radius: 22px;
  flex: 0 0 100%;
  overflow: hidden;
  scroll-snap-align: start;
}

.slider-slide img {
  aspect-ratio: 16 / 10;
  background: #edf2f7;
  object-fit: contain;
  width: 100%;
}

.outreach-slider {
  align-content: start;
}

.outreach-slider .slider-slide img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.timeline-slider {
  margin-top: 8px;
  padding: 16px;
}

.timeline-slider .slider-slide img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.care-grid {
  margin-top: 24px;
}

.team-card {
  text-align: center;
}

.portrait {
  border-radius: 24px;
  margin-bottom: 18px;
  overflow: hidden;
  position: relative;
}

.portrait img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 0.3s ease, filter 0.3s ease;
  width: 100%;
}

.portrait::after {
  background: linear-gradient(180deg, transparent 45%, rgba(17, 17, 17, 0.2) 100%);
  content: "";
  inset: 0;
  opacity: 0;
  position: absolute;
  transition: opacity 0.3s ease;
}

.team-card:hover .portrait img,
.team-card:focus-within .portrait img {
  filter: saturate(1.04);
  transform: scale(1.05);
}

.team-card:hover .portrait::after,
.team-card:focus-within .portrait::after {
  opacity: 1;
}

.blog-feature-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 246, 248, 0.96));
  border: 1px solid rgba(17, 17, 17, 0.06);
  border-radius: 36px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 28px;
  justify-content: space-between;
  min-height: 100%;
  overflow: hidden;
  padding: 30px;
  position: relative;
  z-index: 1;
}

.blog-feature-card::before {
  background: radial-gradient(circle at top right, rgba(0, 113, 227, 0.1), transparent 42%);
  content: "";
  inset: 0;
  position: absolute;
}

.blog-feature-card .hero-column-label,
.blog-feature-card .scripture-lines,
.blog-feature-card .hero-scripture-note {
  position: relative;
  z-index: 1;
}

.blog-feature-card:hover .scripture-lines p,
.blog-feature-card:focus-within .scripture-lines p {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 32px rgba(17, 17, 17, 0.08);
  transform: translateX(6px);
}

.blog-story-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.blog-feed-section {
  margin-top: 0;
}

.blog-section-heading {
  align-items: end;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 24px;
}

.blog-section-heading .section-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  max-width: 820px;
}

.blog-story-card {
  background:
    radial-gradient(circle at top right, rgba(95, 143, 203, 0.08), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fbfbfd 100%);
  border: 1px solid rgba(17, 17, 17, 0.06);
  border-radius: 28px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow 0.24s ease, transform 0.24s ease;
}

.blog-story-card:hover,
.blog-story-card:focus-within {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.blog-story-preview {
  display: grid;
  gap: 18px;
  grid-template-rows: auto auto 1fr auto;
  min-height: 260px;
  padding: 28px;
}

.blog-story-kicker {
  color: var(--ink-700);
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.blog-story-title {
  color: var(--ink-950);
  display: block;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.blog-story-summary,
.story-modal-body p {
  color: var(--ink-700);
  font-size: 0.98rem;
  line-height: 1.85;
}

.blog-read-more {
  align-self: end;
  background: var(--ink-950);
  border: none;
  border-radius: 999px;
  color: var(--white);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 700;
  justify-self: start;
  padding: 11px 18px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-read-more:hover,
.blog-read-more:focus-visible {
  box-shadow: 0 12px 24px rgba(17, 17, 17, 0.14);
  outline: none;
  transform: translateY(-1px);
}

.blog-highlight-card .blog-story-preview {
  min-height: 100%;
}

.story-modal {
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  transition: opacity 0.24s ease;
  z-index: 70;
}

.story-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.story-overlay {
  background: rgba(17, 17, 17, 0.48);
  inset: 0;
  position: absolute;
}

.story-dialog {
  display: grid;
  inset: 0;
  padding: 24px;
  place-items: center;
  position: absolute;
}

.story-panel {
  background: linear-gradient(180deg, #ffffff 0%, #f5f5f7 100%);
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
  max-height: min(820px, calc(100vh - 48px));
  max-width: 920px;
  overflow-y: auto;
  padding: 44px;
  position: relative;
  width: min(100%, 920px);
}

.story-panel h3 {
  color: var(--ink-950);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin: 14px 56px 28px 0;
}

.story-modal-body {
  display: grid;
  gap: 20px;
  max-width: 74ch;
}

.story-modal-body p {
  color: var(--ink-800);
  font-size: 1.03rem;
  line-height: 1.95;
  margin: 0;
}

.story-modal-body p strong {
  color: var(--ink-950);
  font-size: 1.16rem;
}

.story-modal-body h4 {
  color: var(--ink-950);
  font-size: 1.28rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 16px 0 -4px;
}

.story-modal-body blockquote {
  background: rgba(110, 151, 200, 0.08);
  border-left: 4px solid var(--accent-blue);
  border-radius: 18px;
  color: var(--ink-800);
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.8;
  margin: 4px 0;
  padding: 18px 22px;
}

.team-role {
  color: var(--clay-500);
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  margin-top: 12px;
  text-transform: uppercase;
}

.cta-slab {
  background:
    radial-gradient(circle at top right, rgba(95, 143, 203, 0.08), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f7f7fa 100%);
  color: var(--ink-950);
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) auto;
  margin-top: 0;
  padding: 44px;
}

.cta-slab h2 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
}

.footer {
  margin-top: 20px;
  padding-bottom: 20px;
}

.page-shell > .section:last-of-type {
  margin-top: 44px;
  padding-bottom: 0;
}

.footer-grid {
  background: linear-gradient(180deg, #ffffff 0%, #f2f2f5 100%);
  border: 1px solid rgba(17, 17, 17, 0.05);
  border-radius: 36px;
  box-shadow: var(--shadow-lg);
  color: var(--ink-950);
  grid-template-columns: 1.2fr 0.8fr 0.8fr 0.9fr;
  overflow: hidden;
  padding: 40px;
}

.footer-block {
  background: rgba(255, 255, 255, 0.5);
  border-color: rgba(17, 17, 17, 0.04);
  box-shadow: none;
  padding: 28px;
}

.footer-title {
  font-size: 2.1rem;
  margin-bottom: 12px;
}

.footer-copy {
  margin-bottom: 20px;
}

.footer-list {
  display: grid;
  gap: 12px;
  list-style: none;
}

.footer-list a,
.footer-list span {
  color: var(--ink-700);
  font-size: 0.92rem;
}

.footer-list a:hover,
.footer-list a:focus-visible {
  color: var(--ink-950);
  outline: none;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.footer-meta {
  color: var(--ink-700);
  font-size: 0.84rem;
  margin-top: 26px;
}

.contact-bubble {
  background: var(--ink-950);
  border: none;
  border-radius: 999px;
  bottom: 28px;
  box-shadow: 0 18px 38px rgba(21, 34, 35, 0.18);
  color: var(--sand-100);
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 600;
  padding: 14px 20px;
  position: fixed;
  right: 28px;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  z-index: 45;
}

.contact-bubble:hover,
.contact-bubble:focus-visible {
  background: var(--clay-500);
  box-shadow: 0 22px 46px rgba(17, 17, 17, 0.2);
  outline: none;
  transform: translateY(-2px);
}

.contact-modal {
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  transition: opacity 0.24s ease;
  z-index: 60;
}

.contact-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}


.contact-overlay {
  background: rgba(17, 17, 17, 0.48);
  inset: 0;
  position: absolute;
}

.contact-dialog {
  display: grid;
  inset: 0;
  padding: 24px;
  place-items: center;
  position: absolute;
}

.contact-panel {
  background: linear-gradient(180deg, #ffffff 0%, #f5f5f7 100%);
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
  max-width: 640px;
  padding: 34px;
  position: relative;
  width: min(100%, 640px);
}

.contact-panel h3 {
  font-family: "Manrope", sans-serif;
  font-size: 2.3rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 10px;
}

.contact-subtext {
  color: var(--ink-700);
  margin-bottom: 22px;
}

.contact-view {
  display: grid;
  gap: 0;
}

.contact-view[hidden] {
  display: none;
}

.contact-choice-grid {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.contact-choice {
  align-items: start;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(21, 34, 35, 0.12);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  color: var(--ink-950);
  cursor: pointer;
  display: grid;
  gap: 6px;
  padding: 18px 20px;
  text-align: left;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.contact-choice strong {
  font-size: 1.02rem;
  line-height: 1.2;
}

.contact-choice span {
  color: var(--ink-700);
  line-height: 1.65;
}

.contact-choice:hover,
.contact-choice:focus-visible {
  border-color: rgba(0, 113, 227, 0.36);
  box-shadow: 0 18px 30px rgba(17, 17, 17, 0.08);
  outline: none;
  transform: translateY(-1px);
}

.contact-back {
  align-self: start;
  background: transparent;
  border: none;
  color: var(--clay-500);
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  padding: 0;
  text-transform: uppercase;
}

.contact-back:hover,
.contact-back:focus-visible {
  color: var(--ink-950);
  outline: none;
}

.contact-close {
  align-items: center;
  background: rgba(21, 34, 35, 0.08);
  border: none;
  border-radius: 999px;
  color: var(--ink-950);
  cursor: pointer;
  display: inline-flex;
  font-size: 1.2rem;
  height: 40px;
  justify-content: center;
  position: absolute;
  right: 18px;
  top: 18px;
  width: 40px;
}

.contact-close:hover,
.contact-close:focus-visible {
  background: rgba(21, 34, 35, 0.14);
  outline: none;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  color: var(--ink-800);
  display: grid;
  font-size: 0.86rem;
  font-weight: 600;
  gap: 8px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(21, 34, 35, 0.12);
  border-radius: 16px;
  color: var(--ink-950);
  padding: 14px 16px;
}

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

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(0, 113, 227, 0.72);
  box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.12);
  outline: none;
}

.contact-form--newsletter {
  margin-top: 6px;
}

.contact-form--newsletter .submit-btn {
  margin-top: 8px;
}

.submit-btn {
  background: var(--ink-950);
  border: none;
  border-radius: 999px;
  color: var(--sand-100);
  cursor: pointer;
  font-weight: 600;
  padding: 15px 20px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.submit-btn:hover,
.submit-btn:focus-visible {
  background: var(--clay-500);
  outline: none;
  transform: translateY(-1px);
}

.form-status {
  color: var(--olive-500);
  display: none;
  font-size: 0.9rem;
  font-weight: 600;
}

.form-status.is-visible {
  display: block;
}

.reveal {
  filter: blur(10px);
  opacity: 0;
  transform: translate3d(0, 38px, 0) scale(0.985);
  transition:
    opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.85s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

.reveal.is-visible {
  filter: blur(0);
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.sr-only {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

@media (max-width: 1100px) {
  .hero-shell,
  .page-hero,
  .mission-shell,
  .story-grid,
  .impact-panel,
  .timeline-grid,
  .giving-grid,
  .cta-slab,
  .footer-grid,
  .band-grid {
    grid-template-columns: 1fr;
  }

  .flow-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .snapshot-grid,
  .metric-grid,
  .principles-grid,
  .support-grid,
  .care-grid,
  .team-grid,
  .blog-story-grid,
  .method-grid,
  .media-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-title,
  .page-hero-title {
    max-width: none;
  }

  .hero-visual {
    min-height: 520px;
  }
}

@media (max-width: 860px) {
  .site-header {
    padding: 12px 14px;
  }

  .header-shell {
    border-radius: 24px;
    gap: 14px;
    padding: 12px 14px;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
  }

  .nav-panel {
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(21, 34, 35, 0.08);
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    flex-direction: column;
    gap: 16px;
    left: 0;
    opacity: 0;
    padding: 18px;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: calc(100% + 12px);
    transform: translateY(-8px);
    transition: opacity 0.24s ease, transform 0.24s ease;
  }

  .nav-panel.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links {
    align-items: stretch;
    flex-direction: column;
    width: 100%;
  }

  .nav-links a,
  .nav-cta {
    text-align: center;
    width: 100%;
  }

  .page-shell {
    padding: 102px 16px 32px;
  }

  .hero-shell,
  .page-hero,
  .band-grid,
  .mission-shell,
  .impact-panel {
    border-radius: 32px;
    padding: 40px 24px;
  }

  .section {
    margin-top: 60px;
  }

  .section-title {
    font-size: clamp(2rem, 8vw, 2.8rem);
    line-height: 1.02;
  }

  .section-lede,
  .page-hero-lede,
  .hero-lede,
  .story-copy p,
  .timeline-card p,
  .impact-list span,
  .stats-stack span {
    font-size: 0.95rem;
    line-height: 1.75;
  }

  .hero-facts {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    justify-content: stretch;
    min-height: auto;
  }

  .hero-scripture-card {
    transform: none;
  }

  .floating-note {
    position: static;
    transform: none;
  }

  .section-head {
    align-items: start;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 28px;
  }

  .timeline-cards {
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }

  .project-sync-grid {
    grid-template-columns: 1fr;
  }

  .project-scroll-pane {
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }

  .impact-list {
    grid-template-columns: 1fr;
    max-width: 820px;
  }

  #next-season .impact-list {
    grid-template-columns: 1fr;
  }

  .story-card,
  .timeline-card,
  .footer-block,
  .principle-card,
  .method-card,
  .media-card {
    border-radius: 24px;
  }

  .story-card,
  .timeline-card,
  .principle-card,
  .method-card,
  .media-placeholder,
  .footer-block {
    padding: 28px;
  }

  .project-accordion summary {
    font-size: 1.15rem;
    padding: 20px 22px;
  }

  .project-accordion-body {
    padding: 22px;
  }

  #projects .giving-grid {
    gap: 20px;
  }

  #projects .section-head {
    gap: 14px;
    margin-bottom: 24px;
  }

  #projects .section-title {
    font-size: clamp(2.6rem, 12vw, 4rem);
    line-height: 0.98;
    max-width: none;
  }

  #projects .section-lede {
    margin-left: 0;
    max-width: 100%;
    padding-bottom: 0;
  }

  #projects .project-copy-scroll {
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }

  #projects .story-card,
  #projects .giving-slider {
    padding: 24px;
  }

  .slider-head {
    gap: 12px;
  }

  .slider-head strong,
  .slider-scroll-note {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
  }

  .brand-name {
    font-size: 0.92rem;
  }

  .brand-tag {
    font-size: 0.7rem;
    letter-spacing: 0.14em;
  }

  .hero-title,
  .page-hero-title {
    font-size: clamp(2.8rem, 13vw, 4.2rem);
    line-height: 0.96;
  }

  .hero-shell {
    gap: 28px;
    padding-top: 34px;
  }

  .page-hero {
    gap: 24px;
  }

  .method-card {
    grid-template-columns: 1fr;
  }

  .blog-story-grid {
    grid-template-columns: 1fr;
  }

  .page-blog .blog-hero-pair {
    grid-template-columns: 1fr;
    margin-bottom: 42px;
  }

  .blog-section-heading {
    align-items: start;
    flex-direction: column;
    gap: 8px;
  }

  .blog-story-preview {
    min-height: 220px;
  }

  .method-number {
    border-radius: 18px;
  }

  .contact-bubble {
    bottom: 18px;
    left: 16px;
    right: 16px;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .page-shell {
    padding: 94px 12px 24px;
  }

  .header-shell {
    padding: 10px 12px;
  }

  .brand {
    gap: 10px;
  }

  .brand-mark {
    border-radius: 16px;
    height: 42px;
    width: 42px;
  }

  .brand-tag {
    display: none;
  }

  .hero-shell,
  .page-hero,
  .band-grid,
  .mission-shell,
  .impact-panel {
    border-radius: 26px;
    padding: 28px 18px;
  }

  .section {
    margin-top: 42px;
  }

  .section-title {
    font-size: clamp(1.8rem, 9vw, 2.4rem);
  }

  .story-card,
  .timeline-card,
  .principle-card,
  .method-card,
  .media-placeholder,
  .footer-block,
  #projects .story-card,
  #projects .giving-slider {
    padding: 20px;
  }

  #projects .project-accordion {
    border-radius: 28px;
  }

  #projects .project-accordion summary {
    padding: 22px 20px;
  }

  #projects .project-accordion-body {
    padding: 18px;
  }

  .project-accordion summary {
    padding: 18px;
  }

  .project-accordion-body {
    padding: 18px;
  }

  .slider-button {
    padding: 8px 12px;
  }

  .blog-feature-card {
    border-radius: 24px;
    padding: 22px;
  }

  .blog-story-card {
    border-radius: 24px;
  }

  .blog-story-preview {
    min-height: 190px;
    padding: 22px;
  }

  .blog-story-title {
    font-size: 1.55rem;
  }

  .story-panel {
    padding: 28px;
  }

  .contact-panel {
    padding: 24px;
  }
}
