/* ============================================================
   AFMA — The Apostolic Faith Mission of Africa
   Polished design system
   ============================================================ */

:root {
  --maroon: #800000;
  --maroon-2: #9c1111;
  --maroon-dark: #4f0000;
  --maroon-deep: #2e0303;
  --cream: #FDFBD4;
  --cream-soft: #fffef0;
  --cream-tint: #fbf6e0;
  --gold: #d9a441;
  --gold-soft: #eec36a;
  --gold-pale: #f7e2ae;
  --ink: #241414;
  --muted: #6f5b4e;
  --white: #ffffff;
  --green: #25D366;
  --shadow-sm: 0 4px 14px rgba(80, 0, 0, 0.08);
  --shadow: 0 18px 45px rgba(80, 0, 0, 0.16);
  --shadow-lg: 0 30px 70px rgba(80, 0, 0, 0.22);
  --radius: 14px;
  --radius-sm: 9px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --maxw: 1180px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

/* ---------- Reveal animations (driven by assets/app.js) ---------- */
.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.js .reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.js .reveal.d1 { transition-delay: 0.1s; }
.js .reveal.d2 { transition-delay: 0.2s; }
.js .reveal.d3 { transition-delay: 0.3s; }

/* ---------- Global polish ---------- */
html {
  scroll-padding-top: 96px;
}

::selection {
  background: rgba(217, 164, 65, 0.45);
  color: var(--maroon-deep);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(217, 164, 65, 0.7);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .js .reveal,
  .js .reveal.d1,
  .js .reveal.d2,
  .js .reveal.d3 {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============================================================
   Topbar
   ============================================================ */

.topbar {
  background: linear-gradient(90deg, var(--maroon-deep), var(--maroon-dark));
  color: var(--cream);
  font-size: 0.9rem;
  padding: 0.7rem 5vw;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  letter-spacing: 0.01em;
}

.topbar strong {
  color: var(--gold);
  font-weight: 800;
}

/* ============================================================
   Navigation
   ============================================================ */

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(253, 250, 232, 0.92);
  border-bottom: 1px solid rgba(128, 0, 0, 0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.85rem 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  transition: box-shadow 0.3s ease, padding 0.3s ease;
}

.navbar.scrolled {
  box-shadow: 0 8px 30px rgba(80, 0, 0, 0.14);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--maroon);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.15;
  min-width: 0;
}

.brand-logo {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 auto;
  box-shadow: 0 6px 18px rgba(128, 0, 0, 0.28);
  border: 2px solid rgba(217, 164, 65, 0.55);
  padding: 2px;
  background: var(--white);
}

.brand span {
  display: block;
  max-width: 330px;
  font-size: 0.94rem;
  letter-spacing: 0.02em;
}

.brand .brand-sub {
  display: block;
  text-align: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 700;
  color: var(--maroon-dark);
}

.nav-links a {
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.93rem;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
}

.nav-links a:hover {
  background: rgba(128, 0, 0, 0.08);
  color: var(--maroon);
}

.nav-links a.active {
  background: linear-gradient(135deg, var(--maroon), var(--maroon-2));
  color: var(--cream);
  box-shadow: 0 6px 16px rgba(128, 0, 0, 0.3);
}

.nav-toggle {
  display: none;
  background: none;
  border: 2px solid rgba(128, 0, 0, 0.25);
  border-radius: 10px;
  width: 46px;
  height: 42px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  transition: background 0.2s ease;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--maroon);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   Mobile nav — left-side drawer
   ============================================================ */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-overlay.active {
  display: block;
  opacity: 1;
}

/* ============================================================
   Buttons
   ============================================================ */

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 50px;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.28s ease;
  letter-spacing: 0.01em;
}

.button.primary {
  background: linear-gradient(135deg, var(--maroon), var(--maroon-2));
  color: var(--cream);
  box-shadow: 0 10px 24px rgba(128, 0, 0, 0.32);
}

.button.primary:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: var(--maroon-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(217, 164, 65, 0.45);
}

.button.secondary {
  border-color: rgba(253, 251, 212, 0.7);
  color: var(--cream);
}

.button.secondary:hover {
  background: var(--cream);
  color: var(--maroon);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.25);
}

.button.outline-maroon {
  border-color: rgba(128, 0, 0, 0.35);
  color: var(--maroon);
}

.button.outline-maroon:hover {
  background: var(--maroon);
  color: var(--cream);
  transform: translateY(-2px);
}

.form-button {
  border: 0;
  cursor: pointer;
}

/* ============================================================
   Sections & headings
   ============================================================ */

section {
  padding: 4.5rem 5vw;
}

.section {
  width: 100%;
}

.wrap {
  width: min(var(--maxw), 100%);
  margin: 0 auto;
}

.section-title {
  max-width: 780px;
  margin-bottom: 2.4rem;
}

