/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #1B3A5C;
  --navy-mid:   #2A5080;
  --blue:       #3B82C4;
  --blue-light: #7FB3DC;
  --lavender:   #C5CAF0;
  --sky:        #A8D8F0;
  --petal:      #E8D5D5;
  --cream:      #FAF8F5;
  --white:      #FFFFFF;
  --ink:        #1a1a1a;
  --muted:      #6B7280;
  --border:     rgba(27,58,92,0.12);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;

  --max-w: 1100px;
  --section-gap: 7rem;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}

.fade-up { animation: fadeUp 0.8s ease forwards; }
.fade-up-1 { animation-delay: 0.1s; opacity: 0; }
.fade-up-2 { animation-delay: 0.25s; opacity: 0; }
.fade-up-3 { animation-delay: 0.4s; opacity: 0; }
.fade-up-4 { animation-delay: 0.55s; opacity: 0; }

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.5rem 0;
  background: rgba(250,248,245,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
  transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
}
.nav.scrolled {
  background: rgba(250,248,245,0.98);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
  padding: 1rem 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo-mark {
  width: 44px;
  height: 36px;
  background: var(--navy);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 8px;
}
.nav-logo-mark svg { width: 28px; height: 18px; fill: none; stroke: white; stroke-width: 2.2; }
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.01em;
  line-height: 1.2;
}
.nav-logo-text span {
  display: block;
  font-size: 0.7rem;
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--blue); }
.nav-cta {
  background: var(--navy);
  color: white !important;
  padding: 0.55rem 1.3rem;
  border-radius: 100px;
  font-size: 0.78rem !important;
  letter-spacing: 0.07em !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--navy-mid) !important; color: white !important; }

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 8rem 2rem 6rem;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 20%, rgba(197,202,240,0.35) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(168,216,240,0.25) 0%, transparent 60%),
    var(--cream);
  z-index: 0;
}

/* decorative petal shapes */
.hero-bg::before {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  background: rgba(197,202,240,0.18);
  top: -80px;
  right: -60px;
  animation: float 8s ease-in-out infinite;
}
.hero-bg::after {
  content: '';
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 40% 60% 30% 70% / 60% 40% 60% 40%;
  background: rgba(168,216,240,0.15);
  bottom: 60px;
  left: -40px;
  animation: float 10s ease-in-out infinite reverse;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 2rem;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(59,130,196,0.25);
  border-radius: 100px;
  background: rgba(59,130,196,0.06);
}
.hero-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue);
  display: inline-block;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--navy);
  letter-spacing: -0.01em;
  margin-bottom: 1.75rem;
}
.hero-headline em {
  font-style: italic;
  font-weight: 300;
  color: var(--blue);
}

.hero-sub {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto 3rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: white;
  padding: 0.9rem 2rem;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--navy-mid); transform: translateY(-1px); }
.btn-primary svg { width: 16px; height: 16px; stroke: white; fill: none; stroke-width: 2; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--navy);
  padding: 0.9rem 2rem;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border: 1px solid var(--border);
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}
.btn-ghost:hover { border-color: var(--blue-light); background: rgba(59,130,196,0.05); transform: translateY(-1px); }

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0.4;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  animation: fadeIn 1s 1s ease forwards;
  opacity: 0;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--navy), transparent);
  animation: float 1.8s ease-in-out infinite;
}

/* ── Charlie's Story Preview ── */
.story-section {
  padding: var(--section-gap) 0;
}
.story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.story-visual {
  position: relative;
}
.story-card {
  background: var(--navy);
  border-radius: 24px;
  padding: 3rem;
  color: white;
  position: relative;
  overflow: hidden;
}
.story-card::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.story-card::after {
  content: '';
  position: absolute;
  bottom: -20px; left: -30px;
  width: 140px; height: 140px;
  border-radius: 50%;
  background: rgba(197,202,240,0.08);
}
.story-card-quote {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.4;
  color: #ffffff !important;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.story-card-attr {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #C5CAF0 !important;
  position: relative;
  z-index: 1;
}
.story-card, .story-card * { color: #ffffff !important; }
.story-card-attr { color: #C5CAF0 !important; }
.story-float-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1rem 1.25rem;
  box-shadow: 0 8px 32px rgba(27,58,92,0.1);
}
.story-float-badge p {
  font-size: 0.78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}
.story-float-badge strong {
  font-size: 1.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy);
}

