:root {
  --header-height: 74px;
  --panel-height: calc(100vh - var(--header-height));
  --ink: #151515;
  --ink-2: #2f3d4a;
  --gold: #f4bd2f;
  --gold-light: #ffe18b;
  --paper: #f7f4ec;
  --white: #ffffff;
  --mist: #eef3f4;
  --sage: #627d75;
  --clay: #e2572f;
  --sky: #dbeaf4;
  --shadow: 0 24px 70px rgba(21, 21, 21, 0.16);
  --radius: 8px;
}

@supports (height: 100dvh) {
  :root {
    --panel-height: calc(100dvh - var(--header-height));
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

@property --panel-progress {
  syntax: "<number>";
  inherits: false;
  initial-value: 0;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  padding-top: var(--header-height);
}

main {
  scroll-snap-type: none;
}

body.nav-open {
  overflow: hidden;
}

.dove-flight {
  inset: var(--header-height) 0 auto;
  height: 220px;
  overflow: hidden;
  pointer-events: none;
  position: fixed;
  z-index: 3;
}

.dove {
  animation: dove-fly 8.5s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
  background: url("images/dove-real.webp") center / contain no-repeat;
  display: block;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.2));
  height: 78px;
  left: -220px;
  opacity: 0;
  position: absolute;
  transform: translate3d(0, 0, 0);
  width: 139px;
}

.dove-1 {
  animation-delay: 0.25s;
  animation-name: dove-fly-high;
  top: 28px;
}

.dove-2 {
  animation-delay: 0.85s;
  animation-name: dove-fly-middle;
  height: 63px;
  top: 86px;
  width: 113px;
}

.dove-3 {
  animation-delay: 1.45s;
  animation-name: dove-fly-low;
  height: 72px;
  top: 132px;
  width: 128px;
}

@keyframes dove-fly-high {
  0% {
    opacity: 0;
    transform: translate3d(-14vw, 28px, 0) rotate(-7deg) scaleX(0.94) scaleY(1.04);
  }

  12% {
    opacity: 0.38;
  }

  24% {
    transform: translate3d(18vw, -10px, 0) rotate(5deg) scaleX(1.03) scaleY(0.97);
  }

  48% {
    opacity: 0.36;
    transform: translate3d(50vw, -34px, 0) rotate(-2deg) scaleX(0.96) scaleY(1.03);
  }

  70% {
    transform: translate3d(80vw, -2px, 0) rotate(4deg) scaleX(1.02) scaleY(0.98);
  }

  88% {
    opacity: 0.32;
  }

  100% {
    opacity: 0;
    transform: translate3d(114vw, -18px, 0) rotate(-3deg) scaleX(0.96) scaleY(1.04);
  }
}

@keyframes dove-fly-middle {
  0% {
    opacity: 0;
    transform: translate3d(-14vw, 6px, 0) rotate(-3deg) scaleX(1.02) scaleY(0.98);
  }

  14% {
    opacity: 0.36;
  }

  28% {
    transform: translate3d(24vw, -22px, 0) rotate(6deg) scaleX(0.95) scaleY(1.05);
  }

  52% {
    opacity: 0.36;
    transform: translate3d(54vw, 8px, 0) rotate(-4deg) scaleX(1.04) scaleY(0.97);
  }

  74% {
    transform: translate3d(82vw, -24px, 0) rotate(3deg) scaleX(0.97) scaleY(1.03);
  }

  100% {
    opacity: 0;
    transform: translate3d(114vw, -4px, 0) rotate(-2deg) scaleX(1.01) scaleY(0.99);
  }
}

@keyframes dove-fly-low {
  0% {
    opacity: 0;
    transform: translate3d(-14vw, 10px, 0) rotate(-5deg) scaleX(0.97) scaleY(1.03);
  }

  16% {
    opacity: 0.34;
  }

  32% {
    transform: translate3d(24vw, 18px, 0) rotate(4deg) scaleX(1.03) scaleY(0.97);
  }

  56% {
    opacity: 0.34;
    transform: translate3d(58vw, -18px, 0) rotate(-3deg) scaleX(0.95) scaleY(1.04);
  }

  80% {
    opacity: 0.3;
    transform: translate3d(88vw, 10px, 0) rotate(4deg) scaleX(1.02) scaleY(0.98);
  }

  100% {
    opacity: 0;
    transform: translate3d(114vw, -8px, 0) rotate(-2deg) scaleX(0.98) scaleY(1.02);
  }
}

.scroll-panel {
  min-height: var(--panel-height);
  opacity: 1;
  scroll-margin-top: calc(var(--header-height) + 1px);
  scroll-snap-align: start;
  transform: none;
}

.scroll-panel.panel-active {
  position: relative;
  z-index: 2;
}

.hero.scroll-panel {
  opacity: 1;
  transform: none;
}

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

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

