@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── Design tokens ─────────────────────────────────────────────── */
:root {
  --navy:         #0D1A4A;
  --navy-700:     #1E4FE8;
  --navy-600:     #3B6BF4;
  --gold:         #FACC15;
  --gold-light:   #FEF9C3;
  --white:        #ffffff;
  --off-white:    #F8FAFC;
  --surface:      #ffffff;
  --surface-soft: #EEF2FF;
  --text-strong:  #0B1640;
  --text-body:    #1E2D6B;
  --text-muted:   #4B5EA8;
  --border:       #C7D2FE;
  --shadow-sm:    0 1px 6px rgba(30,79,232,0.14);
  --shadow-md:    0 8px 28px rgba(30,79,232,0.22);
  --shadow-lg:    0 24px 52px rgba(30,79,232,0.30);
  --radius-sm:    8px;
  --radius-md:    14px;
  --radius-lg:    22px;
  --radius-full:  999px;
}

/* ── Reset & base ──────────────────────────────────────────────── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: inherit;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-body);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--text-strong);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ── Navigation ────────────────────────────────────────────────── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13,26,74,0.97);
  border-bottom: 1px solid rgba(250,204,21,0.15);
  backdrop-filter: blur(14px);
  padding: 0 1.5rem;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  height: 80px;
  position: relative;
}

.logo {
  display: inline-flex;
  align-items: center;
}

.logo img {
  height: 70px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-full);
  transition: color 0.2s, background 0.2s, transform 0.2s;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--gold);
  background: rgba(250,204,21,0.10);
  transform: translateY(-1px);
}

.nav-links a.active {
  color: var(--gold);
  background: rgba(250,204,21,0.12);
}

/* Donate link stands out */
.nav-links a[href="donate.html"] {
  background: linear-gradient(135deg, #FACC15 0%, #EAB308 100%);
  color: #0D1A4A;
  padding: 0.5rem 1.1rem;
  font-weight: 800;
  box-shadow: 0 2px 10px rgba(250,204,21,0.45);
}
.nav-links a[href="donate.html"]:hover {
  background: linear-gradient(135deg, #FDE047 0%, #FACC15 100%);
  color: #0D1A4A;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(250,204,21,0.55);
}

/* Mobile toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-sm);
  background: transparent;
  cursor: pointer;
}

.mobile-menu-toggle span {
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: rgba(255,255,255,0.85);
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.mobile-menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Header top bar ────────────────────────────────────────────── */
.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(250,204,21,0.12);
}

.header-social {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.social-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.13);
  color: rgba(255,255,255,0.88);
  transition: background 0.2s, transform 0.2s, color 0.2s;
  flex-shrink: 0;
}

.social-icon-btn:hover {
  background: rgba(255,255,255,0.24);
  color: #fff;
  transform: translateY(-1px);
}

