:root {
  --forest: #145c34;
  --forest-dark: #0d3f24;
  --forest-mid: #1c6e3f;
  --mint: #a9e0c0;
  --cream: #f4faf6;
  --cream-deep: #e7f4ec;
  --orange: #f5a524;
  --orange-dark: #e08e0c;
  --ink: #1c2b23;
  --gray: #5b6b62;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(20, 92, 52, 0.08);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Jost', 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, .display {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--forest-dark);
  margin: 0 0 .5em;
  line-height: 1.15;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--forest-mid);
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .8rem;
  margin-bottom: 14px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid #eef2ef;
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 32px;
  max-width: 1300px;
  margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 12px; min-width: 0; }
.brand-logo {
  width: 46px; height: 46px; border-radius: 50%;
  border: 2px solid var(--forest);
  background: var(--cream-deep);
  object-fit: cover;
  flex-shrink: 0;
}
.footer-logo { border-color: #fff; background: transparent; }
.brand-name { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--forest-dark); line-height: 1.1; }
.brand-tag { font-size: .78rem; color: var(--gray); }
.main-nav { display: flex; gap: 30px; }
.main-nav a {
  font-weight: 500; color: var(--ink); font-size: .98rem;
  padding-bottom: 4px; border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}
.main-nav a.active, .main-nav a:hover { color: var(--forest); border-color: var(--forest); }
.nav-right { display: flex; align-items: center; gap: 22px; }
.nav-phone { display: flex; align-items: center; gap: 8px; color: var(--forest); font-weight: 600; }
.btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  font-size: .95rem;
}
.btn:hover { transform: translateY(-2px); }
.btn-orange { background: var(--orange); color: #241300; box-shadow: 0 8px 20px rgba(245,165,36,.35); }
.btn-orange:hover { background: var(--orange-dark); }
.btn-outline-light { border-color: rgba(255,255,255,.6); color: #fff; }
.btn-outline-light:hover { background: rgba(255,255,255,.12); }
.btn-outline-forest { border-color: var(--forest); color: var(--forest); }
.btn-outline-forest:hover { background: var(--forest); color: #fff; }

/* Mobile nav toggle button (hidden on desktop) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  border: none;
  background: var(--cream-deep);
  border-radius: 10px;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}
.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--forest-dark);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-phone-mobile,
.nav-cta-mobile { display: none; }

.nav-close {
  display: none;
  position: absolute;
  top: 18px;
  right: 20px;
  width: 40px;
  height: 40px;
  border: none;
  background: var(--cream-deep);
  color: var(--forest-dark);
  border-radius: 50%;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav-close:hover { background: var(--mint); }

.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(13, 63, 36, .35);
  z-index: 98;
  opacity: 0;
  transition: opacity .25s ease;
}
.nav-backdrop.open { display: block; opacity: 1; }

/* Hero */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, rgba(13,63,36,.35), rgba(13,63,36,.55)),
              url('images/hero.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
}
.hero-inner { max-width: 780px; padding: 100px 32px; margin: 0 auto; text-align: center; }
.badge-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.35);
  padding: 8px 20px; border-radius: 999px; font-size: .82rem;
  font-weight: 600; letter-spacing: .04em; margin-bottom: 28px;
  backdrop-filter: blur(4px);
}
.hero h1 { color: #fff; font-size: 3.4rem; margin-bottom: 6px; }
.hero .accent-italic { font-style: italic; color: var(--mint); }
.hero p.lead { color: rgba(255,255,255,.9); font-size: 1.15rem; max-width: 620px; margin: 22px auto 0; }

/* Trust banner — highlighted band directly under the hero */
.trust-banner {
  position: relative;
  background: linear-gradient(135deg, var(--cream-deep), var(--cream));
  color: var(--ink);
  text-align: center;
  padding: 60px 32px 70px;
  border-top: 4px solid var(--orange);
  border-bottom: 4px solid var(--orange);
  box-shadow: 0 12px 30px rgba(20, 92, 52, 0.12);
}
.trust-box {
  position: relative;
  max-width: 780px; margin: 0 auto 34px;
  background: linear-gradient(135deg, #ffffff, var(--cream-deep) 140%);
  border: 2px solid var(--forest);
  border-radius: var(--radius);
  padding: 32px 40px;
  font-size: 1.05rem;
  color: var(--ink);
  box-shadow: 0 14px 34px rgba(20, 92, 52, 0.18);
  animation: trustGlow 2.6s ease-in-out infinite;
}

.trust-box b { color: var(--forest); }

@keyframes trustGlow {
  0%, 100% {
    border-color: var(--forest);
    box-shadow: 0 14px 34px rgba(20, 92, 52, 0.18), 0 0 0 0 rgba(169, 224, 192, .55);
  }
  50% {
    border-color: var(--mint);
    box-shadow: 0 14px 34px rgba(20, 92, 52, 0.22), 0 0 0 10px rgba(169, 224, 192, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .trust-box { animation: none; }
}
.cta-row { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; margin-bottom: 46px; }
.trust-banner .btn-outline-light {
  border-color: var(--forest);
  color: var(--forest);
}
.trust-banner .btn-outline-light:hover { background: var(--forest); color: #fff; }
.pill-stats { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; max-width: 1100px; margin: 0 auto; }
.pill-stat {
  flex: 1 1 260px; max-width: 340px;
  background: #fff; border: 1px solid var(--cream-deep);
  border-radius: 12px; padding: 20px 22px; display: flex; align-items: center; gap: 14px;
  font-weight: 600; text-align: left; color: var(--ink);
  box-shadow: var(--shadow);
}
.pill-stat .dot {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--orange); color: #241300;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

/* Sections */
section { padding: 90px 0; }
.section-cream { background: var(--cream); }
.section-forest {
  background: linear-gradient(135deg, var(--forest-dark), var(--forest-mid));
  color: #fff;
}
.section-forest h2 { color: #fff; }
.section-forest .sub { color: rgba(255,255,255,.82); }
.center { text-align: center; }
.sub { color: var(--gray); font-size: 1.08rem; max-width: 620px; }
.center .sub { margin: 0 auto; }

/* Focus grid (two-col: text + card grid) */
.focus-layout { display: grid; grid-template-columns: 1fr 1.3fr; gap: 60px; align-items: start; }
.focus-title { font-size: 2.6rem; }
.card-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.focus-card {
  background: #fff; border-radius: var(--radius); padding: 30px;
  box-shadow: var(--shadow); position: relative; overflow: hidden;
}
.focus-icon {
  width: 54px; height: 54px; border-radius: 12px; background: var(--cream-deep);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px; font-size: 1.4rem;
}
.focus-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}
.focus-card-top .focus-icon { margin-bottom: 0; }
.focus-card h3 { font-size: 1.3rem; margin-bottom: 8px; }
.focus-card p { color: var(--gray); margin: 0; }

/* Pillars */
.pillar-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid rgba(255,255,255,.18); border-radius: var(--radius); overflow: hidden; margin-top: 46px; }
.pillar-item { padding: 44px 44px; border-right: 1px solid rgba(255,255,255,.18); border-bottom: 1px solid rgba(255,255,255,.18); }
.pillar-item:nth-child(2n) { border-right: none; }
.pillar-item h3 { color: #fff; font-size: 1.4rem; }
.pillar-item svg { margin-bottom: 18px; }

/* ISO section */
.iso-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; margin-top: 50px; }
.iso-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 36px; }
.iso-card h3 { font-size: 1.3rem; }
.iso-card .label { color: var(--gray); font-size: .92rem; margin-bottom: 4px; }
.iso-card a.link { color: var(--orange-dark); font-weight: 600; }
.iso-list { list-style: none; margin: 18px 0 0; padding: 0; }
.iso-list li { display: flex; gap: 10px; padding: 10px 0; font-weight: 600; }
.iso-list li:not(:last-child) { border-bottom: 1px solid var(--cream-deep); }
.iso-cert {
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 44px; text-align: center;
  border-top: 6px solid var(--orange);
}
.iso-ring {
  width: 130px; height: 130px; border-radius: 50%; border: 4px solid var(--orange);
  display: flex; align-items: center; justify-content: center; flex-direction: column;
  margin: 0 auto 24px; color: var(--forest-dark); font-weight: 700;
}
.iso-row { display: flex; justify-content: space-between; padding: 14px 0; border-top: 1px solid var(--cream-deep); font-size: .95rem; gap: 12px; }
.iso-row span:first-child { color: var(--gray); }
.iso-row .cert-no { color: var(--orange-dark); font-weight: 700; }

/* Educational journey */
.journey-head { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 16px; margin-bottom: 50px; }
.journey-item {
  display: grid; grid-template-columns: 90px 1fr 260px; align-items: center; gap: 30px;
  padding: 34px 40px; border-radius: var(--radius); margin-bottom: 22px;
}
.journey-item:nth-child(odd) { background: var(--cream); }
.journey-item:nth-child(even) { background: var(--cream-deep); }
.journey-num { font-family: 'Playfair Display', serif; font-size: 3rem; color: var(--mint); -webkit-text-stroke: 1.5px var(--forest-mid); color: transparent; }
.journey-item h3 { font-size: 1.5rem; margin-bottom: 6px; }
.journey-item p { color: var(--gray); margin: 0; }
.journey-img { border-radius: 12px; overflow: hidden; height: 130px; background: var(--cream-deep); }
.journey-img img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }

/* Educational Journey — age-badge card grid */
.journey-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.journey-card {
  background: var(--cream-deep);
  border-radius: var(--radius);
  padding: 30px 34px;
  transition: transform .35s cubic-bezier(.25,.7,.35,1), box-shadow .35s ease, background .35s ease;
}
.journey-card:hover {
  background: #fff;
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.journey-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}
.journey-card-top h3 {
  font-size: 1.5rem;
  margin: 0;
}
.age-badge {
  flex-shrink: 0;
  background: var(--forest);
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  padding: 7px 18px;
  border-radius: 999px;
  white-space: nowrap;
}
.journey-card p { color: var(--gray); margin: 0; }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 18px; margin-top: 50px; }
.gallery-grid > div:first-child { grid-row: span 2; }
.gallery-tile { border-radius: 14px; overflow: hidden; min-height: 180px; }
.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .5s ease;
}
.gallery-tile:hover img { transform: scale(1.08); }

