:root {
  --navy: #081b2c;
  --navy-2: #0d263c;
  --navy-3: #12334e;
  --gold: #c8a45d;
  --gold-light: #dfc489;
  --cream: #f6f1e7;
  --warm-white: #fffdf8;
  --ink: #12202b;
  --muted: #61707b;
  --line: #e6ded0;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(8, 27, 44, 0.14);
  --radius: 22px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--warm-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,.10);
  transition: .3s ease;
}

.site-header.scrolled {
  background: rgba(8, 27, 44, .95);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 30px rgba(0,0,0,.12);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: white;
  min-width: 250px;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(223,196,137,.5);
  border-radius: 50%;
  color: var(--gold-light);
  font-size: 23px;
  flex: 0 0 auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-text strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 20px;
  letter-spacing: .1px;
}

.brand-text small {
  margin-top: 4px;
  color: rgba(255,255,255,.58);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 27px;
  color: rgba(255,255,255,.82);
  font-size: 13px;
  font-weight: 600;
}

.main-nav a {
  transition: .2s ease;
}

.main-nav > a:not(.nav-cta):hover {
  color: var(--gold-light);
}

.nav-cta {
  padding: 10px 17px;
  border: 1px solid rgba(223,196,137,.55);
  color: var(--gold-light);
  border-radius: 999px;
}

.nav-toggle {
  display: none;
  border: 0;
  background: none;
  width: 42px;
  height: 42px;
  cursor: pointer;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  display: block;
  background: white;
  margin: 5px auto;
  transition: .25s ease;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 72% 42%, rgba(200,164,93,.10), transparent 31%),
    linear-gradient(115deg, #061726 0%, #0a2033 52%, #0c2a41 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .14;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.8), transparent);
}

.hero-glow {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(10px);
  opacity: .25;
}

.hero-glow-one {
  background: radial-gradient(circle, rgba(200,164,93,.20), transparent 68%);
  right: 4%;
  top: 12%;
}

.hero-glow-two {
  background: radial-gradient(circle, rgba(70,135,170,.15), transparent 70%);
  left: -15%;
  bottom: -18%;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr .75fr;
  align-items: center;
  gap: 85px;
  padding-top: 110px;
  padding-bottom: 95px;
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.scripture-band blockquote p {
  font-family: "Cormorant Garamond", Georgia, serif;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(58px, 7.2vw, 103px);
  line-height: .86;
  letter-spacing: -3.8px;
  font-weight: 600;
}

.hero h1 span {
  color: var(--gold-light);
  font-style: italic;
  font-weight: 500;
}

.hero-lead {
  max-width: 625px;
  margin-top: 30px;
  color: rgba(255,255,255,.74);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
  margin-top: 35px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 23px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .15px;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

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

.btn-primary {
  background: var(--gold);
  color: #0c1b26;
}

.btn-primary:hover {
  background: var(--gold-light);
}

.btn-secondary {
  border: 1px solid rgba(255,255,255,.28);
  color: white;
}

.btn-secondary:hover {
  border-color: rgba(255,255,255,.58);
  background: rgba(255,255,255,.05);
}

.hero-location {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 33px;
  color: rgba(255,255,255,.6);
  font-size: 13px;
}

.location-icon {
  color: var(--gold-light);
  font-size: 21px;
}

.hero-card {
  position: relative;
  max-width: 405px;
  justify-self: end;
  padding: 43px 38px 38px;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  box-shadow: 0 30px 80px rgba(0,0,0,.16);
}

.cross-orbit {
  width: 94px;
  height: 94px;
  display: grid;
  place-items: center;
  margin-bottom: 33px;
  border: 1px solid rgba(223,196,137,.35);
  border-radius: 50%;
  box-shadow: 0 0 0 12px rgba(223,196,137,.035);
}

.cross {
  color: var(--gold-light);
  font-size: 44px;
}

.card-kicker {
  margin-bottom: 9px;
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.1px;
  text-transform: uppercase;
}

.hero-card h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 38px;
  line-height: 1;
  font-weight: 600;
}

.hero-card > p:not(.card-kicker) {
  margin: 19px 0 26px;
  color: rgba(255,255,255,.66);
  font-size: 14px;
}

.hero-card a {
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 700;
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.42);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.scroll-cue i {
  width: 1px;
  height: 28px;
  background: linear-gradient(var(--gold), transparent);
}

.section {
  padding: 118px 0;
}

.intro-section {
  background: var(--warm-white);
}

.two-col {
  display: grid;
  grid-template-columns: .92fr 1fr;
  gap: 100px;
}

.section h2 {
  font-size: clamp(45px, 5vw, 65px);
  line-height: .98;
  font-weight: 600;
  letter-spacing: -1.5px;
}

.section h2 span {
  color: var(--gold);
  font-style: italic;
  font-weight: 500;
}

.intro-copy .lead {
  margin-bottom: 18px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px;
  line-height: 1.3;
  font-weight: 600;
}

.intro-copy > p:not(.lead):not(.editor-note) {
  color: var(--muted);
}

.editor-note {
  margin-top: 27px;
  padding: 18px 20px;
  border-left: 3px solid var(--gold);
  background: #faf6ed;
  color: #657079;
  font-size: 13px;
}

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

.center-heading {
  max-width: 700px;
  margin: 0 auto 57px;
  text-align: center;
}

.center-heading > p:last-child {
  max-width: 580px;
  margin: 18px auto 0;
  color: var(--muted);
}

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

.service-card {
  position: relative;
  min-height: 350px;
  padding: 38px 30px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(200,164,93,.18);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  background: white;
  box-shadow: var(--shadow);
}

.service-number {
  position: absolute;
  right: 24px;
  top: 17px;
  color: rgba(8,27,44,.09);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 61px;
  font-weight: 700;
}

.service-icon {
  display: grid;
  place-items: center;
  width: 53px;
  height: 53px;
  margin-bottom: 55px;
  border: 1px solid rgba(200,164,93,.42);
  border-radius: 50%;
  color: var(--gold);
  font-size: 19px;
}

.service-card h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px;
  line-height: 1.1;
}

