/* ============================================================
   Kapatid Ministry — Site styles
   Implementation of the "Kapatid Website" design from Claude Design.
   All colors, radii, shadows and type come from css/tokens.css.
   ============================================================ */

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink-700);
  background: var(--paper);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; }

a { color: var(--kapatid-coral); text-decoration: none; }
a:hover { color: var(--coral-hover); }

button { font-family: inherit; }

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

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

.skip-link {
  position: absolute;
  left: 12px; top: -60px;
  z-index: 200;
  background: #fff;
  color: var(--kapatid-navy);
  font-weight: var(--fw-bold);
  padding: 12px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  transition: top var(--dur-base) var(--ease-out);
}
.skip-link:focus { top: 12px; }

@keyframes kmFade {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}

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

/* ---------- Layout primitives ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(28px, 6vw, 88px);
}
.container--narrow  { max-width: 900px; }
.container--article { max-width: 760px; }
.container--report  { max-width: 1000px; }
.container--prose   { max-width: 960px; }

.section { padding: 92px 0; }
.section--sand  { background: var(--sand); }
.section--paper { background: var(--paper); }

/* The brand's diagonal brush texture over a solid field. */
.field {
  background-image: repeating-linear-gradient(115deg, rgba(255,255,255,.022) 0 9px, rgba(0,0,0,.014) 9px 19px);
  background-color: var(--field-color, var(--kapatid-navy));
}
.field--navy  { --field-color: var(--kapatid-navy); }
.field--coral { --field-color: var(--kapatid-coral); }
.field--gold  { --field-color: var(--gold-section); }

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 56px;
  align-items: center;
}
.split--start { align-items: start; }