/* Closing CTA */
.closing-cta { background: linear-gradient(120deg, var(--forest-mid), var(--forest-dark)); color: #fff; text-align: center; padding: 100px 32px; }
.closing-cta h2 { color: #fff; font-size: 2.6rem; }
.closing-cta p { color: rgba(255,255,255,.85); max-width: 560px; margin: 18px auto 34px; }

/* Footer */
footer { background: var(--forest-dark); color: rgba(255,255,255,.85); padding: 70px 32px 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; max-width: 1200px; margin: 0 auto; }
.footer-brand { display: flex; gap: 12px; align-items: center; margin-bottom: 16px; }
.footer-grid h4 { color: #fff; font-family: 'Playfair Display', serif; margin-bottom: 18px; font-size: 1.1rem; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 12px; }
.footer-grid a:hover { color: var(--orange); }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; }
.footer-bottom { text-align: center; border-top: 1px solid rgba(255,255,255,.12); margin-top: 50px; padding-top: 24px; font-size: .85rem; color: rgba(255,255,255,.5); }

/* Footer social icons */
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.22);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  transition: background .2s ease, transform .2s ease, border-color .2s ease;
}
.footer-social a:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #241300;
  transform: translateY(-3px);
}

/* About page specifics */
.about-hero { background: var(--cream-deep); padding: 100px 32px 90px; text-align: center; }
.about-hero h1 { font-size: 2.8rem; max-width: 900px; margin: 0 auto 20px; }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.story-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); position: relative; }
.story-img svg { width: 100%; height: 100%; }
.story-text p { color: var(--gray); margin-bottom: 18px; }
.story-text b { color: var(--forest); }

