/* ==========================================================================
   CCCI — Layout Guide
   Shared stylesheet for all pages (Home, About, Partnership, Church Planting,
   Nations & Missions, Resources & Events)
   ========================================================================== */

:root {
  /* Color — per CCCi brand brief: Orange + Charcoal + White + Warm Grey */
  --color-primary: #F36A21;
  --color-primary-dark: #D6570F;
  --color-primary-light: #FCE7D8;
  --color-dark: #171717;
  --color-dark-soft: #232323;
  --color-ink: #171717;
  --color-ink-muted: #6B6B6B;
  --color-ink-faint: #8F8F8F;
  --color-bg: #FFFFFF;
  --color-bg-alt: #F4F2EF;
  --color-border: #E5E1DA;
  --color-border-dark: #2E2E2E;
  --color-white: #FFFFFF;
  --color-placeholder: #E0E0E0;
  --color-placeholder-icon: #BDBDBD;

  /* Type */
  --font-heading: "Poppins", "Helvetica Neue", Arial, sans-serif;
  --font-display: "Anton", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;
  --font-script: "Brush Script MT", "Segoe Script", cursive;

  /* Spacing */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 999px;

  /* Layout */
  --container-width: 1180px;
  --container-pad: 24px;

  /* Shadow */
  --shadow-sm: 0 1px 2px rgba(20, 24, 29, 0.06);
  --shadow-md: 0 8px 24px rgba(20, 24, 29, 0.08);
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--color-ink);
}

p {
  margin: 0;
}

/* ------------------------------ Layout ------------------------------ */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.section {
  padding: 20px 0;
}

.section--tight {
  padding: 20px 0;
}

.section--60 {
  padding: 60px 0;
}

.section--20 {
  padding: 20px 0;
}

.section--flush {
  padding-top: 0;
  padding-bottom: 0;
}

.section--alt {
  background: var(--color-bg-alt);
}

.section--dark {
  background: var(--color-dark);
  color: var(--color-white);
}

.section--dark h2,
.section--dark h3 {
  color: var(--color-white);
}

.section-head {
  text-align: center;
  margin-bottom: var(--space-12);
}

.section-head--left {
  text-align: left;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-3);
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.section-title--rule {
  position: relative;
  padding-bottom: var(--space-4);
}

.section-title--rule::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 56px;
  height: 3px;
  background: var(--color-primary);
}

.section-head .section-title--rule::after {
  left: 50%;
  transform: translateX(-50%);
}

.section-head.section-head--left .section-title--rule::after {
  left: 0;
  transform: none;
}

.section-sub {
  margin-top: var(--space-3);
  color: var(--color-ink-muted);
  font-size: 16px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.section-head--left .section-sub {
  margin-left: 0;
  margin-right: 0;
}

/* ------------------------------ Buttons ------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}

.btn--primary {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn--primary:hover {
  background: var(--color-primary-dark);
}

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

.btn--outline-dark:hover {
  background: rgba(255, 255, 255, 0.08);
}

.btn--outline {
  background: transparent;
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.btn--outline:hover {
  background: var(--color-primary-light);
}

.btn--sm {
  padding: 9px 18px;
  font-size: 14px;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

/* ------------------------------ Icons ------------------------------ */
.icon {
  width: 28px;
  height: 28px;
  stroke: var(--color-primary);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.icon--solid {
  fill: var(--color-white);
  stroke: none;
}

.icon-circle .icon--solid {
  fill: var(--color-primary);
}

.icon-circle--filled .icon--solid {
  fill: var(--color-white);
}

.icon--sm {
  width: 20px;
  height: 20px;
}

.icon--lg {
  width: 36px;
  height: 36px;
}

.icon-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: var(--radius-full);
  background: var(--color-primary-light);
  margin-bottom: var(--space-4);
}

.icon-circle--filled {
  background: var(--color-primary);
}

.icon-circle--filled .icon {
  stroke: var(--color-white);
}

.icon-circle--sm {
  width: 48px;
  height: 48px;
}

.icon-circle--dark {
  background: rgba(255, 255, 255, 0.08);
}

/* ------------------------------ Header ------------------------------ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  padding: var(--space-4) 0;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 22px;
  color: var(--color-ink);
  letter-spacing: -0.01em;
}

.nav__logo-img {
  height: 42px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  font-size: 15px;
  font-weight: 500;
}

.nav__links a {
  position: relative;
  padding: var(--space-2) 0;
  color: var(--color-ink);
}

.nav__links a:hover {
  color: var(--color-primary);
}

.nav__links a.is-active {
  color: var(--color-primary);
}

.nav__links a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--color-primary);
}

.nav__toggle {
  display: none;
  background: none;
  border: none;
  padding: var(--space-2);
  cursor: pointer;
}

.nav__toggle .icon {
  stroke: var(--color-ink);
  width: 26px;
  height: 26px;
}

/* ------------------------------ Hero ------------------------------ */
.hero {
  position: relative;
  background: var(--color-dark);
  color: var(--color-white);
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  align-items: center;
  gap: var(--space-10);
  padding: var(--space-20) 0;
  position: relative;
  z-index: 2;
}

.hero__eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-4);
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 48px;
  line-height: 1.08;
  text-transform: uppercase;
  color: var(--color-white);
  letter-spacing: 0.01em;
}