.section-title.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-title h2 {
  color: var(--maroon);
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
  margin-bottom: 0.9rem;
  letter-spacing: -0.01em;
}

.section-title p {
  color: var(--muted);
  font-size: 1.06rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  margin-bottom: 1.1rem;
}

.eyebrow::before {
  content: '';
  width: 26px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px;
}

.content-band {
  background: linear-gradient(135deg, var(--cream-soft) 0%, var(--cream) 100%);
}

/* ============================================================
   Home hero
   ============================================================ */

.hero {
  min-height: 92vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 1fr);
  align-items: center;
  gap: 3rem;
  padding: 6rem 5vw 5rem;
  color: var(--cream);
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 8% 0%, rgba(156, 17, 17, 0.55) 0%, transparent 48%),
    radial-gradient(ellipse at 96% 22%, rgba(217, 164, 65, 0.17) 0%, transparent 45%),
    radial-gradient(ellipse at 78% 118%, rgba(217, 164, 65, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 30% 130%, rgba(156, 17, 17, 0.5) 0%, transparent 55%),
    linear-gradient(135deg, #2a0303 0%, #4f0000 52%, #360404 100%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath d='M26 2h12v22h24v12H38v28H26V36H2V24h24z' fill='%23FDFBD4'/%3E%3C/svg%3E");
  background-size: 120px 120px;
  background-position: center;
  opacity: 0.05;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse at 12% -6%, rgba(217, 164, 65, 0.13) 0%, transparent 45%),
    radial-gradient(ellipse at 102% 8%, rgba(217, 164, 65, 0.14) 0%, transparent 40%),
    linear-gradient(180deg, rgba(20, 0, 0, 0.28) 0%, transparent 30%, transparent 70%, rgba(20, 0, 0, 0.4) 100%);
  pointer-events: none;
}

.hero-watermarks {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.home-wm {
  position: absolute;
  right: -6rem;
  bottom: -4rem;
  width: min(300px, 34vw);
  height: auto;
  transform: rotate(-18deg);
  opacity: 0.09;
  filter: drop-shadow(0 0 40px rgba(253, 251, 212, 0.15));
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000 55%, transparent 100%);
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000 55%, transparent 100%);
}

@media (max-width: 900px) {
  .home-wm {
    width: 200px;
    right: -3rem;
    bottom: -2rem;
    opacity: 0.07;
  }
}

.cross-wm {
  position: absolute;
  fill: currentColor;
  color: var(--cream);
  opacity: 0.05;
}

.cross-wm.wm-gold {
  color: var(--gold);
}

.cw1 {
  width: 320px;
  height: 320px;
  top: -70px;
  left: -70px;
  transform: rotate(-14deg);
  opacity: 0.06;
  filter: drop-shadow(0 0 26px rgba(217, 164, 65, 0.4));
}

.cw2 {
  width: 560px;
  height: 560px;
  right: -190px;
  top: 26%;
  opacity: 0.045;
  transform: rotate(10deg);
  filter: drop-shadow(0 0 44px rgba(217, 164, 65, 0.35));
}

.cw3 {
  width: 380px;
  height: 380px;
  left: 26%;
  top: 10%;
  opacity: 0.055;
  color: var(--gold);
  transform: rotate(-5deg);
  filter: drop-shadow(0 0 36px rgba(217, 164, 65, 0.45));
}

.cw4 {
  width: 250px;
  height: 250px;
  left: 6%;
  bottom: -50px;
  opacity: 0.07;
  transform: rotate(18deg);
}

.cw5 {
  width: 150px;
  height: 150px;
  right: 34%;
  bottom: 10%;
  opacity: 0.08;
  transform: rotate(-20deg);
}

.cw6 {
  width: 110px;
  height: 110px;
  left: 28%;
  bottom: 4%;
  opacity: 0.07;
  transform: rotate(25deg);
}

.cw7 {
  width: 90px;
  height: 90px;
  top: 15%;
  right: 21%;
  opacity: 0.08;
  transform: rotate(12deg);
}

.cross-jesus {
  position: absolute;
  z-index: 0;
  width: 900px;
  height: auto;
  left: -260px;
  top: -90px;
  opacity: 0.15;
  transform: rotate(-25deg);
  filter: drop-shadow(0 0 70px rgba(217, 164, 65, 0.3));
  pointer-events: none;
}

.cross-jesus .beam {
  fill: var(--gold);
}

.cross-jesus .beam .halo {
  fill: rgba(217, 164, 65, 0.16);
  stroke: var(--gold);
  stroke-width: 2.5;
}

.cross-jesus .beam .inri {
  fill: var(--gold-soft);
}

.cross-jesus .wood {
  fill: none;
  stroke: rgba(128, 0, 0, 0.35);
  stroke-width: 2.5;
  stroke-linecap: round;
}

.cross-jesus .fig {
  fill: var(--cream);
}

.cross-jesus .arm {
  stroke: var(--cream);
  stroke-width: 12;
  stroke-linecap: round;
}

