:root {
  --ink: #30243d;
  --plum: #8d6cc8;
  --berry: #b98bd4;
  --aubergine: #604d9d;
  --ivory: #fff7f1;
  --warm: #ffd5bd;
  --paper: #fffaf6;
  --gold: #ffad55;
  --gold-light: #ffd47c;
  --sage: #9a8ce0;
  --moss: #7463b7;
  --rose: #ff826f;
  --muted: #74677c;
  --line: rgba(141, 108, 200, 0.18);
  --shadow-soft: 0 18px 52px rgba(96, 77, 157, 0.14);
  --shadow-deep: 0 28px 76px rgba(96, 77, 157, 0.24);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(141, 108, 200, 0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 130, 111, 0.045) 1px, transparent 1px),
    var(--ivory);
  background-size: 88px 88px, 88px 88px, auto;
  font-family: var(--sans);
  line-height: 1.6;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at 10% 8%, rgba(185, 139, 212, 0.2), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(255, 130, 111, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(255, 247, 239, 0.2), rgba(255, 247, 239, 0.88));
}

body::after {
  position: fixed;
  inset: auto -12vw 8vh auto;
  z-index: -1;
  width: 42vw;
  min-width: 360px;
  height: 42vw;
  min-height: 360px;
  content: "";
  pointer-events: none;
  background:
    repeating-conic-gradient(from 24deg, rgba(141, 108, 200, 0.12) 0 8deg, transparent 8deg 18deg),
    radial-gradient(circle, rgba(255, 130, 111, 0.2), transparent 64%);
  border-radius: 50%;
}

svg {
  max-width: 100%;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 30;
  padding: 0.7rem 1rem;
  color: var(--ivory);
  background: var(--ink);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(141, 108, 200, 0.14);
  background: rgba(255, 250, 245, 0.86);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 36px));
  min-height: 78px;
  margin: 0 auto;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--serif);
  font-size: 1.08rem;
  font-weight: 700;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--ivory);
  background: var(--plum);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(96, 77, 157, 0.18);
}

.brand-mark svg {
  width: 28px;
  height: 28px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.site-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--plum);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 19px;
  height: 2px;
  content: "";
  background: currentColor;
}

.nav-toggle span::before {
  transform: translateY(-7px);
}

.nav-toggle span::after {
  transform: translateY(5px);
}

.container {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.section {
  padding: 104px 0;
}

.section-tight {
  padding: 72px 0;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--moss);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  line-height: 1.02;
}

h1 {
  max-width: 11.5ch;
  font-size: clamp(3rem, 5.2vw, 5.9rem);
}

h2 {
  font-size: clamp(2rem, 3.4vw, 3.7rem);
}

h3 {
  font-size: clamp(1.25rem, 1.8vw, 1.9rem);
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.62rem;
  min-height: 52px;
  padding: 0.88rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  line-height: 1.1;
  text-decoration: none;
  overflow: hidden;
  transition: background-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.btn::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(110deg, transparent 0 38%, rgba(255, 255, 255, 0.28) 48%, transparent 58% 100%);
  transform: translateX(-120%);
  transition: transform 520ms ease;
}

.btn:hover::after,
.btn:focus-visible::after {
  transform: translateX(120%);
}

.btn-icon {
  position: relative;
  z-index: 1;
  width: 1.18rem;
  height: 1.18rem;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--ivory);
  background: linear-gradient(135deg, var(--plum), var(--rose));
  box-shadow: 0 14px 34px rgba(96, 77, 157, 0.22);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--aubergine);
  box-shadow: 0 18px 42px rgba(96, 77, 157, 0.28);
}

.btn-secondary {
  color: var(--ink);
  background: rgba(255, 250, 244, 0.82);
  border-color: rgba(141, 108, 200, 0.2);
  box-shadow: 0 12px 28px rgba(96, 77, 157, 0.08);
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--plum);
  font-weight: 900;
  text-decoration: none;
}

