@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@600&display=swap");

:root {
  --navy: #285943;
  --navy-deep: #12382a;
  --gold: #76a86f;
  --gold-light: #dcebd7;
  --cream: #f3f7ed;
  --soft: #eaf3e7;
  --white: #ffffff;
  --text: #273d31;
  --muted: #64766b;
  --border: #d5e2d5;
  --shadow: 0 18px 50px rgba(18, 56, 42, 0.12);
  --radius: 18px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  overscroll-behavior-x: none;
}

body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding-top: 82px;
  overflow-x: hidden;
  color: var(--text);
  background: var(--white);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

h1,
h2,
h3,
h4 {
  margin: 0 0 0.75rem;
  color: var(--navy);
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 600;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.65rem);
}

h3 {
  font-size: 1.2rem;
}

p {
  margin: 0 0 1rem;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin-inline: auto;
}

.navbar {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(18, 56, 42, 0.97);
  box-shadow: 0 4px 24px rgba(18, 56, 42, 0.18);
  backdrop-filter: blur(12px);
}

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

.brand {
  display: flex;
  align-items: center;
  color: var(--white);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.15;
}

.brand small {
  display: block;
  margin-top: 0.1rem;
  color: inherit;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: normal;
  text-transform: none;
}

.logo-mark {
  width: 50px;
  height: 50px;
  margin-right: 0.75rem;
  flex: 0 0 50px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
}

.nav-links > a:not(.nav-cta) {
  position: relative;
  padding: 1.9rem 0;
}

.nav-links > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 1.35rem;
  left: 0;
  height: 2px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

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

.nav-cta {
  padding: 0.7rem 1rem;
  border-radius: 999px;
  color: var(--navy-deep);
  background: var(--gold-light);
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.nav-cta:hover {
  color: var(--navy-deep);
  background: #a8c94a;
  box-shadow: 0 8px 20px rgba(18, 56, 42, 0.2);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  padding: 0.45rem 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 8px;
  color: var(--white);
  background: transparent;
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: #edf6ea;
}

.hero-slideshow,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  background-position: center right;
  background-size: cover;
  background-repeat: no-repeat;
  animation: hero-slide-fade 24s infinite;
}

.hero-slide::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(243, 248, 237, 0.98) 0%, rgba(237, 246, 234, 0.9) 42%, rgba(223, 238, 224, 0.35) 72%, rgba(223, 238, 224, 0.1) 100%);
  content: "";
}

.hero-slide-1 {
  background-image: url("../images/mainbg2.svg");
  animation-delay: 0s;
}

.hero-slide-2 {
  background-image: url("../images/mainbg3.svg");
  animation-delay: 6s;
}

.hero-slide-3 {
  background-image: url("../images/mainbg4.svg");
  animation-delay: 12s;
}

.hero-slide-4 {
  background-image: url("../images/hero.svg");
  animation-delay: 18s;
}

@keyframes hero-slide-fade {
  0%,
  21% {
    opacity: 1;
  }
  25%,
  96% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.split {
  display: grid;
  align-items: center;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2.5rem, 7vw, 6rem);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero-content h1 {
  line-height: 1.08;
}

.hero .lead {
  max-width: 700px;
  color: #000000;
}

.lead {
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.eyebrow,
.tag {
  display: inline-block;
  color: #477a4d;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.eyebrow {
  margin-bottom: 1rem;
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.7rem;
}

.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 9px 24px rgba(18, 56, 42, 0.16);
}

.btn-primary {
  color: var(--white);
  background: var(--navy);
}

.btn-secondary {
  border-color: var(--navy);
  color: var(--navy);
  background: transparent;
}

.btn-soft {
  color: var(--navy);
  background: var(--gold-light);
}

.page-hero {
  padding: clamp(4rem, 8vw, 6rem) 0;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 10%, rgba(159, 196, 119, 0.3), transparent 25%),
    linear-gradient(135deg, var(--navy-deep), #386b4c);
}

.page-hero h1 {
  color: var(--white);
}

.page-hero .lead {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.75);
}

