:root {
  /* Brand palette */
  --ink: #0e2142;
  --ink-soft: #1b2f3e;
  --ink-muted: #485262;
  --accent: #3c7cb5;
  --accent-soft: #e3eef6;
  --accent-mid: #68a3d9;
  --accent-pale: #84abc7;
  --cream: #eef5f8;
  --white: #ffffff;
  --line: rgba(132, 171, 199, 0.4);

  /* Type */
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  /* Shape & depth */
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 9px;
  --shadow-sm: 0 1px 2px rgba(14, 33, 66, 0.06), 0 4px 14px rgba(14, 33, 66, 0.06);
  --shadow-md: 0 6px 24px rgba(14, 33, 66, 0.1);
  --shadow-lg: 0 18px 48px rgba(14, 33, 66, 0.16);

  --container: 1140px;
  --nav-h: 76px;
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
p { margin: 0 0 1em; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.12; margin: 0 0 0.5em; font-weight: 600; letter-spacing: -0.01em; }

h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); }
h3 { font-size: 1.28rem; }
h4 { font-size: 1.05rem; }

.container { width: min(var(--container), 92%); margin-inline: auto; }
section { scroll-margin-top: calc(var(--nav-h) + 8px); }

.skip-link {
  position: absolute; left: -9999px; top: 8px; z-index: 200;
  background: var(--accent); color: #fff; padding: 10px 18px; border-radius: var(--radius-sm);
}
.skip-link:focus { left: 8px; }

/* ---------- Reusable ---------- */
.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.9rem;
}

.section { padding: clamp(4rem, 9vw, 6.5rem) 0; position: relative; }
.section-head { max-width: 720px; margin-bottom: clamp(2rem, 5vw, 3.2rem); }
.section-head h2 { margin-bottom: 0.4rem; }
.section-sub { color: var(--ink-muted); font-size: 1.06rem; max-width: 60ch; }

.accent { color: var(--accent); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--font-body); font-weight: 600; font-size: 0.98rem;
  padding: 0.8rem 1.5rem; border-radius: 6px; cursor: pointer;
  border: 2px solid transparent; transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}
.btn-accent {
  background: linear-gradient(135deg, var(--accent-mid), var(--accent));
  color: #fff; box-shadow: 0 8px 22px rgba(60, 124, 181, 0.35);
}
.btn-accent:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(60, 124, 181, 0.45); }
.btn-accent:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }

.btn-ghost { background: transparent; color: var(--ink); border-color: rgba(14, 33, 66, 0.3); }
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); }

/* Pressed state overrides hover so click feedback is not lost */
.btn:active { transform: scale(0.98); }

.btn-lg { padding: 1rem 1.9rem; font-size: 1.02rem; }
.btn-sm { padding: 0.55rem 1.15rem; font-size: 0.9rem; }
.btn-block { width: 100%; justify-content: center; }

