/* ============================================================
   AFTEN LEE THERAPY — styles.css
   Palette: deep forest teal + warm cream + sage + terracotta
   Typography: Cormorant Garamond (display) + Nunito (body)
   ============================================================ */

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

/* A component's own `display` beats the browser's default [hidden] rule, which
   left the contact form's success message visible before anyone submitted it.
   Restore the attribute's meaning for every element that uses it. */
[hidden] { display: none !important; }

:root {
  --forest:    #1d3d3a;
  --forest-lt: #2b5550;
  --cream:     #f7f3ec;
  --cream-dk:  #ede8df;
  --sage:      #6b9e7e;
  --sage-lt:   #a8c9b4;
  --terra:     #b07850;
  --terra-lt:  #d4a07a;
  --text:      #2a2520;
  --text-2:    #5a524a;
  --text-3:    #8c8178;
  --white:     #ffffff;
  --border:    #ddd8cf;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Nunito', system-ui, sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --shadow-sm: 0 2px 8px rgba(29,61,58,0.07);
  --shadow-md: 0 6px 24px rgba(29,61,58,0.10);
  --shadow-lg: 0 16px 48px rgba(29,61,58,0.13);

  --max-w: 1100px;
  --section-pad: 96px;
}

html { scroll-behavior: smooth; font-size: 16px; }

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

img { max-width: 100%; display: block; }
a { color: var(--forest); text-decoration: underline; text-decoration-color: var(--sage-lt); text-underline-offset: 3px; transition: color .2s; }
a:hover { color: var(--sage); }

abbr { text-decoration: none; }

/* ---- CONTAINER ---- */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 28px; }

/* ---- SECTION BASE ---- */
.section { padding: var(--section-pad) 0; }
.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 14px;
}
.section-header.centered { text-align: center; max-width: 700px; margin: 0 auto 64px; }
.section-intro { font-size: 1.05rem; color: var(--text-2); margin-top: 16px; }

h1, h2, h3 { font-family: var(--font-display); line-height: 1.15; }
h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 500; color: var(--forest); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); font-weight: 500; color: var(--forest); }
h3 { font-size: 1.35rem; font-weight: 500; color: var(--forest); }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-size: .9rem; font-weight: 600;
  padding: 14px 28px; border-radius: var(--radius-sm);
  text-decoration: none; cursor: pointer; border: none;
  transition: background .2s, color .2s, transform .15s, box-shadow .2s;
  letter-spacing: .02em;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--forest);
  color: var(--white);
}
.btn-primary:hover { background: var(--forest-lt); color: var(--white); box-shadow: var(--shadow-md); }

.btn-ghost {
  background: transparent;
  color: var(--forest);
  border: 1.5px solid var(--forest);
}
.btn-ghost:hover { background: var(--forest); color: var(--white); }

.btn-submit {
  width: 100%; justify-content: center;
  font-size: 1rem; padding: 16px 28px;
}

/* ============================================================
   NAV
   ============================================================ */
.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247, 243, 236, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
.site-nav.scrolled { box-shadow: var(--shadow-sm); }

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--max-w); margin: 0 auto; padding: 18px 28px;
}

.nav-logo {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 500;
  color: var(--forest); text-decoration: none; letter-spacing: .01em;
}
.nav-logo:hover { color: var(--sage); }

.nav-links {
  display: flex; align-items: center; gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: .875rem; font-weight: 500; color: var(--text-2);
  text-decoration: none; letter-spacing: .01em;
  transition: color .2s;
}
.nav-links a:hover { color: var(--forest); }
.nav-links a.nav-cta {
  background: var(--forest); color: var(--white);
  padding: 9px 20px; border-radius: var(--radius-sm);
  font-size: .85rem;
}
.nav-links a.nav-cta:hover { background: var(--forest-lt); }

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--forest); border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.nav-hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; background: var(--white);
  border-top: 1px solid var(--border);
  padding: 20px 28px 28px;
}
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.mobile-menu a {
  display: block; padding: 10px 0;
  font-size: 1.05rem; font-weight: 500; color: var(--text);
  text-decoration: none; border-bottom: 1px solid var(--cream-dk);
}
.mobile-menu a:hover { color: var(--sage); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: 80px 0 72px;
  background: var(--cream);
}
.hero-content {
  max-width: var(--max-w); margin: 0 auto; padding: 0 28px;
  display: grid; grid-template-columns: 1fr auto;
  gap: 64px; align-items: center;
}

