/* ============================================================
   Psychotherapeutic Services — Design System
   ============================================================ */

:root {
  --color-primary: #0E4448;
  --color-primary-dark: #082E31;
  --color-primary-light: #1A6063;
  --color-accent: #D4A446;
  --color-accent-dark: #B8892D;
  --color-cream: #F8F2E4;
  --color-cream-light: #FDF9F0;
  --color-white: #FFFFFF;
  --color-text: #1F2A2C;
  --color-text-muted: #5A6568;
  --color-border: #E5DFD0;

  --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --shadow-sm: 0 1px 2px rgba(14, 68, 72, 0.05);
  --shadow-md: 0 4px 12px rgba(14, 68, 72, 0.08);
  --shadow-lg: 0 12px 32px rgba(14, 68, 72, 0.12);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 999px;

  --container: 1200px;
  --header-height: 88px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-cream-light);
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--color-primary); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--color-accent-dark); }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.15;
  color: var(--color-primary);
  letter-spacing: -0.01em;
  overflow-wrap: break-word;
}

h1 { font-size: clamp(2rem, 6vw, 4.25rem); }
h2 { font-size: clamp(1.7rem, 4vw, 3rem); }
h3 { font-size: clamp(1.35rem, 2vw, 1.6rem); }
h4 { font-size: 1.15rem; }

p { color: var(--color-text-muted); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all .25s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
}
.btn-primary:hover {
  background: var(--color-primary-dark);
  color: var(--color-white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: var(--color-accent);
  color: var(--color-primary-dark);
}
.btn-secondary:hover {
  background: var(--color-accent-dark);
  color: var(--color-white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-accent);
}
.btn-outline:hover {
  background: var(--color-accent);
  color: var(--color-primary-dark);
}

.btn .arrow { transition: transform .25s ease; }
.btn:hover .arrow { transform: translateX(4px); }

/* ============================================================
   Header / Nav
   ============================================================ */
.site-header {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.brand img { height: 60px; width: auto; }
.site-header .brand img {
  height: 62px;
  background: var(--color-white);
  border-radius: 8px;
  padding: 4px 8px;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 36px;
  align-items: center;
}
.nav-list a {
  color: var(--color-text);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 2px;
  position: relative;
}
.nav-list a:hover,
.nav-list a.active {
  color: var(--color-primary);
}
.nav-list a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--color-accent);
  border-radius: 2px;
}

.header-socials {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.header-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-white);
  border: 2px solid var(--color-white);
  box-shadow: 0 0 0 1px var(--color-border);
  display: grid;
  place-items: center;
}
.header-socials a:hover { background: var(--color-accent); color: var(--color-primary-dark); }
.header-socials svg { width: 18px; height: 18px; fill: currentColor; }

/* Mega menu (Programs dropdown) */
.has-mega { position: relative; }
.nav-list .caret { font-size: 0.6em; vertical-align: middle; margin-left: 2px; }
.nav-trigger { cursor: default; }
.mega {
  position: absolute;
  top: 100%;
  left: 0;
  transform: translateY(8px);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 24px 28px;
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 30px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
  z-index: 60;
}
.has-mega:hover .mega,
.has-mega:focus-within .mega {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mega-col { display: grid; gap: 11px; align-content: start; }
.mega-state {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-accent-dark);
  padding-bottom: 9px;
  border-bottom: 1px solid var(--color-border);
}
.mega-col a {
  color: var(--color-text);
  font-size: 0.92rem;
  font-weight: 500;
  white-space: nowrap;
  padding: 0;
}
.mega-col a:hover { color: var(--color-primary); }
.mega-col a::after { display: none; }

/* Compact dropdown (About Us) */
.mega.mega-sm {
  grid-template-columns: 1fr;
  min-width: 224px;
  padding: 14px;
  gap: 10px;
}
.mega.mega-sm .mega-col { gap: 2px; }
.mega.mega-sm .mega-state { margin: 0 6px; }
.mega.mega-sm .mega-col a {
  padding: 10px 14px;
  border-radius: 8px;
}
.mega.mega-sm .mega-col a:hover { background: var(--color-cream); }

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--color-primary);
  margin: 5px 0;
  transition: all .25s ease;
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  background: linear-gradient(110deg, var(--color-cream-light) 0%, var(--color-cream-light) 45%, transparent 45%, transparent 100%),
              var(--color-cream-light);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 540px;
  gap: 40px;
}