/* ---------- Header / nav ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--nav-h);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}
.site-header.scrolled {
  background: rgba(238, 245, 248, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line), var(--shadow-sm);
}

/* Nav over dark hero */
.site-header:not(.scrolled) .nav-link { color: rgba(255, 255, 255, 0.85); }
.site-header:not(.scrolled) .nav-link:hover { color: #fff; background: rgba(255, 255, 255, 0.12); }
.site-header:not(.scrolled) .nav-link.active { color: #fff; background: rgba(255, 255, 255, 0.15); }
.site-header:not(.scrolled) .nav-toggle span { background: #fff; }
.site-header:not(.scrolled) .btn-accent { background: #fff; color: var(--ink); box-shadow: 0 4px 14px rgba(0,0,0,0.2); }

.nav-wrap {
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}

.brand { display: inline-flex; align-items: center; gap: 0.65rem; }
.brand-logo {
  height: 46px; width: auto;
  background: #fff;
  padding: 5px 7px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.main-nav ul { display: flex; align-items: center; gap: 0.35rem; }
.main-nav .nav-link {
  position: relative; display: inline-block;
  padding: 0.5rem 0.85rem; border-radius: 6px;
  font-size: 0.94rem; font-weight: 500; color: var(--ink-soft);
  transition: color 0.18s ease, background 0.18s ease;
}
.main-nav .nav-link:hover { color: var(--ink); background: rgba(14, 33, 66, 0.06); }
.main-nav .nav-link.active { color: var(--ink); font-weight: 600; background: rgba(60, 124, 181, 0.1); }
.main-nav .nav-cta { margin-left: 0.4rem; border-radius: 6px; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: 0; cursor: pointer; padding: 10px;
}
.nav-toggle span {
  width: 24px; height: 2.4px; border-radius: 2px; background: var(--ink);
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.4px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.4px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  padding: clamp(4rem, 9vw, 6.5rem) 0;
  background: url('../images/class.png') center center / cover no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    160deg,
    rgba(14, 33, 66, 0.88) 0%,
    rgba(14, 33, 66, 0.72) 50%,
    rgba(14, 33, 66, 0.55) 100%
  );
  z-index: 1;
}

.hero-inner {
  position: relative; z-index: 1;
  max-width: 680px;
}

.hero-text {
  display: flex; flex-direction: column;
  align-items: flex-start;
}

.hero-eyebrow {
  color: var(--accent-mid);
  margin-bottom: 1.2rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  margin-bottom: 1.2rem;
  line-height: 1.12;
  color: #fff;
}
.hero h1 .accent { color: var(--accent-mid); }

.hero-divider {
  width: 48px;
  height: 3px;
  background: var(--accent);
  margin-bottom: 1.4rem;
  border-radius: 2px;
}

.hero-lede {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.btn-hero {
  display: inline-flex; align-items: center; gap: 0.55rem;
  background: #fff;
  color: var(--ink);
  padding: 0.85rem 1.6rem;
  font-size: 0.95rem;
  border-radius: 6px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin-top: 0.5rem;
}
.btn-hero:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.25); }
.btn-hero:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }

/* Hero fade-in animation */
.hero-text > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.hero.loaded .hero-text > * {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- About ---------- */
.about { background: var(--white); }

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: stretch;
}
.about-top {
  margin-bottom: 2.5rem;
  max-width: 720px;
}
.about-top h2 { margin-bottom: 0.4rem; white-space: nowrap; }

.about-layout .about-content { order: 1; }
.about-layout .about-image { order: 2; }

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4 / 3;
  width: 100%;
}
.about-image::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(14, 33, 66, 0.15), rgba(14, 33, 66, 0.3));
  border-radius: var(--radius-lg);
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.8;
  filter: saturate(0.8) brightness(1.1);
}

.about-content {
  display: flex; flex-direction: column; gap: 1.4rem;
  justify-content: center;
}
.about-content h2 { margin-bottom: 0.3rem; }

.about-mission, .about-vision {
  padding: 1.2rem 1.4rem;
  background: var(--cream);
  border-radius: var(--radius-sm);
  flex: 1;
}
.about-mission h3, .about-vision h3 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
  color: var(--accent);
}
.about-mission p, .about-vision p {
  color: var(--ink-muted);
  font-size: 0.98rem;
  margin: 0;
  line-height: 1.6;
}

/* ---------- Problem / stats ---------- */
.problem { background: var(--cream); }
.charts-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-bottom: 2rem;
}
.chart-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.4rem 1.2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.chart-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.chart-title {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 0.2rem 0;
  text-align: center;
}
.chart-subtitle {
  font-size: 0.88rem;
  color: var(--ink-muted);
  margin: 0 0 1rem 0;
  text-align: center;
}
.chart-wrap {
  width: 100%;
  max-width: 200px;
  position: relative;
}
.chart-wrap-bar {
  max-width: 100%;
  min-height: 200px;
}
.chart-wrap-bar canvas {
  max-height: 220px;
}

