/* ==========================================================================
   Shalom Native Mission — Design System
   Warm, photo-driven. Built for donors, families, and supporting churches.
   ========================================================================== */

/* --- Tokens --------------------------------------------------------------- */
:root {
  /* Palette — warm earth, drawn from the Manipur hills and terracotta */
  --forest:        #24402F;
  --forest-deep:   #172A1F;
  --forest-soft:   #3A5A46;
  --clay:          #B4552F;
  --clay-deep:     #8E3F20;
  --gold:          #C9982F;
  --gold-soft:     #E8C877;

  --cream:         #FBF6EE;
  --sand:          #F2E9DB;
  --sand-deep:     #E5D8C4;
  --ink:           #221D18;
  --ink-soft:      #4A4139;
  --ink-mute:      #6E6358;
  --white:         #FFFFFF;

  --line:          rgba(34, 29, 24, 0.12);
  --line-light:    rgba(255, 255, 255, 0.18);

  /* Type */
  --font-display: "Fraunces", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Spacing / layout */
  --wrap:         1180px;
  --wrap-narrow:  760px;
  --gutter:       clamp(1.25rem, 5vw, 3rem);
  --section-y:    clamp(4rem, 9vw, 7.5rem);
  --radius:       14px;
  --radius-lg:    22px;

  --shadow-sm: 0 2px 8px rgba(34, 29, 24, 0.07);
  --shadow-md: 0 10px 30px rgba(34, 29, 24, 0.10);
  --shadow-lg: 0 24px 60px rgba(34, 29, 24, 0.16);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink-soft);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: var(--clay-deep); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--clay); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.12;
  letter-spacing: -0.015em;
  font-weight: 600;
  margin: 0 0 0.5em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.4rem, 6vw, 4rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.6rem); }
h4 { font-size: 1.1rem; }

p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--forest);
  color: var(--white);
  padding: 0.85rem 1.4rem;
  z-index: 200;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; color: var(--white); }

/* --- Layout helpers ------------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.wrap--narrow { max-width: var(--wrap-narrow); }

.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(2.75rem, 6vw, 4.5rem); }
.section--sand { background: var(--sand); }
.section--cream { background: var(--cream); }
.section--forest {
  background: var(--forest);
  color: rgba(255, 255, 255, 0.82);
}
.section--forest h1,
.section--forest h2,
.section--forest h3,
.section--forest h4 { color: var(--white); }
.section--forest a { color: var(--gold-soft); }

/* `center` is used both on a wrapper and directly on the element being
   centered, so each rule needs to match both cases. */
.center { text-align: center; }
.center .section-head,
.section-head.center { margin-inline: auto; }

/* --- Section headings ----------------------------------------------------- */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clay);
  margin: 0 0 1rem;
}
.section--forest .eyebrow { color: var(--gold-soft); }