.hero__text {
  margin-top: var(--space-5);
  font-size: 16.5px;
  color: rgba(255, 255, 255, 0.82);
  max-width: 460px;
  line-height: 1.65;
}

.hero__text + .hero__text {
  margin-top: var(--space-3);
}

.hero__actions {
  margin-top: var(--space-8);
}

.hero__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 6 / 5;
}

.hero__media--single {
  aspect-ratio: 4 / 3;
}

.hero__media-collage {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 6px;
  width: 100%;
  height: 100%;
}

.hero__media-collage .placeholder-img {
  border-radius: 0;
  height: 100%;
}

.hero__media-collage .placeholder-img:first-child {
  grid-row: 1 / 3;
}

.hero--photo {
  min-height: 460px;
}

.hero__bg-photo {
  position: absolute;
  top: 0;
  right: 0;
  width: 52%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero__bg-photo--right {
  object-position: right;
}

.hero__bg-photo-fade {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 52%;
  z-index: 1;
  background: linear-gradient(90deg, var(--color-dark) 0%, rgba(23, 23, 23, 0.7) 14%, rgba(23, 23, 23, 0) 42%);
  pointer-events: none;
}

/* ------------------------------ Placeholder image ------------------------------ */
.placeholder-img {
  position: relative;
  width: 100%;
  background: var(--color-placeholder);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.placeholder-img::before {
  content: "";
  width: 34%;
  max-width: 56px;
  aspect-ratio: 1;
  background-color: var(--color-placeholder-icon);
  opacity: 0.6;
  -webkit-mask-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='3' width='18' height='18' rx='2'/%3E%3Ccircle cx='8.5' cy='8.5' r='1.5'/%3E%3Cpath d='M21 15l-5-5L5 21'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='3' width='18' height='18' rx='2'/%3E%3Ccircle cx='8.5' cy='8.5' r='1.5'/%3E%3Cpath d='M21 15l-5-5L5 21'/%3E%3C/svg%3E");
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
}

.placeholder-img--1x1 { aspect-ratio: 1 / 1; }
.placeholder-img--4x3 { aspect-ratio: 4 / 3; }
.placeholder-img--16x9 { aspect-ratio: 16 / 9; }
.placeholder-img--3x2 { aspect-ratio: 3 / 2; }
.placeholder-img--tall { aspect-ratio: 3 / 4; }

.placeholder-img__label {
  position: absolute;
  left: var(--space-3);
  bottom: var(--space-3);
  right: var(--space-3);
  color: var(--color-white);
  font-weight: 700;
  font-size: 15px;
  z-index: 2;
  text-shadow: 0 1px 6px rgba(0,0,0,0.35);
}

.placeholder-img--overlay {
  background: linear-gradient(180deg, rgba(23,23,23,0) 45%, rgba(23,23,23,0.55) 100%), var(--color-placeholder);
}

.placeholder-img--overlay::before {
  opacity: 0.35;
}

/* ------------------------------ Grids ------------------------------ */
.grid {
  display: grid;
  gap: var(--space-6);
}

.grid > * {
  min-width: 0;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }
.grid-6 { grid-template-columns: repeat(6, 1fr); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

/* ------------------------------ Cards ------------------------------ */
.card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-8) var(--space-6);
}

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

.card--center .icon-circle {
  margin-left: auto;
  margin-right: auto;
}

.card--center .icon-circle:not(.icon-circle--filled) {
  background: none;
  width: 64px;
  height: 64px;
}

.card--center .icon-circle:not(.icon-circle--filled) .icon {
  width: 64px;
  height: 64px;
}

.card__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: var(--space-2);
  overflow-wrap: break-word;
}