.hero-content { padding: 60px 0; max-width: 540px; }
.hero h1 { margin-bottom: 18px; }
.hero .divider { margin: 22px 0; }
.hero p.lead {
  font-size: 1.1rem;
  margin-bottom: 32px;
  color: var(--color-text-muted);
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-image {
  position: relative;
  height: 100%;
  min-height: 540px;
  background-size: cover;
  background-position: center;
}
.hero-image::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 120px;
  background: linear-gradient(90deg, var(--color-cream-light), transparent);
}

.divider {
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
}
.divider .bar {
  width: 80px;
  height: 2px;
  background: var(--color-accent);
}
.divider .diamond {
  width: 10px;
  height: 10px;
  background: var(--color-accent);
  transform: rotate(45deg);
}

/* ============================================================
   Three states band
   ============================================================ */
.states-band { background: var(--color-cream); }
.states-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  max-width: 860px;
  margin: 46px auto 0;
}
.state-item {
  text-align: center;
  display: block;
  transition: transform .2s ease;
}
.state-item:hover { transform: translateY(-5px); }
.state-item:hover span { color: var(--color-accent-dark); }
.state-item img {
  width: 100%;
  max-width: 240px;
  height: auto;
  display: inline-block;
}
.state-item span {
  display: block;
  margin-top: 14px;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--color-primary);
}
@media (max-width: 768px) {
  .states-grid { grid-template-columns: 1fr; gap: 26px; max-width: 280px; }
}

/* ============================================================
   Sections
   ============================================================ */
section { padding: 90px 0; }

.section-eyebrow {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 16px;
}
.section-eyebrow .bar { width: 50px; height: 1.5px; background: var(--color-accent); }
.section-eyebrow span {
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  color: var(--color-accent-dark);
  text-transform: uppercase;
}

.section-title { text-align: center; margin-bottom: 14px; }
.section-subtitle {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
  font-size: 1.05rem;
}

/* ============================================================
   Program / service cards
   ============================================================ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cards-grid.cards-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: all .3s ease;
  position: relative;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-accent);
}
.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1.5px solid var(--color-accent);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.card-icon svg { width: 26px; height: 26px; stroke: var(--color-primary); fill: none; stroke-width: 1.6; }
.card h3 { margin-bottom: 12px; }
.card p { margin-bottom: 20px; font-size: 0.95rem; }
.card .card-link {
  font-weight: 600;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-top: 1px solid var(--color-border);
  padding-top: 16px;
  width: 100%;
}
.card .card-link:hover { color: var(--color-accent-dark); }
/* Stretched link — whole card is clickable */
.card .card-link::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* ============================================================
   Approach band
   ============================================================ */
.approach {
  background: var(--color-cream);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: grid;
  grid-template-columns: 200px 1.2fr 1fr;
  align-items: center;
  gap: 40px;
  margin-top: 24px;
}
.approach-logo {
  background: var(--color-white);
  border-radius: 50%;
  width: 180px;
  height: 180px;
  display: grid;
  place-items: center;
  padding: 24px;
  box-shadow: var(--shadow-md);
}
.approach-logo img { width: 100%; height: 100%; object-fit: contain; }
.approach h3 { margin-bottom: 12px; }
.approach-list { list-style: none; display: grid; gap: 12px; border-left: 1px solid var(--color-border); padding-left: 28px; }
.approach-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  color: var(--color-text);
}
.approach-list svg { width: 22px; height: 22px; stroke: var(--color-accent); fill: none; stroke-width: 1.8; flex-shrink: 0; }

/* ============================================================
   Locations
   ============================================================ */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.location-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: all .3s ease;
}
.location-card:hover { box-shadow: var(--shadow-md); border-color: var(--color-accent); }
.location-state {
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-accent-dark);
  font-weight: 700;
  margin-bottom: 10px;
}
.location-card h3 { font-size: 1.5rem; margin-bottom: 18px; }
.location-card .addr { display: flex; gap: 12px; margin-bottom: 12px; font-size: 0.95rem; color: var(--color-text); }
.location-card .addr svg { flex-shrink: 0; width: 18px; height: 18px; margin-top: 3px; stroke: var(--color-accent); fill: none; stroke-width: 1.8; }
.location-card a { font-weight: 500; }

/* ============================================================
   CTA banner
   ============================================================ */
.cta-banner {
  background: var(--color-primary);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}
