/* ---------------------------------------------------------------
   Go Make Disciples — stylesheet

   Warm neutral canvas, deep blue accent, all-sans typography.
   Every color, size, and spacing value is a token in :root —
   change them there, not in the rules below.

   Light only, by design. There is no dark mode and no
   prefers-color-scheme block — the warm cream IS the brand.
--------------------------------------------------------------- */

:root {
  /* Never let the browser dark-ify form fields, scrollbars, etc. */
  color-scheme: light;

  /* Warm neutrals */
  --bg:        #faf7f2;  /* page — warm cream */
  --bg-alt:    #f3eee5;  /* alternating bands — deeper sand */
  --surface:   #ffffff;  /* cards, form fields */
  --fg:        #2b2724;  /* warm charcoal, not pure black */
  --fg-muted:  #6d655a;
  --border:    #e6ddd0;

  /* Deep blue accent — sampled from the logo wordmark */
  --accent:       #0b304e;
  --accent-hover: #16496f;
  --accent-fg:    #ffffff;
  --accent-soft:  #e9eef4;  /* tinted fills behind the accent */

  /* Remaining logo colors. Reserved for the mark itself — using them
     as UI colors makes the page compete with the logo. */
  --brand-green: #19452c;
  --brand-red:   #8b0911;

  /* Type — system sans, no network request */
  --font-sans: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto,
               "Helvetica Neue", Arial, sans-serif;

  /* Rhythm */
  --measure:   65ch;    /* comfortable line length for body copy */
  --container: 1120px;
  --gutter:    clamp(1.25rem, 5vw, 2.5rem);
  --section-y: clamp(3.5rem, 9vw, 6.5rem);

  --radius:    14px;
  --radius-sm: 10px;

  --shadow:    0 1px 2px rgba(43, 39, 36, .04),
               0 8px 24px rgba(43, 39, 36, .06);
}

/* ---------------------------------------------------------------
   Base
--------------------------------------------------------------- */

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;  /* clears the sticky header on anchor jumps */
}

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

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(1.0625rem, .5vw + .95rem, 1.1875rem);
  line-height: 1.7;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

h1, h2, h3 {
  margin: 0 0 .5em;
  line-height: 1.15;
  letter-spacing: -.02em;
  font-weight: 650;
  text-wrap: balance;
}

h1 { font-size: clamp(2.1rem, 4.6vw + .6rem, 3.6rem); letter-spacing: -.03em; }
h2 { font-size: clamp(1.6rem, 2vw + .9rem, 2.35rem); }
h3 { font-size: clamp(1.25rem, 1vw + .95rem, 1.6rem); }

p { margin: 0 0 1.15em; max-width: var(--measure); }
p:last-child { margin-bottom: 0; }

ul, ol { max-width: var(--measure); margin: 0 0 1.15em; padding-left: 1.4rem; }
li { margin-bottom: .5em; }
li::marker { color: var(--accent); }

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color .15s ease;
}
a:hover { color: var(--accent-hover); }

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

/* ---------------------------------------------------------------
   Utilities
--------------------------------------------------------------- */

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

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

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--accent); color: var(--accent-fg);
  padding: .75rem 1.25rem; border-radius: 0 0 var(--radius-sm) 0;
  text-decoration: none; font-weight: 600;
}
.skip-link:focus { left: 0; }

/* Netlify Forms honeypot wrapper. `display: none` hides it without removing it
   from the submission — only `disabled` fields are dropped by the browser — so
   Netlify still sees the field and can reject anything that filled it in. */
.hidden-field { display: none; }

/* ---------------------------------------------------------------
   Header
--------------------------------------------------------------- */

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--bg) 85%, transparent);
  backdrop-filter: blur(10px) saturate(1.4);
  border-bottom: 1px solid color-mix(in srgb, var(--border) 70%, transparent);
}

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: 5rem;
}