.service-time {
  margin: 8px 0 16px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
}

.service-card > p:last-child {
  color: var(--muted);
  font-size: 14px;
}

.scripture-band {
  position: relative;
  overflow: hidden;
  padding: 98px 0;
  color: white;
  text-align: center;
  background: var(--navy);
}

.scripture-band::before,
.scripture-band::after {
  content: "";
  position: absolute;
  width: 270px;
  height: 270px;
  border: 1px solid rgba(200,164,93,.10);
  border-radius: 50%;
}

.scripture-band::before {
  top: -150px;
  left: -60px;
}

.scripture-band::after {
  right: -80px;
  bottom: -170px;
}

.quote-mark {
  display: block;
  height: 39px;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 78px;
  line-height: 1;
}

.scripture-band blockquote {
  max-width: 820px;
  margin: 0 auto;
}

.scripture-band blockquote p {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.13;
  font-style: italic;
}

.scripture-band footer {
  margin-top: 22px;
  color: var(--gold-light);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.ministries-section {
  background: var(--warm-white);
}

.split-heading {
  display: grid;
  grid-template-columns: 1fr .7fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 55px;
}

.split-heading > p {
  color: var(--muted);
  font-size: 14px;
}

.ministry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.ministry-card {
  min-height: 250px;
  padding: 32px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background .22s ease;
}

.ministry-card:hover {
  background: #faf6ed;
}

.ministry-symbol {
  display: block;
  margin-bottom: 41px;
  color: var(--gold);
  font-size: 24px;
}

.ministry-card h3 {
  margin-bottom: 11px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 24px;
}

.ministry-card p {
  color: var(--muted);
  font-size: 13px;
}

.sermons-section {
  background:
    linear-gradient(rgba(8,27,44,.965), rgba(8,27,44,.965)),
    linear-gradient(135deg, #0d263c, #061726);
  color: white;
}

.center-heading.light > p:last-child {
  color: rgba(255,255,255,.58);
}

.sermon-placeholder {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 25px;
  max-width: 900px;
  margin: 0 auto;
  padding: 30px 31px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.045);
}

.play-button {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border: 1px solid rgba(200,164,93,.55);
  border-radius: 50%;
  color: var(--gold-light);
  font-size: 17px;
  padding-left: 3px;
}

.sermon-label {
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.sermon-placeholder h3 {
  margin: 3px 0 5px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px;
}

.sermon-placeholder div > p:last-child {
  color: rgba(255,255,255,.55);
  font-size: 13px;
}

.text-link {
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 700;
}

.gallery-section {
  background: #f9f6ef;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr;
  grid-template-rows: 210px 210px;
  gap: 13px;
}

.gallery-placeholder {
  position: relative;
  display: grid;
  place-items: end start;
  min-height: 200px;
  overflow: hidden;
  padding: 20px;
  background:
    linear-gradient(145deg, rgba(8,27,44,.02), rgba(8,27,44,.13)),
    repeating-linear-gradient(135deg, #e5ded0, #e5ded0 12px, #eee8dc 12px, #eee8dc 24px);
}

.gallery-placeholder::after {
  content: "✝";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  color: rgba(8,27,44,.14);
  font-size: 46px;
}

.gallery-placeholder.large {
  grid-row: span 2;
}

.gallery-placeholder span {
  position: relative;
  z-index: 2;
  padding: 6px 10px;
  background: rgba(8,27,44,.8);
  color: white;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.contact-section {
  background: var(--warm-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr .95fr;
  gap: 80px;
  align-items: center;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 600px;
  margin-top: 24px;
  color: var(--muted);
}

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

.detail-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.detail-icon {
  display: grid;
  place-items: center;
  width: 39px;
  height: 39px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold);
  flex: 0 0 auto;
}

.detail-row small,
.detail-row strong {
  display: block;
}

.detail-row small {
  margin-bottom: 2px;
  color: #9a958b;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.detail-row strong {
  font-size: 14px;
  font-weight: 600;
}

.muted-row {
  opacity: .62;
}

.contact-actions {
  display: flex;
  gap: 11px;
  flex-wrap: wrap;
  margin-top: 31px;
}

.btn-facebook {
  color: #294f93;
  border: 1px solid #cbd5e7;
  background: #f5f8ff;
}

.map-panel {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  background: #e9e4da;
  border-radius: 2px;
  box-shadow: var(--shadow);
}

.map-pattern {
  position: absolute;
  inset: 0;
  opacity: .56;
  background:
    linear-gradient(28deg, transparent 43%, rgba(8,27,44,.13) 43.5%, rgba(8,27,44,.13) 44.5%, transparent 45%),
    linear-gradient(115deg, transparent 40%, rgba(8,27,44,.1) 40.5%, rgba(8,27,44,.1) 41.5%, transparent 42%),
    linear-gradient(5deg, transparent 67%, rgba(200,164,93,.25) 67.5%, rgba(200,164,93,.25) 69%, transparent 69.5%);
  background-size: 210px 170px, 260px 220px, 300px 230px;
}

.map-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 34% 26%, rgba(255,255,255,.65), transparent 11%),
    radial-gradient(circle at 70% 65%, rgba(255,255,255,.45), transparent 13%);
}

.map-pin {
  position: absolute;
  z-index: 2;
  left: 52%;
  top: 44%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: var(--gold-light);
  border: 5px solid var(--warm-white);
  border-radius: 50% 50% 50% 8px;
  transform-origin: center;
  rotate: -45deg;
  box-shadow: 0 10px 30px rgba(8,27,44,.24);
}

.map-pin span {
  rotate: 45deg;
  font-size: 27px;
}

.map-label {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 60%;
  transform: translateX(-50%);
  width: max-content;
  max-width: calc(100% - 40px);
  padding: 13px 17px;
  background: rgba(255,253,248,.96);
  box-shadow: 0 8px 25px rgba(8,27,44,.12);
  text-align: center;
}

.map-label strong,
.map-label span {
  display: block;
}

.map-label strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 18px;
}

.map-label span {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.site-footer {
  background: #061522;
  color: white;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: center;
  padding: 55px 0 43px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-brand strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 22px;
}

.footer-brand p {
  margin-top: 3px;
  color: rgba(255,255,255,.44);
  font-size: 11px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 21px;
  color: rgba(255,255,255,.55);
  font-size: 11px;
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  color: rgba(255,255,255,.32);
  font-size: 10px;
}

.footer-bottom a {
  color: rgba(255,255,255,.48);
}

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

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

@media (max-width: 980px) {
  .main-nav {
    position: fixed;
    top: 82px;
    left: 0;
    width: 100%;
    padding: 26px 30px 34px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    background: rgba(8,27,44,.98);
    border-top: 1px solid rgba(255,255,255,.08);
  }

  .main-nav.open { display: flex; }

  .nav-toggle { display: block; }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    padding-top: 150px;
  }

  .hero-card {
    max-width: 560px;
    justify-self: start;
  }

  .two-col,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

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

  .service-card:last-child {
    grid-column: span 2;
  }

  .ministry-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-copy { order: 1; }
  .map-panel { min-height: 430px; }
}

@media (max-width: 700px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    background: rgba(8,27,44,.93);
  }

  .nav-wrap { min-height: 72px; }
  .main-nav { top: 72px; }

  .brand-text strong { font-size: 17px; }
  .brand-text small { letter-spacing: 1.3px; }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    padding-top: 126px;
    padding-bottom: 115px;
  }

  .hero h1 {
    font-size: clamp(52px, 17vw, 75px);
    letter-spacing: -2.5px;
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-card {
    padding: 32px 27px;
  }

  .section {
    padding: 85px 0;
  }

  .section h2 {
    font-size: 45px;
  }

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

  .service-card:last-child {
    grid-column: auto;
  }

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

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 190px);
  }

  .gallery-placeholder.large {
    grid-column: span 2;
    grid-row: auto;
  }

  .sermon-placeholder {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .footer-top,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .scroll-cue { display: none; }
}

@media (max-width: 420px) {
  .brand-text small { display: none; }
  .brand { min-width: 0; }
  .brand-mark { width: 38px; height: 38px; }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .gallery-placeholder.large {
    grid-column: auto;
  }

  .gallery-placeholder {
    min-height: 180px;
  }
}