.card__text {
  font-size: 14.5px;
  color: var(--color-ink-muted);
  line-height: 1.6;
}

.card--flat {
  background: var(--color-bg-alt);
  border: none;
}

/* ------------------------------ Feature split / vision-mission ------------------------------ */
.feature-pair {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: var(--space-10);
  align-items: start;
}

.feature-pair__divider {
  background: var(--color-border);
  height: 100%;
}

.feature-item {
  display: flex;
  gap: var(--space-5);
  align-items: flex-start;
}

.feature-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: var(--color-bg-alt);
  flex-shrink: 0;
}

.feature-item__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--space-2);
}

.feature-item__text {
  color: var(--color-ink-muted);
  font-size: 15px;
}

.pillars {
  display: flex;
  justify-content: center;
  gap: var(--space-16);
  margin-top: var(--space-10);
  padding-top: var(--space-10);
  border-top: 1px solid var(--color-border);
  flex-wrap: wrap;
}

.pillar {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-weight: 600;
  font-size: 15px;
}

.pillar .icon-circle {
  width: 40px;
  height: 40px;
  margin-bottom: 0;
}

.pillar .icon {
  width: 20px;
  height: 20px;
}

/* ------------------------------ CTA path cards (Where do you start) ------------------------------ */
.path-card {
  display: flex;
  gap: var(--space-5);
  align-items: flex-start;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-8) var(--space-6);
  box-shadow: var(--shadow-sm);
}

.path-card .icon-circle {
  margin-bottom: 0;
  flex-shrink: 0;
  background: none;
  width: 64px;
  height: 64px;
}

.path-card .icon-circle .icon {
  width: 64px;
  height: 64px;
}

.path-card__body {
  flex: 1;
  min-width: 0;
}

.path-card__title {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 var(--space-2);
}

.path-card__text {
  font-size: 14.5px;
  color: var(--color-ink-muted);
  margin-bottom: var(--space-6);
}

/* ------------------------------ Timeline / pathway steps ------------------------------ */
.timeline {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-5);
  position: relative;
}

.timeline--5 { grid-template-columns: repeat(5, 1fr); }
.timeline--3 { grid-template-columns: repeat(3, 1fr); }

.timeline__step {
  text-align: center;
  position: relative;
}

.timeline__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--color-border);
  font-size: 13px;
  font-weight: 700;
  color: var(--color-ink-muted);
  margin-bottom: var(--space-4);
}

.timeline__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-3);
}

.timeline__title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: var(--space-2);
}

.timeline__text {
  font-size: 13.5px;
  color: var(--color-ink-muted);
  line-height: 1.55;
}

.timeline-connector {
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline-connector .icon {
  width: 16px;
  height: 16px;
  stroke: var(--color-border);
}

/* pathway cards variant (church planting / partnership) */
.pathway-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-6) var(--space-5);
  text-align: center;
  position: relative;
}

.pathway-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: var(--radius-full);
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: var(--space-4);
}

.pathway-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-4);
  align-items: stretch;
  position: relative;
}

/* ------------------------------ Dark stat band ------------------------------ */
.stat-band {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--space-10);
  align-items: center;
}

.stat-band__number {
  font-family: "Barlow Semi Condensed", var(--font-heading);
  font-weight: 800;
  font-size: 170px;
  line-height: 1;
  color: var(--color-primary);
}

.stat-band__title {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-3);
}

.stat-band__text {
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  max-width: 520px;
  margin-bottom: var(--space-5);
}

