/* ============================================================
   Be Free Therapy Group — shared stylesheet
   Palette: white base, logo-blue + navy + sage + mint accents
   Anchored on the Be Free logo's steel-blue and the pale mint
   from the existing Squarespace site.
   Typography: Cormorant Garamond (display) + DM Sans (body)
   ============================================================ */

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

:root {
  --white: #FFFFFF;
  --off-white: #F3F6F4;
  --cream: #E8EFEA;
  --warm: #E6F0EA;  /* pale mint tint — used for quote block bg */

  --navy: #1E3A5F;
  --navy-deep: #152C4A;
  --navy-light: #2A4F7A;

  /* Primary brand accent — pulled from the Be Free logo */
  --teal: #3E6E8E;
  --teal-light: #5A8CA8;

  /* Lighter blue variants — tints of the logo blue */
  --sky: #5A8CA8;
  --sky-light: #A6C3D4;
  --sky-pale: #E0EAF1;

  /* Sage green + pale mint (pale-mint pulled from current site) */
  --sage: #7FA68B;
  --sage-light: #C5DCC9;
  --sage-pale: #D3E8DE;

  --accent-warm: #E8A87C;

  --text: #1F2937;
  --text-light: #4B5563;
  --text-muted: #6B7280;

  --border: rgba(30,58,95,0.1);
  --border-strong: rgba(30,58,95,0.2);

  --shadow-sm: 0 1px 3px rgba(30,58,95,0.05);
  --shadow: 0 2px 16px rgba(30,58,95,0.07);
  --shadow-lg: 0 8px 32px rgba(30,58,95,0.1);

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --nav-h: 76px;
  --container: 1140px;
}

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

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.4rem, 5.2vw, 3.8rem); }
h2 { font-size: clamp(1.9rem, 3.8vw, 2.8rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); }
h4 { font-size: 1.1rem; }

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

.eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.9rem;
  display: inline-block;
}
.eyebrow.on-dark { color: var(--sky-light); }
.eyebrow.sage { color: var(--sage); }

em.accent { font-style: italic; color: var(--sky); }

/* ===== LAYOUT ===== */
.container { max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }
.container-narrow { max-width: 780px; margin: 0 auto; padding: 0 1.5rem; }

section { padding: 5rem 0; }
section.compact { padding: 3.5rem 0; }

.section-header { text-align: center; max-width: 640px; margin: 0 auto 3rem; }
.section-header.section-header-wide { max-width: 820px; }
.section-header h2 { margin-bottom: 0.8rem; }
.section-header p { font-size: 1rem; color: var(--text-light); }
@media (min-width: 720px) {
  .nowrap-md { white-space: nowrap; }
}

.bg-cream { background: linear-gradient(135deg, #F0F7F2 0%, #DCE3DE 100%); }
.bg-off { background: linear-gradient(135deg, #F9FCFA 0%, #E9EDEA 100%); }
.bg-sky-pale { background: var(--sky-pale); }
.bg-sage-pale { background: var(--sage-pale); }
.bg-navy { background: var(--navy-deep); color: var(--white); }
.bg-navy h1, .bg-navy h2, .bg-navy h3 { color: var(--white); }
.bg-navy p { color: rgba(255,255,255,0.75); }

/* ===== NAVIGATION ===== */
nav.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s, box-shadow 0.25s;
}
nav.site-nav.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 1px 12px rgba(30,58,95,0.04);
}
.nav-inner {
  max-width: var(--container); margin: 0 auto;
  padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-h);
  gap: 1.5rem;
}
.nav-brand {
  display: flex; align-items: center; gap: 0.6rem;
  text-decoration: none;
  color: var(--navy);
  flex-shrink: 0;
}
.nav-brand img { height: 44px; width: auto; }
.nav-brand-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.nav-links {
  display: flex; align-items: center; gap: 1.8rem;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--text-light);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.2s;
  padding: 0.4rem 0;
  position: relative;
}
.nav-links a:hover { color: var(--navy); }
.nav-links a.active { color: var(--navy); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--sky);
  border-radius: 2px;
}
.nav-cta {
  background: var(--navy);
  color: var(--white) !important;
  padding: 0.65rem 1.4rem !important;
  border-radius: var(--radius-pill);
  font-size: 0.85rem !important;
  transition: background 0.2s, transform 0.15s !important;
}
.nav-cta:hover { background: var(--navy-light); transform: translateY(-1px); }
.nav-cta::after { display: none !important; }

/* ===== NAV DROPDOWN ===== */
.nav-has-dropdown { position: relative; }
.nav-has-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.nav-has-dropdown > a .nav-chevron {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 1.8px solid currentColor;
  border-bottom: 1.8px solid currentColor;
  transform: rotate(45deg) translate(-2px, -2px);
  opacity: 0.55;
  transition: transform 0.2s, opacity 0.2s;
  margin-left: 0.15rem;
  position: relative;
  top: -2px;
}
.nav-has-dropdown:hover > a .nav-chevron,
.nav-has-dropdown:focus-within > a .nav-chevron {
  transform: rotate(-135deg) translate(-1px, -1px);
  opacity: 1;
  top: 0;
}
.nav-has-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 14px;
  pointer-events: auto;
}
.nav-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 230px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: 0 20px 40px -20px rgba(30,58,95,0.28), 0 4px 10px rgba(30,58,95,0.06);
  padding: 0.5rem 0;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s, transform 0.18s, visibility 0.18s;
  z-index: 50;
}
.nav-has-dropdown:hover > .nav-dropdown,
.nav-has-dropdown:focus-within > .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.nav-dropdown li { padding: 0; margin: 0; }
.nav-dropdown li a {
  display: block;
  padding: 0.6rem 1.2rem;
  font-size: 0.88rem;
  color: var(--text-light);
  white-space: nowrap;
  border: none;
}
.nav-dropdown li a:hover,
.nav-dropdown li a:focus {
  color: var(--navy);
  background: rgba(91,155,213,0.07);
}
.nav-dropdown li a::after { display: none !important; }

/* ===== MOBILE MENU NESTED GROUP ===== */
.mobile-menu details.mm-group {
  border-bottom: 1px solid var(--border);
}
.mobile-menu details.mm-group summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  color: var(--navy);
  font-size: 1.15rem;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
}
.mobile-menu details.mm-group summary::-webkit-details-marker { display: none; }
.mobile-menu details.mm-group summary::marker { display: none; content: ""; }
.mobile-menu details.mm-group summary .mm-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(91,155,213,0.12);
  color: var(--sky);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  line-height: 1;
  transition: transform 0.2s, background 0.2s;
  flex-shrink: 0;
}
.mobile-menu details.mm-group[open] summary .mm-icon {
  transform: rotate(45deg);
  background: rgba(91,155,213,0.18);
}
.mobile-menu details.mm-group a {
  padding-left: 1.1rem;
  font-size: 1rem;
  border-bottom: none;
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
  color: var(--text-light);
}
.mobile-menu details.mm-group a:last-child { padding-bottom: 1rem; }
.mobile-menu details.mm-group a:hover { color: var(--sky); }