.brand {
  display: inline-flex; align-items: flex-end; gap: .625rem;
  font-weight: 700; font-size: 1.0625rem; letter-spacing: -.01em;
  color: var(--accent); text-decoration: none;
}
.brand:hover { color: var(--accent-hover); }

.brand-mark { width: 3.5rem; height: auto; flex: none; }

/* Sit the wordmark on the logo's bottom edge rather than its middle.
   line-height:1 collapses the leading so flex-end lands on the text
   itself; the nudge keeps descenders off the very bottom pixel. */
.brand-name { line-height: 1; padding-bottom: .1875rem; }

@media (max-width: 400px) {
  .brand-name { display: none; }  /* mark alone on very narrow screens */
}

.nav-menu {
  display: flex; align-items: center; gap: 2rem;
  list-style: none; margin: 0; padding: 0; max-width: none;
}
.nav-menu li { margin: 0; }
.nav-menu a {
  color: var(--fg-muted); text-decoration: none;
  font-size: .95rem; font-weight: 500;
}
.nav-menu a:hover { color: var(--fg); }

.nav-toggle { display: none; }

@media (max-width: 720px) {
  .nav-toggle {
    display: block; position: relative;
    width: 2.75rem; height: 2.375rem;
    background: none; border: 1px solid var(--border);
    border-radius: var(--radius-sm); cursor: pointer;
  }
  .nav-toggle-bar,
  .nav-toggle-bar::before,
  .nav-toggle-bar::after {
    content: ""; position: absolute; left: .6875rem;
    width: 1.25rem; height: 1.5px; border-radius: 1px;
    background: var(--fg);
  }
  .nav-toggle-bar { top: 1.1875rem; }
  .nav-toggle-bar::before { top: -.375rem; left: 0; }
  .nav-toggle-bar::after  { top:  .375rem; left: 0; }

  .nav-menu {
    display: none;
    position: absolute; inset-inline: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 0;
    padding: .5rem var(--gutter) 1.25rem;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
  }
  .nav-menu.is-open { display: flex; }
  .nav-menu li + li { border-top: 1px solid var(--border); }
  .nav-menu a { display: block; padding: .875rem 0; font-size: 1.05rem; }
}

/* ---------------------------------------------------------------
   Hero
--------------------------------------------------------------- */

/* Full-bleed photo band. The copy sits at the bottom, over the
   darkest part of the scrim; accent fills the gap while the photo
   loads and backstops any aspect ratio the crop can't cover. */
.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  min-height: clamp(26rem, 72vh, 40rem);
  padding: clamp(5rem, 12vw, 8rem) 0 clamp(2.75rem, 6vw, 4.5rem);
  overflow: hidden;
  background: var(--accent);
  color: #fff;
}

/* Bill and Tiffany sit in the upper half and the audience heads run
   along the bottom edge — bias the crop upward so faces survive it. */
.hero-bg {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 24%;
}

/* Scrim: heavy at the bottom where the text is, clearing toward the
   top right so the photo still reads as a photo. */
.hero::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(to top,
      rgba(9, 26, 42, .90) 0%,
      rgba(9, 26, 42, .72) 34%,
      rgba(9, 26, 42, .28) 68%,
      rgba(9, 26, 42, .18) 100%),
    linear-gradient(to right,
      rgba(9, 26, 42, .45), rgba(9, 26, 42, 0) 65%);
}

.hero h1 {
  max-width: 20ch; margin-bottom: .45em;
  color: #fff;
  text-shadow: 0 1px 24px rgba(9, 26, 42, .45);
}

.hero .lead {
  color: rgba(255, 255, 255, .9);
  text-shadow: 0 1px 16px rgba(9, 26, 42, .45);
}

/* Buttons invert against the photo — solid white reads at any crop. */
.hero .btn {
  background: #fff; color: var(--accent); border-color: #fff;
}
.hero .btn:hover { background: var(--bg); color: var(--accent); }

