/* =========================================================
   EVRHealth Privacy Compliance Consulting Services, LLC
   Color system (from brand notes):
     Primary Navy      #082B5B
     Primary Gold      #CE983D
     Dark Gold Accent  #AB7217   (borders, badges, decoration)
     Text Gold         #8A5A0E   (any gold TEXT on white/ivory — passes WCAG AA)
     Light Gold        #E2BB77
     Background        #FFFFFF
     Soft Background   #F7F4EE (Warm Ivory)
     Body Text         #1B2638
   Ratio target: ~70% white/ivory, 20% navy, 10% gold.

   HOW TO MAINTAIN:
     - Header logo size ........ .brand-logo { height }
     - Header height changed? .. update scroll-padding-top under "Base"
     - Gold text color ......... --gold-text (keep >= 4.5:1 on ivory)
   ========================================================= */

/* ---------- Self-hosted fonts (files in /fonts, SIL Open Font License) ---------- */
@font-face {
  font-family: 'Marcellus';
  src: url('fonts/Marcellus-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Source Sans 3';
  src: url('fonts/SourceSans3-Variable.woff2') format('woff2');
  font-weight: 200 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Source Sans 3';
  src: url('fonts/SourceSans3-Italic-Variable.woff2') format('woff2');
  font-weight: 200 900;
  font-style: italic;
  font-display: swap;
}

:root {
  --navy: #082B5B;
  --navy-deep: #061F42;
  --gold: #CE983D;
  --gold-dark: #AB7217;
  --gold-text: #8A5A0E;
  --gold-light: #E2BB77;
  --white: #FFFFFF;
  --ivory: #F7F4EE;
  --text: #1B2638;
  --text-muted: #4A5568;
  --text-on-navy: #E8ECF3;

  --font-display: 'Marcellus', 'Times New Roman', serif;
  --font-body: 'Source Sans 3', 'Segoe UI', Arial, sans-serif;

  --container: 1140px;
  --radius: 6px;
  --shadow-soft: 0 6px 24px rgba(8, 43, 91, 0.08);
  --shadow-lift: 0 10px 32px rgba(8, 43, 91, 0.14);
}

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

html {
  scroll-behavior: smooth;
  /* Keeps anchor targets (#services etc.) from hiding under the sticky header.
     ≈ faith bar (34px) + logo row (96px) + a little breathing room. */
  scroll-padding-top: 145px;
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: var(--navy); }

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 200;
  background: var(--navy);
  color: var(--white);
  padding: 0.6rem 1rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 700;
}
.skip-link:focus { top: 1rem; }

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

.narrow { max-width: 780px; }
.center { text-align: center; }

/* ---------- Typography ---------- */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
  color: var(--navy);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); letter-spacing: 0.01em; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); margin-bottom: 1.25rem; }
h3 { font-size: 1.35rem; margin-bottom: 0.6rem; }

.on-navy { color: var(--white); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-text);
  margin-bottom: 0.85rem;
}

.eyebrow-light { color: var(--gold-light); }

section { padding: 5.5rem 0; }

/* Default paragraph spacing inside sections; components override below. */
.prose > p { margin-bottom: 1.1rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 1.9rem;
  border-radius: var(--radius);
  text-decoration: none;
  text-align: center;
  border: 2px solid transparent;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-gold { background: var(--gold); color: var(--navy-deep); }
.btn-gold:hover { background: var(--gold-light); }

.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-deep); }

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}
.btn-outline-light:hover { border-color: var(--gold-light); color: var(--gold-light); }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}
.center-row { justify-content: center; }

.text-link {
  font-weight: 700;
  color: var(--gold-text);
  text-decoration: none;
}
.text-link:hover { color: var(--navy); text-decoration: underline; }

