:root {
  --navy: #12315e;
  --sky: #75aac6;
  --dark: #202020;
  --white: #ffffff;
  --text: #2b2b2b;
  --line: rgba(0, 0, 0, 0.18);
  --gold: #f3d38b;
  --panel: rgba(255, 255, 255, 0.96);
}

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

body {
  color: var(--text);
  font-family: "Poppins", sans-serif;
  line-height: 1.55;
  background:
    radial-gradient(circle at top right, rgba(117, 170, 198, 0.1), transparent 24%),
    linear-gradient(180deg, #fbfbfa 0%, #f5f5f3 100%);
}

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

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

button,
input {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.container,
.header-inner {
  width: min(calc(100% - 2rem), 1360px);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  padding: 0.75rem 0;
  transition: background 0.25s ease, box-shadow 0.25s ease, backdrop-filter 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(0, 0, 0, 0.94);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand {
  margin-right: auto;
}

.brand img {
  width: 162px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.88);
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.site-nav a.active,
.site-nav a:hover,
.site-nav a:focus-visible {
  color: #f3d38b;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
}

.home-hero,
.inner-hero {
  position: relative;
  overflow: hidden;
}

.home-hero {
  min-height: 100vh;
  background: url("../images/hero-section.jpeg") center/cover no-repeat;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 8, 14, 0.38) 0%, rgba(5, 8, 14, 0.66) 100%),
    radial-gradient(circle at center, rgba(18, 49, 94, 0.16), transparent 48%);
}

.home-hero-content,
.inner-hero-content {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  padding: 12rem 1rem 5rem;
  text-align: center;
  color: var(--white);
}

.home-hero-content h1,
.inner-hero-content h1,
.worship-copy h2,
.expressions-copy h2,
.ministries-intro h2,
.nsppd-copy h2,
.dual-callout-left h2,
.dual-callout-content h2,
.footer-copy h2,
.blue-intro-grid h2,
.values-panel h2,
.contact-heading h2,
.leader-copy-card h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.hero-mini,
.section-kicker {
  font-family: "Montserrat", sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
}

.home-hero-content h1 {
  margin-top: 0.65rem;
  font-size: clamp(3rem, 8vw, 5.2rem);
}

.home-hero-content h2 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.35rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #ffe49d;
  text-transform: uppercase;
}

.hero-statement {
  margin-top: 1.35rem;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 800;
  text-transform: uppercase;
}

.outline-button,
.line-button,
.solid-dark-button,
.give-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.9rem 1.7rem;
  margin-top: 2rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.outline-button:hover,
.line-button:hover,
.solid-dark-button:hover,
.give-button:hover,
.footer-form button:hover,
.community-card button:hover {
  transform: translateY(-2px);
}

.outline-button {
  border: 1px solid rgba(255, 255, 255, 0.8);
  color: var(--white);
}

.line-button {
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: var(--white);
}

.dark-line-button,
.dark-outline-button {
  border-color: var(--line);
  color: var(--text);
}

.solid-dark-button {
  background: #2a2a2a;
  color: var(--white);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
}

.give-button {
  border-radius: 999px;
  background: #e02f2f;
  color: var(--white);
  box-shadow: 0 18px 34px rgba(224, 47, 47, 0.24);
}

.disabled-give-button {
  opacity: 0.6;
  pointer-events: none;
}

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

.worship-row,
.expressions-grid,
.mission-grid,
.blue-intro-grid,
.contact-cards,
.services-page-strip .service-boxes,
.salvation-main-grid,
.nsppd-grid,
.dual-callout-grid,
.ministries-home-grid {
  display: grid;
  gap: 2rem;
}

.worship-row {
  grid-template-columns: 1.25fr 0.55fr;
  padding: 7rem 0;
  align-items: start;
}

.worship-copy h2,
.expressions-copy h2,
.nsppd-copy h2,
.dual-callout-left h2,
.dual-callout-content h2 {
  margin: 0.75rem 0 1rem;
  font-size: clamp(1.35rem, 2.7vw, 2.15rem);
}

.dark-kicker {
  color: #666;
}

.services-strip {
  padding: 0;
}

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

.service-box {
  padding: 3rem 2rem;
  text-align: center;
  color: var(--white);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.service-box h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  font-weight: 900;
}