.hamburger {
  display: none;
  background: none; border: none; cursor: pointer;
  padding: 0.5rem;
}
.hamburger svg { width: 26px; height: 26px; stroke: var(--navy); }

.mobile-menu {
  display: none;
  position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: var(--white);
  z-index: 99;
  padding: 1.5rem;
  overflow-y: auto;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 1rem 0;
  color: var(--navy);
  text-decoration: none;
  font-size: 1.15rem;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
}
.mobile-menu .btn { margin-top: 1.5rem; text-align: center; justify-content: center; width: 100%; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.55rem;
  padding: 0.9rem 1.9rem;
  border-radius: var(--radius-pill);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.22s ease;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; }

.btn-primary {
  background: var(--navy);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-teal {
  background: var(--teal);
  color: var(--white);
}
.btn-teal:hover {
  background: var(--teal-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--border-strong);
}
.btn-outline:hover {
  border-color: var(--navy);
  background: rgba(30,58,95,0.03);
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
  padding: 0.5rem 0;
  font-weight: 600;
}
.btn-ghost:hover { color: var(--teal); }

.btn-ghost .arrow { transition: transform 0.2s; }
.btn-ghost:hover .arrow { transform: translateX(3px); }

.btn-block {
  display: inline-flex;
  background: var(--navy);
  color: var(--white);
  padding: 1.1rem 2.2rem;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: all 0.22s;
  gap: 0.6rem;
  align-items: center;
}
.btn-block:hover { background: var(--navy-light); transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.btn-block.teal { background: var(--teal); }
.btn-block.teal:hover { background: var(--teal-light); }

/* ===== TAGS / BADGES ===== */
.tag {
  display: inline-block;
  background: var(--sky-pale);
  color: var(--navy);
  padding: 0.4rem 0.95rem;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 500;
}
.tag.sage { background: var(--sage-pale); color: #4A6B52; }
.tag.warm { background: #BEDCCD; color: #3B6E4B; }
.tag.lav { background: #C8D7E3; color: var(--navy); }

/* Audience cards — per-card accent + chips */
.audience-card {
  position: relative;
  padding-top: 2.2rem;
  display: flex;
  flex-direction: column;
}
.audience-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  height: 4px;
  border-top-left-radius: var(--radius-lg);
  border-top-right-radius: var(--radius-lg);
  background: var(--sky-light);
  transition: height 0.25s ease, background 0.25s ease;
  z-index: 1;
}
.audience-card.blue::before { background: var(--sky-light); }
.audience-card.sage::before { background: var(--sage); }
.audience-card.lav::before  { background: #B5C6D4; }
.audience-card.warm::before { background: var(--accent-warm); }

.audience-card:hover::before { height: 6px; }
.audience-card.blue:hover::before { background: var(--teal); }
.audience-card.sage:hover::before { background: #4A6B52; }
.audience-card.lav:hover::before  { background: #8A9DAE; }
.audience-card.warm:hover::before { background: #D1845D; }

.audience-card .card-meta { margin-top: auto; padding-top: 1.1rem; }
.audience-card .card-link { margin-top: 0.6rem; }

/* Card chip list — small scannable tags inside audience cards */
.card-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 1rem;
}
.card-chips .tag {
  font-size: 0.7rem;
  padding: 0.28rem 0.7rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: lowercase;
}

/* Step 03 expandable detail — what actually happens in session 1 */
.step-details {
  margin-top: 1rem;
  border-top: 1px solid var(--border);
  padding-top: 0.9rem;
}
.step-details summary {
  list-style: none;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.step-details summary::-webkit-details-marker { display: none; }
.step-details summary::after {
  content: '+';
  font-size: 1.1rem;
  line-height: 1;
  transition: transform 0.2s ease;
}
.step-details[open] summary::after { content: '–'; }
.step-details summary:hover { color: var(--navy); }
.step-detail-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0.9rem;
  display: grid;
  gap: 0.6rem;
}
.step-detail-list li {
  position: relative;
  padding: 0.55rem 0 0.55rem 1.1rem;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-light);
  border: none;
  background: transparent;
}
.step-detail-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.95rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal);
}
.step-detail-list li strong {
  color: var(--navy);
  font-weight: 600;
}
.step-detail-note {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.6;
  margin: 0.4rem 0 0;
}

/* Credentials strip — training & registrations */
.credentials-strip {
  padding: 3.5rem 0 3.75rem;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.credentials-eyebrow {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2rem;
}
.credentials-editorial {
  max-width: 780px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 1.6rem 2.5rem;
  align-items: baseline;
}
.creds-group {
  display: contents;
}
.creds-label {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--navy);
  margin: 0;
  text-align: right;
  line-height: 1.5;
}
.creds-body {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--text-light);
  margin: 0;
  letter-spacing: 0.005em;
}
@media (max-width: 640px) {
  .credentials-editorial {
    grid-template-columns: 1fr;
    gap: 0.35rem 0;
    max-width: 560px;
  }
  .creds-group + .creds-group {
    margin-top: 1.25rem;
  }
  .creds-label {
    text-align: left;
    font-size: 1rem;
  }
  .creds-body {
    margin-bottom: 0.25rem;
  }
}

/* Pull-quote break between specialties and how it works */
.pull-quote-strip {
  padding: 4.5rem 0;
  background: var(--white);
}
.pull-quote-photo {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.pull-quote-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../../blog-why-do-you-end-therapy.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.85;
  z-index: -2;
}
.pull-quote-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 70% at center, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0.5) 45%, rgba(255,255,255,0.15) 80%, rgba(255,255,255,0) 100%);
  z-index: -1;
  pointer-events: none;
}
.pull-quote-photo .pull-quote p {
  color: var(--navy-deep);
  font-weight: 600;
  text-shadow:
    0 0 6px rgba(255,255,255,1),
    0 0 14px rgba(255,255,255,0.95),
    0 0 24px rgba(255,255,255,0.85),
    0 1px 2px rgba(255,255,255,1);
}
.pull-quote {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.pull-quote .quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5vw, 4.2rem);
  line-height: 0.7;
  color: var(--navy-deep);
  opacity: 1;
  margin-bottom: 0.4rem;
  font-weight: 600;
}
.pull-quote-photo .quote-mark {
  color: var(--navy-deep);
  text-shadow:
    0 0 6px rgba(255,255,255,1),
    0 0 14px rgba(255,255,255,0.95),
    0 0 24px rgba(255,255,255,0.85);
}
.pull-quote {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  padding: 0 1rem;
}
.pull-quote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  font-style: italic;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 1.25rem;
}
.pull-quote-attr {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* "Not the right fit" honest note */
.not-fit-strip {
  padding: 5rem 0;
  background: var(--white);
}
.not-fit-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.not-fit-inner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 3.4vw, 2.4rem);
  color: var(--navy);
  margin-bottom: 1.25rem;
}
.not-fit-inner > p {
  color: var(--text-light);
  line-height: 1.75;
  font-size: 1.05rem;
  margin-bottom: 2rem;
}
.crisis-callout {
  background: #FFF5F3;
  border-left: 4px solid #C95E58;
  border-radius: var(--radius);
  padding: 1.1rem 1.4rem;
  color: var(--navy);
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: left;
}
.crisis-callout strong { color: var(--navy-deep); }
.crisis-callout a {
  color: var(--teal);
  text-decoration: underline;
  font-weight: 600;
}
.crisis-callout a:hover { color: var(--navy); }