.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.vm-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 40px; }
.vm-icon { width: 50px; height: 50px; border-radius: 50%; background: var(--cream-deep); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; color: var(--forest); }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 50px; }
.value-card { background: var(--cream-deep); border-radius: var(--radius); padding: 34px; }
.value-icon { width: 48px; height: 48px; border-radius: 50%; background: var(--forest); color: #fff; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.value-card h3 { font-size: 1.2rem; }
.value-card p { color: var(--gray); margin: 0; }

.diff-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 50px; }
.diff-item { display: flex; gap: 14px; align-items: flex-start; background: #fff; border-radius: 12px; padding: 22px 26px; box-shadow: var(--shadow); }
.diff-check { width: 26px; height: 26px; border-radius: 50%; background: var(--forest); color: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: .8rem; }

/* Our Therapy Services — unique icon card grid */
.therapy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.therapy-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  padding: 34px 28px 30px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform .35s cubic-bezier(.25,.7,.35,1), box-shadow .35s ease;
}
.therapy-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: var(--forest);
}
.therapy-card:nth-child(3n+2)::before { background: var(--orange); }
.therapy-card:nth-child(3n+3)::before { background: var(--forest-mid); }
.therapy-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 44px rgba(20,92,52,.16);
}
.therapy-num {
  position: absolute;
  top: 18px;
  right: 22px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 2.6rem;
  color: var(--cream-deep);
  line-height: 1;
  z-index: 0;
  user-select: none;
}
.therapy-icon {
  position: relative;
  z-index: 1;
  width: 62px; height: 62px;
  border-radius: 50%;
  background: var(--cream-deep);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
  margin-bottom: 20px;
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), background .3s ease;
}
.therapy-card:nth-child(3n+2) .therapy-icon { background: #fdecc8; }
.therapy-card:nth-child(3n+3) .therapy-icon { background: var(--mint); }
.therapy-card:hover .therapy-icon { transform: scale(1.12) rotate(-6deg); }
.therapy-card h3 { position: relative; z-index: 1; font-size: 1.22rem; margin-bottom: 10px; }
.therapy-card p { position: relative; z-index: 1; color: var(--gray); margin: 0; }

/* Simple page (stub) */
.stub-hero { background: var(--cream-deep); padding: 90px 32px; text-align: center; }
.stub-body { padding: 70px 32px; max-width: 900px; margin: 0 auto; color: var(--gray); }
.stub-body h2 { color: var(--forest-dark); }
.list-check { list-style: none; padding: 0; }
.list-check li { padding: 10px 0 10px 32px; position: relative; border-bottom: 1px solid var(--cream-deep); }
.list-check li::before { content: "✓"; position: absolute; left: 0; color: var(--forest); font-weight: 700; }

/* ==========================================================
   INDIVIDUAL PROGRAM DETAIL PAGE
   ========================================================== */
.program-hero {
  background: linear-gradient(160deg, var(--cream-deep), var(--cream));
  padding: 56px 32px 70px;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--forest);
  font-weight: 600;
  margin-bottom: 46px;
}
.back-link:hover { text-decoration: underline; }
.program-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.program-hero-grid h1 {
  font-size: 3rem;
  margin: 14px 0 18px;
}
.program-hero-grid .sub { font-size: 1.15rem; max-width: 100%; }
.program-hero-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(20, 92, 52, 0.18);
}
.program-hero-img img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.about-program { padding: 90px 0; }
.about-program .container { max-width: 860px; }
.about-program h2 { font-size: 2.2rem; }
.about-program p { color: var(--gray); font-size: 1.08rem; }

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.benefits-grid h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: var(--forest-dark);
}
.benefit-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px 34px;
  color: var(--gray);
}