.service-box p,
.service-box span {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

.service-box-dark {
  background: #12315e;
}

.service-box-mid {
  background: #2a2a2a;
}

.service-box-light {
  background: #8fb8cf;
}

.expressions-section {
  padding: 7rem 0;
  background: #000;
  color: var(--white);
}

.expressions-grid {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
}

.expressions-map {
  position: relative;
}

.map-pill {
  position: absolute;
  display: inline-flex;
  padding: 0.45rem 0.85rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
  color: #78aac7;
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
}

.map-pill-canada { top: 28%; left: 20%; }
.map-pill-usa { top: 44%; left: 17%; }
.map-pill-uk { top: 20%; left: 47%; }
.map-pill-nigeria { top: 48%; left: 55%; }
.map-pill-sa { top: 72%; left: 55%; }

.ministries-home {
  padding: 7rem 0;
  background: var(--sky);
}

.ministries-home-grid {
  grid-template-columns: 1fr 0.9fr 0.9fr;
  align-items: start;
}

.ministries-intro h2 {
  position: relative;
  margin: 0.5rem 0 2rem;
  padding-left: 1rem;
  font-size: clamp(1.45rem, 2.8vw, 2.2rem);
}

.ministries-intro h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2rem;
  width: 2px;
  height: 64px;
  background: var(--text);
}

.ministry-photo {
  height: 320px;
  background: linear-gradient(rgba(0,0,0,0.22), rgba(0,0,0,0.22)), url("../images/hero-section.jpeg") center/cover no-repeat;
  border-radius: 16px 16px 0 0;
}

.ministry-photo-two {
  background-position: right center;
}

.ministry-tile h3 {
  margin: 1rem 0 0.7rem;
  font-family: "Montserrat", sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
}

.ministry-tile {
  padding-bottom: 1rem;
}

.nsppd-grid {
  grid-template-columns: 0.9fr 1.1fr;
  padding: 7rem 0;
  align-items: start;
}

.dual-callout-section {
  padding: 6rem 0;
  background: #fbfbfb;
}

.dual-callout-grid {
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.dual-callout-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 2rem;
  text-align: center;
}

.dual-callout-right {
  position: relative;
  min-height: 640px;
  border: 12px solid #0f3160;
  background: url("../images/give.png") center/cover no-repeat;
  box-shadow: 0 24px 50px rgba(15, 49, 96, 0.18);
}

.dual-callout-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
}

.dual-callout-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 3rem;
  text-align: center;
  color: var(--white);
}

.bold-line {
  margin-top: 1rem;
  font-weight: 700;
}

.inner-hero {
  min-height: 600px;
  background-position: center;
  background-size: cover;
}

.inner-hero-content h1 {
  font-size: clamp(1.9rem, 4.6vw, 3.4rem);
  text-transform: uppercase;
}

.hero-rule {
  width: min(100%, 820px);
  height: 1px;
  margin: 1rem auto 1.5rem;
  background: rgba(255, 233, 167, 0.7);
}

.blue-intro-section {
  padding: 6rem 0;
  background: var(--navy);
  color: var(--white);
}

.blue-intro-grid {
  grid-template-columns: 1fr 1.2fr;
  align-items: start;
}

.blue-intro-grid h2 {
  font-size: clamp(1.6rem, 3.3vw, 2.7rem);
  text-transform: uppercase;
}

.mission-section {
  padding: 6rem 0;
  background: #f1f1ef;
}

.mission-grid {
  grid-template-columns: 360px 1fr;
  align-items: center;
}

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

