:root {
  /* Lavender, Emerald, Cream palette */
  --bg: #fdf5e6;
  --fg: #1a1a1a;
  --fg-muted: #5a5650;
  /* Primary accent: Lavender */
  --accent: #b8a9c9;
  --accent-light: #ede8f5;
  --accent-dark: #6d5a8a;
  /* Warm cream tones */
  --warm: #f5ede0;
  --warm-deep: #e8ddd0;
  --card-bg: #ffffff;
  /* Secondary: Emerald Green — used for primary CTAs and key highlights */
  --emerald: #2e8b57;
  --emerald-light: #d8f3dc;
  --emerald-dark: #1b5e3a;
  /* Typography */
  --serif: 'DM Serif Display', Georgia, serif;
  --sans: 'Plus Jakarta Sans', system-ui, sans-serif;
}

/* ── Primary CTA button (Emerald Green) ── */
.btn-emerald {
  display: inline-block;
  background: var(--emerald);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 13px 28px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
  text-decoration: none;
}
.btn-emerald:hover { background: var(--emerald-dark); transform: translateY(-1px); }
.btn-emerald:active { transform: scale(0.98); }

/* ── Secondary CTA button (Lavender) ── */
.btn-lavender {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 24px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.15s;
  text-decoration: none;
}
.btn-lavender:hover { background: var(--accent-dark); }

/* ── Ghost/outline button ── */
.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--accent-dark);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 24px;
  border-radius: 8px;
  border: 2px solid var(--accent);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  text-decoration: none;
}
.btn-outline:hover { background: var(--accent-light); color: var(--accent-dark); }

/* ── Emerald badge ── */
.badge-emerald { background: var(--emerald-light); color: var(--emerald-dark); }

/* ── Lavender accent highlight ── */
.lavender-highlight { background: var(--accent-light); color: var(--accent-dark); }

/* ── Emerald check circles ── */
.check-emerald {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--emerald-light); color: var(--emerald-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700; flex-shrink: 0;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ---- STICKY HEADER ---- */
.sticky-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--accent-dark);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.sticky-header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.sticky-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.2s;
}

.sticky-phone:hover {
  color: #ffffff;
}

.sticky-phone-icon {
  font-size: 0.95rem;
  opacity: 0.7;
}

.sticky-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sticky-refer {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: #ffffff;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 7px 16px;
  border-radius: 100px;
  transition: background 0.2s, border-color 0.2s;
}

.sticky-refer:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.4);
}

@media (max-width: 480px) {
  .sticky-header-inner {
    padding: 0 16px;
  }

  .sticky-phone span:last-child {
    display: none;
  }
}

/* ---- HERO ---- */
.hero {
  background: linear-gradient(170deg, var(--accent-dark) 0%, #8b78aa 50%, var(--emerald) 100%);
  color: #ffffff;
  padding: 60px 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-location {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 20px;
}

.veteran-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #d4af37;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.35);
  padding: 6px 14px 6px 10px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.veteran-badge-icon {
  font-size: 0.9rem;
  line-height: 1;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  line-height: 1.15;
  margin-bottom: 24px;
  font-weight: 400;
}

.hero h1 em {
  font-style: italic;
  color: rgba(255,255,255,0.75);
}

.hero-sub {
  font-size: 1.1rem;
  line-height: 1.7;
  opacity: 0.9;
  max-width: 620px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--serif);
  font-size: 2.4rem;
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.7;
  margin-top: 6px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.25);
}

/* ---- HERO CONTACT ROW ---- */
.hero-contact-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.hero-contact-link {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-contact-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

.hero-contact-sep {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  font-style: italic;
}

/* ---- PROBLEM ---- */
.problem {
  padding: 96px 24px;
  background: var(--warm);
}

.problem-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.problem-text h2 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  line-height: 1.25;
  margin-bottom: 20px;
  color: var(--accent-dark);
}

.problem-text p {
  color: var(--fg-muted);
  margin-bottom: 16px;
  font-size: 1rem;
}

.problem-data {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.data-card {
  background: var(--card-bg);
  padding: 24px 28px;
  border-radius: 12px;
  border-left: 4px solid var(--emerald);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.data-value {
  display: block;
  font-family: var(--serif);
  font-size: 1.8rem;
  color: var(--accent-dark);
  line-height: 1.1;
  margin-bottom: 6px;
}

.data-desc {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.4;
}

/* ---- SERVICES ---- */
.services {
  padding: 96px 24px;
  background: var(--bg);
}

.services-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.services-inner h2 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  margin-bottom: 12px;
  color: var(--accent-dark);
}

.services-intro {
  font-size: 1.05rem;
  color: var(--fg-muted);
  margin-bottom: 48px;
  max-width: 540px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--card-bg);
  padding: 36px 32px;
  border-radius: 14px;
  border: 1px solid var(--warm-deep);
  transition: box-shadow 0.2s ease;
}