@media (max-width: 980px) {
  .program-hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .program-hero-grid h1 { font-size: 2.3rem; }
  .benefits-grid { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 640px) {
  .program-hero { padding: 40px 20px 50px; }
  .back-link { margin-bottom: 30px; }
  .program-hero-grid h1 { font-size: 1.9rem; }
  .about-program { padding: 60px 0; }
  .benefit-card { padding: 24px 22px; }
}

.info-table { width: 100%; border-collapse: collapse; margin-top: 20px; }
.info-table td { padding: 12px 14px; border-bottom: 1px solid var(--cream-deep); }
.info-table td:first-child { color: var(--gray); width: 40%; }

form.contact-form { display: grid; gap: 16px; max-width: 560px; margin-top: 30px; }
form.contact-form input, form.contact-form textarea {
  padding: 14px 16px; border: 1px solid #dfe8e2; border-radius: 10px; font-family: inherit; font-size: 1rem;
}
form.contact-form button { justify-self: start; }

/* ==========================================================
   FEATURED PROGRAMS (image-card grid)
   ========================================================== */
.program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 50px;
}
.program-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.program-img {
  width: 100%;
  height: 190px;
  background: var(--cream-deep);
  overflow: hidden;
}
.program-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .5s ease;
}
.program-card:hover .program-img img { transform: scale(1.06); }
.program-body { padding: 26px 28px 30px; flex: 1; display: flex; flex-direction: column; }
.program-tag {
  align-self: flex-start;
  background: var(--cream-deep);
  color: var(--forest-mid);
  font-size: .78rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.program-body h3 { font-size: 1.25rem; margin-bottom: 10px; }
.program-body p { color: var(--gray); margin: 0 0 18px; flex: 1; }
.program-link { display: inline-flex; align-items: center; gap: 6px; color: var(--forest); font-weight: 600; }
.program-link svg { transition: transform .2s ease; }
.program-card:hover .program-link svg { transform: translateX(3px); }

/* ==========================================================
   OUR APPROACH (numbered step cards)
   ========================================================== */
.approach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
}
.approach-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 34px 28px;
  text-align: center;
}
.approach-num {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--forest);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-family: 'Playfair Display', serif;
  margin: 0 auto 20px;
}
.approach-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.approach-card p { color: var(--gray); margin: 0; font-size: .95rem; }

