/*
Theme Name: Morgan Counselling Services
Theme URI: https://oceanviewmedia.ca/
Author: Ocean View Media
Author URI: https://oceanviewmedia.ca/
Description: Custom theme for Morgan Counselling Services — a calm, supportive, professional counselling website. Home, About, Services, and Contact pages with a matching header and footer.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: morgan-counselling
*/

/* =========================================================
   Morgan Counselling Services — Homepage
   Calm · supportive · professional · grounded
   ========================================================= */

/* ---------- Design tokens ---------- */
:root {
  /* Brand palette (from logo + plan) */
  --ink:        #2f4a57;   /* deep blue-green — headings, primary buttons */
  --ink-deep:   #233844;   /* darker blue-green — footer, overlays */
  --ink-soft:   #46606c;
  --sage:       #8c9d7c;   /* soft sage green — secondary accents */
  --sage-deep:  #6f835f;
  --sage-soft:  #d9e1ce;   /* light sage — tints, hovers */
  --cream:      #f6f1e8;   /* warm beige background */
  --cream-deep: #efe7d8;
  --taupe:      #8a7f72;   /* muted taupe — secondary text */
  --white:      #ffffff;

  --text:       #3c443f;   /* body text — warm charcoal */
  --muted:      #6b716b;
  --line:       #e7e0d3;   /* hairline borders on cream */

  /* Type */
  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans:  'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Rhythm */
  --container: 1180px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --section-y: clamp(4rem, 9vw, 7.5rem);
  --radius: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --shadow-sm: 0 4px 14px rgba(35, 56, 68, 0.06);
  --shadow:    0 14px 40px rgba(35, 56, 68, 0.10);
  --shadow-lg: 0 26px 60px rgba(35, 56, 68, 0.16);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  font-size: 1.0625rem;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; color: var(--ink); line-height: 1.12; letter-spacing: 0.01em; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); }
.grid-2--center { align-items: center; }

.section__head { max-width: 640px; margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }
.section__head--center { margin-inline: auto; text-align: center; }
.section__title { font-size: clamp(2rem, 4.4vw, 3.1rem); }
.section__intro { margin-top: 1rem; color: var(--muted); font-size: 1.125rem; }

.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--sage-deep);
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.eyebrow::before, .eyebrow::after { content: ""; width: 16px; height: 2px; background: var(--sage); display: inline-block; border-radius: 2px; flex: none; }
.eyebrow--sage { color: var(--sage-deep); }
.eyebrow--light { color: #cdd9c2; }
.eyebrow--light::before, .eyebrow--light::after { background: rgba(255,255,255,0.55); }

.lead { font-size: 1.18rem; color: var(--ink-soft); }
.lead + p { margin-top: 1.1rem; color: var(--muted); }

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--ink); color: #fff; padding: 0.75rem 1.25rem; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--ink); --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--sans); font-weight: 700; font-size: 0.98rem; letter-spacing: 0.01em;
  padding: 0.85rem 1.7rem; border-radius: var(--radius-pill);
  background: var(--btn-bg); color: var(--btn-fg);
  border: 1.5px solid var(--btn-bg);
  cursor: pointer; transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .25s, color .25s, border-color .25s;
  box-shadow: var(--shadow-sm); white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn:focus-visible { outline: 3px solid var(--sage); outline-offset: 3px; }