.stat-band__tags {
  display: flex;
  gap: var(--space-6);
  flex-wrap: wrap;
  margin-bottom: 0;
}

.stat-band__cta {
  flex-shrink: 0;
  white-space: nowrap;
  align-self: end;
}

.stat-band__tag {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--color-white);
}

.stat-band__tag .icon {
  width: 18px;
  height: 18px;
}

/* ------------------------------ Photo grid strips ------------------------------ */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-4);
}

.photo-strip__item {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-placeholder);
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  font: inherit;
  display: block;
  width: 100%;
}

.photo-strip__item:hover img {
  transform: scale(1.04);
}

.photo-strip__item img {
  transition: transform 0.2s ease;
}

.photo-strip__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-strip__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23, 23, 23, 0) 45%, rgba(23, 23, 23, 0.55) 100%);
}

.photo-strip--tall .placeholder-img {
  aspect-ratio: 3 / 4;
}

.photo-card {
  border-radius: var(--radius-md);
  overflow: hidden;
}

/* mission-in-action cards with caption below image */
.story-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-white);
}

.story-card__body {
  padding: var(--space-5);
}

.story-card__title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: var(--space-2);
}

.story-card__text {
  font-size: 13.5px;
  color: var(--color-ink-muted);
  margin-bottom: var(--space-4);
}

.story-card__link {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
}

.story-card--dark {
  background: var(--color-dark);
  color: var(--color-white);
}

.story-card__tag {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 4px;
  z-index: 2;
}

.story-card__media {
  position: relative;
}

.story-card__caption {
  position: absolute;
  left: var(--space-4);
  bottom: var(--space-4);
  right: var(--space-4);
  z-index: 2;
}

.story-card__caption .story-card__title {
  color: var(--color-white);
  margin-bottom: var(--space-1);
}

.story-card__caption .story-card__text {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--space-2);
}

.story-card__caption .story-card__link {
  color: var(--color-white);
}

/* ------------------------------ Map / list section ------------------------------ */
.map-section {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: var(--space-12);
  align-items: stretch;
}

.map-section__mapcol {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--color-white);
  width: calc(100% + var(--space-12));
}

.map-section--flush .map-section__mapcol {
  border-radius: 0;
}

.map-section--flush .country-list {
  padding: var(--space-20) 0 var(--space-20) var(--space-6);
}

.map-section__overlay {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-8) var(--space-8) var(--space-6);
}

.map-section__stat {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 22px;
  color: var(--color-primary);
  margin-top: var(--space-2);
}

.map-section__photo {
  width: 100%;
  height: auto;
  display: block;
}

.country-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4) var(--space-3);
  font-size: 14px;
  align-content: center;
}

.country-list li {
  display: flex;
  align-items: baseline;
  gap: var(--space-2);
}

.country-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-primary);
  flex-shrink: 0;
  transform: translateY(-2px);
}


/* ------------------------------ Resource / doc lists ------------------------------ */
.doc-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-6);
}

.doc-card__title {
  font-size: 17px;
  font-weight: 700;
  margin: var(--space-4) 0 var(--space-4);
  text-align: center;
}

.doc-card__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
}

.doc-card__list li {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 14px;
  color: var(--color-ink);
}

.doc-card__list .icon {
  width: 16px;
  height: 16px;
  stroke: var(--color-primary);
}

.doc-card__link {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
}

.event-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-white);
}

.event-card__body {
  padding: var(--space-5);
}

.event-card__title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: var(--space-3);
}

.event-card__meta {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 13px;
  color: var(--color-ink-muted);
  margin-bottom: var(--space-2);
}

.event-card__meta .icon {
  width: 14px;
  height: 14px;
  stroke: var(--color-ink-muted);
}

.event-card__text {
  font-size: 13.5px;
  color: var(--color-ink-muted);
  margin: var(--space-3) 0 var(--space-4);
  line-height: 1.55;
}

.event-card__media {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.event-card__logo {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-4);
  text-align: center;
}

.event-card__logo-text {
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--color-white);
  font-size: 19px;
  line-height: 1.2;
  letter-spacing: 0.3px;
}

