/*
Theme Name: re:mind Psychology Center
Theme URI: https://remindpsych.co
Author: NomiLogic Digital
Description: Custom theme for re:mind Psychology Center — Clinic & Collective.
Version: 1.0.0
Text Domain: remind
*/
/* =========================================================
   re:mind Psychology Center
   forest #284734 · beige #F6F5F1 · olive #B9B99D
   brick  #AB6A55 · taupe  #C4B8AC
   ========================================================= */

:root {
  --forest:      #284734;
  --forest-mid:  #46614F;
  --forest-deep: #1B3124;

  --olive:       #B9B99D;
  --olive-wash:  #E4E3D8;
  --olive-soft:  #D3D3C0;

  --taupe:       #C4B8AC;
  --taupe-wash:  #E7E3DC;
  --taupe-soft:  #DAD2C8;

  --brick:       #AB6A55;
  --brick-deep:  #985742;
  --brick-dark:  #8A4A36;
  --brick-wash:  #EDE0D9;

  --cream:     #F6F5F1;
  --cream-alt: #EFEDE6;
  --white:     #FFFFFF;

  --charcoal:      #22261F;
  --charcoal-soft: #5A6158;
  --charcoal-mute: #5F655C;

  --border:        #E1DCD3;
  --border-strong: #CBC4B9;

  --font-serif: 'Fraunces', Georgia, serif;
  --font-sans: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius:    16px;
  --radius-sm: 9px;
  --radius-lg: 24px;
  --container: 1180px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--forest);
}
p { color: var(--charcoal-soft); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--brick-dark); font-weight: 600; margin-bottom: 16px;
}
.eyebrow::before { content: ''; width: 20px; height: 1.5px; background: var(--brick); }
.eyebrow.center { justify-content: center; }

.section-pad { padding: 104px 0; }
.section-pad.tight { padding: 64px 0; }
.alt-bg   { background: var(--cream-alt); }
.sage-bg  { background: var(--olive-wash); }
.sand-bg  { background: var(--taupe-wash); }
.forest-bg { background: var(--forest); }
.forest-bg h2, .forest-bg h3 { color: var(--cream); }
.forest-bg p { color: rgba(246,245,241,0.78); }

@media (max-width: 768px) {
  .section-pad { padding: 68px 0; }
  .container { padding: 0 20px; }
}

/* ---------------- Buttons ---------------- */

.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 15px 30px; border-radius: 999px;
  font-weight: 600; font-size: 15px; letter-spacing: 0.01em;
  transition: all 0.22s ease; border: 1.5px solid transparent;
  cursor: pointer; white-space: nowrap; font-family: var(--font-sans);
}
.btn-primary { background: var(--brick-deep); color: #FFF; }
.btn-primary:hover { background: var(--brick-dark); }
.btn-forest { background: var(--forest); color: var(--cream); }
.btn-forest:hover { background: var(--forest-deep); }
.btn-outline { background: transparent; border-color: var(--forest); color: var(--forest); }
.btn-outline:hover { background: var(--forest); color: var(--cream); }
.btn-light { background: var(--cream); color: var(--forest); }
.btn-light:hover { background: var(--white); }
.btn-sm { padding: 11px 22px; font-size: 14px; }

/* ---------------- Header / Nav ---------------- */

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(246,245,241,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; }

.logo { display: inline-flex; align-items: center; }
.logo img { height: 42px; width: auto; }

.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a { font-size: 15px; font-weight: 500; color: var(--charcoal-soft); position: relative; padding: 5px 0; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--forest); }
.nav-links a.active::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 2px; background: var(--brick);
}
.nav-cta { display: flex; align-items: center; gap: 18px; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 1.5px; background: var(--forest); }