.story-text { }
.eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--blue);
  display: inline-block;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 1.25rem;
}
.section-title em { font-style: italic; color: var(--blue); }

.section-body {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* ── Stats ── */
.stats-section {
  padding: 5rem 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 80% 50%, rgba(59,130,196,0.2) 0%, transparent 60%);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  z-index: 1;
}
.stat-item {
  padding: 2.5rem 2rem;
  border-right: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 300;
  color: #ffffff !important;
  line-height: 1;
  margin-bottom: 0.4rem;
  text-align: center !important;
  width: 100%;
}
.stat-num span {
  font-size: 1.4rem;
  color: #C5CAF0 !important;
}
.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75) !important;
  line-height: 1.5;
  text-align: center !important;
  width: 100%;
  margin: 0 auto;
}
.stat-source {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.35) !important;
  margin-top: 0.3rem;
  letter-spacing: 0.04em;
  text-align: center !important;
  width: 100%;
}
.stat-item { text-align: center !important; }
.stat-item * { text-align: center !important; color: inherit; }
.stats-section, .stats-section * { color: #ffffff !important; }
.stat-label { color: rgba(255,255,255,0.75) !important; }
.stat-source { color: rgba(255,255,255,0.35) !important; }

/* ── What is CMV ── */
.cmv-section {
  padding: var(--section-gap) 0;
}
.cmv-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.cmv-text { }
.cmv-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.cmv-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.cmv-card {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}
.cmv-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: box-shadow 0.2s, transform 0.2s;
}
.cmv-card:hover { box-shadow: 0 8px 32px rgba(27,58,92,0.08); transform: translateY(-2px); }
.cmv-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon-blue   { background: rgba(59,130,196,0.1); }
.icon-lavender { background: rgba(197,202,240,0.4); }
.icon-sky    { background: rgba(168,216,240,0.4); }
.cmv-card-icon svg { width: 20px; height: 20px; stroke-width: 1.5; fill: none; }
.icon-blue svg   { stroke: var(--blue); }
.icon-lavender svg { stroke: var(--navy-mid); }
.icon-sky svg    { stroke: var(--navy); }
.cmv-card-content h4 {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.3rem;
}
.cmv-card-content p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── Mission ── */
.mission-section {
  padding: var(--section-gap) 0;
  background: white;
}
.mission-inner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.mission-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 300;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 1.5rem;
}
.mission-headline em { font-style: italic; color: var(--blue); }
.mission-body {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 3rem;
}
.mission-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
  text-align: left;
}
.pillar {
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--cream);
}
.pillar-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--lavender);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.pillar h4 {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.4rem;
  letter-spacing: 0.01em;
}
.pillar p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── CTA ── */
.cta-section {
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 30% 50%, rgba(197,202,240,0.3) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 80% 40%, rgba(168,216,240,0.2) 0%, transparent 55%),
    var(--cream);
}
.cta-content { position: relative; z-index: 1; }
.cta-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 300;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.cta-headline em { font-style: italic; }
.cta-sub {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 2.5rem;
  font-weight: 300;
}
.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Footer ── */
footer {
  background: var(--navy);
  padding: 3.5rem 0 2rem;
  color: rgba(255,255,255,0.6);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand { }
.footer-logo-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.75rem;
}
.footer-tagline {
  font-size: 0.85rem;
  line-height: 1.7;
  max-width: 280px;
  color: rgba(255,255,255,0.5);
}
.footer-col h5 {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.6rem; }
.footer-col a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-col a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
}
.footer-charlie {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.9rem;
  color: rgba(197,202,240,0.7);
}