.event-card__logo--dark {
  background: radial-gradient(circle at 50% 35%, #3a3a3a 0%, var(--color-dark) 75%);
}

.event-card__logo--primary {
  background: radial-gradient(circle at 50% 35%, #ff9d5c 0%, var(--color-primary) 55%, var(--color-primary-dark) 100%);
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  margin-top: var(--space-12);
}

.pagination__btn {
  min-width: 36px;
  height: 36px;
  padding: 0 var(--space-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-white);
  color: var(--color-ink);
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}

.pagination__btn:hover:not(:disabled) {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.pagination__btn.is-active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}

.pagination__btn:disabled {
  opacity: .4;
  cursor: not-allowed;
}

.download-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-5);
}

.download-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.download-card__tag {
  font-size: 11px;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.04em;
}

.download-card__title {
  font-size: 15px;
  font-weight: 700;
  margin: var(--space-4) 0 var(--space-2);
}

.download-card__text {
  font-size: 13px;
  color: var(--color-ink-muted);
  margin-bottom: var(--space-4);
}

.download-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12.5px;
  color: var(--color-ink-faint);
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-3);
}

.download-card__foot .icon {
  width: 18px;
  height: 18px;
  stroke: var(--color-ink-muted);
}

/* ------------------------------ People / leadership ------------------------------ */
.people-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

.person-card {
  text-align: left;
}

.person-card .placeholder-img {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-3);
  width: 88px;
}

.person-card__name {
  font-size: 15px;
  font-weight: 700;
}

.person-card__role {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-primary);
  margin-top: 2px;
}

.person-card__role--muted {
  color: var(--color-ink-faint);
}

.leader-banner {
  display: grid;
  grid-template-columns: 0.8fr 1.6fr;
  gap: var(--space-10);
  align-items: center;
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
}

.leader-banner .placeholder-img {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-md);
}

.leader-banner__title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: var(--space-3);
}

.leader-banner__text {
  color: var(--color-ink-muted);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: var(--space-4);
}

.leader-banner__sig {
  font-family: "Poppins", cursive;
  font-style: italic;
  font-size: 22px;
  color: var(--color-ink);
  margin-bottom: var(--space-1);
}

.leader-banner__name {
  font-weight: 700;
  font-size: 14.5px;
}

.leader-banner__role {
  font-size: 13px;
  color: var(--color-ink-muted);
}

/* ------------------------------ Split media section (dark decorative) ------------------------------ */
.media-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

.media-split--flush {
  align-items: stretch;
}

.media-split--flush .placeholder-img {
  height: 100%;
  aspect-ratio: auto;
  border-radius: 0;
}

.media-split--flush .media-split__photo {
  height: 100%;
  border-radius: 0;
}

.media-split__photo {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius-md);
  display: block;
}

.media-split--flush .media-split__col {
  padding: var(--space-20) 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.media-split--40-60 {
  grid-template-columns: 40% 60%;
}

.media-split--40-60 .media-split__col {
  padding: 40px 0;
}

.media-split__title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: var(--space-4);
}

.media-split__text {
  color: var(--color-ink-muted);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: var(--space-6);
}

.media-split__tags {
  display: flex;
  gap: var(--space-8);
  flex-wrap: wrap;
}

.tag-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 14px;
  font-weight: 600;
}

.tag-item .icon-circle {
  width: 40px;
  height: 40px;
  margin-bottom: 0;
}

.tag-item .icon {
  width: 18px;
  height: 18px;
}

/* ------------------------------ Final CTA band ------------------------------ */
.cta-band {
  position: relative;
  background: var(--color-dark);
  color: var(--color-white);
  overflow: hidden;
}

.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
  padding: var(--space-12) 0;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.cta-band__inner--20 {
  padding: 20px 0;
}

.cta-band__content {
  display: flex;
  align-items: center;
  gap: var(--space-5);
}

.cta-band__title {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-2);
}

.cta-band__text {
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  max-width: 460px;
}

.cta-band--photo {
  background: var(--color-placeholder);
}

.cta-band--photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-dark);
  opacity: 0.85;
  z-index: 1;
}

.cta-band__actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