@media (max-width: 980px) {
.nav {padding: 16px 20px;}
  .nav-links {
    position: fixed; top: 74px; left: 0; right: 0;
    background: var(--cream); flex-direction: column; align-items: flex-start;
    padding: 26px 20px; gap: 20px; border-bottom: 1px solid var(--border);
    transform: translateY(-130%); opacity: 0; transition: all 0.3s ease; pointer-events: none;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-toggle { display: flex; }
  .logo img { height: 34px; }
}

/* ---------------- Real photos ---------------- */

.photo { border-radius: var(--radius); overflow: hidden; background: var(--olive-wash); }
#different .photo{margin-bottom: 58px;}
.photo img { width: 100%; height: 100%; object-fit: cover; object-position: var(--pos, center); }
.photo.ps-hero   { aspect-ratio: 4 / 3; }
.photo.ps-wide   { aspect-ratio: 16 / 9; }
.photo.ps-square { aspect-ratio: 1 / 1; }
.photo.ps-portrait { aspect-ratio: 3 / 4; }
.photo.ps-band   { aspect-ratio: 21 / 8; }
@media (max-width: 700px) { .photo.ps-band { aspect-ratio: 4 / 3; } }

/* ---------------- Photo placeholder slots ---------------- */

.photo-slot {
  background: var(--olive-wash);
  border: 1.5px dashed var(--olive);
  border-radius: var(--radius);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 28px 24px;
  color: var(--forest); position: relative; overflow: hidden;
}
.photo-slot .ps-icon { opacity: 0.5; margin-bottom: 12px; }
.photo-slot .ps-title { font-family: var(--font-serif); font-size: 17px; font-weight: 600; margin-bottom: 6px; color: var(--forest); }
.photo-slot .ps-desc { font-size: 13px; line-height: 1.55; max-width: 330px; color: var(--forest-mid); }
.photo-slot .ps-spec {
  margin-top: 13px; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 600; background: rgba(40,71,52,0.1); padding: 5px 12px; border-radius: 999px;
}
.ps-hero { aspect-ratio: 4 / 3; }
.ps-wide { aspect-ratio: 16 / 9; }
.ps-square { aspect-ratio: 1 / 1; }
.ps-portrait { aspect-ratio: 3 / 4; }
.ps-band { aspect-ratio: 21 / 8; }
.ps-avatar { aspect-ratio: 1/1; border-radius: 50%; width: 150px; margin: 0 auto 16px; padding: 8px; }
.ps-avatar .ps-title { font-size: 12px; }

.ps-terra { background: var(--taupe-wash); border-color: var(--taupe); }
.ps-terra .ps-title { color: var(--brick-dark); }
.ps-terra .ps-desc  { color: #7C4635; }
.ps-terra .ps-spec  { background: rgba(138,74,54,0.1); color: var(--brick-dark); }

.tbd { background: #F6EAD1; border-bottom: 1.5px dotted #B08A34; color: #6B4E0F; padding: 0 3px; font-weight: 500; }

/* ---------------- Hero ---------------- */

.hero, .hero.forest {
  background: var(--cream);
  padding: 100px 0 92px;
  border-bottom: 1px solid var(--border);
}
.hero h1 { font-size: 60px; line-height: 1.08; letter-spacing: -0.035em; margin-bottom: 22px; color: var(--forest); }
.hero p.lead { font-size: 19.5px; max-width: 600px; color: var(--charcoal-soft); }
.hero .eyebrow { color: var(--brick-dark); }
.hero-top { max-width: 800px; margin-bottom: 60px; }
@media (max-width: 900px) { .hero, .hero.forest { padding: 56px 0 52px; } .hero h1 { font-size: 36px; } }

/* ---------------- The two doors ---------------- */

.doors { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 860px) { .doors { grid-template-columns: 1fr; } }

.door {
  border-radius: var(--radius-lg); overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.door:hover { transform: translateY(-5px); }
.door .photo, .door .photo-slot { border-radius: 0; }
.door-body { padding: 34px 36px 38px; flex-grow: 1; display: flex; flex-direction: column; }
.door-label { font-size: 11.5px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 700; margin-bottom: 12px; }
.door h2 { font-size: 28px; margin-bottom: 13px; }
.door p { font-size: 16px; flex-grow: 1; margin-bottom: 22px; }
.door-list { margin-bottom: 26px; }
.door-list li { font-size: 14.5px; padding: 9px 0; border-bottom: 1px solid; }
.door-list li:last-child { border-bottom: none; }

/* Both doors stay light. The two Cs are coded by a solid rule sitting
   between the photo and the copy — colour lands where the eye starts
   reading, without putting a heavy block above the fold.
   Forest = Clinic, clay = Collective, matching the page headers. */
.door-clinic,
.door-collective {
  background: transparent;
  border: none;
  border-radius: 0;
  overflow: visible;
}
/* No card, so the photo carries its own softness and the copy aligns to
   the photo's edge rather than being inset by card padding. */
.door-clinic .photo,      .door-collective .photo,
.door-clinic .photo-slot, .door-collective .photo-slot { border-radius: var(--radius); }
.door-clinic .door-body,
.door-collective .door-body { border-top: 7px solid; padding: 26px 0 0; }
/* The panel isn't clickable — only the button is — so it shouldn't lift. */
.door-clinic:hover, .door-collective:hover { transform: none; }

.door-clinic .door-body  { border-top-color: var(--forest); }
.door-clinic .door-label { color: var(--forest); }

.door-collective .door-body  { border-top-color: var(--brick-dark); }
.door-collective .door-label { color: var(--brick-dark); }

.door-clinic h2,
.door-collective h2 { color: var(--forest); }
.door-clinic p,
.door-collective p { color: var(--charcoal-soft); }
.door-clinic .door-list li,
.door-collective .door-list li { color: var(--charcoal-soft); border-color: var(--border); }

.door-clinic .photo-slot,
.door-collective .photo-slot {
  background: var(--olive-wash); border-color: var(--olive); border-width: 0 0 1.5px 0;
}

/* ---------------- Page header ---------------- */

.page-header { padding: 76px 0 68px; background: var(--cream); border-bottom: 1px solid var(--border); }
/* The two Cs are colour-coded. Forest = Clinic, clay = Collective.
   Green settles, which suits arriving anxious; clay has energy, which
   suits group work. Pages belonging to neither stay cream. */
.page-header.forest,
.page-header.clay { border-bottom: none; }
.page-header.forest { background: var(--forest); }
.page-header.clay   { background: var(--brick-dark); }
.page-header.taupe  { background: var(--taupe-wash); border-bottom: none; }

/* Sub-pages state their section with a rule rather than a block, matching
   the homepage doors. The solid header is reserved for the two landing
   pages, so arriving in a section looks different from moving within one. */
.page-header.rule-forest,
.page-header.rule-clay {
  background: var(--cream);
  border-bottom: none;
  border-top: 7px solid;
}
.page-header.rule-forest { border-top-color: var(--forest); }
.page-header.rule-clay   { border-top-color: var(--brick-dark); }
.page-header.rule-forest .breadcrumb a { color: var(--forest); }
.page-header.rule-clay .breadcrumb a   { color: var(--brick-dark); }
.page-header.rule-forest .eyebrow { color: var(--forest); }
.page-header.rule-clay .eyebrow   { color: var(--brick-dark); }
.page-header.rule-forest .eyebrow::before { background: var(--forest); }
.page-header.rule-clay .eyebrow::before   { background: var(--brick-dark); }

.page-header.forest h1,
.page-header.clay h1 { color: var(--cream); }

/* Clay is a lighter field than forest, so its text sits at higher opacity.
   Every value below is set to clear WCAG AA at its own size — the quieter
   tones on green would drop under 3:1 on clay. */
.page-header.forest p { color: rgba(246,245,241,0.82); }
.page-header.clay p   { color: rgba(246,245,241,0.92); }
.page-header.forest .breadcrumb { color: rgba(246,245,241,0.62); }
.page-header.clay .breadcrumb   { color: rgba(246,245,241,0.82); }
.page-header.forest .breadcrumb a { color: var(--olive); }
.page-header.clay .breadcrumb a   { color: var(--taupe-wash); }
.page-header.forest .eyebrow { color: var(--olive); }
.page-header.clay .eyebrow   { color: var(--taupe-soft); }
.page-header.forest .eyebrow::before { background: var(--olive); }
.page-header.clay .eyebrow::before   { background: var(--taupe-soft); }
.page-header.center { text-align: center; }
.page-header h1 { font-size: 46px; margin-bottom: 16px; max-width: 800px; }
.page-header.center h1 { margin-left: auto; margin-right: auto; }
.page-header p { max-width: 640px; font-size: 17.5px; }
.page-header.center p { margin: 0 auto; }
.breadcrumb { font-size: 13px; color: var(--charcoal-mute); margin-bottom: 18px; }
.breadcrumb a { color: var(--forest-mid); font-weight: 600; }
@media (max-width: 768px) { .page-header { padding: 48px 0 44px; } .page-header h1 { font-size: 32px; } }

/* ---------------- Grids & cards ---------------- */

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media (max-width: 900px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: var(--white); border-radius: var(--radius); padding: 34px;
  border: 1px solid var(--border);
  transition: border-color 0.22s ease, transform 0.22s ease;
}
.card:hover { transform: translateY(-3px); border-color: var(--border-strong); }
.card-flat:hover { transform: none; }
.card h3 { font-size: 20px; margin-bottom: 11px; }
.card p { font-size: 15px; }
.card-icon {
  width: 46px; height: 46px; border-radius: 12px; background: var(--olive-wash);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; color: var(--forest);
}
.sand-bg .card-icon { background: var(--olive-wash); color: var(--forest); }
.card-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 18px; font-weight: 600; font-size: 14px; color: var(--brick-dark); }
.card-link:hover { gap: 10px; }

#who-we-work-with .card {padding:20px;}
#who-we-work-with .card .photo {margin-bottom:20px;}

.section-head { text-align: center; max-width: 680px; margin: 0 auto 58px; }
.section-head h2 { font-size: 38px; margin-bottom: 16px; }
.section-head p { font-size: 16.5px; }
.section-head.left { text-align: left; margin: 0 0 48px; }

/* ---------------- Split ---------------- */

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 36px; } }

.check-list { margin-top: 24px; }
.check-list li { display: flex; align-items: flex-start; gap: 13px; margin-bottom: 14px; font-size: 16px; color: var(--charcoal-soft); }
.check-list li::before {
  content: '✓'; flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%;
  background: var(--olive-wash); color: var(--forest); font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; margin-top: 3px;
}
.sand-bg .check-list li::before { background: var(--olive-wash); color: var(--forest); }

/* ---------------- Filter chips ---------------- */

.filter-bar { display: flex; flex-wrap: wrap; gap: 9px; justify-content: center; margin-bottom: 40px; }
.chip {
  background: transparent; border: 1.5px solid var(--border-strong); color: var(--charcoal-soft);
  font-size: 14px; font-weight: 600; padding: 9px 20px; border-radius: 999px;
  cursor: pointer; transition: all 0.2s ease; font-family: var(--font-sans);
}
.chip:hover { border-color: var(--forest); color: var(--forest); }
.chip.active { background: var(--forest); border-color: var(--forest); color: var(--cream); }

/* ---------------- Therapists ---------------- */

.therapist-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 980px) { .therapist-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .therapist-grid { grid-template-columns: 1fr; } }