.hero-eyebrow {
  font-size: .8rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--terra);
  margin-bottom: 20px;
}

.hero-text h1 {
  font-style: italic;
  margin-bottom: 24px;
  max-width: 580px;
}

.hero-sub {
  font-size: 1.1rem; color: var(--text-2);
  max-width: 520px; margin-bottom: 36px; line-height: 1.75;
}

.hero-actions { display: flex; gap: 14px; margin-bottom: 36px; flex-wrap: wrap; }

.hero-credentials {
  font-size: .8rem; color: var(--text-3); display: flex; gap: 8px; flex-wrap: wrap; align-items: center;
}
.hero-credentials .dot { color: var(--sage); }

.hero-photo { position: relative; flex-shrink: 0; }

.photo-frame {
  width: 340px; height: 400px;
  border-radius: 180px 180px var(--radius-lg) var(--radius-lg);
  overflow: hidden;
  background: var(--sage-lt);
  box-shadow: var(--shadow-lg);
}
.photo-frame img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
}

.photo-badge {
  position: absolute; bottom: -14px; left: 50%; transform: translateX(-50%);
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 8px 16px;
  font-size: .78rem; font-weight: 600; color: var(--text-2);
  white-space: nowrap; display: flex; align-items: center; gap: 7px;
  box-shadow: var(--shadow-sm);
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--forest);
  padding: 28px 0;
}
.trust-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 28px;
  display: grid; grid-template-columns: repeat(12, 1fr); row-gap: 20px;
}
/* 7 items across 12 columns: 4 spanning 3 on row one, 3 spanning 4 on row two,
   so both rows fill the width evenly instead of leaving an orphan. */
.trust-item {
  grid-column: span 3;
  display: flex; flex-direction: column; justify-content: center; gap: 3px;
  text-align: center; padding: 8px 16px;
  position: relative;
}
.trust-item:nth-child(n+5) { grid-column: span 4; }
.trust-item::before {
  content: ""; position: absolute; left: 0; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 36px; background: rgba(255,255,255,.15);
}
.trust-item:nth-child(1)::before,
.trust-item:nth-child(5)::before { display: none; }
.trust-item strong { font-size: .9rem; font-weight: 600; color: var(--white); }
.trust-item span   { font-size: .78rem; color: var(--sage-lt); }

/* ============================================================
   ABOUT
   ============================================================ */
.about-section { background: var(--white); }

.about-grid {
  display: grid; grid-template-columns: 180px 1fr;
  gap: 64px; align-items: start;
}
.about-label-col { padding-top: 8px; }

.about-content h2 { margin-bottom: 28px; max-width: 560px; }
.about-body p { color: var(--text-2); margin-bottom: 18px; font-size: 1rem; }
.about-body a { color: var(--forest); }

.about-quote {
  border-left: 3px solid var(--sage);
  padding: 16px 0 16px 24px;
  margin: 32px 0;
  font-family: var(--font-display);
  font-size: 1.3rem; font-style: italic;
  color: var(--forest); line-height: 1.5;
}

.about-personal {
  font-size: 1rem; color: var(--text-3); line-height: 1.7;
  border-top: 1px solid var(--cream-dk); padding-top: 20px;
  margin-top: 8px;
}

/* ============================================================
   APPROACH / CCPT
   ============================================================ */
/* Full-bleed decorative strip of kids' artwork between sections. */
.art-strip {
  height: 220px;
  background: url("img/optimized/art-watercolor.jpg") center 35% / cover no-repeat;
}

.approach-section {
  background: var(--cream);
  position: relative; overflow: hidden;
}
.approach-section::before {
  content: ""; position: absolute; inset: 0;
  background: url("img/optimized/art-marker.jpg") center/cover no-repeat;
  opacity: .06; pointer-events: none;
}
.approach-section > .container { position: relative; }

.ccpt-explainer {
  display: grid; grid-template-columns: 1fr 300px;
  gap: 48px; align-items: start;
  margin-bottom: 64px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.ccpt-main p { color: var(--text-2); margin-bottom: 16px; }
.ccpt-photo {
  margin-top: 24px; border-radius: var(--radius-md); overflow: hidden;
  aspect-ratio: 16/10; background: var(--cream-dk);
}
.ccpt-photo img {
  display: block; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.ccpt-main strong { color: var(--forest); }

.sidebar-label {
  font-size: .8rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: var(--terra);
  margin-bottom: 14px; display: block;
}
.condition-list {
  list-style: none; display: flex; flex-direction: column; gap: 8px;
}
.condition-list li {
  font-size: .9rem; color: var(--text-2);
  padding-left: 18px; position: relative;
}
.condition-list li::before {
  content: ''; position: absolute; left: 0; top: 9px;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--sage);
}

.outcomes-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.outcome-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--sage);
  transition: transform .2s, box-shadow .2s;
}
.outcome-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.outcome-num {
  font-family: var(--font-display); font-size: 3rem; font-weight: 400;
  color: var(--cream-dk); line-height: 1; margin-bottom: 12px;
}
.outcome-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.outcome-card p  { font-size: .88rem; color: var(--text-2); line-height: 1.65; }