.section-head { max-width: 62ch; margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.section-head p { font-size: 1.125rem; color: var(--ink-mute); }
.section--forest .section-head p { color: rgba(255, 255, 255, 0.78); }

.lede {
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  line-height: 1.6;
  color: var(--ink-soft);
}

.rule {
  width: 60px;
  height: 3px;
  background: var(--gold);
  border: 0;
  margin: 0 0 1.75rem;
  border-radius: 2px;
}
.center .rule,
.center > .rule { margin-inline: auto; }

/* --- Buttons -------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55em;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 0.95em 1.9em;
  border: 2px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s var(--ease), background-color 0.18s var(--ease),
              color 0.18s var(--ease), border-color 0.18s var(--ease),
              box-shadow 0.18s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--clay);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover { background: var(--clay-deep); color: var(--white); box-shadow: var(--shadow-md); }

.btn--forest { background: var(--forest); color: var(--white); }
.btn--forest:hover { background: var(--forest-deep); color: var(--white); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: rgba(34, 29, 24, 0.25);
}
.btn--ghost:hover { border-color: var(--ink); color: var(--ink); background: rgba(34,29,24,0.04); }

.btn--light {
  background: rgba(255, 255, 255, 0.10);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(4px);
}
.btn--light:hover { background: var(--white); color: var(--forest); border-color: var(--white); }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}
.center .btn-row { justify-content: center; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  color: var(--clay-deep);
}
.link-arrow span { transition: transform 0.2s var(--ease); }
.link-arrow:hover span { transform: translateX(4px); }

/* --- Header --------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 246, 238, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease),
              background-color 0.25s var(--ease);
}
.site-header.is-stuck {
  border-bottom-color: var(--line);
  box-shadow: 0 4px 18px rgba(34, 29, 24, 0.06);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  color: var(--ink);
  flex-shrink: 0;
}
.brand__mark {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  object-fit: contain;
}
@media (max-width: 480px) {
  .brand__mark { width: 38px; height: 38px; }
  .brand__name { font-size: 1rem; }
  .brand__tag { font-size: 0.62rem; letter-spacing: 0.1em; }
}
.brand__text { display: flex; flex-direction: column; line-height: 1.15; }
.brand__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.08rem;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.brand__tag {
  font-size: 0.68rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
}

.nav { display: flex; align-items: center; gap: 0.35rem; }
.nav a {
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none;
  padding: 0.55rem 0.85rem;
  border-radius: 8px;
  transition: color 0.15s var(--ease), background-color 0.15s var(--ease);
}
.nav a:hover { color: var(--ink); background: rgba(34, 29, 24, 0.05); }
.nav a[aria-current="page"] { color: var(--clay-deep); font-weight: 600; }

/* The Give button. These need to out-specify `.nav a` above (0,1,1),
   or the button text inherits the muted nav link color. */
.nav a.btn {
  margin-left: 0.6rem;
  padding: 0.72em 1.6em;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 999px;
}
.nav a.btn--primary,
.nav a.btn--primary:hover,
.nav a.btn--primary[aria-current="page"] {
  color: var(--white);
  background: var(--clay);
}
.nav a.btn--primary:hover { background: var(--clay-deep); }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 0.5rem;
  cursor: pointer;
  color: var(--ink);
}
.nav-toggle svg { width: 26px; height: 26px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav {
    position: fixed;
    inset: 78px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    padding: 0.75rem var(--gutter) 1.75rem;
    box-shadow: var(--shadow-md);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
    max-height: calc(100vh - 78px);
    overflow-y: auto;
  }
  .nav.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .nav a { padding: 0.9rem 0.5rem; border-bottom: 1px solid var(--line); border-radius: 0; font-size: 1.05rem; }
  .nav a.btn {
    margin: 1.5rem 0 0;
    padding: 1em 1.6em;
    border-bottom: 0;
    border-radius: 999px;
    justify-content: center;
    font-size: 1rem;
  }
}

/* --- Hero ----------------------------------------------------------------- */
.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: clamp(520px, 78vh, 760px);
  background: var(--forest-deep);
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 58%;
}
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(15, 26, 19, 0.94) 0%, rgba(15, 26, 19, 0.58) 45%, rgba(15, 26, 19, 0.34) 100%),
    linear-gradient(to right, rgba(15, 26, 19, 0.62) 0%, rgba(15, 26, 19, 0) 65%);
}
/* Narrow screens put the copy over the middle of the photo — darken further. */
@media (max-width: 860px) {
  .hero__media::after {
    background: linear-gradient(to top,
      rgba(15, 26, 19, 0.95) 0%,
      rgba(15, 26, 19, 0.80) 40%,
      rgba(15, 26, 19, 0.66) 75%,
      rgba(15, 26, 19, 0.58) 100%);
  }
  .hero .btn-row .btn { flex: 1 1 auto; min-width: min(100%, 15rem); }
}
.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-block: clamp(3rem, 8vw, 5.5rem);
}
.hero__content { max-width: 40rem; }
.hero h1 { color: var(--white); margin-bottom: 0.4em; }
.hero p {
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.1rem, 1.9vw, 1.3rem);
  line-height: 1.6;
  max-width: 34rem;
}
.hero .eyebrow { color: var(--gold-soft); }

/* Compact page hero for interior pages */
.page-hero {
  position: relative;
  background: var(--forest);
  color: rgba(255, 255, 255, 0.85);
  padding-block: clamp(3.5rem, 8vw, 6rem);
  overflow: hidden;
}
.page-hero__media { position: absolute; inset: 0; z-index: 0; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(20, 36, 27, 0.95) 0%, rgba(20, 36, 27, 0.78) 55%, rgba(20, 36, 27, 0.55) 100%);
}
.page-hero__inner { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); max-width: 20ch; }
.page-hero p {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  max-width: 52ch;
  margin-top: 0.35rem;
}
.page-hero .eyebrow { color: var(--gold-soft); }

/* --- Stat band ------------------------------------------------------------ */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.stat {
  background: var(--cream);
  padding: clamp(1.6rem, 3vw, 2.4rem) 1.4rem;
  text-align: center;
}
.section--sand .stat { background: var(--sand); }
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.5vw, 3rem);
  font-weight: 600;
  color: var(--forest);
  line-height: 1;
  letter-spacing: -0.02em;
  display: block;
  margin-bottom: 0.4rem;
}
.stat__label {
  font-size: 0.82rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-mute);
}