.therapist { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 22px; text-align: center; transition: border-color 0.2s; }
.therapist:hover { border-color: var(--forest-mid); }
.therapist h4 { font-size: 17px; margin-bottom: 5px; }
.therapist .t-title { font-size: 12.5px; color: var(--brick-dark); font-weight: 600; margin-bottom: 9px; }
.therapist .t-reg { font-size: 11.5px; color: var(--charcoal-mute); margin-bottom: 11px; }
.therapist .t-focus { font-size: 13.5px; color: var(--charcoal-soft); }

/* ---------------- Which one do I need? ---------------- */

.choose-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 860px) { .choose-grid { grid-template-columns: 1fr; } }

.choose-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 34px 32px;
}
.choose-card h3 { font-size: 20px; margin-bottom: 18px; line-height: 1.3; }
.choose-card ul li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; color: var(--charcoal-soft); margin-bottom: 13px; line-height: 1.55;
}
.choose-card ul li::before {
  content: ''; flex-shrink: 0; width: 7px; height: 7px; border-radius: 50%;
  background: var(--forest-mid); margin-top: 9px;
}
.choose-card.psych ul li::before { background: var(--brick-deep); }

.choose-note {
  background: var(--forest); color: var(--cream); border-radius: var(--radius);
  padding: 32px 36px; margin-top: 24px; text-align: center;
}
.choose-note h3 { color: var(--cream); font-size: 21px; margin-bottom: 10px; }
.choose-note p { color: rgba(246,245,241,0.8); font-size: 16px; max-width: 620px; margin: 0 auto; }

.fine-print {
  margin-top: 30px; padding: 24px 28px;
  border-left: 3px solid var(--taupe); background: var(--taupe-wash);
}
.fine-print h4 { font-size: 15px; margin-bottom: 9px; }
.fine-print p { font-size: 14.5px; color: var(--charcoal-soft); line-height: 1.6; }

/* ---------------- Pricing ---------------- */


/* ---------------- Check-in lanes ---------------- */

.lane-choice { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; max-width: 880px; margin: 0 auto; }
@media (max-width: 780px) { .lane-choice { grid-template-columns: 1fr; } }
.lane-card {
  background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius);
  padding: 38px 34px; text-align: center; cursor: pointer; transition: all 0.22s ease;
}
.lane-card:hover { border-color: var(--forest); transform: translateY(-3px); }
.lane-card .lane-icon {
  width: 54px; height: 54px; border-radius: 14px; background: var(--olive-wash); color: var(--forest);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 20px;
}
.lane-card[data-lane="org"] .lane-icon { background: var(--forest); color: var(--cream); }
.lane-card h3 { font-size: 22px; margin-bottom: 11px; }
.lane-card p { font-size: 15px; }
.lane-panel { display: none; }
.lane-panel.show { display: block; }

