@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 300 700;
  font-display: block;
  src: url("assets/fonts/dm-sans-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Josefin Sans";
  font-style: normal;
  font-weight: 400 700;
  font-display: block;
  src: url("assets/fonts/josefin-sans-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 600 800;
  font-display: block;
  src: url("assets/fonts/playfair-display-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Playfair Display";
  font-style: italic;
  font-weight: 700;
  font-display: block;
  src: url("assets/fonts/playfair-display-italic-latin.woff2") format("woff2");
}

:root {
  --bg: #0a0a0a;
  --bg-soft: #111111;
  --bg-lift: #1a1a1a;
  --text: #e8e4dc;
  --white: #f5f5f5;
  --muted: #8a857d;
  --muted-strong: #b0ab9f;
  --neon: #39ff14;
  --neon-dark: #2ed60f;
  --neon-soft: rgba(57, 255, 20, 0.18);
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(57, 255, 20, 0.28);
  --shadow: rgba(0, 0, 0, 0.58);
  --cream: #f2e8d5;
  --cream-dark: #e8dece;
  --gold: #c9a84c;
  --gold-light: #d4b85a;
  --gold-soft: rgba(201, 168, 76, 0.24);
  --taupe: #3d3832;
  --taupe-light: #5a524a;
  --max: 1180px;
  --header: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

::selection {
  background: var(--neon);
  color: var(--bg);
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--bg);
  background: var(--neon);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
  padding: 0 48px;
  color: var(--white);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(10, 10, 10, 0.92);
  border-color: rgba(57, 255, 20, 0.06);
  backdrop-filter: blur(16px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-family: "Josefin Sans", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.brand-mark,
.footer-brand img {
  flex: 0 0 auto;
  width: 48px;
  height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(57, 255, 20, 0.24));
  transform: translateY(-1px);
}

.brand span,
.footer-brand span {
  font-size: 1rem;
  line-height: 1;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 0;
  border: 0;
  background: transparent;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 0 4px;
  color: var(--muted);
  font-family: "Josefin Sans", Arial, sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--neon);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

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

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

.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 24px;
  color: var(--neon);
  font-family: "Josefin Sans", Arial, sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: 1px solid var(--line-strong);
  border-radius: 0;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  color: var(--bg);
  background: var(--neon);
  transform: translateY(-1px);
  outline: none;
}

.menu-toggle {
  display: none;
  justify-self: end;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  background: transparent;
  border: 1px solid rgba(57, 255, 20, 0.35);
  border-radius: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--neon);
}

.hero {
  position: relative;
  min-height: 86svh;
  display: grid;
  align-content: center;
  align-items: center;
  row-gap: 28px;
  padding: 132px 34px 76px;
  overflow: hidden;
}

.hero::after {
  content: none;
}

.hero-image,
.hero-shade,
.grain,
.curtain,
.corner {
  position: absolute;
  pointer-events: none;
}

.hero-image {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 10, 10, 0.92) 0%, rgba(10, 10, 10, 0.74) 45%, rgba(10, 10, 10, 0.44) 100%),
    radial-gradient(ellipse 44% 54% at 50% 26%, rgba(57, 255, 20, 0.12), transparent 70%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.44), rgba(10, 10, 10, 0.92));
}

.grain {
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
}

.curtain {
  top: 0;
  bottom: 0;
  width: 120px;
  opacity: 0.72;
  background: repeating-linear-gradient(180deg, transparent, transparent 26px, rgba(57, 255, 20, 0.045) 26px, rgba(57, 255, 20, 0.045) 27px);
}

.curtain-left {
  left: 0;
}

.curtain-right {
  right: 0;
}

.corner {
  width: 34px;
  height: 34px;
}

.corner::before,
.corner::after {
  content: "";
  position: absolute;
  background: var(--neon);
  opacity: 0.34;
}

.corner::before {
  width: 34px;
  height: 1px;
}

.corner::after {
  width: 1px;
  height: 34px;
}

.corner-tl {
  top: 102px;
  left: 28px;
}

.corner-tl::before,
.corner-tl::after {
  top: 0;
  left: 0;
}

.corner-tr {
  top: 102px;
  right: 28px;
}

.corner-tr::before {
  top: 0;
  right: 0;
}

.corner-tr::after {
  top: 0;
  right: 0;
}

.corner-bl {
  bottom: 28px;
  left: 28px;
}

.corner-bl::before {
  bottom: 0;
  left: 0;
}

.corner-bl::after {
  bottom: 0;
  left: 0;
}

.corner-br {
  bottom: 28px;
  right: 28px;
}

.corner-br::before {
  bottom: 0;
  right: 0;
}

.corner-br::after {
  bottom: 0;
  right: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
  margin-left: max(0px, calc((100vw - var(--max)) / 2));
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--neon);
  font-family: "Josefin Sans", Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
  overflow-wrap: break-word;
}

blockquote {
  margin: 0;
}

h1,
h2,
h3 {
  color: var(--white);
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1;
  text-wrap: balance;
}

