/* ============================================================
   V1: Modern Dark + Photo Grid
   Fonts: Inter (body) + Playfair Display (headings)
   Colors: Near-black bg, cobalt blue accent, light gray text
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;600;700&display=swap');

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #d1d5db;
  background-color: #111827;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ─── NAV ─────────────────────────────────────────────────── */
nav.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 68px;
  background: rgba(17, 24, 39, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
}
.nav-logo span { color: #3b82f6; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9ca3af;
  transition: color 0.2s;
}
.nav-links a:hover { color: #fff; }
.nav-links .nav-cta a {
  color: #fff;
  background: #2563eb;
  padding: 8px 20px;
  border-radius: 4px;
  transition: background 0.2s;
}
.nav-links .nav-cta a:hover { background: #1d4ed8; }

/* Dropdown */
.nav-links li { position: relative; }
.nav-links li ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  background: #1f2937;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 8px 0;
  list-style: none;
  z-index: 200;
}
.nav-links li:hover > ul { display: block; }
.nav-links li ul li a {
  display: block;
  padding: 8px 16px;
  font-size: 0.75rem;
  color: #9ca3af;
  text-transform: none;
  letter-spacing: 0.02em;
  transition: color 0.2s, background 0.2s;
}
.nav-links li ul li a:hover { color: #fff; background: rgba(255,255,255,0.05); }

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/TMM_web_11_cropped.jpg');
  background-size: cover;
  background-position: center 30%;
  filter: brightness(0.45);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  padding: 0 24px;
}
.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #3b82f6;
  margin-bottom: 20px;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero h1 em { color: #3b82f6; font-style: normal; }
.hero-sub {
  font-size: 1.15rem;
  color: #d1d5db;
  max-width: 560px;
  margin: 0 auto 40px;
  font-weight: 300;
}
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background: #2563eb;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: #1d4ed8; transform: translateY(-1px); }
.btn-outline {
  display: inline-block;
  padding: 13px 32px;
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.05); }

/* ─── SECTIONS ──────────────────────────────────────────── */
.section { padding: 96px 48px; }
.section-sm { padding: 64px 48px; }
.container { max-width: 1140px; margin: 0 auto; }

.section-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #3b82f6;
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 20px;
}
.section-intro {
  font-size: 1.05rem;
  color: #9ca3af;
  max-width: 640px;
  line-height: 1.8;
}

/* ─── MISSION BAND ──────────────────────────────────────── */
.mission-band {
  background: #1f2937;
  border-top: 1px solid #374151;
  border-bottom: 1px solid #374151;
}
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.mission-item {
  padding: 64px 56px;
  border-right: 1px solid #374151;
}
.mission-item:last-child { border-right: none; }
.mission-num {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  color: #3b82f6;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.5;
}
.mission-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 16px;
  font-weight: 600;
}
.mission-item p { font-size: 0.95rem; color: #9ca3af; line-height: 1.8; }

/* ─── PHOTO STRIP ───────────────────────────────────────── */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  height: 340px;
}
.photo-strip-item {
  overflow: hidden;
  position: relative;
}
.photo-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.photo-strip-item:hover img { transform: scale(1.05); }