.crisis-box {
  background: var(--taupe-wash); border: 1px solid var(--taupe);
  border-left: 4px solid var(--brick-deep); border-radius: 0; padding: 28px 30px;
}
.crisis-box h4 { font-size: 18px; margin-bottom: 11px; color: var(--brick-dark); }
.crisis-box p, .crisis-box li { font-size: 14.5px; color: #5C5346; }
.crisis-box ul { margin-top: 12px; }
.crisis-box li { padding: 5px 0; }

.report-cta {
  background: var(--forest); color: var(--cream); border-radius: var(--radius);
  padding: 44px; display: grid; grid-template-columns: 1fr auto; gap: 34px; align-items: center;
}
@media (max-width: 780px) { .report-cta { grid-template-columns: 1fr; padding: 32px; } }
.report-cta h3 { color: var(--cream); font-size: 26px; margin-bottom: 11px; }
.report-cta p { color: rgba(246,245,241,0.8); font-size: 15px; }

/* ---------------- Stats / proof ---------------- */

.stats-band, .stats-band.light { background: var(--forest); color: var(--cream); padding: 72px 0; border: none; }
.stats-band .grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-num, .stats-band.light .stat-num { font-family: var(--font-serif); font-size: 40px; font-weight: 700; color: var(--olive); letter-spacing: -0.02em; }
.stat-label, .stats-band.light .stat-label { font-size: 14px; color: rgba(246,245,241,0.7); margin-top: 8px; }
.stats-band .tbd { background: rgba(246,245,241,0.16); color: #EFE7D4; border-bottom-color: rgba(246,245,241,0.5); }
@media (max-width: 768px) { .stats-band .grid-4 { grid-template-columns: repeat(2, 1fr); row-gap: 34px; } }

.stats-band.creds .stat-num {
  font-size: 25px; line-height: 1.2; letter-spacing: -0.01em;
  display: block; margin-bottom: 10px; color: var(--cream);
}
.stats-band.creds .stat-label {
  font-size: 14px; line-height: 1.55; max-width: 240px; margin: 0 auto;
  color: rgba(246, 245, 241, 0.72);
}
@media (max-width: 768px) { .stats-band.creds .stat-num { font-size: 21px; } }

.logo-strip { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.tag { background: transparent; border: 1px solid var(--taupe); color: var(--forest); font-size: 13.5px; font-weight: 500; padding: 9px 18px; border-radius: 999px; }

.logo-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 26px 18px; align-items: center;
}
.client-logo {
  height: 92px; display: flex; align-items: center; justify-content: center; padding: 10px 18px;
}
.client-logo img {
  max-height: 62px; max-width: 100%; width: auto; height: auto; object-fit: contain;
}
@media (max-width: 560px) {
  .logo-grid { grid-template-columns: repeat(2, 1fr); }
  .client-logo { height: 72px; padding: 8px 10px; }
  .client-logo img { max-height: 48px; }
}

/* ---------------- Testimonials ---------------- */

.testimonial-card { background: var(--white); border-radius: var(--radius); padding: 32px; border: 1px solid var(--border); height: 100%; display: flex; flex-direction: column; }
.testimonial-card p.quote { font-size: 16px; color: var(--charcoal-soft); flex-grow: 1; margin-bottom: 22px; font-family: var(--font-serif); font-weight: 500; line-height: 1.55; }
.testimonial-card p.quote::before { content: '\201C'; }
.testimonial-card p.quote::after { content: '\201D'; }
.t-author { display: flex; align-items: center; gap: 13px; }
.t-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--olive-wash); color: var(--forest); display: flex; align-items: center; justify-content: center; font-weight: 700; font-family: var(--font-serif); font-size: 15px; flex-shrink: 0; }
.t-name { font-size: 14px; font-weight: 700; color: var(--charcoal); }
.t-role { font-size: 12.5px; color: var(--charcoal-mute); }

/* ---------------- CTA band ---------------- */