/* Shared hover treatment for the new cards */
.program-card, .approach-card {
  transition: transform .35s cubic-bezier(.25,.7,.35,1), box-shadow .35s ease;
}
.program-card:hover, .approach-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(20,92,52,.14);
}

/* ---------------- Animations ---------------- */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.25,.7,.35,1), transform .7s cubic-bezier(.25,.7,.35,1);
  transition-delay: var(--reveal-delay, 0s);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

.hero .badge-pill,
.hero h1,
.hero p.lead {
  opacity: 0;
  animation: heroIn .8s cubic-bezier(.25,.7,.35,1) forwards;
}
.hero .badge-pill { animation-delay: .1s; }
.hero h1 { animation-delay: .28s; }
.hero p.lead { animation-delay: .48s; }
@keyframes heroIn {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Hero background stays full-cover on every screen size — only the
   focal point drifts slowly, so the image never shrinks or leaves gaps. */
.hero { background-size: cover; animation: heroDrift 22s ease-in-out infinite alternate; }
@keyframes heroDrift {
  from { background-position: center 35%; }
  to   { background-position: center 55%; }
}

.main-nav a {
  position: relative;
  border-bottom: none !important;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -4px;
  height: 2px;
  background: var(--forest);
  transition: right .28s cubic-bezier(.25,.7,.35,1);
}
.main-nav a:hover::after,
.main-nav a.active::after { right: 0; }

.btn { transition: transform .2s cubic-bezier(.34,1.56,.64,1), box-shadow .2s ease, background .2s ease; }
.btn:active { transform: translateY(0) scale(.97); }

.focus-card, .value-card, .vm-card, .iso-card, .iso-cert, .diff-item, .gallery-tile, .journey-item, .pill-stat {
  transition: transform .35s cubic-bezier(.25,.7,.35,1), box-shadow .35s ease;
}
.focus-card:hover, .value-card:hover, .vm-card:hover, .iso-card:hover, .iso-cert:hover, .diff-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(20,92,52,.14);
}
.journey-item:hover { transform: translateX(4px); }
.pillar-item { transition: background .3s ease; }
.pillar-item:hover { background: rgba(255,255,255,.05); }

