/* ============================================================
   Sana Vita — Mental Health Services
   ============================================================ */

/* ------------------------------------------------------------
   FONTS (self-hosted)
   These used to load from fonts.googleapis.com, which forced the
   browser to make two extra third-party connections before it
   could draw anything. Serving them from our own /fonts folder
   removes that delay entirely.

   Both files are "variable" fonts: one file covers every weight
   in the range, so there is nothing to add if a new weight gets
   used. Latin characters only - if the site ever needs accented
   or non-English text, re-download with the extra subsets.
   ------------------------------------------------------------ */
@font-face {
  font-family: "Nunito Sans";
  font-style: normal;
  font-weight: 300 800;
  font-stretch: 100%;
  font-display: swap;
  src: url("../fonts/nunito-sans-latin-var.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
                 U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/playfair-display-latin-var.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
                 U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  /* Colors */
  --blush:        #f8e8e3;   /* page background (darker pink) */
  --blush-panel:  #f0f4ec;   /* sage section panels */
  --blush-card:   #f0f4ec;   /* sage card backgrounds */
  --sage:         #f8e8e3;   /* page background (darker pink) */
  --sage-dark:    #dfe8d8;   /* darker sage for accents */
  --green:        #7d9861;   /* primary green */
  --green-dark:   #6c8752;   /* hover green */
  --green-soft:   #eef1e6;   /* icon circle bg */
  --plum:         #47356b;   /* headings */
  --plum-soft:    #5c4783;   /* purple button */
  --text:         #5f5868;   /* body text */
  --text-muted:   #8a8392;
  --footer-green: #5e7a3e;

  /* Type */
  --serif: "Playfair Display", Georgia, serif;
  --sans:  "Nunito Sans", system-ui, sans-serif;

  --radius: 18px;
  --radius-lg: 26px;
  --max: 1140px;
}

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

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--sage);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; }

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

h1, h2, h3, h4 { font-family: var(--serif); color: var(--plum); font-weight: 600; line-height: 1.2; }

/* ---------- Shared bits ---------- */
.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-size: .72rem;
  font-weight: 800;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.sprig::before { content: "\273F"; color: var(--green); font-size: .9rem; }

/* Twin-leaf sprig divider */
.divider-leaf {
  display: inline-block;
  width: 120px; height: 26px;
  margin: 18px 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 26'%3E%3Cg fill='%236f8d4f'%3E%3Cpath d='M0,0 Q6,-5.5 16,0 Q6,5.5 0,0 Z' transform='translate(58,13) rotate(220)'/%3E%3Cpath d='M0,0 Q6,-5.5 16,0 Q6,5.5 0,0 Z' transform='translate(58,13) rotate(140)'/%3E%3Cpath d='M0,0 Q5,-4.6 13,0 Q5,4.6 0,0 Z' transform='translate(46,13) rotate(225)'/%3E%3Cpath d='M0,0 Q5,-4.6 13,0 Q5,4.6 0,0 Z' transform='translate(46,13) rotate(135)'/%3E%3Cpath d='M0,0 Q4,-3.8 10,0 Q4,3.8 0,0 Z' transform='translate(34,13) rotate(230)'/%3E%3Cpath d='M0,0 Q4,-3.8 10,0 Q4,3.8 0,0 Z' transform='translate(34,13) rotate(130)'/%3E%3Cpath d='M0,0 Q6,-5.5 16,0 Q6,5.5 0,0 Z' transform='translate(62,13) rotate(-40)'/%3E%3Cpath d='M0,0 Q6,-5.5 16,0 Q6,5.5 0,0 Z' transform='translate(62,13) rotate(40)'/%3E%3Cpath d='M0,0 Q5,-4.6 13,0 Q5,4.6 0,0 Z' transform='translate(74,13) rotate(-45)'/%3E%3Cpath d='M0,0 Q5,-4.6 13,0 Q5,4.6 0,0 Z' transform='translate(74,13) rotate(45)'/%3E%3Cpath d='M0,0 Q4,-3.8 10,0 Q4,3.8 0,0 Z' transform='translate(86,13) rotate(-50)'/%3E%3Cpath d='M0,0 Q4,-3.8 10,0 Q4,3.8 0,0 Z' transform='translate(86,13) rotate(50)'/%3E%3C/g%3E%3C/svg%3E") no-repeat center/contain;
}
.divider-leaf::before { display: none; }
.divider-leaf::after  { display: none; }
.divider-leaf.small { width: 80px; height: 18px; margin: 8px 0; }
.divider-leaf.light {
  filter: brightness(0) invert(1);
  opacity: .75;
}

