*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --black: #0e1c35;
  --ink: #0b1424;
  --charcoal: #2C2C2C;
  --navy: #1A2B4A;
  --navy-2: #243656;
  --ocean: #4A7FA5;
  --sky: #7BAEC8;
  --mist: #B8CEDA;
  --cream: #F0EDE6;
  --paper: #FDFCF9;
  --white: #FDFCF9;
  --gold: #C4B49B;
  --gold-dark: #8B6F47;
  --border: rgba(26, 43, 74, .16);
  --shadow: 0 22px 70px rgba(14, 28, 53, .20);
}
html { scroll-behavior: smooth; line-height: 1.5; }
h1, h2, h3 { font-size: inherit; font-weight: inherit; }
a { text-decoration: none; }
body {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.site-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  min-height: 74px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: .65rem clamp(1rem, 4vw, 3.5rem);
  background: rgba(26, 43, 74, .96);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--gold-dark);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: .8rem;
  text-decoration: none;
  min-width: 0;
}
.brand-mark {
  width: 48px;
  height: 48px;
  display: block;
  color: var(--cream);
  fill: currentColor;
  flex: 0 0 auto;
  transition: color .2s ease, opacity .2s ease;
}
.nav-brand-text {
  color: var(--cream);
  font-family: "Playfair Display", Georgia, serif;
  text-transform: none;
  font-weight: 600;
  letter-spacing: normal;
  line-height: 1.15;
  font-size: 1rem;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2.25rem);
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,.76);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-family: "Crimson Pro", Georgia, serif;
  font-size: .84rem;
  font-weight: 600;
  transition: color .2s;
}
.nav-links a { position: relative; }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-pill {
  border: 1px solid rgba(196,180,155,.78);
  border-radius: 999px;
  padding: .65rem .95rem;
}
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--ink);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, rgba(10,20,38,.82) 0%, rgba(26,43,74,.68) 38%, rgba(74,127,165,.34) 100%);
  z-index: 1;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 31vh;
  background: linear-gradient(to bottom, transparent, var(--cream));
  z-index: 1;
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 2;
  padding-top: 96px;
  padding-bottom: 6rem;
  width: 100%;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .78rem;
  font-weight: 900;
  margin-bottom: 1.25rem;
}
.eyebrow::before {
  content: "";
  width: 38px;
  height: 2px;
  background: currentColor;
}
.hero-title {
  font-size: clamp(3.1rem, 7vw, 6.7rem);
  line-height: .92;
  letter-spacing: -.06em;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 800;
  margin-bottom: 1.5rem;
}
  .hero-lead {
  max-width: 700px;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(1.2rem, 2.2vw, 1.58rem);
  line-height: 1.6;
  color: rgba(255,255,255,.9);
  margin-bottom: 2rem;
}
.hero-actions {
  align-items: center;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .85rem 1.35rem;
  border-radius: 999px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .78rem;
  font-weight: 900;
  transition: transform .2s, background .2s, color .2s;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--white); color: var(--black); }
.btn-outline { border: 1px solid rgba(255,255,255,.45); color: var(--white); }
.card--glass {
  background: rgba(26,43,74,.70);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: var(--shadow);
  padding: clamp(1.2rem, 3vw, 2rem);
  backdrop-filter: blur(9px);
}

.service-snapshot h2 {
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  margin-bottom: .75rem;
}
.snapshot-line {
  display: flex;
  gap: .7rem;
  align-items: baseline;
  color: rgba(255,255,255,.86);
  font-size: 1rem;
  line-height: 1.7;
}
.snapshot-line strong {
  color: var(--white);
  font-weight: 900;
}

.snapshot-link {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: var(--white);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(196,180,155,.7);
  text-decoration-thickness: 1px;
  text-underline-offset: .25em;
  transition: color .2s ease, text-decoration-color .2s ease;
}

.snapshot-link:hover {
  color: var(--gold);
  text-decoration-color: currentColor;
}