/* Inline FAQ accordion */
.faq-inline {
  padding: 5rem 0;
  background: var(--off-white);
}
.faq-accordion {
  max-width: 820px;
  margin: 0 auto;
}
.faq-accordion details {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.9rem;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.faq-accordion details[open] {
  box-shadow: var(--shadow);
  border-color: var(--border-strong);
}
.faq-accordion summary {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 3rem 1.1rem 1.4rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  position: relative;
  line-height: 1.4;
}
.faq-accordion summary::-webkit-details-marker { display: none; }
.faq-accordion summary::after {
  content: '+';
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--teal);
  transition: transform 0.2s ease;
  line-height: 1;
}
.faq-accordion details[open] summary::after {
  content: '–';
  color: var(--navy);
}
.faq-body {
  padding: 0 1.4rem 1.3rem;
  color: var(--text-light);
  line-height: 1.7;
  font-size: 0.98rem;
}
.faq-body p { margin: 0; }
.faq-more {
  text-align: center;
  margin-top: 2rem;
  color: var(--text-light);
  font-size: 0.98rem;
}
.faq-more a {
  color: var(--teal);
  font-weight: 600;
  text-decoration: none;
}
.faq-more a:hover { color: var(--navy); text-decoration: underline; }

/* Fees & Insurance — two-column strip */
.fees-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 960px;
  margin: 0 auto;
}
.fees-col h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1.1rem;
}
.fees-col h3.fees-sub { margin-top: 1.75rem; }
.fees-col p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.fees-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  border-top: 1px solid var(--border);
}
.fees-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
  gap: 1rem;
}
.fees-label {
  color: var(--navy);
  font-weight: 500;
}
.fees-amt {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
}
.fees-note {
  font-size: 0.92rem;
  color: var(--text-muted);
  font-style: italic;
}
@media (max-width: 768px) {
  .fees-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* Areas of clinical experience — editorial */
.areas-wrap {
  max-width: 680px;
  margin: 3.5rem auto 0;
  text-align: left;
}
.areas-editorial {
  margin: 0 0 3rem;
  padding: 0;
}
.areas-editorial dt {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--navy);
  margin-top: 2rem;
  margin-bottom: 0.6rem;
  letter-spacing: 0.005em;
  line-height: 1.2;
}
.areas-editorial dt:first-child { margin-top: 0; }
.areas-editorial dd {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--text-light);
  letter-spacing: 0.005em;
}
.areas-affirming,
.areas-cta-text {
  text-align: center;
}
.areas-affirming {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--text-light);
  margin: 0 0 1.75rem;
  letter-spacing: 0.01em;
}
.areas-cta-text {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}
.areas-cta-text a {
  color: var(--teal);
  text-decoration: none;
  border-bottom: 1px solid var(--teal);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}
.areas-cta-text a:hover {
  color: var(--navy);
  border-bottom-color: var(--navy);
}

/* ===== HERO ===== */
.hero {
  padding-top: calc(var(--nav-h) + 3rem);
  padding-bottom: 5rem;
  background:
    radial-gradient(ellipse at 75% 15%, rgba(91,155,213,0.08) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 85%, rgba(127,166,139,0.07) 0%, transparent 55%),
    var(--white);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-tagline {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1.2rem;
}
.hero h1 { margin-bottom: 1.5rem; }
.hero h1 em { font-style: italic; color: var(--sky); }
.hero-desc {
  font-size: 1.08rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 520px;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-facts {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1.4rem;
  margin: 0 0 2rem;
  padding: 0;
}
.hero-facts li {
  font-size: 0.88rem;
  color: var(--navy);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.hero-facts li span { color: var(--teal); font-size: 0.7rem; }

/* Meet Breana — inline D&I */
.commitment-line {
  margin-top: 1.4rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--border);
  font-size: 0.98rem;
}
.commitment-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.9rem;
}

/* Why Be Free Therapy Group — Breana's personal statement, pull-quote style */
.why-be-free {
  position: relative;
  padding: 3.5rem 0 3rem;
  background-color: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  isolation: isolate;
}
.why-be-free::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../../Lake.png.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.55;
  z-index: -2;
}
.why-be-free::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 75% at center, rgba(255,255,255,0.72) 0%, rgba(255,255,255,0.55) 40%, rgba(255,255,255,0.18) 75%, rgba(255,255,255,0) 100%);
  z-index: -1;
  pointer-events: none;
}
.why-be-free-inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.why-be-free-heading {
  font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  color: var(--navy);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 2.2rem;
  letter-spacing: -0.01em;
  text-shadow: 0 1px 12px rgba(255,255,255,0.85);
  white-space: nowrap;
}
@media (max-width: 520px) {
  .why-be-free-heading { white-space: normal; }
}
.why-be-free-quote {
  position: relative;
  margin: 0;
  padding: 0 1rem;
}
.why-be-free-lead {
  font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-weight: 600;
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  color: var(--navy-deep);
  line-height: 1.45;
  margin: 0 auto 1.6rem;
  max-width: 680px;
  text-shadow:
    0 0 6px rgba(255,255,255,1),
    0 0 14px rgba(255,255,255,0.95),
    0 0 24px rgba(255,255,255,0.85),
    0 1px 2px rgba(255,255,255,1);
}
.why-be-free-kicker {
  font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  color: var(--teal);
  margin: 0 0 1.4rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.015em;
  text-shadow: 0 1px 14px rgba(255,255,255,0.9);
}
.why-be-free-kicker em { font-style: italic; }
.why-be-free-sig {
  font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-size: 1.25rem;
  color: var(--text-light);
  margin: 1rem 0 0;
  letter-spacing: 0.02em;
  display: inline-block;
  padding-top: 0.9rem;
  border-top: 1px solid var(--border-strong);
  min-width: 120px;
}
/* Footer affirming badges */
.footer-affirming {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-right: auto;
}
.footer-affirming .affirming-badge {
  display: inline-flex;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.25);
  line-height: 0;
}
@media (max-width: 720px) {
  .footer-affirming { margin-right: 0; margin-bottom: 0.5rem; }
}