h1 {
  margin-bottom: 26px;
  font-size: 6rem;
  font-weight: 800;
}

h1 span,
h1 em {
  display: block;
}

h1 em {
  color: var(--neon);
  font-style: italic;
  font-weight: 700;
}

.hero-lede {
  width: min(620px, 100%);
  margin-bottom: 34px;
  color: var(--muted-strong);
  font-size: 1.12rem;
}

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

.button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  border-radius: 0;
  border: 1px solid transparent;
  background: transparent;
  -webkit-appearance: none;
  appearance: none;
  font-family: "Josefin Sans", Arial, sans-serif;
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.button::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 280ms ease;
}

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

.button-primary {
  color: var(--neon);
  background: transparent;
  border-color: var(--neon);
  box-shadow: none;
}

.button-primary::after {
  background: var(--neon);
}

.button-primary:hover,
.button-primary:focus-visible {
  color: var(--bg);
  border-color: var(--neon);
  box-shadow: 0 0 34px rgba(57, 255, 20, 0.22);
}

.button:hover::after,
.button:focus-visible::after {
  transform: scaleX(1);
}

.button-secondary {
  color: var(--white);
  background: rgba(10, 10, 10, 0.48);
  border-color: rgba(255, 255, 255, 0.25);
}

.button-secondary::after {
  background: rgba(255, 255, 255, 0.08);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(57, 255, 20, 0.1);
}

.hero-proof {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(132px, 1fr));
  gap: 12px;
  width: min(850px, calc(100vw - 68px));
  margin-left: max(0px, calc((100vw - var(--max)) / 2));
  border: 0;
  background: transparent;
  backdrop-filter: none;
  border-radius: 0;
  overflow: visible;
}

.hero-proof::before {
  content: none;
}

.hero-proof div {
  min-height: 92px;
  padding: 18px 18px 16px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-left-color: rgba(57, 255, 20, 0.34);
  background: rgba(10, 10, 10, 0.48);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.22);
}

.hero-proof div:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.075);
}

.hero-proof strong {
  display: block;
  color: var(--neon);
  font-family: "Josefin Sans", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
}

.hero-proof span {
  display: block;
  margin-top: 10px;
  color: var(--text);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.22rem;
  font-weight: 700;
  line-height: 1.08;
}

.band {
  position: relative;
  padding: 104px 34px;
  background: var(--bg);
}

.band::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 28%, rgba(57, 255, 20, 0.025));
}

.band-deep {
  background: #070707;
}

.section-shell {
  position: relative;
  z-index: 1;
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 1fr);
  gap: 68px;
  align-items: start;
}

.section-heading h2 {
  margin-bottom: 0;
  font-size: 3.35rem;
  font-weight: 700;
}

.section-heading p:not(.eyebrow) {
  margin-top: 24px;
  margin-bottom: 0;
  color: var(--muted-strong);
  font-size: 1.03rem;
}

.section-heading-centered {
  width: min(780px, 100%);
  margin: 0 auto 48px;
  text-align: center;
}

.intro-copy {
  color: var(--muted-strong);
  font-size: 1.05rem;
}

.intro-copy p:last-child {
  margin-bottom: 0;
}

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

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 584px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--bg-soft);
  border-radius: 0;
  box-shadow: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 8px;
  z-index: 2;
  border: 1px solid rgba(57, 255, 20, 0.045);
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(57, 255, 20, 0.24);
  box-shadow: 0 18px 64px rgba(0, 0, 0, 0.3);
}

.service-card img {
  display: block;
  flex: 0 0 auto;
  width: 100%;
  height: 220px;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.06);
}

.service-body {
  position: relative;
  flex: 1 1 auto;
  padding: 30px;
}

.service-body::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(57, 255, 20, 0.08);
  pointer-events: none;
}

.service-index {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--neon);
  font-family: "Josefin Sans", Arial, sans-serif;
  font-weight: 700;
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 1.68rem;
}

.service-kicker {
  margin-bottom: 16px;
  color: var(--text);
  font-weight: 600;
}

.service-card p:not(.service-kicker) {
  color: var(--muted-strong);
}

.service-card a {
  display: inline-flex;
  margin-top: 10px;
  color: var(--neon);
  font-family: "Josefin Sans", Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

.church-band {
  overflow: hidden;
  background: var(--cream);
  color: var(--taupe);
}

.church-band::before {
  background:
    radial-gradient(ellipse 48% 60% at 74% 12%, rgba(201, 168, 76, 0.13), transparent 70%),
    linear-gradient(180deg, rgba(61, 56, 50, 0.03), rgba(201, 168, 76, 0.05));
}

.church-band .grain {
  opacity: 0.018;
}

.church-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(420px, 1fr);
  gap: 54px;
  align-items: center;
}

.church-copy .eyebrow {
  color: var(--gold);
}

.church-copy h2 {
  margin-bottom: 24px;
  color: var(--taupe);
  font-size: 3.25rem;
}

.church-copy p:not(.eyebrow) {
  color: var(--taupe-light);
}