/* =========================================================
   1. Header (sticky: faith bar + logo/nav row)
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid rgba(8, 43, 91, 0.1);
}

.faith-bar {
  background: var(--navy);
  color: var(--text-on-navy);
  font-size: 0.82rem;
  line-height: 1.4;
}

.faith-bar-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.25rem 2rem;
  padding-top: 0.45rem;
  padding-bottom: 0.45rem;
}

.faith-tagline {
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gold-light);
  white-space: nowrap;
}

.faith-sep { color: var(--gold); margin: 0 0.4rem; }

.faith-verse { font-style: italic; }
.faith-verse q { quotes: "\201C" "\201D"; }
.faith-ref { font-style: normal; font-weight: 600; color: var(--gold-light); margin-left: 0.4rem; }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}

.brand { display: flex; align-items: center; text-decoration: none; }

.brand-logo {
  height: 76px;    /* Header logo — adjust this one value to resize (then re-check scroll-padding-top) */
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.main-nav a:not(.btn) {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.main-nav a:not(.btn):hover,
.main-nav a[aria-current="page"] {
  color: var(--navy);
  border-bottom-color: var(--gold);
}

.nav-cta { padding: 0.6rem 1.3rem; font-size: 0.92rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* =========================================================
   2. Hero
   ========================================================= */
.hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--text-on-navy);
  padding: 6.5rem 0 5.5rem;
}

.hero-inner { max-width: 860px; }

.hero h1 { color: var(--white); margin-bottom: 1.4rem; }

.hero-sub {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 1.2rem;
  line-height: 1.5;
}

.hero-body { max-width: 700px; margin-bottom: 1.6rem; }

.hero-tags {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(232, 236, 243, 0.85);
}

.hero-tags span { color: var(--gold); margin: 0 0.35rem; }

.hero-location {
  margin-top: 2rem;
  font-size: 0.95rem;
  color: rgba(232, 236, 243, 0.75);
}

/* =========================================================
   3. Overview + signature question
   ========================================================= */
.overview { background: var(--white); }

.bridge-line {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--navy);
  margin: 1.4rem 0;
}

.signature-question {
  max-width: 860px;
  margin: 4rem auto 0;
  padding: 3rem 2rem;
  text-align: center;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
}

.sq-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-text);
  margin-bottom: 1.2rem;
}

.sq-text {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.45;
  color: var(--navy);
}

/* =========================================================
   4. Who we serve
   ========================================================= */
.who-we-serve { background: var(--ivory); }

.card-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.serve-grid { grid-template-columns: repeat(3, 1fr); }

.serve-card {
  background: var(--white);
  border-radius: var(--radius);
  border-top: 3px solid var(--gold);
  padding: 1.8rem 1.6rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.serve-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }

.serve-card h3 { font-size: 1.15rem; }
.serve-card p { font-size: 0.98rem; color: var(--text-muted); }

.serve-note {
  margin: 2.5rem auto 0;
  text-align: center;
  font-style: italic;
  color: var(--text-muted);
  max-width: 640px;
}

/* =========================================================
   5. Services
   ========================================================= */
.services { background: var(--white); }

.service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
  margin-top: 2.5rem;
}

.service-card {
  background: var(--ivory);
  border-radius: var(--radius);
  padding: 2.2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.service-card.flagship {
  background: var(--white);
  border: 2px solid var(--gold);
  box-shadow: var(--shadow-soft);
}

.service-kicker,
.badge-gold {
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy-deep);
  background: var(--gold-light);
  padding: 0.3rem 0.75rem;
  border-radius: 3px;
}

.service-tagline {
  font-weight: 700;
  color: var(--gold-text);
  font-size: 1.05rem;
}

.service-card ul {
  padding-left: 1.2rem;
  color: var(--text-muted);
  font-size: 0.98rem;
  display: grid;
  gap: 0.25rem;
}

.service-card ul li::marker { color: var(--gold); }

.list-label { font-weight: 700; color: var(--navy); margin-top: 0.25rem; }

.service-areas {
  font-size: 0.92rem;
  color: var(--text-muted);
  font-weight: 600;
}

.service-card .btn { align-self: flex-start; margin-top: auto; }

