/* ==========================================================================
   Zion Baptist Church — Fordyce, AR
   Shared stylesheet — used by every page on the site
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  /* Color */
  --ink: #1c1a17;          /* warm near-black — primary text, dark sections */
  --ink-soft: #2a2722;     /* slightly lighter ink for dark-section panels */
  --paper: #fbf8f2;        /* warm white — page background */
  --cream: #f1ece1;        /* dimmer cream — card / alt-section background */
  --gold: #b8863a;         /* harvest gold — primary accent, links, CTAs */
  --gold-deep: #96692a;    /* pressed/hover state of gold */
  --pine: #2f3b2e;         /* deep pine green — secondary accent */
  --stone: #8a8275;        /* warm gray — muted text, borders */
  --stone-light: #d8d1c3;  /* hairline borders on paper */

  /* Type */
  --font-display: "Lora", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Layout */
  --max-width: 1140px;
  --radius: 4px;
  --shadow-card: 0 1px 2px rgba(28, 26, 23, 0.06), 0 6px 18px rgba(28, 26, 23, 0.07);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold-deep); text-decoration-color: currentColor; }
a:hover { color: var(--gold); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.18;
  margin: 0 0 0.5em;
  color: var(--ink);
}
h1 { font-size: clamp(2.1rem, 4.2vw, 3.4rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 2.6vw, 2.25rem); }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1.1em; }

ul, ol { padding-left: 1.25em; }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0; border: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: var(--paper);
  padding: 0.6em 1em;
  z-index: 200;
  border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus {
  left: 0;
}

/* ---------- Layout helpers ---------- */
.wrap {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: clamp(3rem, 7vw, 5.5rem) 0;
}
.section--cream { background: var(--cream); }
.section--ink { background: var(--ink); color: var(--paper); }
.section--ink h2, .section--ink h3 { color: var(--paper); }
.section--ink p { color: #d8d2c5; }
.section--ink a { color: var(--gold); }

.section-head {
  max-width: 640px;
  margin: 0 0 2.25rem;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--gold-deep);
  margin-bottom: 0.9rem;
}
.section--ink .eyebrow { color: var(--gold); }

/* ---------- Signature chevron motif ---------- */
/* Echoes the three ascending chevrons in the Zion mark — used as a
   recurring divider to tie every section back to the brand. */
.chevron {
  display: inline-block;
  width: 46px;
  height: 16px;
  flex-shrink: 0;
}
.chevron path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.chevron-rule {
  display: flex;
  justify-content: center;
  color: var(--gold);
  margin: 0 0 1.25rem;
}
.chevron-rule .chevron { width: 64px; height: 22px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  padding: 0.85em 1.6em;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}
.btn:active { transform: translateY(1px); }

.btn--gold {
  background: var(--gold);
  color: var(--ink);
}
.btn--gold:hover { background: var(--gold-deep); color: var(--paper); }

.btn--outline {
  background: transparent;
  border-color: rgba(251, 248, 242, 0.55);
  color: var(--paper);
}
.btn--outline:hover { background: rgba(251, 248, 242, 0.12); border-color: var(--paper); }

.btn--outline-dark {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.btn--outline-dark:hover { background: var(--ink); color: var(--paper); }

.btn--block { width: 100%; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 248, 242, 0.96);
  border-bottom: 1px solid var(--stone-light);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--ink);
}
.brand img { width: 40px; height: auto; }
.brand-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.18rem;
  letter-spacing: 0.01em;
  line-height: 1.1;
}
.brand-text span {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  margin: -0.5rem;
}
.nav-toggle .bar {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 1.85rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  padding: 0.4rem 0.1rem;
  border-bottom: 2px solid transparent;
}
.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--gold-deep);
  border-bottom-color: var(--gold);
}
.main-nav .btn { margin-left: 0.25rem; }
.main-nav a.btn {
  padding: 0.65em 1.4em;
  border-bottom: none;
  color: var(--ink);
}
.main-nav a.btn:hover,
.main-nav a.btn[aria-current="page"] {
  color: var(--paper);
  background: var(--gold-deep);
  border-bottom: none;
}