.btn-donate-header {
  display: inline-block;
  background: linear-gradient(135deg, #FACC15 0%, #EAB308 100%);
  color: #0D1A4A;
  padding: 0.42rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: all 0.2s;
  box-shadow: 0 3px 12px rgba(250,204,21,0.45);
}

.btn-donate-header:hover {
  background: linear-gradient(135deg, #FDE047 0%, #FACC15 100%);
  color: #0D1A4A;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(250,204,21,0.60);
}

/* ── Buttons ───────────────────────────────────────────────────── */
.btn-donate {
  display: inline-block;
  background: linear-gradient(135deg, #FACC15 0%, #EAB308 100%);
  color: #0D1A4A;
  padding: 0.85rem 2.1rem;
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-weight: 800;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  box-shadow: 0 4px 18px rgba(250,204,21,0.50), 0 1px 3px rgba(0,0,0,0.12);
  text-align: center;
  letter-spacing: 0.02em;
}

.btn-donate:hover {
  background: linear-gradient(135deg, #FDE047 0%, #FACC15 100%);
  color: #0D1A4A;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(250,204,21,0.65), 0 2px 6px rgba(0,0,0,0.12);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--navy-600);
  padding: 0.8rem 2rem;
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-weight: 700;
  border: 2px solid var(--navy-600);
  cursor: pointer;
  transition: all 0.25s;
  text-align: center;
}

.btn-secondary:hover {
  background: var(--navy-600);
  color: #fff;
}

.btn-read-more {
  display: inline-block;
  color: var(--navy-600);
  font-weight: 700;
  font-size: 0.93rem;
  margin-top: 0.75rem;
  transition: color 0.2s;
}
.btn-read-more:hover { color: var(--navy-700); }

/* ── Hero / Banner ─────────────────────────────────────────────── */
.banner,
.about-hero,
.projects-hero,
.involve-hero,
.blog-hero,
.contact-hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 2rem;
  overflow: hidden;
}

.banner {
  height: 88vh;
  height: 88svh;
  min-height: 580px;
  background: #0D1A4A;
}

.banner-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
  transform: translateZ(0);
  will-change: transform;
  backface-visibility: hidden;
}

@media (max-width: 768px) {
  .banner-video {
    object-position: 60% center;
  }
}

.banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(13,26,74,0.55);
  z-index: 1;
  pointer-events: none;
}

.banner .banner-content,
.banner canvas {
  z-index: 2;
}

.about-hero {
  height: 72vh;
  height: 72svh;
  min-height: 460px;
  background: linear-gradient(rgba(13,26,74,0.25) 0%, rgba(13,26,74,0.60) 100%),
              url('../assets/images/about/johnmurthy.jpg') center top / cover no-repeat;
  background-attachment: scroll;
}

.projects-hero {
  height: 70vh;
  height: 70svh;
  min-height: 460px;
  background: linear-gradient(rgba(13,26,74,0.60), rgba(13,26,74,0.60)),
              url('../assets/images/shared/PHOTO-2026-04-04-00-10-25.jpeg') top center/cover no-repeat;
  background-attachment: scroll;
}

.involve-hero {
  height: 62vh;
  height: 62svh;
  min-height: 420px;
  background: linear-gradient(rgba(13,26,74,0.60), rgba(13,26,74,0.60)),
              url('../assets/images/get-involved/get-involved.jpg') center/cover no-repeat;
  background-attachment: scroll;
}

.blog-hero {
  height: 62vh;
  height: 62svh;
  min-height: 420px;
  background: linear-gradient(rgba(13,26,74,0.60), rgba(13,26,74,0.60)),
              url('../assets/images/blog/PHOTO-2026-04-04-00-10-40.jpeg') center/cover no-repeat;
  background-attachment: scroll;
}

.contact-hero {
  height: 62vh;
  height: 62svh;
  min-height: 420px;
  background: linear-gradient(rgba(13,26,74,0.60), rgba(13,26,74,0.60)),
              url('../assets/images/contact/contact.png') center/cover no-repeat;
  background-attachment: scroll;
}

/* particle canvas */
#faith-particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.banner-content,
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 840px;
}

.banner-content h1,
.hero-content h1 {
  font-size: clamp(2.8rem, 5.5vw, 5.2rem);
  color: #fff;
  margin-bottom: 0.25rem;
  text-shadow: 0 2px 14px rgba(0,0,0,0.45);
}

.hero-content h1 {
  font-size: clamp(2.4rem, 4.5vw, 4.2rem);
}

/* gold accent rule under hero heading */
.banner-content h1::after,
.hero-content h1::after {
  content: '';
  display: block;
  width: 56px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 0.85rem auto 0;
}

.banner .caption,
.hero-content p {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: rgba(255,255,255,0.90);
  margin-bottom: 2.4rem;
  margin-top: 1rem;
  text-shadow: 0 1px 5px rgba(0,0,0,0.35);
  line-height: 1.65;
}

/* ── Mission / Home ────────────────────────────────────────────── */
.mission-statement {
  padding: 5.5rem 2rem;
  background: var(--navy);
}

.mission-header {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 3.5rem;
}

.mission-header h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 1rem;
  color: var(--navy-700);
}

.verse {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 600;
  color: var(--text-muted);
  font-size: 1.25rem;
  line-height: 1.75;
  background: var(--white);
  border-left: none;
  border-top: 4px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.1rem;
  margin: 1rem 0;
  text-align: center;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
  max-width: 1200px;
  margin: 0 auto;
}

.mission-block {
  background: var(--white);
  padding: 2.25rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.mission-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(30,79,232,0.22);
  border-color: var(--navy-600);
}

.mission-block h3 {
  font-size: 1.5rem;
  margin-bottom: 0.85rem;
  color: var(--navy-700);
}

.mission-block p {
  color: var(--text-body);
  line-height: 1.78;
}