/* Why Be Free — compact stat strip */
.why-strip {
  padding: 2.8rem 0;
  background: rgba(127,166,139,0.08);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.why-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1080px;
  margin: 0 auto;
}
.why-item {
  padding-left: 0.9rem;
  border-left: 2px solid var(--teal);
}
.why-item strong {
  display: block;
  font-size: 0.98rem;
  color: var(--navy);
  margin-bottom: 0.2rem;
  font-weight: 600;
}
.why-item span {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* Photo-quote band */
.photo-quote {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.photo-quote-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.photo-quote-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.photo-quote-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 65% 75% at center, rgba(21,44,74,0.78) 0%, rgba(21,44,74,0.35) 100%);
}
.photo-quote-overlay {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 4.5rem 1.5rem;
  text-align: center;
  color: var(--white);
}
.photo-quote .quote-mark { color: rgba(255,255,255,0.7); text-shadow: 0 2px 14px rgba(0,0,0,0.35); }
.photo-quote .quote-text { color: #FFFFFF; text-shadow: 0 2px 14px rgba(0,0,0,0.4); }
.photo-quote .quote-attr { color: #FFFFFF; text-shadow: 0 1px 8px rgba(0,0,0,0.4); }

/* Sticky mobile CTA */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  left: 1rem; right: 1rem; bottom: 1rem;
  z-index: 90;
  background: var(--navy);
  color: var(--white);
  padding: 0.75rem 1.1rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 28px rgba(30,58,95,0.35);
  text-decoration: none;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.92rem;
  font-weight: 500;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.28s ease, transform 0.28s ease;
  pointer-events: none;
}
.mobile-sticky-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.mobile-sticky-cta .msc-label {
  opacity: 0.85;
  font-size: 0.82rem;
}
.mobile-sticky-cta .msc-btn {
  background: var(--white);
  color: var(--navy);
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.85rem;
}

/* ===== CREDENTIALS ROW ===== */
.credentials-row {
  padding: 2.2rem 0;
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.credentials-eyebrow {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 1.1rem;
}
.credentials-row .credentials-list {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem 2.6rem;
}
.credentials-row .credentials-list li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.15rem;
}
.credentials-row .cred-abbr {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.01em;
  line-height: 1;
  background: transparent;
  padding: 0;
  min-width: 0;
}
.credentials-row .cred-name {
  font-size: 0.74rem;
  color: var(--text-muted);
  font-weight: 500;
  max-width: 180px;
  line-height: 1.35;
}

/* ===== DUAL PATH CHOICE ===== */
.path-choice-section {
  padding: 4.5rem 0 3.5rem;
  background: var(--white);
}
.path-choice {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 920px;
  margin: 0 auto;
}
.path-card {
  position: relative;
  display: block;
  background:
    linear-gradient(135deg, #CFDEE8 0%, #E7EEF3 45%, #F8FAFB 100%);
  border: 1px solid rgba(62,110,142,0.12);
  border-radius: var(--radius-lg);
  padding: 2.2rem 2rem 1.9rem 2.2rem;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(30,58,95,0.04), 0 10px 30px -18px rgba(30,58,95,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.path-card::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--teal), var(--navy));
  transition: width 0.3s ease;
}
.path-card::after {
  content: "";
  position: absolute;
  right: -40%; top: -40%;
  width: 80%; height: 80%;
  background: radial-gradient(circle, rgba(255,255,255,0.6) 0%, transparent 60%);
  pointer-events: none;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}
.path-card:nth-child(2) {
  background:
    linear-gradient(135deg, #BDD4C4 0%, #DDE8DF 45%, #F6FAF6 100%);
  border-color: rgba(127,166,139,0.15);
}
.path-card:nth-child(2)::before {
  background: linear-gradient(to bottom, var(--sage), #4A6B52);
}
.path-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 2px 4px rgba(30,58,95,0.06), 0 22px 44px -20px rgba(30,58,95,0.28);
  border-color: rgba(62,110,142,0.3);
}
.path-card:nth-child(2):hover {
  border-color: rgba(127,166,139,0.35);
}
.path-card:hover::before { width: 8px; }
.path-card:hover::after { opacity: 1; }
.path-card-inner { position: relative; z-index: 1; }
.path-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.55rem;
}
.path-card:nth-child(2) .path-eyebrow { color: var(--sage); }
.path-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.55rem;
  color: var(--navy);
}
.path-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 1.1rem;
}
.path-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
}
.path-link .arrow { transition: transform 0.25s ease; }
.path-card:hover .path-link .arrow { transform: translateX(4px); }

/* ===== CARD-LINK WRAP (cards that are anchors) ===== */
.card-link-wrap {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.card-link-wrap:hover { color: inherit; }
.card-link-cue {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: auto;
  padding-top: 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 0.01em;
}
.card-link-cue .arrow { transition: transform 0.25s ease; }
.card-link-wrap:hover .card-link-cue .arrow { transform: translateX(3px); }
.card-link-wrap:hover .card-link-cue { color: var(--navy); }

/* ===== REGIONAL SEO NOTE ===== */
.regional-note {
  text-align: center;
  font-size: 0.92rem;
  color: var(--text-muted);
  max-width: 760px;
  margin: 2.2rem auto 0;
  line-height: 1.6;
}
.regional-note strong {
  color: var(--navy);
  font-weight: 600;
}

/* ===== HOW IT WORKS ===== */
.how-strip {
  padding: 4.5rem 0;
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.how-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  max-width: 1160px;
  margin: 2.5rem auto 0;
  counter-reset: how-counter;
}
.how-steps li {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.8rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.how-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--teal);
  line-height: 1;
  display: block;
}
.how-body h3 {
  margin-bottom: 0.4rem;
  font-size: 1.25rem;
}
.how-body p {
  font-size: 0.95rem;
  margin: 0;
}

/* ===== AVAILABILITY PILL (in hero) ===== */
.availability-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.4rem 0.9rem 0.4rem 0.75rem;
  background: rgba(127,166,139,0.12);
  border: 1px solid rgba(127,166,139,0.3);
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 500;
  color: #3B6E4B;
  margin-bottom: 1.1rem;
}
.availability-pill .avail-dot {
  width: 8px; height: 8px;
  background: #4A9464;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(74,148,100,0.6);
  animation: availPulse 2.2s ease-in-out infinite;
}
.availability-pill .avail-sep { opacity: 0.4; margin: 0 0.15rem; }
@keyframes availPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(74,148,100,0.55); }
  50%      { box-shadow: 0 0 0 6px rgba(74,148,100,0); }
}
@media (prefers-reduced-motion: reduce) {
  .availability-pill .avail-dot { animation: none; }
}