.btn--primary { --btn-bg: var(--ink); --btn-fg: #fff; }
.btn--primary:hover { background: var(--ink-deep); border-color: var(--ink-deep); }
.btn--outline { background: transparent; color: var(--ink); border-color: var(--ink); box-shadow: none; }
.btn--outline:hover { background: var(--ink); color: #fff; }
.btn--ghost { background: rgba(255,255,255,0.14); color: #fff; border-color: rgba(255,255,255,0.6); backdrop-filter: blur(4px); box-shadow: none; }
.btn--ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn--cream { background: var(--cream); color: var(--ink); border-color: var(--cream); }
.btn--cream:hover { background: #fff; border-color: #fff; }
.btn--lg { padding: 1.02rem 2.1rem; font-size: 1.02rem; }
.btn--sm { padding: 0.65rem 1.3rem; font-size: 0.9rem; }

.link-arrow { display: inline-flex; align-items: center; gap: 0.45rem; font-weight: 700; color: var(--ink); margin-top: 1.6rem; }
.link-arrow span { transition: transform .3s var(--ease); }
.link-arrow:hover span { transform: translateX(5px); }

/* ---------- Top bar ---------- */
.topbar { background: var(--ink-deep); color: #e9efe2; font-size: 0.86rem; }
.topbar__inner { display: flex; align-items: center; justify-content: center; gap: 1.5rem; padding-block: 0.6rem; text-align: center; flex-wrap: wrap; }
.topbar__msg { letter-spacing: 0.02em; opacity: 0.92; white-space: nowrap; }
.topbar__link { font-weight: 700; color: #fff; white-space: nowrap; }
.topbar__link:hover { color: var(--sage-soft); }

/* Collapse the announcement to a single line on phones */
@media (max-width: 600px) {
  .topbar__detail { display: none; }
  .topbar__inner { gap: 0.4rem 1rem; }
}

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: #fff;
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: background .3s, box-shadow .3s, border-color .3s;
}
.header.is-scrolled { background: #fff; box-shadow: var(--shadow-sm); border-bottom-color: var(--line); }
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; min-height: 78px; }
.brand__logo { height: 46px; width: auto; }

.nav { display: flex; align-items: center; gap: 2rem; }
.nav__list { display: flex; align-items: center; gap: 1.9rem; }
.nav__link { font-weight: 600; color: var(--ink); font-size: 0.98rem; position: relative; padding-block: 0.3rem; transition: color .2s; }
.nav__link::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--sage); transition: width .3s var(--ease); border-radius: 2px; }
.nav__link:hover { color: var(--sage-deep); }
.nav__link:hover::after, .nav__link.is-active::after { width: 100%; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 26px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s, opacity .3s; }

/* ---------- Hero ---------- */
.hero { position: relative; isolation: isolate; color: #fff; overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 55%; }
.hero__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(35,56,68,0.82) 0%, rgba(35,56,68,0.55) 42%, rgba(47,74,87,0.30) 100%),
    linear-gradient(to top, rgba(35,56,68,0.55), transparent 45%);
}
.hero__inner { padding-block: clamp(6rem, 16vw, 11rem) clamp(7rem, 14vw, 11rem); }
.hero__content { max-width: 700px; }
.hero__title { font-size: clamp(2.6rem, 6.4vw, 4.7rem); color: #fff; font-weight: 600; letter-spacing: 0.005em; }
.hero__subtitle { margin-top: 1.5rem; font-size: clamp(1.1rem, 2.2vw, 1.32rem); color: rgba(255,255,255,0.92); max-width: 600px; font-weight: 300; }
.hero__actions { margin-top: 2.4rem; display: flex; flex-wrap: wrap; gap: 1rem; }
.hero .eyebrow { color: #d8e2cb; }
.hero .eyebrow::before, .hero .eyebrow::after { background: var(--sage-soft); }

.hero__divider { position: absolute; left: 0; right: 0; bottom: -1px; z-index: -1; line-height: 0; }
.hero__divider svg { width: 100%; height: clamp(45px, 7vw, 90px); display: block; }
.hero__divider path { fill: var(--cream); }

/* ---------- Welcome ---------- */
.welcome { background: var(--cream); }
.welcome__media { position: relative; }
.welcome__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); aspect-ratio: 4 / 3.4; object-fit: cover; width: 100%; }
.welcome__leaf {
  position: absolute; bottom: -26px; right: -18px;
  width: 92px; height: 92px; border-radius: 50%;
  background: var(--white); color: var(--sage-deep);
  display: grid; place-items: center; box-shadow: var(--shadow);
}
.welcome__leaf svg { width: 42px; height: 42px; }

/* ---------- Who We Help ---------- */
.who { background: var(--white); }
.who__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem;
}
.who__card {
  background: var(--cream); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.9rem 1.4rem;
  text-align: center; transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s, border-color .3s;
}
.who__card:hover { transform: translateY(-6px); box-shadow: var(--shadow); background: #fff; border-color: var(--sage-soft); }
.who__icon {
  width: 62px; height: 62px; margin: 0 auto 1.1rem;
  border-radius: 50%; display: grid; place-items: center;
  background: var(--sage-soft); color: var(--ink);
  transition: background .3s, color .3s, transform .35s var(--ease);
}
.who__card:hover .who__icon { background: var(--ink); color: #fff; transform: scale(1.06); }
.who__icon svg { width: 30px; height: 30px; }
.who__card h3 { font-size: 1.28rem; font-weight: 600; }

/* ---------- Approach ---------- */
.approach { background: var(--cream); }
.approach__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); aspect-ratio: 4 / 4.3; object-fit: cover; width: 100%; }
.checklist { margin-top: 1.8rem; display: grid; gap: 0.95rem; }
.checklist li { position: relative; padding-left: 2.3rem; font-weight: 600; color: var(--ink-soft); font-size: 1.05rem; }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: 1px;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--sage-soft);
  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='%232f4a57' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}