@media (max-width: 880px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed;
    top: 76px;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
    background: var(--paper);
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
    overflow-y: auto;
  }
  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem 1.5rem 2rem;
  }
  .main-nav li { border-bottom: 1px solid var(--stone-light); }
  .main-nav a { display: block; padding: 1rem 0.2rem; border-bottom: none; }
  .main-nav .btn { margin: 1rem 0 0; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: var(--paper);
  background-color: var(--ink);
  background-image: linear-gradient(180deg, rgba(20, 18, 16, 0.55) 0%, rgba(20, 18, 16, 0.72) 55%, rgba(20, 18, 16, 0.92) 100%), var(--hero-image, none);
  background-size: cover;
  background-position: center;
  padding: clamp(4.5rem, 14vw, 8.5rem) 0 clamp(3.5rem, 9vw, 6rem);
}
.hero-inner {
  max-width: 760px;
}
.hero-logo {
  width: 96px;
  height: auto;
  margin: 0 0 1.75rem;
}
.hero h1 { color: var(--paper); margin-bottom: 0.6em; }
.hero p.lede {
  font-size: 1.15rem;
  color: #ece6d8;
  max-width: 560px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.service-strip {
  background: var(--gold);
}
.service-strip .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2.5rem;
  justify-content: center;
  padding: 0.9rem 1.5rem;
}
.service-strip .item {
  display: flex;
  align-items: baseline;
  gap: 0.5em;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
}
.service-strip .item small {
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  color: var(--ink-soft);
}

/* ---------- Page header (non-home hero) ---------- */
.page-header {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(3rem, 8vw, 5rem) 0 clamp(2.25rem, 5vw, 3rem);
}
.page-header h1 { color: var(--paper); }
.page-header .lede { color: #d8d2c5; max-width: 620px; font-size: 1.05rem; margin-bottom: 0; }
.breadcrumb {
  display: flex;
  gap: 0.5em;
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  font-size: 0.82rem;
  color: var(--stone);
  flex-wrap: wrap;
}
.breadcrumb a { color: #d8d2c5; text-decoration: none; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb li:not(:last-child)::after { content: "/"; margin-left: 0.5em; color: var(--stone); }

/* ---------- Cards / grids ---------- */
.grid {
  display: grid;
  gap: 1.75rem;
}
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 880px) {
  .grid--3, .grid--2 { grid-template-columns: 1fr; }
}

.card {
  background: var(--paper);
  border: 1px solid var(--stone-light);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow-card);
}
.card h3 { margin-bottom: 0.4em; }
.card .meta {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.6em;
}

.card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
.card-link:hover h3 { color: var(--gold-deep); }

/* ---------- Two column layout ---------- */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (max-width: 880px) {
  .split { grid-template-columns: 1fr; }
}
.split img { border-radius: var(--radius); }

/* ---------- Map / location ---------- */
.map-frame {
  border: 1px solid var(--stone-light);
  border-radius: var(--radius);
  overflow: hidden;
}
.map-frame iframe { width: 100%; height: 360px; border: 0; display: block; }