.mission-icon {
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.mission-block.highlight {
  border-color: rgba(30,79,232,0.25);
  background: linear-gradient(135deg, #EFF6FF 0%, #fff 100%);
}

.impact-list {
  list-style: none;
  margin: 0.75rem 0 1.25rem;
}

.impact-list li {
  padding: 0.45rem 0;
  color: var(--text-body);
  font-size: 0.97rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.call-to-action {
  grid-column: 1 / -1;
  background: linear-gradient(125deg, var(--navy) 0%, var(--navy-600) 100%);
  color: #fff;
  padding: 3rem 2.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.call-to-action h1,
.call-to-action h2,
.call-to-action h3,
.call-to-action h4 {
  color: #fff;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  margin-bottom: 0.75rem;
}

.call-to-action p {
  color: rgba(255,255,255,0.88);
  margin-bottom: 2rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.call-to-action .btn-donate {
  background: var(--white);
  color: var(--navy-700);
  box-shadow: 0 6px 22px rgba(0,0,0,0.2);
}

.call-to-action .btn-donate:hover { background: var(--off-white); }

/* Progress bar */
.donation-progress { margin-top: 1.5rem; }

.progress-label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-muted);
  display: block;
  margin-bottom: 0.5rem;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: var(--border);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--navy-600), var(--gold));
  border-radius: var(--radius-full);
  width: 0;
  transition: width 1s ease;
}

.progress-amount {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy-600);
  margin-top: 0.45rem;
}

/* ── Highlights (home bottom) ──────────────────────────────────── */
.highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  padding: 3.5rem 2rem 5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(30,79,232,0.22);
  border-color: var(--navy-600);
}

.card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  color: var(--navy-700);
}

.card ul {
  padding-left: 1.2rem;
  color: var(--text-body);
  line-height: 1.85;
}

.card p { color: var(--text-body); line-height: 1.75; }

/* ── About page ────────────────────────────────────────────────── */
.mission-section {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.mission-content { flex: 1; min-width: 280px; }

.mission-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 1rem;
  color: var(--navy-700);
}

.mission-content p {
  font-size: 1.05rem;
  line-height: 1.82;
  margin-bottom: 1.25rem;
  color: var(--text-body);
}

blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--surface-soft);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 1rem 1.4rem;
  margin: 1.75rem 0;
  font-size: 1.3rem;
  line-height: 1.75;
}

blockquote cite {
  display: block;
  margin-top: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--gold);
  text-transform: uppercase;
}

.mission-image {
  flex: 1;
  min-width: 260px;
  max-width: 480px;
}

.mission-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}

/* Timeline */
.history-section {
  padding: 5rem 2rem;
  background: var(--navy);
  text-align: center;
}

.history-section h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 3rem;
  color: var(--navy-700);
}

.timeline {
  max-width: 840px;
  margin: 0 auto;
  text-align: left;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 148px;
  top: 16px;
  bottom: 16px;
  width: 2px;
  background: linear-gradient(180deg, var(--gold) 0%, var(--navy-600) 100%);
  opacity: 0.18;
  pointer-events: none;
}

/* Each row: [year label] [connector dot + card] */
.timeline-item {
  display: grid;
  grid-template-columns: 148px 1fr;
  gap: 0;
  margin-bottom: 1.75rem;
  background: none;
  border: none;
  box-shadow: none;
  padding: 0;
  align-items: start;
  transition: none;
}

.timeline-item:hover {
  transform: none;
  box-shadow: none;
}

.timeline-year {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--gold);
  white-space: normal;
  text-align: right;
  padding: 1.55rem 1.4rem 1.55rem 0;
  line-height: 1.3;
  min-width: unset;
  position: relative;
}

/* dot on the line */
.timeline-year::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 1.75rem;
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  border: 2px solid var(--surface-soft);
}

.timeline-content {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  padding: 1.5rem 1.75rem;
  margin-left: 2rem;
  transition: transform 0.25s, box-shadow 0.25s;
}

.timeline-content:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.timeline-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.55rem;
  color: var(--navy-700);
}

.timeline-content p {
  color: var(--text-body);
  font-size: 0.97rem;
  line-height: 1.72;
}

/* Team */
.team-section {
  padding: 5rem 2rem;
  text-align: center;
  background: var(--gold-light);
}

.team-section h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 2rem;
  color: var(--navy-700);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto 2rem;
}

.team-member {
  background: var(--white);
  padding: 2rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
}