.focus-card:hover .focus-icon, .vm-card:hover .vm-icon, .value-card:hover .value-icon {
  transform: scale(1.1) rotate(-4deg);
}
.focus-icon, .vm-icon, .value-icon { transition: transform .3s cubic-bezier(.34,1.56,.64,1); }

@media (prefers-reduced-motion: reduce) {
  .hero { animation: none; background-position: center; }
  .hero .badge-pill, .hero h1, .hero p.lead { animation: none; opacity: 1; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .focus-card, .value-card, .vm-card, .iso-card, .iso-cert, .diff-item, .gallery-tile, .journey-item, .pill-stat, .gallery-tile img {
    transition: none;
  }
}

/* =====================================================
   RESPONSIVE BREAKPOINTS
   ===================================================== */

/* ---- Tablet / small laptop (≤ 980px) ---- */
@media (max-width: 980px) {

  .container { padding: 0 24px; }
  section { padding: 64px 0; }

  /* Mobile nav drawer */
  .nav-toggle { display: inline-flex; }
  .nav-right .nav-phone,
  .nav-right > .btn-orange { display: none; }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(320px, 82vw);
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 96px 28px 32px;
    box-shadow: -18px 0 40px rgba(13,63,36,.14);
    transform: translateX(100%);
    transition: transform .3s cubic-bezier(.25,.7,.35,1);
    z-index: 99;
    overflow-y: auto;
  }
  .main-nav.open { transform: translateX(0); }
  .nav-close { display: flex; }
  .main-nav a {
    padding: 14px 4px;
    border-bottom: 1px solid var(--cream-deep) !important;
    font-size: 1.05rem;
  }
  .main-nav a::after { display: none; }
  .main-nav a.active { color: var(--forest); }
  .nav-phone-mobile { display: flex; padding-top: 20px; border-bottom: none !important; }
  .nav-cta-mobile { display: inline-block; text-align: center; margin-top: 14px; }

  .nav-backdrop.open { display: block; }

  .focus-layout, .card-grid-2, .iso-grid, .story-grid, .vm-grid, .values-grid, .diff-grid { grid-template-columns: 1fr; }
  .therapy-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .journey-item { grid-template-columns: 1fr; text-align: left; }
  .journey-num { font-size: 2.2rem; }
  .journey-card-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid > div:first-child { grid-row: span 1; }
  .pillar-grid { grid-template-columns: 1fr 1fr; }

  .hero h1 { font-size: 2.3rem; }
  .hero-inner { padding: 80px 24px; }
  .focus-title { font-size: 2.1rem; }

  .program-grid { grid-template-columns: 1fr 1fr; }
  .approach-grid { grid-template-columns: 1fr 1fr; }
}