.service-card:hover {
  box-shadow: 0 8px 30px rgba(46, 139, 87, 0.12);
}

.service-icon {
  font-size: 1.6rem;
  margin-bottom: 16px;
  color: var(--emerald);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--emerald-light);
  border-radius: 10px;
}

.service-card h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--fg);
  font-weight: 400;
}

.service-card p {
  font-size: 0.92rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* Mental Health cards — distinctive lavender/emerald styling for grant applications */
.service-card--mh {
  background: linear-gradient(135deg, var(--accent-light) 0%, #f0f7f0 100%);
  border-color: var(--accent);
}

.service-card--mh:hover {
  box-shadow: 0 8px 30px rgba(109, 90, 138, 0.18);
}

.mh-icon-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.mh-icon {
  font-size: 1.5rem;
  color: var(--accent-dark);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(184, 169, 201, 0.3);
  border-radius: 10px;
}

.mh-role {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-dark);
  background: rgba(184, 169, 201, 0.35);
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid rgba(109, 90, 138, 0.3);
}

.service-card--mh h3 {
  color: var(--accent-dark);
}

/* Insurance accepted callout — prominent green banner for grant apps */
.insurance-callout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 36px;
  padding: 18px 28px;
  background: var(--emerald-light);
  border: 2px solid var(--emerald);
  border-radius: 12px;
  font-size: 0.95rem;
  color: var(--emerald-dark);
}

.insurance-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ---- JOURNEY ---- */
.journey {
  padding: 96px 24px;
  background: var(--accent-dark);
  color: #ffffff;
}

.journey-inner {
  max-width: 800px;
  margin: 0 auto;
}

.journey-inner h2 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  margin-bottom: 56px;
  color: rgba(255,255,255,0.85);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255,255,255,0.15);
}

.timeline-step {
  display: flex;
  gap: 32px;
  padding: 28px 0;
  position: relative;
}

.step-marker {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
}

.step-content h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  margin-bottom: 8px;
  font-weight: 400;
}

.step-content p {
  font-size: 0.95rem;
  opacity: 0.8;
  line-height: 1.6;
}

/* ---- CLOSING ---- */
.closing {
  padding: 96px 24px;
  background: var(--warm);
  text-align: center;
}

.closing-inner {
  max-width: 680px;
  margin: 0 auto;
}

.closing-inner h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--accent-dark);
}

.closing-inner p {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.closing-location {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--emerald);
  margin-top: 32px;
}

/* ---- FOOTER ---- */
.site-footer {
  padding: 40px 24px;
  background: var(--accent-dark);
  text-align: center;
  color: rgba(255,255,255,0.6);
}

.footer-inner {
  max-width: 800px;
  margin: 0 auto;
}

.footer-name {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 6px;
}

.footer-contact {
  font-size: 0.85rem;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .hero {
    padding: 72px 20px 60px;
  }

  .hero-stats {
    gap: 24px;
  }

  .stat-divider {
    display: none;
  }

  .problem-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .timeline-step {
    gap: 20px;
  }

  .step-marker {
    width: 42px;
    height: 42px;
    font-size: 0.75rem;
  }

  .timeline::before {
    left: 20px;
  }
}

/* ---- WHO WE SERVE ---- */
.who-we-serve {
  padding: 96px 24px;
  background: var(--accent-dark);
  color: #fff;
}

.serve-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.serve-inner h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--accent-light);
  margin-bottom: 16px;
}

.serve-intro {
  font-size: 1.05rem;
  opacity: 0.8;
  max-width: 620px;
  margin-bottom: 56px;
  line-height: 1.65;
}

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

.serve-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 36px 28px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.serve-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

.serve-icon {
  font-size: 1.5rem;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.serve-icon--veteran {
  background: rgba(212, 175, 55, 0.2);
  color: #d4af37;
}

.serve-icon--ssa {
  background: var(--accent-light);
  color: var(--accent-dark);
}

.serve-icon--reentry {
  background: var(--emerald-light);
  color: var(--emerald-dark);
}

.serve-card h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: #fff;
  font-weight: 400;
}

.serve-card p {
  font-size: 0.93rem;
  opacity: 0.78;
  line-height: 1.65;
  margin-bottom: 20px;
}

