/*
Theme Name:  Campion International
Theme URI:   https://campioninternational.com
Author:      Campion International
Author URI:  https://campioninternational.com
Description: Official WordPress theme for Campion International — global pediatric therapy, staffing, teletherapy, training, scholarships, and clinic development. Mirrors the approved design mockup exactly. Swap brand colors via CSS variables in :root.
Version:     1.0.0
License:     GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: campion
Tags:        healthcare, pediatric, therapy, custom-colors, custom-menu, full-width-template
*/

/* ============================================================
   BRAND COLOR TOKENS — swap these to update the whole theme
   ============================================================ */
:root {
  /* Primary palette */
  --teal-deep:       #2E7E84;   /* main CTA / accent colour */
  --teal:            #7FB3B7;   /* light teal highlights    */
  --navy:            #2A3F44;   /* headings / dark UI       */
  --navy-deep:       #1E2D31;   /* footer / darkest bg      */

  /* Gold / champagne */
  --champagne:       #C2AC80;   /* decorative gold          */
  --champagne-soft:  #EFE9DC;   /* very light gold wash     */

  /* Backgrounds */
  --paper:           #F7F4EE;   /* page background          */
  --paper-2:         #EFEAE0;   /* alternate section bg     */

  /* Text */
  --ink:             #2B393C;   /* primary body text        */
  --ink-soft:        #5C6B6C;   /* secondary body text      */

  /* Borders / lines */
  --line:            #E2DBCC;
  --line-strong:     #D2C9B5;

  /* Whites */
  --white:           #ffffff;

  /* Shadows */
  --shadow:          0 24px 60px -40px rgba(42,63,68,.5);
  --shadow-sm:       0 14px 34px -28px rgba(42,63,68,.45);

  /* Shape */
  --radius:          3px;
  --radius-lg:       4px;
  --maxw:            1200px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  {
  font-family: 'Montserrat', sans-serif;
  background: var(--paper);
  color: var(--ink-soft);
  line-height: 1.7;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1,h2,h3,h4 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.04;
  font-weight: 500;
  color: var(--navy);
}
h1 { font-size: clamp(2.9rem,6vw,5rem);   letter-spacing: -.8px; font-weight: 500; }
h2 { font-size: clamp(2.1rem,4vw,3.4rem); letter-spacing: -.5px; }
h3 { font-size: clamp(1.45rem,2.4vw,1.95rem); }
p  { font-weight: 300; color: var(--ink-soft); }
a  { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }

/* ============================================================
   EYEBROW LABELS
   ============================================================ */
.eyebrow {
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: .3em;
  font-size: .66rem;
  font-weight: 600;
  color: var(--teal-deep);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--champagne); display: inline-block; }