/* ------------------------------ Footer ------------------------------ */
.site-footer {
  background: var(--color-dark);
  color: rgba(255, 255, 255, 0.75);
  padding-top: var(--space-16);
}

.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: var(--space-10);
  padding-bottom: var(--space-12);
}

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

.footer__logo {
  display: block;
  margin-bottom: var(--space-4);
}

.footer__logo-img {
  height: 34px;
  width: auto;
  display: block;
}

.footer__text {
  font-size: 14px;
  line-height: 1.6;
  max-width: 280px;
}

.footer__social {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-5);
}

.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.footer__social .icon {
  width: 16px;
  height: 16px;
  stroke: var(--color-white);
}

.footer__heading {
  color: var(--color-white);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: var(--space-4);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  font-size: 14px;
}

.footer__links a:hover {
  color: var(--color-white);
}

.footer__links a.is-active {
  color: var(--color-primary);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: var(--space-5) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.footer__bottom-links {
  display: flex;
  gap: var(--space-5);
}

/* ------------------------------ Utilities ------------------------------ */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-5 { grid-template-columns: repeat(3, 1fr); }
  .grid-6 { grid-template-columns: repeat(3, 1fr); }
  .people-grid { grid-template-columns: repeat(2, 1fr); }
  .photo-strip { grid-template-columns: repeat(3, 1fr); }
  .timeline { grid-template-columns: repeat(3, 1fr); }
  .timeline-connector { display: none; }
  .pathway-row { grid-template-columns: repeat(3, 1fr); }
  .country-list { grid-template-columns: repeat(3, 1fr); }
  .stat-band__number { font-size: 76px; }
}