.cta-band { background: var(--brick-deep); border-radius: var(--radius-lg); padding: 68px 54px; text-align: center; color: #FFF; }
.cta-band h2 { color: #FFF; font-size: 34px; margin-bottom: 14px; }
.cta-band p { color: #FFF; margin-bottom: 30px; max-width: 580px; margin-left: auto; margin-right: auto; font-size: 16.5px; }
.cta-band.sage { background: var(--forest); }
.cta-band.sage p { color: rgba(246,245,241,0.82); }
.cta-band.sage .btn-light { background: var(--olive); color: var(--forest-deep); }
.cta-band.sage .btn-light:hover { background: var(--cream); }
@media (max-width: 700px) { .cta-band { padding: 44px 26px; } .cta-band h2 { font-size: 26px; } }

/* ---------------- Contact ---------------- */

.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 48px; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.info-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 22px; display: flex; gap: 17px; align-items: flex-start; margin-bottom: 14px; }
.info-icon { width: 42px; height: 42px; border-radius: 10px; background: var(--olive-wash); color: var(--forest); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.info-card h4 { font-size: 15px; margin-bottom: 4px; }
.info-card p, .info-card a { font-size: 14px; color: var(--charcoal-soft); }
.info-card a:hover { color: var(--brick-dark); }

.form-card { background: var(--white); border-radius: var(--radius); padding: 42px; border: 1px solid var(--border); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.field { margin-bottom: 19px; }
.field label { display: block; font-size: 13.5px; font-weight: 600; margin-bottom: 8px; color: var(--charcoal); }
.field input, .field textarea, .field select {
  width: 100%; padding: 14px 16px; border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-family: var(--font-sans); font-size: 15px; background: var(--cream); color: var(--charcoal);
  transition: border-color 0.2s ease;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--forest); }
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 13px; color: var(--charcoal-mute); margin-top: 12px; }

/* ---------------- Findings visuals ---------------- */

.findings { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 44px; }
@media (max-width: 700px) { .findings { padding: 26px; } }
.findings-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; flex-wrap: wrap; margin-bottom: 32px; }
.findings-head h3 { font-size: 24px; }
.findings-head .src { font-size: 12px; color: var(--charcoal-mute); letter-spacing: 0.06em; text-transform: uppercase; }

.sev-chart { margin-bottom: 28px; }
.sev-row { margin-bottom: 22px; }
.sev-label { display: flex; justify-content: space-between; gap: 12px; font-size: 14.5px; font-weight: 600; margin-bottom: 9px; color: var(--charcoal); flex-wrap: wrap; }
.sev-label .flag { color: var(--brick-dark); font-weight: 600; font-size: 13px; }
.sev-track { display: flex; height: 36px; border-radius: 6px; overflow: hidden; background: var(--olive-wash); }
.sev-seg { display: flex; align-items: center; justify-content: center; font-size: 11.5px; font-weight: 700; min-width: 0; }
.sv-normal { background: #46614F; color: #F6F5F1; }
.sv-mild   { background: #B9B99D; color: #1B3124; }
.sv-mod    { background: #C4B8AC; color: #3B2A1E; }
.sv-sev    { background: #985742; color: #FFF; }
.sv-ext    { background: #75311A; color: #FFF; }

.sev-legend { display: flex; flex-wrap: wrap; gap: 18px; justify-content: center; margin-top: 8px; }
.sev-legend span { display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--charcoal-soft); }
.sev-legend i { width: 13px; height: 13px; border-radius: 3px; display: inline-block; }

.big-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 32px; }
@media (max-width: 760px) { .big-stats { grid-template-columns: 1fr; } }
.big-stat { background: var(--olive-wash); border-radius: var(--radius-sm); padding: 24px; }
.big-stat .bs-num { font-family: var(--font-serif); font-size: 42px; font-weight: 700; color: var(--brick-dark); line-height: 1; letter-spacing: -0.03em; }
.big-stat .bs-lab { font-size: 13.5px; color: var(--forest-mid); margin-top: 10px; }

.insight-note { background: var(--olive-wash); border-radius: var(--radius-sm); padding: 24px 28px; font-size: 16px; color: var(--forest); line-height: 1.6; }
.insight-note strong { color: var(--forest-deep); }

/* ---------------- Footer ---------------- */

.site-footer { background: var(--forest); color: rgba(246,245,241,0.75); padding: 72px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 44px; padding-bottom: 44px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-logo { margin-bottom: 18px; display: block; }
.footer-logo img { height: 46px; width: auto; }
.footer-about { font-size: 14.5px; color: rgba(246,245,241,0.65); max-width: 300px; }
.footer-col h5 { color: var(--cream); font-size: 12px; margin-bottom: 18px; text-transform: uppercase; letter-spacing: 0.14em; font-family: var(--font-sans); font-weight: 600; }
.footer-col ul li { margin-bottom: 11px; font-size: 14.5px; color: rgba(246,245,241,0.7); }
.footer-col a { font-size: 14.5px; color: rgba(246,245,241,0.7); transition: color 0.2s; }
.footer-col a:hover { color: var(--olive); }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  height: 34px; padding: 0 16px; border-radius: 999px; border: 1px solid rgba(246,245,241,0.22);
  display: inline-flex; align-items: center; font-size: 13px; font-weight: 600; color: rgba(246,245,241,0.8);
}
.footer-social a:hover { background: var(--olive); border-color: var(--olive); color: var(--forest-deep); }
.footer-bottom { border-top: 1px solid rgba(246,245,241,0.14); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 13px; color: rgba(246,245,241,0.5); }
.footer-bottom a { color: rgba(246,245,241,0.75); font-weight: 600; }
.footer-bottom a:hover { color: var(--olive); }

/* ---------------- Therapist profile modal ---------------- */

.t-profile { display: none; }

.therapist .t-open {
  display: inline-flex; align-items: center; gap: 7px;
  margin-top: 14px; font-size: 13.5px; font-weight: 600;
  color: var(--brick-dark); background: none; border: none; padding: 0;
  cursor: pointer; font-family: var(--font-sans);
}
.therapist .t-open::after { content: '→'; transition: transform 0.2s ease; }
.therapist .t-open:hover::after { transform: translateX(3px); }

.modal-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(27,49,36,0.55); backdrop-filter: blur(3px);
  display: none; align-items: flex-start; justify-content: center;
  padding: 44px 20px; overflow-y: auto;
}
.modal-overlay.open { display: flex; }

.modal {
  position: relative; width: 100%; max-width: 720px;
  background: var(--cream); border-radius: var(--radius-lg);
  box-shadow: 0 26px 70px rgba(27,49,36,0.28);
  animation: modal-in 0.22s ease;
}
@keyframes modal-in { from { opacity: 0; transform: translateY(12px); } }

.modal-close {
  position: absolute; top: 16px; right: 16px; z-index: 2;
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--cream-alt); border: 1px solid var(--border);
  color: var(--forest); font-size: 22px; line-height: 1;
  cursor: pointer; transition: all 0.2s ease;
}
.modal-close:hover { background: var(--forest); color: var(--cream); border-color: var(--forest); }
.modal-body { padding: 40px; }
@media (max-width: 620px) { .modal-body { padding: 30px 22px; } .modal-overlay { padding: 20px 12px; } }

.pf-head { display: grid; grid-template-columns: 150px 1fr; gap: 22px; align-items: center; margin-bottom: 26px; }
@media (max-width: 520px) { .pf-head { grid-template-columns: 1fr; } }
.pf-head .photo-slot { width: 104px; aspect-ratio: 1/1; border-radius: 50%; padding: 6px; margin: 0; }
.pf-head .photo-slot .ps-title { font-size: 11px; }
.pf-head h2 { font-size: 27px; margin-bottom: 5px; }
.pf-role { color: var(--brick-dark); font-weight: 600; font-size: 14px; }
.pf-reg { font-size: 12.5px; color: var(--charcoal-mute); margin-top: 5px; }

.pf-meta { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 18px 0; margin-bottom: 24px; }
.pf-row { display: grid; grid-template-columns: 132px 1fr; gap: 14px; padding: 7px 0; font-size: 14.5px; }
@media (max-width: 520px) { .pf-row { grid-template-columns: 1fr; gap: 2px; } }
.pf-row dt { font-weight: 600; color: var(--forest); }
.pf-row dd { color: var(--charcoal-soft); }
.pf-row dd a { color: var(--brick-dark); font-weight: 600; }

.pf-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.pf-tag {
  background: var(--olive-wash); color: var(--forest);
  font-size: 12.5px; font-weight: 600; padding: 4px 11px; border-radius: 999px;
}

.pf-section { margin-bottom: 22px; }
.pf-section h3 { font-size: 16px; margin-bottom: 8px; }
.pf-section p { font-size: 15px; }

.pf-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--border); }

/* ---------------- Fees ---------------- */

.fee-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.fee-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 26px; display: flex; flex-direction: column;
}
.fee-card h3 { font-size: 19px; margin-bottom: 7px; }
.fee-card .fee-desc { font-size: 14px; color: var(--charcoal-soft); margin-bottom: 18px; flex-grow: 1; }
.fee-from { border-top: 1px solid var(--border); padding-top: 15px; }
.fee-from .lab { font-size: 11.5px; letter-spacing: 0.13em; text-transform: uppercase; color: var(--charcoal-mute); font-weight: 600; }
.fee-from .amt { font-family: var(--font-serif); font-size: 31px; color: var(--forest); font-weight: 600; line-height: 1.2; margin-top: 3px; }
.fee-from .amt small { font-family: var(--font-sans); font-size: 13px; font-weight: 500; color: var(--charcoal-soft); }