.stats-highlight-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  margin-bottom: 2rem;
}
.stat-highlight {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem 1.8rem;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.stat-highlight:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.stat-highlight-number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.4vw, 3.4rem);
  font-weight: 700;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 0.6rem;
}
.stat-highlight-label {
  display: block;
  font-size: 0.95rem;
  color: var(--ink-muted);
  line-height: 1.5;
}

.problem-extra {
  background: var(--ink);
  border-radius: var(--radius-lg);
  padding: 2rem 2.2rem;
}
.problem-extra p { color: rgba(255,255,255,0.82); margin-bottom: 0; }
.problem-extra strong { color: #fff; }
.problem-callout {
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.5rem;
  color: rgba(255,255,255,0.9) !important;
  font-weight: 500;
  margin-top: 1rem;
  margin-bottom: 0 !important;
}

/* ---------- Values ---------- */
.values { background: var(--white); }
.values-scroll {
  display: flex;
  gap: 2rem;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  padding: 0 0.5rem 2rem;
  scrollbar-width: none;
}
.values-scroll::-webkit-scrollbar { display: none; }

.value-card {
  flex: 0 0 calc(33.333% - 14px);
  min-width: 260px;
  max-width: calc(33.333% - 14px);
  width: calc(33.333% - 14px);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 2.2rem 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--cream);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.value-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: rgba(60, 124, 181, 0.15);
  line-height: 1;
  margin-top: auto;
  margin-bottom: 0;
  align-self: flex-end;
}

.value-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.value-card blockquote {
  margin: 0 0 0.9rem;
  padding: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  line-height: 1.35;
  color: var(--accent);
  letter-spacing: -0.01em;
}

.value-card p {
  color: var(--ink-muted);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
}

/* ---------- Objectives ---------- */
.objectives { background: var(--cream); }
.objectives-inner { max-width: 100%; }
.objectives-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.2rem;
  counter-reset: obj;
}
.objectives-list li:nth-child(1),
.objectives-list li:nth-child(2),
.objectives-list li:nth-child(3) {
  grid-column: span 2;
}
.objectives-list li:nth-child(4),
.objectives-list li:nth-child(5) {
  grid-column: span 3;
}

.objectives-list li {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  counter-increment: obj;
}
.objectives-list li:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.objectives-list li::before {
  content: counter(obj, decimal-leading-zero);
    display: inline-block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}
.objectives-list li p {
  margin: 0;
  color: var(--ink-muted);
  line-height: 1.6;
}
.objectives-list li strong { color: var(--ink); }

/* ---------- Fellowship ---------- */
.fellowship {
  background: #e7eef3;
  color: var(--ink);
  padding-top: 0;
}
.fellowship .eyebrow { color: var(--accent-mid); }
.fellowship-inner { padding-top: 0; }
#fellow-title{
  font-size: 44px;
}

/* ---------- Fellowship hero: white bg, dark slanted left panel + absolute image ---------- */
.fellowship-hero {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  margin: 0 0 2.5rem;
  display: flex;
  align-items: stretch;
}
.fellowship-hero-text {
  position: relative;
  z-index: 2;
  padding: 3rem 3.5rem;
  width: 44%;
  background: var(--ink);
  clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%);
  display: flex; flex-direction: column; justify-content: center;
}
.fellowship-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--accent-mid);
  margin-bottom: 1.2rem;
}
.fellowship-hero-text h2 {
  font-family: "Playfair Display", var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  margin: 0 0 0.8rem;
  letter-spacing: -0.01em;
}
.fellowship-hero-lede {
  color: var(--accent-pale); font-size: 1rem; line-height: 1.65;
  max-width: 34ch; margin: 0;
}

.fellowship-hero-image {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.fellowship-hero-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 90% 40%;
  filter: brightness(0.7);
}

