/* ============================================================
   Discover Counseling — Main Stylesheet
   discovercounseling.com
   
   Structure:
   1.  Fonts & Reset
   2.  Design Tokens (CSS Variables)
   3.  Base Typography
   4.  Layout Utilities
   5.  Buttons
   6.  Top Bar
   7.  Header & Navigation
   8.  Breadcrumb
   9.  Page Hero (interior pages)
   10. Footer
   11. Trust Bar
   12. Section Utilities
   13. Card Components
   14. Form Elements
   15. Badges & Tags
   16. Dividers & Rules
   17. Animations
   18. Responsive / Mobile
   ============================================================ */


/* ============================================================
   1. FONTS & RESET
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500;1,600&family=Poppins:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&display=swap');

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

html {
  scroll-behavior: smooth;
}


/* ============================================================
   2. DESIGN TOKENS
   ============================================================ */

:root {
  /* Brand colors */
  --blue:        #102092;
  --blue-hover:  #0d1a78;
  --blue-mid:    #1a2fa8;
  --blue-tint:   #eef0fb;
  --blue-tint2:  #f5f6fd;

  --green:       #2E7D4F;
  --green-hover: #256040;
  --green-tint:  #f0f8f4;
  --green-tint2: #f7fbf9;

  --sky:         #CBE0E7;
  --sky-tint:    #eef6f9;
  --sky-tint2:   #f6fbfd;

  --sand:        #E5E1DC;
  --sand-tint:   #f7f5f2;
  --sand-tint2:  #faf9f7;

  --charcoal:    #14150E; /* Shrink Think podcast only */

  /* Text colors */
  --ink:         #1e2235;
  --ink-mid:     #4a5068;
  --ink-soft:    #7a809a;
  --ink-xsoft:   #aab0c8;

  /* UI colors */
  --white:       #ffffff;
  --border:      #e8eaf2;
  --border-soft: #f0f2f8;
  --error:       #c0392b;
  --error-tint:  #fdf2f1;
  --gold:        #c49a3c;
  --amber:       #b8830a;
  --amber-tint:  #fef3da;

  /* Typography */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing scale */
  --space-xs:   8px;
  --space-sm:   16px;
  --space-md:   24px;
  --space-lg:   40px;
  --space-xl:   64px;
  --space-2xl:  100px;

  /* Layout */
  --max-width:  1080px;
  --page-pad:   40px;
  --radius:     3px;
  --radius-md:  6px;
}


/* ============================================================
   3. BASE TYPOGRAPHY
   ============================================================ */

body {
  font-family: var(--font-sans);
  font-size: 14.5px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--ink-mid);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.2;
  color: var(--ink);
}

h1 { font-size: clamp(36px, 5vw, 52px); }
h2 { font-size: clamp(26px, 4vw, 38px); }
h3 { font-size: clamp(18px, 3vw, 24px); }
h4 { font-size: 18px; }
h5 { font-size: 16px; }
h6 { font-size: 14px; font-family: var(--font-sans); font-weight: 600; }

p {
  font-size: 14.5px;
  line-height: 1.85;
  color: var(--ink-mid);
  font-weight: 300;
}

p + p { margin-top: 12px; }

a {
  color: var(--blue);
  text-decoration: none;
  transition: color 0.15s ease;
}

a:hover { color: var(--blue-hover); }

strong { font-weight: 600; color: var(--ink); }
em { font-style: italic; }

ul, ol {
  padding-left: 20px;
  color: var(--ink-mid);
  font-weight: 300;
}

li { margin-bottom: 6px; line-height: 1.7; }

/* Screen reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


/* ============================================================
   4. LAYOUT UTILITIES
   ============================================================ */

.w {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--page-pad);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-sm);
}

.section { padding: var(--space-2xl) 0; }
.section-sm { padding: 72px 0; }
.section-xs { padding: var(--space-xl) 0; }