.ministries-hero {
  background:
    linear-gradient(90deg, rgba(18, 56, 42, 0.94), rgba(18, 56, 42, 0.62)),
    url("../images/ministries.jpg") center 62% / cover no-repeat;
}

.campgress-hero {
  background:
    linear-gradient(90deg, rgba(18, 56, 42, 0.94), rgba(18, 56, 42, 0.56)),
    url("../images/campgress.jpg") center 65% / cover no-repeat;
}

.childrens-hero {
  background:
    linear-gradient(90deg, rgba(18, 56, 42, 0.94), rgba(18, 56, 42, 0.56)),
    url("../images/children.jpg") center / cover no-repeat;
}

.public-preaching-hero {
  background:
    linear-gradient(90deg, rgba(18, 56, 42, 0.94), rgba(18, 56, 42, 0.56)),
    url("../images/public.jpg") center / cover no-repeat;
}

.outreach-hero {
  background:
    linear-gradient(90deg, rgba(18, 56, 42, 0.94), rgba(18, 56, 42, 0.56)),
    url("../images/outreach.jpg") center / cover no-repeat;
}

.midnight-prayer-hero {
  background:
    linear-gradient(90deg, rgba(18, 56, 42, 0.94), rgba(18, 56, 42, 0.56)),
    url("../images/prayer.jpg") center / cover no-repeat;
}

.events-hero {
  background:
    linear-gradient(90deg, rgba(18, 56, 42, 0.94), rgba(18, 56, 42, 0.56)),
    url("../images/events.jpg") center 62% / cover no-repeat;
}

.blog-hero {
  background:
    linear-gradient(90deg, rgba(18, 56, 42, 0.92), rgba(18, 56, 42, 0.48)),
    url("../images/sectionheroblog.svg") center / cover no-repeat;
}

.radio-ministry-hero {
  background:
    linear-gradient(90deg, rgba(18, 56, 42, 0.92), rgba(18, 56, 42, 0.48)),
    url("../images/radio.jpg") center / cover no-repeat;
}

.churches-hero {
  background:
    linear-gradient(90deg, rgba(18, 56, 42, 0.92), rgba(18, 56, 42, 0.48)),
    url("../images/herochurch.jpg") center 55% / cover no-repeat;
}

.about-hero {
  background:
    linear-gradient(90deg, rgba(18, 56, 42, 0.92), rgba(18, 56, 42, 0.48)),
    url("../images/heroabout.jpg") center 70% / cover no-repeat;
}

.contact-hero {
  background:
    linear-gradient(90deg, rgba(18, 56, 42, 0.92), rgba(18, 56, 42, 0.48)),
    url("../images/herocontact.svg") center / cover no-repeat;
}

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 1rem;
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 600;
}

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

.breadcrumb a:hover {
  color: var(--white);
  text-decoration: underline;
}

.breadcrumb-separator {
  opacity: 0.7;
}

.article-breadcrumb {
  max-width: 840px;
  margin: 0 auto 2rem;
  justify-content: center;
  color: var(--navy);
}

.article-breadcrumb a:hover {
  color: var(--navy-deep);
}

.featured-modal[hidden] {
  display: none;
}

.featured-modal {
  position: fixed;
  z-index: 1200;
  inset: 0;
  display: grid;
  padding: 1.25rem;
  place-items: center;
}

.featured-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 24, 17, 0.78);
  backdrop-filter: blur(5px);
}

.featured-modal-dialog {
  position: relative;
  display: grid;
  overflow: hidden;
  width: min(900px, 100%);
  max-height: calc(100vh - 2.5rem);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 30px 80px rgba(5, 24, 17, 0.35);
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  animation: featured-modal-enter 0.35s ease both;
}

.featured-modal-close {
  position: absolute;
  z-index: 2;
  top: 0.85rem;
  right: 0.85rem;
  display: grid;
  width: 38px;
  height: 38px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 5px 18px rgba(5, 24, 17, 0.18);
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
}