/* ============================================================
   WHO I HELP
   ============================================================ */
.who-section {
  background: var(--white);
  position: relative; overflow: hidden;
}
.who-section::before {
  content: ""; position: absolute; inset: 0;
  background: url("img/optimized/art-wall.jpg") center/cover no-repeat;
  opacity: .06; pointer-events: none;
}
.who-section > .container { position: relative; }

.who-grid { display: flex; flex-direction: column; gap: 56px; }
.who-intro h2 { max-width: 500px; margin-bottom: 14px; }
.who-intro p   { color: var(--text-2); max-width: 480px; }

.who-cards {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.who-card {
  background: var(--cream); border-radius: var(--radius-md);
  padding: 32px 28px;
  border: 1px solid var(--border);
  transition: box-shadow .2s;
}
.who-card:hover { box-shadow: var(--shadow-md); }
.who-icon {
  color: var(--forest); margin-bottom: 16px;
  width: 48px; height: 48px;
  background: var(--white); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
}
.who-card h3 { margin-bottom: 10px; font-size: 1.2rem; }
.who-card p  { font-size: .92rem; color: var(--text-2); line-height: 1.7; }
.who-card p + p { margin-top: 12px; }

.who-affirming {
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-lt) 100%);
  border-radius: var(--radius-md); padding: 32px 36px;
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}
.affirming-tag {
  background: rgba(255,255,255,.15); color: var(--white);
  font-size: .75rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; padding: 6px 14px; border-radius: 999px;
  white-space: nowrap; flex-shrink: 0;
}
.who-affirming p { color: rgba(255,255,255,.88); font-size: .95rem; line-height: 1.65; }
.who-affirming strong { color: var(--white); }

/* ============================================================
   WHAT TO EXPECT
   ============================================================ */
.expect-section { background: var(--cream); }

.phases-row {
  display: flex; align-items: stretch; gap: 0;
  margin-bottom: 56px; flex-wrap: wrap;
}
.phase-card {
  flex: 1; min-width: 180px;
  background: var(--white); padding: 28px 24px;
  border-radius: var(--radius-md); box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--cream-dk);
}
.phase-card.phase-resist { border-top-color: var(--terra-lt); }
.phase-card.phase-work   { border-top-color: var(--sage); }

.phase-num {
  font-family: var(--font-display); font-size: 2.4rem; font-weight: 500;
  color: var(--forest); line-height: 1; margin-bottom: 8px; display: block;
  opacity: 0.55;
}
.phase-card h3   { font-size: 1.1rem; margin-bottom: 4px; }
.phase-dur       { font-size: .78rem; color: var(--terra); font-weight: 700; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 12px; }
.phase-card p:last-child { font-size: .88rem; color: var(--text-2); line-height: 1.65; }

.phase-arrow {
  display: flex; align-items: center; padding: 0 12px;
  color: var(--border); font-size: 1.4rem; flex-shrink: 0;
  align-self: center;
}

.how-we-work {
  background: var(--white); border-radius: var(--radius-md);
  padding: 40px; box-shadow: var(--shadow-sm);
}
.how-we-work h3 { margin-bottom: 28px; font-size: 1.4rem; }
.work-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.work-freq {
  display: block; font-family: var(--font-display); font-size: 1.9rem;
  font-weight: 500; color: var(--forest); margin-bottom: 6px;
}
.work-item p { font-size: .9rem; color: var(--text-2); }

/* ============================================================
   RESOURCES PAGE
   ============================================================ */
.resources-hero {
  background: var(--cream);
  position: relative; overflow: hidden;
  padding-top: calc(var(--section-pad) + 40px);
}
.resources-hero::before {
  content: ""; position: absolute; inset: 0;
  background: url("img/optimized/texture-marbled.jpg") center/cover no-repeat;
  opacity: .16; pointer-events: none;
}
.resources-hero-inner { position: relative; max-width: 760px; }
.resources-hero h1 {
  font-size: clamp(2.1rem, 4.5vw, 3.1rem);
  margin-bottom: 18px;
}
.resources-intro { font-size: 1.05rem; color: var(--text-2); line-height: 1.8; }