.church-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 30px 0;
  border: 1px solid var(--cream-dark);
}

.church-feature-grid div {
  min-height: 146px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.32);
}

.church-feature-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--taupe);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.18rem;
}

.church-feature-grid span {
  display: block;
  color: var(--taupe-light);
  font-size: 0.94rem;
  line-height: 1.55;
}

.church-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.church-button {
  color: var(--gold);
  border-color: var(--gold);
}

.church-button::after {
  background: var(--gold);
}

.church-button:hover,
.church-button:focus-visible {
  color: var(--cream);
  box-shadow: 0 0 34px rgba(201, 168, 76, 0.22);
}

.church-secondary {
  color: var(--taupe);
  border-color: var(--gold-soft);
  background: transparent;
}

.church-secondary::after {
  background: rgba(201, 168, 76, 0.13);
}

.church-media {
  position: relative;
  border: 1px solid rgba(61, 56, 50, 0.18);
  background: var(--taupe);
  padding: 8px;
}

.church-media::before {
  content: "";
  position: absolute;
  inset: 16px;
  z-index: 2;
  border: 1px solid rgba(201, 168, 76, 0.18);
  pointer-events: none;
}

.church-media img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.02);
}

.church-media-caption {
  display: grid;
  gap: 4px;
  padding: 18px 20px;
  color: var(--cream);
  background: var(--taupe);
  font-size: 0.96rem;
}

.church-media-caption span {
  color: var(--gold);
  font-family: "Josefin Sans", Arial, sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  justify-content: center;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(135deg, rgba(57, 255, 20, 0.055), rgba(255, 255, 255, 0.015)),
    var(--bg-soft);
}

.testimonial-card::before {
  content: "";
  position: absolute;
  inset: 8px;
  z-index: 2;
  border: 1px solid rgba(57, 255, 20, 0.045);
  pointer-events: none;
}

.review-meta {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 20px;
}

.review-score {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  color: var(--bg);
  background: var(--neon);
  font-family: "Josefin Sans", Arial, sans-serif;
  font-weight: 700;
}

.review-meta h3 {
  margin-bottom: 3px;
  font-size: 1.25rem;
}

.review-meta p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.review-quote p {
  margin-bottom: 16px;
  color: var(--muted-strong);
  font-size: 0.98rem;
}

.review-quote p:last-child {
  margin-bottom: 0;
}

.testimonial-content {
  flex: 1 1 auto;
  padding: 28px 30px 32px;
}

.testimonial-image {
  display: block;
  flex: 0 0 auto;
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-bottom: 1px solid rgba(57, 255, 20, 0.12);
  filter: saturate(0.9) contrast(1.02);
}

/* Church standalone page */
.church-page {
  background: var(--cream);
  color: var(--taupe);
}

.church-page .site-header {
  color: var(--taupe);
  background: rgba(242, 232, 213, 0.9);
  border-color: rgba(201, 168, 76, 0.2);
  backdrop-filter: blur(16px);
}

.church-page .site-header.is-scrolled {
  background: rgba(242, 232, 213, 0.96);
  border-color: rgba(201, 168, 76, 0.28);
}

.church-page .brand {
  color: var(--taupe);
}

.church-page .brand-mark,
.church-page .footer-brand img {
  filter: drop-shadow(0 0 16px rgba(201, 168, 76, 0.28));
}

.church-page .site-nav a {
  color: var(--taupe-light);
}

.church-page .site-nav a::after {
  background: var(--gold);
}

.church-page .site-nav a:hover,
.church-page .site-nav a:focus-visible,
.church-page .site-nav a[aria-current="page"] {
  color: var(--gold);
}

.church-page .header-cta {
  color: var(--gold);
  border-color: var(--gold-soft);
}

.church-page .header-cta:hover,
.church-page .header-cta:focus-visible {
  color: var(--cream);
  background: var(--gold);
}

.church-page .menu-toggle {
  border-color: var(--gold-soft);
}

.church-page .menu-toggle span {
  background: var(--gold);
}

.church-page .corner::before,
.church-page .corner::after {
  background: var(--gold);
}

.church-page h1,
.church-page h2,
.church-page h3 {
  color: var(--taupe);
}

.church-page .eyebrow {
  color: var(--gold);
}

.church-page-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(420px, 1fr);
  gap: 54px;
  align-items: center;
  min-height: 100svh;
  padding: 130px max(34px, calc((100vw - var(--max)) / 2)) 86px;
  overflow: hidden;
  background: var(--cream);
}

.church-hero-shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 45% 55% at 68% 16%, rgba(201, 168, 76, 0.16), transparent 70%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(201, 168, 76, 0.06));
}

.church-page-hero .grain {
  opacity: 0.018;
}

.church-hero-copy,
.church-hero-media {
  position: relative;
  z-index: 2;
}

.church-hero-copy h1 {
  margin-bottom: 26px;
  font-size: 5.2rem;
  font-weight: 800;
}

.church-hero-copy h1 span,
.church-hero-copy h1 em {
  display: block;
}

