@import url('https://fonts.googleapis.com/css2?family=Abel&family=Open+Sans:wght@400;600&display=swap');

/* ─── Variables ─────────────────────────────────────── */
:root {
  --primary:       #4899E8;
  --primary-dark:  #2060A7;
  --primary-light: #7ab8f0;
  --navy:          #1a3a5c;
  --header-bg:     #32373c;
  --bg-light:      #f5f7fa;
  --text-muted:    #5a6a7a;
  --text:          #1a2a3a;
  --header-h:      84px;
  --font-heading:  'Abel', sans-serif;
  --font-body:     'Open Sans', sans-serif;
}

/* ─── Reset ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: var(--header-h);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); }

/* ─── Layout ─────────────────────────────────────────── */
.container    { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }
.container-sm { max-width: 860px;  margin: 0 auto; padding: 0 1.5rem; }
.section-pad    { padding: 5rem 1.5rem; }
.section-pad-sm { padding: 3.5rem 1.5rem; }

/* ─── Grid ───────────────────────────────────────────── */
.grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.grid-2col-left {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: start;
}
.grid-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.grid-4col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

/* ─── Typography ─────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.2; color: var(--navy); }

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2rem);
  color: var(--navy);
  margin-bottom: 1.25rem;
}
.section-subtitle {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 1.05rem;
  max-width: 640px;
}
.prose-body p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.1rem;
  font-size: 1.02rem;
}

/* ─── Buttons ────────────────────────────────────────── */
.btn-primary, .btn-white, .btn-outline {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.75rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.btn-primary  { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); color: #fff; }
.btn-white    { background: #fff; color: var(--primary); border-color: #fff; }
.btn-white:hover { background: var(--primary-dark); color: #fff; border-color: var(--primary-dark); }
.btn-outline  { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }

/* ─── Header / Nav ───────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}
.site-header.scrolled {
  background: var(--header-bg);
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

.nav-inner {
  padding: 0 2rem;
  height: var(--header-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo img {
  height: 56px;
  width: auto;
}
.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.3;
  max-width: 220px;
  opacity: 0.9;
}

/* Center links */
.nav-center {
  display: flex;
  justify-content: center;
}
.nav-center ul {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-center a {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  letter-spacing: 0.07em;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.15s;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}
.nav-center a:hover,
.nav-center a.active {
  color: #fff;
  border-bottom-color: var(--primary);
}

/* Right CTAs */
.nav-right {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}
.nav-cta {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.5rem 1.4rem;
  border-radius: 3px;
  border: 1.5px solid rgba(255,255,255,0.6);
  color: #fff;
  transition: background 0.2s, border-color 0.2s;
}
.nav-cta:hover { border-color: #fff; background: rgba(255,255,255,0.1); color: #fff; }
.nav-cta.filled { background: var(--primary); border-color: var(--primary); }
.nav-cta.filled:hover { background: var(--primary-dark); border-color: var(--primary-dark); }

/* Mobile hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}

/* Mobile menu */
.nav-mobile {
  display: none;
  background: var(--header-bg);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1rem 1.5rem 1.5rem;
}
.nav-mobile.open { display: block; }
.nav-mobile a {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  text-transform: uppercase;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: color 0.15s;
}
.nav-mobile a:hover { color: #fff; }
.nav-mobile .nav-cta {
  display: block;
  text-align: center;
  margin-top: 0.75rem;
  border-bottom: none;
  padding: 0.65rem 1rem;
}

/* ─── Footer ─────────────────────────────────────────── */
.site-footer {
  background: var(--header-bg);
  color: #fff;
  padding: 2rem 0 0;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 1.5rem;
  align-items: center;
}
.footer-brand img {
  height: 70px;
  width: auto;
  margin-bottom: 1rem;
}
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  max-width: 280px;
  margin-bottom: 1.25rem;
}
.footer-social a {
  display: inline-block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  margin-right: 1rem;
  transition: color 0.15s;
}
.footer-social a:hover { color: #fff; }

.footer-grid .footer-col:last-child { text-align: right; }
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.55rem; }
.footer-col ul a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.15s;
}
.footer-col ul a:hover { color: #fff; }
.footer-col .donate-link {
  display: inline-block;
  background: transparent;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.7rem 2.2rem;
  border-radius: 3px;
  border: 1.5px solid rgba(255,255,255,0.6);
  transition: background 0.2s, border-color 0.2s;
}
.footer-col .donate-link:hover { background: rgba(255,255,255,0.1); border-color: #fff; color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.25rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  margin: 0;
}

/* ─── Page Hero ──────────────────────────────────────── */
.page-hero {
  margin-top: calc(-1 * var(--header-h));
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,30,60,0.6);
}
.page-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: calc(var(--header-h) + 3rem) 1.5rem 4rem;
}
.page-hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  color: #fff;
  letter-spacing: 0.04em;
}

/* Home hero (taller) */
.home-hero {
  margin-top: calc(-1 * var(--header-h));
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-size: cover;
  background-position: 60% center;
  background-attachment: fixed;
}
.home-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.55) 45%, rgba(0,0,0,0.12) 100%);
}
.home-hero-content {
  position: relative;
  z-index: 1;
  padding: calc(var(--header-h) + 3rem) 3rem 4rem 15%;
  max-width: 720px;
  width: 100%;
  text-align: left;
}
.hero-quote {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  color: #fff;
  line-height: 1.25;
  margin-bottom: 0.75rem;
}
.hero-attr {
  color: rgba(255,255,255,0.8);
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
}