.resources-section { background: var(--white); }
.resources-section--alt {
  background: var(--cream);
  position: relative; overflow: hidden;
}
.resources-section--alt::before {
  content: ""; position: absolute; inset: 0;
  background: url("img/optimized/art-marker.jpg") center/cover no-repeat;
  opacity: .07; pointer-events: none;
}
.resources-section--alt > .container { position: relative; }

.resources-group-heading {
  font-size: 1.6rem; margin-bottom: 32px;
  padding-bottom: 14px; border-bottom: 1px solid var(--cream-dk);
}

.resource-list {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 36px 40px;
}
.resource-card { display: flex; gap: 22px; align-items: flex-start; }
.resource-cover {
  flex-shrink: 0; width: 116px;
  border-radius: var(--radius-sm); overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--cream-dk);
  transition: transform .2s ease;
}
.resource-cover img { display: block; width: 100%; height: auto; }
.resource-card:hover .resource-cover { transform: translateY(-3px); }
.resource-body h3 { font-size: 1.1rem; margin-bottom: 4px; line-height: 1.35; }
.resource-body h3 a { color: var(--forest); text-decoration: none; }
.resource-body h3 a:hover { text-decoration: underline; text-underline-offset: 3px; }
.resource-meta {
  font-size: .82rem; color: var(--text-3);
  margin-bottom: 10px; font-style: italic;
}
.resource-body > p { font-size: .9rem; color: var(--text-2); line-height: 1.7; }
.resource-link {
  display: inline-block; margin-top: 10px;
  font-size: .78rem; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; color: var(--terra, var(--forest));
}

.resources-cta {
  background: var(--cream);
  position: relative; overflow: hidden; text-align: center;
}
.resources-cta::before {
  content: ""; position: absolute; inset: 0;
  background: url("img/optimized/art-watercolor.jpg") center/cover no-repeat;
  opacity: .14; pointer-events: none;
}
.resources-cta-inner { position: relative; max-width: 620px; }
.resources-cta h2 { margin-bottom: 14px; }
.resources-cta p { color: var(--text-2); line-height: 1.75; margin-bottom: 26px; }

/* ============================================================
   GROUP PRACTICE
   ============================================================ */
.practice-section {
  background: var(--cream);
  position: relative; overflow: hidden;
}
.practice-section::before {
  content: ""; position: absolute; inset: 0;
  background: url("img/optimized/texture-marbled.jpg") center/cover no-repeat;
  opacity: .12; pointer-events: none;
}
.practice-section > .container { position: relative; }
.practice-grid {
  display: grid; grid-template-columns: 1fr 1.15fr;
  gap: 56px; align-items: start;
}
.practice-logo { display: inline-block; margin-bottom: 20px; }
.practice-logo img { display: block; width: 220px; height: auto; }
.practice-intro h2 { margin-bottom: 16px; }
.practice-intro p { color: var(--text-2); line-height: 1.75; }
.practice-intro a {
  color: var(--forest); text-decoration: underline;
  text-underline-offset: 3px; text-decoration-thickness: 1px;
}
.practice-benefits {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 28px 32px;
}
.practice-item h3 { font-size: 1rem; margin-bottom: 8px; }
.practice-item p { font-size: .92rem; color: var(--text-2); line-height: 1.7; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { background: var(--white); }

.faq-header { margin-bottom: 48px; }
.faq-header h2 { margin-top: 8px; }

.faq-list { display: flex; flex-direction: column; gap: 0; }

.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 22px 0;
  background: none; border: none; cursor: pointer; text-align: left;
  font-family: var(--font-body); font-size: 1rem; font-weight: 500;
  color: var(--text); transition: color .2s;
}
.faq-q:hover { color: var(--forest); }
.faq-q[aria-expanded="true"] { color: var(--forest); }

.chevron {
  flex-shrink: 0; color: var(--text-3);
  transition: transform .25s;
}
.faq-q[aria-expanded="true"] .chevron { transform: rotate(180deg); }