.site-header {
  align-items: center;
  background: rgba(255, 250, 240, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(16, 36, 62, 0.1);
  display: flex;
  justify-content: space-between;
  left: 0;
  padding: 12px clamp(18px, 4vw, 56px);
  position: fixed;
  right: 0;
  top: 0;
  transition: box-shadow 180ms ease;
  z-index: 20;
}

.site-header.scrolled {
  box-shadow: 0 10px 34px rgba(16, 36, 62, 0.14);
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 12px;
  max-width: min(34vw, 410px);
  min-width: 0;
}

.brand-mark {
  align-items: center;
  background: var(--ink);
  color: var(--gold-light);
  display: inline-flex;
  flex: 0 0 40px;
  font-size: 1.45rem;
  font-weight: 700;
  height: 40px;
  justify-content: center;
  width: 40px;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand strong {
  font-size: clamp(0.98rem, 1.35vw, 1.18rem);
}

.brand small {
  color: var(--clay);
  font-family: Arial, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  margin-top: 4px;
  text-transform: uppercase;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: clamp(14px, 1.35vw, 24px);
  font-family: Arial, sans-serif;
  font-size: clamp(0.78rem, 0.78vw, 0.88rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  background: var(--gold);
  bottom: -8px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
  width: 100%;
}

.site-nav a:hover::after,
.site-nav a.active::after {
  transform: scaleX(1);
}

.site-nav a.active {
  color: var(--ink);
}

.nav-toggle {
  background: transparent;
  border: 0;
  display: none;
  height: 42px;
  padding: 9px;
  width: 42px;
}

.nav-toggle span {
  background: var(--ink);
  display: block;
  height: 2px;
  margin: 5px 0;
  width: 24px;
}

.hero {
  align-items: center;
  display: grid;
  gap: clamp(28px, 5vw, 82px);
  grid-template-columns: minmax(0, 0.94fr) minmax(320px, 0.46fr);
  min-height: var(--panel-height);
  overflow: hidden;
  padding: clamp(24px, 4vh, 44px) clamp(20px, 6vw, 76px);
  position: relative;
}

.hero-media,
.hero-shade {
  inset: 0;
  position: absolute;
}

.hero-media {
  background-image: url("https://unsplash.com/photos/5AoQbO_-TYo/download?force=true");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero-shade {
  animation: hero-opening-shade 8.5s ease-out forwards;
  background:
    linear-gradient(90deg, rgba(10, 10, 10, 0.94) 0%, rgba(10, 10, 10, 0.78) 42%, rgba(10, 10, 10, 0.34) 100%),
    linear-gradient(0deg, rgba(21, 21, 21, 0.62) 0%, transparent 42%);
}

@keyframes hero-opening-shade {
  0%,
  58% {
    background:
      linear-gradient(90deg, rgba(10, 10, 10, 0.94) 0%, rgba(10, 10, 10, 0.78) 42%, rgba(10, 10, 10, 0.34) 100%),
      linear-gradient(0deg, rgba(21, 21, 21, 0.62) 0%, transparent 42%);
  }

  100% {
    background:
      linear-gradient(90deg, rgba(10, 10, 10, 0.88) 0%, rgba(10, 10, 10, 0.66) 42%, rgba(10, 10, 10, 0.16) 100%),
      linear-gradient(0deg, rgba(21, 21, 21, 0.52) 0%, transparent 42%);
  }
}

.hero-content {
  color: var(--white);
  max-width: 620px;
  padding: 0;
  position: relative;
  z-index: 4;
}

.eyebrow,
.section-kicker {
  color: var(--gold-light);
  font-family: Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.eyebrow.dark,
.section-kicker {
  color: var(--clay);
}

.script-accent {
  color: var(--gold);
  font-family: "Brush Script MT", "Segoe Script", "Lucida Handwriting", cursive;
  font-size: clamp(2.05rem, 4vw, 3.7rem);
  line-height: 0.95;
  margin: -4px 0 16px;
}

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

h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 0.96;
  margin-bottom: 14px;
  max-width: 560px;
}

.hero h1 {
  text-shadow: 0 3px 20px rgba(0, 0, 0, 0.5);
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.05rem, 4vw, 4.5rem);
  line-height: 1;
  margin-bottom: 22px;
}

h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  line-height: 1.1;
  margin-bottom: 14px;
}

p {
  font-size: 1.05rem;
  line-height: 1.58;
}

.hero-copy {
  color: rgba(255, 255, 255, 0.88);
  font-family: Arial, sans-serif;
  font-size: clamp(0.94rem, 1.12vw, 1.04rem);
  line-height: 1.42;
  margin-bottom: 12px;
  max-width: 560px;
}

.hero-newcomer {
  color: var(--gold-light);
  font-family: Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  margin: 10px 0 0;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  display: inline-flex;
  font-family: Arial, sans-serif;
  font-size: 0.86rem;
  font-weight: 800;
  justify-content: center;
  letter-spacing: 0.08em;
  min-height: 38px;
  padding: 9px 17px;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--gold);
  color: #122035;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.58);
  color: var(--white);
}

.button-dark {
  background: var(--ink);
  color: var(--white);
  margin-top: 10px;
}

.button-outline-dark {
  border-color: rgba(16, 36, 62, 0.3);
  color: var(--ink);
}

.hero-panel {
  background: rgba(255, 250, 240, 0.94);
  box-shadow: var(--shadow);
  justify-self: end;
  max-width: 342px;
  padding: 18px;
  position: relative;
  z-index: 5;
}

.hero-panel span {
  color: var(--clay);
  display: block;
  font-family: Arial, sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.hero-panel strong {
  display: block;
  font-size: 1.28rem;
  margin-bottom: 8px;
}

.hero-panel p {
  font-family: Arial, sans-serif;
  font-size: 0.9rem;
  margin-bottom: 0;
}

.panel-link {
  color: var(--clay);
  display: inline-block;
  font-family: Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  margin-top: 16px;
  text-transform: uppercase;
}

.section {
  padding: clamp(22px, 3.4vh, 38px) clamp(20px, 6vw, 76px);
}

.intro-grid {
  align-items: center;
  display: grid;
  gap: clamp(18px, 2.8vw, 34px);
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.72fr);
  grid-template-rows: auto auto;
}

.intro h2 {
  font-size: clamp(1.9rem, 3.15vw, 3.45rem);
  margin-bottom: clamp(14px, 2vh, 22px);
}

.intro-copy p {
  font-size: clamp(0.96rem, 1.12vw, 1.05rem);
  line-height: 1.48;
}

.intro-copy {
  font-family: Arial, sans-serif;
}

.welcome-points {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: clamp(14px, 2.2vh, 22px);
}

.welcome-points span {
  background: rgba(244, 189, 47, 0.18);
  border: 1px solid rgba(244, 189, 47, 0.38);
  color: #49340a;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  padding: 9px 11px;
  text-transform: uppercase;
}

.welcome-photo {
  align-self: stretch;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  grid-row: span 2;
  margin: 0;
  min-height: 0;
  overflow: hidden;
  position: relative;
}

.welcome-photo::after {
  background: linear-gradient(180deg, transparent 28%, rgba(0, 0, 0, 0.68) 100%);
  content: "";
  inset: 0;
  position: absolute;
}

.welcome-photo img {
  height: 100%;
  object-fit: cover;
  object-position: 40% 42%;
  width: 100%;
}

.welcome-photo figcaption {
  bottom: 0;
  color: var(--white);
  left: 0;
  padding: clamp(18px, 2.4vw, 28px);
  position: absolute;
  right: 0;
  z-index: 1;
}

.welcome-photo figcaption span,
.welcome-note span {
  color: var(--gold-light);
  display: block;
  font-family: Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.welcome-photo figcaption strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  line-height: 1.05;
}

.welcome-note {
  background: var(--ink);
  color: var(--white);
  max-width: 620px;
  padding: clamp(18px, 2.6vw, 28px);
}

.welcome-note p {
  color: rgba(255, 255, 255, 0.82);
  font-family: Arial, sans-serif;
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1.45;
  margin-bottom: 12px;
}

.welcome-note a {
  color: var(--gold-light);
  font-family: Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.new-here {
  background: var(--white);
  border-bottom: 1px solid rgba(16, 36, 62, 0.1);
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 2.2vh, 22px);
  justify-content: center;
}

.new-layout {
  align-items: center;
  display: grid;
  gap: clamp(20px, 4vw, 54px);
  grid-template-columns: minmax(0, 0.94fr) minmax(260px, 0.56fr);
}

.new-copy {
  max-width: 820px;
}

.new-copy p {
  font-family: Arial, sans-serif;
}

.new-copy .script-accent {
  font-size: clamp(1.65rem, 3vw, 2.7rem);
  margin-bottom: 8px;
}

.new-copy h2 {
  font-size: clamp(1.7rem, 2.9vw, 3.1rem);
  margin-bottom: 12px;
}

.new-copy > p:not(.eyebrow):not(.script-accent) {
  font-size: clamp(0.95rem, 1.1vw, 1.04rem);
  line-height: 1.42;
  max-width: 760px;
}

.new-photo {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(21, 21, 21, 0.14);
  margin: 0;
  max-height: 180px;
  min-height: 135px;
  overflow: hidden;
}

.new-photo img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.new-steps {
  display: grid;
  gap: clamp(12px, 1.4vw, 18px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.new-steps article {
  background: var(--paper);
  border: 1px solid rgba(16, 36, 62, 0.1);
  border-radius: var(--radius);
  min-height: 178px;
  padding: clamp(16px, 2vw, 22px);
}

.new-steps span {
  align-items: center;
  background: var(--ink);
  color: var(--gold-light);
  display: inline-flex;
  font-family: Arial, sans-serif;
  font-weight: 900;
  height: 30px;
  justify-content: center;
  margin-bottom: 16px;
  width: 30px;
}

.new-steps h3 {
  font-size: clamp(1.2rem, 1.8vw, 1.65rem);
  line-height: 1.02;
  margin-bottom: 10px;
}

.new-steps p {
  font-family: Arial, sans-serif;
  font-size: 0.94rem;
  line-height: 1.42;
}

.new-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 0;
}

.pathways {
  align-items: stretch;
  background: var(--white);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-bottom: 0;
  padding-top: 0;
}

.pathways article {
  background: var(--white);
  border-right: 1px solid rgba(16, 36, 62, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: var(--panel-height);
  padding: clamp(34px, 5vw, 58px);
}

.path-number {
  color: var(--gold);
  display: block;
  font-family: Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  margin-bottom: 34px;
}

.pathways p,
.split-content p,
.section-heading p,
.feature-card p,
.prayer-copy p,
.contact p {
  font-family: Arial, sans-serif;
}

.split {
  align-items: stretch;
  background: var(--mist);
  display: grid;
  gap: 0;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  padding: 0;
}

.split-media {
  min-height: var(--panel-height);
}

.gather-media {
  background-image: url("https://images.pexels.com/photos/25752564/pexels-photo-25752564.jpeg?auto=compress&cs=tinysrgb&w=1600");
  background-position: center;
  background-size: cover;
  position: relative;
}

.gather-media::after {
  background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.68) 100%);
  content: "";
  inset: 0;
  position: absolute;
}

.join-photo-note {
  bottom: clamp(20px, 3vw, 34px);
  color: var(--white);
  left: clamp(20px, 3vw, 34px);
  max-width: 340px;
  position: absolute;
  right: clamp(20px, 3vw, 34px);
  z-index: 1;
}

.join-photo-note span {
  color: var(--gold-light);
  display: block;
  font-family: Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.join-photo-note strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.6vw, 2.15rem);
  line-height: 1.05;
}