.grid { display: grid; gap: 26px; }
.grid--cards      { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--stats      { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 22px; }
.grid--ministries { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; }
.grid--stories    { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid--ground     { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 28px; }
.grid--videos     { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 22px; }
.grid--team       { grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 28px; }
.grid--steps      { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.grid--cols3      { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
}
.section-head__text { max-width: 620px; }

.section-head--center {
  display: block;
  text-align: center;
  max-width: 640px;
  margin: 0 auto 52px;
}

/* ---------- Design-system components ---------- */

/* Button ------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-sans);
  font-weight: var(--fw-bold);
  line-height: 1;
  text-decoration: none;
  letter-spacing: var(--ls-tight);
  border-radius: var(--radius-md);
  cursor: pointer;
  white-space: nowrap;
  transition: transform var(--dur-fast) var(--ease-out),
              background var(--dur-base) var(--ease-out),
              color var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out);
}
.btn:active { transform: scale(0.97); }
.btn[disabled] { cursor: not-allowed; opacity: .5; }
.btn--pill { border-radius: var(--radius-pill); }
.btn--full { width: 100%; }

.btn--sm { height: 36px; padding: 0 16px; font-size: 14px; }
.btn--md { height: 46px; padding: 0 22px; font-size: 16px; }
.btn--lg { height: 56px; padding: 0 30px; font-size: 18px; }

.btn--primary   { background: var(--kapatid-blue);  color: #fff; border: 2px solid var(--kapatid-blue); }
.btn--primary:hover   { background: var(--blue-700); border-color: var(--blue-700); color: #fff; }
.btn--accent    { background: var(--kapatid-red);   color: #fff; border: 2px solid var(--kapatid-red); }
.btn--accent:hover    { background: var(--red-700); border-color: var(--red-700); color: #fff; }
.btn--coral     { background: var(--kapatid-coral); color: #fff; border: 2px solid var(--kapatid-coral); }
.btn--coral:hover     { background: var(--coral-hover); border-color: var(--coral-hover); color: #fff; }
.btn--gold      { background: var(--kapatid-gold);  color: var(--ink-900); border: 2px solid var(--kapatid-gold); }
.btn--gold:hover      { background: var(--gold-500); border-color: var(--gold-500); color: var(--ink-900); }
.btn--secondary { background: transparent; color: var(--kapatid-blue); border: 2px solid var(--kapatid-blue); }
.btn--secondary:hover { background: var(--kapatid-blue); color: #fff; }
.btn--ghost     { background: transparent; color: var(--kapatid-blue); border: 2px solid transparent; }
.btn--ghost:hover     { background: var(--blue-50); }

/* On-photo / on-color button treatments used by the hero and bands. */
.btn--outline-light {
  background: rgba(255,255,255,.08);
  color: #fff;
  border: 2px solid rgba(255,255,255,.6);
}
.btn--outline-light:hover { background: rgba(255,255,255,.18); color: #fff; }

.btn--on-coral {
  background: #fff;
  color: var(--kapatid-coral);
  border: 2px solid #fff;
}
.btn--on-coral:hover { background: var(--paper); border-color: var(--paper); color: var(--kapatid-coral); }

.btn--on-gold {
  background: transparent;
  color: var(--gold-900);
  border: 2px solid var(--gold-900);
}
.btn--on-gold:hover { background: var(--gold-900); color: var(--gold-section); }

.btn--on-navy {
  background: #fff;
  color: var(--kapatid-navy);
  border: 2px solid #fff;
}
.btn--on-navy:hover { background: var(--paper); border-color: var(--paper); color: var(--kapatid-navy); }

/* Badge -------------------------------------------------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  font-family: var(--font-sans);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-caption);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  line-height: 1;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  background: var(--blue-50);
  color: var(--blue-700);
}
.badge--blue  { background: var(--blue-50);   color: var(--blue-700); }
.badge--red   { background: var(--red-50);    color: var(--red-700); }
.badge--gold  { background: var(--gold-50);   color: var(--gold-800); }
.badge--taupe { background: var(--taupe-100); color: var(--taupe-700); }
.badge--neutral { background: var(--ink-100); color: var(--ink-700); }
.badge--solid { color: #fff; }
.badge--solid.badge--blue  { background: var(--kapatid-blue); }
.badge--solid.badge--red   { background: var(--kapatid-red); }
.badge--solid.badge--gold  { background: var(--gold-500); }
.badge--solid.badge--taupe { background: var(--taupe-500); }
.badge--solid.badge--neutral { background: var(--ink-700); }

/* SectionHeading ----------------------------------------- */
.heading__eyebrow {
  font-family: var(--font-sans);
  font-weight: var(--fw-bold);
  font-size: var(--fs-overline);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--kapatid-red);
  margin-bottom: var(--space-3);
}
.heading__eyebrow--red   { color: var(--kapatid-red); }
.heading__eyebrow--blue  { color: var(--kapatid-blue); }
.heading__eyebrow--gold  { color: var(--gold-600); }
.heading__eyebrow--coral { color: var(--kapatid-coral); }
.heading__eyebrow--on-color { color: var(--gold-section); }

.heading__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: var(--fw-extrabold);
  font-size: clamp(28px, 4vw, 44px);
  line-height: var(--lh-heading);
  letter-spacing: var(--ls-tight);
  color: var(--ink-900);
}
.heading__desc {
  margin: var(--space-4) 0 0;
  font-family: var(--font-sans);
  font-size: var(--fs-body-lg);
  line-height: var(--lh-body);
  color: var(--ink-700);
}
.heading--center { max-width: 52ch; margin-inline: auto; text-align: center; }
.heading--on-color .heading__title { color: #fff; }
.heading--on-color .heading__desc  { color: rgba(255,255,255,.9); }

/* StatBlock ---------------------------------------------- */
.stat__value {
  font-family: var(--font-display);
  font-weight: var(--fw-extrabold);
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1;
  letter-spacing: var(--ls-tight);
  color: var(--kapatid-blue);
}
.stat__value--blue { color: var(--kapatid-blue); }
.stat__value--red  { color: var(--kapatid-red); }
.stat__value--gold { color: var(--gold-500); }
.stat__value--ink  { color: var(--ink-900); }
.stat__label {
  margin-top: var(--space-2);
  font-family: var(--font-sans);
  font-weight: var(--fw-medium);
  font-size: var(--fs-body-sm);
  color: var(--ink-500);
  max-width: 22ch;
  line-height: var(--lh-snug);
}

/* VerseCard ---------------------------------------------- */
.verse-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--surface-blue);
  border-radius: var(--radius-lg);
  color: #fff;
  padding: clamp(24px, 6%, 56px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: var(--shadow-md);
}
.verse-card--blue { background: var(--surface-blue); }
.verse-card--red  { background: var(--surface-red); }
.verse-card--gold { background: var(--surface-gold); }
.verse-card--square { aspect-ratio: 1 / 1; }
.verse-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(115deg, rgba(255,255,255,.05) 0 6px, rgba(0,0,0,.035) 6px 13px);
  mix-blend-mode: soft-light;
  pointer-events: none;
}
.verse-card__inner { position: relative; }
.verse-card__headline {
  margin: 0;
  font-family: var(--font-display);
  font-weight: var(--fw-extrabold);
  font-size: clamp(28px, 6vw, 52px);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
}
.verse-card__ref {
  margin-top: var(--space-6);
  font-weight: var(--fw-bold);
  font-size: var(--fs-body-sm);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  opacity: .92;
}

/* Card ---------------------------------------------------- */
.card {
  background: #fff;
  border: 1px solid #EBE4D8;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(42,35,31,.06);
}
.card--lift {
  transition: transform .22s var(--ease-out), box-shadow .22s var(--ease-out);
  cursor: pointer;
  display: block;
  width: 100%;
  padding: 0;
  text-align: left;
  font: inherit;
  color: inherit;
}
.card--lift:hover,
.card--lift:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(42,35,31,.14);
}
.card__accent { height: 5px; }
.card__media { width: 100%; display: block; object-fit: cover; }
.card__body { padding: 22px 22px 26px; }

/* Shared text bits --------------------------------------- */
.eyebrow {
  font-size: 11px;
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--kapatid-coral);
  margin-bottom: 16px;
}
.eyebrow--gold   { color: var(--gold-section); }
.eyebrow--onGold { color: var(--gold-800); }
.eyebrow--muted  { color: var(--taupe-500); }

.page-title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: var(--fw-extrabold);
  font-size: clamp(38px, 4.6vw, 58px);
  line-height: 1.08;
  letter-spacing: -.025em;
  color: var(--ink-900);
}
.page-lede {
  margin: 22px 0 0;
  max-width: 56ch;
  font-size: 18.5px;
  line-height: 1.65;
  color: var(--ink-600);
  text-wrap: pretty;
}

.script { font-family: var(--font-script); }

.polaroid {
  border: 12px solid #fff;
  border-bottom-width: 44px;
  box-shadow: 0 18px 40px rgba(0,0,0,.34);
  object-fit: cover;
  aspect-ratio: 3 / 4;
  width: 46%;
  max-width: 260px;
}
.polaroid-pair { display: flex; justify-content: center; gap: 18px; }
.polaroid--tilt-left  { transform: rotate(-4deg); }
.polaroid--tilt-right { transform: rotate(3deg); margin-top: 42px; }