.team-member:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.team-member h3 {
  font-size: 1.25rem;
  color: var(--navy-700);
  margin-bottom: 0.4rem;
}

.team-member p {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
}

/* ── Projects page ─────────────────────────────────────────────── */
.projects-section {
  padding: 5rem 2rem;
  background: var(--navy);
}

.projects-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
}

.project-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 44px rgba(30,79,232,0.26);
  border-color: var(--navy-600);
}

.project-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.project-card:hover img { transform: scale(1.04); }

.project-content {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.project-content h3 {
  font-size: 1.45rem;
  margin-bottom: 0.75rem;
  color: var(--navy-700);
}

.project-content p {
  font-size: 1rem;
  line-height: 1.78;
  color: var(--text-body);
  flex: 1;
}

.impact-stats {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.impact-stats li {
  font-size: 0.88rem;
  color: var(--text-muted);
  background: var(--surface-soft);
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.impact-stats strong {
  color: var(--navy-700);
  font-weight: 800;
}

/* ── Get Involved page ─────────────────────────────────────────── */
.involvement-section {
  padding: 5rem 2rem;
  background: var(--navy);
}

.involvement-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.75rem;
}

.option-card {
  background: var(--white);
  padding: 2.2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}

.option-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.option-card .icon {
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: bold;
}

.option-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  color: var(--navy-700);
}

.option-card > p {
  font-size: 1rem;
  line-height: 1.78;
  color: var(--text-body);
  margin-bottom: 1.25rem;
}

.impact-story {
  background: var(--surface-soft);
  padding: 1rem 1.1rem;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--gold);
  margin-top: auto;
}

.impact-story h4 {
  font-size: 0.97rem;
  color: var(--navy-700);
  margin-bottom: 0.4rem;
}

.impact-story p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ── Blog page ─────────────────────────────────────────────────── */
.blog-posts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.blog-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  transition: transform 0.4s;
}

.blog-card:hover img { transform: scale(1.04); }

.blog-content {
  padding: 1.5rem;
  flex: 1;
}

.blog-content h3 {
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
  color: var(--navy-700);
}

.blog-content p {
  color: var(--text-body);
  font-size: 0.97rem;
  line-height: 1.72;
}

/* ── Donate page ───────────────────────────────────────────────── */
.donation-section {
  padding: 5rem 2rem;
  background: var(--surface-soft);
}

.donation-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2.5rem;
  align-items: start;
}

.donation-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.donation-card h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--navy-700);
}

.security-note {
  color: #16a34a;
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.form-group { margin-bottom: 1.5rem; }

.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.45rem;
  color: var(--text-strong);
}

input[type="text"],
input[type="email"],
input[type="number"],
textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  color: var(--text-strong);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: 'Inter', sans-serif;
}

input:focus, textarea:focus {
  border-color: var(--navy-600);
  box-shadow: 0 0 0 3px rgba(30,79,232,0.18);
  outline: none;
}

.amount-presets {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.amount-option {
  background: var(--surface-soft);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.75rem;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--text-strong);
  font-family: 'Inter', sans-serif;
}

.amount-option:hover,
.amount-option.selected {
  border-color: var(--navy-600);
  color: var(--navy-600);
  background: rgba(30,79,232,0.07);
}

.payment-methods {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.method-option {
  background: var(--surface-soft);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: all 0.2s;
  font-weight: 600;
  color: var(--text-body);
}

.method-option:has(input[type="radio"]:checked) {
  border-color: var(--navy-600);
  background: rgba(30,79,232,0.07);
  color: var(--navy-600);
}

.method-option input[type="radio"] {
  accent-color: var(--navy-600);
  width: 16px;
  height: 16px;
}

.impact-sidebar {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 96px;
}

.impact-sidebar h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--navy-700);
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--gold-light);
}

.impact-item {
  display: flex;
  gap: 0.9rem;
  margin-bottom: 1.1rem;
  padding: 0.9rem 1rem;
  background: var(--surface-soft);
  border-radius: var(--radius-sm);
  align-items: flex-start;
}

.impact-icon {
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.impact-item p {
  font-size: 0.93rem;
  color: var(--text-body);
  line-height: 1.55;
  margin: 0;
}

.form-feedback {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: var(--radius-sm);
  display: none;
}

.form-feedback.success {
  background: #dcfce7;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.form-feedback.error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* ── Contact page ──────────────────────────────────────────────── */
.contact-form-section {
  padding: 5rem 2rem;
  background: var(--surface-soft);
  text-align: center;
}

.form-container {
  max-width: 760px;
  margin: 0 auto;
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  text-align: left;
}

.form-container h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--navy-700);
}