/* ── Divider ── */
.divider {
  width: 40px;
  height: 1px;
  background: var(--blue-light);
  margin: 1.5rem 0;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .story-inner,
  .cmv-inner { grid-template-columns: 1fr; gap: 3rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border: none; }
  .mission-pillars { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .nav-links { gap: 1.5rem; }
  .story-float-badge { display: none; }
}

@media (max-width: 640px) {
  .nav-links li:not(:last-child) { display: none; }
  .stats-grid { grid-template-columns: 1fr; }

}


/* ── Subpage styles (Our Story, Donations, Resources etc.) ── */
.page-header {
  padding: 10rem 0 4rem;
  text-align: center;
  background:
    radial-gradient(ellipse 70% 60% at 60% 20%, rgba(197,202,240,0.3) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(168,216,240,0.2) 0%, transparent 55%),
    var(--cream);
}
.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--navy);
  margin-bottom: 1rem;
}
.page-header h1 em { font-style: italic; color: var(--blue); }
.page-header p {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
  font-weight: 300;
  line-height: 1.75;
}
.page-content {
  max-width: 740px;
  margin: 0 auto;
  padding: 5rem 2rem var(--section-gap);
}
.page-content h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--navy);
  margin: 2.5rem 0 0.75rem;
}
.page-content h2 em { font-style: italic; color: var(--blue); }
.page-content p {
  font-size: 1rem;
  color: #444;
  line-height: 1.85;
  margin-bottom: 1.25rem;
  text-align: left;
}
.page-content ul {
  margin: 0 0 1.25rem 1.5rem;
  color: #444;
  line-height: 1.85;
}
.page-content ul li { margin-bottom: 0.4rem; font-size: 1rem; }
.page-content strong { color: var(--navy); font-weight: 500; }
.page-content .footnotes {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.6;
}
.page-content .footnotes p { font-size: 0.78rem; color: var(--muted); margin-bottom: 0.4rem; }
body.subpage { background: var(--cream); }
body.subpage .hero-spacer { height: 80px; }
/* ── Footer white text fix ── */
footer, footer * { color: #ffffff !important; }
.footer-tagline { color: rgba(255,255,255,0.6) !important; }
.footer-col h5 { color: rgba(255,255,255,0.4) !important; }
.footer-col a { color: rgba(255,255,255,0.6) !important; }
.footer-col a:hover { color: #ffffff !important; }
.footer-bottom { color: rgba(255,255,255,0.35) !important; }
.footer-charlie { color: rgba(197,202,240,0.8) !important; }

/* ── Story section side by side ── */
.story-inner {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 3rem !important;
  align-items: center !important;
}
.story-visual {
  width: 100% !important;
}
.story-text {
  width: 100% !important;
}

/* ── Butterfly logo on all pages ── */
.nav-logo-mark {
  width: 48px !important;
  height: 36px !important;
  background: var(--navy) !important;
  border-radius: 10px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 5px 6px !important;
}
.nav-logo-mark svg {
  width: 36px !important;
  height: 26px !important;
  fill: none !important;
  stroke: white !important;
  stroke-width: 2.8 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
}
/* Hide broken image if present */
.nav-logo-mark img { display: none !important; }

/* ── Hide broken butterfly image on subpages ── */
img[src*="BUTTERFLY_URL_HERE"] { display: none !important; }
img[alt="The Hope Initiative butterfly"] { display: none !important; }

/* ── Mobile optimisation ── */
@media (max-width: 768px) {

  /* Nav */
  .nav-links li:not(:last-child) { display: none !important; }
  .nav-cta {
    font-size: 0.72rem !important;
    padding: 0.45rem 0.9rem !important;
    white-space: nowrap !important;
  }
  .nav-inner { padding: 0 1rem !important; }
  .nav-logo-text { font-size: 0.85rem !important; }

  /* Hero */
  .hero { padding: 5rem 1.25rem 3rem !important; }
  .hero-headline { font-size: 2.4rem !important; }
  .hero-sub { font-size: 0.9rem !important; }
  .hero-actions { flex-direction: column !important; align-items: center !important; }
  .btn-primary, .btn-ghost { width: 100% !important; justify-content: center !important; }

  /* Story section */
  .story-inner {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  .story-card { padding: 2rem !important; }
  .story-card-quote { font-size: 1.2rem !important; }
  .story-float-badge { display: none !important; }

  /* Stats */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .stat-num { font-size: 2rem !important; }
  .stat-label { font-size: 0.75rem !important; }

  /* CMV section */
  .cmv-inner {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  .cmv-cards {
    grid-template-columns: 1fr !important;
  }

  /* Mission pillars */
  .mission-pillars {
    grid-template-columns: 1fr !important;
  }

  /* Section padding */
  .story-section,
  .cmv-section,
  .mission-section,
  .cta-section { padding: 3rem 1.25rem !important; }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
  .footer-bottom {
    flex-direction: column !important;
    gap: 0.5rem !important;
    text-align: center !important;
  }

  /* General */
  .container { padding: 0 1.25rem !important; }
  .section-title { font-size: 1.8rem !important; }
}

/* ── Mobile nav fix ── */
@media (max-width: 768px) {
  /* Story stack */
  .story-inner {
    display: flex !important;
    flex-direction: column !important;
    gap: 2rem !important;
  }
  .story-visual, .story-text {
    width: 100% !important;
    min-width: 0 !important;
  }

  /* Nav — hide all links except Support Us, fix overflow */
  .nav-links li { display: none !important; }
  .nav-links li:last-child {
    display: block !important;
  }
  .nav-links {
    gap: 0 !important;
  }
  .nav-cta {
    font-size: 0.72rem !important;
    padding: 0.45rem 1rem !important;
    white-space: nowrap !important;
    display: block !important;
  }
  .nav-inner {
    padding: 0 1rem !important;
  }
  .nav-logo-text {
    font-size: 0.82rem !important;
  }
  .nav-logo-text span {
    font-size: 0.62rem !important;
  }
}

/* ── Our Story page styles ── */
.story-opening {
  font-family: var(--font-display) !important;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem) !important;
  font-weight: 300 !important;
  font-style: italic !important;
  color: var(--navy) !important;
  line-height: 1.3 !important;
  margin-bottom: 2rem !important;
}
.story-callout {
  background: var(--navy) !important;
  border-radius: 16px !important;
  padding: 2rem 2.5rem !important;
  margin: 2.5rem 0 !important;
}
.story-callout p {
  font-family: var(--font-display) !important;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem) !important;
  font-style: italic !important;
  color: #ffffff !important;
  line-height: 1.5 !important;
  margin: 0 !important;
  text-align: center !important;
}
.story-section-heading {
  margin: 3rem 0 1.25rem !important;
  padding-top: 2rem !important;
  border-top: 1px solid var(--border) !important;
}
.story-section-heading h2 {
  font-family: var(--font-display) !important;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem) !important;
  font-weight: 300 !important;
  color: var(--navy) !important;
  margin: 0 !important;
}
.story-section-heading h2 em {
  font-style: italic !important;
  color: var(--blue) !important;
}
.story-list {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.75rem !important;
  margin: 1.25rem 0 1.75rem !important;
  padding: 0 !important;
  list-style: none !important;
}
.story-list-item {
  display: flex !important;
  align-items: flex-start !important;
  gap: 1rem !important;
}
.story-list-dot {
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
  background: var(--blue) !important;
  flex-shrink: 0 !important;
  margin-top: 0.6rem !important;
  display: block !important;
}
.story-list-item p {
  font-size: 1rem !important;
  color: #444 !important;
  line-height: 1.7 !important;
  margin: 0 !important;
  text-align: left !important;
}
.story-closing {
  margin-top: 3rem !important;
  padding: 2.5rem !important;
  text-align: center !important;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(197,202,240,0.25) 0%, transparent 70%) !important;
  border-radius: 16px !important;
}
.story-closing p {
  font-family: var(--font-display) !important;
  font-size: clamp(1.4rem, 3vw, 2rem) !important;
  font-weight: 300 !important;
  font-style: italic !important;
  color: var(--navy) !important;
  line-height: 1.4 !important;
  margin: 0.2rem 0 !important;
}