.hero .btn-secondary {
  background: rgba(255, 255, 255, .08);
  color: #fff;
  border-color: rgba(255, 255, 255, .55);
  backdrop-filter: blur(2px);
}
.hero .btn-secondary:hover {
  background: rgba(255, 255, 255, .18);
  color: #fff;
  border-color: #fff;
}

.lead {
  font-size: clamp(1.15rem, .6vw + 1.05rem, 1.4rem);
  line-height: 1.55;
  color: var(--fg-muted);
  max-width: 52ch;
}

.hero-actions {
  display: flex; flex-wrap: wrap; gap: .875rem;
  max-width: none; margin-top: 2.25rem;
}

/* Interior pages get the same treatment at roughly half the height —
   enough photo to set the tone, not enough to push the copy off-screen.
   Reuses .hero-bg for the image itself. */
.page-hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  min-height: clamp(17rem, 44vh, 25rem);
  padding: clamp(4rem, 10vw, 6rem) 0 clamp(2rem, 4vw, 3rem);
  overflow: hidden;
  background: var(--accent);
  color: #fff;
}

.page-hero::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(to top,
      rgba(9, 26, 42, .92) 0%,
      rgba(9, 26, 42, .76) 40%,
      rgba(9, 26, 42, .34) 100%),
    linear-gradient(to right,
      rgba(9, 26, 42, .45), rgba(9, 26, 42, 0) 65%);
}

.page-hero h1 {
  max-width: 18ch; margin-bottom: .4em;
  color: #fff;
  text-shadow: 0 1px 24px rgba(9, 26, 42, .45);
}

.page-hero .eyebrow {
  max-width: none;
  margin: 0 0 .9rem;
  font-size: .8125rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255, 255, 255, .82);
}

.page-hero .lead {
  color: rgba(255, 255, 255, .9);
  text-shadow: 0 1px 16px rgba(9, 26, 42, .45);
}

/* Long-form program copy: narrower than the container so lines stay
   readable, and centered rather than hugging the left edge. */
.prose { max-width: 44rem; margin-inline: auto; }
.prose > h2 { margin-top: 1.8em; }
.prose > :first-child { margin-top: 0; }
.prose .lead { max-width: none; margin-bottom: 1.4em; }

.prose-mark {
  width: min(100%, 24rem);
  margin: 2.5rem 0 0;
  border-radius: var(--radius-sm);
}

/* ---------------------------------------------------------------
   Sections
--------------------------------------------------------------- */

.section { padding: var(--section-y) 0; }
.section-alt { background: var(--bg-alt); }

/* Every section opens the same way: eyebrow, heading, accent rule, and
   an optional line or two of framing copy — all centered. Body copy
   inside the sections stays left-aligned, where it stays readable. */
.section-head {
  max-width: 44rem;
  margin: 0 auto clamp(2.25rem, 5vw, 3.25rem);
  text-align: center;
}

.section-head h2 { margin-bottom: 0; }

/* Tri-tone rule — the logo's red, green and navy, in that order */
.section-head h2::after {
  content: "";
  display: block;
  width: 3.75rem; height: 3px;
  margin: 1rem auto 0;
  border-radius: 2px;
  background: linear-gradient(90deg,
    var(--brand-red)   0 33.33%,
    var(--brand-green) 33.33% 66.66%,
    var(--accent)      66.66% 100%);
}

/* :not(.eyebrow) matters — a bare `.section-head p` outranks `.eyebrow`
   on specificity and would strip its color and spacing. */
.section-head p:not(.eyebrow) {
  max-width: 46ch;
  margin: 1.25rem auto 0;
  color: var(--fg-muted);
}

.section-head .eyebrow {
  max-width: none;
  margin: 0 0 .9rem;
  font-size: .8125rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent);
}

/* Closing line under a section's content, matched to the header */
.section-note {
  max-width: 46ch;
  margin: clamp(2rem, 4vw, 2.75rem) auto 0;
  text-align: center;
  color: var(--fg-muted);
}