/* ---------- Fellowship steps (content cards) ---------- */
.fellowship-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 2.8rem 3.5rem 0;
}
.fellowship-step {
  display: flex; flex-direction: column; gap: 0.8rem;
  padding-top: 0.4rem;
}
.step-num-row {
  display: flex; align-items: center; gap: 1rem;
}
.step-num {
  font-family: "Playfair Display", var(--font-display); font-size: 2.4rem; font-weight: 700;
  color: var(--accent-mid); line-height: 1; flex-shrink: 0;
}
.step-rule {
  flex: 1; height: 1px; background: rgba(26, 39, 68, 0.12);
}
.fellowship-step h3 {
  font-family: "Playfair Display", var(--font-display); font-size: 1.3rem; font-weight: 700;
  color: var(--ink); margin: 0; line-height: 1.2; letter-spacing: -0.01em;
}
.fellowship-step p {
  color: #485262; font-size: 0.92rem; line-height: 1.6;
  margin: 0;
}

.tight-list { display: grid; gap: 0.55rem; color: var(--accent-pale); }
.tight-list li { position: relative; padding-left: 1.4rem; }
.tight-list li::before {
  content: ""; position: absolute; left: 0; top: 0.6em;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent-mid);
}

/* ---------- Timeline ---------- */
.time-section{
    background: var(--ink);
    padding-top: 30px;
}
.timeline {
  background: var(--ink);
  border: 1px solid rgba(104, 163, 217, 0.2);
  border-radius: var(--radius-lg);
  padding: 2rem 2.2rem;
  margin: 1rem 3.5rem 0;
  box-shadow: var(--shadow-md);
}
.timeline-title { color: #fff; margin-bottom: 1.6rem; }
.timeline-track { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; position: relative; }

.timeline-item { position: relative; padding-top: 1.6rem; }
.tl-dot {
  position: absolute; top: 0; left: 0;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 0 4px rgba(60, 124, 181, 0.3);
}
.timeline-item h4 { color: #fff; font-size: 1.08rem; margin-bottom: 0.15rem; }
.tl-when {
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--accent-mid);
  margin-bottom: 0.5rem;
}
.timeline-item p:last-child { color: var(--accent-pale); font-size: 0.95rem; margin: 0; }

/* ---------- Activities ---------- */
.activities {
  background: var(--ink);
  padding: 2rem 2.2rem;
  margin-bottom: 2.4rem;
}
.activities h3 { color: #fff; margin-bottom: 1.3rem; }
.activity-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
.activity-grid li {
  display: flex; align-items: center; gap: 0.8rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 0.9rem 1.1rem;
  color: var(--accent-pale); font-size: 0.95rem;
  transition: background 0.2s ease, transform 0.2s ease;
}
.activity-grid li:hover { background: rgba(255, 255, 255, 0.09); transform: translateY(-2px); }
.activity-grid li > span {
  display: inline-grid; place-items: center; flex-shrink: 0;
  width: 38px; height: 38px; border-radius: 11px;
  background: rgba(104, 163, 217, 0.16); color: var(--accent-mid);
}
.activity-grid li > span svg { width: 20px; height: 20px; }

/* ---------- Bottom banner: dark navy, white text, vertical dividers, decorative triangle ---------- */
.fellowship-banner {
  background: var(--ink);
  padding: 2.5rem 3.5rem;
  margin: 2.5rem 0 0;
  display: flex; align-items: center; gap: 2.5rem; flex-wrap: wrap;
  position: relative;
}
.banner-text { flex: 1; min-width: 220px; }
.banner-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--accent-mid); margin-bottom: 0.7rem;
}
.banner-heading {
  font-family: "Playfair Display", var(--font-display); font-size: 1.5rem; font-weight: 700;
  color: #fff; line-height: 1.2; margin: 0;
}
.banner-divider {
  width: 1px; height: 48px; background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}
.banner-pillar { flex: 1; min-width: 150px; }
.pillar-title {
  font-size: 0.95rem; font-weight: 700; color: #fff; margin: 0 0 0.2rem;
}
.pillar-sub {
  font-size: 0.8rem; color: var(--accent-mid); margin: 0;
}
/* decorative blue triangle bottom-right */
.fellowship-banner::after {
  content: "";
  position: absolute;
  bottom: 0; right: 0;
  width: 6rem; height: 6rem;
  background: var(--accent-mid);
  opacity: 0.4;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}