/* =========================================================
   6. Differentiators (navy, gold numbers)
   ========================================================= */
.differentiators { background: var(--navy); color: var(--text-on-navy); }

.differentiators h2 { text-align: center; margin-bottom: 3rem; }

.diff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 3rem;
}

.diff-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.diff-item h3 { color: var(--white); }
.diff-item p { color: rgba(232, 236, 243, 0.85); }

/* =========================================================
   7. Confianza y Confidencialidad
   ========================================================= */
.confianza { background: var(--white); }

.confianza-panel {
  background: var(--ivory);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  max-width: 860px;
  margin: 0 auto;
  padding: 3.5rem 3rem;
  text-align: center;
}

.confianza-panel p { margin-bottom: 1.1rem; }
.confianza-panel p:last-child { margin-bottom: 0; }

.confianza-lead {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--navy);
}

.confianza-mission { font-weight: 700; color: var(--navy); }

/* =========================================================
   8. Diagnostic (navy) + how it works
   ========================================================= */
.diagnostic-cta {
  background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: var(--text-on-navy);
}

.diagnostic-cta h2 { margin-bottom: 2rem; }

.diag-line {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
  color: rgba(232, 236, 243, 0.85);
}

.diag-question {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin: 1.5rem auto 2.5rem;
  max-width: 640px;
}

.diag-highlight {
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  margin-bottom: 2.5rem;
}

.diag-highlight h3 { color: var(--gold-light); font-size: 1.4rem; }
.diag-highlight p { color: var(--text-on-navy); }

.diag-steps {
  list-style: none;
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin: 3rem auto 2.5rem;
  max-width: 1000px;
  text-align: left;
}

.diag-steps li {
  counter-increment: step;
  border-top: 2px solid var(--gold);
  padding-top: 1rem;
}

.diag-steps li::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.diag-steps h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 0.35rem; }
.diag-steps p { font-size: 0.95rem; color: rgba(232, 236, 243, 0.85); }

/* =========================================================
   9. Founder
   ========================================================= */
.founder { background: var(--white); }

.founder-inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 3.5rem;
  align-items: start;
}

.founder-photo {
  background: var(--ivory);
  border: 1px solid var(--gold-light);
  border-radius: var(--radius);
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-text p { margin-bottom: 1rem; }

.founder-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--navy);
}
.founder-text .founder-name { margin-bottom: 0.15rem; }

.founder-title {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gold-text);
}

.founder-approach {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--navy);
  border-left: 3px solid var(--gold);
  padding-left: 1.25rem;
}
.founder-text .founder-approach { margin: 1.5rem 0; }

.founder-disclaimer {
  margin-top: 1.25rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* =========================================================
   10. Education
   ========================================================= */
.education { background: var(--ivory); }

.education > .container > p { margin-bottom: 1.1rem; }

.program-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 2.25rem 0 2.5rem;
  text-align: left;
}

.program-card {
  background: var(--white);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem;
  box-shadow: var(--shadow-soft);
}

.program-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-text);
  margin-bottom: 0.5rem;
}

.program-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--navy);
  line-height: 1.4;
}

/* =========================================================
   11. Resources
   ========================================================= */
.resources { background: var(--white); }

.resource-grid { grid-template-columns: repeat(3, 1fr); }

.resource-card {
  background: var(--ivory);
  border-radius: var(--radius);
  padding: 1.9rem 1.7rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.resource-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }

.resource-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-text);
}

.resource-card h3 { font-size: 1.2rem; line-height: 1.4; }

.resource-title-en {
  font-family: var(--font-display);
  font-size: 1.02rem;
  line-height: 1.4;
  color: var(--text-muted);
}

.resource-card .text-link { margin-top: auto; }

/* =========================================================
   12. Final CTA
   ========================================================= */
.final-cta {
  background: var(--navy-deep);
  color: var(--text-on-navy);
  padding: 6rem 0;
}

.final-cta h2 { margin-bottom: 1.4rem; }

