@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap");

/* ==========================================================================
   Kathryn Foster, PhD - shared design system (tokens + chrome + templates)
   Cloned 1:1 from https://www.kathrynfosterphd.net (Wix source, runtime stripped).
   OWNED BY ORCHESTRATOR. Page agents append page-scoped rules under a banner
   comment reading page-colon-slug. Do not edit the shared sections above them.
   ========================================================================== */

:root {
  --green: #40b83f;
  --green-bright: #46c045;
  --green-dark: #329a33;
  --green-deep: #2f9e39;
  --ink: #101010;
  --ink-2: #262626;
  --text: #3f3f3f;
  --muted: #6b6b6b;
  --white: #ffffff;
  --line: #e6e6e6;
  --heading: "Oswald", "Arial Narrow", sans-serif;
  --body: "Poppins", "Helvetica Neue", Arial, sans-serif;
  --wrap: 1200px;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--body);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 .5em;
  letter-spacing: .01em;
}

p { margin: 0 0 1.1em; }

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

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--green); color: #fff; padding: 10px 16px; z-index: 200;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ---- Top contact bar ---- */
.topbar {
  background: var(--green);
  color: #fff;
  font-family: var(--body);
  font-size: 14px;
  font-weight: 500;
}
.topbar .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  align-items: center;
  padding-top: 9px;
  padding-bottom: 9px;
}
.topbar a { color: #fff; }
.topbar .tb-item { display: inline-flex; align-items: center; gap: 8px; }
.topbar .tb-ico {
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(255,255,255,.22);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px;
}
.topbar b { font-weight: 700; }

/* ---- Header / nav ---- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; min-height: 84px;
}
.brand { line-height: 1; }
.brand-name {
  font-family: var(--heading);
  font-weight: 700;
  font-size: 30px;
  color: var(--green);
  letter-spacing: .02em;
}
.brand-sub {
  font-family: var(--heading);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: .28em;
  color: #b7b7b7;
  margin-top: 4px;
}
.nav {
  display: flex; align-items: center; gap: 22px;
  overflow-x: auto;
  max-width: 72%;
}
.nav::-webkit-scrollbar { height: 6px; }
.nav::-webkit-scrollbar-thumb { background: #d7d7d7; border-radius: 6px; }
.nav a {
  font-family: var(--heading);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #2b2b2b;
  white-space: nowrap;
  padding: 6px 0;
  transition: color .2s ease;
}
.nav a:hover, .nav a.active { color: var(--green); }

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  background: var(--green);
  color: #fff;
  font-family: var(--heading);
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: none;
  padding: 14px 30px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-size: 15px;
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.btn:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(64,184,63,.35); }

/* ---- Homepage hero ---- */
.hero {
  position: relative;
  min-height: 736px;
  display: flex; align-items: center;
  color: #fff;
  overflow: hidden;
}
.hero .hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(100deg, rgba(20,20,20,.72) 0%, rgba(20,20,20,.45) 40%, rgba(20,20,20,.12) 70%, rgba(20,20,20,0) 100%);
}
.hero .hero-inner { position: relative; z-index: 2; max-width: 620px; }
.hero-eyebrow {
  font-family: var(--heading);
  font-weight: 600;
  color: var(--green-bright);
  letter-spacing: .04em;
  font-size: 22px;
  margin-bottom: 10px;
}
.hero h1 {
  font-size: 52px;
  font-weight: 600;
  margin-bottom: 18px;
  line-height: 1.08;
}
.hero h1 .hl { color: var(--green-bright); }
.hero p { font-family: var(--body); font-size: 15.5px; color: #eaeaea; margin-bottom: 26px; }

/* ---- Section helpers ---- */
.section { padding: 74px 0; }
.eyebrow {
  font-family: var(--heading);
  font-weight: 600;
  color: var(--green);
  text-transform: none;
  letter-spacing: .03em;
  font-size: 18px;
  text-align: center;
  margin-bottom: 6px;
}
.h-section {
  font-size: 34px;
  color: #1d1d1d;
  text-align: center;
  margin-bottom: 26px;
}

/* ---- Homepage service cards ---- */
.svc-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.svc-card {
  position: relative;
  min-height: 320px;
  padding: 40px 34px 54px;
  color: #fff;
  overflow: hidden;
  display: flex; flex-direction: column;
}
.svc-card .svc-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.svc-card .svc-tint { position: absolute; inset: 0; z-index: 1; }
.svc-card > * { position: relative; z-index: 2; }
.svc-card.g .svc-tint { background: rgba(48,150,52,.82); }
.svc-card.k .svc-tint { background: rgba(30,32,34,.74); }
.svc-card.b .svc-tint { background: rgba(48,55,140,.80); }
.svc-icon { width: 66px; height: 66px; margin-bottom: 14px; }
.svc-card h5 { font-size: 21px; font-weight: 600; margin-bottom: 12px; }
.svc-card p { font-family: var(--body); font-size: 14px; line-height: 1.6; }
.svc-card .read {
  margin-top: auto;
  font-family: var(--heading); font-weight: 600; font-size: 13px;
  letter-spacing: .12em; text-transform: uppercase;
  border-bottom: 2px solid rgba(255,255,255,.6);
  padding-bottom: 3px; align-self: flex-start;
  transition: border-color .2s ease;
}
.svc-card .read:hover { border-color: #fff; }

/* ---- Intro (Compassionate) ---- */
.intro { text-align: center; }
.intro .lead { max-width: 940px; margin: 0 auto 34px; font-size: 15px; color: #4a4a4a; }
.intro-imgs {
  display: flex; justify-content: center; align-items: center;
  gap: 0; flex-wrap: wrap; position: relative;
}
.intro-imgs img.photo {
  width: 360px; height: 300px; object-fit: cover; border-radius: 10px;
}
.intro-imgs .brain {
  width: 96px; height: 96px; margin: 0 -30px; z-index: 3;
  background: #fff; border-radius: 50%; padding: 6px;
  box-shadow: var(--shadow);
}

/* ---- Green services band ---- */
.green-band {
  position: relative;
  background: linear-gradient(160deg, #3fb23f 0%, #2c8f34 100%);
  color: #fff;
  overflow: hidden;
}
.green-band .band-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .18; z-index: 0; }
.green-band .wrap { position: relative; z-index: 1; }
.green-band .eyebrow { color: #d8ffd6; }
.green-band .h-section { color: #fff; }
.svc-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px;
  margin-top: 10px;
}
.mini-card {
  background: #fff; color: var(--text);
  border-radius: 12px; padding: 26px 24px;
  box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease;
}
.mini-card:hover { transform: translateY(-6px); box-shadow: 0 16px 34px rgba(0,0,0,.16); }
.mini-card h5 { color: var(--green-dark); font-size: 17px; font-weight: 600; margin-bottom: 10px; }
.mini-card .mc-body { display: flex; gap: 16px; align-items: flex-start; }
.mini-card .mc-ico {
  width: 57px; height: 57px; flex: 0 0 57px;
  background: #eafaea; border-radius: 10px; padding: 10px;
}
.mini-card p { font-size: 13.5px; line-height: 1.55; margin-bottom: 12px; }
.mini-card .read {
  font-family: var(--heading); font-weight: 600; font-size: 12px;
  letter-spacing: .12em; text-transform: uppercase; color: var(--green-dark);
}

/* ---- Books band ---- */
.books { text-align: center; }
.books .lead { max-width: 780px; margin: 0 auto 30px; font-size: 15px; color: #4a4a4a; }
.books img { margin: 0 auto; border-radius: 8px; box-shadow: var(--shadow); }

/* ---- Testimonial band ---- */
.testi {
  position: relative; color: #fff; overflow: hidden; padding: 80px 0;
}
.testi .testi-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.testi::after { content: ""; position: absolute; inset: 0; background: rgba(48,150,52,.86); z-index: 1; }
.testi .wrap { position: relative; z-index: 2; }
.testi .h-section { color: #fff; }
.testi-card {
  max-width: 760px; margin: 0 auto; text-align: center;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 14px; padding: 34px 40px;
  background: rgba(255,255,255,.05);
}
.testi-card p { font-size: 14.5px; font-style: italic; color: #f2fff1; }
.testi-card .who { font-family: var(--heading); font-weight: 600; letter-spacing: .04em; margin-top: 10px; }
.testi-card .stars { width: 109px; height: 19px; margin: 12px auto 0; }

/* ---- Reviews carousel (driven by assets/site.js) ---- */
.testi-slider { position: relative; padding: 0 62px; }
.testi-track { display: grid; }
/* every slide occupies the same grid cell, so the track is as tall as the
   tallest review and nothing jumps as slides change */
/* Not gated on .carousel-ready: the first slide carries .is-active in the
   markup, so with JavaScript off one review still shows on its own rather
   than all three stacked in the same grid cell.
   Opacity alone does the hiding - toggling `visibility` alongside it stops
   Chrome from ever starting the fade, which strands the incoming review at
   opacity 0. The cards hold no focusable content, and the script keeps
   aria-hidden in step for assistive tech. */
.testi-track > .testi-card {
  grid-area: 1 / 1;
  opacity: 0;
  pointer-events: none;
  transition: opacity .5s ease;
}
.testi-track > .testi-card.is-active {
  opacity: 1;
  pointer-events: auto;
}
/* controls only appear once the script has wired them up */
.testi-arrow, .testi-dots { display: none; }
.carousel-ready .testi-arrow { display: inline-flex; }
.carousel-ready .testi-dots { display: flex; }
.testi-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; padding: 0;
  align-items: center; justify-content: center;
  background: transparent; border: 0; cursor: pointer;
  color: #fff; font-size: 34px; line-height: 1;
  font-family: var(--body);
  opacity: .85; transition: opacity .2s ease, transform .2s ease;
}
.testi-arrow:hover { opacity: 1; }
.testi-arrow:focus-visible { outline: 2px solid #fff; outline-offset: 3px; border-radius: 50%; }
.testi-arrow.prev { left: 0; }
.testi-arrow.next { right: 0; }
.testi-dots {
  justify-content: center; gap: 12px; margin-top: 26px; padding: 0;
  list-style: none;
}
.testi-dots button {
  width: 9px; height: 9px; padding: 0; border-radius: 50%; cursor: pointer;
  border: 1px solid #fff; background: transparent;
  transition: background .2s ease, transform .2s ease;
}
.testi-dots button[aria-current="true"] { background: #fff; transform: scale(1.15); }
.testi-dots button:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }

/* ---- Homepage contact / CTA ---- */
.contact { padding: 74px 0; }
.contact .grid { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: start; }
.contact h2 { font-size: 32px; color: var(--green-dark); margin-bottom: 16px; }
.contact .pt { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; font-size: 14.5px; }
.contact .pt .ck {
  flex: 0 0 24px; width: 24px; height: 24px; border-radius: 50%;
  background: var(--green); color: #fff; display: inline-flex;
  align-items: center; justify-content: center; font-size: 13px; margin-top: 2px;
}
.contact .ready { font-weight: 600; color: #2a2a2a; margin-bottom: 4px; }

/* ---- Forms ---- */
.form-field { margin-bottom: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form label { display: block; font-size: 12.5px; color: var(--muted); margin-bottom: 6px; }
.form input, .form textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line);
  border-radius: 8px; font-family: var(--body); font-size: 14px; background: #f6f6f6;
  transition: border-color .2s ease, background .2s ease;
}
.form input:focus, .form textarea:focus { outline: none; border-color: var(--green); background: #fff; }
.form textarea { min-height: 110px; resize: vertical; }
.hp-wrap { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.form .btn { width: 100%; margin-top: 6px; }

/* ==========================================================================
   Interior page template (page hero band + two-column + dark band)
   ========================================================================== */
.page-hero {
  position: relative;
  min-height: 350px;
  display: flex; align-items: center; justify-content: center;
  text-align: center; color: #fff; overflow: hidden;
}
.page-hero .ph-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.page-hero::after { content: ""; position: absolute; inset: 0; background: rgba(52,167,54,.80); z-index: 1; }
.page-hero h1 { position: relative; z-index: 2; font-size: 40px; font-weight: 600; padding: 0 20px; text-shadow: 0 2px 10px rgba(0,0,0,.18); }

.two-col {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
  padding: 76px 0;
}
.two-col.narrow { grid-template-columns: 460px 1fr; }
.two-col .txt h2 { font-size: 30px; color: var(--green); margin-bottom: 18px; }
.two-col .txt p { font-size: 14.5px; color: #4a4a4a; }
.portrait {
  width: 100%; max-width: 470px; height: auto; border-radius: 14px;
  border: 2px solid var(--green); box-shadow: var(--shadow);
  margin: 0 auto;
}
.portrait.tall { aspect-ratio: 422 / 520; object-fit: cover; }

.dark-band {
  position: relative; overflow: hidden;
  background: linear-gradient(90deg, #000 0%, #000 50%, #1f1f1f 50%, #262626 100%);
  color: #fff;
}
.dark-band .db-tex { position: absolute; right: 0; top: 0; width: 50%; height: 100%; object-fit: cover; opacity: .10; z-index: 0; }
.dark-band .db-portrait { position: absolute; left: 0; top: 0; width: 50%; height: 100%; object-fit: cover; object-position: center; opacity: .55; z-index: 0; }
.dark-band .wrap { position: relative; z-index: 1; }
.dark-band .db-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; padding: 78px 0; }
.dark-band .db-grid.right .db-inner { grid-column: 2; }
.dark-band h2 { font-size: 30px; color: #fff; margin-bottom: 18px; }
.dark-band p { font-size: 14.5px; color: #e2e2e2; }
.dark-band .btn { margin-top: 10px; }

.dark-band.flip { background: linear-gradient(90deg, #262626 0%, #1f1f1f 50%, #000 50%, #000 100%); }
.dark-band.flip .db-portrait { left: auto; right: 0; }
.dark-band.flip .db-tex { right: auto; left: 0; }

.quote { color: var(--green); font-size: 14.5px; margin-top: 22px; }

/* ---- Footer ---- */
.site-footer {
  position: relative;
  background: linear-gradient(155deg, #40b93f 0%, #2f9a36 100%);
  color: #fff; overflow: hidden;
}
.site-footer .foot-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .12; z-index: 0; }
.site-footer .wrap { position: relative; z-index: 1; }
.foot-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 44px; padding: 64px 0 40px; }
.site-footer h4 { font-size: 22px; font-weight: 600; margin-bottom: 18px; }
.site-footer p, .site-footer li { font-size: 13.5px; color: #f0fff0; }
.foot-links { list-style: none; margin: 0; padding: 0; }
.foot-links li { margin-bottom: 9px; }
.foot-links a { transition: opacity .2s ease, padding-left .2s ease; }
.foot-links a:hover { opacity: .8; padding-left: 4px; }
.foot-contact .fc-row { display: flex; gap: 12px; align-items: center; margin-bottom: 16px; }
.foot-contact .fc-ico {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.2); display: inline-flex;
  align-items: center; justify-content: center; flex: 0 0 40px;
}
.foot-contact b { display: block; font-family: var(--heading); font-weight: 600; }
.footer-bottom {
  position: relative; z-index: 1;
  background: #4c4c4c; color: #eaeaea;
  text-align: center; font-size: 13px; padding: 14px 0;
}

/* ==========================================================================
   Motion - reproduces the Wix source's fade-in reveals + a pulse accent.
   Pure CSS, on-load, animation-fill-mode both, so elements ALWAYS end visible.
   No static opacity:0 / visibility:hidden / display:none on real content.
   ========================================================================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes softPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.08); opacity: .85; }
}
.reveal { animation: fadeInUp .8s ease both; }
.reveal.d1 { animation-delay: .12s; }
.reveal.d2 { animation-delay: .24s; }
.reveal.d3 { animation-delay: .36s; }
.fade-in { animation: fadeIn 1s ease both; }
.pulse { animation: softPulse 2.6s ease-in-out infinite; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, .reveal, .fade-in, .pulse {
    animation: none !important;
    transition: none !important;
  }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 960px) {
  .site-header .wrap { flex-direction: column; align-items: flex-start; gap: 10px; min-height: 0; padding-top: 14px; padding-bottom: 14px; }
  .nav { max-width: 100%; width: 100%; }
  .svc-cards { grid-template-columns: 1fr; }
  .svc-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; gap: 30px; }
  .contact .grid { grid-template-columns: 1fr; gap: 34px; }
  .two-col, .two-col.narrow { grid-template-columns: 1fr; gap: 30px; padding: 48px 0; }
  .dark-band .db-grid, .dark-band .db-grid.right .db-inner { grid-template-columns: 1fr; grid-column: 1; }
  .dark-band .db-portrait, .dark-band .db-tex { display: none; }
  .dark-band { background: #1c1c1c; }
  .hero h1 { font-size: 38px; }
  .hero { min-height: 560px; }
  .intro-imgs img.photo { width: 100%; max-width: 420px; }
  .intro-imgs .brain { display: none; }
}
@media (max-width: 560px) {
  .hero h1 { font-size: 30px; }
  .testi-slider { padding: 0; }
  .testi-arrow { top: auto; bottom: -8px; transform: none; width: 38px; height: 38px; font-size: 28px; }
  .testi-card { padding: 26px 22px; }
  .form-row { grid-template-columns: 1fr; }
  .page-hero h1 { font-size: 28px; }
  .brand-name { font-size: 24px; }
}

/* ==========================================================================
   page:contact-fees - therapy rate cards + payment information
   ========================================================================== */
.fees { padding: 74px 0 0; }
.fees h2, .payment h2 { font-size: 32px; color: var(--green); margin-bottom: 14px; }
.fees .lead, .payment p { font-size: 14.5px; color: #4a4a4a; max-width: 700px; }
.fee-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
  margin-top: 30px;
}
.fee-card {
  border-radius: 14px; overflow: hidden;
  background: var(--green); color: #fff;
  box-shadow: var(--shadow);
  display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.fee-card:hover { transform: translateY(-6px); box-shadow: 0 16px 34px rgba(0,0,0,.16); }
.fee-card img { width: 100%; height: 208px; object-fit: cover; }
.fee-card .fc-body { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.fee-card h5 { font-size: 21px; font-weight: 600; margin-bottom: 12px; }
.fee-card ul { list-style: none; margin: 0 0 18px; padding: 0; }
.fee-card li { font-size: 14px; line-height: 1.55; }
.fee-card .fc-link {
  margin-top: auto; align-self: flex-start;
  font-family: var(--heading); font-weight: 600; font-size: 13px;
  letter-spacing: .12em; text-decoration: underline;
  text-underline-offset: 4px;
}
.fee-card .fc-link:hover { opacity: .85; }

.payment { padding: 60px 0 74px; }
.payment .pt { display: flex; gap: 12px; align-items: center; margin-bottom: 14px; font-size: 14.5px; color: #1d1d1d; font-weight: 500; }
.payment .pt .ck {
  flex: 0 0 26px; width: 26px; height: 26px; border-radius: 50%;
  background: var(--green); color: #fff; display: inline-flex;
  align-items: center; justify-content: center; font-size: 14px;
}
.payment .note { margin-top: 26px; color: #4a4a4a; }
.payment .note a { text-decoration: underline; text-underline-offset: 3px; }
.payment .note a:hover { color: var(--green); }

.contact .fc-row { display: flex; gap: 12px; align-items: center; margin-bottom: 14px; font-size: 14.5px; }
.contact .fc-row .fc-ico {
  width: 40px; height: 40px; border-radius: 50%; flex: 0 0 40px;
  background: var(--green); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
}
.contact .fc-row b { font-family: var(--heading); font-weight: 600; }

@media (max-width: 960px) {
  .fee-grid { grid-template-columns: 1fr; }
}
