:root {
  --green: #1b8839;
  --gold: #f4a600;
  --brown: #3c2f2f;
  --cream: #f5f2e9;
  --rust: #c75c2e;
  --ink: #241c1b;
  --paper: #fffaf0;
  --line: rgba(60, 47, 47, 0.16);
  --shadow: 0 24px 70px rgba(36, 28, 27, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--cream);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 4%, rgba(244, 166, 0, 0.16), transparent 30rem),
    radial-gradient(circle at 92% 10%, rgba(199, 92, 46, 0.12), transparent 28rem),
    var(--cream);
  font-family: "Inter", Arial, sans-serif;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

.site-frame {
  min-height: 100vh;
  overflow: hidden;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.section-pad {
  padding-block: clamp(70px, 9vw, 128px);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  padding: 18px clamp(20px, 5vw, 64px);
  border-bottom: 1px solid rgba(27, 136, 57, 0.2);
  background: rgba(245, 242, 233, 0.88);
  backdrop-filter: blur(18px);
}

.brand-link img {
  width: clamp(170px, 18vw, 270px);
  height: auto;
}

.topbar-note {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-v2 {
  padding-top: clamp(44px, 7vw, 88px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--rust);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-copy h1,
.section-heading h2,
.origin-copy h2,
.mission-heading h2 {
  margin: 0;
  color: var(--brown);
  font-size: clamp(3.2rem, 7vw, 7.4rem);
  font-weight: 900;
  line-height: 0.88;
}

.hero-copy h1 {
  max-width: 720px;
  font-size: clamp(2.65rem, 5.2vw, 5.6rem);
  line-height: 0.94;
}

.hero-text {
  max-width: 620px;
  margin: 28px 0 0;
  color: rgba(36, 28, 27, 0.76);
  font-size: clamp(1.08rem, 1.6vw, 1.35rem);
  font-weight: 600;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.hero-actions span {
  padding: 12px 16px;
  color: var(--cream);
  background: var(--green);
  border: 1px solid rgba(27, 136, 57, 0.28);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-art {
  position: relative;
  min-height: 520px;
  padding: 14px;
  background: var(--brown);
  border: 1px solid rgba(60, 47, 47, 0.3);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transform: rotate(1.2deg);
}

.hero-art img {
  width: 100%;
  height: 100%;
  min-height: 492px;
  object-fit: cover;
  border-radius: 4px;
}

.services {
  background: var(--brown);
  color: var(--cream);
}

.section-heading {
  max-width: 880px;
  margin-bottom: clamp(34px, 5vw, 58px);
}

.section-heading h2 {
  color: var(--cream);
  font-size: clamp(2.8rem, 5.4vw, 5.4rem);
  line-height: 0.94;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  position: relative;
  display: grid;
  min-height: 360px;
  padding: clamp(24px, 3vw, 34px);
  align-content: end;
  overflow: hidden;
  background: rgba(245, 242, 233, 0.08);
  border: 1px solid rgba(245, 242, 233, 0.18);
  border-radius: var(--radius);
}

.service-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(140deg, rgba(244, 166, 0, 0.24), transparent 44%),
    radial-gradient(circle at 85% 10%, rgba(27, 136, 57, 0.46), transparent 42%);
  opacity: 0;
  transition: opacity 220ms ease;
}

.service-card:hover::before {
  opacity: 1;
}

.service-number {
  position: absolute;
  top: 24px;
  right: 24px;
  color: rgba(245, 242, 233, 0.18);
  font-size: 4.6rem;
  font-weight: 900;
  line-height: 1;
}

.service-icon {
  position: relative;
  display: grid;
  width: 70px;
  aspect-ratio: 1;
  margin-bottom: 28px;
  place-items: center;
  color: var(--brown);
  background: var(--gold);
  border-radius: 50%;
}

.service-icon svg {
  width: 58%;
  height: 58%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3.1;
}

.service-card h3,
.service-card p {
  position: relative;
}

.service-card h3 {
  margin: 0;
  color: var(--cream);
  font-size: clamp(2.3rem, 4vw, 4rem);
  font-weight: 900;
  line-height: 0.92;
}

.service-card p {
  margin: 18px 0 0;
  color: rgba(245, 242, 233, 0.78);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.55;
}

.origin-v2 {
  background: var(--paper);
}

.origin-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: center;
}

.mark-panel {
  display: grid;
  min-height: 420px;
  place-items: center;
  background:
    radial-gradient(circle, rgba(244, 166, 0, 0.22), transparent 56%),
    var(--green);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.mark-panel img {
  width: min(260px, 62%);
  height: auto;
  border-radius: 50%;
  box-shadow: 0 22px 0 rgba(36, 28, 27, 0.16);
}

.origin-copy h2 {
  font-size: clamp(2.8rem, 5.7vw, 5.9rem);
}

.origin-copy p {
  max-width: 640px;
  margin: 28px 0 0;
  color: rgba(36, 28, 27, 0.72);
  font-size: clamp(1.14rem, 1.8vw, 1.45rem);
  font-weight: 700;
  line-height: 1.5;
}

.scripture-v2 {
  color: var(--cream);
  background:
    linear-gradient(135deg, rgba(27, 136, 57, 0.92), rgba(27, 136, 57, 0.98)),
    var(--green);
}

.scripture-shell {
  padding: clamp(34px, 6vw, 74px);
  border: 1px solid rgba(245, 242, 233, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(244, 166, 0, 0.85), rgba(244, 166, 0, 0)) top left / 100% 6px no-repeat,
    rgba(36, 28, 27, 0.1);
}

.scripture-kicker {
  margin: 0 0 20px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.scripture-shell blockquote {
  margin: 0;
  font-size: clamp(2.2rem, 5.4vw, 6rem);
  font-weight: 900;
  line-height: 0.98;
}

.scripture-shell span {
  display: block;
}

.mission-v2 {
  background: var(--cream);
}

.mission-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.47fr) minmax(0, 0.53fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: start;
}

.mission-heading {
  position: sticky;
  top: 112px;
}

.mission-heading h2 {
  font-size: clamp(2.7rem, 5.8vw, 6rem);
}

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

.mission-copy p {
  margin: 0;
  padding: clamp(24px, 3vw, 36px);
  color: rgba(36, 28, 27, 0.78);
  background: rgba(255, 250, 240, 0.76);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: clamp(1.06rem, 1.45vw, 1.24rem);
  font-weight: 600;
  line-height: 1.7;
  box-shadow: 0 16px 40px rgba(36, 28, 27, 0.07);
}

.footer-v2 {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;
  padding: 28px clamp(20px, 5vw, 64px);
  color: var(--cream);
  background: var(--brown);
}

.footer-v2 img {
  width: 150px;
  height: auto;
  filter: brightness(0) saturate(100%) invert(92%) sepia(10%) saturate(356%) hue-rotate(347deg) brightness(108%) contrast(92%);
}

.footer-v2 p {
  margin: 0;
  justify-self: end;
  font-size: 0.9rem;
  font-weight: 700;
}

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

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

@media (max-width: 940px) {
  .topbar {
    position: relative;
  }

  .hero-grid,
  .origin-grid,
  .mission-grid,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .hero-art {
    min-height: auto;
    transform: none;
  }

  .hero-art img {
    min-height: clamp(310px, 64vw, 520px);
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 260px;
  }

  .mission-heading {
    position: static;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 32px, 1160px);
  }

  .section-pad {
    padding-block: 64px;
  }

  .topbar {
    display: grid;
    justify-items: center;
    gap: 10px;
    min-height: auto;
    padding-block: 18px;
  }

  .brand-link img {
    width: min(250px, 72vw);
  }

  .hero-copy h1,
  .section-heading h2,
  .origin-copy h2,
  .mission-heading h2 {
    line-height: 0.9;
  }

  .hero-copy h1 {
    font-size: clamp(2.55rem, 12vw, 4.1rem);
    line-height: 0.94;
  }

  .hero-actions span {
    flex: 1 1 auto;
    text-align: center;
  }

  .hero-art {
    padding: 8px;
  }

  .hero-art img {
    min-height: 340px;
  }

  .service-card {
    min-height: 290px;
  }

  .mark-panel {
    min-height: 300px;
  }

  .scripture-shell {
    padding-inline: 24px;
  }

  .scripture-shell blockquote {
    font-size: clamp(2.35rem, 11vw, 4.4rem);
  }

  .scripture-shell span {
    display: inline;
  }

  .scripture-shell span + span::before {
    content: " ";
  }

  .footer-v2 {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-v2 p {
    justify-self: center;
  }
}

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

  .reveal {
    transition: none;
  }
}