/* ---- Mobile (≤ 640px) ---- */
@media (max-width: 640px) {

  .container { padding: 0 20px; }
  section { padding: 52px 0; }

  .nav-wrap { padding: 12px 18px; }
  .brand-name { font-size: 1.1rem; }
  .brand-tag { font-size: .7rem; }
  .brand-logo { width: 40px; height: 40px; }

  .hero { min-height: 520px; background-size: cover; background-position: center; animation: none; }
  .hero-inner { padding: 64px 20px; }
  .hero h1 { font-size: 1.9rem; }
  .hero p.lead { font-size: 1rem; }
  .badge-pill { font-size: .72rem; padding: 7px 14px; text-align: center; }

  .trust-banner { padding: 44px 18px 54px; }
  .trust-box { padding: 22px 20px; font-size: .95rem; }
  .cta-row { flex-direction: column; align-items: stretch; }
  .cta-row .btn { text-align: center; }

  /* Pill stats: keep them in a row (not stacked) on mobile */
  .pill-stats { flex-direction: row; flex-wrap: wrap; gap: 10px; }
  .pill-stat {
    flex: 1 1 140px;
    max-width: none;
    padding: 12px 14px;
    gap: 8px;
    font-size: .8rem;
  }
  .pill-stat .dot { width: 26px; height: 26px; font-size: .75rem; }

  h2 { font-size: 1.7rem !important; }
  .focus-title { font-size: 1.7rem !important; }
  .sub { font-size: 1rem; }

  .card-grid-2 { grid-template-columns: 1fr; }
  .focus-card { padding: 24px; }
  .therapy-grid { grid-template-columns: 1fr; gap: 16px; }
  .therapy-card { padding: 28px 24px 26px; }

  .pillar-grid { grid-template-columns: 1fr; }
  .pillar-item { padding: 32px 26px; border-right: none !important; }
  .pillar-item:not(:last-child) { border-bottom: 1px solid rgba(255,255,255,.18); }

  .iso-grid { gap: 26px; }
  .iso-card, .iso-cert { padding: 26px; }
  .iso-ring { width: 108px; height: 108px; font-size: .9rem; }
  .iso-row { flex-direction: column; align-items: flex-start; gap: 4px; padding: 12px 0; }

  .journey-head { flex-direction: column; align-items: flex-start; }
  .journey-item { padding: 24px 22px; gap: 16px; }
  .journey-img { height: 180px; }
  .journey-card-grid { gap: 16px; }
  .journey-card { padding: 24px 22px; }
  .journey-card-top { flex-direction: column; align-items: flex-start; gap: 8px; }

  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .gallery-tile { min-height: 130px; }

  .closing-cta { padding: 64px 22px; }
  .closing-cta h2 { font-size: 1.8rem !important; }

  .footer-grid { grid-template-columns: 1fr; gap: 34px; text-align: left; }
  footer { padding: 54px 22px 24px; }

  .story-grid, .vm-grid, .diff-grid { gap: 26px; }
  .values-grid { grid-template-columns: 1fr; }
  .about-hero h1 { font-size: 2rem; }

  .program-grid { grid-template-columns: 1fr; }
  .program-img { height: 210px; }
  .approach-grid { grid-template-columns: 1fr; }
  .approach-card { padding: 28px 24px; }
}

/* ---- Small phones (≤ 380px) ---- */
@media (max-width: 380px) {
  .hero h1 { font-size: 1.6rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .brand-tag { display: none; }

  /* Still a row layout, just tighter/wrapping so pills fit without overflow */
  .pill-stats { gap: 8px; }
  .pill-stat {
    flex: 1 1 45%;
    padding: 10px 12px;
    font-size: .72rem;
    gap: 6px;
  }
  .pill-stat .dot { width: 22px; height: 22px; font-size: .68rem; }
}

/* ==========================================================
   CONTACT PAGE — quick info cards
   ========================================================== */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.contact-info-card {
  background: var(--cream-deep);
  border-radius: var(--radius);
  padding: 38px 22px;
  text-align: center;
  display: block;
  cursor: pointer;
  transition: transform .35s cubic-bezier(.25,.7,.35,1), box-shadow .35s ease;
}
.contact-info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(20,92,52,.14);
}
.contact-info-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--forest);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.contact-info-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.contact-info-card p { color: var(--gray); margin: 0; font-size: .95rem; }

/* Follow us row (Instagram / Facebook) under the quick info cards */
.social-follow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 40px;
}
.social-follow-label {
  font-weight: 600;
  color: var(--forest-dark);
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: .82rem;
}
.social-icons { display: flex; gap: 14px; }
.social-icon-link {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--forest);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow);
  transition: transform .25s cubic-bezier(.34,1.56,.64,1), background .25s ease;
}
.social-icon-link:hover {
  background: var(--orange);
  transform: translateY(-4px) scale(1.06);
}

@media (max-width: 640px) {
  .social-follow { flex-direction: column; gap: 12px; margin-top: 30px; }
}