/* SVG icons */
.icon { width: 18px; height: 18px; fill: currentColor; }
.icon-leaf, .icon-heart, .icon-waves, .icon-nerve {
  width: 26px; height: 26px;
  fill: none; stroke: var(--green); stroke-width: 1.6;
  stroke-linecap: round; stroke-linejoin: round;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: .95rem;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all .25s ease;
  white-space: nowrap;
}
.btn .arrow { transition: transform .25s ease; }
.btn:hover .arrow { transform: translateX(4px); }

.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { background: var(--green-dark); }

.btn-outline { background: transparent; color: var(--plum); border-color: #cdbfd6; }
.btn-outline:hover { border-color: var(--plum); }

.btn-purple { background: var(--plum-soft); color: #fff; }
.btn-purple:hover { background: var(--plum); }

.btn-phone {
  background: var(--green);
  color: #fff;
  padding: 11px 20px;
  font-size: .9rem;
}
.btn-phone:hover { background: var(--green-dark); }
.btn-phone .icon { fill: #fff; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251,242,239,.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(70,58,87,.06);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.logo { display: flex; align-items: center; }
.logo-full { height: 60px; width: auto; object-fit: contain; }

.main-nav {
  display: flex;
  gap: 30px;
  margin-left: auto;
}
.main-nav a {
  font-size: .95rem;
  font-weight: 600;
  color: var(--plum);
  padding-bottom: 4px;
  position: relative;
}
.main-nav a:hover { color: var(--green); }
.main-nav a.active::after {
  content: "";
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--green);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 6px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--plum); border-radius: 2px; transition: .3s; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding: 60px 0 80px; overflow: hidden; }
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* Home page full-bleed hero (photo fills the screen, text sits on a soft gradient) */
.hero-fullbleed {
  padding: 0;
  min-height: calc(100vh - var(--header-h, 89px));
  display: flex;
  align-items: center;
  background: var(--blush-panel);
}
.hero-bg {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 75%;
  background-size: cover;
  background-position: center;
  /* Homepage hero photo. Phones get a smaller file (see the media query
     below) so they don't download the full desktop-sized image.
     The matching <link rel="preload"> tags in index.html use the same
     breakpoint - if you change 700px here, change it there too. */
  background-image: url("../pictures/hero.webp");
}
@media (max-width: 700px) {
  .hero-bg { background-image: url("../pictures/hero-mobile.webp"); }
}
img.hero-plant-left {
  position: absolute;
  left: -220px;
  bottom: -30px;
  width: 460px;
  max-width: none;
  z-index: 1;
  pointer-events: none;
  opacity: .45;
  transform: rotate(-12deg);
}
.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--blush-panel) 0%, rgba(240,244,236,.9) 22%, rgba(240,244,236,0) 50%);
}
.hero-fullbleed .hero-inner {
  display: block;
  position: relative;
  z-index: 1;
}
.hero-fullbleed .hero-copy { max-width: 540px; }
.hero-title {
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 600;
  margin-bottom: 6px;
}
.hero-title .accent { color: var(--green); }
.hero-meaning {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 18px;
}
.hero-meaning em { font-style: italic; font-weight: 600; color: var(--plum); }
.hero-text { max-width: 440px; margin-bottom: 28px; }

.feature-pills {
  display: flex;
  gap: 30px;
  margin-bottom: 32px;
}
.feature-pills li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .9rem;
  font-weight: 700;
  color: var(--plum);
}
.pill-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--blush-panel);
  display: grid; place-items: center;
  flex-shrink: 0;
}

.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

/* Simple boxed hero media used on inner pages (approach, services, resources) */
.hero-media { position: relative; }
.hero-img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  aspect-ratio: 56 / 62;
}

.hero-float-card {
  position: absolute;
  right: -10px;
  top: 28%;
  background: rgba(251,247,244,.96);
  backdrop-filter: blur(4px);
  border-radius: 16px;
  padding: 18px 22px;
  box-shadow: 0 18px 40px rgba(70,58,87,.12);
  max-width: 190px;
  text-align: center;
}
.hero-float-card h3 { font-size: 1.02rem; color: var(--plum); margin-bottom: 8px; }
.hero-float-card p { font-size: .8rem; color: var(--text-muted); }
.float-leaf::before { content: "\273F"; color: var(--green); font-size: 1rem; display: block; margin-bottom: 6px; }

/* ============================================================
   NAME MEANING
   ============================================================ */