.serve-qualifier {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--accent-light);
  opacity: 0.85;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* ---- ELIGIBILITY ---- */
.eligibility {
  padding: 96px 24px;
  background: var(--bg);
}

.eligibility-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.eligibility-text h2 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  line-height: 1.25;
  margin-bottom: 20px;
  color: var(--accent-dark);
}

.eligibility-text p {
  font-size: 1rem;
  color: var(--fg-muted);
  margin-bottom: 16px;
  line-height: 1.7;
}

.criteria-block {
  background: var(--card-bg);
  border: 1px solid var(--warm-deep);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 20px;
}

.criteria-block h3 {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--accent-dark);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  font-weight: 700;
}

.criteria-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.criteria-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 0.95rem;
  color: var(--fg);
  line-height: 1.55;
}

.criteria-check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--emerald-light);
  color: var(--emerald-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 1px;
}

.income-note {
  background: var(--warm);
  border-radius: 12px;
  padding: 24px 28px;
  border-left: 4px solid var(--emerald);
}

.income-note-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 10px;
}

.income-note p:not(.income-note-label) {
  font-size: 0.92rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ---- CASE MANAGERS ---- */
.case-managers {
  padding: 96px 24px;
  background: var(--warm);
}

.case-managers-inner {
  max-width: 900px;
  margin: 0 auto;
}

.cm-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--emerald-dark);
  background: var(--emerald-light);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.cm-header h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  line-height: 1.2;
  color: var(--accent-dark);
  margin-bottom: 16px;
}

.cm-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 560px;
  margin-bottom: 56px;
  line-height: 1.65;
}

.cm-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  margin-bottom: 56px;
}

.cm-steps::before {
  content: '';
  position: absolute;
  left: 22px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--warm-deep);
}

.cm-step {
  display: flex;
  gap: 28px;
  padding: 28px 0;
  position: relative;
}

.cm-step-number {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--emerald);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
}

.cm-step-content h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--accent-dark);
  margin-bottom: 8px;
}

.cm-step-content p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

.cm-contact-block {
  background: var(--accent-dark);
  color: #fff;
  border-radius: 16px;
  padding: 36px 40px;
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  align-items: center;
}

.cm-contact-detail {
  display: flex;
  gap: 16px;
  align-items: center;
}

.cm-contact-icon {
  font-size: 1.5rem;
  opacity: 0.7;
  flex-shrink: 0;
}

.cm-contact-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 4px;
}

.cm-contact-value {
  font-size: 1rem;
  color: var(--accent-light);
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.2s;
}

.cm-contact-value:hover {
  opacity: 0.75;
}

/* ---- FOOTER EXPANDED ---- */
.footer-brand {
  margin-bottom: 40px;
}

.footer-tagline {
  font-size: 0.88rem;
  opacity: 0.55;
  margin-top: 6px;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 40px;
  text-align: left;
}

.footer-col-heading {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-light);
  opacity: 0.75;
  margin-bottom: 14px;
}

.footer-link {
  display: block;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.2s;
}

.footer-link:hover {
  color: var(--accent-light);
}

.footer-area {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 6px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  font-size: 0.82rem;
  opacity: 0.45;
}

/* ---- CONTACT SECTION ---- */
.contact-section {
  padding: 80px 24px;
  background: var(--accent);
  color: #ffffff;
}

.contact-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-dark);
  background: var(--accent-light);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.contact-heading {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  line-height: 1.25;
  color: #ffffff;
  margin-bottom: 14px;
  font-weight: 400;
}

.contact-sub {
  font-size: 1rem;
  opacity: 0.8;
  max-width: 480px;
  margin: 0 auto 48px;
  line-height: 1.65;
}

.contact-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.contact-ctas {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 14px;
  padding: 20px 28px;
  text-decoration: none;
  color: #ffffff;
  transition: background 0.2s ease, transform 0.2s ease;
  min-width: 200px;
}

.contact-cta:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

.contact-cta--emerald {
  background: var(--emerald);
  border-color: var(--emerald);
  color: #fff;
}

.contact-cta--emerald:hover {
  background: var(--emerald-dark);
  border-color: var(--emerald-dark);
}

.contact-cta-icon {
  font-size: 1.4rem;
  opacity: 0.8;
  flex-shrink: 0;
}

.contact-cta-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
}

.contact-cta-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.65;
}

.contact-cta-value {
  font-size: 0.95rem;
  font-weight: 600;
  white-space: nowrap;
}