/* Form controls ------------------------------------------ */
.input,
.textarea {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 15.5px;
  height: 52px;
  padding: 0 18px;
  border-radius: var(--radius-md);
  border: 2px solid var(--taupe-200);
  background: #fff;
  color: var(--ink-700);
  outline: none;
  transition: border-color var(--dur-base) var(--ease-out);
}
.textarea { height: auto; padding: 16px 18px; resize: vertical; line-height: var(--lh-body); }
.input:focus, .textarea:focus { border-color: var(--kapatid-coral); }
.input::placeholder, .textarea::placeholder { color: var(--ink-400); }

.field-label {
  font-size: 11px;
  font-weight: var(--fw-bold);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--taupe-500);
}

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255,255,255,.96);
  backdrop-filter: saturate(140%) blur(6px);
  border-bottom: 1px solid #E5DFD2;
}
.site-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(28px, 6vw, 88px);
  height: 82px;
  display: flex;
  align-items: center;
  gap: 36px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  color: inherit;
}
.brand:hover { color: inherit; }
.brand img { height: 46px; width: auto; display: block; }
.brand__name {
  font-family: var(--font-display);
  font-weight: var(--fw-extrabold);
  font-size: 17px;
  letter-spacing: var(--ls-tighter);
  color: var(--kapatid-navy);
  line-height: 1.05;
}
.brand__sub {
  font-size: 10.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--taupe-500);
  font-weight: var(--fw-semibold);
  margin-top: 3px;
}

.nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav__item { position: relative; }
.nav__link {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: var(--fw-semibold);
  color: var(--ink-700);
  background: none;
  border: 0;
  padding: 10px 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  border-radius: var(--radius-sm);
  transition: color var(--dur-base) var(--ease-out);
}
.nav__link:hover,
.nav__link[aria-expanded="true"],
.nav__link.is-current { color: var(--kapatid-coral); }
.nav__caret { font-size: 10px; opacity: .5; }
.nav__cta { margin-left: 12px; display: flex; }

.menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 250px;
  background: #fff;
  border: 1px solid #E5DFD2;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(42,35,31,.16);
  padding: 8px;
  display: flex;
  flex-direction: column;
  animation: kmFade .18s var(--ease-out);
}
.menu--wide { width: 270px; }
.menu[hidden] { display: none; }
.menu__item {
  padding: 11px 14px;
  border-radius: 9px;
  cursor: pointer;
  background: none;
  border: 0;
  text-align: left;
  font: inherit;
  transition: background var(--dur-fast) var(--ease-out);
}
.menu__item:hover, .menu__item:focus-visible { background: var(--paper); }
.menu__label { font-weight: var(--fw-semibold); font-size: 14.5px; color: var(--kapatid-navy); }
.menu__sub   { font-size: 12.5px; color: var(--taupe-600); margin-top: 2px; }

.nav-toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: 2px solid #E5DFD2;
  border-radius: var(--radius-md);
  width: 46px; height: 46px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--ink-700);
}
.nav-toggle svg { width: 22px; height: 22px; }

/* ============================================================
   Home
   ============================================================ */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: flex-end;
  background-image:
    linear-gradient(90deg, rgba(11,58,92,.94) 0%, rgba(11,58,92,.86) 32%, rgba(11,58,92,.5) 62%, rgba(11,58,92,.18) 100%),
    url('../assets/photo-feeding-program.jpg');
  background-size: cover;
  background-position: center 35%;
}
.hero__inner { max-width: 1200px; margin: 0 auto; padding: 0 clamp(28px, 6vw, 88px) 76px; width: 100%; }
.hero__content { max-width: 720px; }
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: var(--fw-bold);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-section);
  margin-bottom: 22px;
}
.hero__eyebrow .spark { font-size: 15px; }
.hero__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: var(--fw-extrabold);
  font-size: clamp(42px, 5.4vw, 72px);
  line-height: 1.04;
  letter-spacing: -.025em;
  color: #fff;
  text-wrap: balance;
}
.hero__lede {
  margin: 26px 0 0;
  font-size: 19px;
  line-height: 1.62;
  color: rgba(255,255,255,.9);
  max-width: 58ch;
  text-wrap: pretty;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }

.announce__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 26px clamp(28px, 6vw, 88px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: #fff;
}
.announce__text { display: flex; align-items: center; gap: 14px; font-size: 17px; font-weight: var(--fw-semibold); }
.announce__spark { font-size: 20px; color: var(--kapatid-gold); }

.feed-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--taupe-500);
}
.feed-card__place { color: var(--kapatid-coral); }
.feed-card__title {
  margin: 12px 0 0;
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: var(--ls-tight);
  color: var(--ink-900);
}
.feed-card__body {
  margin: 10px 0 0;
  font-size: 15px;
  line-height: 1.62;
  color: var(--ink-600);
  text-wrap: pretty;
}
.feed-card .card__media { aspect-ratio: 4 / 3; }

.stat-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 28px 30px;
  border: 1px solid #EBE4D8;
  position: relative;
  overflow: hidden;
}

.ministry-card { cursor: pointer; box-shadow: 0 4px 14px rgba(79,46,8,.12); border: 0; }
.ministry-card:hover, .ministry-card:focus-visible { box-shadow: 0 18px 36px rgba(79,46,8,.22); }
.ministry-card .card__media { height: 170px; }
.ministry-card__name {
  margin: 0;
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: 19px;
  letter-spacing: var(--ls-tight);
  color: var(--ink-900);
}
.ministry-card__desc { margin: 10px 0 0; font-size: 14.5px; line-height: 1.6; color: var(--ink-600); }