.name-meaning {
  padding: 72px 0 60px;
  text-align: center;
  position: relative;
}
img.name-plant-left {
  position: absolute;
  left: -220px;
  top: 70%;
  transform: translateY(-50%) rotate(100deg) scaleX(-1);
  width: 460px;
  max-width: none;
  z-index: 1;
  pointer-events: none;
  opacity: .6;
}
img.name-plant-right {
  position: absolute;
  right: -220px;
  top: 70%;
  transform: translateY(-50%) rotate(-80deg);
  width: 460px;
  max-width: none;
  z-index: 1;
  pointer-events: none;
  opacity: .45;
}
.name-meaning-inner {
  max-width: 780px;
}
.name-words {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
}
.name-word {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.name-latin {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 600;
  color: var(--plum);
  line-height: 1;
  letter-spacing: -0.5px;
}
.name-origin {
  font-family: var(--sans);
  font-size: .65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--green);
}
.name-def {
  font-family: var(--sans);
  font-size: .95rem;
  color: var(--text-muted);
  font-style: italic;
}
.name-plus {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--green);
  opacity: .6;
  line-height: 1;
  padding-top: 8px;
}
.name-divider {
  width: 60px;
  height: 2px;
  background: var(--green);
  opacity: .25;
  margin: 0 auto 28px;
  border-radius: 2px;
}
.name-philosophy {
  font-size: 1.05rem;
  color: var(--text);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ============================================================
   MEET YOUR THERAPISTS
   ============================================================ */
.therapists { padding: 30px 0; }
.therapists-inner {
  background: var(--blush-card);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: grid;
  grid-template-columns: 0.85fr 2fr;
  gap: 36px;
  align-items: center;
}
.therapists-intro h2 {
  font-size: 1.5rem;
  font-weight: 500;
  margin: 6px 0 24px;
  line-height: 1.35;
}

.therapist-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.therapist-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  box-shadow: 0 10px 30px rgba(70,58,87,.05);
}
.avatar {
  width: 130px; height: 130px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 16px;
  border: 4px solid #fff;
  box-shadow: 0 0 0 2px var(--blush-panel), 0 8px 18px rgba(70,58,87,.12);
}
.therapist-card h3 { font-size: 1.3rem; color: var(--green-dark); }
.credential { font-size: .85rem; font-weight: 700; color: var(--plum); margin-top: 2px; }
.therapist-body p { font-size: .9rem; }
.card-arrow {
  position: absolute;
  right: 18px; bottom: 18px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--blush-panel);
  color: var(--green-dark);
  display: grid; place-items: center;
  font-size: 1rem;
  transition: .25s;
}
.card-arrow:hover { background: var(--green); color: #fff; }

/* ============================================================
   OUR APPROACH
   ============================================================ */
.approach { padding: 70px 0; position: relative; }
img.approach-plant-right {
  position: absolute;
  right: -140px;
  bottom: -180px;
  width: 460px;
  max-width: none;
  z-index: 1;
  pointer-events: none;
  opacity: .5;
  transform: rotate(-36deg);
}
.approach-inner {
  display: grid;
  grid-template-columns: 0.8fr 2fr;
  gap: 50px;
  align-items: center;
}
.approach-img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  aspect-ratio: 38 / 42;
}
.approach-title { font-size: clamp(2rem, 3.5vw, 2.8rem); margin-bottom: 16px; }
.approach-copy > p { max-width: 600px; margin-bottom: 36px; }

.approach-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.approach-item { text-align: center; }
.circle-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--green-soft);
  display: grid; place-items: center;
  margin: 0 auto 14px;
}
.approach-item h3 { font-size: .95rem; margin-bottom: 8px; color: var(--plum); }
.approach-item p { font-size: .82rem; color: var(--text-muted); }

/* ============================================================
   SUPPORT / CHALLENGES
   ============================================================ */
.support { padding: 40px 0 80px; }
.support-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 50px;
  align-items: center;
}
.support-copy h2 { font-size: clamp(2rem, 3.5vw, 2.7rem); margin-bottom: 16px; }
.support-copy > p { margin-bottom: 18px; }

.check-list { margin-bottom: 30px; }
.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 7px 0;
  font-size: .98rem;
  color: var(--plum);
}
.check-list li::before {
  content: "\2713";
  color: var(--green);
  font-weight: 800;
  font-size: .85rem;
}