.church-hero-copy h1 em {
  color: var(--gold);
  font-style: italic;
  font-weight: 700;
}

.church-hero-copy p:not(.eyebrow) {
  width: min(620px, 100%);
  color: var(--taupe-light);
  font-size: 1.08rem;
}

.church-hero-media {
  border: 1px solid rgba(61, 56, 50, 0.18);
  background: var(--taupe);
  padding: 0;
  overflow: hidden;
}

.church-hero-media::before {
  content: none;
}

.church-hero-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.02);
}

.church-hero-media div {
  display: grid;
  gap: 4px;
  padding: 18px 20px;
  border-top: 1px solid rgba(201, 168, 76, 0.18);
  color: var(--cream);
  background: var(--taupe);
}

.church-hero-media span {
  color: var(--gold);
  font-family: "Josefin Sans", Arial, sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.church-section {
  position: relative;
  padding: 100px 34px;
  background: var(--cream);
}

.church-shell {
  position: relative;
  z-index: 1;
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.church-section-heading {
  width: min(760px, 100%);
  margin: 0 auto 48px;
  text-align: center;
}

.church-section-heading h2,
.health-copy h2,
.binder-copy h2,
.church-review-card h2 {
  margin-bottom: 18px;
  font-size: 3.1rem;
}

.church-section-heading p:not(.eyebrow),
.health-copy p,
.binder-copy p,
.church-review-card blockquote p,
.church-contact .contact-copy p:not(.eyebrow) {
  color: var(--taupe-light);
}

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

.church-service-grid {
  display: grid;
  gap: 22px;
}

.church-panel,
.church-service-card {
  position: relative;
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--cream-dark);
  background: rgba(255, 255, 255, 0.34);
}

.church-panel::before,
.church-service-card::before,
.health-card::before,
.plan-column::before,
.church-review-card::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(201, 168, 76, 0.1);
  pointer-events: none;
}

.church-panel span,
.timeline-item span {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--gold);
  font-family: "Josefin Sans", Arial, sans-serif;
  font-weight: 700;
}

.church-panel h3,
.church-service-card h3,
.timeline-item h3,
.health-card h3,
.plan-column h3 {
  margin-bottom: 12px;
  font-size: 1.55rem;
}

.church-panel p,
.church-service-card p,
.timeline-item p,
.plan-column p {
  color: var(--taupe-light);
}

.health-section {
  background: #efe2cb;
}

.health-layout {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(340px, 0.78fr);
  gap: 54px;
  align-items: start;
}

.health-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 30px;
  border: 1px solid var(--cream-dark);
}

.health-steps div {
  min-height: 138px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.36);
}

.health-steps strong,
.binder-list strong {
  display: block;
  margin-bottom: 6px;
  color: var(--taupe);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.14rem;
}

.health-steps span,
.binder-list span {
  color: var(--taupe-light);
}

.health-card {
  position: relative;
  padding: 34px;
  border: 1px solid rgba(61, 56, 50, 0.18);
  background: var(--taupe);
}

.health-card h3 {
  color: var(--cream);
}

.health-card ul,
.church-service-card ul {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.health-card li,
.church-service-card li {
  position: relative;
  padding-left: 20px;
  color: var(--taupe-light);
}

.health-card li {
  color: rgba(242, 232, 213, 0.74);
}

.health-card li::before,
.church-service-card li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
}

.church-process {
  background: var(--cream);
}

.church-timeline {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  width: min(980px, 100%);
  margin: 0 auto;
  border: 0;
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  min-height: auto;
  padding: 24px 30px;
  border: 1px solid var(--cream-dark);
  background: rgba(255, 255, 255, 0.38);
}

.timeline-item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 61px;
  bottom: -15px;
  z-index: 1;
  width: 10px;
  height: 10px;
  border-right: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  background: var(--cream);
  transform: rotate(45deg);
}

.timeline-item span {
  position: relative;
  z-index: 2;
  grid-row: 1 / span 2;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  margin: 0;
  border: 1px solid var(--gold-soft);
  background: rgba(201, 168, 76, 0.12);
}

.timeline-item h3 {
  grid-column: 2;
  margin-bottom: 8px;
}

.timeline-item p {
  grid-column: 2;
  margin-bottom: 0;
}

.service-paths {
  background: #efe2cb;
}

.church-support-stack {
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.package-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: 100%;
}

.church-service-card {
  min-height: 390px;
  padding: 26px;
}

.church-service-card.health-feature {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(360px, 1fr);
  gap: 12px 42px;
  align-items: center;
  width: 100%;
  min-height: auto;
  margin: 0;
  padding: 34px 40px;
  text-align: left;
  background: rgba(255, 255, 255, 0.48);
}

.church-service-card.health-feature ul,
.partner-jump ul {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
  max-width: none;
  margin-right: auto;
  margin-left: auto;
  text-align: left;
}

.church-service-card.health-feature ul {
  grid-column: 2;
  grid-row: 1 / span 2;
  margin-top: 0;
}