.sec-head.center .eyebrow,
.cta-band .eyebrow { justify-content: center; }
.eyebrow.light { color: var(--champagne); }
.eyebrow.light::before { background: rgba(255,255,255,.45); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .13em;
  padding: 15px 28px;
  border-radius: 2px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn-teal          { background: var(--teal-deep); color: #fff; }
.btn-teal:hover    { background: var(--navy); }
.btn-champagne     { background: var(--champagne); color: var(--navy); }
.btn-champagne:hover { background: #b39a68; }
.btn-outline       { background: transparent; color: var(--navy); border-color: var(--line-strong); }
.btn-outline:hover { border-color: var(--navy); background: var(--navy); color: #fff; }
.btn-ghost-light   { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn-ghost-light:hover { background: #fff; color: var(--navy); }
.btn-white         { background: #fff; color: var(--navy); }
.btn-white:hover   { background: var(--champagne); }
.btn .arw          { transition: transform .2s ease; }
.btn:hover .arw    { transform: translateX(4px); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251,250,247,.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  gap: 18px;
}
.site-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
  text-decoration: none;
}
.site-brand .brand-logo { width: 34px; height: 34px; flex-shrink: 0; }
.site-brand .brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: .01em;
}

/* Custom logo uploaded via Customizer → Site Identity
   !important overrides WordPress's inline width/height attrs on <img> */
.site-brand .custom-logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.site-brand .custom-logo {
  display: block;
  max-height: 48px !important;  /* header logo height cap */
  max-width: 200px !important;  /* header logo width cap  */
  width: auto !important;
  height: auto !important;
}

/* Footer logo — same image, smaller sizing for dark background */
.foot-brand .custom-logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.foot-brand .custom-logo {
  display: block;
  max-height: 36px !important;  /* footer logo height cap */
  max-width: 160px !important;
  width: auto !important;
  height: auto !important;
  /* invert to white on the dark footer; remove if logo is already light */
  filter: brightness(0) invert(1);
  opacity: .88;
}
.main-nav { display: flex; align-items: center; gap: 2px; }
.main-nav a {
  font-size: .74rem;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 10px 14px;
  letter-spacing: .04em;
  position: relative;
  transition: color .15s ease;
}
.main-nav a:hover,
.main-nav a.current-menu-item { color: var(--navy); }
.main-nav a.current-menu-item::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 4px;
  height: 1px;
  background: var(--champagne);
}
.nav-utility {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}
.nav-utility .util-link {
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--ink-soft);
}
.nav-utility .util-link:hover  { color: var(--navy); }
.nav-utility .util-pay         { color: var(--teal-deep); font-weight: 600; }
.nav-utility .util-pay:hover   { color: var(--navy); }
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.menu-toggle span { width: 24px; height: 1.5px; background: var(--navy); transition: .2s; }

/* ============================================================
   SECTIONS
   ============================================================ */
section { padding: 104px 0; }
section.tight { padding: 74px 0; }
.lead { font-size: 1.18rem; max-width: 600px; font-weight: 300; line-height: 1.75; }

/* brand corner accent */
.tri { position: relative; overflow: hidden; }
.tri::before {
  content: "";
  position: absolute;
  top: 18px; left: 18px;
  width: 14px; height: 14px;
  border-top: 1px solid var(--champagne);
  border-left: 1px solid var(--champagne);
  z-index: 3;
  opacity: .85;
}
.tri.tl::before {
  border-top: 1px solid rgba(255,255,255,.6);
  border-left: 1px solid rgba(255,255,255,.6);
}

.sec-head { margin-bottom: 48px; }
.sec-head.center { text-align: center; }
.sec-head h2 { margin-top: 4px; }

/* ============================================================
   DARK BAND
   ============================================================ */
.band-dark {
  background: var(--navy-deep);
  color: rgba(255,255,255,.8);
  padding: 96px 0;
}
.band-dark h2 { color: #fff; }
.band-dark p  { color: rgba(255,255,255,.75); }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: linear-gradient(135deg, var(--navy), #2c5158);
  color: #fff;
}
.cta-band .wrap { padding: 74px 26px; text-align: center; }
.cta-band h2 { color: #fff; margin-bottom: 14px; }
.cta-band p  { color: rgba(255,255,255,.8); margin-bottom: 28px; }
.cta-band .btns { display: flex; flex-wrap: wrap; gap: 13px; justify-content: center; margin-top: 24px; }

/* ============================================================
   CARDS / GRID
   ============================================================ */
.grid { display: grid; gap: 20px; }
.g6   { grid-template-columns: repeat(3,1fr); }
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: box-shadow .2s ease;
}
.card:hover { box-shadow: var(--shadow-sm); }
.card h3    { margin-bottom: 10px; }
.card p     { font-size: .92rem; }

.subchip {
  display: inline-block;
  font-size: .58rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--teal-deep);
  border: 1px solid var(--teal);
  padding: 3px 8px;
  border-radius: 2px;
  margin-bottom: 12px;
}
.more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--teal-deep);
  text-transform: uppercase;
  margin-top: 16px;
}
.ic-wrap {
  width: 44px; height: 44px;
  background: var(--champagne-soft);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.sn {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--champagne);
  font-weight: 700;
  margin-bottom: 8px;
}

/* ============================================================
   SPLIT / TWO-COL
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.split-card {
  padding: 48px 40px;
  border-radius: var(--radius);
  color: #fff;
}
.split-card h3 { color: #fff; margin-bottom: 14px; }
.split-card p  { color: rgba(255,255,255,.85); margin-bottom: 28px; }
.split-card.parents { background: var(--navy); }
.split-card.schools { background: var(--teal-deep); }

/* ============================================================
   STEPS / PROCESS
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
}
.step .sn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--teal-deep);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  margin-bottom: 18px;
}
.step h4 { font-family: 'Montserrat', sans-serif; font-size: .9rem; font-weight: 700; margin-bottom: 8px; color: var(--navy); }
.step p  { font-size: .88rem; }

/* ============================================================
   CHIPS / SPEC STRIP
   ============================================================ */
.spec-strip { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  font-size: .74rem;
  font-weight: 500;
  color: var(--ink);
  background: #fff;
  letter-spacing: .04em;
}

/* ============================================================
   CHECKLIST
   ============================================================ */
.checklist { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px 32px; }
.check {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .9rem;
  color: var(--ink);
  font-weight: 500;
}
.check svg { flex-shrink: 0; color: var(--teal-deep); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.phero {
  padding: 80px 0;
  background: var(--paper-2);
  border-bottom: 1px solid var(--line);
}
.phero.tealbg { background: linear-gradient(135deg, var(--navy), #2c5158); color: #fff; }
.phero.tealbg h1,
.phero.tealbg .breadcrumb { color: #fff; }
.phero.tealbg .lead { color: rgba(255,255,255,.85); }
.phero-grid {
  display: grid;
  grid-template-columns: 1fr .68fr;
  gap: 64px;
  align-items: center;
}
.breadcrumb {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.breadcrumb b { color: var(--champagne); }
.phero h1 { max-width: 700px; margin-bottom: 22px; }
.phero .lead { margin-bottom: 32px; }
.phero-ctas { display: flex; flex-wrap: wrap; gap: 12px; }
.phero-img {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--navy);
}
.phero-img.photo {
  background-size: cover;
  background-position: center;
}

/* ============================================================
   LOCATIONS / CITIES
   ============================================================ */
.cities { display: flex; flex-wrap: wrap; gap: 20px 36px; justify-content: center; margin-top: 32px; }
.city {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: rgba(255,255,255,.9);
}
.pin {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--champagne);
  flex-shrink: 0;
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 22px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: .9rem;
  color: var(--navy);
  letter-spacing: .02em;
  gap: 16px;
}
.faq-q .pm {
  font-size: 1.4rem;
  color: var(--teal-deep);
  line-height: 1;
  flex-shrink: 0;
  transition: transform .2s ease;
}
.faq-item.open .faq-q .pm { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.faq-a p { padding-bottom: 22px; font-size: .9rem; }

/* ============================================================
   HOME — CINEMATIC HERO
   ============================================================ */
.cine {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--navy-deep);
}
.cine-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.cine-bg .slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: cine-fade 20s infinite;
  filter: grayscale(20%);
}
.cine-bg .slide:nth-child(1) { animation-delay: 0s;  }
.cine-bg .slide:nth-child(2) { animation-delay: 5s;  }
.cine-bg .slide:nth-child(3) { animation-delay: 10s; }
.cine-bg .slide:nth-child(4) { animation-delay: 15s; }
@keyframes cine-fade {
  0%,100% { opacity: 0; }
  8%,33%  { opacity: .35; }
}
@media (prefers-reduced-motion: reduce) {
  .cine-bg .slide { animation: none; }
  .cine-bg .slide:nth-child(1) { opacity: .35; }
}
.cine-logo {
  display: block;
  margin: 0 auto 28px;
  max-width: 160px;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: .92;
}
.cine::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,rgba(30,45,49,.35) 0%,rgba(30,45,49,.88) 100%);
  z-index: 1;
}
.cine-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 32px;
  max-width: 860px;
}
.cine-eyebrow {
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
}
.cine-eyebrow::before,
.cine-eyebrow::after { content: ""; width: 30px; height: 1px; background: rgba(255,255,255,.4); }
.cine h1 {
  color: #fff;
  font-size: clamp(3.2rem,7vw,5.8rem);
  margin-bottom: 26px;
  letter-spacing: -.5px;
}
.cine h1 .accent { color: var(--champagne); font-style: italic; }
.cine .cine-sub {
  color: rgba(255,255,255,.75);
  font-size: 1.1rem;
  max-width: 640px;
  margin: 0 auto 36px;
  font-weight: 300;
}
.cine-ctas { display: flex; flex-wrap: wrap; gap: 13px; justify-content: center; margin-bottom: 48px; }
.cine-services {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  border-top: 1px solid rgba(255,255,255,.15);
  padding-top: 28px;
}
.cine-services a {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  padding: 6px 12px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 2px;
  transition: all .15s ease;
}
.cine-services a:hover { color: #fff; border-color: rgba(255,255,255,.5); }

/* Location bar */
.loc-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  background: rgba(42,63,68,.55);
  backdrop-filter: blur(6px);
  border-top: 1px solid rgba(255,255,255,.1);
}
.loc-bar .wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 14px;
  padding-bottom: 14px;
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  flex-wrap: wrap;
}
.loc-bar .loc-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--champagne); }