.support-quote { position: relative; border-radius: var(--radius-lg); overflow: hidden; background: var(--sage-dark); }
.quote-img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  aspect-ratio: 64 / 42;
}
.quote-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(40,30,25,.78) 0%, rgba(40,30,25,.35) 55%, rgba(40,30,25,.05) 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 50px 44px;
}
.quote-mark { font-family: var(--serif); font-size: 3.5rem; line-height: .4; color: #fff; }
.quote-overlay blockquote {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  line-height: 1.3;
  max-width: 340px;
  margin: 18px 0;
  font-style: normal;
}
.quote-overlay cite {
  font-family: var(--sans);
  font-size: .85rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: .5px;
  opacity: .85;
}

/* ============================================================
   CTA
   ============================================================ */
.cta { padding: 0 0 70px; }
.cta-inner {
  background: var(--blush-panel);
  border-radius: var(--radius-lg);
  padding: 24px 50px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 30px;
  align-items: center;
}
.cta-wreath {
  width: auto; height: auto;
  display: grid; place-items: center;
}
.cta-wreath .icon-heart { width: 144px; height: 144px; object-fit: contain; }
.cta-copy h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 8px; }
.cta-copy p { color: var(--text); }
.cta-action { text-align: center; }
.cta-note { font-size: .82rem; color: var(--green-dark); margin-top: 12px; font-weight: 600; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--sage); position: relative; overflow: hidden; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding-top: 30px;
  padding-bottom: 40px;
  padding-right: 200px; /* room for plant */
}
.footer-plant {
  position: absolute;
  right: max(-30px, calc((100% - 1140px) / 2 - 30px));
  top: 0;
  width: 170px;
  height: auto;
  opacity: .75;
  pointer-events: none;
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-desc { font-size: .9rem; max-width: 280px; margin-bottom: 18px; }
.socials { display: flex; gap: 12px; }
.socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(70,58,87,.25);
  display: grid; place-items: center;
  transition: .25s;
}
.socials a svg { width: 18px; height: 18px; fill: var(--plum); }
.socials a:hover { background: var(--green); border-color: var(--green); }
.socials a:hover svg { fill: #fff; }

.footer-col h3 { font-size: 1.05rem; margin-bottom: 16px; color: var(--plum); }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { font-size: .9rem; color: var(--text); transition: .2s; }
.footer-col ul a:hover { color: var(--green); }

.footer-contact ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .9rem;
}
.footer-contact .icon { fill: var(--green); flex-shrink: 0; margin-top: 3px; }

.footer-bottom { background: var(--footer-green); color: #fff; }
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  font-size: .82rem;
}
.footer-legal { display: flex; gap: 14px; }
.footer-legal a:hover { text-decoration: underline; }

.footer-credits {
  text-align: center;
  font-size: .74rem;
  opacity: .8;
  padding: 0 24px 14px;
}
.footer-credits a { color: #fff; }
.footer-credits a:hover { text-decoration: underline; }

/* ============================================================
   IMAGE PLACEHOLDERS (auto-applied when a picture is missing)
   ============================================================ */
.img-missing {
  background: repeating-linear-gradient(45deg, #efe2dd, #efe2dd 12px, #e9d8d2 12px, #e9d8d2 24px);
  position: relative;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.icon-people, .icon-cap, .icon-shield, .icon-hands {
  width: 26px; height: 26px;
  fill: none; stroke: var(--green); stroke-width: 1.6;
  stroke-linecap: round; stroke-linejoin: round;
}

/* Centered helpers */
.eyebrow.center { justify-content: center; }
.center-block { display: block; margin: 6px auto 14px; }

/* Intro */
.about-intro { text-align: center; padding: 56px 0 40px; }
.page-title {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  margin-bottom: 18px;
}
.page-title .accent { color: var(--green); }
.page-lede {
  max-width: 560px;
  margin: 0 auto;
  color: var(--text);
}
.about-intro-photo {
  display: block;
  width: 100%;
  max-width: 640px;
  height: auto;
  border-radius: var(--radius-lg);
  object-fit: cover;
  margin: 32px auto 0;
  box-shadow: 0 16px 36px rgba(70,58,87,.14);
}

/* ---- Bio cards (photo + flowing paragraphs) ---- */
.bio-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: center;
  gap: 44px;
  background: var(--blush-card);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-bottom: 34px;
}
.bio-card.plain { background: transparent; padding: 24px 0; }

/* reversed layout (Alyssa): photo on the right */
.bio-card.reverse { grid-template-columns: 1fr 220px; }
.bio-card.reverse .bio-photo { order: 2; }

.bio-avatar {
  width: 220px; height: 220px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
  box-shadow: 0 0 0 2px var(--blush-panel), 0 10px 22px rgba(70,58,87,.12);
}
.bio-name { font-size: 1.8rem; color: var(--green-dark); margin-bottom: 2px; scroll-margin-top: 120px; }
.bio-main .credential { margin-bottom: 14px; }
.bio-main p { font-size: .95rem; margin-bottom: 14px; }
.bio-main p:last-child { margin-bottom: 0; }

/* ---- Two cards (credentials / mission) ---- */
.two-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 30px auto;
}
.info-card {
  position: relative;
  background: var(--blush-card);
  border-radius: var(--radius-lg);
  padding: 36px;
  min-height: 230px;
  overflow: hidden;
  display: flex;
}
.info-body { width: 60%; }
.info-card h3 { font-size: 1.5rem; margin-bottom: 4px; }
.info-card p { font-size: .92rem; }
.info-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: .9rem; margin-bottom: 16px;
}
.info-ico {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--green-soft);
  display: grid; place-items: center; flex-shrink: 0;
}
.info-ico svg { width: 20px; height: 20px; }
.info-plant {
  position: absolute;
  right: 24px; bottom: 24px;
  width: 170px; height: auto;
  border-radius: 12px;
  pointer-events: none;
}