/* ─── DNA Split Section ──────────────────────────────── */
.dna-split-section {
  display: flex;
  min-height: 400px;
}
.dna-split-img {
  flex: 0 0 56%;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%);
}
.dna-split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.dna-split-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 3rem 3rem 4rem;
  background: #dde8f0;
}
.dna-split-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  color: var(--navy);
  margin-bottom: 1.75rem;
  line-height: 1.3;
}

/* ─── Lead Paragraph ─────────────────────────────────── */
.lead-para {
  font-size: 1.25rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 2.5rem;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

/* ─── Pillars (large) ────────────────────────────────── */
.pillars-lg {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}
.pillar-lg {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text-muted);
  max-width: 150px;
  text-align: center;
  transition: opacity 0.2s;
}
.pillar-lg:hover { opacity: 0.75; }
.pillar-lg img {
  width: 120px;
  height: 120px;
  object-fit: contain;
}
.pillar-lg span {
  font-size: 1.1rem;
  line-height: 1.4;
}

/* ─── Chalk Background ───────────────────────────────── */
.chalk-bg {
  background-image: url('/images/chalk-texture.jpg');
  background-size: cover;
  background-position: center;
}

/* ─── 100% Percent Ring ──────────────────────────────── */
.percent-label {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--navy);
  margin-bottom: 2rem;
}
.percent-ring-wrap {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto 1.75rem;
}
.percent-ring {
  width: 200px;
  height: 200px;
}
.percent-ring-track {
  fill: none;
  stroke: rgba(72,153,232,0.2);
  stroke-width: 8;
}
.percent-ring-fill {
  fill: none;
  stroke: var(--primary);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 534;
  stroke-dashoffset: 534;
  transform: rotate(-90deg);
  transform-origin: 100px 100px;
  transition: stroke-dashoffset 2s ease-out;
}
.percent-ring-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 2.8rem;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* ─── 6-Image Grid ───────────────────────────────────── */
.img-grid-6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.img-card-6 {
  position: relative;
  overflow: hidden;
  display: block;
  aspect-ratio: 4/3;
  text-decoration: none;
}
.img-card-6 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}
.img-card-6:hover img { transform: scale(1.05); }
.img-card-6-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,40,100,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.img-card-6:hover .img-card-6-overlay { opacity: 1; }
.img-card-6-overlay span {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 0 1rem;
}

/* ─── Donate Banner ──────────────────────────────────── */
.donate-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--primary-dark) 100%);
  padding: 4rem 1.5rem;
  text-align: center;
}
.donate-banner h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2rem);
  color: #fff;
  margin-bottom: 0.75rem;
}
.donate-banner p {
  color: rgba(255,255,255,0.85);
  font-size: 1.25rem;
  margin-bottom: 2rem;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.blue-band {
  background: var(--primary);
  padding: 3rem 1.5rem;
  text-align: center;
}
.blue-band p {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 3vw, 1.6rem);
  color: #fff;
  max-width: 600px;
  margin: 0 auto 1.75rem;
  line-height: 1.4;
}

/* ─── Cards ──────────────────────────────────────────── */
.card {
  background: #fff;
  border-radius: 8px;
  padding: 1.75rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}
.home-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  display: block;
  text-decoration: none;
  height: 280px;
}
.home-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.home-card:hover img { transform: scale(1.05); }
.home-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.05) 55%);
}
.home-card-label {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  font-family: var(--font-heading);
  color: #fff;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
}