.text-link::after {
  width: 2.2rem;
  height: 1px;
  margin-left: 0.8rem;
  content: "";
  background: currentColor;
}

.hero {
  position: relative;
  min-height: calc(100vh - 78px);
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 72px 0 92px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero::after {
  position: absolute;
  right: -8vw;
  bottom: -9rem;
  width: 46vw;
  min-width: 420px;
  height: 46vw;
  min-height: 420px;
  content: "";
  background:
    repeating-linear-gradient(120deg, rgba(255, 130, 111, 0.14) 0 8px, transparent 8px 26px),
    repeating-linear-gradient(42deg, rgba(141, 108, 200, 0.11) 0 5px, transparent 5px 30px);
  border-radius: 999px;
  opacity: 0.7;
  filter: blur(0.2px);
}

.hero::before {
  position: absolute;
  left: -10vw;
  top: 12%;
  width: 38vw;
  min-width: 340px;
  height: 38vw;
  min-height: 340px;
  content: "";
  background:
    repeating-conic-gradient(from 8deg, rgba(255, 173, 85, 0.1) 0 8deg, transparent 8deg 18deg),
    radial-gradient(circle, rgba(185, 139, 212, 0.12), transparent 66%);
  border-radius: 999px;
  opacity: 0.82;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.92fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7.5rem);
}

.hero-copy {
  max-width: 620px;
  z-index: 3;
}

.hero-lede {
  max-width: 660px;
  margin: 1.45rem 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.6vw, 1.32rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.hero-note {
  position: relative;
  max-width: 560px;
  margin-top: 1.55rem;
  padding-left: 1.1rem;
  color: var(--muted);
  font-size: 0.96rem;
}

.hero-note::before {
  position: absolute;
  left: 0;
  top: 0.25rem;
  bottom: 0.25rem;
  width: 3px;
  content: "";
  background: var(--gold);
  border-radius: 99px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.4rem;
}

.hero-points span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 38px;
  padding: 0.48rem 0.72rem;
  color: var(--aubergine);
  background: rgba(255, 250, 246, 0.76);
  border: 1px solid rgba(141, 108, 200, 0.16);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(96, 77, 157, 0.08);
  font-size: 0.86rem;
  font-weight: 900;
}

.hero-points svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.tapestry-panel {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background:
    linear-gradient(150deg, rgba(255, 250, 245, 0.98), rgba(255, 226, 216, 0.74)),
    var(--paper);
  border: 1px solid rgba(141, 108, 200, 0.16);
  border-radius: 28px 8px 28px 8px;
  box-shadow: var(--shadow-deep);
  transform: perspective(900px) rotateY(-2deg) rotateX(1deg);
  transition: box-shadow 260ms ease, transform 260ms ease;
}

.tapestry-panel:hover {
  box-shadow: 0 36px 90px rgba(96, 77, 157, 0.3);
  transform: perspective(900px) rotateY(0deg) rotateX(0deg) translateY(-4px);
}

.tapestry-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  filter: saturate(1.04) contrast(1.05);
}

.tapestry-panel::before {
  position: absolute;
  inset: 24px;
  content: "";
  z-index: 2;
  border: 1px solid rgba(255, 250, 244, 0.28);
  border-radius: 20px 6px 20px 6px;
}

.tapestry-panel::after {
  position: absolute;
  inset: 0;
  content: "";
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(59, 37, 48, 0), rgba(59, 37, 48, 0.06)),
    radial-gradient(circle at 70% 18%, rgba(255, 130, 111, 0.08), transparent 24%),
    radial-gradient(circle at 18% 78%, rgba(141, 108, 200, 0.06), transparent 30%);
}

.loom-line {
  position: absolute;
  z-index: 2;
  background: rgba(141, 108, 200, 0.12);
}

.loom-line-one {
  left: 18%;
  top: 0;
  width: 1px;
  height: 100%;
  box-shadow: 92px 0 0 rgba(141, 108, 200, 0.08), 184px 0 0 rgba(255, 130, 111, 0.07), 276px 0 0 rgba(141, 108, 200, 0.08);
}