/* ===== INLINE LINK (subtle text link inside paragraphs) ===== */
.inline-link {
  color: var(--teal);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid rgba(62,110,142,0.25);
  padding-bottom: 1px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.inline-link:hover {
  color: var(--navy);
  border-bottom-color: var(--navy);
}
.inline-link .arrow { transition: transform 0.2s ease; display: inline-block; }
.inline-link:hover .arrow { transform: translateX(2px); }

/* ===== INSURER LIST (within FAQ answer) ===== */
.faq-insurer-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.55rem;
  margin: 0.7rem 0 1rem;
  padding: 0;
}
.faq-insurer-list li {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--navy);
  padding: 0.3rem 0.85rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
}

/* ===== HONEST FIT SECTION ===== */
.fit-section {
  padding: 5rem 0;
  background: var(--white);
}
.fit-card {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
  background: linear-gradient(135deg, #F6F8FA 0%, #FBFCFD 55%, var(--white) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem 3rem 2.6rem;
  text-align: center;
}
.fit-card .eyebrow {
  display: block;
}
.fit-card h2 {
  margin-bottom: 2rem;
}
.fit-ellipsis {
  color: var(--teal);
  margin-left: 0.1rem;
}
.fit-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem 2rem;
  max-width: 620px;
  margin: 0 auto 2rem;
  text-align: left;
}
.fit-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.45;
}
.fit-mark {
  flex-shrink: 0;
  width: 14px; height: 14px;
  margin-top: 0.3rem;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid rgba(30,58,95,0.25);
  position: relative;
}
.fit-mark::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 7px; height: 1.5px;
  background: var(--navy);
  transform: translate(-50%, -50%);
  border-radius: 1px;
}
.fit-foot {
  font-size: 0.92rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
  padding-top: 1.6rem;
  border-top: 1px solid var(--border);
}