.story-card {
  background: #fff;
  border-radius: 8px;
  padding: 1.75rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  display: flex;
  flex-direction: column;
}
.story-tag {
  background: var(--bg-light);
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
}
.story-quote {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 0.97rem;
  font-style: italic;
  margin-bottom: 1.25rem;
  flex: 1;
}
.story-footer {
  border-top: 1px solid #eef1f4;
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.story-name { font-family: var(--font-heading); color: var(--navy); font-size: 1rem; }
.story-outcome { font-size: 0.8rem; color: #4caf82; font-weight: 600; }

/* ─── Symptom / Solution / Impact Cards ──────────────── */
/* ─── Disease Stage Bands ────────────────────────────── */
.stage-band {
  padding: 3.5rem 1.5rem;
}
.stage-band h3 {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  color: #fff;
  margin-bottom: 1.25rem;
}
.stage-band ul {
  padding-left: 1.5rem;
  max-width: 760px;
  margin: 0 auto;
}
.stage-band li {
  line-height: 1.85;
  color: rgba(255,255,255,0.92);
  margin-bottom: 0.5rem;
}

/* ─── Parallax Divider ───────────────────────────────── */
.parallax-divider {
  height: 360px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.symptom-card {
  background: #fff;
  padding: 1.25rem 1.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--primary);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  line-height: 1.6;
  color: var(--text-muted);
}
.solution-card {
  background: #fff;
  border-radius: 8px;
  padding: 1.75rem 2rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  border-left: 5px solid var(--primary);
}
.solution-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.solution-card p { color: var(--text-muted); line-height: 1.8; }
.solution-card ul { padding-left: 1.5rem; margin-top: 0.75rem; }
.solution-card ul li { color: var(--text-muted); line-height: 1.8; }
.solution-card ul a { color: var(--primary); }

.impact-card {
  background: #fff;
  border-radius: 8px;
  padding: 1.75rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  text-align: center;
}
.impact-amount { font-family: var(--font-heading); font-size: 2rem; color: var(--primary); margin-bottom: 0.5rem; }
.impact-desc { color: var(--text-muted); line-height: 1.6; font-size: 0.95rem; }

/* ─── Pillars / Stats ────────────────────────────────── */
.pillars { display: flex; gap: 2rem; flex-wrap: wrap; margin-top: 2.5rem; }
.pillar { text-align: center; flex: 1; min-width: 80px; text-decoration: none; }
.pillar img { width: 64px; height: 64px; margin: 0 auto 0.5rem; }
.pillar span {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stats-row { display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.5rem; }
.stat-item { min-width: 160px; text-align: center; }
.stat-number { font-family: var(--font-heading); font-size: 3rem; color: var(--primary); line-height: 1; }
.stat-label { color: var(--text-muted); font-size: 0.9rem; margin-top: 0.25rem; }

/* ─── Forms ──────────────────────────────────────────── */
.form-wrap { max-width: 760px; margin: 0 auto; }
.form-row { display: grid; gap: 1rem; margin-bottom: 1.25rem; }
.form-row.cols-2 { grid-template-columns: 1fr 1fr; }
.form-row.cols-3 { grid-template-columns: 2fr 1fr 1fr; }
.form-row.cols-1 { grid-template-columns: 1fr; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--navy);
  letter-spacing: 0.04em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.65rem 0.9rem;
  border: 1.5px solid #d0d5dd;
  border-radius: 6px;
  font-size: 0.95rem;
  font-family: var(--font-body);
  color: var(--text);
  background: #fff;
  outline: none;
  transition: border-color 0.15s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--primary); }
.form-group textarea { resize: vertical; }
.form-checkboxes { display: flex; gap: 1.5rem; flex-wrap: wrap; margin-top: 0.5rem; }
.form-checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  color: var(--text);
  font-size: 0.95rem;
}
.form-checkbox input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--primary); }
.form-submit-row { margin-top: 1.5rem; }
.form-success {
  background: #f0faf4;
  border: 2px solid #4caf82;
  border-radius: 8px;
  padding: 3rem;
  text-align: center;
}
.form-success h2 { font-family: var(--font-heading); font-size: 1.8rem; color: #2d7a53; margin-bottom: 0.75rem; }
.form-success p { color: #2d7a53; line-height: 1.7; }

/* ─── Scroll Animations ──────────────────────────────── */
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
[data-animate="fade-in"]    { transform: none; }
[data-animate="fade-left"]  { transform: translateX(-32px); }
[data-animate="fade-right"] { transform: translateX(32px); }
[data-animate].is-visible   { opacity: 1; transform: none; }

[data-animate][data-delay="1"] { transition-delay: 0.1s; }
[data-animate][data-delay="2"] { transition-delay: 0.2s; }
[data-animate][data-delay="3"] { transition-delay: 0.3s; }

/* ─── Responsive ─────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-center, .nav-right { display: none; }
  .nav-hamburger { display: flex; }
  .nav-inner { grid-template-columns: 1fr auto; }
}

@media (max-width: 860px) {
  .grid-2col, .grid-2col-left { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .dna-split-section { flex-direction: column; }
  .dna-split-img { flex: none; height: 280px; clip-path: none; }
  .dna-split-content { padding: 2.5rem 2rem; }
  .pillars-lg { gap: 2rem; }
}

@media (max-width: 720px) {
  .grid-3col { grid-template-columns: 1fr; }
  .grid-4col { grid-template-columns: 1fr 1fr; }
  .form-row.cols-2, .form-row.cols-3 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .img-grid-6 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .grid-4col { grid-template-columns: 1fr; }
  .section-pad { padding: 3.5rem 1.25rem; }
  .section-pad-sm { padding: 2.5rem 1.25rem; }
  .home-card { height: 220px; }
  .img-grid-6 { grid-template-columns: 1fr; }
  .pillars-lg { gap: 1.5rem; }
  .pillar-lg img { width: 90px; height: 90px; }
}