/* ============================================================
   HOME — ECOSYSTEM CARDS
   ============================================================ */
.eco-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}
.eco-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  cursor: pointer;
  transition: box-shadow .2s ease, border-color .2s ease;
}
.eco-card:hover { box-shadow: var(--shadow-sm); border-color: var(--teal); }

/* ============================================================
   HOME — PROBLEM GRID
   ============================================================ */
.prob-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; margin-top: 40px; margin-bottom: 32px; }
.prob { border-left: 2px solid var(--champagne); padding-left: 20px; }
.prob h4 { font-family: 'Montserrat',sans-serif; font-size: .88rem; font-weight: 700; color: rgba(255,255,255,.9); margin-bottom: 8px; }
.prob p  { font-size: .88rem; color: rgba(255,255,255,.65); }
.italic-line {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.45rem;
  color: rgba(255,255,255,.7);
  margin-top: 32px;
  line-height: 1.5;
}

/* ============================================================
   HOME — FLYWHEEL
   ============================================================ */
.fw-bold {
  background: var(--navy);
  padding: 100px 0;
}
.fw-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.fw-words {
  color: #fff;
  font-size: clamp(3rem,5vw,5rem);
  line-height: 1;
  margin-top: 14px;
}
.fw-words .accent { color: var(--champagne); }
.fw-lead { color: rgba(255,255,255,.75); font-size: 1rem; margin-bottom: 32px; }
.fw-list { display: flex; flex-direction: column; gap: 20px; }
.fw-list .item { display: flex; gap: 18px; }
.fw-list .n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: var(--champagne);
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1;
}
.fw-list h4 { font-family: 'Montserrat',sans-serif; font-size: .88rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.fw-list p  { font-size: .86rem; color: rgba(255,255,255,.6); }

/* ============================================================
   HOME — ROUTER
   ============================================================ */
.router-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.router-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 22px;
  cursor: pointer;
  transition: box-shadow .2s ease, border-color .2s ease;
}
.router-card:hover { border-color: var(--teal-deep); box-shadow: var(--shadow-sm); }
.router-card .who { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--teal-deep); margin-bottom: 8px; }
.router-card .act { font-family: 'Cormorant Garamond',serif; font-size: 1.2rem; color: var(--navy); display: flex; align-items: center; gap: 8px; }