.fee-band { background: var(--forest); color: var(--cream); border-radius: var(--radius-lg); padding: 40px 38px; }
.fee-band h2 { color: var(--cream); font-size: 26px; margin-bottom: 10px; }
.fee-band p { color: rgba(246,245,241,0.78); }
.fee-tiers { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 18px; margin-top: 26px; }
.fee-tier { background: rgba(246,245,241,0.08); border: 1px solid rgba(246,245,241,0.16); border-radius: var(--radius-sm); padding: 18px 20px; }
.fee-tier h4 { color: var(--olive); font-size: 15px; margin-bottom: 6px; font-family: var(--font-sans); letter-spacing: 0.04em; text-transform: uppercase; }
.fee-tier p { font-size: 14px; color: rgba(246,245,241,0.75); }

/* ---------------- Build banner ---------------- */

.build-banner { background: var(--forest-deep); color: rgba(246,245,241,0.85); font-size: 13px; padding: 11px 20px; text-align: center; }
.build-banner strong { color: var(--olive); font-weight: 600; }

/* ---- theme additions ---- */
.build-banner { display:none; }
.t-avatar img { width:100%; height:100%; object-fit:cover; border-radius:50%; }

/* ---- utility classes replacing the inline styles from the static build ---- */
.h2-sm { font-size: 27px; margin-bottom: 14px; }
.h2-lg { font-size: 32px; margin-bottom: 18px; }
.muted { color: var(--charcoal-soft); font-size: 16px; }
.prose-muted p { color: var(--charcoal-soft); font-size: 16px; }
.prose-muted p + p { margin-top: 14px; }
.no-top-pad { padding-top: 0; }
.center-btn { text-align: center; margin-top: 32px; }
.grid-2-center { align-items: center; }
.check-list-tight { margin-top: 6px; }

/* ---- leadership card ---- */
.lead-name { text-align: center; font-size: 19px; }
.lead-role { text-align: center; color: var(--brick-dark); font-weight: 600; font-size: 16px; margin: 6px 0 10px; }
.lead-edu { text-align: center; font-size: 16px; margin-bottom: 12px; color: var(--charcoal-soft); }
.lead-blurb { font-size: 16px; }
.card > .photo.ps-avatar img,
.therapist > .photo.ps-avatar img { border-radius: 50%; aspect-ratio: 1 / 1; object-fit: cover; }
.pf-head .photo.ps-avatar img { border-radius: 50%; aspect-ratio: 1 / 1; object-fit: cover; }

/* ---- clinic + collective ---- */
.h2-md { font-size: 31px; margin-bottom: 18px; }
.center-btn-tight { margin-top: 0; }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.step-num { color: var(--brick-deep); font-size: 30px; }
.step-title { font-size: 18px; margin-top: 8px; }
.cost-foot { text-align: center; margin-top: 30px; font-size: 16px; color: var(--charcoal-soft); }
.cost-foot-link { color: var(--brick-dark); font-weight: 600; }
@media (max-width: 900px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps-grid { grid-template-columns: 1fr; } }

/* ---- testimonial carousel ---- */
.t-carousel { position: relative; }
.t-track {
  display: grid; grid-auto-flow: column; grid-auto-columns: calc((100% - 48px) / 3);
  gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none; -ms-overflow-style: none; padding-bottom: 4px;
}
.t-track::-webkit-scrollbar { display: none; }
.t-slide { scroll-snap-align: start; display: flex; }
.t-slide > .testimonial-card { width: 100%; }

.t-controls { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 30px; }
.t-arrow {
  width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid var(--border-strong);
  background: transparent; color: var(--forest); cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; transition: all 0.2s ease;
}
.t-arrow:hover:not(:disabled) { background: var(--forest); border-color: var(--forest); color: var(--cream); }
.t-arrow:disabled { opacity: 0.32; cursor: default; }
.t-dots { display: flex; align-items: center; gap: 9px; }
.t-dot {
  width: 9px; height: 9px; padding: 0; border: 0; border-radius: 50%;
  background: var(--border-strong); cursor: pointer; transition: all 0.2s ease;
}
.t-dot.active { background: var(--brick-deep); width: 26px; border-radius: 999px; }

@media (max-width: 1000px) { .t-track { grid-auto-columns: calc((100% - 24px) / 2); } }
@media (max-width: 700px)  { .t-track { grid-auto-columns: 100%; } }
.t-carousel[data-per-view="2"] .t-track { grid-auto-columns: calc((100% - 24px) / 2); }
.t-carousel[data-per-view="1"] .t-track { grid-auto-columns: 100%; }
@media (max-width: 1000px) { .t-carousel[data-per-view="2"] .t-track { grid-auto-columns: calc((100% - 24px) / 2); } }
@media (max-width: 700px)  { .t-carousel[data-per-view="2"] .t-track,
                             .t-carousel[data-per-view="3"] .t-track { grid-auto-columns: 100%; } }

/* ---- workplaces / schools / community / contact ---- */
.h2-xs { font-size: 28px; margin-bottom: 14px; }
.section-pad-short { padding-top: 20px; }
.band-space { margin-bottom: 56px; }
.btn-space { margin-top: 26px; }
.map-space { margin-top: 22px; }
.findings-sub { font-size: 16px; color: var(--charcoal-soft); margin-top: 6px; }
.sample-report-image img { width: 100%; height: auto; border-radius: var(--radius); border: 1px solid var(--border); }
.form-card-title { margin-bottom: 8px; font-size: 24px; }
.form-card-sub { font-size: 16px; color: var(--charcoal-soft); margin-bottom: 24px; }
.map-embed { margin-top: 22px; border-radius: var(--radius); overflow: hidden; }
.map-embed iframe { width: 100%; min-height: 260px; border: 0; display: block; }
.rm-admin-hint { font-size: 16px; background: var(--olive-wash); border-radius: var(--radius-sm); padding: 16px 18px; color: var(--charcoal); }