@media (max-width: 860px) {
  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    padding: var(--space-2) var(--space-6) var(--space-4);
    box-shadow: var(--shadow-md);
  }
  .nav__links.is-open { display: flex; }
  .nav__links a { padding: var(--space-3) 0; }
  .nav__links a.is-active::after { display: none; }
  .nav__toggle { display: inline-flex; }
  .hero__grid { grid-template-columns: 1fr; padding: var(--space-10) 10px; }
  .hero__title { font-size: 34px; }
  .hero__text { max-width: none; }
  .hero--photo {
    min-height: 560px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  .hero__bg-photo,
  .hero__bg-photo-fade { width: 100%; }
  .hero__bg-photo--right { object-position: center; }
  .hero__bg-photo-fade {
    background: linear-gradient(180deg, rgba(23, 23, 23, 0) 0%, rgba(23, 23, 23, 0.4) 55%, var(--color-dark) 100%);
  }
  .split,
  .media-split,
  .map-section,
  .leader-banner,
  .feature-pair {
    grid-template-columns: 1fr;
  }
  .feature-pair__divider { display: none; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .stat-band { grid-template-columns: 1fr; text-align: center; }
  .stat-band__tags,
  .stat-band__actions { justify-content: center; }
  .cta-band__inner { flex-direction: column; text-align: center; }
  .cta-band__content { flex-direction: column; }
}

@media (max-width: 640px) {
  .section { padding: var(--space-16) 0; }
  .section-title { font-size: 26px; }
  .hero__title { font-size: 28px; }
  .grid-2,
  .grid-3,
  .grid-4,
  .grid-5,
  .grid-6,
  .timeline,
  .pathway-row { grid-template-columns: 1fr; }
  .people-grid { grid-template-columns: repeat(2, 1fr); }
  .photo-strip { grid-template-columns: repeat(2, 1fr); }
  .country-list { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .stat-band__number { font-size: 60px; }
  .leader-banner { padding: var(--space-6); }
  .leader-banner .placeholder-img { width: 120px; margin: 0 auto; }
  .path-card { flex-direction: column; align-items: center; text-align: center; }
  .path-card .icon-circle { margin: 0 auto; }
  .path-card .btn { white-space: normal; width: 100%; text-align: center; }
}

@media (max-width: 480px) {
  .nav { gap: var(--space-2); }
  .nav__logo-img { height: 30px; }
  .nav [data-contact-open] { padding: 8px 14px; font-size: 13px; }
  .nav__toggle { padding: var(--space-1); }
  .nav__toggle .icon { width: 22px; height: 22px; }
}

/* ==========================================================================
   Contact modal
   ========================================================================== */
body.modal-open {
  overflow: hidden;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
}

.modal.is-open {
  display: block;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(23, 23, 23, 0.6);
}

.modal__dialog {
  position: relative;
  width: calc(100% - 32px);
  max-width: 480px;
  margin: 8vh auto;
  max-height: 84vh;
  overflow-y: auto;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  box-shadow: var(--shadow-md);
}

.modal__close {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  background: none;
  border: none;
  padding: var(--space-2);
  cursor: pointer;
  line-height: 0;
}

.modal__close .icon {
  width: 22px;
  height: 22px;
  stroke: var(--color-ink-muted);
}

.modal__title {
  font-size: 24px;
  margin-bottom: var(--space-2);
}

.modal__sub {
  color: var(--color-ink-muted);
  font-size: 14.5px;
  line-height: 1.6;
  margin-bottom: var(--space-6);
}

.modal__dialog--gallery {
  max-width: 820px;
}

.slideshow {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.slideshow__stage {
  position: relative;
  flex: 1;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-placeholder);
}

.slideshow__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slideshow__counter {
  position: absolute;
  right: var(--space-3);
  bottom: var(--space-3);
  background: rgba(23, 23, 23, 0.65);
  color: var(--color-white);
  font-size: 12px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 999px;
}

.slideshow__nav {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.slideshow__nav .icon {
  width: 20px;
  height: 20px;
  stroke: var(--color-ink);
}

.slideshow__nav:hover {
  background: var(--color-placeholder);
}

.slideshow__thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-4);
}

.slideshow__thumb {
  width: 64px;
  height: 48px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  padding: 0;
  cursor: pointer;
  opacity: 0.6;
}

.slideshow__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slideshow__thumb:hover {
  opacity: 0.85;
}

.slideshow__thumb.is-active {
  border-color: var(--color-primary);
  opacity: 1;
}

@media (max-width: 640px) {
  .modal__dialog--gallery {
    width: 100%;
    max-width: 100%;
    height: 100%;
    max-height: 100%;
    margin: 0;
    border-radius: 0;
    padding: var(--space-4) 0 var(--space-6);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .modal__dialog--gallery .modal__title,
  .modal__dialog--gallery .modal__close {
    padding-left: var(--space-4);
    padding-right: var(--space-4);
  }
  .modal__dialog--gallery .modal__close { padding: var(--space-2); }

  .slideshow { position: relative; gap: 0; margin-top: var(--space-3); }
  .slideshow__stage { width: 100%; border-radius: 0; aspect-ratio: 4 / 5; }
  .slideshow__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    z-index: 2;
    background: rgba(255, 255, 255, 0.9);
  }
  .slideshow__nav .icon { width: 18px; height: 18px; }
  .slideshow__nav--prev { left: var(--space-3); }
  .slideshow__nav--next { right: var(--space-3); }

  .slideshow__thumbs {
    justify-content: center;
    align-items: center;
    gap: var(--space-2);
    margin-top: var(--space-4);
  }
  .slideshow__thumb {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    padding: 0;
    border: none;
    background: var(--color-border);
    opacity: 1;
  }
  .slideshow__thumb img { display: none; }
  .slideshow__thumb.is-active {
    background: var(--color-primary);
    width: 9px;
    height: 9px;
  }
}

.form-row {
  margin-bottom: var(--space-4);
}

.form-row label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--color-ink);
  margin-bottom: var(--space-2);
}

.form-optional {
  color: var(--color-ink-faint);
  font-weight: 400;
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--color-ink);
  background: var(--color-white);
}

.form-row textarea {
  resize: vertical;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--color-primary);
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.contact-form__submit {
  width: 100%;
  margin-top: var(--space-2);
}

.contact-form__status {
  margin-top: var(--space-3);
  font-size: 13.5px;
  text-align: center;
  min-height: 1.2em;
}

.contact-form__status.is-error {
  color: #B3261E;
}

.contact-form__status.is-success {
  color: #1E7A34;
}

@media (max-width: 480px) {
  .modal__dialog { padding: var(--space-6); margin-top: 6vh; }
}