@media (max-width: 600px) {
  .contact-ctas {
    flex-direction: column;
    align-items: center;
  }

  .contact-cta {
    width: 100%;
    max-width: 320px;
  }
}

/* ---- RESPONSIVE (NEW SECTIONS) ---- */
@media (max-width: 900px) {
  .serve-grid {
    grid-template-columns: 1fr;
  }

  .eligibility-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cm-contact-block {
    flex-direction: column;
    gap: 28px;
    padding: 28px 24px;
  }

  .footer-cols {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

@media (max-width: 600px) {
  .footer-cols {
    grid-template-columns: 1fr;
  }
}

/* ---- HERO BACKGROUND IMAGE ---- */
.hero {
  position: relative;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  /* Preserve green gradient mood; photo adds warmth behind it */
  opacity: 0.18;
  mix-blend-mode: luminosity;
  z-index: 0;
}

/* Ensure hero content renders above background image */
.hero-inner {
  z-index: 2;
}

/* ---- WHO WE SERVE — CARD IMAGES ---- */
.serve-card {
  overflow: hidden;
  padding: 0;
}

.serve-card-img {
  width: 100%;
  height: 180px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 0;
  /* Subtle green tint overlay to match site palette */
  filter: saturate(0.85) brightness(0.9);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.serve-card:hover .serve-card-img {
  filter: saturate(1) brightness(0.95);
  transform: scale(1.02);
}

.serve-card-body {
  padding: 28px 28px 32px;
}

/* ---- PROBLEM SECTION PHOTO ---- */
.problem-photo {
  width: 100%;
  height: 200px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  /* Warm desaturated tone to match cream section bg */
  filter: saturate(0.75) sepia(0.15);
}

/* ---- SERVICES PHOTO STRIP ---- */
.services-photo-strip {
  display: flex;
  width: 100%;
  overflow: hidden;
  height: 220px;
  margin-bottom: 0;
}

.strip-photo {
  flex: 1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: flex 0.4s ease;
  filter: saturate(0.8) brightness(0.95);
  position: relative;
}

.strip-photo:hover {
  flex: 1.4;
  filter: saturate(1) brightness(1);
}

/* Subtle divider lines between strip photos */
.strip-photo + .strip-photo {
  border-left: 2px solid var(--bg);
}

/* ---- JOURNEY BACKGROUND IMAGE ---- */
.journey {
  position: relative;
  overflow: hidden;
}

.journey-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* Dark green section — photo adds subtle warmth texture */
  opacity: 0.08;
  mix-blend-mode: screen;
  z-index: 0;
}

.journey-inner {
  position: relative;
  z-index: 2;
}

/* Timeline step photos — right-aligned thumbnail */
.timeline-step {
  align-items: flex-start;
}

.step-photo {
  flex-shrink: 0;
  width: 90px;
  height: 70px;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-left: auto;
  opacity: 0.65;
  filter: saturate(0.7) brightness(0.85);
  border: 1px solid rgba(255,255,255,0.15);
  transition: opacity 0.25s ease, filter 0.25s ease;
}

.timeline-step:hover .step-photo {
  opacity: 0.9;
  filter: saturate(0.9) brightness(1);
}

/* ---- PHOTO PLACEHOLDERS (rooms, building, team) ---- */
.photo-placeholder {
  background: var(--warm-deep);
  border: 2px dashed var(--accent-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  transition: border-color 0.2s, background 0.2s;
}

.photo-placeholder:hover {
  border-color: var(--accent);
  background: var(--warm);
}

/* ── Hero founder photo (top of /about page) ── */
.hero-founder-photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 4px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  display: block;
  margin: 0 auto 16px;
}
.hero-photo-caption {
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  margin-bottom: 8px;
}
.hero-photo-caption strong {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 2px;
}
@media (max-width: 540px) {
  .hero-founder-photo { width: 130px; height: 130px; }
}

/* ── Legacy callout photo (Missouria L. Walker / Black Angels section) ── */
.legacy-photo {
  max-width: 360px;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center top;
  border-radius: 12px;
  border: 3px solid var(--warm-deep);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
  display: block;
  margin: 0 auto 12px;
}
@media (max-width: 540px) {
  .legacy-photo { max-width: 280px; }
}
.legacy-photo-caption {
  text-align: center;
  font-size: 0.75rem;
  color: var(--fg-muted);
  line-height: 1.5;
  margin-bottom: 16px;
  font-style: italic;
}

.photo-placeholder--room {
  height: 180px;
  border-radius: 10px 10px 0 0;
  border-bottom: none;
}

.photo-placeholder--building {
  height: 260px;
  width: 100%;
  border-radius: 14px;
}

/* Real photo images — replace placeholder divs */
.building-photo-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}

.room-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  border-radius: 10px 10px 0 0;
}