.cta-start {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold-light);
  margin-top: 2rem;
}

.cta-contact {
  font-size: 1.25rem;
  line-height: 1.9;
  margin-bottom: 0.75rem;
}

.cta-contact a { color: var(--white); text-decoration: none; font-weight: 600; }
.cta-contact a:hover { color: var(--gold-light); }

.cta-note {
  font-size: 0.9rem;
  font-style: italic;
  color: rgba(232, 236, 243, 0.7);
  margin-bottom: 2rem;
}

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  background: var(--navy);
  color: rgba(232, 236, 243, 0.8);
  padding: 3.5rem 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}

.footer-logo-img {
  height: 150px;   /* Footer logo — full detailed logo, room to breathe */
  width: auto;
}

.footer-legal-name { font-size: 0.9rem; margin-top: 1rem; }

.footer-tagline {
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 0.75rem;
}

.footer-nav { display: flex; flex-direction: column; gap: 0.5rem; }

.footer-nav a,
.footer-contact a {
  color: rgba(232, 236, 243, 0.8);
  text-decoration: none;
}

.footer-nav a:hover,
.footer-contact a:hover { color: var(--gold-light); }

.footer-contact p { margin-bottom: 0.4rem; }

.footer-note {
  font-size: 0.82rem;
  font-style: italic;
  color: rgba(232, 236, 243, 0.65);
  max-width: 260px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1.4rem;
  padding-bottom: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(232, 236, 243, 0.65);
}

/* =========================================================
   Inner pages: About, Privacy, Articles
   ========================================================= */
.page-hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--text-on-navy);
  padding: 4.5rem 0 3.5rem;
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  max-width: 860px;
}

.page-hero .title-en {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: var(--gold-light);
  margin-top: 0.6rem;
  max-width: 860px;
  line-height: 1.35;
}

.article-meta {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: var(--gold-light);
  font-weight: 600;
}

.article-body { padding: 4.5rem 0 5.5rem; }
.article-body p { margin-bottom: 1.2rem; }

.article-body h2 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 0.9rem;
}

.article-body ul {
  padding-left: 1.4rem;
  margin-bottom: 1.2rem;
  display: grid;
  gap: 0.35rem;
}

.article-body ul li::marker { color: var(--gold); }

.article-disclaimer {
  margin-top: 2.5rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  border-top: 1px solid rgba(8, 43, 91, 0.12);
  padding-top: 1rem;
}

/* --- Bilingual articles (Español | English side by side) --- */
.bilingual-article .container { max-width: 1080px; }

.bilingual-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--gold);
  margin-bottom: 0.5rem;
}

.lang-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-text);
}

.bilingual-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid rgba(8, 43, 91, 0.12);
}

.bilingual-row:last-of-type { border-bottom: none; }

.lang-col p { margin-bottom: 0; }
.lang-col[lang="es"] { color: var(--text); }
.lang-col[lang="en"] { color: var(--text-muted); }

.bilingual-row strong { color: var(--navy); }

/* --- Conversion box (bottom of every article) --- */
.conversion-box {
  margin-top: 3.5rem;
  padding: 2.75rem 2.25rem;
  text-align: center;
  background: var(--ivory);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
}

.cb-question {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  line-height: 1.4;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.cb-question.cb-en { color: var(--gold-text); margin-bottom: 1.25rem; }

.cb-body {
  max-width: 640px;
  margin: 0 auto 1.75rem;
  color: var(--text-muted);
}

/* --- Simple text pages (privacy notice) --- */
.text-page { padding: 4.5rem 0 5.5rem; }
.text-page h2 { font-size: 1.4rem; margin-top: 2.25rem; margin-bottom: 0.75rem; }
.text-page p, .text-page ul { margin-bottom: 1.1rem; }
.text-page ul { padding-left: 1.4rem; }
.text-page ul li::marker { color: var(--gold); }

/* =========================================================
   About page components
   ========================================================= */
.about-intro { padding-bottom: 4.5rem; }

.stats-bar {
  background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: var(--text-on-navy);
  padding: 4.5rem 0;
}

.stats-bar h2 { margin-bottom: 2.5rem; }

.stats-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  line-height: 1;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.stat-label {
  display: block;
  font-size: 0.95rem;
  color: rgba(232, 236, 243, 0.85);
  max-width: 220px;
  margin: 0 auto;
}

.history { background: var(--white); }
.history h3 {
  margin-top: 2.25rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--gold-light);
}
.history h3:first-of-type { margin-top: 1rem; }