.ministries-head__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: var(--fw-extrabold);
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.16;
  letter-spacing: var(--ls-tighter);
  color: var(--gold-900);
}
.ministries-head__lede { color: var(--gold-800); }

.map-legend { display: flex; gap: 26px; margin-top: 30px; flex-wrap: wrap; }
.map-legend__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  font-weight: var(--fw-semibold);
  color: var(--ink-700);
}
.map-legend__dot { width: 13px; height: 13px; border-radius: var(--radius-pill); display: inline-block; }
.map-note { margin: 26px 0 0; font-size: 13.5px; line-height: 1.6; color: var(--taupe-500); font-style: italic; }
.map-frame {
  background: var(--sand-soft);
  border: 1px solid #EBE4D8;
  border-radius: 22px;
  overflow: hidden;
  height: 520px;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; }

.verse-band__ref { color: var(--gold-section); }
.verse-band__quote {
  margin: 0;
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.32;
  letter-spacing: -.015em;
  color: #fff;
  text-wrap: pretty;
}
.verse-band__sign { margin-top: 28px; font-family: var(--font-script); font-size: 30px; color: var(--gold-section); }

.story-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  border: 0;
  padding: 0;
  text-align: left;
  font: inherit;
  transition: transform .22s var(--ease-out);
  background: var(--kapatid-navy);
}
.story-card:hover, .story-card:focus-visible { transform: translateY(-4px); }
.story-card__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.story-card__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,58,92,0) 30%, rgba(11,58,92,.9) 100%); }
.story-card__body { position: relative; padding: 28px; }
.story-card__years {
  font-size: 11px;
  font-weight: var(--fw-bold);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-section);
}
.story-card__title {
  margin: 10px 0 0;
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: 24px;
  line-height: 1.24;
  color: #fff;
}
.story-card__excerpt { margin: 10px 0 0; font-size: 14.5px; line-height: 1.6; color: rgba(255,255,255,.86); }

.newsletter { text-align: center; }
.newsletter__form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 30px;
}
.newsletter__input {
  font-size: 16px;
  height: 54px;
  border-radius: var(--radius-pill);
  min-width: 280px;
  width: auto;
  flex: 0 1 320px;
  padding: 0 20px;
}
.form-note { margin-top: 14px; text-align: center; font-size: 13px; color: var(--taupe-500); }
.form-status { margin-top: 16px; font-size: 15px; font-weight: var(--fw-semibold); color: var(--kapatid-navy); }

/* ============================================================
   About
   ============================================================ */
.about-hero__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: var(--fw-extrabold);
  font-size: clamp(38px, 4.6vw, 60px);
  line-height: 1.08;
  letter-spacing: -.025em;
  color: #fff;
}
.about-hero__lede {
  margin: 24px 0 0;
  font-size: 19px;
  line-height: 1.68;
  color: rgba(255,255,255,.88);
  max-width: 54ch;
  text-wrap: pretty;
}
.about-hero .polaroid { width: 48%; max-width: 280px; border-bottom-width: 46px; }
.about-hero .polaroid--tilt-left  { transform: rotate(3deg); margin-top: 0; }
.about-hero .polaroid--tilt-right { transform: rotate(-3deg); margin-top: 40px; }

.mission { text-align: center; }
.mission__marks {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--gold-section);
  font-size: 13px;
  opacity: .7;
  margin-bottom: 22px;
}
.mission__rule { width: 34px; height: 1px; background: var(--gold-section); opacity: .4; display: inline-block; }
.mission__text {
  margin: 0;
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.32;
  letter-spacing: var(--ls-tighter);
  color: var(--ink-900);
  text-wrap: pretty;
}
.mission__accent {
  font-family: var(--font-script);
  font-style: normal;
  color: var(--kapatid-coral);
  font-size: 1.12em;
}

.step-card { background: #fff; border: 1px solid #EBE4D8; border-radius: var(--radius-lg); padding: 34px 30px; }
.step-card__num {
  width: 56px; height: 56px;
  border-radius: var(--radius-pill);
  background: var(--gold-50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--gold-600);
  font-weight: var(--fw-bold);
  font-family: var(--font-display);
}
.step-card__title {
  margin: 22px 0 0;
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: 21px;
  letter-spacing: var(--ls-tight);
  color: var(--ink-900);
}
.step-card__body { margin: 10px 0 0; font-size: 15.5px; line-height: 1.65; color: var(--ink-600); }

.team-member { text-align: center; }
.team-member__avatar {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-pill);
  border: 8px solid #fff;
  box-shadow: 0 10px 26px rgba(42,35,31,.14);
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-member__initials {
  font-family: var(--font-display);
  font-weight: var(--fw-extrabold);
  font-size: 40px;
  letter-spacing: var(--ls-tighter);
  color: #fff;
}
.team-member__name {
  margin-top: 18px;
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: 18.5px;
  letter-spacing: -.015em;
  color: var(--ink-900);
}
.team-member__role { margin-top: 4px; font-size: 14.5px; line-height: 1.5; color: var(--taupe-600); }
.team-note {
  margin: 44px auto 0;
  max-width: 56ch;
  text-align: center;
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--ink-600);
}

.commitment-card {
  background: #fff;
  border: 1px solid #EBE4D8;
  border-radius: var(--radius-lg);
  padding: 0 30px 34px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(42,35,31,.06);
}
.commitment-card__bar { height: 6px; margin: 0 -30px 30px; }
.commitment-card__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: 20px;
  letter-spacing: var(--ls-tight);
  color: var(--ink-900);
}
.commitment-card__body { margin: 10px 0 0; font-size: 15.5px; line-height: 1.65; color: var(--ink-600); }