@media (max-width: 768px) {
  .building-photo-img {
    height: 180px;
  }
  .room-img {
    height: 120px;
  }
}

.photo-placeholder--team {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 2px dashed var(--accent-light);
  margin: 0 auto 16px;
}

.team-photo-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent-light);
  margin: 0 auto 16px;
  display: block;
}

.placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 16px;
}

.placeholder-icon {
  font-size: 1.8rem;
  opacity: 0.4;
}

.placeholder-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--fg-muted);
  letter-spacing: 0.5px;
  text-align: center;
}

.placeholder-hint {
  font-size: 0.72rem;
  color: var(--accent);
  opacity: 0.7;
  font-style: italic;
  text-align: center;
}

/* ---- ROOMS GALLERY SECTION ---- */
.rooms-gallery {
  padding: 80px 24px;
  background: var(--bg);
}

.rooms-gallery-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.rooms-gallery-header {
  margin-bottom: 40px;
}

.rooms-gallery-header h2 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  color: var(--accent-dark);
  margin-bottom: 10px;
}

.rooms-gallery-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  max-width: 540px;
  line-height: 1.65;
}

.building-placeholder-wrap {
  margin-bottom: 32px;
}

.rooms-photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.room-photo-card {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--warm-deep);
  background: var(--card-bg);
  transition: box-shadow 0.2s ease;
}

.room-photo-card:hover {
  box-shadow: 0 6px 20px rgba(45, 106, 79, 0.1);
}

.room-photo-label {
  padding: 10px 14px;
  font-size: 0.82rem;
  color: var(--fg-muted);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.room-type-badge {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 100px;
}

.room-type-badge--double {
  background: var(--accent-light);
  color: var(--accent-dark);
}

.room-type-badge--single {
  background: rgba(212, 175, 55, 0.15);
  color: #8a6e00;
}

.rooms-gallery-note {
  font-size: 0.85rem;
  color: var(--fg-muted);
  font-style: italic;
  text-align: center;
  opacity: 0.7;
}

/* ---- TEAM PHOTOS SECTION ---- */
.team-photos {
  padding: 80px 24px;
  background: var(--warm);
}

.team-photos-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.team-photos-inner h2 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  color: var(--accent-dark);
  margin-bottom: 10px;
}

.team-photos-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  max-width: 480px;
  margin: 0 auto 48px;
  line-height: 1.65;
}

.team-photos-grid {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.team-photo-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 150px;
}

.team-photo-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--fg);
  margin-bottom: 4px;
}

.team-photo-role {
  font-size: 0.82rem;
  color: var(--fg-muted);
}

/* ---- FOUNDER SECTION ---- */
.founder {
  padding: 96px 24px;
  background: var(--warm);
}

.founder-inner {
  max-width: 900px;
  margin: 0 auto;
}

.founder-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  text-align: center;
  margin-bottom: 32px;
}

.founder-card {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  background: var(--card-bg);
  border-radius: 20px;
  padding: 48px;
  border: 1px solid var(--warm-deep);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.founder-photo-wrap {
  flex-shrink: 0;
}

.founder-photo-placeholder {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--warm-deep);
  background: var(--warm);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.founder-info {
  flex: 1;
}

.founder-name {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2rem);
  color: var(--accent-dark);
  font-weight: 400;
  margin-bottom: 8px;
  line-height: 1.2;
}

.founder-role {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  opacity: 0.85;
}

.founder-bio {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}

.founder-bio:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .founder {
    padding: 64px 20px;
  }

  .founder-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 36px 28px;
    gap: 28px;
  }

  .founder-photo-placeholder {
    width: 160px;
    height: 160px;
  }

  .founder-name {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .founder-photo-placeholder {
    width: 130px;
    height: 130px;
  }
}
@media (max-width: 900px) {
  .rooms-photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .step-photo {
    display: none;
  }

  .services-photo-strip {
    height: 160px;
  }
}

@media (max-width: 600px) {
  .serve-card-img {
    height: 140px;
  }

  .services-photo-strip {
    height: 120px;
  }

  .rooms-photo-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .photo-placeholder--room {
    height: 120px;
  }

  .photo-placeholder--building {
    height: 180px;
  }

  .team-photos-grid {
    gap: 28px;
  }
}