/* ---------- Team ---------- */
.team { background: var(--white); }
.team__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.8rem; }
.team__card {
  background: var(--cream); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 2.6rem 1.8rem; text-align: center;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.team__card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.avatar {
  width: 92px; height: 92px; margin: 0 auto 1.3rem;
  border-radius: 50%; display: grid; place-items: center;
  font-family: var(--serif); font-size: 2rem; font-weight: 600; letter-spacing: 0.04em;
  color: var(--ink); background: var(--sage-soft);
  border: 2px solid var(--white); box-shadow: 0 0 0 2px var(--sage-soft);
}
img.avatar { object-fit: cover; padding: 0; }
.team__name { font-size: 1.55rem; }
.team__role { margin-top: 0.35rem; color: var(--sage-deep); font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; font-size: 0.82rem; }
.team__creds { margin-top: 0.7rem; color: var(--ink-soft); font-weight: 600; }
.team__supervision { margin-top: 0.5rem; color: var(--muted); font-size: 0.95rem; font-style: italic; }
.team__action { text-align: center; margin-top: clamp(2.4rem, 5vw, 3.4rem); }

/* ---------- Booking CTA ---------- */
.cta { position: relative; isolation: isolate; color: #fff; text-align: center; overflow: hidden; }
.cta__media { position: absolute; inset: 0; z-index: -2; }
.cta__media img { width: 100%; height: 100%; object-fit: cover; }
.cta__veil { position: absolute; inset: 0; background: linear-gradient(120deg, rgba(35,56,68,0.92), rgba(47,74,87,0.80)); }
.cta__inner { padding-block: clamp(5rem, 11vw, 8rem); max-width: 720px; margin-inline: auto; }
.cta__title { color: #fff; font-size: clamp(2.1rem, 4.6vw, 3.3rem); }
.cta__copy { margin: 1.2rem auto 2.2rem; color: rgba(255,255,255,0.9); font-size: 1.18rem; max-width: 560px; }

/* ---------- Footer ---------- */
.footer { background: var(--ink-deep); color: #d4ddd2; }
.footer__grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1.3fr; gap: clamp(2rem, 5vw, 4rem);
  padding-block: clamp(3.5rem, 7vw, 5rem);
}
.footer__wordmark { font-family: var(--serif); font-size: 1.9rem; color: #fff; line-height: 1; letter-spacing: 0.04em; }
.footer__wordmark span { display: block; font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.32em; text-transform: uppercase; color: var(--sage); margin-top: 0.5rem; font-weight: 600; }
.footer__desc { margin: 1.3rem 0 1.8rem; max-width: 36ch; color: #b9c4ba; line-height: 1.7; }
.footer__heading { color: #fff; font-family: var(--sans); font-size: 0.82rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 700; margin-bottom: 1.2rem; }
.footer__col ul { display: grid; gap: 0.75rem; }
.footer__col a { color: #c6d0c5; transition: color .2s, padding-left .2s; }
.footer__col a:hover { color: #fff; padding-left: 4px; }
.footer__bar { border-top: 1px solid rgba(255,255,255,0.1); }
.footer__bar-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: 1.4rem; flex-wrap: wrap; font-size: 0.84rem; color: #9fab9f; }
.footer__note { max-width: 52ch; opacity: 0.85; }

/* ---------- Mobile menu (body-level overlay) ---------- */
.mobile-menu { position: fixed; inset: 0; z-index: 200; visibility: hidden; }
.mobile-menu.is-open { visibility: visible; }
.mobile-menu__backdrop { position: absolute; inset: 0; background: rgba(35, 56, 68, 0.5); opacity: 0; transition: opacity .35s var(--ease); }
.mobile-menu.is-open .mobile-menu__backdrop { opacity: 1; }
.mobile-menu__panel {
  position: absolute; top: 0; right: 0; bottom: 0; width: min(84vw, 340px);
  background: var(--cream); box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
  gap: 2.2rem; padding: 3.5rem 2.2rem; overflow-y: auto;
  transform: translateX(100%); transition: transform .4s var(--ease);
}
.mobile-menu.is-open .mobile-menu__panel { transform: translateX(0); }
.mobile-menu__close { position: absolute; top: 1rem; right: 1.3rem; background: none; border: 0; font-size: 2.3rem; line-height: 1; color: var(--ink); cursor: pointer; }
.mobile-menu__list { display: grid; gap: 1.5rem; }
.mobile-menu__list a { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; color: var(--ink); transition: color .2s; }
.mobile-menu__list a:hover { color: var(--sage-deep); }
.mobile-menu__cta { width: 100%; }
body.nav-open { overflow: hidden; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 980px) {
  .who__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 820px) {
  .nav-toggle { display: flex; }
  .nav { display: none; }

  .grid-2 { grid-template-columns: 1fr; }
  .approach__media { order: 2; }
  .welcome__media { order: -1; }
}

@media (max-width: 540px) {
  body { font-size: 1rem; }
  .who__grid { grid-template-columns: 1fr; max-width: 360px; margin-inline: auto; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__actions .btn, .hero__actions { width: 100%; }
  .topbar__msg { font-size: 0.8rem; }
  .brand__logo { height: 38px; }
}

/* ---------- Motion preferences ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover, .who__card:hover, .team__card:hover { transform: none; }
}

/* =========================================================
   Inner pages (About / Services / Contact)
   ========================================================= */
.section--cream { background: var(--cream); }
.section--white { background: var(--white); }

/* ---------- Inner page hero ---------- */
.page-hero { position: relative; isolation: isolate; color: #fff; text-align: center; overflow: hidden; }
.page-hero__media { position: absolute; inset: 0; z-index: -2; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 55%; }
.page-hero__veil { position: absolute; inset: 0; background: linear-gradient(120deg, rgba(35,56,68,0.86), rgba(47,74,87,0.66)); }
.page-hero__inner { padding-block: clamp(5rem, 13vw, 8.5rem); max-width: 780px; margin-inline: auto; }
.page-hero__title { color: #fff; font-size: clamp(2.3rem, 5.4vw, 3.7rem); }
.page-hero__subtitle { margin-top: 1.15rem; color: rgba(255,255,255,0.92); font-size: clamp(1.05rem, 2.1vw, 1.28rem); font-weight: 300; }
.page-hero .eyebrow { color: #d8e2cb; justify-content: center; }
.page-hero .eyebrow::before, .page-hero .eyebrow::after { background: var(--sage-soft); }
.page-hero__divider { position: absolute; left: 0; right: 0; bottom: -1px; z-index: -1; line-height: 0; }
.page-hero__divider svg { width: 100%; height: clamp(40px, 6vw, 70px); display: block; }
.page-hero__divider path { fill: var(--cream); }

/* ---------- Feature cards (values / services / sessions / contact) ---------- */
.feature-grid { display: grid; gap: 1.5rem; }
.feature-grid--2 { grid-template-columns: repeat(2, 1fr); }
.feature-grid--3 { grid-template-columns: repeat(3, 1fr); }
.feature-grid--4 { grid-template-columns: repeat(4, 1fr); }

.feature-card {
  background: var(--cream); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 2.2rem 1.9rem;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .3s;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--sage-soft); }
.feature-card__icon {
  width: 62px; height: 62px; border-radius: 50%; display: grid; place-items: center;
  background: var(--sage-soft); color: var(--ink); margin-bottom: 1.25rem;
  transition: background .3s, color .3s, transform .35s var(--ease);
}
.feature-card:hover .feature-card__icon { background: var(--ink); color: #fff; transform: scale(1.05); }
.feature-card__icon svg { width: 28px; height: 28px; }
.feature-card h3 { font-size: 1.5rem; margin-bottom: 0.55rem; }
.feature-card p { color: var(--muted); }
.feature-card--center { text-align: center; }
.feature-card--center .feature-card__icon { margin-inline: auto; }
.feature-card__link { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 1.1rem; font-weight: 700; color: var(--ink); }
.feature-card__link span { transition: transform .3s var(--ease); }
.feature-card__link:hover span { transform: translateX(4px); }

/* ---------- Team bios (About) ---------- */
.team__card--bio { text-align: center; }
.team__bio { margin-top: 0.9rem; color: var(--muted); font-size: 0.98rem; line-height: 1.65; }
.team__creds--inline { margin-top: 0.5rem; }

/* ---------- Contact form ---------- */
.contact-form {
  background: var(--cream); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: clamp(1.8rem, 4vw, 2.8rem);
  box-shadow: var(--shadow-sm);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-row { margin-bottom: 1.2rem; }
.contact-form label { display: block; font-weight: 600; color: var(--ink); margin-bottom: 0.4rem; font-size: 0.95rem; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; padding: 0.85rem 1rem; border: 1.5px solid var(--line); border-radius: 12px;
  font-family: var(--sans); font-size: 1rem; background: #fff; color: var(--text);
  transition: border-color .2s, box-shadow .2s;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--sage); box-shadow: 0 0 0 3px var(--sage-soft);
}
.contact-form textarea { resize: vertical; min-height: 140px; }
.consent { display: flex; gap: 0.7rem; align-items: flex-start; font-size: 0.95rem; color: var(--muted); }
.consent input { width: auto; margin-top: 0.25rem; flex-shrink: 0; }
.contact-form .btn { margin-top: 1.4rem; }

/* ---------- Emergency note ---------- */
.note-box {
  max-width: 820px; margin-inline: auto; background: #fbf6ee;
  border: 1px solid var(--line); border-left: 4px solid var(--sage);
  border-radius: 14px; padding: 1.6rem 1.9rem; text-align: center; color: var(--ink-soft);
}
.note-box strong { color: var(--ink); }

@media (max-width: 980px) {
  .feature-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .feature-grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .feature-grid--2, .feature-grid--3, .feature-grid--4 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
}

/* ---------- Pull quote ---------- */
.pullquote { max-width: 800px; margin: 2.6rem auto 0; text-align: center; }
.pullquote blockquote {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.35rem, 2.6vw, 1.85rem); line-height: 1.45; color: var(--ink);
}
.pullquote blockquote::before {
  content: "\201C"; display: block; font-size: 3.2rem; line-height: 0.4;
  color: var(--sage); margin-bottom: 0.7rem;
}
.pullquote cite { display: block; margin-top: 1.1rem; font-family: var(--sans); font-style: normal;
  font-weight: 700; font-size: 0.82rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--sage-deep); }

/* ---------- Footer address ---------- */
.footer__address { font-style: normal; color: #c6d0c5; margin-top: 0.2rem; line-height: 1.6; }
.footer__address a { color: #c6d0c5; }
.footer__address a:hover { color: #fff; }

/* ---------- Therapist profiles (About: Meet the Team) ---------- */
.team__list { max-width: 940px; margin-inline: auto; }
.therapist {
  display: grid; grid-template-columns: 200px 1fr; gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start; padding-block: clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid var(--line);
}
.therapist:first-child { padding-top: 0; }
.therapist:last-child { border-bottom: 0; padding-bottom: 0; }
.therapist__photo { display: flex; justify-content: center; }
.therapist__photo .avatar { width: 168px; height: 168px; font-size: 3.4rem; margin: 0; }
.therapist__photo img { width: 168px; height: 168px; border-radius: 50%; object-fit: cover; border: 4px solid var(--white); box-shadow: 0 0 0 2px var(--sage-soft); }
.therapist__name { font-size: clamp(1.6rem, 3vw, 2.05rem); }
.therapist__role { margin-top: 0.35rem; color: var(--sage-deep); font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; font-size: 0.82rem; }
.therapist__creds { margin-top: 0.55rem; color: var(--ink-soft); font-weight: 600; font-size: 0.98rem; }
.therapist__bio { margin-top: 1rem; color: var(--muted); }
.therapist__supervision { margin-top: 0.7rem; color: var(--muted); font-style: italic; font-size: 0.95rem; }
.therapist__email { display: inline-flex; margin-top: 1.3rem; }
.therapist__more { margin-top: 1.4rem; border: 1px solid var(--line); border-radius: 14px; background: var(--cream); padding: 0 1.3rem; }
.therapist__more summary { cursor: pointer; font-weight: 700; color: var(--ink); padding: 1rem 0; list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.therapist__more summary::-webkit-details-marker { display: none; }
.therapist__more summary::after { content: "+"; font-size: 1.5rem; color: var(--sage-deep); line-height: 1; }
.therapist__more[open] summary::after { content: "\2013"; }
.cred-cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 1.5rem; padding: 0.4rem 0 1.5rem; }
.cred-group h4 { font-family: var(--sans); font-size: 0.76rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sage-deep); margin-bottom: 0.7rem; }
.cred-group ul { display: grid; gap: 0.45rem; }
.cred-group li { font-size: 0.92rem; color: var(--ink-soft); padding-left: 1rem; position: relative; line-height: 1.5; }
.cred-group li::before { content: ""; position: absolute; left: 0; top: 0.5em; width: 5px; height: 5px; border-radius: 50%; background: var(--sage); }

@media (max-width: 700px) {
  .therapist { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .therapist__more { text-align: left; width: 100%; }
}