.faq-a {
  padding: 0 0 24px 0;
  font-size: .95rem; color: var(--text-2); line-height: 1.75;
  max-width: 700px;
}
.faq-a em { font-style: italic; }
.faq-a p + p { margin-top: 14px; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section { background: var(--cream); }

.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.contact-intro h2 { margin-bottom: 16px; }
.contact-intro > p { color: var(--text-2); margin-bottom: 36px; }

.contact-details { display: flex; flex-direction: column; gap: 14px; }
.contact-detail {
  display: flex; align-items: center; gap: 10px;
  font-size: .9rem; color: var(--text-2);
}
.contact-detail svg { color: var(--sage); flex-shrink: 0; }
.contact-detail a { color: var(--forest); }

.contact-form-wrap {
  background: var(--white); border-radius: var(--radius-md);
  padding: 40px; box-shadow: var(--shadow-md);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-field label { font-size: .85rem; font-weight: 600; color: var(--text-2); }

.form-field input,
.form-field textarea,
.form-field select {
  font-family: var(--font-body); font-size: 1rem;
  padding: 11px 14px; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); background: var(--cream);
  color: var(--text); transition: border-color .2s, box-shadow .2s;
  width: 100%;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--text-3); }
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none; border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(107,158,126,.15);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-field select { appearance: none; cursor: pointer; }

.field-error { font-size: .8rem; color: #c0392b; min-height: 18px; }

.form-footer { display: flex; flex-direction: column; gap: 12px; margin-top: 4px; }
.form-note { font-size: .78rem; color: var(--text-3); text-align: center; }
.form-note-legal { font-size: .7rem; opacity: .8; }
.form-note-legal a { color: inherit; text-decoration: underline; }
.form-error { text-align: center; margin-top: 4px; }

/* The honeypot must be invisible to people but still present and fillable for
   a bot. `display: none` is the wrong tool — many bots skip hidden inputs.
   Positioning it off-screen keeps it in the form; aria-hidden on the wrapper
   keeps assistive tech from announcing it. */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* Badge hidden in favour of the text disclosure under the submit button. */
.grecaptcha-badge { visibility: hidden; }

.form-success {
  display: flex; align-items: center; gap: 10px;
  background: #f0faf4; border: 1px solid var(--sage-lt);
  border-radius: var(--radius-sm); padding: 14px 18px;
  font-size: .95rem; color: var(--forest); margin-top: 12px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--forest); padding: 56px 0 36px;
}
.footer-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 28px; }
.footer-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 40px; padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.12);
  flex-wrap: wrap; gap: 32px;
}
.footer-name { font-family: var(--font-display); font-size: 1.4rem; color: var(--white); font-weight: 500; }
.footer-sub  { font-size: .82rem; color: var(--sage-lt); margin-top: 4px; }

.footer-nav { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-nav a { color: rgba(255,255,255,.7); font-size: .875rem; text-decoration: none; transition: color .2s; }
.footer-nav a:hover { color: var(--white); }

.footer-bottom { display: flex; flex-direction: column; gap: 10px; }
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.5); }
.footer-bottom a { color: rgba(255,255,255,.65); }
.footer-crisis { font-size: .8rem; color: rgba(255,255,255,.45); padding-top: 4px; border-top: 1px solid rgba(255,255,255,.08); margin-top: 4px; }
.footer-crisis strong { color: rgba(255,255,255,.65); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  :root { --section-pad: 72px; }

  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-photo { justify-self: center; margin-top: 40px; }
  .hero-credentials { justify-content: center; }
  .hero-actions { justify-content: center; }
  .hero-text h1 { max-width: 100%; }
  .hero-sub { max-width: 100%; }

  .photo-frame { width: 280px; height: 320px; }

  .trust-inner { grid-template-columns: repeat(2, 1fr); row-gap: 16px; }
  .trust-item,
  .trust-item:nth-child(n+5) { grid-column: span 1; padding: 8px 20px; }
  .trust-item:last-child { grid-column: 1 / -1; }
  .trust-item::before { display: none; }

  .about-grid { grid-template-columns: 1fr; gap: 8px; }
  .about-label-col { padding-top: 0; }

  .ccpt-explainer { grid-template-columns: 1fr; }

  .outcomes-grid { grid-template-columns: repeat(2, 1fr); }

  .who-cards { grid-template-columns: 1fr; }

  .practice-grid { grid-template-columns: 1fr; gap: 36px; }

  .ccpt-photo { aspect-ratio: 3/2; }
  .art-strip { height: 150px; }

  .resource-list { grid-template-columns: 1fr; gap: 30px; }

  .phases-row { flex-direction: column; gap: 16px; }
  .phase-arrow { transform: rotate(90deg); align-self: center; padding: 4px 0; }

  .work-grid { grid-template-columns: 1fr; gap: 20px; }

  .contact-grid { grid-template-columns: 1fr; gap: 48px; }

  .footer-top { flex-direction: column; }
}