.church-service-card.featured {
  color: var(--cream);
  background: var(--taupe);
  border-color: rgba(201, 168, 76, 0.28);
}

.partner-jump {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(360px, 1fr);
  gap: 12px 42px;
  align-items: center;
  width: 100%;
  min-height: auto;
  margin: 8px 0 0;
  padding: 34px 40px 32px;
  text-align: left;
  transition: transform 180ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.partner-jump:hover,
.partner-jump:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(201, 168, 76, 0.62);
  box-shadow: 0 22px 54px rgba(61, 56, 50, 0.18);
  outline: none;
}

.church-service-card.featured h3 {
  color: var(--gold);
}

.church-service-card.featured p,
.church-service-card.featured li {
  color: rgba(242, 232, 213, 0.72);
}

.partner-jump ul {
  grid-column: 2;
  grid-row: 1 / span 3;
  margin-top: 0;
}

.jump-link {
  display: inline-flex;
  grid-column: 1;
  margin-top: 24px;
  color: var(--gold);
  font-family: "Josefin Sans", Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.binder-section {
  position: relative;
  overflow: hidden;
  padding: 104px 34px;
  background: var(--taupe);
}

.binder-section .grain {
  opacity: 0.02;
}

.binder-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(420px, 1fr);
  gap: 58px;
  align-items: start;
}

.binder-copy {
  grid-column: 1;
}

.binder-copy h2,
.binder-copy p {
  color: var(--cream);
}

.binder-list {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(201, 168, 76, 0.16);
}

.binder-list div {
  min-height: 136px;
  padding: 22px;
  background: rgba(242, 232, 213, 0.055);
}

.binder-list strong {
  color: var(--gold);
}

.binder-list span {
  color: rgba(242, 232, 213, 0.68);
}

.binder-showcase {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(420px, 1fr);
  gap: 22px;
  margin-top: 4px;
}

.binder-mockup,
.artifact-card {
  position: relative;
  border: 1px solid rgba(201, 168, 76, 0.18);
  background: rgba(242, 232, 213, 0.055);
}

.binder-mockup {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  min-height: 430px;
  overflow: hidden;
}

.binder-spine {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 46px;
  border-right: 1px solid rgba(201, 168, 76, 0.18);
  background: rgba(201, 168, 76, 0.08);
}

.binder-spine span {
  width: 18px;
  height: 18px;
  border: 1px solid rgba(242, 232, 213, 0.32);
  background: var(--taupe);
  box-shadow: 0 0 0 7px rgba(201, 168, 76, 0.08);
}

.binder-cover {
  display: grid;
  align-content: start;
  gap: 22px;
  padding: 30px;
  background:
    radial-gradient(circle at 18% 10%, rgba(201, 168, 76, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(242, 232, 213, 0.09), rgba(242, 232, 213, 0.035));
}

.binder-cover-header {
  display: grid;
  gap: 6px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.binder-cover-header span,
.artifact-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-family: "Josefin Sans", Arial, sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.binder-cover-header strong {
  color: var(--cream);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
  line-height: 1.05;
}

.binder-folder-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.binder-folder-tabs span,
.preset-artifact div span {
  padding: 9px 10px;
  color: rgba(242, 232, 213, 0.82);
  border: 1px solid rgba(201, 168, 76, 0.16);
  background: rgba(61, 56, 50, 0.58);
  font-size: 0.72rem;
  text-align: center;
  text-transform: uppercase;
}

.binder-document-stack {
  position: relative;
  min-height: 230px;
  margin-top: 4px;
}

.doc-sheet {
  position: absolute;
  display: grid;
  align-content: start;
  gap: 9px;
  width: 68%;
  min-height: 178px;
  padding: 22px;
  border: 1px solid rgba(201, 168, 76, 0.28);
  background: rgba(242, 232, 213, 0.9);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.22);
}

.doc-sheet span {
  color: var(--gold);
  font-family: "Josefin Sans", Arial, sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2.2px;
  text-transform: uppercase;
}

.doc-sheet strong {
  color: var(--taupe);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.45rem;
  line-height: 1.05;
}

.doc-sheet i {
  display: block;
  height: 9px;
  background: linear-gradient(90deg, rgba(61, 56, 50, 0.34), rgba(61, 56, 50, 0.06));
}

.doc-primary {
  z-index: 3;
  top: 0;
  left: 0;
}

.doc-secondary {
  z-index: 2;
  top: 28px;
  right: 12%;
  transform: rotate(2deg);
}

.doc-tertiary {
  z-index: 1;
  top: 58px;
  right: 0;
  transform: rotate(-2deg);
}

.binder-callout-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.binder-callout-row div {
  min-height: 86px;
  padding: 14px;
  border: 1px solid rgba(201, 168, 76, 0.18);
  background: rgba(61, 56, 50, 0.48);
}

.binder-callout-row strong {
  display: block;
  color: var(--gold);
  font-family: "Josefin Sans", Arial, sans-serif;
  font-size: 0.74rem;
  letter-spacing: 2px;
}

.binder-callout-row span {
  display: block;
  margin-top: 8px;
  color: rgba(242, 232, 213, 0.74);
  line-height: 1.35;
}

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

.artifact-card {
  min-height: 260px;
  padding: 22px;
}

.artifact-card::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(201, 168, 76, 0.08);
  pointer-events: none;
}