/* ============================================================
   Our work
   ============================================================ */
.work-hero { padding: 76px 0 84px; }
.work-hero__title {
  margin: 0;
  max-width: 20ch;
  font-family: var(--font-display);
  font-weight: var(--fw-extrabold);
  font-size: clamp(38px, 4.6vw, 60px);
  line-height: 1.08;
  letter-spacing: -.025em;
  color: var(--gold-900);
}
.work-hero__lede { margin: 22px 0 0; max-width: 58ch; font-size: 18.5px; line-height: 1.65; color: var(--gold-800); }

.ministry-detail {
  background: #fff;
  border: 1px solid #EBE4D8;
  border-radius: 22px;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  box-shadow: 0 2px 12px rgba(42,35,31,.06);
}
.ministry-detail__img { width: 100%; height: 100%; min-height: 280px; object-fit: cover; display: block; }
.ministry-detail__body { padding: 44px 46px; }
.ministry-detail__name {
  margin: 18px 0 0;
  font-family: var(--font-display);
  font-weight: var(--fw-extrabold);
  font-size: 30px;
  letter-spacing: var(--ls-tighter);
  color: var(--ink-900);
}
.ministry-detail__long { margin: 14px 0 0; font-size: 16.5px; line-height: 1.68; color: var(--ink-600); max-width: 52ch; text-wrap: pretty; }
.ministry-detail__stats { display: flex; flex-wrap: wrap; gap: 34px; margin-top: 28px; }
.ministry-detail__figure {
  font-family: var(--font-display);
  font-weight: var(--fw-extrabold);
  font-size: 30px;
  letter-spacing: var(--ls-tighter);
}
.ministry-detail__figure-label { font-size: 13.5px; color: var(--taupe-600); margin-top: 4px; }
.stack { display: flex; flex-direction: column; gap: 32px; }

/* ============================================================
   On the ground
   ============================================================ */
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; }
.filter-chip {
  font-family: var(--font-sans);
  font-size: 14.5px;
  font-weight: var(--fw-bold);
  height: 42px;
  padding: 0 22px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  border: 2px solid var(--kapatid-navy);
  background: transparent;
  color: var(--kapatid-navy);
  transition: background var(--dur-base) var(--ease-out), color var(--dur-base) var(--ease-out);
}
.filter-chip:hover { background: rgba(11,58,92,.08); }
.filter-chip[aria-pressed="true"] { background: var(--kapatid-navy); color: #fff; }

.ground-card { border-radius: 20px; }
.ground-card .card__media { aspect-ratio: 16 / 10; }
.ground-card__body { padding: 26px 26px 30px; }
.ground-card__meta { display: flex; align-items: center; gap: 12px; }
.ground-card__date { font-size: 13px; color: var(--taupe-500); font-weight: var(--fw-semibold); }
.ground-card__title {
  margin: 16px 0 0;
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: 21px;
  line-height: 1.28;
  letter-spacing: var(--ls-tight);
  color: var(--ink-900);
}
.ground-card__excerpt { margin: 10px 0 0; font-size: 15px; line-height: 1.64; color: var(--ink-600); text-wrap: pretty; }
.ground-card__pull {
  margin-top: 18px;
  padding-left: 16px;
  border-left: 3px solid var(--gold-section);
  font-family: var(--font-script);
  font-size: 21px;
  line-height: 1.35;
  color: var(--kapatid-navy);
}
.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  font-size: 17px;
  color: var(--ink-500);
}

/* ============================================================
   Stories
   ============================================================ */
.feature {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 460px;
  display: flex;
  align-items: flex-end;
  background: var(--kapatid-navy);
}
.feature__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.feature__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(11,58,92,.92) 0%, rgba(11,58,92,.55) 55%, rgba(11,58,92,.2) 100%);
}
.feature__body { position: relative; padding: 52px; max-width: 620px; }
.feature__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: var(--fw-bold);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-section);
  margin-bottom: 16px;
}
.feature__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: var(--fw-extrabold);
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.12;
  letter-spacing: var(--ls-tighter);
  color: #fff;
}
.feature__lede { margin: 16px 0 0; font-size: 17px; line-height: 1.65; color: rgba(255,255,255,.86); }
.feature__cta { margin-top: 28px; }

.video-row + .video-row { margin-top: 54px; }
.video-row__name {
  margin: 0 0 22px;
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: 24px;
  letter-spacing: -.015em;
  color: var(--ink-900);
}
.video-tile {
  cursor: pointer;
  transition: transform .22s var(--ease-out);
  background: none;
  border: 0;
  padding: 0;
  text-align: left;
  font: inherit;
  display: block;
  width: 100%;
}
.video-tile:hover, .video-tile:focus-visible { transform: translateY(-4px); }
.video-tile__thumb { position: relative; border-radius: 16px; overflow: hidden; aspect-ratio: 16 / 10; background: var(--kapatid-navy); }
.video-tile__thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.video-tile__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,58,92,.1) 40%, rgba(11,58,92,.72) 100%); }
.play-badge {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 52px; height: 52px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,.94);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--kapatid-navy);
  font-size: 17px;
  padding-left: 4px;
}
.play-badge--sm { width: 46px; height: 46px; font-size: 15px; padding-left: 3px; }
.play-badge--lg { width: 84px; height: 84px; font-size: 27px; padding-left: 6px; background: rgba(255,255,255,.95); }
.video-tile__len {
  position: absolute;
  right: 12px; bottom: 12px;
  font-size: 11.5px;
  font-weight: var(--fw-bold);
  color: #fff;
  background: rgba(0,0,0,.45);
  padding: 4px 9px;
  border-radius: 6px;
}
.video-tile__title {
  margin-top: 14px;
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: 17px;
  letter-spacing: var(--ls-tight);
  color: var(--ink-900);
}
.video-tile__sub { margin-top: 4px; font-size: 14px; color: var(--taupe-600); }