.cross-jesus .thorns,
.cross-jesus .nail {
  fill: #6b4a0a;
}

.cross-jesus .loin {
  fill: rgba(217, 164, 65, 0.55);
}

.hero-gallery {
  position: relative;
  z-index: 2;
  width: 100%;
  margin-left: auto;
  padding: 12px;
  border-radius: 18px;
  border: 1px solid rgba(217, 164, 65, 0.35);
  background: linear-gradient(160deg, #6b1010 0%, #3d0000 100%);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
}

.hero-slides {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 12px;
  overflow: hidden;
  background: #1a0000;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #1a0000;
  opacity: 0;
  transition: opacity 1.1s ease-in-out;
}

.hero-slide.portrait {
  background-size: contain;
  background-color: #160303;
}

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

.hero-content {
  position: relative;
  z-index: 2;
  width: min(820px, 100%);
}

.hero-logo {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.8rem;
}

.hero-logo img {
  width: 88px;
  height: 88px;
  display: block;
  object-fit: contain;
  clip-path: circle(42% at 50% 50%);
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.45));
}

.hero-logo-text {
  display: block;
  max-width: 170px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.6;
  text-transform: uppercase;
}

.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 0, 0, 0.55);
  color: var(--cream);
  font-size: 1.5rem;
  line-height: 1;
  z-index: 5;
  backdrop-filter: blur(4px);
  transition: background 0.3s ease, transform 0.3s ease;
}

.hero-nav:hover {
  background: var(--gold);
  color: #2a0303;
}

.hero-nav:active {
  transform: translateY(-50%) scale(0.94);
}

.hero-prev {
  left: 24px;
}

.hero-next {
  right: 24px;
}

.hero-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 7px;
  z-index: 5;
}

.hero-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  background: rgba(253, 251, 212, 0.45);
  transition: width 0.3s ease, background 0.3s ease;
}

.hero-dot:hover {
  background: rgba(253, 251, 212, 0.8);
}

.hero-dot.active {
  width: 24px;
  background: var(--gold);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  line-height: 1;
  margin-bottom: 1.4rem;
  letter-spacing: -0.015em;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

.hero p {
  max-width: 640px;
  font-size: 1.16rem;
  color: #fffde4;
  margin-bottom: 2.1rem;
}

.motto {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  max-width: 100%;
  color: var(--gold);
  border: 1px solid rgba(217, 164, 65, 0.4);
  background: rgba(217, 164, 65, 0.1);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  margin-bottom: 1.6rem;
  font-size: clamp(0.7rem, 1.5vw, 0.92rem);
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-scroll {
  position: absolute;
  bottom: 1.6rem;
  left: 5vw;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(253, 251, 212, 0.75);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-scroll::after {
  content: '';
  width: 1px;
  height: 34px;
  background: linear-gradient(180deg, var(--gold), transparent);
}

/* ============================================================
   Services page — slideshow backdrop
   ============================================================ */

.services-slide-section {
  position: relative;
  overflow: hidden;
  padding: 4rem 5vw;
}

.svc-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.svc-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}

.svc-slide.active {
  opacity: 1;
}

/* CSS-only services slideshow — 4 slides × 4s = 16s cycle */
.svc-slides .svc-slide {
  animation: svcSlideShow 16s linear infinite;
}
.svc-slides .svc-slide:nth-child(1) { animation-delay: 0s; }
.svc-slides .svc-slide:nth-child(2) { animation-delay: 4s; }
.svc-slides .svc-slide:nth-child(3) { animation-delay: 8s; }
.svc-slides .svc-slide:nth-child(4) { animation-delay: 12s; }

@keyframes svcSlideShow {
  0%    { opacity: 0; }
  3%    { opacity: 1; }
  25%   { opacity: 1; }
  28%   { opacity: 0; }
  100%  { opacity: 0; }
}

.svc-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(30, 0, 0, 0.66) 0%,
    rgba(60, 0, 0, 0.55) 100%
  );
}

/* ============================================================
   Page hero (subpages)
   ============================================================ */

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 5.5rem 5vw;
  color: var(--cream);
  background:
    radial-gradient(ellipse at 82% 0%, rgba(217, 164, 65, 0.2) 0%, transparent 55%),
    linear-gradient(115deg, rgba(46, 3, 3, 0.96) 0%, rgba(128, 0, 0, 0.88) 55%, rgba(156, 17, 17, 0.85) 100%);
}

.page-hero::before,
.page-hero::after {
  content: '';
  position: absolute;
  border: 1px solid rgba(253, 251, 212, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.page-hero::before {
  width: 460px;
  height: 460px;
  right: -140px;
  top: -180px;
}

.page-hero::after {
  width: 320px;
  height: 320px;
  left: 6%;
  bottom: -220px;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
}

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

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 4.6rem);
  line-height: 1.02;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
  text-shadow: 0 4px 22px rgba(0, 0, 0, 0.3);
}