.split-content {
  align-self: center;
  padding: clamp(54px, 7vw, 96px);
}

.join-section .split-content {
  padding: clamp(34px, 5vw, 70px);
}

.join-section h2 {
  font-size: clamp(1.8rem, 3vw, 3.25rem);
  margin-bottom: 14px;
}

.join-section .split-content > p:not(.eyebrow) {
  font-size: clamp(0.96rem, 1.1vw, 1.05rem);
  line-height: 1.5;
}

.info-list {
  border-top: 1px solid rgba(16, 36, 62, 0.15);
  margin: clamp(18px, 3vh, 26px) 0;
}

.info-list div {
  border-bottom: 1px solid rgba(16, 36, 62, 0.15);
  display: grid;
  gap: 12px;
  grid-template-columns: minmax(160px, 0.36fr) minmax(0, 1fr);
  padding: clamp(12px, 2vh, 16px) 0;
}

.info-list strong {
  font-size: clamp(0.96rem, 1.2vw, 1.05rem);
}

.info-list span {
  font-family: Arial, sans-serif;
  font-size: 0.94rem;
  line-height: 1.42;
}

.just-for-you {
  align-content: start;
  background:
    linear-gradient(90deg, rgba(21, 21, 21, 0.86) 0%, rgba(21, 21, 21, 0.58) 48%, rgba(21, 21, 21, 0.22) 100%),
    url("images/outreach-teaching.jpg") center / cover no-repeat;
  color: var(--white);
  display: grid;
  gap: clamp(12px, 2vh, 22px);
  grid-template-columns: 1fr;
  overflow: visible;
}