.loom-line-two {
  left: 0;
  top: 28%;
  width: 100%;
  height: 1px;
  box-shadow: 0 94px 0 rgba(141, 108, 200, 0.08), 0 188px 0 rgba(255, 130, 111, 0.07);
}

.thread {
  position: absolute;
  left: -16%;
  right: -16%;
  z-index: 3;
  height: 56px;
  border-radius: 999px;
  opacity: 0.42;
  transition: transform 700ms ease, opacity 700ms ease;
}

.thread-one {
  top: 118px;
  background: linear-gradient(90deg, #8d6cc8, #b98bd4, #8d6cc8);
  transform: rotate(-8deg);
}

.thread-two {
  top: 286px;
  background: linear-gradient(90deg, #ffd5bd, #ff826f, #ffd5bd);
  transform: rotate(7deg);
}

.thread-three {
  top: 440px;
  height: 38px;
  background: linear-gradient(90deg, #ffd47c, #ff826f, #ffd47c);
  transform: rotate(-4deg);
}

.hero-seal {
  position: absolute;
  right: 28px;
  top: 28px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 0.34rem;
  width: 132px;
  height: 132px;
  align-items: center;
  justify-content: center;
  color: var(--ivory);
  text-align: center;
  background: linear-gradient(145deg, var(--berry), var(--rose));
  border: 8px solid rgba(255, 250, 245, 0.72);
  border-radius: 999px;
  box-shadow: 0 22px 55px rgba(96, 77, 157, 0.28);
}

.hero-seal span {
  display: block;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.hero-seal strong {
  font-family: var(--serif);
  font-size: 1.9rem;
  line-height: 1;
}

.tapestry-panel:hover .thread-one {
  transform: rotate(-6deg) translateY(-6px);
}

.tapestry-panel:hover .thread-two {
  transform: rotate(5deg) translateY(6px);
}

.tapestry-panel:hover .thread-three {
  transform: rotate(-2deg) translateY(-4px);
}

.promise-band {
  position: relative;
  color: var(--ivory);
  background: linear-gradient(135deg, #7463b7, #ff826f);
  margin-top: 0;
  z-index: 2;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
}

.promise-band::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 209, 138, 0.2), transparent 34%),
    radial-gradient(circle at 88% 18%, rgba(185, 139, 212, 0.22), transparent 28%);
}

.promise-band::after {
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 250, 242, 0.55), transparent);
}

.promise-inner {
  position: relative;
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.promise-band .eyebrow {
  color: var(--gold-light);
}

.scripture {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 3.25rem);
  line-height: 1.15;
}

.scripture-meta {
  margin: 1rem 0 0;
  color: var(--gold-light);
  font-weight: 900;
}

.intro-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1.45fr);
  gap: clamp(2rem, 4vw, 4.4rem);
  align-items: start;
}

.minister-card {
  position: sticky;
  top: 110px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.minister-card,
.quote-panel,
.contact-card {
  transition: box-shadow 220ms ease, transform 220ms ease;
}

.minister-card:hover,
.quote-panel:hover,
.contact-card:hover,
.contact-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: var(--shadow-deep);
}

.minister-card:hover {
  box-shadow: none;
}

.minister-photo {
  position: relative;
  margin: 0 0 1.05rem;
  overflow: hidden;
  aspect-ratio: 5 / 5.8;
  background: var(--warm);
  border: 1px solid rgba(141, 108, 200, 0.2);
  border-radius: 999px 999px 28px 28px;
  box-shadow: var(--shadow-soft);
}

.minister-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 58%, rgba(59, 37, 48, 0.18));
  pointer-events: none;
}

.minister-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 18%;
}

.minister-emblem {
  display: grid;
  width: 62px;
  height: 62px;
  margin: -3.35rem 0 1rem 1rem;
  place-items: center;
  color: var(--ivory);
  background: linear-gradient(145deg, var(--gold-light), var(--rose));
  border: 5px solid var(--paper);
  border-radius: 999px;
  box-shadow: 0 16px 34px rgba(96, 77, 157, 0.24);
}