.page-hero p {
  max-width: 740px;
  color: #fffde4;
  font-size: 1.12rem;
}

/* ============================================================
   Welcome / feature panels & schedule
   ============================================================ */

.welcome {
  background: linear-gradient(135deg, var(--cream-soft) 0%, var(--cream) 100%);
}

.welcome-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: start;
}

.feature-panel {
  background: linear-gradient(150deg, var(--maroon) 0%, var(--maroon-dark) 100%);
  color: var(--cream);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.feature-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 90% 0%, rgba(217, 164, 65, 0.14) 0%, transparent 55%);
  pointer-events: none;
}

.feature-panel h3 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.feature-panel > p {
  color: rgba(253, 251, 212, 0.8);
}

.schedule {
  display: grid;
  gap: 0.25rem;
  margin-top: 1.35rem;
}

.schedule-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px dashed rgba(253, 251, 212, 0.2);
}

.schedule-row strong {
  color: var(--white);
  font-size: 0.96rem;
}

.schedule-row span {
  color: var(--gold-soft);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
}

/* ============================================================
   Cards
   ============================================================ */

.cards,
.event-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

.card,
.contact-card {
  background: var(--white);
  border: 1px solid rgba(128, 0, 0, 0.12);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.card:hover,
.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: rgba(128, 0, 0, 0.28);
}

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

.card.center {
  align-items: center;
  text-align: center;
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--cream-tint), var(--cream));
  color: var(--maroon);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 1.1rem;
  border: 1px solid rgba(128, 0, 0, 0.16);
  box-shadow: 0 4px 12px rgba(128, 0, 0, 0.08);
}

.card h2,
.card h3,
.contact-card h2,
.contact-card h3 {
  color: var(--maroon);
  font-family: var(--font-display);
  margin-bottom: 0.65rem;
}

.card h3 {
  font-size: 1.3rem;
  line-height: 1.2;
}

.card p,
.contact-card p {
  color: var(--muted);
}

/* Dark cards (on maroon sections) */
.dark-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(253, 251, 212, 0.22);
  color: var(--cream);
}

.dark-card .card-icon {
  background: rgba(217, 164, 65, 0.16);
  border-color: rgba(217, 164, 65, 0.35);
  color: var(--gold);
}

.dark-card h2,
.dark-card h3 {
  color: var(--gold-soft);
}

.dark-card p {
  color: rgba(253, 251, 212, 0.82);
}

/* ============================================================
   Service lists & maroon panels
   ============================================================ */

.service-list {
  display: grid;
  gap: 0.4rem;
}

.service-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px dashed rgba(128, 0, 0, 0.18);
}

.service-row strong {
  color: var(--maroon);
}

.service-row span {
  color: var(--muted);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.maroon-panel {
  background: linear-gradient(150deg, var(--maroon), var(--maroon-dark));
  color: var(--cream);
  border-radius: var(--radius);
  padding: 1.7rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.maroon-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 85% 10%, rgba(217, 164, 65, 0.13) 0%, transparent 55%);
  pointer-events: none;
}

.maroon-panel h2,
.maroon-panel h3 {
  color: var(--cream);
  font-family: var(--font-display);
  margin-bottom: 0.7rem;
}

/* ============================================================
   Events
   ============================================================ */

.events {
  background: linear-gradient(150deg, var(--maroon) 0%, var(--maroon-deep) 100%);
  color: var(--cream);
}

.events .section-title h2,
.events .section-title p {
  color: var(--cream);
}

.events .section-title p {
  color: rgba(253, 251, 212, 0.78);
}

.event {
  border: 1px solid rgba(253, 251, 212, 0.24);
  border-radius: var(--radius);
  padding: 1.6rem;
  background: rgba(255, 255, 255, 0.07);
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.event:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.11);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.3);
}

.event time {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}

.event time::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.event h3 {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 0.7rem;
  line-height: 1.25;
}

.event p,
.event ul {
  color: rgba(253, 251, 212, 0.82);
  font-size: 0.95rem;
}

.event li {
  margin-bottom: 0.25rem;
}