.link-icon {
  font-size: 1.15rem;
  flex: 0 0 auto;
}
.mission-strip {
  position: relative;
  z-index: 5;
  margin-top: -3.4rem;
}
.mission-strip-inner {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.13);
  display: flex;
  justify-content: center;
  gap: clamp(.65rem, 2vw, 1.5rem);
  flex-wrap: wrap;
  padding: 1.25rem 1.4rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 900;
  font-size: clamp(.8rem, 1.45vw, 1rem);
}
.mission-strip-inner span:not(:last-child)::after {
  content: ".";
  color: var(--gold);
  margin-left: clamp(.65rem, 2vw, 1.5rem);
}
.section {
  padding: clamp(4.5rem, 8vw, 7rem) 0;
  position: relative;
}
.section-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.section-media-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-media-image--hero { object-position: center 55%; }
.section-media-image--about { object-position: center 58%; }
.section-media-image--values { object-position: center 60%; }
.section-media-image--gather { object-position: center 55%; }
.section-kicker {
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-weight: 900;
  font-size: .78rem;
  margin-bottom: .75rem;
}
.section-title {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(2.1rem, 5vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -.04em;
  color: var(--navy);
  margin-bottom: 1.5rem;
}
.section-body {
  font-family: "Source Serif 4", Georgia, serif;
  color: #424a55;
  font-size: 1.13rem;
  line-height: 1.82;
}
.section--about {
  background: var(--navy);
  color: var(--white);
  position: relative;
}
.section--about::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(26,43,74,.94) 0%, rgba(36,54,86,.82) 45%, rgba(74,127,165,.38) 100%);
  z-index: 1;
  pointer-events: none;
}
.section--about .container {
  position: relative;
  z-index: 2;
}
.section--about .section-title { color: var(--white); }
.section--about .section-body { color: rgba(255,255,255,.86); }
.callout {
  margin-top: 2rem;
  background: rgba(26,43,74,.52);
  border-left: 5px solid var(--gold);
  padding: 1.5rem;
  box-shadow: 0 12px 34px rgba(20,37,66,.18);
  backdrop-filter: blur(6px);
}
.callout strong {
  display: block;
  text-transform: uppercase;
  color: var(--gold);
  letter-spacing: .13em;
  font-size: .78rem;
  font-weight: 900;
  margin-bottom: .55rem;
}
.section--mission { background: var(--paper); }
.card-grid--pillars {
  margin-top: 3rem;
  gap: 1px;
  background: #d6cfbf;
  border: 1px solid #d6cfbf;
}
.card--pillar {
  background: var(--paper);
  padding: 1.45rem;
  min-height: 260px;
}
.card--pillar h3 {
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .09em;
  font-size: 1.02rem;
  margin-bottom: .65rem;
}
.card--pillar .card-reference {
  color: var(--gold-dark);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: .9rem;
}
.card--pillar .card-body {
  font-family: "Source Serif 4", Georgia, serif;
  line-height: 1.66;
  color: #4b535d;
  font-size: 1rem;
}
.section--values {
  background: var(--black);
  color: var(--white);
}
.section--values::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(20,37,66,.93), rgba(20,37,66,.93));
  z-index: 1;
  pointer-events: none;
}
.section--values .container {
  position: relative;
  z-index: 2;
}
.section--values .section-kicker { color: var(--gold); }
.section--values .section-title { color: var(--white); }
.section--values .section-body { color: rgba(255,255,255,.82); }
.card-grid--values {
  margin-top: 2.5rem;
  gap: 1rem;
}
.card--value {
  background: rgba(0,0,0,.42);
  border: 1px solid rgba(255,255,255,.14);
  padding: 1.35rem;
  min-height: 210px;
}
.card--value h3 {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .95rem;
  margin-bottom: .7rem;
}
.card--value p {
  color: rgba(255,255,255,.83);
  font-family: "Source Serif 4", Georgia, serif;
  line-height: 1.68;
}
.section--gather {
  background: var(--ink);
  color: var(--white);
}
.section--gather::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(8,18,34,.96) 0%, rgba(14,28,53,.92) 48%, rgba(26,43,74,.78) 100%);
  z-index: 1;
  pointer-events: none;
}
.section--gather .container {
  position: relative;
  z-index: 2;
}
.gather-grid {
  grid-template-columns: minmax(0, 760px);
  align-items: center;
}
.card--feature {
  background: rgba(8,18,34,.86);
  box-shadow: 0 28px 70px rgba(0,0,0,.42);
  padding: clamp(1.6rem, 4vw, 2.6rem);
  border-top: 5px solid var(--gold);
  border-left: 1px solid rgba(255,255,255,.12);
  border-right: 1px solid rgba(255,255,255,.10);
  border-bottom: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(8px);
}
.section--gather .section-kicker { color: var(--gold); }
.section--gather .section-title { color: var(--white); text-shadow: 0 2px 16px rgba(0,0,0,.35); }
.section--gather .section-body { color: rgba(255,255,255,.94); }
.info-list {
  display: grid;
  gap: 1.2rem;
  margin-top: 2rem;
}
.info-row {
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 1rem;
  border-top: 1px solid rgba(255,255,255,.20);
  padding-top: 1.15rem;
}
.info-label {
  color: #E5C06F;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .75rem;
  font-weight: 900;
}
.info-value {
  color: var(--white);
  font-size: 1.2rem;
  line-height: 1.42;
  font-weight: 800;
  text-shadow: 0 1px 10px rgba(0,0,0,.3);
}
.section--beliefs { background: var(--paper); }
.card-grid--beliefs {
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
  margin-top: 2.5rem;
}
.card--belief {
  border: 1px solid var(--border);
  background: var(--white);
  padding: 1.4rem;
}
.card--belief h3 {
  color: var(--navy);
  font-size: 1rem;
  margin-bottom: .65rem;
}
.card--belief p {
  font-family: "Source Serif 4", Georgia, serif;
  color: #4b535d;
  line-height: 1.68;
  font-size: 1rem;
}
.belief-note {
  margin-top: 2rem;
  background: var(--mist);
  border-left: 5px solid var(--ocean);
  padding: 1.35rem;
  color: #344150;
  font-family: "Source Serif 4", Georgia, serif;
  line-height: 1.7;
}
.section--contact {
  background: var(--navy);
  color: var(--white);
}
.section--contact .section-kicker { color: var(--gold); }
.section--contact .section-title { color: var(--white); }
.section--contact .section-body { color: rgba(255,255,255,.82); }
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
.contact-box {
  background: var(--white);
  color: var(--charcoal);
  box-shadow: var(--shadow);
  padding: clamp(1.6rem, 4vw, 2.6rem);
}
.contact-address {
  font-style: normal;
  color: var(--navy);
  font-size: 1.15rem;
  line-height: 1.7;
  font-weight: 800;
}
.contact-group {
  margin-top: 1.5rem;
  border-top: 1px solid var(--border);
  padding-top: 1.3rem;
}
.contact-group strong {
  display: block;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .76rem;
  margin-bottom: .45rem;
}
.contact-group span {
  display: block;
  color: var(--navy);
  font-size: 1.2rem;
  font-weight: 900;
}
.site-footer {
  background: #0e1c35;
  color: rgba(255,255,255,.74);
  text-align: center;
  padding: 2.2rem 1rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .75rem;
  font-weight: 800;
}
.footer-logo {
  width: 68px;
  height: 68px;
  display: block;
  margin: 0 auto 1rem;
  opacity: .95;
  color: rgba(255,255,255,.74);
  fill: currentColor;
}

.footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: .75rem 1.25rem;
  margin: 0 auto 1.25rem;
}

.footer-nav a { color: inherit; text-decoration: none; }
.footer-nav a:hover { color: var(--gold); }

.footer-nav a:last-child {
  color: var(--mist);
  opacity: .8;
}

/* Shared component layout; breakpoints match the original responsive markup. */
.site { overflow-x: hidden; }
.container--narrow { max-width: 760px; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; }
.section-body + .section-body { margin-top: 1rem; }
.section-body--wide { max-width: 880px; }
.callout-body {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1rem;
  line-height: 1.82;
  color: rgba(255,255,255,.85);
}
.card { min-width: 0; }
.card-grid { display: grid; grid-template-columns: minmax(0, 1fr); }
.card--pillar .card-reference { line-height: 1.5; }
.card--belief h3, .snapshot-title { font-weight: 600; }
.gather-grid { display: grid; grid-template-columns: minmax(0, 1fr); }
.card--feature { max-width: 760px; }
.info-row { grid-template-columns: minmax(0, 1fr); gap: .25rem; }
.contact-group:first-child { margin-top: 0; border-top: 0; padding-top: 0; }
.contact-value, .contact-address { overflow-wrap: anywhere; }
.nav-links .nav-pill::after { display: none; }
@media (min-width: 640px) {
  .info-row { grid-template-columns: 128px 1fr; gap: 1rem; }
}
@media (min-width: 768px) {
  .card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr .9fr; }
  .contact-grid { grid-template-columns: 1.05fr .95fr; }
}
@media (min-width: 1280px) {
  .card-grid--pillars, .card-grid--values { grid-template-columns: repeat(5, minmax(0, 1fr)); }
}
@media (width < 768px) {
  .site-nav { min-height: 68px; }
  .nav-links { display: none; }
  .nav-brand-text { font-size: .78rem; }
  .mission-strip .container { padding: 0; }
}