/* ===== HERO AMBIENT GLOW ===== */
.hero { overflow: hidden; }
.hero::before {
  content: "";
  position: absolute;
  top: -10%; right: -15%;
  width: 60%; height: 120%;
  background: radial-gradient(ellipse at center, rgba(90,140,168,0.10) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
  animation: heroGlowDrift 14s ease-in-out infinite;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -20%; left: -10%;
  width: 50%; height: 100%;
  background: radial-gradient(ellipse at center, rgba(127,166,139,0.08) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
  animation: heroGlowDrift 18s ease-in-out -6s infinite;
}
.hero .container { position: relative; z-index: 1; }
@keyframes heroGlowDrift {
  0%, 100% { transform: translate(0, 0); opacity: 0.9; }
  50%      { transform: translate(-20px, 15px); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .hero::before, .hero::after { animation: none; }
}

/* ===== HERO POLISH ===== */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.hero { position: relative; }
.hero .hero-content { animation: heroFadeUp 0.9s ease-out both; }
.hero .hero-visual { animation: heroFadeUp 1.05s 0.1s ease-out both; }
.hero .hero-badge { animation: badgeFloat 4.5s ease-in-out infinite; }
@media (prefers-reduced-motion: reduce) {
  .hero .hero-content,
  .hero .hero-visual,
  .hero .hero-badge { animation: none; }
}

.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-image-wrap {
  width: 100%; max-width: 460px;
  aspect-ratio: 4/5;
  border-radius: 180px 180px 32px 32px;
  overflow: hidden;
  background: var(--sky-pale);
  box-shadow: var(--shadow-lg);
}
.hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute;
  bottom: 1.5rem; left: -1rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 0.9rem 1.3rem;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 0.7rem;
}
.hero-badge-text .badge-label { font-size: 0.7rem; color: var(--text-muted); font-weight: 500; display: block; letter-spacing: 0.12em; text-transform: uppercase; }
.hero-badge-text .badge-value { font-size: 0.9rem; color: var(--navy); font-weight: 600; display: block; }

/* page hero (shorter, for sub pages) */
.page-hero {
  padding-top: calc(var(--nav-h) + 3rem);
  padding-bottom: 3.5rem;
  background:
    radial-gradient(ellipse at 75% 15%, rgba(91,155,213,0.08) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 85%, rgba(127,166,139,0.07) 0%, transparent 55%),
    var(--white);
  border-bottom: 1px solid var(--border);
}
.page-hero h1 { margin-bottom: 1rem; text-wrap: balance; }
.page-hero p { font-size: 1.1rem; max-width: 620px; text-wrap: pretty; }

/* ===== TRUST BAR ===== */
.trust-bar {
  padding: 2rem 0;
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-items {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 0.65rem;
  font-size: 0.88rem;
  color: var(--text-light);
  font-weight: 500;
}
.trust-icon {
  width: 38px; height: 38px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: grid; place-items: center;
  font-size: 1.05rem;
  flex-shrink: 0;
}

/* ===== CARDS ===== */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.card .card-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  display: grid; place-items: center;
  margin-bottom: 1.2rem;
  color: var(--navy);
}
.card .card-icon svg { width: 24px; height: 24px; display: block; }
.card-icon.blue { background: var(--sky-pale); }
.card-icon.sage { background: var(--sage-pale); color: #3B6E4B; }
.card-icon.warm { background: #BEDCCD; color: #3B6E4B; }
.card-icon.lav { background: #C8D7E3; }
.card h3 { margin-bottom: 0.5rem; }
.card p { font-size: 0.92rem; color: var(--text-light); line-height: 1.7; }
.card-meta {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.card-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  margin-top: 1.1rem;
  color: var(--navy);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
}
.card-link .arrow { transition: transform 0.2s; }
.card-link:hover .arrow { transform: translateX(3px); }

/* ===== PILLAR CARDS (service flagship grid) ===== */
.pillar-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.4rem 2rem 2rem;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.pillar-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: var(--teal);
  opacity: 0.9;
}
.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 2px 4px rgba(30,58,95,0.04), 0 22px 40px -22px rgba(30,58,95,0.25);
  border-color: transparent;
}
.pillar-blue { background: linear-gradient(160deg, #EEF4F8 0%, #F8FBFC 55%, var(--white) 100%); }
.pillar-blue::before { background: #3E6E8E; }
.pillar-sage { background: linear-gradient(160deg, #EBF2EC 0%, #F6FAF6 55%, var(--white) 100%); }
.pillar-sage::before { background: #6FA17C; }
.pillar-lav { background: linear-gradient(160deg, #EEF0F7 0%, #F8FAFD 55%, var(--white) 100%); }
.pillar-lav::before { background: #8E8FB0; }
.pillar-warm { background: linear-gradient(160deg, #F5EFE7 0%, #FBF7F1 55%, var(--white) 100%); }
.pillar-warm::before { background: #C8956B; }
.pillar-chip {
  align-self: flex-start;
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(30,58,95,0.1);
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 1.4rem;
}
.pillar-icon {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  color: var(--navy);
  margin-bottom: 1rem;
}
.pillar-icon svg { width: 28px; height: 28px; display: block; }
.pillar-sage .pillar-icon { color: #3B6E4B; }
.pillar-warm .pillar-icon { color: #8B5E34; }
.pillar-lav .pillar-icon { color: #4E4F78; }
.pillar-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
  color: var(--navy);
}
.pillar-card p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1.2rem;
}
.pillar-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
}
.pillar-link .arrow { transition: transform 0.2s; }
.pillar-card:hover .pillar-link .arrow { transform: translateX(3px); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ===== ALTERNATING BLOCKS (Wonderwise-style) ===== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.split.reverse .split-text { order: 2; }
.split-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--sky-pale);
  box-shadow: var(--shadow);
}
.split-img img { width: 100%; height: 100%; object-fit: cover; }
.split-text h2 { margin-bottom: 1rem; }
.split-text p { margin-bottom: 1rem; font-size: 0.98rem; line-height: 1.8; }

/* ===== APPROACH / METHOD DARK BLOCK ===== */
.approach {
  background: var(--navy-deep);
  color: var(--white);
}
.approach-inner { text-align: center; max-width: 780px; margin: 0 auto; }
.approach h2 { color: var(--white); margin-bottom: 1rem; }
.approach-desc { color: rgba(255,255,255,0.72); font-size: 1rem; line-height: 1.8; margin-bottom: 3rem; }
.methods-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.methods-grid.methods-grid-3 { grid-template-columns: repeat(6, 1fr); max-width: 900px; margin-left: auto; margin-right: auto; }
.methods-grid.methods-grid-3 > .method { grid-column: span 2; }
.methods-grid.methods-grid-3 > .method:nth-child(4) { grid-column: 2 / span 2; }
.methods-grid.methods-grid-3 > .method:nth-child(5) { grid-column: 4 / span 2; }
.method {
  text-align: center;
  padding: 1.8rem 1rem;
  background: linear-gradient(155deg, rgba(255,255,255,0.09), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.method:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(0,0,0,0.22); }
.method-abbr {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  line-height: 1;
}
.method-name { font-size: 0.85rem; color: rgba(255,255,255,0.85); line-height: 1.4; font-weight: 600; }
.method-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.55;
  margin-top: 0.7rem;
  padding-top: 0.7rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-style: italic;
}

/* Per-method accents — each gradient pulls a brand colour onto the navy */
.method:nth-child(1) {
  background: linear-gradient(155deg, rgba(90,140,168,0.42), rgba(90,140,168,0.08));
  border-color: rgba(166,195,212,0.35);
}
.method:nth-child(1) .method-abbr { color: var(--sky-light); }

.method:nth-child(2) {
  background: linear-gradient(155deg, rgba(127,166,139,0.42), rgba(127,166,139,0.08));
  border-color: rgba(197,220,201,0.35);
}
.method:nth-child(2) .method-abbr { color: var(--sage-light); }

.method:nth-child(3) {
  background: linear-gradient(155deg, rgba(232,168,124,0.38), rgba(232,168,124,0.06));
  border-color: rgba(232,168,124,0.38);
}
.method:nth-child(3) .method-abbr { color: #F2C2A2; }

.method:nth-child(4) {
  background: linear-gradient(155deg, rgba(62,110,142,0.55), rgba(30,58,95,0.1));
  border-color: rgba(90,140,168,0.4);
}
.method:nth-child(4) .method-abbr { color: #B5CEDE; }

.method:hover { border-color: rgba(255,255,255,0.3); }

/* ===== QUOTE ===== */
.quote-block {
  background: var(--warm);
  padding: 4rem 0;
}
.quote-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 0 1.5rem;
}
.quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.5rem;
  color: var(--sky);
  line-height: 1;
  margin-bottom: 0.3rem;
  opacity: 0.5;
}
.quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 2.2vw, 1.65rem);
  font-style: italic;
  color: var(--navy);
  line-height: 1.55;
  margin-bottom: 1.2rem;
}
.quote-attr {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* ===== FAQ ACCORDION ===== */
.faq-category {
  margin-bottom: 3rem;
}
.faq-category h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border);
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.35rem 0;
  background: none; border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--navy);
  cursor: pointer;
  text-align: left;
  gap: 1.5rem;
  line-height: 1.4;
}
.faq-q:hover { color: var(--teal); }
.faq-q svg {
  width: 22px; height: 22px;
  flex-shrink: 0;
  transition: transform 0.3s;
  stroke: var(--text-muted);
}
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-item.open .faq-a { max-height: 1600px; }
.faq-a .breana-verbatim {
  margin: 0.6rem 0 1.1rem;
  padding: 0.1rem 0 0.1rem 1.1rem;
  border-left: 3px solid var(--teal);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.5;
}
.faq-a .breana-verbatim-cite {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
/* ===== FAQ HERO (text + topic card) ===== */
.faq-hero { padding-bottom: 4.5rem; }
.faq-hero-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.faq-hero-text .hero-facts { margin-top: 1.8rem; margin-bottom: 0; }
.faq-toc-card {
  background: transparent;
  border: none;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  padding: 1.4rem 0;
  box-shadow: none;
}
.faq-toc-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0 0 0.6rem 0;
}
.faq-toc-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.faq-toc-card a {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 0.55rem 0;
  color: var(--navy);
  text-decoration: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 500;
  transition: color 0.2s ease, padding 0.2s ease;
}
.faq-toc-card a:hover { color: var(--teal); padding-left: 0.4rem; }
.faq-toc-card a:hover .toc-arrow { transform: translateX(4px); }
.faq-toc-card .toc-title { line-height: 1.25; }
.faq-toc-card .toc-arrow {
  font-size: 1rem;
  color: var(--sage);
  transition: transform 0.2s ease;
}
@media (max-width: 860px) {
  .faq-hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .faq-toc-card { padding: 1.2rem 0; }
}

.faq-toc-section {
  padding: 1.25rem 0;
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
}
.faq-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}
.faq-toc a {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--off-white);
  border: 1px solid var(--border);
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.2s;
}
.faq-toc a:hover {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.faq-a-inner {
  padding: 0 0 1.4rem 0;
  font-size: 0.94rem;
  color: var(--text-light);
  line-height: 1.8;
}
.faq-a-inner p { margin-bottom: 0.7rem; }
.faq-a-inner p:last-child { margin-bottom: 0; }
.faq-a-inner a { color: var(--teal); }

/* ===== CTA BLOCK ===== */
.cta-block {
  background:
    radial-gradient(ellipse at 30% 50%, rgba(91,155,213,0.1) 0%, transparent 55%),
    var(--cream);
}
.cta-card {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3.5rem 2.5rem;
  box-shadow: var(--shadow);
}
.cta-card h2 { margin-bottom: 0.8rem; }
.cta-card p { color: var(--text-light); font-size: 1rem; margin-bottom: 2rem; }
.cta-details {
  display: flex; justify-content: center; gap: 3rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.cta-detail { font-size: 0.8rem; color: var(--text-muted); }
.cta-detail strong { color: var(--navy); display: block; font-size: 1rem; margin-bottom: 0.15rem; }
.cta-phone {
  display: inline-block;
  margin-top: 1.2rem;
  color: var(--text-muted);
  font-size: 0.92rem;
  text-decoration: none;
}
.cta-phone:hover { color: var(--navy); }

/* Inline color-block CTA for in-page placement */
.cta-strip {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-strip h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 0.3rem;
}
.cta-strip p { color: rgba(255,255,255,0.8); font-size: 0.95rem; margin: 0; }
.cta-strip .btn {
  background: var(--white);
  color: var(--navy);
}
.cta-strip .btn:hover { background: var(--sky-pale); }

/* ===== RESOURCES ===== */
.resource-tabs {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.resource-tab {
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--navy);
  padding: 0.7rem 1.6rem;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.22s;
}
.resource-tab:hover { border-color: var(--navy); }
.resource-tab.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.resource-panel { display: none; }
.resource-panel.active { display: block; }
.resource-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-decoration: none;
  transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
}
.resource-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.resource-card-type {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.6rem;
}
.resource-card h3 { font-size: 1.1rem; margin-bottom: 0.4rem; color: var(--navy); }
.resource-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.6; }
.resource-card-link {
  display: inline-flex; align-items: center; gap: 0.3rem;
  margin-top: 0.8rem;
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 600;
}

/* ===== BLOG ===== */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.blog-card {
  display: block;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.25s, box-shadow 0.25s;
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.blog-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--sky-pale);
}
.blog-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-body { padding: 1.5rem 0.2rem; }
.blog-card-date {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 0.6rem;
}
.blog-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
  line-height: 1.3;
  color: var(--navy);
}
.blog-card-excerpt {
  font-size: 0.92rem;
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.6;
}
.blog-card-more {
  display: inline-flex; align-items: center; gap: 0.35rem;
  color: var(--teal);
  font-size: 0.88rem;
  font-weight: 600;
}

/* Blog post */
.post-hero {
  padding-top: calc(var(--nav-h) + 3rem);
  padding-bottom: 2.5rem;
  text-align: center;
}
.post-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}
.post-hero h1 { max-width: 820px; margin: 0 auto 1rem; }
.post-feature-img {
  max-width: 1000px;
  margin: 0 auto 3rem;
  padding: 0 1.5rem;
}
.post-feature-img img {
  width: 100%;
  border-radius: var(--radius-lg);
  aspect-ratio: 16/9;
  object-fit: cover;
}
.post-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1.5rem 4rem;
}
.post-body p { font-size: 1.05rem; line-height: 1.85; color: var(--text); margin-bottom: 1.4rem; }
.post-body h2 { font-size: 1.9rem; margin: 2.5rem 0 1rem; }
.post-body h3 { font-size: 1.4rem; margin: 2rem 0 0.8rem; }
.post-body ul, .post-body ol { margin: 0 0 1.5rem 1.4rem; color: var(--text); }
.post-body li { margin-bottom: 0.5rem; line-height: 1.8; }
.post-body a { color: var(--teal); }
.post-body .cta-strip h3 { color: var(--white); margin: 0 0 0.3rem; }
.post-body .cta-strip p { color: rgba(255,255,255,0.85); font-size: 0.95rem; margin: 0; }
.post-body .cta-strip a.btn { color: var(--navy); }

/* ===== CONTACT FORM ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.form-row { margin-bottom: 1.2rem; }
.form-row label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
  letter-spacing: 0.04em;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(91,155,213,0.15);
}
.form-row textarea { min-height: 140px; resize: vertical; }
.form-row small { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.3rem; display: block; }

.contact-info-card {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--teal) 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.contact-info-card h3 { color: var(--white); font-size: 1.5rem; margin-bottom: 0.6rem; }
.contact-info-card p { color: rgba(255,255,255,0.75); margin-bottom: 1.8rem; }
.contact-info-list { list-style: none; }
.contact-info-list li {
  display: flex;
  gap: 0.9rem;
  padding: 0.9rem 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 0.92rem;
}
.contact-info-list li:first-child { border-top: none; }
.contact-info-list .ci-icon {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  display: grid; place-items: center;
  font-size: 1rem;
  flex-shrink: 0;
  color: rgba(255,255,255,0.85);
}
.contact-info-list .ci-icon svg { display: block; }
.contact-info-list .ci-label { color: rgba(255,255,255,0.55); font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; display: block; margin-bottom: 0.15rem; }
.contact-info-list a { color: var(--white); text-decoration: none; font-weight: 500; }
.contact-info-list a:hover { color: var(--sky-light); }
.contact-info-list .ci-static { color: var(--white); font-weight: 500; display: block; }

.psych-today-cta {
  display: block;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.8rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--sage-pale) 0%, var(--sage-light) 100%);
  color: var(--navy);
  text-decoration: none;
  box-shadow: 0 6px 20px -8px rgba(0,0,0,0.35);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.psych-today-cta:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--sage-light) 0%, var(--sage-pale) 100%);
  box-shadow: 0 12px 28px -10px rgba(0,0,0,0.4);
}
.psych-today-cta-copy {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  line-height: 1.3;
}
.psych-today-cta-label {
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.psych-today-cta-sub {
  font-size: 0.88rem;
  color: rgba(30,58,95,0.78);
}
.psych-today-cta-sub .arrow {
  display: inline-block;
  margin-left: 0.35rem;
  transition: transform 0.2s ease;
}
.psych-today-cta:hover .psych-today-cta-sub .arrow { transform: translateX(4px); }

/* ===== SPLIT HERO (2-col with portrait image) ===== */
.contact-hero { padding-bottom: 4.5rem; }
.services-hero { padding-bottom: 4.5rem; }
.contact-hero-grid,
.split-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.contact-hero-text .hero-facts,
.split-hero-text .hero-facts { margin-top: 1.8rem; margin-bottom: 0; }
.split-hero-text .hero-btns { margin-top: 2rem; }
.contact-hero-visual,
.split-hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.contact-hero-image-wrap,
.split-hero-image-wrap {
  position: relative;
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(30,58,95,0.28), 0 2px 6px rgba(30,58,95,0.06);
  background: var(--off-white);
}
.contact-hero-image-wrap::before,
.split-hero-image-wrap::before {
  content: "";
  display: block;
  padding-top: 125%;
}
.contact-hero-image-wrap img,
.split-hero-image-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== RESOURCES HERO (text + landscape image) ===== */
.resources-hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 3rem;
  align-items: center;
}
.resources-hero-text { max-width: 620px; }
.resources-hero-image-wrap {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin-left: auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(30,58,95,0.28), 0 2px 6px rgba(30,58,95,0.06);
  background: var(--off-white);
}
.resources-hero-image-wrap::before {
  content: "";
  display: block;
  padding-top: 58%;
}
.resources-hero-image-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 860px) {
  .resources-hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  .resources-hero-image-wrap { margin: 0 auto; max-width: 480px; }
}

/* ===== ONTARIO CITIES LIST ===== */
.cities-section { padding-top: 4rem; padding-bottom: 4rem; }
.cities-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 880px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem 0.7rem;
}
.cities-list li {
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.cities-list li:hover { border-color: var(--sky); color: var(--sky); background: rgba(91,155,213,0.05); }

/* ===== CONTACT FAQ (native details) ===== */
.contact-faq .faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md, 10px);
  padding: 1.1rem 1.4rem;
  margin-bottom: 0.8rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-faq .faq-item[open] {
  border-color: var(--sky);
  box-shadow: 0 6px 20px -14px rgba(30,58,95,0.2);
}
.contact-faq summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--navy);
  font-size: 1rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  outline: none;
}
.contact-faq summary::-webkit-details-marker { display: none; }
.contact-faq summary::marker { display: none; content: ""; }
.contact-faq summary .faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(91,155,213,0.12);
  color: var(--sky);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.2s, background 0.2s;
}
.contact-faq .faq-item[open] summary .faq-icon {
  transform: rotate(45deg);
  background: rgba(91,155,213,0.18);
}
.contact-faq .faq-item p {
  margin: 0.9rem 0 0;
  color: var(--text-light);
  line-height: 1.7;
}