.artifact-card span,
.checklist-artifact li {
  color: rgba(242, 232, 213, 0.68);
}

.photo-artifact div {
  display: grid;
  gap: 8px;
  margin-top: 22px;
}

.photo-artifact i {
  display: block;
  height: 34px;
  border: 1px solid rgba(242, 232, 213, 0.12);
  background:
    linear-gradient(90deg, rgba(201, 168, 76, 0.32) 0 24%, transparent 24%),
    rgba(61, 56, 50, 0.62);
}

.checklist-artifact ol {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.checklist-artifact li {
  position: relative;
  padding-left: 28px;
}

.checklist-artifact li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 13px;
  height: 7px;
  border-left: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(-45deg);
}

.preset-artifact div {
  display: grid;
  gap: 8px;
  margin-top: 22px;
}

.plan-section {
  background: var(--cream);
  scroll-margin-top: calc(var(--header) + 20px);
}

.plan-section:target .plan-compare {
  animation: planTargetBounce 760ms cubic-bezier(0.2, 0.8, 0.22, 1);
}

@keyframes planTargetBounce {
  0% {
    transform: translateY(-18px);
  }

  58% {
    transform: translateY(7px);
  }

  100% {
    transform: translateY(0);
  }
}

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

.plan-column {
  position: relative;
  min-height: 340px;
  padding: 30px;
  border: 1px solid var(--cream-dark);
  background: rgba(255, 255, 255, 0.36);
}

.plan-column.featured {
  background: rgba(201, 168, 76, 0.12);
  border-color: var(--gold-soft);
}

.plan-column span {
  display: block;
  padding: 12px 0;
  color: var(--taupe);
  border-top: 1px solid var(--cream-dark);
}

.church-review-section {
  scroll-margin-top: 88px;
  padding: 96px 34px;
  background:
    radial-gradient(ellipse 50% 62% at 50% 4%, rgba(201, 168, 76, 0.16), transparent 68%),
    var(--taupe);
}

.church-review-heading {
  width: min(760px, 100%);
  margin: 0 auto 46px;
  text-align: center;
}

.church-review-heading h2 {
  margin-bottom: 16px;
  color: var(--cream);
}

.church-review-heading p:not(.eyebrow) {
  color: rgba(242, 232, 213, 0.72);
}

.church-review-list {
  display: grid;
  grid-template-columns: minmax(0, 820px);
  justify-content: center;
  gap: 18px;
}

.church-review-item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
  padding: 40px;
  border: 1px solid rgba(201, 168, 76, 0.28);
  background:
    linear-gradient(135deg, rgba(201, 168, 76, 0.1), rgba(255, 255, 255, 0.018)),
    rgba(32, 29, 25, 0.82);
}

.church-review-item::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(201, 168, 76, 0.12);
  pointer-events: none;
}

.church-review-content {
  align-self: center;
  max-width: 680px;
}

.church-review-meta {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 24px;
}

.church-review-meta strong {
  display: inline-flex;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  color: var(--taupe);
  background: var(--gold);
  font-family: "Josefin Sans", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
}

.church-review-meta h3 {
  margin-bottom: 4px;
  color: var(--cream);
  font-size: 1.45rem;
}

.church-review-meta p {
  margin-bottom: 0;
  color: rgba(242, 232, 213, 0.62);
  font-size: 0.92rem;
}

.church-review-item blockquote p {
  margin-bottom: 14px;
  color: rgba(242, 232, 213, 0.78);
}

.church-review-item blockquote p:last-child {
  margin-bottom: 0;
}

.church-contact {
  background: var(--cream);
}

.church-page .contact-copy h2 {
  color: var(--taupe);
}

.church-page .contact-details a {
  color: var(--taupe);
  border-color: var(--cream-dark);
}

.church-page .contact-details a:hover,
.church-page .contact-details a:focus-visible {
  color: var(--gold);
}

.church-page .contact-form {
  border-color: var(--gold-soft);
  background:
    linear-gradient(135deg, rgba(201, 168, 76, 0.12), rgba(255, 255, 255, 0.34)),
    rgba(255, 255, 255, 0.44);
  box-shadow: none;
}

.church-page .contact-form::before {
  border-color: rgba(201, 168, 76, 0.1);
}

.church-page label {
  color: var(--taupe);
}

.church-page input,
.church-page select,
.church-page textarea {
  color: var(--taupe);
  background: rgba(255, 255, 255, 0.48);
  border-color: var(--cream-dark);
  color-scheme: light;
}

.church-page input:focus,
.church-page select:focus,
.church-page textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.14);
}

.church-footer {
  background: var(--taupe);
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(360px, 1fr);
  gap: 72px;
  align-items: start;
}

.process-list {
  display: grid;
  gap: 12px;
}