/* ---------- Forms ---------- */
.field {
  margin-bottom: 1.25rem;
}
.field label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 0.4em;
}
.field .hint { font-size: 0.8rem; color: var(--stone); margin-top: 0.35em; }
.field input,
.field select,
.field textarea {
  width: 100%;
  font: inherit;
  padding: 0.75em 0.9em;
  border: 1.5px solid var(--stone-light);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
  outline: none;
  box-shadow: 0 0 0 3px rgba(184, 134, 58, 0.18);
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
@media (max-width: 600px) {
  .field-row { grid-template-columns: 1fr; }
}
/* Honeypot — hidden from sighted users and real visitors, present for bots */
.field-trap {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  overflow: hidden;
}

.form-card {
  background: var(--cream);
  border: 1px solid var(--stone-light);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

.form-note {
  font-size: 0.82rem;
  color: var(--stone);
  margin-top: 1rem;
}

/* ---------- Events calendar ---------- */
.calendar-card {
  background: var(--paper);
  border: 1px solid var(--stone-light);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
}
.calendar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.calendar-head h2 { margin: 0; font-size: 1.3rem; }
.calendar-nav { display: flex; gap: 0.5rem; }
.calendar-nav button {
  border: 1.5px solid var(--stone-light);
  background: var(--paper);
  width: 38px; height: 38px;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 1rem;
  color: var(--ink);
}
.calendar-nav button:hover { border-color: var(--gold); color: var(--gold-deep); }

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.calendar-grid .dow {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--stone);
  padding: 0.4rem 0;
}
.calendar-day {
  min-height: 64px;
  border-radius: var(--radius);
  border: 1px solid var(--stone-light);
  padding: 0.35rem;
  font-size: 0.78rem;
  background: var(--paper);
}
.calendar-day.is-empty { background: transparent; border-color: transparent; }
.calendar-day .num { font-weight: 600; color: var(--stone); }
.calendar-day.is-today { border-color: var(--gold); }
.calendar-day.is-today .num { color: var(--gold-deep); }
.calendar-day .evt {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.68rem;
  line-height: 1.3;
  color: var(--ink);
  background: var(--cream);
  border-left: 2px solid var(--gold);
  padding: 0.1rem 0.3rem;
  border-radius: 2px;
}
@media (max-width: 600px) {
  .calendar-day { min-height: 46px; font-size: 0.7rem; }
  .calendar-day .evt { display: none; }
  .calendar-day.has-event { position: relative; }
  .calendar-day.has-event::after {
    content: "";
    position: absolute;
    bottom: 4px; left: 50%;
    transform: translateX(-50%);
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--gold);
  }
}

.agenda { margin-top: 2.5rem; }
.agenda-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--stone-light);
}
.agenda-date {
  flex-shrink: 0;
  width: 64px;
  text-align: center;
  font-family: var(--font-display);
}
.agenda-date .d { display: block; font-size: 1.5rem; font-weight: 700; line-height: 1; color: var(--gold-deep); }
.agenda-date .m { display: block; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--stone); }
.agenda-body h3 { margin-bottom: 0.2em; font-size: 1.05rem; }
.agenda-body .when { font-size: 0.85rem; color: var(--stone); margin-bottom: 0.3em; }

/* ---------- Gallery / lightbox ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}
@media (max-width: 880px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }

.gallery-grid button,
.gallery-grid a {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: zoom-in;
  aspect-ratio: 4 / 3;
  background: var(--ink);
}
.gallery-grid img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.gallery-grid button:hover img,
.gallery-grid a:hover img { transform: scale(1.06); }
.gallery-grid button:focus-visible,
.gallery-grid a:focus-visible { outline-offset: 0; }

dialog.lightbox {
  border: none;
  padding: 0;
  background: transparent;
  max-width: min(92vw, 1100px);
  width: 100%;
}
dialog.lightbox::backdrop { background: rgba(20, 18, 16, 0.92); }
.lightbox-inner { position: relative; }
.lightbox-inner img {
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border-radius: var(--radius);
  background: var(--ink);
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(28, 26, 23, 0.65);
  color: var(--paper);
  border: none;
  cursor: pointer;
  border-radius: 50%;
  width: 42px; height: 42px;
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
}
.lightbox-close { top: -16px; right: -16px; }
.lightbox-prev { left: 10px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 10px; top: 50%; transform: translateY(-50%); }
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { background: var(--gold); color: var(--ink); }
.lightbox-caption {
  text-align: center;
  color: #ece6d8;
  font-size: 0.85rem;
  margin-top: 0.6rem;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: #cfc8b9;
  padding: 3rem 0 1.75rem;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding-bottom: 2rem;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.9rem;
}
.footer-brand img { width: 34px; height: auto; }
.footer-brand span {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--paper);
  font-size: 1.05rem;
}
.footer-col h4 {
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}
.footer-col { flex: 1 1 150px; }
.footer-brand-col { flex: 1 1 230px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 0.55rem; font-size: 0.9rem; }
.footer-col a { color: #cfc8b9; text-decoration: none; }
.footer-col a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 0.85rem; margin-top: 0.9rem; }
.footer-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border: 1.5px solid #4a463e;
  border-radius: 50%;
  color: var(--paper);
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-social svg { width: 17px; height: 17px; fill: currentColor; }

/* Bottom bar: left = general info (wraps), right = Cloudflare badge.
   Side by side, vertically centered against one another. */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  border-top: 1px solid #3a362f;
  padding-top: 1.5rem;
}
.footer-bottom-left {
  flex: 1 1 320px;
  min-width: 0;
}
.footer-bottom-left p {
  margin: 0 0 0.4em;
  font-size: 0.82rem;
  color: #a8a194;
  line-height: 1.7;
  overflow-wrap: break-word;
}
.footer-bottom-left a { color: #a8a194; }
.footer-bottom-left a:hover { color: var(--gold); }
.footer-copyright { display: inline; }
@media (max-width: 600px) {
  .footer-copyright { display: none; }
  /* With the copyright text hidden, the left side is short enough that
     the badge can stay on the same line instead of wrapping below it. */
  .footer-bottom { flex-wrap: nowrap; gap: 0.75rem; }
  .footer-bottom-left { flex: 1 1 auto; min-width: 0; }
  .footer-bottom-left p { white-space: nowrap; margin: 0; }
  .footer-bottom-right { flex: 0 0 auto; }
}
.footer-bottom-right {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

/* Cloudflare "Protected by Cloudflare" badge —
   rest state: 65% opacity (muted). hover: 100% opacity + 5% scale.
   Only opacity + transform are animated; no filter/box-shadow/glow. */
.cf-badge {
  display: inline-block;
  width: 140px;
  height: auto;
  opacity: 0.65;
  transform: scale(1);
  transition: opacity 0.15s ease, transform 0.15s ease;
}
.cf-badge:hover,
.cf-badge:focus-visible {
  opacity: 1;
  transform: scale(1.05);
}
.cf-badge img { width: 100%; height: auto; display: block; }

/* ---------- 404 ---------- */
.error-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
}
.error-page .wrap { text-align: center; }
.error-code {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(4rem, 14vw, 7rem);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.3rem;
}

/* ---------- Misc content pages ---------- */
.prose h2 { margin-top: 1.8em; }
.prose ul li { margin-bottom: 0.4em; }
.prose-narrow { max-width: 720px; }

.leader-card { display: flex; gap: 1.1rem; align-items: flex-start; }
.leader-card .initials {
  flex-shrink: 0;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--pine);
  color: var(--paper);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
}