/* ===== D&I BLOCK ===== */
.di-block {
  background:
    linear-gradient(135deg, rgba(127,166,139,0.08) 0%, rgba(91,155,213,0.08) 100%),
    var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.di-icons {
  display: flex; justify-content: center; gap: 0.6rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.di-icons .tag { background: var(--white); border: 1px solid var(--border); }

/* ===== SERVICE PILLAR PAGE ===== */
.pillar-hero {
  padding-top: calc(var(--nav-h) + 3.5rem);
  padding-bottom: 3rem;
  background:
    radial-gradient(ellipse at 75% 15%, rgba(91,155,213,0.08) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 85%, rgba(127,166,139,0.07) 0%, transparent 55%),
    var(--white);
  border-bottom: 1px solid var(--border);
}
.pillar-hero .breadcrumb {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.pillar-hero .breadcrumb a { color: var(--text-muted); text-decoration: none; }
.pillar-hero .breadcrumb a:hover { color: var(--navy); }
.pillar-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.checklist { list-style: none; padding: 0; }
.checklist li {
  position: relative;
  padding: 0.6rem 0 0.6rem 2rem;
  font-size: 0.96rem;
  color: var(--text);
}
.checklist li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.95rem;
  width: 20px; height: 20px;
  background: var(--sage-pale) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%237FA68B' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='4,10 8,14 16,6'/></svg>") center/14px no-repeat;
  border-radius: 50%;
}

/* ===== FOOTER ===== */
footer.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.62);
  padding: 4rem 0 2rem;
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand a.footer-logo {
  display: flex; align-items: center; gap: 0.6rem;
  color: var(--white);
  text-decoration: none;
  margin-bottom: 1rem;
}
.footer-brand img { height: 40px; width: auto; filter: brightness(0) invert(1); opacity: 0.9; }
.footer-brand .footer-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
}
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.55); max-width: 320px; margin-top: 0.6rem; line-height: 1.7; }
.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
}
.footer-col a, .footer-col span {
  display: block;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.9rem;
  margin-bottom: 0.55rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}