.form-container > p {
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

form label {
  display: block;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
  color: var(--text-strong);
}

.btn-submit {
  background: var(--navy-600);
  color: #fff;
  padding: 0.9rem 2.2rem;
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-weight: 800;
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
  box-shadow: 0 4px 16px rgba(250,204,21,0.30);
  font-family: 'Inter', sans-serif;
}

.btn-submit:hover {
  background: var(--navy-700);
  transform: translateY(-2px);
}

/* Events (legacy, kept for safety) */
.events-hero {
  height: 60vh;
  min-height: 400px;
  background: linear-gradient(rgba(13,26,74,0.60), rgba(13,26,74,0.60)),
              url('../assets/images/shared/events.png') center/cover no-repeat;
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 2rem;
}

.events-hero h1, .events-hero h2, .events-hero h3, .events-hero h4 { color: #fff; }

.events-section { padding: 5rem 2rem; background: var(--surface-soft); }

.events-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
}

.event-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}

.event-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.event-date {
  background: linear-gradient(125deg, var(--navy) 0%, var(--navy-600) 100%);
  color: #fff;
  padding: 1.5rem;
  text-align: center;
  width: 100%;
}

.event-date .day { font-size: 2.4rem; font-weight: 800; }
.event-date .month { font-size: 1.2rem; }

.event-details { padding: 1.5rem; }
.event-details h3 { font-size: 1.5rem; margin-bottom: 0.75rem; color: var(--navy-700); }
.event-details p { font-size: 1rem; line-height: 1.7; color: var(--text-body); margin-bottom: 0.75rem; }
.event-details strong { color: var(--navy-700); font-weight: 700; }

/* ── CTA section ───────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(125deg, var(--navy) 0%, var(--navy-600) 100%);
  color: #fff;
  text-align: center;
  padding: 5.5rem 2rem;
}

.cta-section h1,
.cta-section h2,
.cta-section h3,
.cta-section h4 {
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin-bottom: 1rem;
}

.cta-section p {
  max-width: 660px;
  margin: 0 auto 2.4rem;
  font-size: 1.1rem;
  line-height: 1.72;
  color: rgba(255,255,255,0.88);
}

.cta-section .btn-donate {
  background: var(--gold);
  color: var(--navy);
  font-size: 1.05rem;
  padding: 1rem 2.6rem;
  box-shadow: 0 8px 28px rgba(250,204,21,0.40);
}

.cta-section .btn-donate:hover { background: #FACC15; color: var(--navy); }

/* ── Footer ────────────────────────────────────────────────────── */
footer {
  background: var(--navy);
  color: #cbd5e1;
  text-align: center;
  padding: 2.5rem 2rem;
  font-size: 0.9rem;
}

footer p { margin-bottom: 0.75rem; }

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem 1.4rem;
}

.footer-links a {
  color: #93c5fd;
  font-size: 0.86rem;
  transition: color 0.2s;
}

.footer-links a:hover { color: #fff; }

.footer-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: #cbd5e1;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}

.footer-social a:hover {
  background: #1877f2;
  color: #fff;
}

/* ── Legal pages ───────────────────────────────────────────────── */
.legal-page {
  padding: 5rem 1.5rem;
  background: var(--surface-soft);
}

.legal-container {
  max-width: 860px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 2.5rem;
}

.legal-container h1 { margin-bottom: 1rem; }
.legal-container h2 { margin-top: 2rem; margin-bottom: 0.6rem; font-size: 1.25rem; }
.legal-container p, .legal-container li { line-height: 1.82; color: var(--text-body); }
.legal-container ul { margin-left: 1.25rem; }

/* ── Cookie banner ─────────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 1.25rem;
  transform: translateX(-50%);
  width: min(96%, 740px);
  z-index: 1000;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.cookie-banner-content { padding: 1.25rem 1.4rem; }
.cookie-banner h3 { margin-bottom: 0.35rem; font-size: 1.05rem; color: var(--text-strong); }
.cookie-banner p { margin-bottom: 0.9rem; font-size: 0.9rem; }

.cookie-banner-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  align-items: center;
}

.cookie-policy-link {
  font-weight: 700;
  color: var(--navy-600);
  text-decoration: underline;
}

/* ── Responsive ────────────────────────────────────────────────── */
/* ── Alt donate (Zelle / Cash App) ─────────────────────────────── */
.alt-donate-section {
  background: var(--surface-soft);
  padding: 4rem 1.5rem;
  border-top: 1px solid var(--border);
}

.alt-donate-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.tax-exempt-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #F59E0B15, #1D4ED808);
  border: 1.5px solid rgba(250,204,21,0.35);
  color: var(--text-strong);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
  letter-spacing: 0.01em;
}