.bg-white      { background: var(--white); }
.bg-sky        { background: var(--sky-tint2); border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); }
.bg-green      { background: var(--green-tint); border-top: 1px solid #d8ece1; border-bottom: 1px solid #d8ece1; }
.bg-sand       { background: var(--sand-tint2); border-top: 1px solid var(--sand); border-bottom: 1px solid var(--sand); }
.bg-blue       { background: var(--blue); }
.bg-charcoal   { background: var(--charcoal); }

.text-center { text-align: center; }
.text-right  { text-align: right; }

.flex         { display: flex; }
.flex-center  { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-start   { display: flex; align-items: flex-start; }
.gap-xs  { gap: var(--space-xs); }
.gap-sm  { gap: var(--space-sm); }
.gap-md  { gap: var(--space-md); }
.gap-lg  { gap: var(--space-lg); }

.mt-xs { margin-top: var(--space-xs); }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }

.mb-xs { margin-bottom: var(--space-xs); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }


/* ============================================================
   5. BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-family: var(--font-sans);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1;
  padding: 12px 24px;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.18s ease;
  white-space: nowrap;
}

.btn-lg {
  padding: 14px 30px;
  font-size: 13.5px;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 11.5px;
}

/* Primary — blue fill */
.btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-primary:hover {
  background: var(--blue-hover);
  border-color: var(--blue-hover);
  color: var(--white);
}

/* Outline — blue border */
.btn-outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-outline:hover {
  background: var(--blue);
  color: var(--white);
}

/* White fill — for dark backgrounds */
.btn-white {
  background: var(--white);
  color: var(--blue);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--sky-tint);
  color: var(--blue);
}

/* White outline — for dark backgrounds */
.btn-white-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}
.btn-white-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

/* Green fill */
.btn-green {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-green:hover {
  background: var(--green-hover);
  border-color: var(--green-hover);
  color: var(--white);
}

/* Full-width modifier */
.btn-full {
  width: 100%;
  justify-content: center;
}


/* ============================================================
   6. TOP BAR
   ============================================================ */

.topbar {
  background: var(--blue);
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 8px 0;
  font-size: 11px;
  font-weight: 400;
  color: rgba(255,255,255,.65);
}

.topbar .w {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.topbar a {
  color: rgba(255,255,255,.65);
  transition: color 0.15s;
}

.topbar a:hover {
  color: #fff;
}

.topbar-sep {
  color: rgba(255,255,255,.2);
}


/* ============================================================
   7. HEADER & NAVIGATION
   ============================================================ */

.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border-soft);
  position: sticky;
  top: 0;
  z-index: 300;
  box-shadow: 0 1px 16px rgba(16, 32, 146, 0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 16px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-mark {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
}

.logo-name {
  font-family: var(--font-serif);
  font-size: 21px;
  font-weight: 600;
  color: var(--blue);
  display: block;
  line-height: 1;
}

.logo-tag {
  font-family: var(--font-sans);
  font-size: 9px;
  color: var(--ink-xsoft);
  letter-spacing: 0.07em;
  display: block;
  margin-top: 3px;
  font-style: italic;
  font-weight: 300;
}

/* Navigation */
.site-nav {
  display: flex;
  align-items: center;
}

.site-nav a {
  font-size: 12.5px;
  font-weight: 400;
  color: var(--ink-soft);
  padding: 0 14px;
  height: 72px;
  display: inline-flex;
  align-items: center;
  border-bottom: 2px solid transparent;
  transition: all 0.15s;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--blue);
  border-bottom-color: var(--blue);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.header-phone {
  font-size: 12px;
  color: var(--ink-xsoft);
  font-weight: 400;
}

/* Mobile menu toggle — hidden on desktop */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--ink-mid);
}

.mobile-menu-toggle svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}


/* ============================================================
   8. BREADCRUMB
   ============================================================ */

.breadcrumb {
  background: var(--white);
  padding: 14px 0;
  border-bottom: 1px solid var(--border-soft);
}

.breadcrumb .w {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--ink-xsoft);
  font-weight: 300;
}

.breadcrumb a {
  color: var(--blue);
  font-weight: 400;
}

.breadcrumb-sep {
  color: var(--border);
}