.cta-banner::before, .cta-banner::after {
  content: "";
  position: absolute;
  width: 200px; height: 200px;
  border: 1px solid rgba(212,164,70,0.15);
  border-radius: 50%;
}
.cta-banner::before { left: -80px; top: -80px; }
.cta-banner::after { right: -80px; bottom: -80px; }
.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
}
.cta-text { display: flex; gap: 22px; align-items: center; }
.cta-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--color-accent);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.cta-icon svg { width: 28px; height: 28px; stroke: var(--color-primary-dark); fill: none; stroke-width: 2; }
.cta-text h2 { color: var(--color-white); margin-bottom: 6px; }
.cta-text p { color: rgba(255,255,255,0.85); }
.cta-actions { display: flex; flex-direction: column; gap: 12px; }
.cta-actions .btn { justify-content: center; }
.cta-actions .btn-outline { border-color: var(--color-accent); color: var(--color-accent); }
.cta-actions .btn-outline:hover { background: var(--color-accent); color: var(--color-primary-dark); }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--color-primary-dark);
  color: rgba(255,255,255,0.85);
  padding: 70px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-logo-tile {
  display: block;
  margin-bottom: 20px;
  max-width: 240px;
}
.footer-logo-tile img {
  width: 100%;
  height: auto;
  display: block;
}
.footer-socials { display: flex; gap: 10px; margin-top: 22px; }
.footer-socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 2px solid var(--color-white);
  display: grid; place-items: center;
  color: var(--color-white);
}
.footer-socials a:hover { background: var(--color-accent); color: var(--color-primary-dark); }
.footer-socials svg { width: 16px; height: 16px; fill: currentColor; }

.footer-col h4 {
  color: var(--color-white);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.footer-col ul { list-style: none; display: grid; gap: 12px; }
.footer-col a { color: rgba(255,255,255,0.78); font-size: 0.95rem; }
.footer-col a:hover { color: var(--color-accent); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.93rem;
  color: rgba(255,255,255,0.85);
}
.footer-contact-item svg { width: 18px; height: 18px; stroke: var(--color-accent); fill: none; stroke-width: 1.8; flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: rgba(255,255,255,0.85); }
.footer-contact-item a:hover { color: var(--color-accent); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}
.footer-bottom a { color: rgba(255,255,255,0.7); }
.footer-bottom a:hover { color: var(--color-accent); }

/* ============================================================
   Page banners (interior page headers)
   ============================================================ */
.page-banner {
  background: var(--color-primary);
  padding: 64px 0 70px;
  position: relative;
  overflow: hidden;
}
.page-banner::before,
.page-banner::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(212, 164, 70, 0.18);
  border-radius: 50%;
  pointer-events: none;
}
.page-banner::before { width: 270px; height: 270px; right: -70px; top: -95px; }
.page-banner::after { width: 170px; height: 170px; right: 160px; bottom: -95px; }
.page-banner .container { position: relative; z-index: 1; }
.page-banner h1 { color: var(--color-white); margin-bottom: 12px; }
.page-banner .divider { margin: 18px 0; }
.page-banner .location-state { color: var(--color-accent); }
.page-banner p { max-width: 560px; font-size: 1.08rem; color: rgba(255, 255, 255, 0.85); }

/* ============================================================
   Content prose (about, services detail, resources)
   ============================================================ */
.prose { max-width: 820px; margin: 0 auto; }
.prose h2 { margin: 36px 0 16px; }
.prose h3 { margin: 28px 0 12px; }
.prose p { margin-bottom: 16px; color: var(--color-text); }
.prose ul { margin: 0 0 18px 22px; }
.prose ul li { margin-bottom: 8px; color: var(--color-text); }

.two-col {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.two-col img { border-radius: var(--radius-md); box-shadow: var(--shadow-md); }

/* ============================================================
   Resources cards
   ============================================================ */
.resource-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 30px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all .3s ease;
}
.resource-card:hover { box-shadow: var(--shadow-md); border-color: var(--color-accent); }
.resource-card .card-icon { margin: 0; flex-shrink: 0; }
.resource-card h3 { margin-bottom: 6px; }
.resource-card p { font-size: 0.95rem; margin-bottom: 8px; }
.resource-card a { font-weight: 600; }

/* ============================================================
   Crisis banner (resources page)
   ============================================================ */