/* ---- How we work together ---- */
.work-together { text-align: center; padding: 50px 0 60px; }
.work-together h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); }
.work-lede { max-width: 620px; margin: 0 auto 40px; }
.work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.work-item { text-align: center; }
.work-item h3 { font-size: 1.1rem; margin-bottom: 8px; }
.work-item p { font-size: .86rem; color: var(--text-muted); max-width: 220px; margin: 0 auto; }

/* Wider CTA action area (two buttons) */
.cta-action-wide { text-align: center; }
.cta-buttons { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.icon-person, .icon-brain {
  width: 26px; height: 26px;
  fill: none; stroke: var(--green); stroke-width: 1.6;
  stroke-linecap: round; stroke-linejoin: round;
}

/* Hero float card variant — top right */
.hero-float-card.top { top: 18%; right: -6px; }

/* Section heading */
.section-head { text-align: center; margin-bottom: 44px; }
.section-head h2 { font-size: clamp(1.9rem, 3.2vw, 2.5rem); }

/* Client portal banner */
.portal-section { padding: 36px 0 20px; }
.portal-banner {
  background: var(--green-soft);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.portal-banner-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.icon-portal {
  width: 30px; height: 30px;
  fill: none; stroke: var(--green); stroke-width: 1.6;
  stroke-linecap: round; stroke-linejoin: round;
}
.portal-banner-copy { flex: 1; }
.portal-banner-copy h2 { font-size: 1.5rem; }
.portal-banner-copy p { font-size: .95rem; color: var(--text); max-width: 520px; }
.portal-banner .btn { flex-shrink: 0; }

.services-section { padding: 20px 0 40px; }

.process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
.process-grid .service-card { grid-template-columns: auto 1fr; align-items: start; }
.process-grid .service-body p { margin-bottom: 12px; }
.process-grid .service-body a.learn-more { word-break: break-word; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.service-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px 28px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  box-shadow: 0 10px 30px rgba(70,58,87,.05);
  transition: transform .25s ease, box-shadow .25s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(70,58,87,.1); }
.service-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--blush-panel);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.service-icon svg { width: 26px; height: 26px; }
.service-body h3 { font-size: 1.25rem; }
.service-body .divider-leaf.small { margin: 6px 0 10px; }
.service-body p { font-size: .9rem; margin-bottom: 16px; }
.learn-more {
  font-weight: 700;
  font-size: .9rem;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.learn-more:hover { color: var(--green-dark); }
.learn-more .arrow { transition: transform .25s ease; }
.learn-more:hover .arrow { transform: translateX(4px); }

/* Our Approach to Care panel */
.care-section { padding: 40px 0; }
.care-panel {
  background: var(--blush-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.85fr 2fr;
}
.care-img { width: 100%; height: 100%; object-fit: cover; min-height: 320px; }
.care-content { padding: 44px; }
.care-content h2 { font-size: clamp(1.7rem, 2.8vw, 2.2rem); }
.care-content > p { max-width: 640px; margin: 14px 0 32px; font-size: .95rem; }
.care-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

/* ============================================================
   RESOURCES PAGE
   ============================================================ */
.icon-book, .icon-handshake, .icon-chat, .icon-globe, .icon-pin, .icon-phone-line {
  width: 26px; height: 26px;
  fill: none; stroke: var(--green); stroke-width: 1.6;
  stroke-linecap: round; stroke-linejoin: round;
}

/* Local resources page */
.back-link {
  display: inline-block;
  font-size: .85rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 14px;
}
.back-link:hover { color: var(--green-dark); }
.placeholder-notice {
  background: var(--blush-panel);
  border: 1px dashed var(--sage-dark);
  border-radius: var(--radius);
  padding: 18px 22px;
  font-size: .9rem;
  color: var(--text);
  margin-bottom: 10px;
}
.learn-more.placeholder-link {
  color: var(--text-muted);
  border-bottom: 1px dashed var(--text-muted);
  padding-bottom: 2px;
}
.learn-more.placeholder-link:hover { color: var(--text); }

/* Recommended reads */
.reads-section { padding: 30px 0; }
.reads-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  text-align: left;
}
.reads-head .center-block { margin-left: 0; }
.view-all { margin-top: 8px; }

.reads-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.read-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  display: grid;
  grid-template-columns: 130px 1fr;
  box-shadow: 0 10px 30px rgba(70,58,87,.05);
}
.read-img { width: 100%; height: 100%; object-fit: cover; min-height: 190px; }
.read-body { padding: 22px 22px; }
.read-label {
  font-size: .68rem; font-weight: 800; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--green);
}
.read-body h3 { font-size: 1.2rem; margin: 6px 0 8px; }
.read-body p { font-size: .86rem; margin-bottom: 14px; }