.tax-exempt-badge svg {
  color: var(--gold);
  flex-shrink: 0;
}

.alt-donate-title {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.alt-donate-subtitle {
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  font-size: 1rem;
}

.alt-donate-methods {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.alt-donate-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem 2rem 1.75rem;
  max-width: 280px;
  width: 100%;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.alt-donate-card-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.alt-donate-card-header h3 {
  font-size: 1.2rem;
  color: var(--text-strong);
}

.alt-donate-badge {
  display: inline-block;
  padding: 0.2rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.zelle-badge {
  background: #6d1ed4;
  color: #fff;
}

.cashapp-badge {
  background: #00d632;
  color: #000;
}

.mail-badge {
  background: var(--navy-700);
  color: #fff;
}

.mail-address {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  color: var(--navy-700);
}

.mail-address address {
  font-style: normal;
  font-size: 1rem;
  line-height: 1.8;
  text-align: center;
  color: var(--text-body);
}

.mail-address address strong {
  display: block;
  font-size: 1.05rem;
  color: var(--text-strong);
  margin-bottom: 0.1rem;
}

.zelle-qr {
  width: 180px;
  height: 180px;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.alt-donate-instruction {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  text-align: center;
}

@media (max-width: 900px) {
  .highlights { grid-template-columns: 1fr; }
  .donation-container { grid-template-columns: 1fr; }
  .impact-sidebar { position: static; }
}

@media (max-width: 768px) {
  .header-top {
    padding: 0.35rem 1rem;
    gap: 0.5rem;
  }
  .header-social { gap: 0.25rem; }
  .social-icon-btn {
    width: 28px;
    height: 28px;
  }
  .social-icon-btn svg {
    width: 12px;
    height: 12px;
  }
  .btn-donate-header {
    font-size: 0.72rem;
    padding: 0.35rem 0.9rem;
  }
  nav { height: 68px; }
  .logo img { height: 56px; }

  .mobile-menu-toggle {
    display: flex;
    border-color: rgba(255,255,255,0.5);
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: -1.5rem;
    right: -1.5rem;
    z-index: 999;
    flex-direction: column;
    gap: 0.2rem;
    background: var(--navy);
    border-bottom: 1px solid rgba(250,204,21,0.2);
    padding: 1rem 1.5rem 1.25rem;
    box-shadow: var(--shadow-md);
  }

  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }

  .nav-links a {
    display: block;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    width: 100%;
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
  }

  .nav-links a:hover,
  .nav-links a.active {
    color: var(--gold);
    background: rgba(250,204,21,0.10);
    transform: none;
  }

  .nav-links a[href="donate.html"] {
    text-align: center;
    margin-top: 0.5rem;
    color: var(--navy);
  }

  .nav-links a[href="donate.html"]:hover {
    color: var(--navy);
    transform: none;
  }

  .mission-section { flex-direction: column; gap: 2rem; padding: 3.5rem 1.5rem; }
  .mission-image { max-width: 100%; }

  .timeline::before { display: none; }
  .timeline-item { grid-template-columns: 1fr; }
  .timeline-year {
    text-align: left;
    padding: 0.5rem 0 0.25rem;
    font-size: 1rem;
  }
  .timeline-year::after { display: none; }
  .timeline-content { margin-left: 0; }

  .team-grid { grid-template-columns: 1fr 1fr; }
  .projects-container { grid-template-columns: 1fr; }
  .involvement-container { grid-template-columns: 1fr; }
  .events-container { grid-template-columns: 1fr; }

  .donation-card, .form-container { padding: 1.5rem; }
}

@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }

  .btn-donate, .btn-secondary, .btn-submit {
    padding: 0.75rem 1.6rem;
    font-size: 0.95rem;
  }

  .cta-section { padding: 4rem 1.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition: none !important;
    animation: none !important;
  }
}


/* ── Donation frequency toggle ─────────────────────────────────── */
.frequency-toggle-wrap {
  margin-bottom: 2rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--border);
}