/* ============================================================
   Sponsor
   ============================================================ */
.sponsor-hero__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: var(--fw-extrabold);
  font-size: clamp(38px, 4.6vw, 58px);
  line-height: 1.08;
  letter-spacing: -.025em;
  color: var(--ink-900);
}
.sponsor-hero__photo {
  width: 100%;
  max-width: 460px;
  border: 14px solid #fff;
  border-bottom-width: 54px;
  box-shadow: 0 22px 48px rgba(42,35,31,.22);
  transform: rotate(-2deg);
  object-fit: cover;
  aspect-ratio: 4 / 3;
}
.sponsor-step { background: #fff; border: 1px solid #EBE4D8; border-radius: var(--radius-lg); padding: 32px 28px; }
.sponsor-step__n {
  font-family: var(--font-display);
  font-weight: var(--fw-extrabold);
  font-size: 15px;
  letter-spacing: .1em;
  color: var(--gold-section);
}
.sponsor-step__title {
  margin: 14px 0 0;
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: 20px;
  letter-spacing: var(--ls-tight);
  color: var(--ink-900);
}
.sponsor-step__body { margin: 10px 0 0; font-size: 15px; line-height: 1.62; color: var(--ink-600); }

.faq { display: flex; flex-direction: column; gap: 14px; }
.faq__item {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 14px;
  overflow: hidden;
}
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 26px;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: 18px;
  color: #fff;
  transition: background var(--dur-base) var(--ease-out);
}
.faq__q:hover { background: rgba(255,255,255,.1); }
.faq__sign { color: var(--gold-section); font-size: 22px; line-height: 1; }
.faq__a {
  margin: 0;
  padding: 0 26px 22px;
  font-size: 16px;
  line-height: 1.68;
  color: rgba(255,255,255,.82);
  max-width: 62ch;
}
.faq__a[hidden] { display: none; }
.faq-title {
  margin: 0 0 34px;
  font-family: var(--font-display);
  font-weight: var(--fw-extrabold);
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing: var(--ls-tighter);
  color: #fff;
  text-align: center;
}

/* ============================================================
   Give
   ============================================================ */