.two-col-list {
  columns: 2;
  column-gap: 2.5rem;
  padding-left: 1.2rem;
  margin-bottom: 1.1rem;
  color: var(--text-muted);
}
.two-col-list li { break-inside: avoid; margin-bottom: 0.3rem; }
.two-col-list li::marker { color: var(--gold); }

.credentials { background: var(--ivory); }
.cred-grid { grid-template-columns: repeat(2, 1fr); max-width: 760px; margin-left: auto; margin-right: auto; }

.areas { background: var(--white); }

.badge-grid {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.badge-grid li {
  border: 1px solid var(--gold);
  border-radius: 999px;
  padding: 0.55rem 1.1rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
  background: var(--ivory);
}

.verse-ref {
  display: inline-block;
  margin-top: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-text);
}

.community { background: var(--ivory); }

.section-lead {
  max-width: 720px;
  margin-bottom: 1.5rem;
  color: var(--text-muted);
}
.education .center .section-lead { margin: 0 auto 1.25rem; }

.topics-grid { grid-template-columns: repeat(2, 1fr); }
.program-desc {
  margin-top: 0.6rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1000px) {
  /* Mobile menu kicks in here; 7 nav items + CTA get crowded below ~1000px */
  .nav-toggle { display: flex; }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    background: var(--white);
    border-bottom: 1px solid rgba(8, 43, 91, 0.1);
    box-shadow: var(--shadow-lift);
    padding: 1rem 1.5rem 1.5rem;
  }

  .main-nav.open { display: flex; }

  .main-nav a:not(.btn) {
    width: 100%;
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(8, 43, 91, 0.08);
  }

  .nav-cta { margin-top: 0.75rem; width: 100%; }
}

@media (max-width: 960px) {
  .serve-grid { grid-template-columns: repeat(2, 1fr); }
  .service-list { grid-template-columns: 1fr; }
  .resource-grid { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: 1fr; }
  .diag-steps { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .cred-grid { grid-template-columns: 1fr; }
  .topics-grid { grid-template-columns: 1fr; }
  .founder-inner { grid-template-columns: 1fr; }
  .founder-photo { max-width: 320px; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 820px) {
  html { scroll-padding-top: 115px; }
  .brand-logo { height: 56px; }
  .footer-logo-img { height: 120px; }
  .faith-bar-inner { justify-content: center; text-align: center; }
  .faith-verse { display: none; }   /* phones: tagline only, keeps sticky header short */
}

@media (max-width: 720px) {
  .bilingual-head { display: none; }
  .bilingual-row { grid-template-columns: 1fr; gap: 0.9rem; }
  .lang-col[lang="en"] { padding-left: 0.9rem; border-left: 2px solid var(--gold-light); }
  .conversion-box { padding: 2rem 1.25rem; }
  .conversion-box .btn { width: 100%; }
}

@media (max-width: 640px) {
  section { padding: 4rem 0; }
  .hero { padding: 4.5rem 0 4rem; }
  .serve-grid { grid-template-columns: 1fr; }
  .program-cards { grid-template-columns: 1fr; }
  .diag-steps { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .two-col-list { columns: 1; }
  .confianza-panel { padding: 2.5rem 1.5rem; }
  .btn { width: 100%; }
  .btn-row { flex-direction: column; }
  .signature-question { padding: 2.5rem 1rem; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
  .btn:hover, .serve-card:hover, .resource-card:hover { transform: none; }
}