.process-item {
  position: relative;
  min-height: 156px;
  padding: 28px 30px 28px 84px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
}

.process-item::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(57, 255, 20, 0.045);
  pointer-events: none;
}

.process-item span {
  position: absolute;
  top: 28px;
  left: 28px;
  color: var(--neon);
  font-family: "Josefin Sans", Arial, sans-serif;
  font-weight: 700;
}

.process-item h3 {
  margin-bottom: 10px;
  font-size: 1.45rem;
}

.process-item p {
  margin-bottom: 0;
  color: var(--muted-strong);
}

.band-image {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  gap: 0;
  padding: 0;
  background: var(--bg-soft);
}

.about-media {
  min-height: 680px;
}

.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.76) contrast(1.08) brightness(0.72);
}

.about-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 84px 56px;
  background:
    radial-gradient(ellipse 78% 56% at 50% 20%, rgba(57, 255, 20, 0.08), transparent 72%),
    var(--bg);
  overflow: hidden;
}

.about-panel::before,
.about-panel::after {
  content: "";
  position: absolute;
  width: 34px;
  height: 34px;
  border-color: rgba(57, 255, 20, 0.32);
  pointer-events: none;
}

.about-panel::before {
  top: 32px;
  left: 32px;
  border-top: 1px solid;
  border-left: 1px solid;
}

.about-panel::after {
  right: 32px;
  bottom: 32px;
  border-right: 1px solid;
  border-bottom: 1px solid;
}

.about-panel h2 {
  margin-bottom: 24px;
  font-size: 3rem;
}

.about-panel p:not(.eyebrow) {
  color: var(--muted-strong);
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  overflow: hidden;
}

.capability-grid div {
  min-height: 122px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.035);
}

.capability-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.22rem;
}

.capability-grid span {
  display: block;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.45;
}

.contact {
  padding-bottom: 82px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(360px, 1fr);
  gap: 54px;
  align-items: start;
}

.contact-copy h2 {
  margin-bottom: 24px;
  font-size: 3.2rem;
}

.contact-copy p:not(.eyebrow) {
  color: var(--muted-strong);
}

.contact-details {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.contact-details a {
  display: block;
  padding: 18px 0;
  color: var(--text);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  transition: color 180ms ease;
}

.contact-details a:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-details a:hover,
.contact-details a:focus-visible {
  color: var(--neon);
  outline: none;
}

.contact-details span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-family: "Josefin Sans", Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-form {
  position: relative;
  display: grid;
  gap: 18px;
  padding: 32px;
  border: 1px solid rgba(57, 255, 20, 0.18);
  border-radius: 0;
  background:
    linear-gradient(135deg, rgba(57, 255, 20, 0.075), rgba(255, 255, 255, 0.022)),
    var(--bg-soft);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.28);
}

.contact-form::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(57, 255, 20, 0.06);
  pointer-events: none;
}

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

label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-family: "Josefin Sans", Arial, sans-serif;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--white);
  background: rgba(10, 10, 10, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 0;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

textarea {
  resize: vertical;
  min-height: 142px;
}

select {
  color-scheme: dark;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--neon);
  box-shadow: 0 0 0 4px rgba(57, 255, 20, 0.1);
}

.contact-form .button {
  width: 100%;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--neon);
  font-size: 0.95rem;
}

.site-footer {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 48px 34px;
  text-align: center;
  background: #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  color: var(--white);
}

.site-footer p {
  margin-bottom: 0;
  color: var(--muted);
}

.church-footer {
  background:
    linear-gradient(180deg, rgba(57, 255, 20, 0.045), rgba(57, 255, 20, 0.01)),
    #020802;
  border-top-color: rgba(57, 255, 20, 0.22);
}

.church-footer .footer-brand {
  color: var(--white);
}

.church-page .church-footer .footer-brand img {
  filter: drop-shadow(0 0 16px rgba(57, 255, 20, 0.28));
}

.church-footer p {
  color: rgba(176, 171, 159, 0.92);
}

.footer-meta {
  font-size: 0.92rem;
}

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

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

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

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

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