.give-panel {
  background: #fff;
  border: 1px solid #EBE4D8;
  border-radius: 24px;
  padding: 38px 36px 40px;
  box-shadow: 0 18px 44px rgba(42,35,31,.12);
}
.assurances { margin-top: 36px; display: flex; flex-direction: column; gap: 18px; }
.assurance { display: flex; gap: 14px; align-items: flex-start; }
.assurance__tick {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: var(--radius-pill);
  background: var(--gold-50);
  color: var(--gold-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: var(--fw-bold);
}
.assurance__title { font-weight: var(--fw-bold); font-size: 16px; color: var(--ink-900); }
.assurance__body { font-size: 15px; line-height: 1.6; color: var(--ink-600); margin-top: 3px; }

.segmented {
  display: flex;
  background: var(--sand-soft);
  border-radius: var(--radius-pill);
  padding: 5px;
  gap: 4px;
}
.segmented__btn {
  flex: 1;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: var(--fw-bold);
  height: 44px;
  border: 0;
  border-radius: var(--radius-pill);
  cursor: pointer;
  background: transparent;
  color: var(--ink-600);
  transition: background var(--dur-base) var(--ease-out), color var(--dur-base) var(--ease-out);
}
.segmented__btn[aria-pressed="true"] { background: var(--kapatid-navy); color: #fff; }

.amount-grid { margin-top: 14px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.amount-chip {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: var(--fw-bold);
  height: 52px;
  border-radius: var(--radius-md);
  cursor: pointer;
  border: 2px solid var(--taupe-200);
  background: #fff;
  color: var(--ink-700);
  transition: border-color var(--dur-base) var(--ease-out), background var(--dur-base) var(--ease-out), color var(--dur-base) var(--ease-out);
}
.amount-chip[aria-pressed="true"] {
  border-color: var(--kapatid-coral);
  background: var(--red-50);
  color: var(--kapatid-coral);
}

.designations { margin-top: 14px; display: flex; flex-direction: column; gap: 10px; }
.designation {
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 15.5px;
  font-weight: var(--fw-semibold);
  padding: 14px 18px;
  border-radius: var(--radius-md);
  cursor: pointer;
  border: 2px solid var(--taupe-200);
  background: #fff;
  color: var(--ink-900);
  transition: border-color var(--dur-base) var(--ease-out), background var(--dur-base) var(--ease-out);
}
.designation__dot {
  width: 18px; height: 18px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--taupe-200);
  background: transparent;
  flex-shrink: 0;
  display: inline-block;
}
.designation[aria-pressed="true"] { border-color: var(--kapatid-coral); background: var(--red-50); }
.designation[aria-pressed="true"] .designation__dot { border-color: var(--kapatid-coral); background: var(--kapatid-coral); }

.name-row { margin-top: 26px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.name-row .input { height: 50px; font-size: 15px; padding: 0 16px; }

.success { text-align: center; padding: 26px 0; }
.success__mark { font-size: 40px; }
.success__title {
  margin: 18px 0 0;
  font-family: var(--font-display);
  font-weight: var(--fw-extrabold);
  font-size: 28px;
  color: var(--ink-900);
}
.success__body { margin: 14px 0 0; font-size: 16.5px; line-height: 1.65; color: var(--ink-600); }

/* ============================================================
   Annual report
   ============================================================ */
.report-hero__title {
  margin: 0;
  max-width: 18ch;
  font-family: var(--font-display);
  font-weight: var(--fw-extrabold);
  font-size: clamp(40px, 5.2vw, 68px);
  line-height: 1.06;
  letter-spacing: -.03em;
  color: #fff;
}
.report-hero__lede { margin: 24px 0 0; max-width: 56ch; font-size: 19px; line-height: 1.66; color: rgba(255,255,255,.88); }
.report-hero__note {
  margin-top: 30px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  background: rgba(230,161,78,.18);
  border: 1px solid rgba(230,161,78,.5);
  font-size: 13.5px;
  font-weight: var(--fw-semibold);
  color: var(--gold-section);
}
.letter p { margin: 0 0 20px; font-size: 20px; line-height: 1.72; color: var(--ink-700); text-wrap: pretty; }
.letter p:first-of-type { margin-top: 0; }
.letter__sign { margin-top: 26px; font-family: var(--font-script); font-size: 30px; color: var(--kapatid-coral); }

.section-title {
  margin: 0 0 44px;
  font-family: var(--font-display);
  font-weight: var(--fw-extrabold);
  font-size: clamp(28px, 3.2vw, 42px);
  letter-spacing: var(--ls-tighter);
  color: var(--ink-900);
}
.section-title--tight { margin-bottom: 12px; }

.spend { display: flex; flex-direction: column; gap: 22px; }
.spend__head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 10px; }
.spend__label { font-weight: var(--fw-bold); font-size: 16.5px; color: var(--ink-900); }
.spend__pct { font-weight: var(--fw-bold); font-size: 16.5px; }
.spend__track { height: 14px; border-radius: var(--radius-pill); background: #EBE4D8; overflow: hidden; }
.spend__bar { height: 100%; border-radius: var(--radius-pill); }
.actions { margin-top: 44px; display: flex; flex-wrap: wrap; gap: 14px; }

/* ============================================================
   Contact
   ============================================================ */
.contact-panel {
  background: #fff;
  border: 1px solid #EBE4D8;
  border-radius: 24px;
  padding: 38px 36px 40px;
  box-shadow: 0 12px 32px rgba(42,35,31,.1);
}
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.contact-form__title {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-weight: var(--fw-extrabold);
  font-size: 24px;
  color: var(--ink-900);
}
.contact-details { margin-top: 38px; display: flex; flex-direction: column; gap: 22px; }
.contact-details__label {
  font-size: 11px;
  font-weight: var(--fw-bold);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--taupe-500);
  margin-bottom: 8px;
}
.contact-details__value { font-size: 17px; line-height: 1.7; color: var(--ink-900); }
.contact-details__value a { color: var(--ink-900); }
.contact-details__value a:hover { color: var(--kapatid-coral); }

/* ============================================================
   Article & video detail
   ============================================================ */
.article-hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  background: var(--kapatid-navy);
}
.article-hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.article-hero__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,58,92,.25) 20%, rgba(11,58,92,.92) 100%); }
.article-hero__inner {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 clamp(28px, 6vw, 88px) 60px;
  width: 100%;
}
.back-link {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: var(--fw-bold);
  color: rgba(255,255,255,.8);
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  margin-bottom: 22px;
  display: inline-block;
}
.back-link:hover { color: var(--gold-section); }
.article-hero__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-bottom: 18px; }
.article-hero__date {
  font-size: 13.5px;
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
}
.article-hero__title {
  margin: 0;
  max-width: 20ch;
  font-family: var(--font-display);
  font-weight: var(--fw-extrabold);
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.08;
  letter-spacing: -.025em;
  color: #fff;
  text-wrap: balance;
}
.article-body__lede { margin: 0 0 26px; font-size: 21px; line-height: 1.68; color: var(--ink-900); text-wrap: pretty; }
.article-body p { margin: 0 0 22px; font-size: 18.5px; line-height: 1.78; color: var(--ink-700); text-wrap: pretty; }
.article-rich h2, .article-rich h3, .article-rich h4 { margin: 40px 0 16px; color: var(--ink-900); line-height: 1.2; }
.article-rich h2 { font-size: clamp(27px, 3vw, 36px); }
.article-rich h3 { font-size: 25px; }
.article-rich ul, .article-rich ol { margin: 0 0 24px; padding-left: 1.5rem; color: var(--ink-700); font-size: 18px; line-height: 1.7; }
.article-rich blockquote { margin: 32px 0; padding: 8px 0 8px 24px; border-left: 4px solid var(--kapatid-gold); color: var(--ink-900); font-size: 21px; line-height: 1.6; }
.article-rich figure { margin: 34px 0; }
.article-rich img { display: block; width: 100%; height: auto; max-height: 760px; object-fit: contain; border-radius: var(--radius-lg); }
.article-rich figcaption { margin-top: 10px; color: var(--ink-600); font-size: 14px; line-height: 1.5; text-align: center; }
.article-rich a { color: var(--kapatid-blue); text-decoration: underline; text-underline-offset: 3px; }
.article-pull {
  margin: 38px 0;
  padding: 26px 30px;
  border-left: 4px solid var(--gold-section);
  background: var(--sand-soft);
  border-radius: 0 14px 14px 0;
  font-family: var(--font-script);
  font-size: 28px;
  line-height: 1.4;
  color: var(--kapatid-navy);
}
.article-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  padding-top: 30px;
  border-top: 1px solid #E5DFD2;
}
.article-foot__by { font-size: 15px; color: var(--taupe-600); }
.article-foot__by strong { color: var(--ink-900); }
.article-foot__actions { margin-left: auto; display: flex; flex-wrap: wrap; gap: 12px; }