/* ---------- Fellowship responsive ---------- */
@media (max-width: 980px) {
  .fellowship-hero { margin: 0 0 2rem; }
  .fellowship-hero-text { width: 100%; padding: 2.8rem 2rem; clip-path: none; background: var(--ink); }
  .fellowship-hero-image { display: none; }
  .fellowship-steps { grid-template-columns: repeat(2, 1fr); padding: 2rem 1.5rem 0; gap: 1.5rem; }
  .step-num { font-size: 2rem; }
  .timeline { margin: 2rem 1.5rem 0; padding: 1.6rem 1.5rem; }
  .timeline-track { grid-template-columns: 1fr; }
  .activities { margin: 2rem 1.5rem 0; padding: 1.6rem 1.5rem; }
  .activity-grid { grid-template-columns: 1fr; }
  .fellowship-banner { flex-direction: column; align-items: flex-start; margin: 2rem 1.5rem 0; padding: 2rem 1.5rem; }
  .banner-divider { width: 100%; height: 1px; }
  .fellowship-banner::after { display: none; }
}

@media (max-width: 640px) {
  .fellowship-hero { margin: 0 1rem 1.5rem; }
  .fellowship-hero-text { padding: 2rem 1rem; }
  .fellowship-steps { grid-template-columns: 1fr; gap: 1.4rem; padding: 1.5rem 1rem 0; }
  .timeline { margin: 1.5rem 1rem 0; padding: 1.4rem 1rem; }
  .activities { margin-top: 1.6rem; }
  .fellowship-banner { margin: 1.5rem 1rem 0; padding: 1.5rem 1rem; }
}

/* ---------- Partners ---------- */
.partners { background: var(--white); }
.partners-inner {
  display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 3rem;
  background: linear-gradient(135deg, var(--accent-soft), var(--cream));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(2.2rem, 5vw, 3.4rem);
  box-shadow: var(--shadow-sm);
}
.partner-logo { color: var(--accent); }
.partners-inner h2 { margin-bottom: 0.6rem; }
.partners-inner p:not(.eyebrow) { color: var(--ink-muted); margin: 0; }
.partners-inner strong { color: var(--ink); }

/* ---------- FAQ ---------- */
.faq { background: var(--cream); }
.faq-container { max-width: 100%; }
.faq-list { display: grid; gap: 0.9rem; }

.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  overflow: hidden;
}
.faq-item[open] { border-color: rgba(60, 124, 181, 0.5); box-shadow: var(--shadow-md); }

.faq-item summary {
  cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.15rem 1.4rem;
  font-weight: 600; font-size: 1.02rem; color: var(--ink);
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; flex-shrink: 0;
  display: grid; place-items: center;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--accent-soft); color: var(--accent);
  font-size: 1.25rem; font-weight: 600; line-height: 1;
  transition: transform 0.25s ease, background 0.25s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); background: var(--accent); color: #fff; }

.faq-body { padding: 0 1.4rem 1.25rem; color: var(--ink-muted); }
.faq-body ul { display: grid; gap: 0.45rem; padding-left: 0; }
.faq-body li { position: relative; padding-left: 1.3rem; }
.faq-body li::before {
  content: ""; position: absolute; left: 0; top: 0.62em;
  width: 7px; height: 7px; border-radius: 50%; background: var(--accent);
}
.faq-body a { color: var(--accent); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.faq-body a:hover { color: var(--ink); }

/* ---------- Contact ---------- */
.contact { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 3rem; align-items: start; }

.contact-intro p:not(.eyebrow) { color: var(--ink-muted); margin-bottom: 1.8rem; }

.contact-methods { display: grid; gap: 0.9rem; }
.contact-methods a {
  display: flex; align-items: center; gap: 1rem;
  background: var(--cream); border: 1px solid var(--line);
  border-radius: var(--radius-md); padding: 1rem 1.2rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.contact-methods a:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(60, 124, 181, 0.5); }
.contact-icon {
  display: grid; place-items: center; flex-shrink: 0;
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--accent-soft); color: var(--accent);
}
.contact-icon svg { width: 22px; height: 22px; }
.contact-methods span:last-child { display: flex; flex-direction: column; line-height: 1.35; }
.contact-methods strong { font-size: 1.02rem; }
.contact-methods em { font-style: normal; color: var(--ink-muted); font-size: 0.94rem; word-break: break-word; }