/* Contact Form 7 — match the design's form styling */
.form-card .wpcf7 .field { margin-bottom: 18px; }
.form-card .wpcf7 label { display: block; font-weight: 600; font-size: 16px; margin-bottom: 7px; color: var(--charcoal); }
.form-card .wpcf7 .optional { font-weight: 400; color: var(--charcoal-soft); }
.form-card .wpcf7 input[type="text"],
.form-card .wpcf7 input[type="email"],
.form-card .wpcf7 input[type="tel"],
.form-card .wpcf7 select,
.form-card .wpcf7 textarea {
  width: 100%; font-family: var(--font-sans); font-size: 16px; color: var(--charcoal);
  background: var(--white); border: 1px solid var(--border-strong); border-radius: var(--radius-sm);
  padding: 13px 15px;
}
.form-card .wpcf7 textarea { min-height: 130px; resize: vertical; }
.form-card .wpcf7 input:focus, .form-card .wpcf7 select:focus, .form-card .wpcf7 textarea:focus {
  outline: none; border-color: var(--forest);
}
.form-card .wpcf7 .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-card .wpcf7 input[type="submit"] {
  width: 100%; background: var(--brick-deep); color: #FFF; border: 0; border-radius: 999px;
  padding: 15px 30px; font-family: var(--font-sans); font-weight: 600; font-size: 16px; cursor: pointer;
  transition: background 0.22s ease;
}
.form-card .wpcf7 input[type="submit"]:hover { background: var(--brick-dark); }
.form-card .wpcf7-spinner { display: block; margin: 12px auto 0; }
.form-card .wpcf7-response-output { font-size: 16px; border-radius: var(--radius-sm); margin: 18px 0 0; }
.form-card .wpcf7-not-valid-tip { font-size: 16px; color: var(--brick-dark); margin-top: 6px; }
@media (max-width: 560px) { .form-card .wpcf7 .form-row { grid-template-columns: 1fr; } }

/* ---- fees ---- */
.h2-sm2 { font-size: 29px; margin-bottom: 16px; }
.h2-xxs { font-size: 26px; margin-bottom: 12px; }
.container-narrow { max-width: 820px; }
.center-text { text-align: center; }
.eyebrow-olive { color: var(--olive); }
.fee-band-lead { max-width: 640px; }
.fee-note { text-align: center; margin-top: 26px; font-size: 16px; color: var(--charcoal-mute); }
.fee-small-note { font-size: 16px; color: var(--charcoal-mute); margin-top: 18px; }
.fee-group-text { margin-bottom: 22px; }
.fee-card .amt.amt-text { font-size: 23px; }
.crisis-narrow { max-width: 780px; margin: 0 auto; }