.frequency-toggle {
  display: inline-flex;
  background: var(--surface-soft);
  border-radius: var(--radius-full);
  padding: 4px;
  border: 1.5px solid var(--border);
  margin-bottom: 0.75rem;
}

.freq-btn {
  background: transparent;
  border: none;
  border-radius: var(--radius-full);
  padding: 0.55rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.22s;
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
}

.freq-btn.active {
  background: var(--navy-600);
  color: #fff;
  box-shadow: 0 2px 10px rgba(250,204,21,0.30);
}

.freq-note {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
}

/* ── Google Maps section ───────────────────────────────────────── */
.maps-section {
  padding: 5rem 2rem;
  background: var(--surface-soft);
  text-align: center;
}

.maps-section h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--navy-700);
  margin-bottom: 0.6rem;
}

.maps-section > p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 2.25rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.maps-embed {
  max-width: 920px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.maps-embed iframe {
  width: 100%;
  height: 460px;
  border: none;
  display: block;
}

@media (max-width: 600px) {
  .maps-embed iframe { height: 300px; }
  .freq-btn { padding: 0.5rem 1rem; font-size: 0.88rem; }
}

/* ── Church Story Cards ────────────────────────────────────────── */
.church-stories-section {
  background: var(--off-white);
  padding: 5rem 2rem;
}

.church-stories-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.church-stories-section .section-eyebrow {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.church-stories-section > .church-stories-inner > h2 {
  text-align: center;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--navy);
  margin-bottom: 3.5rem;
}

.story-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  margin-bottom: 3rem;
}
.story-card:last-child { margin-bottom: 0; }

.story-card-header {
  padding: 2rem 2.5rem 1.5rem;
  border-bottom: 1px solid var(--border);
}

.story-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 0.28rem 0.8rem;
  border-radius: var(--radius-full);
  background: var(--gold-light);
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.story-tag.urgent {
  background: var(--gold);
  color: var(--navy);
}

.story-card-header h3 {
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  color: var(--navy);
  margin-bottom: 0.45rem;
  line-height: 1.25;
}

.story-card-header p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.story-gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 3px;
}