/* Stats on forest background */
.section--forest .stats { background: var(--line-light); border-color: var(--line-light); }
.section--forest .stat { background: var(--forest); }
.section--forest .stat__num { color: var(--gold-soft); }
.section--forest .stat__label { color: rgba(255, 255, 255, 0.7); }

/* --- Grids ---------------------------------------------------------------- */
.grid { display: grid; gap: clamp(1.5rem, 3vw, 2.25rem); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

/* Split: text + image side by side */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.split--reverse .split__media { order: -1; }
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
}
.split__media img,
.split__media .img-slot {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
}

/* --- Cards ---------------------------------------------------------------- */
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card__media { aspect-ratio: 3 / 2; overflow: hidden; background: var(--sand-deep); }
.card__media img { width: 100%; height: 100%; object-fit: cover; }
.card__body { padding: clamp(1.5rem, 3vw, 2rem); flex: 1; display: flex; flex-direction: column; }
.card__body h3 { margin-bottom: 0.5rem; }
.card__body p { color: var(--ink-mute); font-size: 1rem; }
.card__body .link-arrow { margin-top: auto; padding-top: 1.25rem; align-self: flex-start; }

/* Feature cards (icon + text, no image) */
.feature {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2rem);
}
.feature h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.feature p { font-size: 0.98rem; color: var(--ink-mute); margin: 0; }

/* --- Pastor grid ---------------------------------------------------------- */
.pastor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.25rem;
}
.pastor {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.pastor__initials {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--gold-soft);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}
.pastor__text p { font-size: 0.95rem; margin: 0; color: var(--ink-mute); line-height: 1.55; }
.pastor__text strong { display: block; color: var(--ink); font-size: 0.88rem; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 0.25rem; }

/* --- Quote ---------------------------------------------------------------- */
.quote {
  position: relative;
  max-width: 46rem;
  margin-inline: auto;
  text-align: center;
}
.quote blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.2vw, 2.15rem);
  line-height: 1.35;
  letter-spacing: -0.015em;
  color: var(--ink);
  text-wrap: balance;
}
.section--forest .quote blockquote { color: var(--white); }
.quote cite {
  display: block;
  margin-top: 1.5rem;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-mute);
}
.section--forest .quote cite { color: var(--gold-soft); }
.quote__mark {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 0.5;
  color: var(--gold);
  display: block;
  margin-bottom: 1.25rem;
}

/* --- Timeline / updates --------------------------------------------------- */
.update {
  border-top: 1px solid var(--line);
  padding-block: clamp(2.25rem, 4vw, 3.25rem);
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
}
@media (max-width: 720px) { .update { grid-template-columns: 1fr; gap: 1rem; } }
.update__date {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--forest);
  position: sticky;
  top: 110px;
  align-self: start;
}
@media (max-width: 720px) { .update__date { position: static; } }
.update__body h3 { font-size: 1.45rem; }
.update__body ul { padding-left: 1.2rem; margin: 0 0 1.15em; }
.update__body li { margin-bottom: 0.5rem; }

/* --- Gallery -------------------------------------------------------------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.1rem;
}
.gallery figure { margin: 0; }
.gallery img, .gallery .img-slot {
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}
.gallery figcaption {
  font-size: 0.85rem;
  color: var(--ink-mute);
  margin-top: 0.6rem;
}

/* --- Image placeholder slots --------------------------------------------- */
/* Swap these for real <img> tags once photos arrive. */
.img-slot {
  position: relative;
  display: grid;
  place-items: center;
  background:
    repeating-linear-gradient(
      45deg,
      var(--sand) 0px, var(--sand) 12px,
      var(--sand-deep) 12px, var(--sand-deep) 24px
    );
  border: 1px dashed rgba(34, 29, 24, 0.28);
  border-radius: var(--radius);
  color: var(--ink-mute);
  text-align: center;
  padding: 1.5rem;
  min-height: 180px;
  aspect-ratio: 3 / 2;
}
.img-slot span {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(251, 246, 238, 0.92);
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  line-height: 1.4;
  max-width: 90%;
}
.img-slot--hero {
  aspect-ratio: auto;
  height: 100%;
  width: 100%;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(135deg, var(--forest-soft) 0%, var(--forest-deep) 55%, #2E2018 100%);
}
.img-slot--hero span {
  background: rgba(0, 0, 0, 0.35);
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.img-slot--tall { aspect-ratio: 3 / 4; }
.img-slot--wide { aspect-ratio: 16 / 9; }

/* --- Callout / CTA band --------------------------------------------------- */
.cta-band {
  background: var(--forest);
  color: rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-lg);
  padding: clamp(2.25rem, 5vw, 3.75rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -10%;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 152, 47, 0.22) 0%, rgba(201, 152, 47, 0) 70%);
  pointer-events: none;
}
.cta-band h2 { color: var(--white); }
.cta-band p { max-width: 48ch; margin-inline: auto; color: rgba(255, 255, 255, 0.8); }
.cta-band .btn-row { justify-content: center; position: relative; }