.contact-form {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  box-shadow: var(--shadow-md);
}
.contact-form h3 { margin-bottom: 1.4rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field { margin-bottom: 1.05rem; }
.form-field label { display: block; font-size: 0.88rem; font-weight: 600; margin-bottom: 0.4rem; color: var(--ink-soft); }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%; font: inherit; font-size: 0.98rem;
  padding: 0.78rem 1rem;
  background: var(--white);
  color: var(--ink);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(60, 124, 181, 0.18);
}
.form-field input.invalid,
.form-field textarea.invalid { border-color: #c0392b; box-shadow: 0 0 0 4px rgba(192, 57, 43, 0.12); }

.form-note { font-size: 0.92rem; margin: 0.9rem 0 0; min-height: 1.2em; }
.form-note.success { color: #1e8449; }
.form-note.error { color: #c0392b; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: var(--accent-pale); }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1.2fr; gap: 2.5rem;
  padding: 3.6rem 0 2.4rem;
}
.brand-footer .brand-logo { box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35); }
.footer-brand p { margin: 1rem 0 0; max-width: 34ch; font-size: 0.95rem; }

.site-footer h4 {
  color: #fff; font-size: 0.95rem; letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 1rem;
}
.site-footer ul { display: grid; gap: 0.55rem; font-size: 0.95rem; }
.site-footer a { transition: color 0.18s ease; }
.site-footer a:hover { color: var(--accent-mid); }

.footer-bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.4rem 0; font-size: 0.88rem;
}
.footer-bottom p { margin: 0; }
.footer-tagline { font-style: italic; font-family: var(--font-display); color: var(--accent-mid); }

/* ---------- Back to top ---------- */
.back-to-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 46px; height: 46px; border-radius: 50%;
  border: 0; cursor: pointer;
  background: var(--ink); color: #fff;
  display: grid; place-items: center;
  box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s, background 0.2s ease;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--accent); }

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0; transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .objectives-list { grid-template-columns: repeat(2, 1fr); }
  .objectives-list li { grid-column: span 1; }
  .hero-inner { max-width: 580px; }
  .charts-row { grid-template-columns: 1fr 1fr; }
  .chart-wrap { max-width: 180px; }
  /* .values-scroll { padding: 0 2rem; gap: 1.5rem; } */
  .value-card { flex: 0 0 calc(50% - 8px); min-width: 220px; padding: 2rem 1.6rem; }
  .partners-inner { grid-template-columns: 1fr; text-align: center; }
  .partner-logo { justify-self: center; }
  .about-top h2 { white-space: normal; }
  .contact-grid { grid-template-columns: 1fr; }
  .timeline-track { grid-template-columns: 1fr; gap: 2rem; }
  .timeline-item { border-left: 2px solid rgba(255,255,255,0.14); padding-left: 1.6rem; padding-top: 0.2rem; }
  .tl-dot { left: -8px; top: 0.2rem; }

  /* Mobile nav */
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed; top: var(--nav-h); right: 0; bottom: 0;
    width: min(320px, 84vw);
    background: var(--cream);
    border-left: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    transform: translateX(105%);
    transition: transform 0.3s ease;
    padding: 2rem 1.6rem;
    z-index: 99;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: 0.4rem; }
  .main-nav .nav-link { display: block; padding: 0.85rem 1rem; }
  .main-nav .nav-cta { margin: 0.8rem 0 0; justify-content: center; }
}