.crisis-banner {
  background: #FBEBEB;
  border-left: 4px solid #C0392B;
  border-radius: var(--radius-sm);
  padding: 22px 26px;
  margin-bottom: 40px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.crisis-banner svg { width: 28px; height: 28px; stroke: #C0392B; fill: none; stroke-width: 1.8; flex-shrink: 0; }
.crisis-banner h3 { color: #832019; font-size: 1.15rem; margin-bottom: 4px; }
.crisis-banner p { color: #4F1310; font-size: 0.95rem; }
.crisis-banner a { color: #832019; text-decoration: underline; font-weight: 600; }

/* ============================================================
   Program detail pages
   ============================================================ */
.program-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 52px;
  align-items: start;
}
.program-body h2 { text-align: left; margin: 34px 0 14px; }
.program-body h2:first-child { margin-top: 0; }
.program-body h3 { margin: 24px 0 10px; }
.program-body p { color: var(--color-text); margin-bottom: 16px; }
.program-body ul { margin: 0 0 18px 22px; }
.program-body ul li { margin-bottom: 8px; color: var(--color-text); }
.program-body .lead-text {
  font-size: 1.12rem;
  color: var(--color-text);
  border-left: 3px solid var(--color-accent);
  padding-left: 20px;
  margin-bottom: 28px;
}

.info-card {
  background: var(--color-cream);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 30px;
  position: sticky;
  top: 108px;
}
.info-card .location-state { margin-bottom: 6px; }
.info-card h3 { font-size: 1.45rem; margin-bottom: 20px; }
.info-row {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.94rem;
  color: var(--color-text);
  align-items: flex-start;
}
.info-row svg {
  width: 18px; height: 18px;
  stroke: var(--color-accent);
  fill: none; stroke-width: 1.8;
  flex-shrink: 0; margin-top: 3px;
}
.info-row a { color: var(--color-text); }
.info-row a:hover { color: var(--color-accent-dark); }
.info-card .btn { width: 100%; justify-content: center; margin-top: 10px; }

.badge-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0 4px; }
.badge {
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
}

/* ============================================================
   Leadership / corporate page
   ============================================================ */
.leader {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 50px;
}
.leader:last-child { margin-bottom: 0; }
.leader-photo {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid var(--color-cream);
  box-shadow: var(--shadow-md);
}
.leader-name { margin-bottom: 2px; text-align: left; }
.leader-title {
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-accent-dark);
  font-size: 0.82rem;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.leader p { color: var(--color-text); margin-bottom: 14px; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.team-member {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  transition: all .25s ease;
}
.team-member:hover { box-shadow: var(--shadow-md); border-color: var(--color-accent); }
.team-avatar,
.team-avatar-initials {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  margin: 0 auto 16px;
  border: 4px solid var(--color-cream);
  box-shadow: var(--shadow-sm);
}
.team-avatar { object-fit: cover; display: block; }
.team-avatar-initials {
  display: grid;
  place-items: center;
  background: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-serif);
  font-size: 2.1rem;
  font-weight: 600;
}
.team-member strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--color-primary);
  margin-bottom: 4px;
}
.team-member .team-role {
  display: block;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.74rem;
  color: var(--color-accent-dark);
  margin-bottom: 10px;
}
.team-member span { font-size: 0.88rem; color: var(--color-text-muted); }

@media (max-width: 768px) {
  .leader { grid-template-columns: 1fr; justify-items: center; text-align: center; gap: 22px; }
  .leader-photo { width: 190px; height: 190px; }
  .leader-name, .leader-title { text-align: center; }
  .team-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .menu-toggle { display: block; }
  .header-socials { margin-left: auto; }
  .nav-list {
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--color-white);
    padding: 20px 24px 28px;
    gap: 14px;
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
  }
  .nav-list a { padding: 6px 2px; }
  .nav-list.open { display: flex; }
  .nav-list .caret { display: none; }
  .has-mega { width: 100%; }
  .mega {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: 0;
    background: transparent;
    padding: 10px 0 6px 14px;
    margin-top: 6px;
    border-left: 2px solid var(--color-border);
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .mega.mega-sm {
    padding: 6px 0 6px 14px;
    min-width: 0;
  }
  .mega.mega-sm .mega-col a { padding: 6px 0; }

  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .locations-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .approach { grid-template-columns: 1fr; text-align: center; }
  .approach-logo { margin: 0 auto; }
  .approach-list { border-left: 0; padding-left: 0; }
}

@media (max-width: 900px) {
  .program-grid { grid-template-columns: 1fr; gap: 32px; }
  .info-card { position: static; }
}

@media (max-width: 768px) {
  section { padding: 60px 0; }
  .hero-grid { grid-template-columns: 1fr; min-height: auto; }
  .hero-content { padding: 50px 0 20px; }
  .hero-image { min-height: 320px; }
  .hero-image::before { background: linear-gradient(180deg, var(--color-cream-light), transparent); width: 100%; height: 60px; }

  .cards-grid, .cards-grid.cards-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-logo-tile { margin-left: auto; margin-right: auto; }
  .cta-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 30px; }
  .approach { padding: 28px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .site-header .brand img { height: 42px; }
  .header-inner { gap: 10px; }
  .header-socials { gap: 8px; }
  .header-socials a { width: 34px; height: 34px; }
  .header-socials svg { width: 16px; height: 16px; }
  .container { padding: 0 18px; }
  .cta-actions .btn { width: 100%; }
  .program-body ul { margin-left: 18px; }
}