/* ============================================================
   HOME — CARE IN ACTION PHOTO GRID
   ============================================================ */
.care-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 12px;
  height: 340px;
}
.care-grid .ph {
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 16px;
  background: var(--navy);
}
.care-grid .ph.photo { background-size: cover; background-position: center; }
.care-grid .ph::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,transparent 50%,rgba(30,45,49,.7));
}
.care-grid .ph span {
  position: relative;
  z-index: 2;
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #fff;
}

/* ============================================================
   LOGO WALL (Partners)
   ============================================================ */
.logo-wall {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 32px;
}
.logo-cell {
  padding: 16px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--ink-soft);
  background: #fff;
}

/* ============================================================
   ACADEMY — PROGRAM GRID
   ============================================================ */
.prog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.prog { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; }
.prog .top {
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.prog .top.t1 { background: var(--teal-deep); color: #fff; }
.prog .top.t2 { background: var(--navy); color: #fff; }
.prog .top.t3 { background: var(--navy-deep); color: #fff; }
.prog .body { padding: 28px; }
.prog .tag {
  display: inline-block;
  font-size: .58rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--teal-deep);
  margin-bottom: 10px;
}
.prog h4 { margin-bottom: 8px; font-family: 'Montserrat',sans-serif; font-weight: 700; font-size: .92rem; color: var(--navy); }
.prog p  { font-size: .86rem; margin-bottom: 18px; }
.prog.featured { box-shadow: var(--shadow-sm); border-color: var(--teal-deep); }

/* ============================================================
   FOUNDATION — STAT BAND
   ============================================================ */
.stat-band {
  background: var(--champagne-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 24px;
}
.stat-big {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
}
.stat-big small {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: .8rem;
  font-weight: 400;
  color: var(--ink-soft);
  margin-top: 8px;
  line-height: 1.5;
}
.cost-img {
  width: 100%;
  height: 280px;
  border-radius: var(--radius-lg);
  background: var(--navy);
  background-size: cover;
  background-position: center;
  margin-bottom: 0;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 36px; }
.pathbtn {
  display: block;
  width: 100%;
  text-align: left;
  padding: 14px 18px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 2px;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: .9rem;
  color: var(--ink);
  transition: .15s;
}
.pathbtn:hover    { border-color: var(--teal-deep); color: var(--teal-deep); }
.pathbtn.active   { background: var(--teal-deep); border-color: var(--teal-deep); color: #fff; }
.contact-form-box { box-shadow: var(--shadow); }
#formfields { display: flex; flex-direction: column; gap: 12px; }
#formfields input,
#formfields textarea {
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 2px;
  font-family: 'Montserrat', sans-serif;
  font-size: .9rem;
  background: var(--paper);
  color: var(--ink);
  outline: none;
  transition: border-color .15s;
  width: 100%;
}
#formfields input:focus,
#formfields textarea:focus { border-color: var(--teal-deep); }

/* ============================================================
   RESOURCES — TOPIC CARDS
   ============================================================ */
.topic {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  cursor: pointer;
  transition: box-shadow .2s ease;
}
.topic:hover { box-shadow: var(--shadow-sm); }
.topic h4 { font-family: 'Montserrat',sans-serif; font-weight: 700; font-size: .9rem; color: var(--navy); margin: 12px 0 6px; }
.topic p  { font-size: .84rem; }
.topic .lk { font-size: .72rem; font-weight: 700; color: var(--teal-deep); text-transform: uppercase; letter-spacing: .1em; display: inline-block; margin-top: 10px; }

/* ============================================================
   ABOUT — MISSION / VISION
   ============================================================ */
.mission-card { padding: 40px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.mission-card h3 { margin: 8px 0 14px; }

/* ============================================================
   FOOTER
   ============================================================ */
footer.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.7);
  padding: 80px 0 32px;
  position: relative;
  border-top: 2px solid var(--champagne);
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
.foot-brand .name {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
}
.foot-logo {
  display: block;
  margin-bottom: 16px;
}
.foot-brand p    { font-size: .86rem; color: rgba(255,255,255,.6); margin-bottom: 16px; }
.foot-cities     { font-size: .72rem; letter-spacing: .1em; color: rgba(255,255,255,.4); }
footer h5 {
  font-family: 'Montserrat', sans-serif;
  font-size: .64rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 20px;
}
.foot-col { display: flex; flex-direction: column; gap: 10px; }
.foot-col a {
  font-size: .82rem;
  color: rgba(255,255,255,.6);
  transition: color .15s;
  cursor: pointer;
}
.foot-col a:hover { color: #fff; }
.foot-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .72rem;
  color: rgba(255,255,255,.4);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .eco-grid,
  .g6,
  .prob-grid  { grid-template-columns: repeat(2,1fr); }
  .fw-grid    { grid-template-columns: 1fr; gap: 48px; }
  .phero-grid { grid-template-columns: 1fr; }
  .phero-img  { display: none; }
  .foot-grid  { grid-template-columns: 1fr 1fr; gap: 36px; }
  .router-grid { grid-template-columns: repeat(2,1fr); }
  .care-grid  { grid-template-columns: repeat(2,1fr); height: auto; }
  .prog-grid  { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .main-nav,
  .nav-utility .util-link:not(.util-pay) { display: none; }
  .main-nav.open {
    display: flex;
    position: absolute;
    top: 84px;
    left: 0; right: 0;
    flex-direction: column;
    background: var(--paper);
    padding: 16px;
    border-bottom: 1px solid var(--line);
    gap: 2px;
    z-index: 99;
  }
  .main-nav.open a { width: 100%; padding: 12px; }
  .menu-toggle { display: flex; }
  .eco-grid,
  .g6,
  .prob-grid,
  .steps,
  .split,
  .router-grid,
  .checklist,
  .prog-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .care-grid  { grid-template-columns: 1fr 1fr; }
  .stat-band  { grid-template-columns: 1fr; }
  .foot-grid  { grid-template-columns: 1fr; }
  section     { padding: 64px 0; }
  section.tight { padding: 48px 0; }
  .cine       { min-height: 80vh; }
  .nav-utility .book { display: none; }
}
@media (max-width: 480px) {
  .wrap         { padding: 0 20px; }
  .care-grid    { grid-template-columns: 1fr; height: auto; }
  .cta-band .btns { flex-direction: column; align-items: center; }
}