@media (max-width: 1180px) {
  .service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  :root {
    --header: 72px;
  }

  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    padding: 0 20px;
  }

  .menu-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    top: var(--header);
    right: 20px;
    left: 20px;
    display: none;
    justify-self: stretch;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 14px;
    border-radius: 0;
    background: rgba(10, 10, 10, 0.96);
    box-shadow: 0 26px 80px rgba(0, 0, 0, 0.52);
  }

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

  .site-nav a {
    justify-content: center;
    min-height: 48px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 120px 24px 88px;
  }

  h1 {
    font-size: 4.7rem;
  }

  .hero-content {
    margin-left: 0;
  }

  .hero-proof {
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    margin-left: 0;
  }

  .band {
    padding: 82px 24px;
  }

  .intro-grid,
  .process-layout,
  .contact-grid,
  .church-layout,
  .testimonial-grid,
  .church-page-hero,
  .health-layout,
  .binder-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .section-heading h2,
  .contact-copy h2,
  .church-copy h2,
  .church-section-heading h2,
  .health-copy h2,
  .binder-copy h2,
  .church-review-card h2 {
    font-size: 2.7rem;
  }

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

  .service-card {
    min-height: auto;
  }

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

  .band-image {
    grid-template-columns: 1fr;
  }

  .about-media {
    min-height: 420px;
  }

  .about-panel {
    padding: 72px 34px;
  }

  .church-media {
    order: -1;
  }

  .church-page-hero {
    min-height: auto;
    padding: 112px 24px 78px;
  }

  .church-hero-media {
    order: -1;
  }

  .church-hero-copy h1 {
    font-size: 4.2rem;
  }

  .church-problem-grid,
  .church-timeline,
  .package-row,
  .church-review-item,
  .plan-compare {
    grid-template-columns: 1fr;
  }

  .binder-list,
  .health-steps {
    grid-template-columns: 1fr;
  }

  .binder-copy,
  .binder-list,
  .binder-showcase {
    grid-column: 1;
  }

  .binder-showcase {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  .brand span,
  .footer-brand span {
    font-size: 0.95rem;
  }

  .brand-mark,
  .footer-brand img {
    width: 44px;
    height: 48px;
  }

  .hero {
    min-height: auto;
    padding: 112px 18px 78px;
  }

  .curtain {
    width: 56px;
  }

  .corner {
    display: none;
  }

  .corner-tl,
  .corner-tr {
    top: 88px;
  }

  h1 {
    font-size: 3.55rem;
  }

  .hero-lede {
    font-size: 1rem;
  }

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

  .hero-proof {
    grid-template-columns: 1fr;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(17, 17, 17, 0.72);
    backdrop-filter: blur(18px);
    overflow: hidden;
  }

  .hero-proof div {
    min-height: 76px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .hero-proof div:last-child {
    border-bottom: 0;
  }

  .band {
    padding: 70px 18px;
  }

  .section-heading h2,
  .about-panel h2,
  .contact-copy h2,
  .church-copy h2,
  .church-section-heading h2,
  .health-copy h2,
  .binder-copy h2,
  .church-review-card h2 {
    font-size: 1.9rem;
    line-height: 1.08;
  }

  .hero-lede {
    width: min(100%, 34ch);
  }

  .service-card img {
    height: 220px;
  }

  .service-body,
  .contact-form {
    padding: 24px;
  }

  .testimonial-content {
    padding: 24px;
  }

  .testimonial-image {
    height: 210px;
  }

  .church-feature-grid {
    grid-template-columns: 1fr;
  }

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

  .church-page-hero {
    padding: 104px 18px 64px;
  }

  .church-hero-copy h1 {
    max-width: 100%;
    font-size: 2.82rem;
    line-height: 1.02;
  }

  .church-section,
  .binder-section,
  .church-review-section {
    padding: 70px 18px;
  }

  .church-panel,
  .church-service-card,
  .health-card,
  .plan-column,
  .church-review-item {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 24px;
  }

  .church-section-heading {
    width: 100%;
    max-width: 100%;
  }

  .church-section-heading h2 {
    font-size: 1.68rem;
    line-height: 1.12;
    text-wrap: wrap;
    overflow-wrap: anywhere;
  }

  .church-service-card h3,
  .timeline-item h3,
  .health-card h3,
  .plan-column h3 {
    font-size: 1.42rem;
    line-height: 1.08;
  }

  .church-service-card p,
  .church-service-card li,
  .plan-column p,
  .plan-column span {
    overflow-wrap: anywhere;
  }

  .church-service-card.health-feature,
  .partner-jump {
    display: block;
    padding: 26px 24px;
  }

  .church-service-card.health-feature ul,
  .partner-jump ul {
    grid-template-columns: 1fr;
    grid-column: auto;
    grid-row: auto;
    margin-top: 22px;
  }

  .timeline-item {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 16px;
    padding: 22px;
  }

  .timeline-item span {
    width: 50px;
    height: 50px;
  }

  .timeline-item:not(:last-child)::after {
    left: 45px;
  }

  .binder-mockup {
    grid-template-columns: 34px minmax(0, 1fr);
    min-height: auto;
  }

  .binder-cover {
    padding: 20px;
  }

  .binder-folder-tabs,
  .binder-callout-row,
  .artifact-grid {
    grid-template-columns: 1fr;
  }

  .binder-document-stack {
    min-height: auto;
  }

  .doc-sheet {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    width: 100%;
    min-height: auto;
    margin-bottom: 10px;
    transform: none;
  }

  .process-item {
    padding: 70px 24px 24px;
  }

  .process-item span {
    left: 24px;
  }

  .about-media {
    min-height: 320px;
  }

  .about-panel {
    padding: 64px 22px;
  }

  .about-panel::before,
  .about-panel::after {
    content: none;
  }

  .capability-grid,
  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .church-hero-copy h1 {
    font-size: 2.5rem;
    overflow-wrap: anywhere;
  }

  .church-section-heading h2 {
    font-size: 1.35rem;
  }
}