.footer-social { display: flex; gap: 0.8rem; }
.footer-social a {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  color: rgba(255,255,255,0.65);
  transition: all 0.2s;
}
.footer-social a:hover { color: var(--white); border-color: rgba(255,255,255,0.4); }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 2.5rem; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-btns { justify-content: center; }
  .hero-facts { justify-content: center; }
  .hero-image-wrap { max-width: 340px; margin: 0 auto; }
  .hero-badge { left: 50%; transform: translateX(-50%); bottom: 1rem; }

  .contact-hero-grid,
  .split-hero-grid { grid-template-columns: 1fr; text-align: center; gap: 2.5rem; }
  .contact-hero-text .hero-facts,
  .split-hero-text .hero-facts { justify-content: center; }
  .split-hero-text .hero-btns { justify-content: center; }
  .contact-hero-image-wrap,
  .split-hero-image-wrap { max-width: 320px; margin: 0 auto; }

  .split { grid-template-columns: 1fr; gap: 2rem; }
  .split.reverse .split-text { order: 0; }

  .pillar-grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .methods-grid { grid-template-columns: repeat(2, 1fr); }
  .why-strip-inner { grid-template-columns: repeat(2, 1fr); gap: 1.4rem 1.6rem; }

  .credentials-list { gap: 1.4rem 2rem; }
  .cred-name { max-width: 160px; }
  .how-steps { grid-template-columns: repeat(2, 1fr); max-width: 680px; gap: 1.2rem; }
  .fit-card { padding: 2.4rem 2rem 2.2rem; }
  .fit-list { grid-template-columns: 1fr; gap: 0.75rem; max-width: 420px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 720px) {
  section { padding: 3.5rem 0; }
  .nav-links { display: none; }
  .hamburger { display: block; }

  .blog-grid { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }

  .footer-grid { grid-template-columns: 1fr; }
  .cta-card { padding: 2.5rem 1.5rem; }
  .cta-details { gap: 1.5rem; }
  .contact-form, .contact-info-card { padding: 1.8rem; }

  .mobile-sticky-cta { display: flex; }
  .site-footer { padding-bottom: 6rem; }  /* room for sticky CTA */

  .path-choice { grid-template-columns: 1fr; gap: 1rem; }
  .path-card { padding: 1.6rem 1.5rem 1.4rem; }
  .credentials-list { gap: 1.2rem 1.6rem; }
  .credentials-row .cred-abbr { font-size: 1.2rem; }
  .credentials-row .cred-name { font-size: 0.7rem; max-width: 140px; }
  .how-strip { padding: 3.5rem 0; }
  .how-steps { grid-template-columns: 1fr; max-width: 560px; }
  .how-steps li { padding: 1.4rem 1.3rem; }
  .regional-note { font-size: 0.88rem; margin-top: 1.6rem; }

  .fit-section { padding: 3.5rem 0; }
  .availability-pill { font-size: 0.78rem; }
  .why-be-free { padding: 3.5rem 0 3rem; }
}
@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .methods-grid { grid-template-columns: 1fr 1fr; }
  .cta-strip { padding: 1.8rem; flex-direction: column; align-items: flex-start; }
}