.mission-copy h3,
.values-grid h3 {
  margin-bottom: 1rem;
  font-family: "Montserrat", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.mission-copy p + h3 {
  margin-top: 2.6rem;
}

.values-section {
  padding: 6rem 0;
  background-position: center;
  background-size: cover;
}

.values-panel {
  padding: 3rem;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 22px 50px rgba(18, 49, 94, 0.12);
}

.values-panel h2 {
  margin-bottom: 2rem;
  text-align: center;
  font-size: 2rem;
  text-transform: uppercase;
}

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

.leadership-showcase {
  padding: 6rem 0;
  background: #232323;
}

.leadership-slider {
  position: relative;
  width: min(calc(100% - 2rem), 1800px);
  margin: 0 auto;
  padding: 0 1rem 3rem;
}

.leader-stage {
  position: relative;
}

.leader-slide {
  display: none;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 1.5rem;
}

.leader-slide.is-active {
  display: grid;
}

.leader-photo {
  min-height: 900px;
  width: 100%;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: contain;
  filter: drop-shadow(0 22px 30px rgba(0, 0, 0, 0.24));
}

.leader-photo-jerry {
  background-image: url("../images/pastor-jerry.png");
}

.leader-photo-aloy {
  display: flex;
  align-items: end;
  justify-content: center;
  padding: 3rem;
  background: linear-gradient(180deg, #1e2b3f, #405a7f);
}

.aloy-note {
  color: var(--white);
  font-size: 1.2rem;
  text-align: center;
}

.leader-copy-card {
  max-width: 700px;
  padding: 3rem;
  background: #f8f8f8;
  box-shadow: 0 26px 54px rgba(0, 0, 0, 0.14);
}

.leader-copy-card h2 {
  margin-bottom: 2rem;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  text-transform: uppercase;
}

.leader-copy-card p,
.leader-copy-card a {
  font-family: Georgia, serif;
  color: #0b3160;
  font-size: clamp(1rem, 1.7vw, 1.45rem);
  line-height: 1.55;
}

.leader-copy-card a {
  display: inline-block;
  margin-top: 2rem;
  text-decoration: underline;
}

.leader-role {
  margin-top: 1rem;
  font-family: "Poppins", sans-serif !important;
  font-size: 1.05rem !important;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border: 0;
  background: transparent;
  color: var(--white);
  font-size: 4rem;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.slider-arrow:hover {
  opacity: 0.75;
}

.slider-arrow-left { left: 0; }
.slider-arrow-right { right: 0; }

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1rem;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
}

.slider-dot.is-active {
  background: var(--white);
}

.salvation-main,
.contact-section {
  padding: 6rem 0;
}

.salvation-main-grid {
  grid-template-columns: 1fr 1fr;
}

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

.contact-heading {
  margin-bottom: 3rem;
  text-align: center;
}

.contact-heading h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

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

.contact-card {
  padding: 3rem 2rem;
  background: rgba(255, 255, 255, 0.96);
  text-align: center;
  border-radius: 30px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.contact-card h3 {
  margin-bottom: 1rem;
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
}

.site-footer {
  background: var(--navy);
  color: var(--white);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 2rem;
  padding: 4rem 0 2rem;
}

.footer-copy h2 {
  margin-bottom: 0.9rem;
  font-size: clamp(1.45rem, 2.4vw, 1.95rem);
}

.footer-form {
  display: grid;
  gap: 0.9rem;
}

.footer-form input {
  min-height: 52px;
  padding: 0.9rem 1rem;
  border: 0;
  border-radius: 6px;
}

.footer-form button {
  min-height: 52px;
  border: 0;
  background: #f3d38b;
  color: #000;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  cursor: pointer;
  border-radius: 6px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.4rem;
  padding: 0 0 1.8rem;
}

.footer-links a {
  font-family: "Montserrat", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
}

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

.footer-meta-links,
.footer-socials {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-meta-links a,
.footer-socials a {
  color: var(--white);
}

.footer-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: #f3d38b;
  color: #0f3160 !important;
  border-radius: 6px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.footer-social-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1.5rem;
}

.footer-brand-row img {
  width: 150px;
}

.footer-columns {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 1fr 1fr;
  gap: 2rem;
  padding: 1rem 0 2.25rem;
}

.footer-column h3 {
  margin-bottom: 1rem;
  color: var(--sky);
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-column a,
.footer-column p {
  display: block;
  margin-bottom: 0.85rem;
  font-size: 1rem;
}

.footer-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.give-options-section,
.community-section,
.legal-section {
  padding: 6rem 0;
  background: #fff;
}

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

.give-option-card,
.community-card,
.legal-card {
  padding: 2.2rem;
  background: #fff;
  border: 1px solid rgba(18, 49, 94, 0.12);
  box-shadow: 0 16px 34px rgba(15, 49, 96, 0.08);
  border-radius: 20px;
}

.give-option-card h3,
.community-card h3,
.legal-card h2 {
  margin-bottom: 0.9rem;
  font-family: "Montserrat", sans-serif;
  font-size: 1.18rem;
  font-weight: 800;
}

.give-option-card p,
.community-card p,
.legal-card p,
.legal-card li {
  color: #4c4c4c;
}

.give-option-card .line-button,
.community-card .line-button {
  margin-top: 1.5rem;
}

.community-card form {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.4rem;
}

.community-card input,
.community-card textarea {
  width: 100%;
  min-height: 50px;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(18, 49, 94, 0.18);
  background: #fff;
  border-radius: 10px;
}

.community-card textarea {
  min-height: 120px;
  resize: vertical;
}

.community-card button {
  min-height: 50px;
  border: 0;
  background: var(--navy);
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 10px;
}

.community-card-note {
  margin-top: 0.85rem;
  font-size: 0.96rem;
}

.legal-card {
  max-width: 900px;
  margin: 0 auto;
}

.legal-card ul {
  padding-left: 1.2rem;
  margin-top: 1rem;
}

.admin-shell {
  padding: 8.5rem 0 5rem;
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(18, 49, 94, 0.96), rgba(10, 18, 32, 0.98)),
    url("../images/hero-section.jpeg") center/cover no-repeat;
}

.admin-panel,
.timer-panel {
  max-width: 1040px;
  margin: 0 auto;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.22);
}

.admin-panel {
  max-width: 640px;
  padding: 2.4rem;
}

.admin-panel h1,
.timer-panel h1 {
  margin-bottom: 0.8rem;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 800;
}

.admin-panel p,
.timer-panel p {
  color: #505050;
}

.admin-form {
  display: grid;
  gap: 1rem;
  margin-top: 1.6rem;
}

.admin-form label {
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
}

.admin-form input {
  min-height: 54px;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(18, 49, 94, 0.16);
  border-radius: 12px;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.admin-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.9rem 1.4rem;
  border: 0;
  border-radius: 12px;
  background: var(--navy);
  color: var(--white);
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}

.admin-button-secondary {
  background: #e8edf5;
  color: var(--navy);
}

.admin-note,
.admin-error {
  margin-top: 1rem;
  font-size: 0.95rem;
}

.admin-error {
  color: #b42318;
}

.timer-panel {
  display: none;
  padding: 1.4rem;
}

.timer-panel.is-visible {
  display: block;
}

.timer-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.timer-toolbar-copy {
  max-width: 680px;
}

.timer-frame-wrap {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(18, 49, 94, 0.12);
  background: #0c1422;
}

.timer-frame {
  width: 100%;
  min-height: 78vh;
  border: 0;
  background: #0c1422;
}

.admin-hidden {
  display: none;
}

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

  .site-nav {
    position: absolute;
    top: calc(100% + 0.4rem);
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.95);
    border-radius: 16px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
  }

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

  .worship-row,
  .expressions-grid,
  .ministries-home-grid,
  .nsppd-grid,
  .dual-callout-grid,
  .blue-intro-grid,
  .mission-grid,
  .salvation-main-grid,
  .footer-top,
  .contact-cards,
  .values-grid,
  .leader-slide {
    grid-template-columns: 1fr;
  }

  .leader-photo {
    min-height: 680px;
  }

  .leader-copy-card {
    max-width: none;
  }

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

  .footer-columns,
  .give-options-grid,
  .community-grid {
    grid-template-columns: 1fr 1fr;
  }

  .timer-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .brand img {
    width: 126px;
  }

  .home-hero-content,
  .inner-hero-content {
    padding-top: 9.5rem;
    padding-bottom: 4rem;
  }

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

  .map-pill {
    font-size: 0.72rem;
  }

  .footer-columns,
  .give-options-grid,
  .community-grid {
    grid-template-columns: 1fr;
  }

  .home-hero {
    min-height: 88vh;
    background-position: center;
  }

  .worship-row,
  .expressions-section,
  .ministries-home,
  .dual-callout-section,
  .mission-section,
  .values-section,
  .salvation-main,
  .contact-section,
  .give-options-section,
  .community-section,
  .legal-section {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }

  .leader-slide {
    gap: 0;
  }

  .leader-photo {
    min-height: 600px;
    background-size: contain;
    background-position: center bottom;
  }

  .leader-copy-card {
    padding: 2rem 1.4rem;
  }

  .slider-arrow {
    top: 32%;
    font-size: 3rem;
  }

  .dual-callout-right {
    min-height: 520px;
    border-width: 8px;
  }

  .admin-shell {
    padding-top: 7.5rem;
  }

  .admin-panel,
  .timer-panel {
    border-radius: 18px;
  }

  .admin-panel {
    padding: 1.5rem;
  }

  .timer-frame {
    min-height: 70vh;
  }
}