.minister-emblem svg {
  width: 38px;
  height: 38px;
}

.minister-card h2 {
  font-size: clamp(2.1rem, 3.4vw, 3.35rem);
  line-height: 0.98;
}

.minister-card p {
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.story-copy {
  max-width: 850px;
  font-size: 1.08rem;
  padding-top: 0.4rem;
}

.story-copy h2 {
  margin-bottom: 1.2rem;
  max-width: 850px;
  font-size: clamp(2.6rem, 4vw, 4.45rem);
}

.story-copy p {
  max-width: 760px;
  margin: 0 0 0.9rem;
}

.weave-map {
  position: relative;
  padding: 28px 0 112px;
  overflow: hidden;
}

.weave-map::before {
  position: absolute;
  left: 50%;
  top: 48px;
  width: min(880px, 86vw);
  height: 260px;
  content: "";
  background:
    linear-gradient(90deg, transparent 0 8%, var(--gold-light) 8% 10%, transparent 10% 34%, var(--rose) 34% 36%, transparent 36% 62%, var(--berry) 62% 64%, transparent 64%),
    radial-gradient(circle at 14% 72%, rgba(185, 139, 212, 0.24), transparent 20%),
    radial-gradient(circle at 82% 28%, rgba(255, 130, 111, 0.22), transparent 22%);
  border: 1px solid rgba(141, 108, 200, 0.16);
  border-radius: 999px;
  opacity: 0.86;
  transform: translateX(-50%) rotate(-2deg);
}

.weave-map-inner {
  position: relative;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.weave-heading {
  position: relative;
  z-index: 1;
  max-width: 520px;
}

.weave-path {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  padding: 1rem;
  background: rgba(255, 250, 245, 0.74);
  border: 1px solid rgba(141, 108, 200, 0.16);
  border-radius: 28px 8px 28px 8px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

.weave-node {
  min-height: 180px;
  padding: 1.1rem;
  border-left: 2px solid rgba(141, 108, 200, 0.3);
}

.weave-node span {
  display: block;
  color: var(--plum);
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.4vw, 2.7rem);
  line-height: 1;
}

.weave-node p {
  margin: 1rem 0 0;
  color: var(--muted);
}

.story-copy p {
  margin: 0 0 1.1rem;
}

.support-section {
  color: var(--ivory);
  background:
    linear-gradient(135deg, rgba(116, 99, 183, 0.96), rgba(255, 130, 111, 0.9)),
    #7463b7;
  position: relative;
  overflow: hidden;
}

.support-section::before {
  position: absolute;
  right: -0.08em;
  top: -0.18em;
  content: "HOPE";
  color: rgba(255, 250, 242, 0.08);
  font-family: var(--serif);
  font-size: clamp(6rem, 15vw, 15rem);
  line-height: 1;
}

.support-section .eyebrow {
  color: var(--gold-light);
}

.support-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.support-statement {
  position: sticky;
  top: 110px;
  max-width: 440px;
}

.support-statement p {
  max-width: 560px;
  color: rgba(255, 250, 242, 0.78);
}

.support-section .text-link {
  color: var(--gold-light);
  margin-top: 0.6rem;
}

.support-list {
  display: grid;
  gap: 0.85rem;
}

.support-row {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: clamp(1rem, 3vw, 2rem);
  padding: 1.35rem;
  background: rgba(255, 250, 242, 0.08);
  border: 1px solid rgba(255, 250, 242, 0.16);
  border-radius: 8px;
  box-shadow: 0 18px 38px rgba(48, 36, 61, 0.08);
  backdrop-filter: blur(12px);
  transition: background-color 220ms ease, border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.support-row:hover {
  background: rgba(255, 250, 242, 0.14);
  border-color: rgba(255, 250, 242, 0.28);
  box-shadow: 0 24px 54px rgba(48, 36, 61, 0.14);
  transform: translateY(-3px);
}

.support-icon {
  display: grid;
  grid-template-columns: 44px;
  align-items: center;
  color: var(--gold-light);
  font-weight: 900;
}

.support-icon svg {
  width: 44px;
  height: 44px;
  padding: 0.58rem;
  color: var(--ivory);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  background: rgba(255, 250, 242, 0.12);
  border: 1px solid rgba(255, 250, 242, 0.2);
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(255, 209, 138, 0.12);
}

.support-row h3 {
  font-size: clamp(1.35rem, 2vw, 2.2rem);
}

.support-row p {
  max-width: 650px;
  margin: 0.7rem 0 0;
  color: rgba(255, 250, 242, 0.72);
}

.note-band {
  position: relative;
  background: #ffe2d8;
}

.note-band::before {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: min(32vw, 420px);
  content: "";
  background:
    repeating-linear-gradient(0deg, rgba(141, 108, 200, 0.08) 0 8px, transparent 8px 22px),
    rgba(255, 250, 242, 0.34);
}

.note-layout {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.quote-panel {
  position: relative;
  padding: clamp(1.8rem, 4vw, 3.5rem);
  color: var(--ivory);
  background:
    linear-gradient(135deg, rgba(116, 99, 183, 0.96), rgba(255, 130, 111, 0.9));
  border-radius: 28px 8px 28px 8px;
  box-shadow: var(--shadow-deep);
  transform: rotate(-1deg);
  overflow: hidden;
}

.quote-panel::before {
  position: absolute;
  right: 1.2rem;
  top: -0.35rem;
  content: "\"";
  color: rgba(255, 250, 242, 0.18);
  font-family: var(--serif);
  font-size: clamp(7rem, 12vw, 12rem);
  line-height: 1;
}

.quote-panel::after {
  position: absolute;
  inset: 1rem;
  content: "";
  border: 1px solid rgba(255, 250, 242, 0.22);
  border-radius: 20px 6px 20px 6px;
}

.quote-panel p {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.6vw, 3.8rem);
  line-height: 1.04;
}

.note-copy {
  max-width: 620px;
}

.note-copy p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.reach-section {
  position: relative;
  overflow: hidden;
  background: var(--paper);
}

.reach-section::before {
  position: absolute;
  right: min(7vw, 6rem);
  top: 4.8rem;
  width: min(320px, 42vw);
  height: min(320px, 42vw);
  content: "";
  background:
    repeating-conic-gradient(from 18deg, rgba(255, 173, 85, 0.18) 0 9deg, transparent 9deg 20deg),
    radial-gradient(circle, rgba(185, 139, 212, 0.14), transparent 64%);
  border: 1px solid rgba(141, 108, 200, 0.12);
  border-radius: 999px;
  opacity: 0.85;
}

.reach-layout {
  position: relative;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.section-heading {
  max-width: 720px;
}

.section-heading p {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.steps {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 1.25rem;
  padding: 1.7rem 0;
  border-bottom: 1px solid var(--line);
}

.step-number {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--ivory);
  background: linear-gradient(145deg, var(--moss), var(--rose));
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(96, 77, 157, 0.16);
}

.step-number svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.step p {
  margin: 0.45rem 0 0;
  color: var(--muted);
}

.contact {
  position: relative;
  overflow: hidden;
  color: var(--ivory);
  background: linear-gradient(135deg, #7463b7, #ff826f);
}

.contact::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 209, 138, 0.2), transparent 28%),
    repeating-linear-gradient(115deg, rgba(255, 250, 242, 0.06) 0 6px, transparent 6px 24px);
}

.contact-layout {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.contact .eyebrow {
  color: var(--gold-light);
}

.contact p {
  max-width: 620px;
  color: rgba(255, 250, 242, 0.78);
  font-size: 1.08rem;
}

.contact-actions {
  display: grid;
  gap: 1rem;
}

.contact-buttons {
  align-content: center;
  padding: 1.25rem;
  background: rgba(255, 250, 242, 0.1);
  border: 1px solid rgba(255, 250, 242, 0.18);
  border-radius: 8px;
  box-shadow: 0 22px 56px rgba(48, 36, 61, 0.16);
  backdrop-filter: blur(12px);
}

.contact-buttons .btn {
  width: 100%;
}

.contact-buttons .btn-secondary {
  color: var(--ivory);
  background: rgba(255, 250, 242, 0.12);
  border-color: rgba(255, 250, 242, 0.24);
  box-shadow: none;
}

.contact-buttons .btn-secondary:hover,
.contact-buttons .btn-secondary:focus-visible {
  background: rgba(255, 250, 242, 0.18);
}

.contact-card {
  display: grid;
  gap: 0.35rem;
  padding: 1.45rem;
  color: var(--ivory);
  text-decoration: none;
  background: rgba(255, 250, 242, 0.08);
  border: 1px solid rgba(255, 250, 242, 0.18);
  border-radius: 18px 8px 18px 8px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.contact-card:hover,
.contact-card:focus-visible {
  transform: translateY(-3px);
  background: rgba(255, 250, 242, 0.13);
}

.contact-card strong {
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.contact-card span {
  color: var(--gold-light);
  font-weight: 900;
}

.site-footer {
  padding: 32px 0;
  color: rgba(255, 250, 242, 0.76);
  background: #8f2b5c;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  font-size: 0.92rem;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

@media (max-width: 960px) {
  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 78px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.8rem;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow-deep);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0 0.4rem;
  }

  .hero-grid,
  .promise-inner,
  .intro-layout,
  .weave-map-inner,
  .support-layout,
  .note-layout,
  .reach-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero::after {
    opacity: 0.35;
  }

  .tapestry-panel {
    min-height: 500px;
    transform: none;
  }

  .hero-seal {
    right: 34px;
    top: 34px;
    bottom: auto;
    width: 112px;
    height: 112px;
  }

  .promise-band {
    margin-top: 0;
  }

  .weave-path {
    grid-template-columns: 1fr;
  }

  .minister-card,
  .support-statement {
    position: static;
  }
}

@media (max-width: 760px) {
  body {
    overflow-x: hidden;
  }

  body::after,
  .hero::before,
  .hero::after,
  .promise-band::before,
  .note-band::before,
  .support-section::before,
  .weave-map::before {
    display: none;
  }

  .container,
  .nav-wrap,
  .footer-inner {
    width: min(100% - 28px, 1180px);
  }

  .section {
    padding: 56px 0;
  }

  .section-tight {
    padding: 52px 0;
  }

  .hero {
    padding: 44px 0 56px;
  }

  .hero-grid {
    gap: 2rem;
  }

  h1 {
    max-width: 11ch;
    font-size: clamp(2.65rem, 11vw, 4rem);
    line-height: 0.98;
  }

  h2,
  .story-copy h2 {
    font-size: clamp(2rem, 8.5vw, 3rem);
    line-height: 1.04;
  }

  .hero-lede,
  .story-copy,
  .section-heading p,
  .contact p {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .tapestry-panel {
    min-height: 360px;
    border-radius: 18px 8px 18px 8px;
  }

  .tapestry-panel::before,
  .loom-line,
  .thread,
  .hero-seal {
    display: none;
  }

  .promise-band {
    width: 100%;
    border-radius: 0;
  }

  .promise-inner,
  .intro-layout,
  .weave-map-inner,
  .support-layout,
  .note-layout,
  .reach-layout,
  .contact-layout {
    gap: 1.8rem;
  }

  #ministry.section {
    padding-bottom: 30px;
  }

  .minister-card {
    max-width: 420px;
    margin: 0 auto;
  }

  .minister-photo {
    aspect-ratio: 4 / 4.65;
    border-radius: 120px 120px 18px 18px;
  }

  .minister-card h2 {
    font-size: clamp(2.25rem, 10vw, 3.4rem);
  }

  .weave-map {
    padding: 34px 0 52px;
  }

  .weave-path {
    grid-template-columns: 1fr;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
  }

  .weave-node {
    min-height: auto;
    padding: 1.3rem;
    background: rgba(255, 250, 246, 0.86);
    border: 1px solid rgba(141, 108, 200, 0.16);
    border-left: 4px solid var(--plum);
    border-radius: 14px 8px 14px 8px;
    box-shadow: var(--shadow-soft);
  }

  .support-row,
  .step {
    grid-template-columns: 1fr;
  }

  .support-row {
    gap: 0.9rem;
    padding: 1.4rem;
  }

  .support-list {
    gap: 1rem;
  }

  .support-icon {
    margin-bottom: 0.1rem;
  }

  .support-row:hover {
    transform: none;
  }

  .quote-panel {
    padding: 1.7rem;
    transform: none;
  }

  .contact-actions {
    gap: 0.8rem;
  }

  .contact-buttons {
    padding: 1.35rem;
  }
}

@media (max-width: 620px) {
  .container,
  .nav-wrap,
  .footer-inner {
    width: min(100% - 28px, 1180px);
  }

  .section {
    padding: 52px 0;
  }

  .section-tight {
    padding: 58px 0;
  }

  h1 {
    max-width: 10.5ch;
    font-size: clamp(2.7rem, 13vw, 4rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3.1rem);
  }

  .story-copy h2 {
    font-size: clamp(2.2rem, 10vw, 3.25rem);
  }

  .minister-card h2 {
    font-size: clamp(2.2rem, 11vw, 3.1rem);
  }

  .brand {
    font-size: 1rem;
  }

  .hero {
    padding: 52px 0 72px;
  }

  .hero-seal {
    right: 22px;
    top: 22px;
    bottom: auto;
    width: 94px;
    height: 94px;
    border-width: 5px;
  }

  .hero-seal strong {
    font-size: 1.36rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .tapestry-panel {
    min-height: 330px;
  }

  .promise-band {
    width: 100%;
    border-radius: 0;
  }

  .weave-map {
    padding: 26px 0 48px;
  }

  .weave-map::before {
    display: none;
  }

  .support-row,
  .step {
    grid-template-columns: 1fr;
  }

  .support-row {
    padding: 1.3rem;
  }

  .weave-node {
    padding: 1.2rem;
  }

  .quote-panel {
    padding: 1.45rem;
  }

  .contact-buttons {
    padding: 1.2rem;
  }

  .contact-card {
    padding: 1.25rem;
  }
}

@media (max-width: 430px) {
  .container,
  .nav-wrap,
  .footer-inner {
    width: min(100% - 22px, 1180px);
  }

  .brand {
    gap: 0.55rem;
    font-size: 0.92rem;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .site-nav {
    left: 11px;
    right: 11px;
  }

  h1 {
    max-width: 10.5ch;
    font-size: clamp(2.4rem, 12.4vw, 3.35rem);
  }

  h2,
  .story-copy h2 {
    font-size: clamp(1.9rem, 9.5vw, 2.55rem);
  }

  .scripture {
    font-size: clamp(1.5rem, 7.5vw, 2rem);
  }

  .hero {
    padding: 36px 0 48px;
  }

  .tapestry-panel {
    min-height: 280px;
  }

  .minister-card {
    max-width: 100%;
  }

  .minister-card h2 {
    font-size: clamp(2rem, 11vw, 2.85rem);
  }

  .minister-emblem {
    width: 54px;
    height: 54px;
    margin-top: -2.9rem;
  }

  .support-row h3,
  .step h3 {
    font-size: 1.45rem;
  }

  .support-row p,
  .step p {
    line-height: 1.55;
  }

  .support-row {
    padding: 1.22rem;
  }

  .contact-card strong {
    font-size: 1.4rem;
  }
}

@media (max-width: 370px) {
  h1 {
    font-size: 2.2rem;
  }

  .brand span:last-child {
    max-width: 190px;
  }

  .tapestry-panel {
    min-height: 245px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

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