@media (max-width: 540px) {
  :root { --section-pad: 56px; }
  .container { padding: 0 20px; }
  .form-row { grid-template-columns: 1fr; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .practice-benefits { grid-template-columns: 1fr; }
  .trust-inner { grid-template-columns: 1fr; row-gap: 14px; }
  .trust-item,
  .trust-item:nth-child(n+5),
  .trust-item:last-child { grid-column: 1 / -1; padding: 6px 12px; }
  .contact-form-wrap { padding: 28px 20px; }
  .how-we-work { padding: 28px 20px; }
  .ccpt-explainer { padding: 28px 20px; }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  .outcome-card, .who-card, .phase-card {
    opacity: 0; transform: translateY(20px);
    transition: opacity .5s, transform .5s;
  }
  .outcome-card.visible, .who-card.visible, .phase-card.visible {
    opacity: 1; transform: none;
  }
}

/* ============================================================
   APPROACH BLOCKS (added Sep 16)
   ============================================================ */
.approach-intro {
  margin-bottom: 48px;
}
.approach-intro h2 { max-width: 680px; }

/* Leads the three age blocks. Inherits the global h2 scale so it reads as a
   peer of the section heading above it. */
.ages-heading {
  max-width: 680px;
  margin: 0 0 28px;
}

.approach-block {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 40px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--sage);
}
.approach-block--terra { border-left-color: var(--terra); }
.approach-block--forest { border-left-color: var(--forest); }

.approach-block-header {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 20px; flex-wrap: wrap;
}
.approach-block-header h3 { font-size: 1.5rem; margin: 0; }

.approach-block-tag {
  font-size: .72rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; padding: 4px 12px;
  border-radius: 999px;
  background: rgba(107,158,126,.12); color: var(--sage);
  white-space: nowrap; flex-shrink: 0;
}
.approach-block-tag--terra {
  background: rgba(176,120,80,.12); color: var(--terra);
}
.approach-block-tag--forest {
  background: rgba(29,61,58,.10); color: var(--forest);
}

.approach-block-body p {
  color: var(--text-2); margin-bottom: 16px;
}
.approach-block-body strong { color: var(--forest); }

.outcomes-heading {
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 500;
  color: var(--forest); margin: 36px 0 20px;
}

/* PLAYROOM GALLERY */
.playroom-gallery {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 12px; margin: 28px 0;
}
.playroom-gallery--two { grid-template-columns: repeat(2, 1fr); }
.playroom-photo {
  aspect-ratio: 4/3;
  background: var(--cream-dk);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  border: 2px dashed var(--border);
  overflow: hidden;
}
.playroom-photo img {
  width: 100%; height: 100%; object-fit: cover;
}
.playroom-photo span {
  font-size: .78rem; color: var(--text-3); font-style: italic;
}
.playroom-photo:has(img) span { display: none; }

/* FREE CONSULT CTA */
.free-consult-cta {
  display: flex; align-items: center; gap: 10px;
  background: rgba(107,158,126,.1); border: 1px solid var(--sage-lt);
  border-radius: var(--radius-sm); padding: 12px 16px;
  font-size: .9rem; font-weight: 600; color: var(--forest);
  margin: 20px 0 28px;
}

/* CONTACT LOCATION DETAIL */
.contact-location {
  display: flex; flex-direction: column; gap: 1px;
}
.contact-location strong { font-weight: 600; color: var(--text); }
.contact-location span { font-size: .88rem; }
.location-note { font-size: .8rem; color: var(--text-3); margin-top: 2px; }
.location-note a { color: var(--text-3); }

/* SUPERVISED BY in hero */
.supervised-by {
  font-style: italic; font-size: .75rem;
}

/* PHOTO FRAME — soften the crop */
.photo-frame {
  border-radius: var(--radius-lg) !important;
}

/* FAQ heading adjustment */
.faq-header h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }

@media (max-width: 720px) {
  .playroom-gallery { grid-template-columns: 1fr 1fr; }
  /* Odd-count galleries: let the orphan span the row instead of hiding it. */
  .playroom-gallery:not(.playroom-gallery--two) .playroom-photo:last-child {
    grid-column: 1 / -1; aspect-ratio: 16/9;
  }
  .approach-block { padding: 28px 20px; }
}