/* Helpful resources (formerly "support beyond therapy") */
.crisis-section { padding: 50px 0 60px; }
.crisis-lede { color: var(--text); margin-top: 6px; }

/* ============================================================
   POP-UP MODAL
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(70,58,87,.45);
  backdrop-filter: blur(3px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 200;
  opacity: 0;
  transition: opacity .2s ease;
}
.modal-overlay.show { opacity: 1; }
.modal-overlay[hidden] { display: none; }

.modal-box {
  background: var(--sage);
  border-radius: var(--radius-lg);
  padding: 40px 38px 34px;
  max-width: 440px;
  width: 100%;
  position: relative;
  text-align: center;
  box-shadow: 0 30px 70px rgba(70,58,87,.3);
  transform: translateY(12px) scale(.98);
  transition: transform .22s ease;
}
.modal-overlay.show .modal-box { transform: translateY(0) scale(1); }
.modal-close {
  position: absolute;
  top: 14px; right: 18px;
  background: none; border: none;
  font-size: 1.8rem; line-height: 1;
  color: var(--text-muted);
  cursor: pointer;
  transition: color .2s;
}
.modal-close:hover { color: var(--plum); }
.modal-box .float-leaf { margin-bottom: 4px; }
.modal-title { font-size: 1.6rem; }
.modal-box .divider-leaf.small { margin: 8px auto 14px; }
.modal-desc { font-size: .95rem; margin-bottom: 26px; }
.modal-link { width: 100%; justify-content: center; }

/* Bigger variant — used by the Local Resources pop-up */
.modal-box--wide { max-width: 760px; text-align: center; }
.modal-box--wide .modal-desc { margin-bottom: 20px; }
.modal-resource-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  text-align: left;
  max-height: 55vh;
  overflow-y: auto;
  padding-right: 4px;
}
.modal-resource-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #fff;
  border-radius: var(--radius);
  padding: 16px 18px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.modal-resource-item:hover { transform: translateY(-3px); box-shadow: 0 12px 26px rgba(70,58,87,.1); }