.just-for-you .eyebrow {
  color: var(--gold-light);
}

.just-for-you-intro {
  align-items: end;
  display: grid;
  gap: clamp(14px, 2.2vw, 30px);
  grid-template-columns: minmax(0, 0.98fr) minmax(280px, 0.52fr);
  max-width: 1220px;
}

.just-for-you h2 {
  font-size: clamp(1.45rem, 2.55vw, 2.75rem);
  line-height: 0.98;
  margin-bottom: 8px;
}

.just-for-you-intro > p {
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(0.9rem, 1.02vw, 1rem);
  line-height: 1.3;
  max-width: 780px;
}

.scripture-card {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.12);
  border-left: 4px solid var(--gold);
  margin-top: 0;
  padding: clamp(12px, 1.35vw, 18px);
}

.scripture-card strong {
  color: var(--gold-light);
  display: block;
  font-family: Arial, sans-serif;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.scripture-card p {
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(0.72rem, 0.82vw, 0.84rem);
  line-height: 1.26;
  margin: 0;
}

.just-for-you-grid {
  display: grid;
  gap: clamp(9px, 1vw, 14px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.just-for-you-grid article {
  background: rgba(255, 250, 240, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  color: var(--ink);
  min-height: 0;
  padding: clamp(11px, 1.15vw, 16px);
}

.just-for-you-grid span {
  color: var(--clay);
  display: block;
  font-family: Arial, sans-serif;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.just-for-you-grid h3 {
  font-size: clamp(0.9rem, 1.05vw, 1.08rem);
  line-height: 1.05;
  margin-bottom: 6px;
}

.just-for-you-grid p,
.just-for-you-grid strong {
  font-family: Arial, sans-serif;
  font-size: clamp(0.7rem, 0.78vw, 0.82rem);
  line-height: 1.22;
}

.just-for-you-grid p {
  margin-bottom: 7px;
}

.just-for-you-grid strong {
  display: block;
  overflow-wrap: anywhere;
}

.app-card,
.facebook-card {
  background: rgba(255, 225, 139, 0.95) !important;
}

.outreach {
  background: var(--paper);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.resources {
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(8px, 1.4vh, 14px);
  overflow: visible;
  padding-bottom: clamp(12px, 2vh, 22px);
  padding-top: clamp(12px, 2vh, 22px);
}

.resources .section-heading {
  max-width: 980px;
}

.resources .section-heading h2 {
  font-size: clamp(1.55rem, 2.25vw, 2.45rem);
  line-height: 0.98;
  margin-bottom: 6px;
}

.resources .section-heading p:not(.eyebrow) {
  font-size: clamp(0.86rem, 1vw, 0.95rem);
  line-height: 1.32;
  max-width: 820px;
}

.book-grid {
  align-items: center;
  display: grid;
  gap: clamp(12px, 1.7vw, 22px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-items: center;
  margin-top: 0;
}

.book-card {
  background: transparent;
  border: 1px solid rgba(21, 21, 21, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 16px 44px rgba(21, 21, 21, 0.08);
  display: flex;
  flex-direction: column;
  height: auto;
  min-height: 0;
  overflow: hidden;
  position: relative;
  width: min(100%, clamp(230px, 17vw, 292px));
}

.book-card img {
  aspect-ratio: 1 / 1;
  background: #fffaf0;
  display: block;
  height: auto;
  object-fit: contain;
  object-position: center;
  width: 100%;
}

.book-card span {
  background: rgba(21, 21, 21, 0.86);
  color: var(--white);
  display: block;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  min-height: 32px;
  padding: 9px 12px;
  text-align: center;
  text-transform: uppercase;
  transition: background 160ms ease, transform 160ms ease;
}

.book-card:hover span {
  background: var(--clay);
  transform: translateY(-2px);
}

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

.section-heading h2 {
  margin-bottom: 10px;
}

.section-heading p:not(.eyebrow) {
  font-size: clamp(0.94rem, 1.08vw, 1.04rem);
  line-height: 1.46;
}

.scroll-panel h2 {
  font-size: clamp(1.75rem, 2.65vw, 3rem);
}

.outreach-showcase {
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(0, 1.08fr) repeat(3, minmax(0, 0.8fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  margin-top: clamp(14px, 2.2vh, 24px);
  min-height: min(388px, 43vh);
}

.outreach-photo {
  border-radius: var(--radius);
  box-shadow: 0 18px 54px rgba(21, 21, 21, 0.16);
  min-height: 0;
  overflow: hidden;
  position: relative;
}

.outreach-photo-large {
  grid-row: span 2;
}

.outreach-photo-wide {
  grid-column: span 2;
}

.outreach-photo img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.outreach-photo::after {
  background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.72) 100%);
  content: "";
  inset: 0;
  position: absolute;
}

.outreach-photo div {
  bottom: 0;
  color: var(--white);
  left: 0;
  padding: clamp(14px, 1.8vw, 22px);
  position: absolute;
  right: 0;
  z-index: 1;
}

.outreach-photo span {
  color: var(--gold-light);
  display: block;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.outreach-photo h3 {
  font-size: clamp(0.98rem, 1.42vw, 1.55rem);
  margin: 0;
}

.outreach-photo-large h3 {
  font-size: clamp(1.25rem, 2.1vw, 1.95rem);
}

.verse-band {
  background: var(--ink);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: var(--panel-height);
  padding: clamp(64px, 8vw, 110px) clamp(20px, 6vw, 76px);
  text-align: center;
}

.verse-band p {
  font-size: clamp(2rem, 4.8vw, 5rem);
  line-height: 1.05;
  margin: 0 auto 18px;
  max-width: 1040px;
}

.verse-band span {
  color: var(--gold-light);
  font-family: Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.prayer {
  align-items: center;
  background: var(--white);
  display: grid;
  gap: clamp(34px, 6vw, 90px);
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.72fr);
}

.prayer-form {
  background: var(--paper);
  border: 1px solid rgba(16, 36, 62, 0.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 38px);
}

label {
  display: grid;
  font-family: Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  gap: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

input,
textarea {
  background: var(--white);
  border: 1px solid rgba(16, 36, 62, 0.18);
  color: var(--ink);
  font: 1rem Arial, sans-serif;
  padding: 14px 14px;
  width: 100%;
}

input:focus,
textarea:focus {
  border-color: var(--gold);
  outline: 3px solid rgba(201, 151, 59, 0.2);
}

textarea {
  resize: vertical;
}

.give-section {
  align-items: center;
  background:
    radial-gradient(circle at 18% 18%, rgba(244, 189, 47, 0.18), transparent 30%),
    linear-gradient(135deg, #fffaf0 0%, #f2eee5 100%);
  display: grid;
  gap: clamp(24px, 4.5vw, 58px);
  grid-template-columns: minmax(0, 0.88fr) minmax(300px, 0.58fr);
}

.give-copy {
  max-width: 820px;
}

.give-copy p,
.privacy-section p {
  font-family: Arial, Helvetica, sans-serif;
}

.giving-impact {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: clamp(18px, 2.8vh, 28px) 0 clamp(16px, 2.4vh, 24px);
  max-width: 720px;
}

.giving-impact span {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(21, 21, 21, 0.1);
  border-top: 4px solid var(--gold);
  box-shadow: 0 14px 34px rgba(21, 21, 21, 0.07);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 16px 14px;
  text-transform: uppercase;
}

.giving-visual {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-height: 390px;
  overflow: hidden;
  position: relative;
}

.giving-visual::after {
  background:
    linear-gradient(180deg, transparent 20%, rgba(0, 0, 0, 0.72) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.22), transparent 55%);
  content: "";
  inset: 0;
  position: absolute;
}

.giving-visual img {
  height: 100%;
  object-fit: cover;
  object-position: 44% 48%;
  width: 100%;
}

.giving-note {
  bottom: 0;
  color: var(--white);
  left: 0;
  padding: clamp(18px, 2.4vw, 28px);
  position: absolute;
  right: 0;
  z-index: 1;
}

.giving-note span {
  color: var(--gold-light);
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.giving-note h3 {
  color: var(--white);
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  margin-bottom: 8px;
}

.giving-note p {
  color: rgba(255, 255, 255, 0.84);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.95rem;
  line-height: 1.42;
  margin-bottom: 0;
}

.privacy-section {
  background: var(--white);
  border-top: 1px solid rgba(21, 21, 21, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.privacy-section h2 {
  max-width: 800px;
}

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

.privacy-grid article {
  background: var(--paper);
  border: 1px solid rgba(21, 21, 21, 0.1);
  border-radius: var(--radius);
  padding: 28px;
}

.hidden {
  display: none;
}

.contact {
  align-items: center;
  background: var(--mist);
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.65fr);
}

.contact-card {
  background: var(--ink);
  border-radius: var(--radius);
  color: var(--white);
  min-width: 0;
  padding: clamp(28px, 4vw, 44px);
}

.contact-card a {
  color: var(--gold-light);
  display: block;
  font-family: Arial, sans-serif;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 22px;
  overflow-wrap: break-word;
  word-break: normal;
}

.contact-card .small-link {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  margin: 24px 0 0;
  padding-top: 18px;
  text-transform: uppercase;
}

.site-footer {
  align-items: center;
  background: #071426;
  color: var(--white);
  display: flex;
  gap: 20px;
  justify-content: space-between;
  padding: 34px clamp(20px, 6vw, 76px);
}

.site-footer p {
  color: rgba(255, 255, 255, 0.72);
  font-family: Arial, sans-serif;
  font-size: 0.95rem;
  margin-bottom: 0;
}

.site-footer a {
  color: var(--gold-light);
  font-family: Arial, sans-serif;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.subpage {
  background: var(--paper);
}

.subpage .site-header {
  position: fixed;
}

.subpage-nav {
  display: flex;
}

.page-shell {
  padding-top: 42px;
}

.page-hero {
  padding: clamp(70px, 8vw, 120px) clamp(20px, 6vw, 76px) clamp(36px, 5vw, 70px);
}

.page-hero h1 {
  color: var(--ink);
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  max-width: 860px;
}

.page-hero p {
  font-family: Arial, sans-serif;
  max-width: 720px;
}

.giving-panel,
.policy-content {
  background: var(--white);
  border-top: 1px solid rgba(16, 36, 62, 0.1);
  display: grid;
  gap: clamp(28px, 5vw, 64px);
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  padding: clamp(48px, 7vw, 90px) clamp(20px, 6vw, 76px);
}

.giving-panel p,
.policy-content p {
  font-family: Arial, sans-serif;
}

.policy-content {
  display: block;
  max-width: none;
}

.policy-content h2 {
  font-size: clamp(1.45rem, 2.5vw, 2.3rem);
  margin-top: 32px;
}

.policy-content h2:first-child {
  margin-top: 0;
}

.policy-content a {
  color: var(--clay);
  font-weight: 700;
}

@media (min-width: 901px) {
  h1 {
    font-size: clamp(2rem, 3vw, 3.05rem);
  }

  p {
    line-height: 1.48;
  }

  .hero {
    display: grid;
    padding: clamp(16px, 2.6vh, 30px) clamp(20px, 6vw, 76px);
    height: var(--panel-height);
    min-height: var(--panel-height);
  }

  .hero-content {
    max-width: 580px;
    padding: 0;
    transform: translateY(-16px);
  }

  .hero-copy {
    font-size: clamp(0.94rem, 1.08vw, 1.04rem);
    line-height: 1.46;
    max-width: 560px;
  }

  .hero-newcomer {
    font-size: 0.8rem;
    margin-top: 9px;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 14px;
  }

  .button {
    min-height: 38px;
    padding: 9px 17px;
  }

  .hero-panel {
    max-width: 340px;
    padding: 18px;
  }

  .hero-panel p {
    font-size: 0.86rem;
    line-height: 1.4;
  }

  .section.scroll-panel,
  .verse-band.scroll-panel,
  .pathways.scroll-panel,
  .split.scroll-panel {
    height: auto;
    min-height: var(--panel-height);
    overflow: visible;
  }

  .section.scroll-panel {
    padding-bottom: clamp(16px, 2.5vh, 28px);
    padding-top: clamp(16px, 2.5vh, 28px);
  }

  .split.scroll-panel,
  .pathways.scroll-panel {
    padding: 0;
  }

  .intro,
  .just-for-you,
  .outreach,
  .resources,
  .prayer,
  .give-section,
  .contact,
  .privacy-section {
    align-content: start;
  }

  .intro h2,
  .scroll-panel h2 {
    font-size: clamp(1.7rem, 2.45vw, 2.75rem);
    line-height: 1.02;
  }

  .intro-copy p,
  .split-content p,
  .section-heading p,
  .feature-card p,
  .give-copy p,
  .prayer-copy p,
  .contact p,
  .privacy-grid p {
    font-size: clamp(0.88rem, 1vw, 0.98rem);
    line-height: 1.42;
  }

  .section-heading h2 {
    margin-bottom: 8px;
  }

  .eyebrow,
  .section-kicker {
    margin-bottom: 9px;
  }

  .intro-grid {
    gap: clamp(22px, 3vw, 36px);
  }

  .welcome-photo {
    height: clamp(260px, 38vh, 380px);
  }

  .welcome-note {
    align-self: start;
  }

  .pathways article {
    min-height: var(--panel-height);
    padding: clamp(26px, 4vw, 46px);
  }

  .path-number {
    margin-bottom: 22px;
  }

  .pathways h3 {
    font-size: clamp(1.35rem, 2vw, 1.9rem);
  }

  .pathways p {
    font-size: clamp(0.9rem, 1vw, 0.98rem);
    line-height: 1.42;
  }

  .split-media {
    min-height: var(--panel-height);
  }

  .join-section .split-content,
  .split-content {
    padding: clamp(26px, 4.5vw, 58px);
  }

  .join-section h2 {
    font-size: clamp(1.65rem, 2.45vw, 2.7rem);
    margin-bottom: 10px;
  }

  .info-list {
    margin: clamp(14px, 2vh, 20px) 0;
  }

  .info-list div {
    gap: 10px;
    padding: clamp(9px, 1.45vh, 13px) 0;
  }

  .info-list strong,
  .info-list span {
    font-size: clamp(0.86rem, 0.98vw, 0.96rem);
    line-height: 1.32;
  }

  .just-for-you {
    gap: clamp(20px, 2.4vw, 34px);
  }

  .just-for-you h2 {
    font-size: clamp(1.5rem, 2.45vw, 2.7rem);
  }

  .just-for-you-grid {
    gap: 9px;
  }

  .just-for-you-grid article {
    padding: clamp(10px, 1vw, 14px);
  }

  .scripture-card {
    padding: clamp(10px, 1vw, 14px);
  }

  .resources {
    gap: 8px;
  }

  .resources .section-heading h2 {
    font-size: clamp(1.4rem, 2vw, 2.15rem);
  }

  .book-grid {
    gap: clamp(10px, 1.4vw, 18px);
  }

  .book-card {
    width: min(100%, clamp(198px, 15.2vw, 258px));
  }

  .book-card span {
    min-height: 30px;
    padding: 8px 10px;
  }

  .outreach .section-heading {
    max-width: 760px;
  }

  .outreach-showcase {
    gap: 10px;
    height: clamp(286px, 38vh, 360px);
    margin-top: clamp(10px, 1.6vh, 18px);
    min-height: 0;
  }

  .outreach-photo div {
    padding: clamp(11px, 1.4vw, 17px);
  }

  .outreach-photo h3 {
    font-size: clamp(0.88rem, 1.2vw, 1.25rem);
  }

  .outreach-photo-large h3 {
    font-size: clamp(1.1rem, 1.7vw, 1.55rem);
  }

  .verse-band {
    min-height: var(--panel-height);
    padding-bottom: clamp(36px, 6vh, 72px);
    padding-top: clamp(36px, 6vh, 72px);
  }

  .verse-band p {
    font-size: clamp(1.9rem, 4.1vw, 4.35rem);
  }

  .prayer {
    align-items: center;
    gap: clamp(24px, 4vw, 58px);
  }

  .prayer-form {
    gap: 10px;
    padding: clamp(18px, 2.3vw, 26px);
  }

  label {
    gap: 6px;
  }

  input,
  textarea {
    padding: 10px 12px;
  }

  .prayer-form textarea {
    max-height: 112px;
  }

  .give-section,
  .contact {
    gap: clamp(22px, 4vw, 52px);
  }

  .giving-visual {
    height: clamp(330px, 45vh, 430px);
    min-height: 0;
  }

  .contact-card {
    padding: clamp(20px, 3vw, 32px);
  }

  .giving-note {
    padding: clamp(20px, 3vw, 32px);
  }

  .privacy-grid {
    gap: 14px;
    margin-top: clamp(14px, 2vh, 22px);
  }

  .privacy-grid article {
    padding: clamp(16px, 2vw, 22px);
  }

  .privacy-grid h3 {
    font-size: clamp(1.15rem, 1.5vw, 1.35rem);
  }
}

@media (max-width: 900px) {
  main {
    scroll-snap-type: none;
  }

  .scroll-panel,
  .verse-band {
    min-height: auto;
  }

  .nav-toggle {
    display: block;
    position: relative;
    z-index: 30;
  }

  .site-nav {
    align-content: center;
    background: var(--paper);
    bottom: 0;
    display: grid;
    gap: 22px;
    justify-items: center;
    left: 0;
    opacity: 0;
    padding: 100px 24px 40px;
    pointer-events: none;
    position: fixed;
    right: 0;
    top: 0;
    transform: translateY(-10px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

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

  .hero {
    display: block;
    min-height: auto;
    padding: 0;
  }

  .hero-content {
    max-width: 620px;
    padding-bottom: 220px;
    padding-top: 118px;
  }

  .hero-panel {
    bottom: 24px;
    left: 20px;
    max-width: none;
    position: absolute;
    right: 20px;
  }

  .intro-grid,
  .new-layout,
  .just-for-you,
  .split,
  .prayer,
  .contact,
  .give-section {
    grid-template-columns: 1fr;
  }

  .giving-impact {
    grid-template-columns: 1fr;
  }

  .giving-visual {
    min-height: 340px;
  }

  .just-for-you {
    background:
      linear-gradient(rgba(21, 21, 21, 0.78), rgba(21, 21, 21, 0.62)),
      url("images/outreach-teaching.jpg") center / cover no-repeat;
  }

  .just-for-you-intro {
    display: block;
    max-width: none;
  }

  .scripture-card {
    margin-top: 18px;
  }

  .intro-grid {
    grid-template-rows: auto;
  }

  .welcome-photo {
    grid-row: auto;
    min-height: 320px;
  }

  .new-photo {
    max-height: 180px;
  }

  .pathways,
  .book-grid,
  .just-for-you-grid,
  .outreach-showcase,
  .new-steps,
  .privacy-grid {
    grid-template-columns: 1fr;
  }

  .outreach-showcase {
    grid-template-rows: none;
    min-height: auto;
  }

  .outreach-photo,
  .outreach-photo-large,
  .outreach-photo-wide {
    grid-column: auto;
    grid-row: auto;
    min-height: 260px;
  }

  .book-card img {
    height: auto;
  }

  .pathways article {
    border-bottom: 1px solid rgba(16, 36, 62, 0.1);
    border-right: 0;
    min-height: auto;
  }

  .split-media {
    min-height: 360px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .subpage-nav {
    display: none;
  }

  .giving-panel,
  .policy-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .brand strong {
    font-size: 0.98rem;
  }

  .brand small {
    font-size: 0.62rem;
  }

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

  .hero-content {
    max-width: 100%;
    padding-bottom: 246px;
    padding-top: 118px;
    padding-left: 18px;
    padding-right: 18px;
  }

  h1 {
    font-size: clamp(2.55rem, 14vw, 4.1rem);
    line-height: 1.02;
  }

  .hero-actions,
  .button,
  .new-actions {
    width: 100%;
  }

  .info-list div {
    grid-template-columns: 1fr;
  }

  .outreach-photo {
    min-height: 230px;
  }

}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .scroll-panel {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .dove-flight {
    display: none;
  }

  .hero-shade {
    animation: none;
    background:
      linear-gradient(90deg, rgba(10, 10, 10, 0.88) 0%, rgba(10, 10, 10, 0.66) 42%, rgba(10, 10, 10, 0.16) 100%),
      linear-gradient(0deg, rgba(21, 21, 21, 0.52) 0%, transparent 42%);
  }
}