/* --- Need / giving levels ------------------------------------------------- */
.need {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 3.5vw, 2.5rem);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.need__amount {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 600;
  color: var(--clay);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 0.15rem;
}
.need__unit {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-mute);
  margin-bottom: 1.1rem;
}
.need h3 { font-size: 1.2rem; }
.need p { font-size: 0.98rem; color: var(--ink-mute); margin-bottom: 0; }

/* --- Statement of faith list ---------------------------------------------- */
.beliefs { list-style: none; margin: 0; padding: 0; counter-reset: belief; }
.beliefs li {
  counter-increment: belief;
  position: relative;
  padding: 1.35rem 0 1.35rem 3.5rem;
  border-bottom: 1px solid var(--line);
}
.beliefs li:last-child { border-bottom: 0; }
.beliefs li::before {
  content: counter(belief, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 1.35rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.02em;
}

/* --- Board / people ------------------------------------------------------- */
/* Seven board members don't divide evenly. Capping the container at four
   across gives a 4 + 3 arrangement, which reads as intentional — six with a
   single orphan underneath does not. */
.people {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
  max-width: 880px;
  margin-inline: auto;
}
.person {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.3rem 1.25rem;
  text-align: center;
  flex: 1 1 185px;
  max-width: 210px;
  min-height: 92px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 620px) {
  .people { max-width: 440px; }
  .person { flex: 1 1 175px; }
}
.person__name {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
  font-size: 1.02rem;
  display: block;
  line-height: 1.3;
}
.person__role {
  font-size: 0.74rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--clay);
  font-weight: 600;
  margin-top: 0.35rem;
  display: block;
}

/* --- Contact / info blocks ------------------------------------------------ */
.info-list { list-style: none; margin: 0; padding: 0; }
.info-list li {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  padding-block: 0.85rem;
  border-bottom: 1px solid var(--line-light);
}
.info-list li:last-child { border-bottom: 0; }
.info-list strong {
  display: block;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 0.2rem;
  font-weight: 600;
}
.info-list svg { flex-shrink: 0; width: 20px; height: 20px; margin-top: 4px; opacity: 0.75; }

/* --- Footer --------------------------------------------------------------- */
.site-footer {
  background: var(--forest-deep);
  color: rgba(255, 255, 255, 0.7);
  padding-block: clamp(3rem, 6vw, 4.5rem) 0;
  font-size: 0.95rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: 3rem;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr; gap: 2.25rem; } }
.site-footer h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
  font-weight: 600;
}
.site-footer a { color: rgba(255, 255, 255, 0.72); text-decoration: none; }
.site-footer a:hover { color: var(--white); text-decoration: underline; }
.footer-nav { list-style: none; margin: 0; padding: 0; }
.footer-nav li { margin-bottom: 0.65rem; }
.footer-brand__mark {
  width: 46px;
  height: 46px;
  margin-bottom: 1rem;
}
.footer-brand__name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 0.6rem;
}
.footer-brand p { max-width: 34ch; color: rgba(255, 255, 255, 0.65); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-block: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.75rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* --- Prose blocks --------------------------------------------------------- */
.prose { max-width: 68ch; }
.prose h3 { margin-top: 2.5rem; }
.prose h3:first-child { margin-top: 0; }
.prose ul { padding-left: 1.25rem; }
.prose li { margin-bottom: 0.55rem; }

.fact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.85rem;
}
.fact-list li {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.15rem 1.35rem;
  font-size: 0.97rem;
  color: var(--ink-soft);
  display: flex;
  gap: 0.75rem;
  align-items: baseline;
}
.fact-list li::before {
  content: "";
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  transform: translateY(-2px);
}
.fact-list b { color: var(--ink); font-weight: 600; }

/* --- Notice / alert ------------------------------------------------------- */
.notice {
  background: rgba(201, 152, 47, 0.12);
  border: 1px solid rgba(201, 152, 47, 0.4);
  border-radius: var(--radius);
  padding: 1.1rem 1.35rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.notice strong { color: var(--ink); }

/* --- Reveal on scroll ----------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

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

/* --- Print ---------------------------------------------------------------- */
@media print {
  .site-header, .nav-toggle, .cta-band, .btn { display: none !important; }
  body { background: #fff; color: #000; }
}