/* ─── PROGRAM CARDS ─────────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.card {
  background: #1f2937;
  border: 1px solid #374151;
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}
.card:hover { border-color: #3b82f6; transform: translateY(-4px); }
.card-img {
  height: 220px;
  overflow: hidden;
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.card:hover .card-img img { transform: scale(1.05); }
.card-body { padding: 28px 28px 32px; }
.card-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #3b82f6;
  margin-bottom: 10px;
}
.card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 12px;
  font-weight: 600;
}
.card-body p { font-size: 0.9rem; color: #9ca3af; line-height: 1.75; }
.card-link {
  display: inline-block;
  margin-top: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #3b82f6;
  text-transform: uppercase;
  transition: color 0.2s;
}
.card-link:hover { color: #60a5fa; }

/* ─── HABITS GRID ───────────────────────────────────────── */
.habits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 32px;
  margin-top: 16px;
}
.habit-item strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: #e5e7eb;
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}
.habit-item p {
  font-size: 0.82rem;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

/* ─── DOC LIST ───────────────────────────────────────────── */
.doc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.doc-list li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 0.9rem;
  color: #9ca3af;
  line-height: 1.5;
}
.doc-list li:last-child { border-bottom: none; }
.doc-list a {
  color: #3b82f6;
  transition: color 0.2s;
}
.doc-list a:hover { color: #60a5fa; }

/* ─── QUOTE SECTION ─────────────────────────────────────── */
.quote-section {
  background: #2563eb;
  padding: 80px 48px;
  text-align: center;
}
.quote-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: #fff;
  max-width: 820px;
  margin: 0 auto 24px;
  line-height: 1.5;
  font-style: italic;
}
.quote-attr {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ─── VIDEO SECTION ─────────────────────────────────────── */
.video-section { background: #111827; }
.video-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.video-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #374151;
}
.video-embed iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}
.video-text h2 { margin-bottom: 20px; }
.video-text p { color: #9ca3af; font-size: 0.95rem; line-height: 1.8; margin-bottom: 24px; }

/* ─── CAMPS SECTION ─────────────────────────────────────── */
.camps-section { background: #1f2937; }
.camps-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.camps-image {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #374151;
}
.camps-image img { width: 100%; height: 420px; object-fit: cover; }
.camps-text p { color: #9ca3af; font-size: 0.95rem; line-height: 1.9; margin-bottom: 24px; }
.camps-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 32px; }

/* ─── FOOTER ─────────────────────────────────────────────── */
footer.site-footer {
  background: #0d1117;
  border-top: 1px solid #1f2937;
  padding: 64px 48px 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1140px;
  margin: 0 auto 48px;
}
.footer-brand p {
  font-size: 0.9rem;
  color: #6b7280;
  margin-top: 16px;
  max-width: 280px;
  line-height: 1.7;
}
.footer-col h4 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 0.85rem;
  color: #6b7280;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: #d1d5db; }
.footer-bottom {
  max-width: 1140px;
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid #1f2937;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p { font-size: 0.8rem; color: #4b5563; }

/* ═══════════════════════════════════════════════════════════
   INNER PAGE STYLES
═══════════════════════════════════════════════════════════ */

/* ─── PAGE HERO (inner pages) ───────────────────────────── */
.page-hero {
  position: relative;
  height: 44vh;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-top: 78px; /* nav height */
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  filter: brightness(0.38);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 64px 48px;
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
}
.page-hero-eyebrow {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #3b82f6;
  margin-bottom: 14px;
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 16px;
}
.page-hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  font-weight: 300;
}

/* ─── FEATURED PAGE HERO (taller, less opaque) ───────────── */
.page-hero--featured {
  height: 84vh;
  min-height: 480px;
}
.page-hero--featured .page-hero-bg {
  filter: brightness(0.52);
}
.page-hero--featured .page-hero-content {
  padding-bottom: 60px;
}
.page-hero-quote {
  margin-top: 28px;
  max-width: 680px;
  border-left: 3px solid #3b82f6;
  padding-left: 20px;
}
.page-hero-quote p {
  font-family: 'Playfair Display', serif;
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  color: rgba(255,255,255,0.82);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 8px;
}
.page-hero-quote cite {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  font-style: normal;
  letter-spacing: 0.05em;
}

/* ─── PAGE CONTENT AREA ─────────────────────────────────── */
.page-content {
  background: #111827;
  padding: 80px 0;
}
.page-content .container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 64px;
}
.content-section { margin-bottom: 72px; }
.content-section:last-child { margin-bottom: 0; }

.content-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #3b82f6;
  margin-bottom: 10px;
}
.content-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
  line-height: 1.2;
}
.content-body {
  font-size: 0.95rem;
  color: #9ca3af;
  line-height: 1.9;
}
.content-body p { margin-bottom: 16px; }
.content-body p:last-child { margin-bottom: 0; }
.content-body a { color: #3b82f6; transition: color 0.2s; }
.content-body a:hover { color: #60a5fa; }
.content-body ul { margin: 12px 0 16px 24px; }
.content-body ul li { margin-bottom: 8px; line-height: 1.75; }
.content-body i, .content-body em { font-style: italic; }

/* divider */
.content-divider {
  border: none;
  border-top: 1px solid #1f2937;
  margin: 56px 0;
}

/* ─── TWO / THREE COLUMN GRIDS ──────────────────────────── */
.cols-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 40px;
}
.cols-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 40px;
}
.cols-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 40px;
}
.col-box {
  background: #1f2937;
  border: 1px solid #374151;
  border-top: 2px solid #2563eb;
  padding: 32px 28px;
  border-radius: 4px;
}
.col-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 8px;
  font-weight: 600;
}
.col-box .col-subtitle {
  font-size: 0.78rem;
  color: #3b82f6;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.col-box p, .col-box ul {
  font-size: 0.88rem;
  color: #9ca3af;
  line-height: 1.8;
}
.col-box ul { margin-left: 18px; }
.col-box ul li { margin-bottom: 6px; }
.col-box a { color: #3b82f6; transition: color 0.2s; }
.col-box a:hover { color: #60a5fa; }

/* ─── PERSON CARDS (staff / board) ─────────────────────── */
.people-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.people-grid.cols-3-people {
  grid-template-columns: repeat(3, 1fr);
}
.person-card {
  background: #1f2937;
  border: 1px solid #374151;
  border-radius: 6px;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}
.person-card:hover { border-color: #3b82f6; transform: translateY(-3px); }
.person-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: top;
  display: block;
}
.person-card-body {
  padding: 20px 20px 24px;
}
.person-card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 4px;
  font-weight: 600;
  line-height: 1.3;
}
.person-card-body .person-role {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #3b82f6;
  margin-bottom: 12px;
}
.person-card-body p {
  font-size: 0.82rem;
  color: #9ca3af;
  line-height: 1.75;
}
.person-card-body a { color: #3b82f6; transition: color 0.2s; }
.person-card-body a:hover { color: #60a5fa; }

/* ─── FAQ ITEMS ─────────────────────────────────────────── */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-top: 48px;
  align-items: start;
}
.faq-item { margin-bottom: 32px; }
.faq-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: #e5e7eb;
  margin-bottom: 10px;
  font-weight: 600;
  line-height: 1.4;
  padding-left: 16px;
  border-left: 2px solid #2563eb;
}
.faq-item p {
  font-size: 0.88rem;
  color: #9ca3af;
  line-height: 1.8;
}
.faq-item a { color: #3b82f6; transition: color 0.2s; }
.faq-item a:hover { color: #60a5fa; }

/* ─── APPLY SECTION ──────────────────────────────────────── */
.apply-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-top: 48px;
}
.apply-btns { display: flex; flex-direction: column; gap: 16px; }
.btn-apply {
  display: block;
  padding: 20px 28px;
  background: #1f2937;
  border: 1px solid #374151;
  border-radius: 6px;
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.btn-apply:hover { border-color: #2563eb; background: #1e3a8a33; transform: translateY(-2px); }
.eligibility-item {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid #1f2937;
}
.eligibility-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.eligibility-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: #e5e7eb;
  margin-bottom: 10px;
  font-weight: 600;
}
.eligibility-item p {
  font-size: 0.9rem;
  color: #9ca3af;
  line-height: 1.8;
}
.eligibility-item a { color: #3b82f6; }

/* ─── TESTIMONIALS ──────────────────────────────────────── */
.testimonial-intro {
  font-size: 0.95rem;
  color: #9ca3af;
  margin-bottom: 32px;
  line-height: 1.8;
}
.testimonials-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 56px;
}
.testimonials-col {
  border-right: 1px solid #1f2937;
  padding-right: 56px;
}
.testimonials-col:last-child {
  border-right: none;
  padding-right: 0;
}
.testimonial-list {
  columns: 1;
  margin-bottom: 0;
}
.testimonial-list ul {
  list-style: none;
  break-inside: avoid;
}
.testimonial-list ul li {
  padding: 10px 0;
  border-bottom: 1px solid #1f2937;
  font-size: 0.9rem;
  color: #9ca3af;
  line-height: 1.6;
}
.testimonial-list ul li::before {
  content: '"';
  color: #3b82f6;
  margin-right: 6px;
}
.photo-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 16px;
}
.photo-gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid #1f2937;
}

/* ─── FUNDER CARDS ──────────────────────────────────────── */
.funders-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 48px;
}
.funder-card {
  background: #1f2937;
  border: 1px solid #374151;
  border-radius: 6px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  transition: border-color 0.2s;
}
.funder-card:hover { border-color: #3b82f6; }
.funder-card img {
  max-width: 180px;
  height: auto;
  object-fit: contain;
}
.funder-card p {
  font-size: 0.88rem;
  color: #9ca3af;
  line-height: 1.8;
}
.funder-card a { color: #3b82f6; }
.funder-card .card-link {
  margin-top: auto;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #3b82f6;
  transition: color 0.2s;
}
.funder-card .card-link:hover { color: #60a5fa; }
.funder-text-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  padding: 12px 16px;
  background: rgba(59,130,246,0.08);
  border: 1px solid rgba(59,130,246,0.25);
  border-radius: 4px;
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #93c5fd;
  text-align: center;
  line-height: 1.4;
  width: 100%;
}

/* ─── DONATE ──────────────────────────────────────────────── */
.donate-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 48px;
}
.donate-text p {
  font-size: 0.95rem;
  color: #9ca3af;
  line-height: 1.9;
  margin-bottom: 16px;
}
.donate-widget-box {
  background: #1f2937;
  border: 1px solid #374151;
  border-radius: 8px;
  padding: 40px 36px;
}
.donate-widget-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 24px;
  font-weight: 600;
}
.donate-widget-box p {
  font-size: 0.8rem;
  color: #6b7280;
  margin-top: 16px;
  line-height: 1.7;
}
.donate-widget-box a { color: #3b82f6; }

/* WORD CLOUD */
.word-cloud-img {
  width: 100%;
  max-width: 760px;
  margin: 0 auto 48px;
  display: block;
  border-radius: 6px;
  border: 1px solid #1f2937;
}

/* ─── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 900px) {
  nav.site-nav { padding: 0 24px; }
  .section, .section-sm { padding: 64px 24px; }
  .mission-grid { grid-template-columns: 1fr; }
  .mission-item { border-right: none; border-bottom: 1px solid #374151; }
  .photo-strip { grid-template-columns: repeat(2, 1fr); height: auto; }
  .photo-strip-item { height: 200px; }
  .cards-grid { grid-template-columns: 1fr; }
  .video-wrap { grid-template-columns: 1fr; }
  .camps-content { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  /* inner pages */
  .page-hero-content { padding: 0 24px 40px; }
  .page-content .container { padding: 0 24px; }
  .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; }
  .people-grid, .people-grid.cols-3-people { grid-template-columns: 1fr 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .apply-grid { grid-template-columns: 1fr; }
  .testimonials-two-col { grid-template-columns: 1fr; }
  .testimonials-col { border-right: none; padding-right: 0; }
  .testimonial-list { columns: 1; }
  .funders-grid { grid-template-columns: 1fr; }
  .donate-layout { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .hero h1 { font-size: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .people-grid, .people-grid.cols-3-people { grid-template-columns: 1fr; }
  .photo-gallery-grid { grid-template-columns: 1fr; }
}