.modal-resource-item .service-icon { width: 44px; height: 44px; flex-shrink: 0; }
.modal-resource-item .service-icon svg { width: 20px; height: 20px; }
.modal-resource-title {
  display: block;
  font-weight: 700;
  font-size: .95rem;
  color: var(--plum);
  margin-bottom: 4px;
}
.modal-resource-title .arrow { color: var(--green); margin-left: 4px; transition: transform .2s ease; }
.modal-resource-item:hover .modal-resource-title .arrow { transform: translateX(4px); }
.modal-resource-desc { display: block; font-size: .82rem; color: var(--text-muted); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.icon-clock, .icon-mail {
  width: 26px; height: 26px;
  fill: none; stroke: var(--green); stroke-width: 1.6;
  stroke-linecap: round; stroke-linejoin: round;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 30px;
  margin: 20px auto 40px;
  align-items: start;
}

/* Form */
.form-panel {
  background: var(--blush-card);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.form-panel h2 { font-size: 1.7rem; }
.form-intro { font-size: .92rem; margin: 8px 0 26px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: .85rem;
  font-weight: 700;
  color: var(--plum);
  margin-bottom: 7px;
}
.field label span { color: var(--green); }
.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: .92rem;
  color: var(--text);
  background: #fff;
  border: 1.5px solid #e7d8d2;
  border-radius: 12px;
  padding: 13px 15px;
  transition: border-color .2s, box-shadow .2s;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input::placeholder,
.field textarea::placeholder { color: #b6aab0; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(111,141,79,.15);
}
.field select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236f8d4f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 15px center; padding-right: 40px;
}

.send-row { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.secure-note {
  display: flex; align-items: center; gap: 7px;
  font-size: .82rem; color: var(--text-muted);
}
.secure-note .icon { width: 16px; height: 16px; fill: var(--text-muted); }
.form-success {
  margin-top: 20px;
  background: var(--green-soft);
  border: 1.5px solid rgba(111,141,79,.4);
  color: var(--green-dark);
  border-radius: 12px;
  padding: 16px 18px;
  font-size: .92rem;
  font-weight: 600;
}
.form-error {
  margin-top: 20px;
  background: #fbecea;
  border: 1.5px solid rgba(176,74,58,.4);
  color: #8f3a2c;
  border-radius: 12px;
  padding: 16px 18px;
  font-size: .92rem;
  font-weight: 600;
}
.form-error a { color: inherit; text-decoration: underline; }

/* Submit button while a submission is in flight */
#contactForm button[type="submit"][disabled] { opacity: .65; cursor: not-allowed; }

/* Contact information */
.info-panel {
  background: var(--blush-card);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.info-panel h2 { font-size: 1.6rem; }
.contact-list, .session-list { margin-top: 20px; }
.contact-list li, .session-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 22px;
}
.info-circle {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--green-soft);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.info-circle svg { width: 22px; height: 22px; }
.contact-list h3, .session-list h3 { font-family: var(--sans); font-size: .95rem; color: var(--plum); margin-bottom: 2px; }
.contact-list a, .contact-list span,
.session-list span { font-size: .92rem; color: var(--text); }
.contact-list a:hover { color: var(--green); }
.info-divider { border: none; border-top: 1px solid rgba(70,58,87,.12); margin: 8px 0 24px; }

/* Value props */
.values-section { padding: 30px 0 50px; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.value-item { display: flex; align-items: flex-start; gap: 16px; }
.value-item .circle-icon { background: var(--green-soft); margin: 0; flex-shrink: 0; }
.value-item h3 { font-size: 1.15rem; margin-bottom: 6px; }
.value-item p { font-size: .88rem; color: var(--text-muted); }

/* ============================================================
   OUR APPROACH PAGE
   ============================================================ */
.principles-section { padding: 20px 0 50px; }
.principles-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.principles-grid .circle-icon { width: 72px; height: 72px; }
.principles-grid .approach-item h3 { font-size: 1.02rem; }
.principles-grid .approach-item p { font-size: .85rem; }

.modalities-section { padding: 30px 0 50px; }
.modalities-lede { max-width: 620px; margin: 6px auto 0; color: var(--text); }
.modalities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 40px;
}
.modality-card {
  text-align: center;
  border: 1px solid rgba(70,58,87,.1);
  border-radius: var(--radius);
  padding: 26px 16px;
  background: rgba(255,255,255,.4);
}
.modality-card .circle-icon { width: 60px; height: 60px; margin-bottom: 14px; }
.modality-card h3 { font-size: .98rem; margin-bottom: 10px; }
.modality-card p { font-size: .82rem; color: var(--text-muted); }

/* ============================================================
   SCROLL ANIMATIONS  (added by JS; disabled for reduced motion)
   ============================================================ */
:root {
  --ease-out-expo: cubic-bezier(.16, 1, .3, 1);
  --ease-back: cubic-bezier(.34, 1.45, .5, 1);
}

@media (prefers-reduced-motion: no-preference) {
  /* Hidden until revealed; .is-done releases control back so hover works */
  .reveal { opacity: 0; }
  .reveal.is-done { opacity: 1; }

  .reveal.in-view              { animation: rv-up   .9s  var(--ease-out-expo) both; }
  .reveal.reveal-left.in-view  { animation-name: rv-left; }
  .reveal.reveal-right.in-view { animation-name: rv-right; }
  .reveal.reveal-card.in-view  { animation: rv-card .95s var(--ease-back) both; }
  .reveal.reveal-wipe.in-view  { animation: rv-wipe 1s   var(--ease-out-expo) both; }

  @keyframes rv-up {
    from { opacity: 0; transform: translateY(46px); filter: blur(12px); }
    to   { opacity: 1; transform: none;             filter: blur(0); }
  }
  @keyframes rv-left {
    from { opacity: 0; transform: translateX(-58px); filter: blur(8px); }
    to   { opacity: 1; transform: none;              filter: blur(0); }
  }
  @keyframes rv-right {
    from { opacity: 0; transform: translateX(58px); filter: blur(8px); }
    to   { opacity: 1; transform: none;             filter: blur(0); }
  }
  @keyframes rv-card {
    from { opacity: 0; transform: perspective(1200px) rotateX(16deg) translateY(52px); filter: blur(9px); }
    to   { opacity: 1; transform: perspective(1200px) rotateX(0)     translateY(0);    filter: blur(0); }
  }
  @keyframes rv-wipe {
    from { opacity: 0; clip-path: inset(0 100% -16% 0); transform: translateY(16px); }
    to   { opacity: 1; clip-path: inset(0 0 -16% 0);    transform: none; }
  }

  /* Richer hover lift on interactive cards */
  .service-card, .modality-card, .read-card {
    transition: transform .35s var(--ease-out-expo), box-shadow .35s ease;
  }
  .service-card:hover, .modality-card:hover, .read-card:hover {
    transform: translateY(-7px) scale(1.018);
    box-shadow: 0 24px 48px rgba(70, 58, 87, .14);
  }

  /* Sheen sweep across primary buttons */
  .btn-green { position: relative; overflow: hidden; }
  .btn-green::after {
    content: ""; position: absolute; top: 0; left: -130%;
    width: 65%; height: 100%; pointer-events: none;
    background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .38), transparent);
    transform: skewX(-18deg);
    transition: left .65s var(--ease-out-expo);
  }
  .btn-green:hover::after { left: 150%; }

  /* Parallax base — image is slightly oversized so it never shows gaps */
  .support-quote .quote-img { transform: scale(1.15); will-change: transform; }
  .hero-float-card, .info-plant { will-change: transform; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
/* Nav collapses to the hamburger menu a bit earlier than the main
   breakpoint below, since 7 nav links need more room before they wrap. */
@media (max-width: 1150px) {
  .main-nav, .btn-phone { display: none; }
  .nav-toggle { display: flex; margin-left: auto; }

  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--sage);
    padding: 20px 24px;
    gap: 16px;
    box-shadow: 0 16px 30px rgba(70,58,87,.1);
  }
}