.related-card .card__media { aspect-ratio: 16 / 10; }
.related-card__body { padding: 20px 22px 24px; }
.related-card__date {
  font-size: 12px;
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--taupe-500);
}
.related-card__title {
  margin: 10px 0 0;
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: 19px;
  line-height: 1.3;
  color: var(--ink-900);
}

.video-stage {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  box-shadow: 0 24px 60px rgba(0,0,0,.34);
  background: var(--kapatid-navy);
  width: 100%;
  border: 0;
  padding: 0;
  cursor: pointer;
  display: block;
}
.video-stage img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.video-stage__scrim { position: absolute; inset: 0; background: rgba(11,58,92,.34); }
.video-stage__len {
  position: absolute;
  right: 16px; bottom: 16px;
  font-size: 13px;
  font-weight: var(--fw-bold);
  color: #fff;
  background: rgba(0,0,0,.5);
  padding: 6px 12px;
  border-radius: 8px;
}
.video-meta { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 26px; align-items: flex-start; }
.video-meta__main { flex: 1 1 420px; min-width: 0; }
.video-meta__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: var(--fw-extrabold);
  font-size: clamp(30px, 3.8vw, 46px);
  line-height: 1.1;
  letter-spacing: -.025em;
  color: #fff;
}
.video-meta__blurb { margin: 18px 0 0; font-size: 18.5px; line-height: 1.7; color: rgba(255,255,255,.86); max-width: 58ch; text-wrap: pretty; }
.video-meta__actions { flex: 0 1 260px; display: flex; flex-direction: column; gap: 12px; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--kapatid-navy); color: rgba(255,255,255,.82); padding: 72px 0 40px; }
.site-footer__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 44px; }
.site-footer__brand { display: flex; align-items: center; gap: 12px; }
.site-footer__logo { background: #fff; border-radius: var(--radius-pill); padding: 8px; display: inline-flex; }
.site-footer__logo img { height: 42px; width: auto; display: block; }
.site-footer__name {
  font-family: var(--font-display);
  font-weight: var(--fw-extrabold);
  font-size: 17px;
  color: #fff;
  letter-spacing: var(--ls-tighter);
}
.site-footer p { margin: 20px 0 0; font-size: 15px; line-height: 1.7; max-width: 34ch; }
.site-footer__heading {
  font-size: 11px;
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--gold-section);
  margin-bottom: 18px;
}
.site-footer__links { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.site-footer__links a {
  font-size: 15px;
  font-weight: var(--fw-medium);
  color: rgba(255,255,255,.82);
}
.site-footer__links a:hover { color: var(--gold-section); }
.site-footer__contact p { margin: 0; font-size: 15px; line-height: 1.8; }
.site-footer__contact p + p { margin-top: 16px; }
.site-footer__contact a { color: rgba(255,255,255,.82); }
.site-footer__contact a:hover { color: var(--gold-section); }
.site-footer__bottom {
  margin-top: 56px;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,.16);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  font-size: 13.5px;
  color: rgba(255,255,255,.6);
}
.site-footer__creed {
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  font-weight: var(--fw-semibold);
  color: var(--gold-section);
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 900px) {
  .site-header__inner { height: 72px; gap: 16px; }
  .nav-toggle { display: flex; }

  .nav {
    position: fixed;
    inset: 72px 0 auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 12px clamp(20px, 6vw, 40px) 28px;
    background: #fff;
    border-bottom: 1px solid #E5DFD2;
    box-shadow: var(--shadow-lg);
    max-height: calc(100vh - 72px);
    overflow-y: auto;
  }
  .nav[hidden] { display: none; }
  .nav__link { width: 100%; justify-content: space-between; padding: 14px 4px; font-size: 17px; }
  .menu {
    position: static;
    width: 100%;
    border: 0;
    box-shadow: none;
    padding: 0 0 8px 12px;
    animation: none;
  }
  .nav__cta { margin: 16px 0 0; }
  .nav__cta .btn { width: 100%; }

  .section { padding: 68px 0; }
  .split { gap: 40px; }
  .hero { min-height: 520px; }
  .hero__inner { padding-bottom: 56px; }
  .feature__body { padding: 34px 28px; }
  .ministry-detail__body { padding: 32px 28px; }
  .map-frame { height: 420px; }
  .article-foot__actions { margin-left: 0; }
}

@media (max-width: 620px) {
  .section { padding: 56px 0; }
  .hero__actions .btn,
  .newsletter__input { width: 100%; }
  .newsletter__form .btn { width: 100%; }
  .polaroid-pair { gap: 12px; }
  .polaroid, .about-hero .polaroid { border-width: 8px; border-bottom-width: 30px; }
  .give-panel, .contact-panel { padding: 28px 22px 30px; }
  .name-row { grid-template-columns: 1fr; }
  .amount-grid { grid-template-columns: repeat(2, 1fr); }
  .announce__inner { padding: 22px clamp(20px, 6vw, 40px); }
  .announce__text { font-size: 16px; }
  .feature { min-height: 400px; }
  .video-meta__actions { flex: 1 1 100%; }
  .site-footer__bottom { flex-direction: column; }
}

@media print {
  .site-header, .site-footer, .nav-toggle, .skip-link { display: none !important; }
  body { background: #fff; }
}