/* ---- privacy / long-form legal pages ---- */
.legal-meta { display: flex; flex-wrap: wrap; gap: 8px 20px; align-items: center; font-size: 16px; color: var(--charcoal-mute); margin-bottom: 30px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.legal-body { font-size: 16px; color: var(--charcoal-soft); }
.legal-body h2 { font-size: 26px; margin: 38px 0 12px; }
.legal-body h2:first-child { margin-top: 0; }
.legal-body h3 { font-size: 20px; margin: 26px 0 10px; }
.legal-body p { margin-bottom: 14px; }
.legal-body strong { color: var(--charcoal); }
.legal-body a { color: var(--brick-dark); font-weight: 600; }
.legal-body ul, .legal-body ol { margin: 0 0 18px 0; }
.legal-body ul li { position: relative; padding-left: 26px; margin-bottom: 10px; list-style: none; }
.legal-body ul li:before { content: ''; position: absolute; left: 4px; top: 10px; width: 7px; height: 7px; border-radius: 50%; background: var(--olive); }
.legal-body ol { padding-left: 22px; }
.legal-body ol li { margin-bottom: 10px; }
.legal-body blockquote { border-left: 3px solid var(--olive); padding: 4px 0 4px 20px; margin: 0 0 18px; }
.legal-body table { width: 100%; border-collapse: collapse; margin-bottom: 20px; font-size: 16px; }
.legal-body th, .legal-body td { border: 1px solid var(--border); padding: 10px 12px; text-align: left; }
.legal-body th { background: var(--cream-alt); color: var(--charcoal); }

/* ---- check-in ---- */
.checkin-panel { max-width: 780px; margin: 0 auto; }
.checkin-brief p { font-size: 16px; color: var(--charcoal-soft); margin-bottom: 12px; }
.scale-list { background: var(--cream-alt); border-radius: var(--radius-sm); padding: 20px 22px; margin: 22px 0; }
.scale-list h4 { font-size: 18px; margin-bottom: 12px; }
.scale-list ul { list-style: none; }
.scale-list li { font-size: 16px; color: var(--charcoal-soft); margin-bottom: 8px; display: flex; gap: 12px; }
.scale-num { display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; background: var(--olive-wash); color: var(--forest); font-weight: 700; font-size: 16px; }
.checkin-form.is-hidden { display: none; }
.checkin-credit { font-size: 16px; color: var(--charcoal-mute); margin-top: 24px; padding-top: 18px; border-top: 1px solid var(--border); }
.checkin-notes { gap: 18px; margin-top: 24px; }
.note-title { font-size: 18px; margin-bottom: 8px; }
.crisis-space { margin-top: 34px; }
.report-cta-space { margin-top: 38px; }

/* JetFormBuilder — match the design */
.jet-form-builder { scroll-margin-top: 120px; }
.checkin-form .jet-form-builder__field-wrap { margin-bottom: 6px; }
.checkin-form .jet-form-builder__label,
.checkin-form .jet-form-builder__field-label { font-size: 16px; font-weight: 600; color: var(--charcoal); margin-bottom: 10px; display: block; }
.checkin-form .jet-form-builder__fields-group { display: flex; flex-wrap: wrap; gap: 10px; }
.checkin-form .jet-form-builder__field-wrap--radio { margin: 0; }
.checkin-form .jet-form-builder__field.radio-field { margin-right: 6px; }
.checkin-form .jet-form-builder-row { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 18px 20px; margin-bottom: 14px; }
.checkin-form input[type="text"], .checkin-form input[type="email"], .checkin-form select, .checkin-form textarea {
  width: 100%; font-family: var(--font-sans); font-size: 16px; color: var(--charcoal);
  background: var(--white); border: 1px solid var(--border-strong); border-radius: var(--radius-sm); padding: 13px 15px;
}
.checkin-form button, .checkin-form input[type="submit"], .checkin-form .jet-form-builder__action-button {
  background: var(--brick-deep); color: #FFF; border: 0; border-radius: 999px;
  padding: 15px 30px; font-family: var(--font-sans); font-weight: 600; font-size: 16px; cursor: pointer;
  transition: background 0.22s ease;
}
.checkin-form button:hover, .checkin-form input[type="submit"]:hover { background: var(--brick-dark); }
.checkin-form .jet-form-builder-progress-pages__item { font-size: 16px; }
.checkin-form .jet-form-builder__required { color: var(--brick-dark); }

/* ---- results ---- */
.score-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 34px 26px; text-align: center; }
.score-card h3 { font-size: 22px; margin-bottom: 16px; }
.score-band { font-family: var(--font-serif); font-weight: 600; font-size: 26px; line-height: 1.2; }
.score-num { font-size: 16px; color: var(--charcoal-mute); margin-top: 10px; }
.band-normal { color: #3F7D53; }
.band-mild { color: #B08428; }
.band-moderate { color: #C07A2B; }
.band-severe { color: var(--brick-dark); }
.band-extremely-severe { color: #8A2B21; }

.guide-wrap { overflow-x: auto; }
.guide-table { width: 100%; border-collapse: collapse; font-size: 16px; min-width: 520px; }
.guide-table th, .guide-table td { padding: 12px 14px; text-align: center; border-bottom: 1px solid var(--border); }
.guide-table th { font-family: var(--font-sans); font-weight: 600; color: var(--charcoal); background: var(--cream-alt); }
.guide-table th:first-child, .guide-table .guide-level { text-align: left; }
.guide-table .guide-level { font-weight: 600; color: var(--charcoal); }
.guide-table .guide-mine { background: var(--olive-wash); font-weight: 700; color: var(--forest); }

.res-reminder { font-size: 16px; color: var(--charcoal-soft); background: var(--cream-alt); border-radius: var(--radius-sm); padding: 18px 20px; margin-bottom: 28px; }
.res-next-heading { margin-bottom: 10px; }
.res-buttons { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }
.lane-card.active { border-color: var(--forest); }

/* ---- blog listing ---- */
.filter-bar-links .chip { text-decoration: none; display: inline-flex; align-items: center; }
.blog-empty { text-align: center; font-size: 16px; color: var(--charcoal-soft); padding: 40px 0; }

.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
@media (max-width: 900px) { .post-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .post-grid { grid-template-columns: 1fr; } }

.post-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: border-color 0.22s ease, transform 0.22s ease; }
.post-card:hover { border-color: var(--border-strong); transform: translateY(-2px); }
.post-card-media { display: block; aspect-ratio: 16 / 10; overflow: hidden; background: var(--cream-alt); }
.post-card-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.post-card-blank { display: block; width: 100%; height: 100%; background: var(--olive-wash); }
.post-card-body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.post-card-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-bottom: 12px; font-size: 16px; color: var(--charcoal-mute); }
.post-cat { display: inline-block; font-size: 16px; font-weight: 600; color: var(--brick-dark); text-decoration: none; }
.post-card h3 { font-size: 21px; margin-bottom: 10px; line-height: 1.25; }
.post-card h3 a { color: inherit; text-decoration: none; }
.post-card h3 a:hover { color: var(--brick-dark); }
.post-card p { font-size: 16px; color: var(--charcoal-soft); margin-bottom: 16px; }
.post-card-link { margin-top: auto; font-size: 16px; font-weight: 600; color: var(--brick-dark); }

.post-card-lead { display: grid; grid-template-columns: 1.15fr 1fr; align-items: stretch; margin-bottom: 26px; }
.post-card-lead .post-card-media { aspect-ratio: auto; height: 100%; min-height: 300px; }
.post-card-lead .post-card-body { padding: 40px; justify-content: center; }
.post-card-lead h3 { font-size: 31px; }
.post-card-lead p { font-size: 16px; }
@media (max-width: 820px) { .post-card-lead { grid-template-columns: 1fr; } .post-card-lead .post-card-media { min-height: 220px; } .post-card-lead .post-card-body { padding: 26px; } .post-card-lead h3 { font-size: 25px; } }

.pagination { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-top: 48px; }
.pagination .page-numbers {
  display: inline-flex; align-items: center; justify-content: center; min-width: 44px; height: 44px;
  padding: 0 16px; border: 1.5px solid var(--border-strong); border-radius: 999px;
  font-size: 16px; font-weight: 600; color: var(--forest); text-decoration: none; transition: all 0.2s ease;
}
.pagination .page-numbers:hover { background: var(--forest); border-color: var(--forest); color: var(--cream); }
.pagination .page-numbers.current { background: var(--brick-deep); border-color: var(--brick-deep); color: #FFF; }
.pagination .page-numbers.dots { border-color: transparent; }

/* ---- single article ---- */
.article-header .post-cat { margin-bottom: 14px; }
.article-header h1 { max-width: 780px; }
.article-meta { display: flex; flex-wrap: wrap; gap: 10px 18px; margin-top: 18px; font-size: 16px; color: var(--charcoal-mute); }
.article-meta span + span { position: relative; padding-left: 18px; }
.article-meta span + span:before { content: ''; position: absolute; left: 0; top: 50%; width: 4px; height: 4px; border-radius: 50%; background: var(--border-strong); transform: translateY(-50%); }
.article-body { font-size: 17px; }
.article-body p { margin-bottom: 18px; }
.article-body img { max-width: 100%; height: auto; border-radius: var(--radius-sm); }
.article-body figure { margin: 26px 0; }
.article-body figcaption { font-size: 16px; color: var(--charcoal-mute); margin-top: 8px; text-align: center; }
.article-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 34px; }
.article-tags .chip { text-decoration: none; }
.article-foot { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; padding-top: 30px; border-top: 1px solid var(--border); }
.article-pages { margin-top: 30px; }
.footer-bottom-right { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 22px; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 6px 20px; list-style: none; margin: 0; padding: 0; }
.footer-legal a { font-size: 13px; }
@media (max-width: 620px) { .footer-bottom-right { gap: 4px 16px; } }
/* ---- fees bundle graphic ---- */
.bundle-figure { margin: 0; }
.bundle-figure svg { width: 100%; height: auto; display: block; border-radius: var(--radius); }
.bundle-figure figcaption { margin-top: 14px; font-size: 16px; color: var(--charcoal-mute); text-align: center; font-style: italic; }
.group-intro { max-width: 640px; margin-top: 12px; font-size: 16px; color: var(--charcoal-soft); }