.breadcrumb-current {
  color: var(--ink-soft);
}


/* ============================================================
   9. PAGE HERO (interior pages)
   ============================================================ */

.page-hero {
  background: var(--sky-tint2);
  padding: 64px 0;
  border-bottom: 1px solid var(--border-soft);
}

.page-hero-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-xsoft);
}

.page-hero-kicker::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--sky);
}

.page-hero h1 {
  margin-bottom: 16px;
}

.page-hero-sub {
  font-size: 15.5px;
  color: var(--ink-soft);
  line-height: 1.85;
  max-width: 580px;
  font-weight: 300;
}


/* ============================================================
   10. FOOTER
   ============================================================ */

.site-footer {
  background: #0c1230;
  padding: 72px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 56px;
}

.footer-brand-name {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 600;
  color: var(--white);
  display: block;
}

.footer-brand-tag {
  font-family: var(--font-sans);
  font-size: 9px;
  color: rgba(203, 224, 231, 0.3);
  letter-spacing: 0.07em;
  font-style: italic;
  font-weight: 300;
  display: block;
  margin-top: 3px;
}

.footer-brand-desc {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.32);
  line-height: 1.9;
  margin-top: 17px;
  max-width: 210px;
  font-weight: 300;
}

.footer-contact {
  margin-top: 18px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.32);
  line-height: 2;
  font-weight: 300;
}

.footer-contact a {
  color: rgba(203, 224, 231, 0.55);
  display: block;
  transition: color 0.15s;
}

.footer-contact a:hover { color: var(--white); }

.footer-faith {
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.16);
  margin-top: 14px;
  font-style: italic;
  line-height: 1.65;
  font-weight: 300;
}

.footer-col h5 {
  font-family: var(--font-sans);
  font-size: 9.5px;
  font-weight: 700;
  color: var(--sky);
  letter-spacing: 0.11em;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.footer-col a {
  display: block;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.38);
  margin-bottom: 9px;
  transition: color 0.15s;
  font-weight: 300;
  text-decoration: none;
}

.footer-col a:hover { color: rgba(255, 255, 255, 0.85); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom-left {
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.18);
  font-weight: 300;
}

.footer-tagline {
  font-family: var(--font-serif);
  font-size: 12px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.14);
}


/* ============================================================
   11. TRUST BAR
   ============================================================ */

.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border-soft);
  padding: 18px 0;
}

.trust-bar .w {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 300;
  color: var(--ink-mid);
}

.trust-item strong {
  font-weight: 600;
  color: var(--ink);
  font-size: 12.5px;
}

.trust-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

.trust-sep {
  color: var(--border);
  font-size: 18px;
  font-weight: 200;
}


/* ============================================================
   12. SECTION UTILITIES
   ============================================================ */

/* Eyebrow label above headings */
.eyebrow {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
  display: block;
  margin-bottom: 10px;
}

.eyebrow-blue { color: var(--blue); }
.eyebrow-sky  { color: var(--sky); }

/* Horizontal rule accent */
.rule {
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--sky);
  border: none;
  margin: 14px 0 20px;
}

.rule-center { margin: 14px auto 20px; }

/* Section header block */
.section-head {
  margin-bottom: 52px;
}

.section-head-center {
  text-align: center;
  margin-bottom: 52px;
}

.section-head-center .rule {
  margin: 14px auto 0;
}

.section-head h2,
.section-head-center h2 {
  margin-top: 8px;
}

/* Page divider */
.page-divider {
  border: none;
  border-top: 1px solid var(--border-soft);
  margin: 0;
}


/* ============================================================
   13. CARD COMPONENTS
   ============================================================ */

/* ── Therapist card ─────────────────────────────────────────── */
.therapist-card {
  background: var(--white);
  border: 1px solid #d8ece1;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.18s, box-shadow 0.18s;
  text-decoration: none;
}

.therapist-card:hover {
  border-color: var(--green);
  box-shadow: 0 2px 16px rgba(46, 125, 79, 0.07);
}