@media (max-width: 640px) {
  /* Brand */
  .brand-logo { height: 40px; }

  /* Objectives (base mobile rules) */
  .objectives-list { grid-template-columns: 1fr; }
  .objectives-list li { grid-column: span 1; padding: 1.1rem 1.2rem; }

  /* Hero */
  .hero { min-height: auto; padding: clamp(4rem, 9vw, 6.5rem) 0 3rem; }
  .hero-inner { max-width: 100%; }

  /* About */
  .about-top h2 { white-space: normal; }
  .about-layout, .fellowship-grid, .form-row { grid-template-columns: 1fr; }
  .about-layout .about-content, .about-layout .about-image { order: unset; }
  .about-image { max-height: 280px; }

  /* Charts & stats */
  .charts-row { grid-template-columns: 1fr; }
  .chart-wrap { max-width: 200px; }
  .stats-highlight-row { grid-template-columns: 1fr; }

  /* Hide on mobile */
  .problem-extra { display: none; }
  .activities.timeline { display: none; }

  /* Activity grid */
  .activity-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .footer-bottom { flex-direction: column; }

  /* Fellowship */
  .fellowship-hero { margin: 0 1rem 1.5rem; }
  .fellowship-hero-text { padding: 2rem 1rem; }
  .fellowship-steps { grid-template-columns: 1fr; gap: 1.4rem; padding: 1.5rem 1rem 0; }
  .timeline { margin: 1.5rem 1rem 0; padding: 1.4rem 1rem; }
  .activities { margin-top: 1.6rem; }
  .fellowship-banner { margin: 1.5rem 1rem 0; padding: 1.5rem 1rem; }

  /* ----------------------------------------------------------
     Values carousel — horizontal swipe
     ---------------------------------------------------------- */
  .values-scroll {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
    padding: 0 1rem 1.5rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .values-scroll::-webkit-scrollbar { display: none; }

  .values-scroll .value-card {
    flex: 0 0 82%;
    min-width: 82%;
    max-width: 82%;
    width: auto;
    scroll-snap-align: center;
    padding: 1.8rem 1.4rem;
    box-sizing: border-box;
    opacity: 1;
    transform: none;
  }

  /* ----------------------------------------------------------
     Objectives carousel — horizontal swipe
     ---------------------------------------------------------- */
  .objectives-list {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
    padding: 0 1rem 1.5rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
    grid-template-columns: none;
  }
  .objectives-list::-webkit-scrollbar { display: none; }

  .objectives-list li {
    flex: 0 0 82%;
    min-width: 82%;
    max-width: 82%;
    width: auto;
    scroll-snap-align: center;
    padding: 1.4rem 1.4rem;
    box-sizing: border-box;
    grid-column: auto;
  }
}

@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;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Carousel Navigation Buttons ---------- */
.carousel-nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.carousel-nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.2s ease;
}

.carousel-nav-btn:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.carousel-nav-btn:active {
  transform: scale(0.95);
}

.carousel-nav-btn:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.carousel-nav-btn svg {
  flex-shrink: 0;
}

/* Hide text on very small screens, show only icons */
@media (max-width: 480px) {
  .carousel-nav-btn span {
    display: none;
  }

  .carousel-nav-btn {
    padding: 0.6rem;
    min-width: 44px;
    justify-content: center;
  }
}

/* ---------- Fellowship Card Icon Fix ---------- */
.fellowship-card .card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(104, 163, 217, 0.16);
  color: var(--accent-mid);
  flex-shrink: 0;
  margin-bottom: 1rem;
}

.fellowship-card .card-icon svg {
  width: 24px;
  height: 24px;
  display: block;
}

.fellowship-card {
  padding: 2rem;
}

.fellowship-card .card-icon * {
  max-width: 100%;
  max-height: 100%;
}