.featured-modal-image {
  min-height: 430px;
  background: var(--soft);
}

.featured-modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-modal-content {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 3.5rem);
}

.featured-modal-content h2 {
  margin: 0.9rem 0 1rem;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.featured-modal-content p {
  margin-bottom: 1.5rem;
  color: var(--muted);
}

body.modal-open {
  overflow: hidden;
}

@keyframes featured-modal-enter {
  from {
    opacity: 0;
    transform: translateY(22px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.section-soft {
  background: var(--soft);
}

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

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.section-header > p {
  max-width: 500px;
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 1.4rem;
}

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

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.form-box {
  padding: clamp(1.4rem, 3vw, 2rem);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 35px rgba(18, 56, 42, 0.07);
}

.card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.icon {
  display: grid;
  width: 50px;
  height: 50px;
  margin-bottom: 1rem;
  place-items: center;
  border-radius: 14px;
  background: var(--gold-light);
  font-size: 1.5rem;
}

.mission-section .icon {
  color: var(--white);
  background: var(--navy);
}

.mission-section {
  background:
    linear-gradient(rgba(237, 246, 234, 0.9), rgba(237, 246, 234, 0.9)),
    url("../images/hero.svg") center / cover no-repeat,
    var(--soft);
}

.upcoming-events-section {
  background:
    linear-gradient(rgba(248, 245, 235, 0.9), rgba(248, 245, 235, 0.9)),
    url("../images/hero.svg") center / cover no-repeat,
    var(--cream);
}

.mission-section .section-header,
.ministries-preview .section-header,
.upcoming-events-section .section-header,
.latest-blog-section .section-header {
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.ministries-preview .icon {
  color: var(--white);
  background: var(--navy);
}

.about-page .icon {
  color: var(--white);
  background: var(--navy);
}

.muted {
  color: var(--muted);
}

.image-panel {
  min-height: 430px;
  border-radius: 24px;
  background:
    linear-gradient(160deg, rgba(18, 56, 42, 0.05), rgba(18, 56, 42, 0.72)),
    radial-gradient(circle at 50% 28%, #d9e9ad, transparent 20%),
    linear-gradient(145deg, #b8d2ae, #3f7656);
  box-shadow: var(--shadow);
}

.welcome-image {
  background:
    linear-gradient(160deg, rgba(18, 56, 42, 0.04), rgba(18, 56, 42, 0.34)),
    url("../images/worship.jpg") center / cover no-repeat;
}

.about-image {
  background:
    linear-gradient(160deg, rgba(18, 56, 42, 0.04), rgba(18, 56, 42, 0.28)),
    url("../images/hero2.jpg") center / cover no-repeat;
}

.stat-row {
  display: grid;
  margin-top: 2rem;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.stat {
  padding-top: 1rem;
  border-top: 2px solid var(--gold);
}

.stat strong,
.stat span {
  display: block;
}

.stat strong {
  color: var(--navy);
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
}

.stat span {
  color: var(--muted);
  font-size: 0.78rem;
}

.event-card,
.blog-card {
  overflow: hidden;
  padding: 0;
}

.event-date {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.3rem;
  color: var(--white);
  background: var(--navy);
  font-size: 0.8rem;
  font-weight: 700;
}

.event-body,
.blog-body {
  padding: 1.5rem;
}

.blog-thumb {
  display: grid;
  min-height: 180px;
  place-items: center;
  background: linear-gradient(135deg, var(--gold-light), var(--soft));
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 700;
}

.blog-thumb-image {
  overflow: hidden;
  height: 180px;
  padding: 0;
}

.blog-thumb-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-blog {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(0, 1.2fr);
}

.featured-blog .blog-thumb {
  min-height: 360px;
}

.featured-blog .blog-body {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 4rem);
}

.blog-list {
  display: grid;
  gap: 1.25rem;
}

.blog-list-item {
  display: grid;
  overflow: hidden;
  padding: 0;
  grid-template-columns: minmax(190px, 0.32fr) minmax(0, 1fr);
}

.blog-list-thumb {
  display: grid;
  min-height: 220px;
  place-items: center;
  color: var(--navy);
  background:
    radial-gradient(circle at 75% 20%, rgba(168, 201, 74, 0.38), transparent 24%),
    linear-gradient(145deg, var(--gold-light), var(--soft));
  font-size: 0.75rem;
  font-weight: 700;
}

.blog-list-thumb-image {
  overflow: hidden;
  padding: 0;
}

.blog-list-thumb-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-list-content {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  padding: clamp(1.4rem, 3vw, 2rem);
}

.blog-list-content .btn {
  margin-top: auto;
}

.article-header {
  max-width: 840px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.article-header .tag {
  margin-bottom: 1rem;
}

.article-header h1 {
  margin-bottom: 1rem;
  font-size: clamp(2.2rem, 6vw, 4.5rem);
}

.article-meta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 600;
}

.article-cover {
  display: grid;
  width: 100%;
  max-width: 850px;
  aspect-ratio: 16 / 9;
  min-height: 0;
  margin: 0 auto clamp(2.5rem, 6vw, 5rem);
  place-items: center;
  border: 2px dashed rgba(18, 56, 42, 0.25);
  border-radius: 20px;
  color: var(--navy);
  background:
    radial-gradient(circle at 75% 20%, rgba(168, 201, 74, 0.36), transparent 24%),
    linear-gradient(145deg, var(--gold-light), var(--soft));
  font-size: 0.85rem;
  font-weight: 700;
  text-align: center;
}

.article-cover img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}

.article-layout {
  display: grid;
  max-width: 1080px;
  margin: 0 auto;
  align-items: start;
  grid-template-columns: minmax(0, 1fr) 240px;
  gap: clamp(2rem, 6vw, 5rem);
}

.article-content {
  color: #33443b;
  font-size: 1.03rem;
  line-height: 1.9;
}

.article-content h2 {
  margin: 2.5rem 0 0.8rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

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

.article-content p {
  margin-bottom: 1.35rem;
}

.article-scripture {
  margin: 2rem 0;
  padding: 1.5rem 1.75rem;
  border-left: 4px solid var(--gold);
  border-radius: 0 12px 12px 0;
  color: var(--navy);
  background: var(--soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  font-style: italic;
}

.article-sidebar {
  position: sticky;
  top: 110px;
  padding: 1.4rem;
}

.article-sidebar h3 {
  margin-bottom: 0.65rem;
  font-size: 1rem;
}

.article-sidebar p {
  margin-bottom: 1.1rem;
  font-size: 0.85rem;
}

.leadership-groups {
  display: grid;
  gap: 3rem;
}

.leadership-section {
  padding-top: 2.5rem;
}

.leadership-group-header {
  margin-bottom: 1.25rem;
}

.leadership-group-header h3 {
  margin-top: 0.35rem;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.leadership-members {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.leadership-member-card {
  overflow: hidden;
  padding: 0;
}

.leadership-member-image {
  display: grid;
  min-height: 210px;
  place-items: center;
  color: var(--navy);
  background:
    radial-gradient(circle at 72% 20%, rgba(168, 201, 74, 0.4), transparent 25%),
    linear-gradient(145deg, var(--gold-light), var(--soft));
  font-size: 0.78rem;
  font-weight: 700;
}

.leadership-member-image img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.leadership-member-body {
  padding: 1.15rem;
  text-align: center;
}

.leadership-member-body h3 {
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.leadership-member-body p {
  margin: 0;
  font-size: 0.82rem;
}

.leadership-card {
  display: grid;
  overflow: hidden;
  padding: 0;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
}

.leadership-image {
  display: grid;
  min-height: 240px;
  place-items: center;
  color: var(--navy);
  background:
    radial-gradient(circle at 72% 20%, rgba(168, 201, 74, 0.4), transparent 25%),
    linear-gradient(145deg, var(--gold-light), var(--soft));
  font-size: 0.8rem;
  font-weight: 700;
}

.leadership-image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.leadership-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.6rem;
}

.leadership-body .eyebrow {
  display: block;
  margin-bottom: 0.5rem;
}

.leadership-body h3 {
  margin-bottom: 0.65rem;
}

.branch-thumb {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 1.25rem;
  place-items: center;
  border: 2px solid var(--navy);
  border-radius: 50%;
  background: transparent;
}

.branch-thumb img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 50%;
}

.branch-card .btn-soft {
  color: var(--white);
  background: var(--navy);
}

.branch-card .btn-soft:hover {
  color: var(--navy-deep);
  background: #a8c94a;
}

.ministry-card {
  display: flex;
  min-height: 280px;
  align-items: flex-start;
  flex-direction: column;
}

.ministry-card .btn {
  margin-top: auto;
}

.ministry-detail {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(2rem, 6vw, 5rem);
}

.ministry-slider {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: var(--navy);
  box-shadow: var(--shadow);
}

.ministry-slides {
  display: flex;
  transition: transform 0.45s ease;
}

.ministry-slide {
  display: grid;
  min-width: 100%;
  min-height: 460px;
  padding: 2rem;
  place-items: center;
  color: var(--navy-deep);
  background:
    radial-gradient(circle at 75% 20%, rgba(168, 201, 74, 0.48), transparent 24%),
    linear-gradient(145deg, #eef5e7, #bdd8b8);
  text-align: center;
}

.ministry-slide:nth-child(2) {
  background:
    radial-gradient(circle at 20% 75%, rgba(168, 201, 74, 0.4), transparent 25%),
    linear-gradient(145deg, #dcebd7, #9fc49c);
}

.ministry-slide:nth-child(3) {
  background:
    radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.55), transparent 24%),
    linear-gradient(145deg, #cce2c8, #76a86f);
}

.slide-placeholder {
  max-width: 300px;
}

.slide-placeholder strong {
  display: block;
  margin-bottom: 0.45rem;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
}

.slide-placeholder span {
  font-size: 0.82rem;
}

.slider-control {
  position: absolute;
  z-index: 2;
  top: 50%;
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  color: var(--white);
  background: rgba(18, 56, 42, 0.78);
  cursor: pointer;
  transform: translateY(-50%);
}

.slider-control:hover {
  color: var(--navy-deep);
  background: #a8c94a;
}

.slider-prev {
  left: 1rem;
}

.slider-next {
  right: 1rem;
}

.slider-dots {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 1rem;
  left: 0;
  display: flex;
  justify-content: center;
  gap: 0.45rem;
}

.slider-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 1px solid var(--white);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
}

.slider-dot.active {
  background: var(--white);
  transform: scale(1.25);
}

.ministry-copy .actions {
  margin-top: 1.5rem;
}

.list-check {
  padding: 0;
  list-style: none;
}

.list-check li {
  position: relative;
  margin: 0.65rem 0;
  padding-left: 1.8rem;
}

.list-check li::before {
  position: absolute;
  left: 0;
  color: #4d8256;
  content: "✓";
  font-weight: 700;
}

.cta-band {
  padding: clamp(2rem, 6vw, 4rem);
  border-radius: 26px;
  color: rgba(255, 255, 255, 0.78);
  background:
    radial-gradient(circle at 85% 20%, rgba(144, 188, 101, 0.34), transparent 25%),
    var(--navy);
  text-align: center;
}

.cta-band h2,
.cta-band .eyebrow {
  color: var(--white);
}

.cta-band .actions {
  justify-content: center;
}

.cta-band .btn-secondary {
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--white);
}

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

.field {
  display: grid;
  gap: 0.4rem;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--navy);
  font-size: 0.83rem;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.8rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  outline: none;
  background: #fbfdf9;
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(118, 168, 111, 0.18);
}

.notice {
  padding: 0.9rem 1rem;
  border-left: 4px solid var(--gold);
  border-radius: 6px;
  background: var(--cream);
}

.map-placeholder {
  display: grid;
  min-height: 360px;
  padding: 2rem;
  place-items: center;
  border: 2px dashed #aac4ad;
  border-radius: var(--radius);
  background: #e5efe3;
  text-align: center;
}

.church-map {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--soft);
  box-shadow: var(--shadow);
}

.church-map iframe {
  display: block;
  width: 100%;
  min-height: 420px;
  border: 0;
}

.map-open-link {
  position: absolute;
  z-index: 2;
  right: 1rem;
  bottom: 1rem;
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 5px 18px rgba(18, 56, 42, 0.28);
  font-size: 0.75rem;
  font-weight: 700;
}

.map-open-link:hover {
  color: var(--navy-deep);
  background: #a8c94a;
}

.map-locations {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.map-location-btn {
  padding: 0.55rem 0.85rem;
  border: 1px solid var(--navy);
  border-radius: 999px;
  color: var(--navy);
  background: var(--white);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 700;
}

.map-location-btn:hover,
.map-location-btn.active {
  color: var(--white);
  background: var(--navy);
}

.footer {
  padding: 4rem 0 1.5rem;
  color: rgba(255, 255, 255, 0.68);
  background: var(--navy-deep);
}

.footer h3,
.footer h4 {
  color: var(--white);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.8rem;
}

.footer-brand img {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  border-radius: 50%;
  object-fit: contain;
}

.footer-brand h3 {
  margin: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 0.9fr 1.2fr;
  gap: 2rem;
}

.footer a {
  display: block;
  width: fit-content;
  margin: 0.35rem 0;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 1.3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.75rem;
}

.footer-legal {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.footer-legal a {
  display: inline;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.back-to-top {
  position: fixed;
  z-index: 900;
  right: 1.2rem;
  bottom: 1.2rem;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: var(--navy);
  box-shadow: var(--shadow);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: 0.2s ease;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    display: flex;
    width: min(82vw, 360px);
    max-width: 100%;
    height: 100vh;
    padding: 6rem 2rem 2rem;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    color: var(--navy);
    background: var(--white);
    box-shadow: -12px 0 40px rgba(18, 56, 42, 0.18);
    transform: translate3d(105%, 0, 0);
    transition: transform 0.25s ease;
  }

  .nav-links.open {
    transform: translate3d(0, 0, 0);
  }

  .nav-links > a:not(.nav-cta) {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border);
  }

  .nav-links > a:not(.nav-cta)::after {
    display: none;
  }

  .nav-cta {
    margin-top: 1rem;
    text-align: center;
  }

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

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

  .featured-blog {
    grid-template-columns: 1fr;
  }

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

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

  .leadership-members {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  body {
    padding-top: 70px;
  }

  .nav-inner {
    min-height: 70px;
  }

  .featured-modal {
    padding: 0.75rem;
  }

  .featured-modal-dialog {
    overflow-y: auto;
    max-height: calc(100vh - 1.5rem);
    grid-template-columns: 1fr;
  }

  .featured-modal-image {
    min-height: 210px;
    max-height: 32vh;
  }

  .featured-modal-content {
    padding: 1.5rem;
  }

  .brand {
    max-width: 245px;
    font-size: 0.88rem;
  }

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

  .logo-mark {
    width: 43px;
    height: 43px;
    flex: 0 0 43px;
  }

  .hero {
    background: #edf6ea;
  }

  .hero-slide {
    background-position: center;
  }

  .hero-slide::after {
    background: linear-gradient(rgba(243, 248, 237, 0.9), rgba(237, 246, 234, 0.9));
  }

  .ministry-slide {
    min-height: 340px;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .blog-list-item {
    grid-template-columns: 1fr;
  }

  .blog-list-thumb {
    min-height: 190px;
  }

  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: static;
  }

  .leadership-card {
    grid-template-columns: 1fr;
  }

  .leadership-members {
    grid-template-columns: 1fr;
  }

  .section-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .stat-row {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .hero-slide {
    animation: none;
    opacity: 0;
  }

  .hero-slide-1 {
    opacity: 1;
  }
}