/* Light event cards (on light backgrounds) */
.event-card {
  background: var(--white);
  border: 1px solid rgba(128, 0, 0, 0.12);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.event-card time {
  display: inline-block;
  color: var(--maroon);
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.7rem;
}

.event-card h3 {
  color: var(--maroon);
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 0.7rem;
}

.event-card p,
.event-card li {
  color: var(--muted);
}

/* ============================================================
   Event feature cards (events page)
   ============================================================ */

.featured-event {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 1.5rem;
  align-items: stretch;
}

.event-feature-card {
  background: var(--white);
  border: 1px solid rgba(128, 0, 0, 0.12);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.event-feature-card time {
  color: var(--maroon);
  display: inline-block;
  font-weight: 800;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.8rem;
}

.event-feature-card h2 {
  color: var(--maroon);
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
  margin-bottom: 1rem;
}

.event-logo {
  width: min(330px, 100%);
  display: block;
  margin: 0 auto 1.4rem;
  border-radius: var(--radius-sm);
  background: var(--white);
  border: 1px solid rgba(128, 0, 0, 0.12);
  box-shadow: var(--shadow);
}

.link-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.link-list a {
  background: var(--cream-soft);
  border: 1px solid rgba(128, 0, 0, 0.18);
  border-radius: var(--radius-sm);
  color: var(--maroon);
  display: block;
  font-weight: 800;
  padding: 0.9rem 1rem;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.link-list a:hover {
  background: var(--maroon);
  color: var(--cream);
  transform: translateY(-2px);
}

/* ============================================================
   Gallery & testimonies
   ============================================================ */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.gallery-item {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(128, 0, 0, 0.9), rgba(217, 164, 65, 0.8));
  color: var(--cream);
  display: grid;
  place-items: center;
  padding: 1rem;
  text-align: center;
  font-weight: 800;
}

.testimony-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.compact-testimonies {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 0.9rem;
}

.compact-testimonies .card {
  min-height: 0;
  height: 100%;
  padding: 1.1rem;
  gap: 0.55rem !important;
  align-items: center;
  text-align: center;
}

.compact-testimonies img {
  width: 72px !important;
  height: 72px !important;
  border-width: 3px !important;
  box-shadow: 0 4px 12px rgba(128, 0, 0, 0.16) !important;
}

.compact-testimonies h3 {
  font-size: 0.98rem;
  line-height: 1.15;
  margin-bottom: 0;
}

.compact-testimonies p {
  font-size: 0.82rem;
  line-height: 1.4;
  color: var(--muted);
}

.reports-grid {
  grid-template-columns: repeat(7, minmax(0, 1fr)) !important;
  gap: 0.55rem !important;
}

.reports-grid > div {
  border-radius: var(--radius-sm) !important;
  padding: 0.75rem 0.35rem !important;
}

.reports-grid > div > div:first-child {
  font-size: 1.15rem !important;
  margin-bottom: 0.15rem !important;
}

.reports-grid [id^="gt-n"] {
  font-size: 1.45rem !important;
}

.reports-grid [id^="gt-n"] + div {
  font-size: 0.58rem !important;
  letter-spacing: 0.035em !important;
  line-height: 1.15 !important;
}

.reports-summary {
  gap: 1.35rem !important;
}

.reports-summary > div > div:first-child {
  font-size: 1.8rem !important;
}

.reports-summary > div > div:last-child {
  font-size: 0.62rem !important;
}

.compact-testimony-form {
  max-width: 560px !important;
  margin-top: 1.5rem !important;
  padding: 1.15rem 1.25rem !important;
  border-radius: var(--radius-sm) !important;
}

.compact-testimony-form h3 {
  font-size: 1rem !important;
  margin-bottom: 0.15rem !important;
}

.compact-testimony-form > p {
  font-size: 0.78rem !important;
  margin-bottom: 0.8rem !important;
  line-height: 1.35 !important;
}

.compact-testimony-form form {
  gap: 0.6rem !important;
}

.compact-testimony-form form > div {
  gap: 0.55rem !important;
}

.compact-testimony-form label {
  font-size: 0.72rem !important;
  letter-spacing: 0.03em !important;
}

.compact-testimony-form input,
.compact-testimony-form textarea {
  padding: 0.5rem 0.65rem !important;
  font-size: 0.84rem !important;
}

.compact-testimony-form textarea {
  min-height: 86px !important;
}

.compact-testimony-form button {
  padding: 0.6rem 1rem !important;
  font-size: 0.84rem !important;
}

/* ============================================================
   About page — mission list, timeline, overseers
   ============================================================ */

.bullet-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  max-width: 860px;
  margin-inline: auto;
}

.bullet-list li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  color: var(--muted);
}

.bullet-list li::before {
  content: '✦';
  color: var(--gold);
  font-size: 1.1rem;
  line-height: 1.6;
  flex: 0 0 auto;
}

.bullet-list li strong {
  color: var(--maroon);
}

.timeline {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  padding-left: 2.4rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--maroon), var(--gold));
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  padding: 0 0 2.6rem 1.4rem;
}

.timeline-item:last-child {
  padding-bottom: 0.4rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.4rem;
  top: 0.35rem;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--maroon);
  border: 3px solid var(--cream);
  box-shadow: 0 0 0 2px var(--gold), 0 6px 14px rgba(128, 0, 0, 0.3);
  z-index: 1;
}

.timeline-year {
  color: var(--gold);
  font-weight: 800;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.3rem;
}

.timeline-item h3 {
  color: var(--maroon);
  font-family: var(--font-display);
  font-size: 1.45rem;
  margin-bottom: 0.5rem;
}

.timeline-item p {
  color: var(--muted);
}