.therapist-card-photo {
  width: 100%;
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(160deg, var(--blue-tint), var(--sky-tint));
  display: flex;
  align-items: center;
  justify-content: center;
}

.therapist-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.therapist-card-initials {
  font-family: var(--font-serif);
  font-size: 28px;
  font-style: italic;
  color: var(--blue);
  opacity: 0.3;
}

.therapist-card-body {
  padding: 18px 16px 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.therapist-card-name {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  display: block;
  line-height: 1.15;
}

.therapist-card-cred {
  font-size: 9.5px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  display: block;
  margin-top: 5px;
  min-height: 16px;
}

.therapist-card-divider {
  display: block;
  width: 20px;
  height: 1px;
  background: var(--border-soft);
  margin: 11px 0;
}

.therapist-card-spec {
  font-size: 12px;
  color: var(--ink-soft);
  line-height: 1.6;
  font-weight: 300;
  flex: 1;
}

.therapist-card-badges {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.therapist-card-footer {
  padding: 12px 16px;
  border-top: 1px solid var(--border-soft);
  margin-top: 16px;
  font-size: 12px;
  font-weight: 500;
  color: var(--blue);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-sans);
  flex-shrink: 0;
}

.therapist-card-footer::after {
  content: '→';
  opacity: 0.35;
  font-weight: 300;
}

/* CTA card variant */
.therapist-cta-card {
  background: var(--blue);
  border-color: var(--blue);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  min-height: 340px;
}

.therapist-cta-card:hover {
  border-color: var(--blue);
  box-shadow: none;
}

.therapist-cta-card h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.2;
}

.therapist-cta-card p {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 22px;
  font-weight: 300;
}

/* ── Review card ─────────────────────────────────────────────── */
.review-card {
  background: var(--sand-tint);
  border: 1px solid var(--sand);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
}

.review-stars {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.review-text {
  font-family: var(--font-serif);
  font-size: 16px;
  font-style: italic;
  color: var(--ink);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 20px;
}

.review-author {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: block;
  flex-shrink: 0;
}

.review-source {
  font-size: 10.5px;
  color: var(--ink-xsoft);
  margin-top: 3px;
  font-weight: 300;
  display: block;
}

/* ── Who We Help card ────────────────────────────────────────── */
.who-card {
  background: var(--white);
  padding: 34px 28px;
  cursor: pointer;
  transition: background 0.18s;
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.who-card:hover {
  background: var(--blue-tint2);
}

.who-card-num {
  font-family: var(--font-serif);
  font-size: 12px;
  font-style: italic;
  color: var(--sky);
  display: block;
  margin-bottom: 12px;
  line-height: 1;
}

.who-card h3 {
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 9px;
  line-height: 1.3;
}

.who-card p {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.7;
  font-weight: 300;
  flex: 1;
}

.who-card-link {
  display: block;
  margin-top: 18px;
  font-size: 12px;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 0.01em;
  text-decoration: none;
}

/* ── Service cell ────────────────────────────────────────────── */
.service-cell {
  background: var(--white);
  padding: 26px 22px;
  cursor: pointer;
  transition: background 0.15s;
  position: relative;
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.service-cell:hover {
  background: var(--blue-tint2);
}

.service-cell-arrow {
  position: absolute;
  top: 24px;
  right: 20px;
  color: var(--sky);
  font-size: 13px;
  font-weight: 300;
}

.service-cell h3 {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
  padding-right: 20px;
  line-height: 1.3;
}

.service-cell p {
  font-size: 12px;
  color: var(--ink-soft);
  line-height: 1.6;
  font-weight: 300;
  flex: 1;
}

/* ── Grid wrapper (1px gap borders) ─────────────────────────── */
.grid-gap-border {
  gap: 1px;
  background: var(--border-soft);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  overflow: hidden;
}

/* ── Process step ────────────────────────────────────────────── */
.process-step {
  text-align: center;
  padding: 0 8px;
}

.process-step-num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--border);
  color: var(--blue);
  font-family: var(--font-serif);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  position: relative;
  z-index: 1;
}

.process-step h3 {
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 9px;
}

.process-step p {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.75;
  font-weight: 300;
}

/* ── Sidebar card ────────────────────────────────────────────── */
.sidebar-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 20px;
}