/* ==========================================================
   CONTACT PAGE — inquiry section
   ========================================================== */
.inquiry-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }

.expect-list { list-style: none; margin: 0; padding: 0; }
.expect-list li {
  display: flex; align-items: center; gap: 12px;
  padding: 9px 0; color: var(--ink); font-weight: 500;
}
.check-dot {
  width: 24px; height: 24px; flex-shrink: 0; border-radius: 50%;
  background: var(--forest); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem; font-weight: 700;
}

.inquiry-form-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px;
}
.inquiry-form-card form.contact-form { margin-top: 0; max-width: none; }
.inquiry-form-card label {
  display: grid; gap: 8px;
  font-weight: 600; font-size: .92rem; color: var(--ink);
}
.inquiry-form-card .req { color: var(--orange-dark); }
.btn-block { width: 100%; text-align: center; display: flex; align-items: center; justify-content: center; }

/* ==========================================================
   CONTACT PAGE — donate / support
   ========================================================== */
.donate-tagline {
  color: var(--orange-dark);
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1.3rem;
  margin: 0 0 14px;
}
.donate-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: start; margin-top: 50px;
}
.bank-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px;
}
.bank-card h3 { margin-bottom: 6px; }
.bank-row {
  display: flex; flex-direction: column; gap: 4px;
  background: var(--cream);
  border-radius: 10px;
  padding: 16px 18px;
  margin-top: 18px;
}
.bank-label { font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; color: var(--gray); }
.bank-value { font-family: 'Playfair Display', serif; font-weight: 700; color: var(--forest-dark); font-size: 1.05rem; }
.bank-note {
  margin-top: 20px;
  background: #fbf3df;
  border: 1px solid #f0dfa9;
  border-radius: 10px;
  padding: 14px 16px;
  font-size: .88rem;
  color: var(--ink);
}

/* ==========================================================
   CONTACT PAGE — responsive
   ========================================================== */
@media (max-width: 980px) {
  .contact-info-grid { grid-template-columns: 1fr 1fr; }
  .inquiry-grid, .donate-grid { grid-template-columns: 1fr; gap: 40px; }
  .inquiry-form-card, .bank-card { padding: 32px; }
}

@media (max-width: 640px) {
  .contact-info-grid { grid-template-columns: 1fr; gap: 16px; }
  .contact-info-card { padding: 28px 20px; }
  .inquiry-form-card, .bank-card { padding: 26px 22px; }
  .donate-tagline { font-size: 1.1rem; }
}

/* ==========================================================
   GALLERY LIGHTBOX
   ========================================================== */
.gallery-tile { cursor: zoom-in; }

.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13, 30, 20, .92);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  transition: opacity .25s ease;
}
.lightbox-overlay.open { display: flex; opacity: 1; }

.lightbox-img-wrap {
  max-width: 90vw;
  max-height: 85vh;
  transform: scale(.94);
  transition: transform .25s cubic-bezier(.25,.7,.35,1);
}
.lightbox-overlay.open .lightbox-img-wrap { transform: scale(1); }

.lightbox-img-wrap img {
  max-width: 90vw;
  max-height: 85vh;
  width: auto;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}

.lightbox-close,
.lightbox-nav {
  position: fixed;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.3);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
.lightbox-close:hover,
.lightbox-nav:hover { background: var(--orange); color: #241300; }

.lightbox-close {
  top: 24px;
  right: 24px;
  width: 46px;
  height: 46px;
  font-size: 1.6rem;
  line-height: 1;
}

.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  font-size: 1.6rem;
}
.lightbox-nav:hover { transform: translateY(-50%) scale(1.06); }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

.lightbox-counter {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.8);
  font-size: .9rem;
  letter-spacing: .04em;
}

@media (max-width: 640px) {
  .lightbox-overlay { padding: 16px; }
  .lightbox-close { top: 14px; right: 14px; width: 40px; height: 40px; font-size: 1.3rem; }
  .lightbox-nav { width: 42px; height: 42px; font-size: 1.3rem; }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
}