.overseers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 2.4rem;
  max-width: 1000px;
  margin: 0 auto;
}

.overseer {
  text-align: center;
}

.overseer-photo {
  width: 168px;
  height: 168px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  border: 5px solid var(--white);
  outline: 3px solid rgba(128, 0, 0, 0.25);
  box-shadow: 0 14px 34px rgba(128, 0, 0, 0.25);
  margin: 0 auto 1.1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.overseer:hover .overseer-photo {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(128, 0, 0, 0.32);
}

.overseer-name {
  font-weight: 800;
  font-size: 1.08rem;
  color: var(--maroon);
  margin-bottom: 0.15rem;
}

.overseer-role {
  font-size: 0.88rem;
  color: var(--gold);
  font-weight: 700;
}

.overseer-years {
  font-size: 0.88rem;
  color: var(--muted);
}

/* ============================================================
   Contact page — country bands & branch cards
   ============================================================ */

.country-title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--maroon);
  margin: 2.4rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--gold);
}

.flag-band {
  border-radius: var(--radius);
  padding: 1.3rem;
  border: 1px solid rgba(128, 0, 0, 0.16);
  margin-bottom: 2rem;
}

.flag-zw {
  background: linear-gradient(to bottom,
    rgba(0, 100, 0, 0.1) 0%, rgba(0, 100, 0, 0.1) 14.28%,
    rgba(255, 210, 0, 0.1) 14.28%, rgba(255, 210, 0, 0.1) 28.57%,
    rgba(220, 20, 60, 0.1) 28.57%, rgba(220, 20, 60, 0.1) 42.86%,
    rgba(0, 0, 0, 0.06) 42.86%, rgba(0, 0, 0, 0.06) 57.14%,
    rgba(220, 20, 60, 0.1) 57.14%, rgba(220, 20, 60, 0.1) 71.43%,
    rgba(255, 210, 0, 0.1) 71.43%, rgba(255, 210, 0, 0.1) 85.71%,
    rgba(0, 100, 0, 0.1) 85.71%, rgba(0, 100, 0, 0.1) 100%);
}

.flag-za {
  background: linear-gradient(to bottom,
    rgba(224, 60, 49, 0.09) 0%, rgba(224, 60, 49, 0.09) 33%,
    rgba(0, 122, 77, 0.1) 33%, rgba(0, 122, 77, 0.1) 67%,
    rgba(0, 20, 137, 0.09) 67%, rgba(0, 20, 137, 0.09) 100%);
}

.branch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
  gap: 0.9rem;
}

.branch-card {
  background: var(--white);
  border: 1px solid rgba(128, 0, 0, 0.12);
  border-left: 4px solid var(--maroon);
  border-radius: var(--radius-sm);
  padding: 0.95rem 1.15rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.branch-card strong {
  color: var(--maroon);
  display: block;
}

.branch-card p {
  margin: 0.25rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

/* ============================================================
   Forms
   ============================================================ */

form {
  display: grid;
  gap: 1rem;
}

label {
  font-weight: 800;
  color: var(--maroon-dark);
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

input,
textarea,
select {
  width: 100%;
  border: 1.5px solid rgba(128, 0, 0, 0.2);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  font: inherit;
  background: var(--cream-soft);
  color: var(--ink);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  outline: none;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--maroon);
  box-shadow: 0 0 0 4px rgba(128, 0, 0, 0.12);
}

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

/* ============================================================
   Live services
   ============================================================ */

.live-frame {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--maroon-dark), var(--maroon));
  color: var(--cream);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.live-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 10%, rgba(217, 164, 65, 0.18) 0%, transparent 60%);
  pointer-events: none;
}

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

.live-frame h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  margin-bottom: 0.5rem;
}

/* ============================================================
   WhatsApp float & badges
   ============================================================ */

.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #2ee06f, var(--green));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-float:hover {
  transform: scale(1.12) rotate(6deg);
  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.55);
}

.whatsapp-float svg {
  width: 34px;
  height: 34px;
  fill: #ffffff;
}

.live-badge {
  display: inline-block;
  background: #e02020;
  color: #fff;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 2px 6px 2px 7px;
  border-radius: 999px;
  vertical-align: middle;
  margin-left: 6px;
  position: relative;
  top: -1px;
  animation: live-pulse 1.8s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(224, 32, 32, 0.6);
}

@keyframes live-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(224, 32, 32, 0.5); }
  50% { opacity: 0.7; box-shadow: 0 0 0 8px rgba(224, 32, 32, 0); }
}

/* ============================================================
   Footer
   ============================================================ */

footer {
  background: linear-gradient(150deg, var(--maroon-deep) 0%, var(--maroon-dark) 60%, var(--maroon) 130%);
  color: var(--cream);
  padding: 4rem 5vw 2rem;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--maroon), var(--gold), var(--maroon));
}