.sidebar-card-head {
  background: var(--sand-tint2);
  padding: 12px 18px;
  border-bottom: 1px solid var(--sand);
}

.sidebar-card-head-label {
  font-family: var(--font-sans);
  font-size: 9.5px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.sidebar-card-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 18px;
  border-bottom: 1px solid var(--border-soft);
}

.sidebar-card-row:last-child {
  border-bottom: none;
}

.sidebar-card-label {
  font-size: 10.5px;
  font-weight: 400;
  color: var(--ink-xsoft);
  flex-shrink: 0;
  padding-top: 1px;
  line-height: 1.4;
}

.sidebar-card-value {
  font-size: 12px;
  font-weight: 500;
  color: var(--ink);
  text-align: right;
  line-height: 1.5;
}

.sidebar-card-value-green { color: var(--green); }
.sidebar-card-value-note {
  font-size: 10.5px;
  color: var(--ink-xsoft);
  font-weight: 300;
  display: block;
  text-align: right;
  margin-top: 2px;
}

/* Sidebar CTA */
.sidebar-cta {
  background: var(--blue);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  margin-bottom: 20px;
}

.sidebar-cta h4 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  font-style: italic;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.25;
}

.sidebar-cta p {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 18px;
  font-weight: 300;
  line-height: 1.65;
}


/* ============================================================
   14. FORM ELEMENTS
   ============================================================ */

.form-section-label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-soft);
}

.form-group {
  margin-bottom: 22px;
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 22px;
}

.form-label {
  font-family: var(--font-sans);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--ink);
  display: block;
  margin-bottom: 7px;
}

.form-label .req { color: var(--blue); margin-left: 2px; font-weight: 400; }
.form-label .opt { color: var(--ink-xsoft); font-weight: 300; font-size: 10.5px; margin-left: 4px; font-style: italic; }

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 300;
  color: var(--ink);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 11px 14px;
  outline: none;
  transition: border-color 0.15s;
  -webkit-appearance: none;
  appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--ink-xsoft);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--blue);
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23aab0c8' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: pointer;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.65;
}

.form-hint {
  font-size: 11px;
  color: var(--ink-xsoft);
  margin-top: 6px;
  font-weight: 300;
  line-height: 1.5;
}

.form-divider {
  border: none;
  border-top: 1px solid var(--border-soft);
  margin: 28px 0;
}

/* Format toggle cards */
.format-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.format-option { position: relative; }
.format-option input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }

.format-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 14px 10px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.15s;
  background: var(--white);
  text-align: center;
}

.format-option input:checked + .format-card {
  border-color: var(--blue);
  background: var(--blue-tint2);
}

.format-card:hover { border-color: var(--blue); }

.format-card svg {
  width: 18px;
  height: 18px;
  stroke: var(--ink-xsoft);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  transition: stroke 0.15s;
}

.format-option input:checked + .format-card svg { stroke: var(--blue); }
.format-card-label { font-size: 11.5px; font-weight: 500; color: var(--ink); line-height: 1.2; }
.format-card-sub   { font-size: 10px; color: var(--ink-xsoft); font-weight: 300; }

/* Clinician selector cards */
.clinician-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 8px;
}

.clinician-option { position: relative; }
.clinician-option input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }

.clinician-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.15s;
  background: var(--white);
}

.clinician-option input:checked + .clinician-card {
  border-color: var(--blue);
  background: var(--blue-tint2);
}

.clinician-card:hover { border-color: var(--blue); }

.clinician-initials {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--blue-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-serif);
  font-size: 12px;
  font-style: italic;
  color: var(--blue);
  font-weight: 600;
}