.story-gallery img {
  width: 100%;
  height: 195px;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.story-gallery img:hover { transform: scale(1.04); }

.story-body {
  padding: 2rem 2.5rem;
}

.story-body p {
  color: var(--text-body);
  line-height: 1.85;
  margin-bottom: 1rem;
  font-size: 1.02rem;
}
.story-body p:last-child { margin-bottom: 0; }

.story-body .story-divider {
  border: none;
  border-top: 2px solid var(--gold);
  width: 48px;
  margin: 1.5rem 0;
  opacity: 0.5;
}

.fundraising-box {
  margin: 1.75rem 2.5rem 2rem;
  background: var(--navy);
  border-radius: var(--radius-md);
  padding: 1.75rem 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
}

.fundraising-box .goal-text { flex: 1; min-width: 200px; }

.fundraising-box .goal-label {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.fundraising-box .goal-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.fundraising-box .goal-desc {
  color: rgba(255,255,255,0.68);
  font-size: 0.9rem;
  margin-top: 0.35rem;
  line-height: 1.5;
}

@media (max-width: 700px) {
  .story-gallery { grid-template-columns: repeat(2, 1fr); }
  .story-gallery img { height: 160px; }
  .story-card-header,
  .story-body { padding: 1.5rem; }
  .fundraising-box { margin: 1.25rem 1.5rem 1.5rem; }
}

/* ── Color blocking: dark section text overrides ───────────────── */

/* mission-statement (home) on dark navy */
.mission-statement .mission-header h2 { color: #fff; }
.mission-statement .verse {
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.88);
  font-size: 1.3rem;
}
.mission-statement .mission-block {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.12);
}
.mission-statement .mission-block h3 { color: #fff; }
.mission-statement .mission-block p,
.mission-statement .impact-list li { color: rgba(255,255,255,0.82); }
.mission-statement .mission-block.highlight {
  background: rgba(0,29,61,0.55);
  border-color: rgba(250,204,21,0.35);
}
.mission-statement .progress-label { color: rgba(255,255,255,0.65); }
.mission-statement .progress-amount { color: var(--gold-light); }
.mission-statement .call-to-action {
  background: linear-gradient(135deg, #FACC15 0%, #EAB308 100%);
}
.mission-statement .call-to-action h3 { color: var(--navy); }
.mission-statement .call-to-action p { color: rgba(13,26,74,0.88); }
.mission-statement .call-to-action .btn-donate {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.28);
}
.mission-statement .call-to-action .btn-donate:hover { background: var(--navy-700); }

/* history-section (about) on dark navy */
.history-section h2 { color: #fff; }
.history-section .timeline-content {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.12);
}
.history-section .timeline-content h3 { color: #fff; }
.history-section .timeline-content p { color: rgba(255,255,255,0.82); }
.history-section .timeline-year::after { border-color: var(--navy); }

/* projects-section on dark navy — cards stay white, they pop */
.projects-section .project-content h3 { color: var(--navy-700); }

/* involvement-section on dark navy */
.involvement-section .option-card {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.12);
}
.involvement-section .option-card h3 { color: #fff; }
.involvement-section .option-card > p { color: rgba(255,255,255,0.82); }
.involvement-section .option-card .icon { color: var(--gold-light); }
.involvement-section .impact-story { background: rgba(255,255,255,0.06); }
.involvement-section .impact-story h4 { color: rgba(255,255,255,0.90); }
.involvement-section .impact-story p { color: rgba(255,255,255,0.65); }

/* highlights wrapper (home bottom) */
.highlights-wrap { background: var(--off-white); }

/* promise section (about page) — warm break between dark sections */
.promise-section {
  background: var(--gold-light);
  padding: 2rem 2rem 5rem;
  text-align: center;
}

.promise-inner {
  max-width: 700px;
  margin: 0 auto;
}

.promise-section h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--navy-700);
  margin-bottom: 1rem;
}

.promise-section p {
  font-size: 1.05rem;
  line-height: 1.82;
  color: var(--text-body);
  margin-bottom: 0.75rem;
}

.promise-closing {
  font-weight: 700;
  margin-top: 1.25rem;
  color: var(--navy-700);
}

/* ── Ebook section (about page) ────────────────────────────────── */
.ebook-section {
  background: var(--navy);
  padding: 5rem 2rem;
}

.ebook-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4rem;
  align-items: center;
}

.ebook-cover-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.ebook-cover {
  width: 280px;
  max-width: 100%;
  border-radius: var(--radius-md);
  box-shadow: 14px 14px 40px rgba(0,0,0,0.55), -4px 0 12px rgba(0,0,0,0.25);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  display: block;
}

.ebook-cover:hover {
  transform: rotate(-2deg) scale(1.04);
  box-shadow: 20px 20px 52px rgba(0,0,0,0.65), -4px 0 14px rgba(0,0,0,0.3);
}

.ebook-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: #fff;
  margin-bottom: 1rem;
}

.ebook-text p {
  font-size: 1.05rem;
  line-height: 1.82;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
}

/* ── Ebook promo (homepage) ────────────────────────────────────── */
.ebook-promo {
  background: linear-gradient(125deg, var(--navy-700) 0%, var(--navy) 100%);
  padding: 4.5rem 2rem;
}

.ebook-promo-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3.5rem;
  align-items: center;
}

.ebook-promo-cover-wrap {
  display: flex;
  justify-content: center;
}

.ebook-promo-cover {
  width: 200px;
  max-width: 100%;
  border-radius: var(--radius-md);
  box-shadow: 12px 12px 36px rgba(0,0,0,0.5), -3px 0 10px rgba(0,0,0,0.2);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  display: block;
}

.ebook-promo-cover:hover {
  transform: rotate(-2deg) scale(1.04);
  box-shadow: 16px 16px 44px rgba(0,0,0,0.6);
}

.ebook-promo-text h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  color: #fff;
  margin-bottom: 1rem;
}

.ebook-promo-text p {
  font-size: 1.05rem;
  line-height: 1.78;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
}

.ebook-promo-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.ebook-promo-actions .btn-secondary {
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}

.ebook-promo-actions .btn-secondary:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
}

@media (max-width: 900px) {
  .ebook-inner,
  .ebook-promo-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .ebook-cover { width: 220px; margin: 0 auto; }
  .ebook-promo-cover { width: 180px; margin: 0 auto; }
  .ebook-promo-actions { justify-content: center; }
}