@media (max-width: 980px) {

  .hero-inner,
  .approach-inner,
  .support-inner { grid-template-columns: 1fr; }

  .portal-banner { flex-direction: column; text-align: center; padding: 32px 24px; }
  .portal-banner-copy p { max-width: 100%; }

  .hero-plant-left,
  .name-plant-left,
  .name-plant-right,
  .approach-plant-right { display: none; }

  .therapists-inner { grid-template-columns: 1fr; }
  .approach-grid { grid-template-columns: repeat(3, 1fr); row-gap: 30px; }
  .hero-media { order: -1; max-width: 480px; margin: 0 auto; }

  .footer-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); padding-right: 24px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-plant { display: none; }

  /* Mobile hero: photo becomes a short banner up top, text moves onto a
     solid, legible background below it instead of overlaying the photo. */
  .hero-fullbleed {
    display: block;
    min-height: 0;
    padding-top: 46vh;
    position: relative;
  }
  .hero-bg {
    top: 0; left: 0; right: 0; bottom: auto;
    width: 100%;
    height: 46vh;
    border-radius: 0 0 28px 28px;
    box-shadow: 0 12px 24px rgba(70,58,87,.18);
    filter: brightness(.97) saturate(.97);
  }
  .hero-bg::before { display: none; }
  .hero-fullbleed .hero-inner {
    background: var(--blush-panel);
    padding: 36px 0 44px;
  }
  .hero-fullbleed .hero-copy {
    max-width: 100%;
    text-align: center;
  }
  .hero-text { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }

  .cta-inner {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
    width: calc(100% - 40px);
    margin-left: 20px;
    margin-right: 20px;
  }
  .therapists-inner {
    width: calc(100% - 40px);
    margin-left: 20px;
    margin-right: 20px;
  }

  /* These sections zero out their own left/right padding for desktop
     layout purposes — restore breathing room for their content on mobile */
  .services-section,
  .crisis-section,
  .portal-section,
  .care-section,
  .reads-section,
  .values-section,
  .principles-section,
  .modalities-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .modal-resource-grid { grid-template-columns: 1fr; max-height: 60vh; }

  /* About page */
  .bio-card,
  .bio-card.reverse {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    padding: 28px;
  }
  .bio-card.reverse .bio-photo { order: 0; }
  .bio-card.plain { padding: 24px; background: var(--blush-card); }

  .two-cards { grid-template-columns: 1fr; }
  .info-body { width: 100%; }
  .info-plant { display: none; }
  .work-grid { grid-template-columns: repeat(2, 1fr); row-gap: 36px; }

  /* Services page */
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: 1fr; }
  .care-panel { grid-template-columns: 1fr; }
  .care-img { min-height: 240px; }
  .care-grid { grid-template-columns: repeat(2, 1fr); row-gap: 28px; }

  /* Resources page */
  .reads-grid { grid-template-columns: 1fr; }
  .reads-head { flex-direction: column; gap: 10px; }

  /* Contact page */
  .contact-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; gap: 24px; }

  /* Our Approach page */
  .principles-grid { grid-template-columns: repeat(3, 1fr); row-gap: 32px; }
  .modalities-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 620px) {
  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .care-grid { grid-template-columns: 1fr; }
  .read-card { grid-template-columns: 110px 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-panel, .info-panel { padding: 28px 22px; }
  .principles-grid { grid-template-columns: repeat(2, 1fr); }
  .modalities-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-pills { flex-direction: column; gap: 14px; }
  .therapist-cards { grid-template-columns: 1fr; }
  .approach-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom-inner { flex-direction: column; gap: 8px; text-align: center; }
  .therapists-inner, .cta-inner { padding: 28px 22px; }
  .quote-overlay { background: linear-gradient(180deg, rgba(40,30,25,.3), rgba(40,30,25,.75)); padding: 30px 26px; }
}