.clinician-info { flex: 1; min-width: 0; }
.clinician-name { font-size: 12px; font-weight: 600; color: var(--ink); display: block; line-height: 1.2; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.clinician-role { font-size: 10px; color: var(--ink-xsoft); font-weight: 300; display: block; margin-top: 1px; }

.clinician-status-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; margin-top: 1px; }
.status-open   { background: var(--green); }
.status-wait   { background: var(--amber); }
.status-closed { background: var(--ink-xsoft); }

/* Any counselor option */
.clinician-any { grid-column: 1 / -1; }
.clinician-any .clinician-card {
  justify-content: center;
  background: var(--sand-tint2);
  border-color: var(--sand);
}
.clinician-any input:checked + .clinician-card {
  border-color: var(--blue);
  background: var(--blue-tint2);
}
.clinician-any-text { font-size: 12.5px; font-weight: 500; color: var(--ink); }

/* Hear-about-us checkboxes */
.hear-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.hear-option { position: relative; }
.hear-option input[type="checkbox"] { position: absolute; opacity: 0; width: 0; height: 0; }

.hear-card {
  display: block;
  padding: 9px 12px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.15s;
  background: var(--white);
  font-size: 11.5px;
  font-weight: 400;
  color: var(--ink-mid);
  text-align: center;
}

.hear-option input:checked + .hear-card {
  border-color: var(--green);
  background: var(--green-tint);
  color: var(--green);
  font-weight: 500;
}

.hear-card:hover { border-color: var(--green); }

/* Consent block */
.consent-block {
  background: var(--sand-tint2);
  border: 1px solid var(--sand);
  border-radius: var(--radius);
  padding: 16px 18px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 24px;
}

.consent-block input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--blue);
  cursor: pointer;
  margin: 0;
  flex-shrink: 0;
  margin-top: 2px;
}

.consent-text {
  font-size: 12px;
  color: var(--ink-soft);
  line-height: 1.65;
  font-weight: 300;
}

/* Submit button */
.form-submit {
  width: 100%;
  padding: 15px;
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 600;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.18s;
  letter-spacing: 0.02em;
}

.form-submit:hover { background: var(--blue-hover); }

.form-submit-note {
  font-size: 11px;
  color: var(--ink-xsoft);
  text-align: center;
  font-weight: 300;
  line-height: 1.6;
  margin-top: 10px;
}


/* ============================================================
   15. BADGES & TAGS
   ============================================================ */

.badge {
  font-family: var(--font-sans);
  font-size: 9.5px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 2px;
  letter-spacing: 0.03em;
  display: inline-block;
  white-space: nowrap;
}