footer + footer, .site-footer { display: none !important; }

/* Hide WordPress theme logo image */
.site-logo img, 
.custom-logo, 
.custom-logo-link img,
header img:not(.nav-logo-mark img) { 
  display: none !important; 
}

.custom-logo-link img {
  content: url('https://hopeinitiativeforcmv.com/wp-content/uploads/2026/03/HopeInitiative_Butterfly_NavyWhite-1.png') !important;
  width: 44px !important;
  height: 28px !important;
}

/* ── Butterfly logo on all pages ── */
.custom-logo, .custom-logo-link img { display: none !important; }
.nav-logo-mark {
  display: flex !important;
  width: 44px !important;
  height: 28px !important;
  background: var(--navy) !important;
  border-radius: 8px !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 4px !important;
  overflow: hidden !important;
}
.nav-logo-mark svg { display: none !important; }
.nav-logo-mark::after {
  content: '' !important;
  display: block !important;
  width: 40px !important;
  height: 30px !important;
  background-image: url('https://hopeinitiativeforcmv.com/wp-content/uploads/2026/03/HopeInitiative_Butterfly_Transparent.png') !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
}

/* ── Footer full width fix ── */
footer {
  width: 100vw !important;
  position: relative !important;
  left: 50% !important;
  right: 50% !important;
  margin-left: -50vw !important;
  margin-right: -50vw !important;
}