.footer-grid {
  width: min(var(--maxw), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2.5rem 3rem;
  align-items: start;
}

.footer-col h4 {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 1.1rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--cream);
  letter-spacing: 0.03em;
  margin-bottom: 0.4rem;
}

.footer-col p {
  margin: 0.35rem 0;
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(253, 251, 212, 0.8);
}

.footer-motto {
  font-style: italic;
  color: var(--gold) !important;
  margin-top: 0.9rem !important;
  font-size: 0.9rem !important;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-col ul li a {
  color: rgba(253, 251, 212, 0.8);
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-col ul li a::before {
  content: '›';
  color: var(--gold);
  font-weight: 800;
}

.footer-col ul li a:hover {
  color: var(--gold);
  transform: translateX(3px);
}

.footer-copy {
  width: min(var(--maxw), 100%);
  margin: 2.4rem auto 0 !important;
  font-size: 0.8rem !important;
  color: rgba(253, 251, 212, 0.5) !important;
  border-top: 1px solid rgba(253, 251, 212, 0.14);
  padding-top: 1.1rem;
  text-align: center;
  letter-spacing: 0.03em;
}

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

/* ============================================================
   ROB — compact desktop base styles
   ============================================================ */

.rob-panel {
  padding: 0.4rem;
  margin-top: 0.7rem;
  border-radius: var(--radius-sm);
  background: rgba(128,0,0,0.02);
  border: 1px solid rgba(128,0,0,0.07);
}

.rob-label {
  font-size: 0.5rem;
  font-weight: 700;
  color: var(--maroon);
  margin-bottom: 0.3rem;
  letter-spacing: 0.03em;
}

.rob-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.25rem;
}

.rob-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
  padding: 0.25rem 0.15rem;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.5);
  border: 1px solid rgba(128,0,0,0.05);
  text-align: center;
}

.rob-card-icon {
  font-size: 0.65rem;
}

.rob-card-num {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--maroon);
  line-height: 1.1;
}

.rob-card-lbl {
  font-size: 0.42rem;
  color: var(--muted);
  letter-spacing: 0.02em;
  line-height: 1.05;
}

.rob-card-lbl span {
  font-size: 0.38rem;
  opacity: 0.7;
}

.rob-card[style*="grid-column:1/-1"] {
  flex-direction: row;
  justify-content: space-between;
  padding: 0.3rem 0.55rem;
  text-align: left;
}

.rob-card[style*="grid-column:1/-1"] .rob-card-num {
  font-size: 0.95rem;
}

/* ============================================================
   Responsive — mobile = desktop just scaled to fit
   ============================================================ */

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