/* Intro sits right under the hero photo — a centered statement of intent. */
#intro { padding-top: clamp(2.75rem, 7vw, 5rem); }
.intro-statement {
  max-width: 42rem;
  margin-inline: auto;
  text-align: center;
}
.intro-statement p {
  font-size: clamp(1.15rem, .5vw + 1.05rem, 1.35rem);
  line-height: 1.6;
  max-width: none;
}
.intro-statement p:nth-of-type(2) {
  font-weight: 650; color: var(--fg);
}

/* ---------------------------------------------------------------
   About — portrait beside the text
--------------------------------------------------------------- */

.about-grid {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  grid-template-columns: minmax(0, 1fr);
}

@media (min-width: 860px) {
  .about-grid { grid-template-columns: minmax(260px, 22rem) minmax(0, 1fr); }
  .about-portrait { position: sticky; top: 6.5rem; }
}

.about-portrait { margin: 0; }

.about-portrait img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--surface);
}

.about-caption {
  margin-top: .75rem;
  font-size: .875rem;
  line-height: 1.4;
  color: var(--fg-muted);
}

/* Bill + Tiffany, side by side under the About copy */
.photo-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2.25rem;
}
.photo-pair figure { margin: 0; }
.photo-pair img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center 30%;  /* keeps faces in frame on the square crop */
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--surface);
}

/* ---------------------------------------------------------------
   Mission
--------------------------------------------------------------- */

.mission-list {
  list-style: none; padding: 0;
  margin: 0;
  display: grid; gap: clamp(.875rem, 2vw, 1.25rem);
  max-width: none;
}

.mission-list li {
  display: flex; flex-direction: column; align-items: center;
  margin: 0;
  padding: clamp(1.75rem, 3vw, 2.25rem) 1.5rem;
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.4;
}

/* Numbered marker above the label, echoing the offerings' step list */
.mission-list { counter-reset: pillar; }
.mission-list li::before {
  counter-increment: pillar;
  content: counter(pillar);
  display: grid; place-items: center;
  width: 2.5rem; height: 2.5rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: .9375rem; font-weight: 700;
  font-variant-numeric: tabular-nums;
}

@media (min-width: 720px) {
  .mission-list { grid-template-columns: repeat(3, 1fr); }
}

/* ---------------------------------------------------------------
   Offerings
--------------------------------------------------------------- */

/* The three "we train / we walk / then that team" steps */
.steps {
  list-style: none;
  counter-reset: step;
  padding: 0;
  margin: 1.75rem 0;
  display: grid; gap: 1rem;
  max-width: none;
}

.steps li {
  counter-increment: step;
  position: relative;
  margin: 0;
  padding-left: 3.25rem;
  min-height: 2.25rem;
  display: flex; align-items: center;
}

.steps li::before {
  content: counter(step);
  position: absolute; left: 0; top: 0;
  display: grid; place-items: center;
  width: 2.25rem; height: 2.25rem;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: .95rem; font-weight: 700;
  font-variant-numeric: tabular-nums;
}

/* ---------------------------------------------------------------
   Offering cards — the home page teaser grid, reused at the bottom
   of each program page as "Also from Go Make Disciples"
--------------------------------------------------------------- */

.offering-cards {
  list-style: none; padding: 0; margin: 0; max-width: none;
  display: grid; gap: clamp(1.25rem, 2.5vw, 1.75rem);
}
.offering-cards > li { margin: 0; display: flex; }

@media (min-width: 880px) {
  .offering-cards { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  /* The related-programs grids only ever hold two cards */
  .offering-cards:has(> li:nth-child(2):last-child) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* The whole card is the link — no separate "read more" hit target. */
.offering-card {
  display: flex; flex-direction: column; width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  color: inherit; text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.offering-card:hover {
  color: inherit;
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--accent) 30%, var(--border));
  box-shadow: 0 2px 4px rgba(43, 39, 36, .05),
              0 14px 32px rgba(43, 39, 36, .10);
}

.offering-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 35%;
  background: var(--bg-alt);
}