.badge-blue   { color: var(--blue);   background: var(--blue-tint); }
.badge-green  { color: var(--green);  background: var(--green-tint); }
.badge-orange { color: #b45309;        background: #fef3c7; }
.badge-sky    { color: #2a6b7c;       background: var(--sky-tint); }
.badge-gold   { color: var(--amber);  background: var(--amber-tint); }
.badge-grey   { color: var(--ink-soft); background: var(--border-soft); }

/* Status badge with dot */
.status-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 16px;
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
}

.status-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.status-badge-text {
  font-size: 11.5px;
  font-weight: 500;
}

/* Status variants — swap class to change state */
.status-accepting .status-badge-dot { background: var(--green); }
.status-accepting .status-badge-text { color: var(--green); }
.status-waitlist  .status-badge-dot { background: var(--amber); }
.status-waitlist  .status-badge-text { color: var(--amber); }
.status-closed    .status-badge-dot { background: var(--ink-xsoft); }
.status-closed    .status-badge-text { color: var(--ink-soft); }

/* Credential badge row */
.cred-badge {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 2px;
  white-space: nowrap;
  display: inline-block;
}

.cred-badge-blue  { color: var(--blue);  background: var(--blue-tint); }
.cred-badge-green { color: var(--green); background: var(--green-tint); }
.cred-badge-sky   { color: #2a6b7c;      background: var(--sky-tint); }

/* Approach tag */
.approach-tag {
  font-family: var(--font-sans);
  font-size: 11.5px;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 2px;
  transition: all 0.18s;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  border: 1px solid transparent;
}

.approach-tag-blue  { color: var(--blue);  background: var(--blue-tint); }
.approach-tag-blue:hover  { background: var(--blue);  color: var(--white); border-color: var(--blue); }
.approach-tag-green { color: var(--green); background: var(--green-tint); }
.approach-tag-green:hover { background: var(--green); color: var(--white); border-color: var(--green); }


/* ============================================================
   16. DIVIDERS & RULES
   ============================================================ */

.section-divider {
  border: none;
  border-top: 1px solid var(--border-soft);
  margin: 0;
}

.content-divider {
  border: none;
  border-top: 1px solid var(--border-soft);
  margin: 48px 0;
}

/* Pull quote / personal note block */
.pull-quote {
  border-left: 3px solid var(--sky);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 22px 22px 22px 20px;
  background: var(--sky-tint2);
}

.pull-quote p {
  font-family: var(--font-serif);
  font-size: 17px;
  font-style: italic;
  color: var(--ink-mid);
  line-height: 1.75;
}


/* ============================================================
   17. ANIMATIONS
   ============================================================ */

/* Fade-in on scroll — applied via JS IntersectionObserver */
.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
}


/* ============================================================
   18. RESPONSIVE / MOBILE
   ============================================================ */

@media (max-width: 768px) {

  :root {
    --page-pad: 20px;
  }

  /* Hide topbar entirely on mobile — too much content for small screens */
  .topbar { display: none; }

  /* Prevent header from overflowing viewport */
  .site-header { overflow: hidden; }
  .header-inner {
    width: 100%;
    box-sizing: border-box;
    padding: 0 var(--page-pad);
    gap: 8px;
  }

  /* Shrink logo slightly on mobile */
  .logo-mark { width: 40px; height: 40px; }
  .logo-name { font-size: 17px; }
  .logo-tag  { display: none; }

  /* Hide desktop nav, show hamburger */
  .site-nav         { display: none; }
  .header-phone     { display: none; }
  .header-actions   { display: none; }
  .mobile-menu-toggle { display: block; flex-shrink: 0; }

  /* Mobile nav — shown when .nav-open is on body */
  body.nav-open .site-nav {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 200;
    padding: 24px var(--page-pad);
    overflow-y: auto;
    border-top: 1px solid var(--border-soft);
  }

  body.nav-open .site-nav a {
    height: auto;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-soft);
    border-left: none;
    font-size: 15px;
    color: var(--ink);
  }

  body.nav-open .site-nav a:last-child {
    border-bottom: none;
  }

  /* Grids collapse to single column */
  .grid-2,
  .grid-3,
  .grid-4,
  .footer-grid,
  .form-group-row {
    grid-template-columns: 1fr;
  }

  /* Who-grid: 2 cols on mobile */
  .who-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Service grid: 2 cols on mobile */
  .service-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Clinician grid: 1 col on mobile */
  .clinician-grid {
    grid-template-columns: 1fr;
  }

  /* Hero adjustments */
  .hero-content {
    padding-bottom: 48px;
  }

  .hero-right {
    display: none; /* photo hidden on very small screens */
  }

  /* Trust bar: stacked */
  .trust-bar .w {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .trust-sep { display: none; }

  /* Sections: less padding */
  .section    { padding: 60px 0; }
  .section-sm { padding: 48px 0; }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Hear-about checkboxes */
  .hear-row {
    grid-template-columns: 1fr 1fr;
  }

  /* Format cards */
  .format-row {
    grid-template-columns: 1fr;
  }

  /* Process steps: no connector line */
  .process-grid::before {
    display: none;
  }

  /* Bio layout */
  .bio-layout {
    grid-template-columns: 1fr;
  }

  .bio-sidebar {
    position: static;
  }

  /* Buttons */
  .btn-hero-group {
    flex-direction: column;
  }

  .btn-hero-group .btn {
    width: 100%;
    justify-content: center;
  }
}

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

  .service-grid {
    grid-template-columns: 1fr;
  }

  .hear-row {
    grid-template-columns: 1fr;
  }
}