.announcement-bar {
  position: relative;
  z-index: 90;
  margin-top: 74px;
  padding: .7rem 1.5rem;
  background: var(--gold);
  color: var(--ink);
  text-align: center;
  font-size: .9rem;
}

.announcement-bar p + p { margin-top: .4rem; }
.announcement-bar a { margin-left: .5rem; font-weight: 800; text-decoration: underline; }

.page-header {
  padding: clamp(9rem, 14vw, 12rem) 0 clamp(3.5rem, 7vw, 6rem);
  background: var(--navy);
  color: var(--white);
}

.page-header .section-kicker { color: var(--gold); }
.page-title {
  max-width: 900px;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(2.7rem, 6vw, 5.4rem);
  line-height: 1;
  letter-spacing: -.045em;
}

.page-title--light { color: var(--navy); }

.page-lead {
  max-width: 720px;
  margin-top: 1.35rem;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  line-height: 1.65;
  color: rgba(255,255,255,.86);
}

.page-content { background: var(--paper); }
.section--muted { background: var(--cream); }
.content-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: clamp(2rem, 6vw, 5rem); align-items: start; }
.narrow-content { max-width: 880px; }
.section-heading { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.card-grid--two, .card-grid--three { grid-template-columns: minmax(0, 1fr); gap: 1.1rem; }
.page-content .card { padding: 1.5rem; background: var(--white); border: 1px solid var(--border); }
.page-content .card-title, .page-content .card h3 { margin-bottom: .65rem; color: var(--navy); font-size: 1.1rem; font-weight: 700; }
.page-content .card-body, .page-content .card p { font-family: "Source Serif 4", Georgia, serif; color: #4b535d; line-height: 1.68; }
.page-content .card-body + .card-body, .page-content .card p + p { margin-top: .8rem; }
.card-reference { margin-bottom: .6rem; color: var(--gold-dark) !important; font-family: Inter, sans-serif !important; font-size: .75rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.card-meta { margin-top: .7rem; color: var(--navy) !important; font-family: Inter, sans-serif !important; font-size: .9rem; font-weight: 700; }
.text-link { display: inline-flex; align-items: center; gap: .3rem; margin-top: 1rem; color: var(--navy); font-weight: 800; text-decoration: underline; text-underline-offset: .18em; }
.text-link::after { content: "→"; font-size: 1.05em; text-decoration: none; transition: transform .2s ease; }
.text-link:hover::after { transform: translateX(.18rem); }
.section--about .text-link, .section--gather .text-link { color: var(--gold); }
.empty-state { padding: 2rem; border: 1px solid var(--border); color: #4b535d; font-family: "Source Serif 4", Georgia, serif; }
.map-card { min-height: 360px; overflow: hidden; box-shadow: var(--shadow); }
.map-card iframe { width: 100%; min-height: 360px; border: 0; }
.profile-image { display: grid; width: 88px; height: 88px; margin-bottom: 1rem; place-items: center; border-radius: 50%; background: var(--mist); color: var(--navy); font-weight: 900; }
.profile-image img { width: 100%; height: 100%; object-fit: cover; border-radius: inherit; }
.sermon-card img { width: calc(100% + 3rem); margin: -1.5rem -1.5rem 1.25rem; aspect-ratio: 16 / 9; object-fit: cover; }
.article-body { font-family: "Source Serif 4", Georgia, serif; font-size: 1.15rem; line-height: 1.8; color: #424a55; }
.creed-text { font-family: "Source Serif 4", Georgia, serif; font-size: clamp(1.15rem, 2vw, 1.35rem); line-height: 1.75; color: #424a55; }
.creed-text p + p { margin-top: 1.25rem; }
.creed-text .creed-note { margin-top: 2.5rem; padding: 1.25rem; border-left: 4px solid var(--gold); background: var(--cream); font-family: Inter, sans-serif; font-size: .95rem; line-height: 1.6; }

@media (min-width: 768px) {
  .card-grid--two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .card-grid--three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 1024px) { .content-grid { grid-template-columns: 1fr 1fr; } }

@media (width < 768px) {
  .announcement-bar { margin-top: 68px; }
  .map-card { display: none; }
}