.offering-card-body {
  display: flex; flex-direction: column; flex: 1;
  padding: clamp(1.25rem, 3vw, 1.75rem);
}

.offering-card-eyebrow {
  display: block;
  margin-bottom: .55rem;
  font-size: .75rem; font-weight: 700;
  letter-spacing: .13em; text-transform: uppercase;
  color: var(--accent);
}

.offering-card h3 {
  max-width: none;
  margin-bottom: .5rem;
  font-size: clamp(1.15rem, .5vw + 1.05rem, 1.35rem);
}

.offering-card p {
  max-width: none;
  font-size: .975rem; line-height: 1.6;
  color: var(--fg-muted);
}

.offering-card-more {
  margin-top: auto; padding-top: 1.25rem;
  font-size: .95rem; font-weight: 650;
  color: var(--accent);
}
.offering-card:hover .offering-card-more { color: var(--accent-hover); }

/* ---------------------------------------------------------------
   Faith Study — the five studies, in order
--------------------------------------------------------------- */

.study-list {
  list-style: none; counter-reset: study;
  padding: 0; margin: 0; max-width: none;
  display: grid; gap: clamp(1rem, 2.5vw, 1.5rem);
}

@media (min-width: 640px)  { .study-list { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1000px) { .study-list { grid-template-columns: repeat(5, minmax(0, 1fr)); } }

.study-list > li {
  counter-increment: study;
  margin: 0;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.study-list > li::before {
  content: counter(study);
  display: grid; place-items: center;
  width: 2.25rem; height: 2.25rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: .9375rem; font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.study-list h3 { max-width: none; margin-bottom: .35rem; font-size: 1.125rem; }
.study-list p { max-width: none; font-size: .95rem; line-height: 1.55; color: var(--fg-muted); }

/* ---------------------------------------------------------------
   Option grid — the Staff Discipleship menu
--------------------------------------------------------------- */

.option-grid {
  list-style: none; padding: 0; margin: 0; max-width: none;
  display: grid; gap: clamp(1rem, 2.5vw, 1.5rem);
}

@media (min-width: 640px)  { .option-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1000px) { .option-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.option-grid > li {
  margin: 0;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.option-grid h3 {
  max-width: none;
  margin-bottom: .85rem;
  font-size: 1.125rem;
  /* Short accent rule instead of the section heads' tri-tone bar */
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--border);
}

.option-grid ul {
  max-width: none; margin: 0;
  padding-left: 1.15rem;
  font-size: .975rem;
}
.option-grid ul li { margin-bottom: .4em; }
.option-grid ul li:last-child { margin-bottom: 0; }

.option-note {
  max-width: none;
  font-size: .975rem; line-height: 1.6;
  color: var(--fg-muted);
}

/* ---------------------------------------------------------------
   Stat grid — Navigating Us outcomes
--------------------------------------------------------------- */

.stat-grid {
  list-style: none; padding: 0; margin: 0; max-width: none;
  display: grid; gap: clamp(1rem, 2.5vw, 1.5rem);
}

@media (min-width: 560px)  { .stat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1000px) { .stat-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.stat-grid > li {
  margin: 0;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.stat-value {
  display: block;
  font-size: clamp(1.4rem, 1.2vw + 1.1rem, 1.85rem);
  font-weight: 700; letter-spacing: -.02em; line-height: 1.15;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}

.stat-label {
  display: block;
  margin-top: .7rem;
  font-size: .95rem; line-height: 1.45;
  color: var(--fg-muted);
  text-wrap: balance;
}

/* ---------------------------------------------------------------
   CTA band — closes every program page
--------------------------------------------------------------- */

.cta-band {
  padding: clamp(2rem, 5vw, 3.25rem) clamp(1.5rem, 4vw, 3rem);
  text-align: center;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.cta-band h2 { max-width: 22ch; margin-inline: auto; color: #fff; }
.cta-band p { max-width: 46ch; margin-inline: auto; color: rgba(255, 255, 255, .88); }

/* Scoped under .cta-band so they outrank the `.cta-band p` rule above,
   which would otherwise reimpose its measure and auto margins. */
.cta-band .cta-actions {
  display: flex; flex-wrap: wrap; gap: .875rem; justify-content: center;
  max-width: none; margin: 1.75rem 0 0;
}

.cta-band .btn { background: #fff; color: var(--accent); border-color: #fff; }
.cta-band .btn:hover { background: var(--bg); color: var(--accent); }

.cta-band .cta-contact {
  display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center;
  max-width: none; margin: 1.5rem 0 0;
  font-size: .95rem;
}
.cta-contact a { color: #fff; }
.cta-contact a:hover { color: rgba(255, 255, 255, .8); }

.cta-band :focus-visible { outline-color: #fff; }

/* ---------------------------------------------------------------
   Buttons
--------------------------------------------------------------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .875rem 1.75rem;
  font: inherit; font-size: 1rem; font-weight: 600;
  line-height: 1.2;
  text-decoration: none; cursor: pointer;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--accent); color: var(--accent-fg);
  transition: background-color .15s ease, border-color .15s ease,
              transform .15s ease;
}
.btn:hover { background: var(--accent-hover); color: var(--accent-fg); transform: translateY(-1px); }
.btn:active { transform: none; }

.btn-secondary {
  background: transparent;
  color: var(--fg);
  border-color: var(--border);
}
.btn-secondary:hover {
  background: var(--surface);
  color: var(--fg);
  border-color: var(--fg-muted);
}

/* ---------------------------------------------------------------
   Contact form
--------------------------------------------------------------- */

.contact-grid {
  display: grid;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: start;
  margin-top: 2.5rem;
}

@media (min-width: 900px) {
  .contact-grid { grid-template-columns: minmax(0, 18rem) minmax(0, 1fr); }
}

.contact-card {
  padding: clamp(1.5rem, 4vw, 2rem);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-photo {
  width: 8rem; height: 8rem;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 25%;
  margin-bottom: 1.25rem;
  background: var(--bg-alt);
}

.contact-name {
  font-size: 1.25rem; font-weight: 700;
  letter-spacing: -.01em;
  margin-bottom: .1rem !important;
}
.contact-role {
  color: var(--fg-muted);
  margin-bottom: 1.25rem !important;
}

.contact-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: .5rem;
  font-size: .975rem;
}
.contact-list li { margin: 0; }

.form {
  max-width: 34rem;
  margin-top: 0;
  padding: clamp(1.5rem, 4vw, 2.25rem);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.form p { max-width: none; margin-bottom: 1.25rem; }
.form p:last-child { margin-bottom: 0; }

.form label {
  display: block;
  margin-bottom: .4rem;
  font-size: .925rem; font-weight: 600;
}

.form input,
.form textarea {
  width: 100%;
  padding: .75rem .9rem;
  font: inherit; font-size: 1rem;
  color: var(--fg);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.form input:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 18%, transparent);
}
.form textarea { resize: vertical; min-height: 8rem; }

.form .btn { width: 100%; }

/* ---------------------------------------------------------------
   Footer
--------------------------------------------------------------- */

.site-footer {
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  color: var(--fg-muted);
}
.site-footer p { margin: 0; max-width: none; }

.footer-logos {
  list-style: none; padding: 0; max-width: none;
  display: flex; flex-wrap: wrap; align-items: center;
  gap: clamp(1.5rem, 5vw, 3rem);
  margin: 0 0 1.75rem;
}
.footer-logos li { margin: 0; }

.footer-logo { width: 6.5rem; height: auto; }

/* The Staff Discipleship lockup is horizontal — give it more room
   so both marks read at a similar visual weight. */
.footer-logo-wide { width: 11.5rem; }

.footer-tagline { margin-bottom: .5rem !important; }

.footer-contact {
  display: flex; flex-wrap: wrap; gap: .5rem;
  margin-bottom: 1.5rem !important;
  font-size: .95rem;
}

.footer-legal {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: .875rem;
}