@media (max-width: 768px) {
  .topbar {
    font-size: 0.7rem;
    padding: 0.4rem 3vw;
    gap: 0.3rem;
  }

  .navbar {
    padding: 0.5rem 3vw;
    gap: 0.5rem;
  }

  .brand-logo {
    width: 30px;
    height: 30px;
    border-width: 1px;
    padding: 1px;
  }

  .brand span {
    font-size: 0.6rem;
    max-width: 120px;
  }

  .brand-sub {
    display: none;
  }

  .brand {
    gap: 0.4rem;
    flex: 1;
  }

  .nav-toggle {
    display: flex !important;
    z-index: 1001;
    position: relative;
  }

  .nav-links {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 260px;
    height: 100vh;
    height: 100dvh;
    background: var(--cream);
    border-right: 2px solid rgba(128,0,0,0.15);
    box-shadow: 4px 0 24px rgba(0,0,0,0.2);
    z-index: 1000;
    padding: 4.5rem 1.2rem 2rem;
    gap: 0.3rem;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    justify-content: flex-start;
  }

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

  .nav-links a {
    font-size: 0.85rem;
    padding: 0.6rem 0.9rem;
    border-radius: 8px;
    white-space: nowrap;
    border: 1px solid transparent;
  }

  .nav-links a.active {
    background: linear-gradient(135deg, var(--maroon), var(--maroon-2));
    color: var(--cream);
  }

  .motto {
    font-size: 0.45rem;
    padding: 0.2rem 0.45rem;
    margin-bottom: 0.4rem;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    min-height: auto;
    padding: 2rem 4vw 2rem;
  }

  .cross-jesus {
    width: 400px;
    left: 50%;
    top: -40px;
    transform: translateX(-50%) rotate(-25deg);
    opacity: 0.08;
  }

  .hero-gallery {
    max-width: 100%;
    margin: 0 auto;
  }

  .hero-logo img {
    width: 50px;
    height: 50px;
  }

  .hero-logo-text {
    font-size: 0.5rem;
    max-width: 100px;
  }

  .hero h1 {
    font-size: clamp(1.6rem, 6vw, 2.8rem);
  }

  .hero p {
    font-size: 0.85rem;
    margin-bottom: 1.2rem;
  }

  .hero-nav {
    width: 32px;
    height: 32px;
    font-size: 1.1rem;
  }

  .hero-prev { left: 12px; }
  .hero-next { right: 12px; }

  section {
    padding: 2rem 4vw;
  }

  .section-title h2 {
    font-size: clamp(1.3rem, 5vw, 1.8rem);
  }

  .section-title p {
    font-size: 0.8rem;
  }

  .event-feature-card {
    padding: 0.9rem !important;
  }

  .event-feature-card h2 {
    font-size: clamp(1rem, 3.5vw, 1.4rem) !important;
  }

  .event-feature-card time {
    font-size: 0.68rem !important;
  }

  .event-feature-card p {
    font-size: 0.78rem !important;
  }

  .mhlab-countdown {
    grid-template-columns: 1fr 1fr !important;
    gap: 0.4rem !important;
  }

  .rob-panel {
    padding: 0.35rem !important;
  }

  .rob-label {
    font-size: 0.4rem !important;
    margin-bottom: 0.2rem !important;
  }

  .rob-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 0.15rem !important;
  }

  .rob-card {
    padding: 0.2rem 0.3rem !important;
  }

  .rob-card-num {
    font-size: 0.65rem !important;
  }

  .rob-card-lbl {
    font-size: 0.38rem !important;
  }

  .rob-card-lbl span {
    display: none;
  }

  .rob-card[style*="grid-column:1/-1"] {
    flex-direction: column !important;
    gap: 0.1rem !important;
    text-align: center !important;
    padding: 0.3rem 0.4rem !important;
  }

  .rob-card[style*="grid-column:1/-1"] .rob-card-num {
    font-size: 0.9rem !important;
  }

  .rob-ctas {
    gap: 0.3rem;
  }

  .rob-cta {
    font-size: 0.7rem !important;
    padding: 0.4rem 0.6rem !important;
  }

  .reports-grid {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 0.3rem !important;
  }

  .reports-grid > div {
    padding: 0.4rem 0.2rem !important;
    border-radius: 6px !important;
  }

  .reports-grid > div > div:first-child {
    font-size: 0.9rem !important;
    margin-bottom: 0.1rem !important;
  }

  .reports-grid .gt-num {
    font-size: 1.1rem !important;
  }

  .reports-grid > div > div:last-child {
    font-size: 0.5rem !important;
  }

  .reports-summary {
    gap: 0.8rem !important;
  }

  .reports-summary > div > div:first-child {
    font-size: 1.4rem !important;
  }

  .reports-summary > div > div:last-child {
    font-size: 0.55rem !important;
  }

  .link-list a {
    font-size: 0.75rem !important;
    padding: 0.55rem 0.65rem !important;
  }

  #gaborone-testimonies,
  #cgr-testimonies,
  #moar-testimonies {
    padding: 0.6rem !important;
  }

  #gaborone-testimonies article,
  #cgr-testimonies article,
  #moar-testimonies article {
    gap: 0.5rem;
  }

  #gaborone-testimonies img,
  #cgr-testimonies img,
  #moar-testimonies img {
    width: 32px !important;
    height: 32px !important;
  }

  #gaborone-testimonies h4,
  #cgr-testimonies h4,
  #moar-testimonies h4 {
    font-size: 0.72rem !important;
  }

  #gaborone-testimonies p,
  #cgr-testimonies p,
  #moar-testimonies p {
    font-size: 0.68rem !important;
  }

  #gaborone-testimonies .rob-label,
  #cgr-testimonies .rob-label {
    font-size: 0.55rem !important;
  }

  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.4rem;
  }

  .cgr-grid {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 0.3rem !important;
  }

  .cgr-grid img {
    border-width: 1px !important;
  }

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

  .overseer-photo {
    width: 90px;
    height: 90px;
  }

  .overseer-name {
    font-size: 0.85rem;
  }

  .overseer-role {
    font-size: 0.72rem;
  }

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

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

  .footer-col h4 {
    font-size: 0.65rem;
  }

  .footer-col p {
    font-size: 0.75rem;
    line-height: 1.5;
  }

  .footer-brand {
    font-size: 1.3rem;
  }

  .footer-copy {
    font-size: 0.7rem !important;
  }

  .whatsapp-float {
    width: 42px;
    height: 42px;
    bottom: 0.8rem;
    right: 0.8rem;
  }

  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }

  .live-frame {
    padding: 1rem;
  }

  .live-frame h2 {
    font-size: clamp(1.2rem, 4vw, 1.8rem);
  }

  .compact-testimony-form {
    padding: 0.9rem !important;
  }

  .compact-testimony-form label {
    font-size: 0.65rem !important;
  }

  .compact-testimony-form input,
  .compact-testimony-form textarea,
  .compact-testimony-form select {
    padding: 0.4rem 0.5rem !important;
    font-size: 0.78rem !important;
  }

  .compact-testimony-form button {
    padding: 0.5rem 1rem !important;
    font-size: 0.8rem !important;
  }
}