.belief-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.1rem;
}
.belief-list li {
  display: flex;
  gap: 0.8rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--stone-light);
}
.belief-list .chevron { color: var(--gold); margin-top: 0.3em; }

.cta-banner {
  background: var(--pine);
  color: var(--paper);
  border-radius: var(--radius);
  padding: clamp(2rem, 5vw, 3rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.cta-banner h2 { color: var(--paper); margin: 0; }
.cta-banner p { color: #d4ddd3; margin: 0.4em 0 0; }

/* ---------- FAQ accordion (native <details>) ---------- */
details.card summary {
  cursor: pointer;
  list-style: none;
  font-size: 1rem;
}
details.card summary::-webkit-details-marker { display: none; }
details.card summary::after {
  content: "+";
  float: right;
  font-size: 1.2rem;
  color: var(--gold-deep);
}
details.card[open] summary::after { content: "\2212"; }

/* ---------- Mission strip (Live God / Love One Another / Share Christ) ---------- */
.mission-row {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 0 1.4rem;
  text-align: center;
  font-size: clamp(1.15rem, 2.6vw, 1.7rem);
}
.mission-word {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: inherit;
  color: var(--paper);
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.mission-row .chevron {
  color: var(--gold);
  transform: rotate(90deg);
  width: 0.45em;
  height: 0.65em;
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .mission-row { gap: 0 0.9em; }
  .mission-word { letter-spacing: 0; }
  .mission-row .chevron { width: 1.3em; height: 1.85em; }
  /* Font-size on phones is calculated in shared.js (fitMissionRow) so the
     phrase always fills the available width edge-to-edge on one line,
     regardless of screen size or final font metrics. This is a sane
     fallback if JS doesn't run. */
  .mission-row { font-size: 0.66rem; }
}

/* ---------- Building illustration figure (Visit page) ---------- */
.building-figure {
  margin: 0;
}
.building-figure img { width: 100%; height: auto; display: block; }
.building-figure figcaption {
  padding: 0.9rem 0 0;
  font-size: 0.82rem;
  color: var(--stone);
}
