/* MindRank  shared layout, containers, and inner-page components */

:root {
  --cream: #FBF8F3;
  --cream-2: #F4ECE0;
  --sand: #EEE4D6;
  --sand-line: #E4D8C7;
  --espresso: #0E2119;
  --cocoa: #1A4832;
  --mocha: #3D7A5E;
  --caramel: #0D7A52;
  --caramel-2: #095E3F;
  --caramel-soft: rgba(13, 122, 82, 0.10);
  --sage: #7AB89A;
  --amber: #E0A458;
  --white: #ffffff;
  --shadow-soft: 0 10px 30px -18px rgba(14, 33, 25, 0.28);
  --shadow-lift: 0 24px 48px -24px rgba(14, 33, 25, 0.38);
  --content-max: 860px;
  --content-wide: 1180px;
  --content-narrow: 760px;
  --pad-x: 60px;
  --pad-x-mobile: 24px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--cocoa);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4, .serif { font-family: 'Fraunces', Georgia, serif; }

/* ?? Containers (homepage + inner pages) ?? */
.section-wrap {
  padding: 110px var(--pad-x);
  max-width: var(--content-wide);
  margin: 0 auto;
}

.content-wrap {
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

.content-wrap-narrow {
  width: 100%;
  max-width: var(--content-narrow);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

/* ?? Article / SEO / city pages ?? */
.post-hero {
  padding: 130px var(--pad-x) 70px;
  max-width: var(--content-max);
  margin: 0 auto;
}

.post-hero h1 {
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 600;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--espresso);
}

.post-hero h1 span,
.post-hero h1 em { color: var(--caramel); font-style: italic; }

.post-body {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--pad-x) 80px;
}

.post-intro {
  font-size: 18px;
  color: var(--cocoa);
  line-height: 1.8;
  border-left: 3px solid var(--caramel);
  padding-left: 24px;
  margin-bottom: 32px;
}

.post-body h2 {
  font-size: clamp(26px, 3.2vw, 28px);
  font-weight: 600;
  letter-spacing: -0.8px;
  margin: 56px 0 16px;
  color: var(--espresso);
  line-height: 1.15;
}

.post-body h2 span,
.post-body h2 em { color: var(--caramel); font-style: italic; }

.post-body h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 36px 0 12px;
  color: var(--espresso);
  line-height: 1.25;
}

.post-body p {
  font-size: 16px;
  color: var(--cocoa);
  line-height: 1.85;
  margin-bottom: 20px;
}

.post-body .answer-lead {
  font-size: 17px;
  color: var(--espresso);
  font-weight: 500;
  line-height: 1.75;
  margin-bottom: 20px;
  padding: 18px 22px;
  background: var(--caramel-soft);
  border-radius: 12px;
  border-left: 3px solid var(--caramel);
}

.post-body strong { color: var(--espresso); font-weight: 600; }

.post-body ul {
  margin: 16px 0 24px 20px;
  list-style: disc;
}

.post-body li {
  font-size: 16px;
  color: var(--cocoa);
  line-height: 1.75;
  margin-bottom: 10px;
}

.post-body ul li::marker { color: var(--caramel); }

.post-body a:not(.btn-primary) {
  color: var(--caramel-2);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.post-body a:not(.btn-primary):hover { color: var(--caramel); }

/* City link grid on pillar page */
.post-body ul:has(a[href*="/seo-for-therapists/"]) {
  list-style: none;
  margin-left: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 24px;
  padding: 24px;
  background: var(--cream-2);
  border: 1px solid var(--sand-line);
  border-radius: 14px;
}

.post-body ul:has(a[href*="/seo-for-therapists/"]) li {
  margin-bottom: 0;
}

/* ?? Stat cards ?? */
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 32px 0;
}

.stat-box {
  background: var(--white);
  border: 1px solid var(--sand-line);
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.stat-box .num {
  font-family: 'Fraunces', serif;
  font-size: 40px;
  font-weight: 600;
  color: var(--caramel);
  letter-spacing: -1.5px;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-box .label {
  font-size: 13px;
  color: var(--mocha);
  line-height: 1.5;
}

/* ?? Callout / CTA / buttons ?? */
.callout {
  background: var(--cream-2);
  border: 1px solid var(--sand-line);
  border-left: 4px solid var(--caramel);
  border-radius: 12px;
  padding: 24px 28px;
  margin: 32px 0;
}

.callout p { margin: 0; font-size: 16px; color: var(--cocoa); }

.callout a {
  color: var(--caramel-2);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.post-cta {
  background: var(--cream-2);
  border: 1px solid var(--sand-line);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  margin: 48px 0;
}

.post-cta h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--espresso);
}

.post-cta p {
  font-size: 16px;
  color: var(--mocha);
  max-width: 420px;
  margin: 0 auto 24px;
}

.btn-primary {
  background: var(--caramel);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  display: inline-block;
  transition: all 0.2s;
  box-shadow: 0 8px 20px -10px rgba(9, 94, 63, 0.5);
  text-decoration: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -10px rgba(9, 94, 63, 0.6);
}

.btn-lg {
  background: var(--caramel);
  color: var(--white);
  padding: 18px 48px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 16.5px;
  display: inline-block;
  box-shadow: 0 16px 36px -14px rgba(9, 94, 63, 0.5);
  transition: all 0.22s;
  text-decoration: none;
}

.btn-lg:hover {
  background: var(--caramel-2);
  transform: translateY(-2px);
}

/* ?? Comparison table ?? */
.compare-table-wrap {
  overflow-x: auto;
  margin: 32px 0;
  border-radius: 16px;
  box-shadow: var(--shadow-lift);
  -webkit-overflow-scrolling: touch;
}

.compare-table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  background: var(--white);
  font-size: 14px;
}

.compare-table thead tr { background: var(--espresso); }

.compare-table th {
  padding: 18px 20px;
  text-align: center;
  color: rgba(251, 248, 243, 0.6);
  font-weight: 600;
  font-size: 13px;
}

.compare-table th:first-child { text-align: left; }

.compare-table th.col-mindrank {
  background: var(--caramel);
  color: var(--cream);
  font-size: 14px;
}

.compare-table td {
  padding: 16px 20px;
  text-align: center;
  border-bottom: 1px solid var(--sand);
  color: var(--cocoa);
}

.compare-table td:first-child { text-align: left; }

.compare-table td.col-mindrank {
  background: rgba(13, 122, 82, 0.06);
  font-weight: 600;
  color: var(--caramel-2);
}

.compare-table tbody tr:last-child td { border-bottom: none; }

.compare-table tbody tr:hover td { background: var(--cream); }

.compare-table tbody tr:hover td.col-mindrank { background: rgba(13, 122, 82, 0.1); }

.compare-feature { font-weight: 500; color: var(--espresso); }

.cmp-no { color: var(--caramel); font-weight: 600; }

.cmp-yes { color: #b0b8b4; }

/* ?? City footer ?? */
.city-footer {
  border-top: 1px solid var(--sand-line);
  padding: 48px var(--pad-x) 32px;
  max-width: var(--content-max);
  margin: 0 auto;
}

.city-footer h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--espresso);
  margin-bottom: 16px;
}

.city-footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 20px;
}

.city-footer-grid a {
  font-size: 14px;
  color: var(--caramel-2);
  font-weight: 500;
}

.city-footer-grid a:hover { text-decoration: underline; }

.city-footer-current {
  font-size: 14px;
  color: var(--mocha);
  font-weight: 600;
}

/* ?? About page ?? */
.about-hero {
  padding: 140px var(--pad-x) 60px;
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  align-items: start;
}

.about-photo {
  width: 200px;
  height: 200px;
  border-radius: 20px;
  object-fit: cover;
  background: var(--cream-2);
  border: 2px solid var(--sand-line);
}

.about-photo-fallback {
  width: 200px;
  height: 200px;
  border-radius: 20px;
  background: var(--cream-2);
  border: 2px solid var(--sand-line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-size: 48px;
  color: var(--caramel-2);
}

.about-hero h1 {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 600;
  letter-spacing: -1px;
  color: var(--espresso);
  margin-bottom: 8px;
  line-height: 1.15;
}

.about-hero .role {
  font-size: 16px;
  color: var(--caramel-2);
  font-weight: 600;
  margin-bottom: 20px;
}

.about-body {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--pad-x) 80px;
}

.about-body p {
  font-size: 17px;
  line-height: 1.85;
  margin-bottom: 22px;
  color: var(--cocoa);
}

.about-body h2 {
  font-size: 26px;
  font-weight: 600;
  color: var(--espresso);
  margin: 48px 0 16px;
}

/* ?? Blog index ?? */
.blog-hero {
  padding: 140px var(--pad-x) 80px;
  max-width: var(--content-max);
  margin: 0 auto;
}

.section-label {
  color: var(--caramel-2);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-label::before {
  content: '';
  width: 26px;
  height: 1.5px;
  background: var(--caramel);
  display: inline-block;
}

.blog-hero h1 {
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 600;
  letter-spacing: -1.8px;
  line-height: 1.06;
  color: var(--espresso);
  margin-bottom: 20px;
}

.blog-hero h1 em { color: var(--caramel); font-style: italic; font-weight: 500; }

.blog-hero p {
  font-size: 17.5px;
  color: var(--mocha);
  line-height: 1.75;
  max-width: 500px;
}

.hero-divider {
  border: none;
  border-top: 1px solid var(--sand-line);
  max-width: var(--content-max);
  margin: 0 auto;
}

.posts-wrap {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--pad-x) 100px;
}

.post-card {
  display: block;
  padding: 52px 0;
  border-bottom: 1px solid var(--sand-line);
  transition: opacity 0.2s;
}

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

.post-card:hover .post-card-title { color: var(--caramel-2); }

.post-card:hover .read-link { color: var(--caramel-2); }

.post-card-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.post-cat {
  background: var(--caramel-soft);
  border: 1px solid rgba(13, 122, 82, 0.22);
  color: var(--caramel-2);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
}

.post-read-time { font-size: 13px; color: var(--mocha); }

.post-card-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(26px, 3.2vw, 36px);
  font-weight: 600;
  letter-spacing: -0.8px;
  line-height: 1.15;
  color: var(--espresso);
  margin-bottom: 16px;
  transition: color 0.2s;
}

.post-card-title em { color: var(--caramel); font-style: italic; font-weight: 500; }

.post-card-excerpt {
  font-size: 16.5px;
  color: var(--mocha);
  line-height: 1.75;
  max-width: 640px;
  margin-bottom: 26px;
}

.read-link {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--caramel);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

/* ?? Legal pages ?? */
.page-wrap {
  max-width: var(--content-narrow);
  margin: 0 auto;
  padding: 100px var(--pad-x) 100px;
}

.page-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mocha);
  margin-bottom: 16px;
}

.page-wrap h1 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 600;
  color: var(--espresso);
  margin-bottom: 12px;
  line-height: 1.15;
}

.last-updated {
  font-size: 13px;
  color: var(--mocha);
  margin-bottom: 56px;
}

.page-wrap h2 {
  font-size: 22px;
  font-weight: 600;
  color: var(--espresso);
  margin: 48px 0 14px;
}

.page-wrap p {
  font-size: 15.5px;
  color: #2a4a3a;
  margin-bottom: 16px;
  line-height: 1.8;
}

.page-wrap ul {
  padding-left: 22px;
  margin-bottom: 16px;
}

.page-wrap ul li {
  font-size: 15.5px;
  color: #2a4a3a;
  margin-bottom: 8px;
  line-height: 1.7;
}

.page-wrap a {
  color: var(--caramel-2);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.divider {
  border: none;
  border-top: 1px solid var(--sand-line);
  margin: 40px 0;
}

/* ?? Case studies ?? */
.cs-hero {
  background: var(--espresso);
  padding: 140px var(--pad-x) 80px;
}

.cs-hero-inner {
  max-width: 900px;
  margin: 0 auto;
}

.cs-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.cs-eyebrow::before {
  content: '';
  width: 24px;
  height: 1.5px;
  background: var(--sage);
  display: inline-block;
}

.cs-hero h1 {
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 600;
  color: var(--cream);
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin-bottom: 36px;
}

.cs-hero h1 em { color: var(--amber); font-style: italic; font-weight: 500; }

.cs-hero-meta {
  font-size: 14px;
  color: rgba(251, 248, 243, 0.52);
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.cs-disclaimer {
  background: rgba(224, 164, 88, 0.12);
  border: 1px solid rgba(224, 164, 88, 0.35);
  border-radius: 12px;
  padding: 16px 22px;
  margin: 0 auto 32px;
  width: min(900px, calc(100% - 2 * var(--pad-x)));
  font-size: 14px;
  color: var(--cocoa);
  line-height: 1.65;
}

.cs-disclaimer strong { color: var(--amber); }

.cs-stats-bar {
  background: var(--cream-2);
  border-bottom: 1px solid var(--sand-line);
  padding: 56px var(--pad-x);
}

.cs-stats-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.cs-stat {
  padding: 0 28px;
  border-right: 1px solid var(--sand-line);
  text-align: center;
}

.cs-stat:first-child { padding-left: 0; text-align: left; }

.cs-stat:last-child { border-right: none; padding-right: 0; text-align: right; }

.cs-stat-val {
  font-family: 'Fraunces', serif;
  font-size: 44px;
  font-weight: 600;
  color: var(--caramel);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 10px;
}

.cs-stat-lbl { font-size: 13px; color: var(--mocha); line-height: 1.4; }

.cs-body {
  max-width: var(--content-narrow);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.cs-section {
  padding: 76px 0;
  border-bottom: 1px solid var(--sand-line);
}

.cs-section:last-child { border-bottom: none; }

.cs-section-lbl {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--caramel);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cs-section-lbl::before {
  content: '';
  width: 20px;
  height: 1.5px;
  background: var(--caramel);
  display: inline-block;
}

.cs-section h2 {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 600;
  color: var(--espresso);
  letter-spacing: -0.8px;
  line-height: 1.12;
  margin-bottom: 26px;
}

.cs-section h2 em { color: var(--caramel); font-style: italic; font-weight: 500; }

.cs-section p {
  font-size: 17px;
  color: var(--cocoa);
  line-height: 1.82;
  margin-bottom: 22px;
}

.cs-section p:last-child { margin-bottom: 0; }

.cs-metric-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 32px 0;
}

.cs-metric-box {
  background: var(--cream-2);
  border: 1px solid var(--sand-line);
  border-radius: 16px;
  padding: 28px 24px;
}

.cs-metric-box.dark {
  background: var(--espresso);
  border-color: transparent;
}

.cs-metric-num {
  font-family: 'Fraunces', serif;
  font-size: 38px;
  font-weight: 600;
  color: var(--caramel);
  letter-spacing: -0.8px;
  line-height: 1;
  margin-bottom: 10px;
}

.cs-metric-box.dark .cs-metric-num { color: var(--amber); }

.cs-metric-txt { font-size: 13.5px; color: var(--mocha); line-height: 1.5; }

.cs-metric-box.dark .cs-metric-txt { color: rgba(251, 248, 243, 0.62); }

.cs-steps { display: flex; flex-direction: column; gap: 30px; margin-top: 36px; }

.cs-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  align-items: start;
}

.cs-step-n {
  width: 48px;
  height: 48px;
  background: var(--caramel-soft);
  border: 1px solid rgba(13, 122, 82, 0.22);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--caramel);
  flex-shrink: 0;
}

.cs-step h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--espresso);
  margin-bottom: 8px;
}

.cs-step p { font-size: 15.5px; color: var(--mocha); line-height: 1.72; margin: 0; }

.cs-profile {
  background: var(--cream);
  padding: 60px var(--pad-x);
  border-bottom: 1px solid var(--sand-line);
}

.cs-profile-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 56px;
  align-items: center;
}

.cs-profile-img {
  width: 210px;
  height: 240px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 48px -14px rgba(14, 33, 25, 0.24);
  flex-shrink: 0;
}

.cs-profile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.cs-profile-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--caramel);
  margin-bottom: 10px;
}

.cs-profile-name {
  font-size: 30px;
  font-weight: 600;
  color: var(--espresso);
  margin-bottom: 4px;
  line-height: 1.1;
}

.cs-profile-role { font-size: 15px; color: var(--mocha); margin-bottom: 22px; line-height: 1.55; }

.cs-profile-tags { display: flex; gap: 8px; flex-wrap: wrap; }

.cs-profile-tag {
  background: rgba(13, 122, 82, 0.08);
  border: 1px solid rgba(13, 122, 82, 0.16);
  color: var(--caramel-2);
  font-size: 12px;
  font-weight: 500;
  padding: 5px 14px;
  border-radius: 100px;
}

.cs-evidence {
  background: var(--cream-2);
  padding: 86px var(--pad-x);
}

.cs-evidence-inner { max-width: 900px; margin: 0 auto; }

.cs-ev-lbl {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--caramel);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cs-ev-lbl::before {
  content: '';
  width: 20px;
  height: 1.5px;
  background: var(--caramel);
  display: inline-block;
}

.cs-ev-h2 {
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 600;
  color: var(--espresso);
  letter-spacing: -0.6px;
  margin-bottom: 36px;
  line-height: 1.15;
}

.cs-ev-h2 em { color: var(--caramel); font-style: italic; }

.ev-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }

.ev-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 30px -8px rgba(14, 33, 25, 0.12);
  border: 1px solid rgba(228, 216, 199, 0.5);
}

.ev-topbar {
  background: #f5f5f5;
  padding: 9px 14px;
  display: flex;
  align-items: center;
  gap: 5px;
  border-bottom: 1px solid #ebebeb;
}

.ev-dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; flex-shrink: 0; }

.ev-dot.r { background: #ff5f57; }
.ev-dot.y { background: #febc2e; }
.ev-dot.g { background: #28c840; }

.ev-topbar-url {
  font-size: 10.5px;
  color: #aaa;
  margin-left: 8px;
  font-family: monospace;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.ev-content { padding: 20px 22px; }

.ev-ev-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #bbb;
  margin-bottom: 14px;
}

.ev-rank-row {
  display: flex;
  align-items: center;
  padding: 7px 0;
  border-bottom: 1px solid #f4f4f4;
  gap: 8px;
}

.ev-rank-row:last-child { border-bottom: none; }

.ev-rank-kw { font-size: 12px; color: #333; flex: 1; line-height: 1.3; }

.ev-rank-change { font-size: 10px; color: #4caf50; font-weight: 600; white-space: nowrap; }

.ev-badge { font-size: 11px; font-weight: 700; padding: 3px 9px; border-radius: 100px; white-space: nowrap; }

.ev-badge.p1 { background: #e8f5e9; color: #2e7d32; }
.ev-badge.p2 { background: #e3f2fd; color: #1565c0; }
.ev-badge.p3 { background: #fff8e1; color: #f57c00; }

.ev-chart-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 18px;
}

.ev-chart-big {
  font-family: 'Fraunces', serif;
  font-size: 40px;
  font-weight: 600;
  color: var(--caramel);
  line-height: 1;
}

.ev-chart-sub { font-size: 11px; color: #888; margin-top: 4px; }

.ev-chart-pill {
  background: #e8f5e9;
  color: #2e7d32;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 11px;
  border-radius: 100px;
  white-space: nowrap;
  margin-top: 4px;
}

.ev-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 72px;
  margin-bottom: 6px;
}

.ev-bar-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  height: 100%;
  justify-content: flex-end;
}

.ev-bar-fill { width: 100%; background: rgba(13, 122, 82, 0.14); border-radius: 3px 3px 0 0; }

.ev-bar-fill.hi { background: var(--caramel); }

.ev-bar-mo { font-size: 8.5px; color: #ccc; text-align: center; }

.ev-map-searchbar {
  background: #f8f9fa;
  border: 1.5px solid #e0e0e0;
  border-radius: 24px;
  padding: 8px 14px;
  font-size: 11.5px;
  color: #444;
  margin-bottom: 12px;
}

.ev-map-item {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 9px;
  padding: 9px 0;
  border-bottom: 1px solid #f4f4f4;
  align-items: start;
}

.ev-map-item:last-child { border-bottom: none; }

.ev-map-pin {
  width: 20px;
  height: 20px;
  background: var(--caramel);
  color: #fff;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  flex-shrink: 0;
}

.ev-map-info h5 {
  font-size: 12px;
  font-weight: 600;
  color: #1a0dab;
  margin: 0 0 2px;
  font-family: 'Inter', sans-serif;
}

.ev-map-stars { font-size: 10px; color: #f9ab00; }

.ev-map-addr { font-size: 10px; color: #777; margin-top: 1px; }

.cs-timeline {
  background: var(--espresso);
  padding: 90px var(--pad-x);
}

.cs-timeline-inner { max-width: var(--content-narrow); margin: 0 auto; }

.cs-tl-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cs-tl-label::before {
  content: '';
  width: 20px;
  height: 1.5px;
  background: var(--sage);
  display: inline-block;
}

.cs-timeline h2 {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 600;
  color: var(--cream);
  letter-spacing: -0.8px;
  margin-bottom: 52px;
}

.cs-timeline h2 em { color: var(--amber); font-style: italic; }

.tl-items { display: flex; flex-direction: column; }

.tl-item { display: grid; grid-template-columns: 110px 1fr; }

.tl-month {
  padding: 22px 28px 22px 0;
  border-right: 2px solid rgba(255, 255, 255, 0.1);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--sage);
  text-transform: uppercase;
  position: relative;
  line-height: 1.4;
}

.tl-month::after {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--sage);
  border-radius: 50%;
  position: absolute;
  right: -5px;
  top: 30px;
}

.tl-content {
  padding: 22px 0 22px 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.tl-item:last-child .tl-content { border-bottom: none; }

.tl-content h4 {
  font-size: 19px;
  color: var(--cream);
  font-weight: 600;
  margin-bottom: 8px;
}

.tl-content p { font-size: 14.5px; color: rgba(251, 248, 243, 0.6); line-height: 1.68; }

.cs-quote {
  background: var(--caramel);
  padding: 80px var(--pad-x);
  text-align: center;
}

.cs-quote blockquote {
  max-width: 680px;
  margin: 0 auto;
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 500;
  font-style: italic;
  color: var(--cream);
  line-height: 1.5;
  letter-spacing: -0.4px;
}

.cs-quote cite {
  display: block;
  margin-top: 28px;
  font-size: 12px;
  font-style: normal;
  color: rgba(251, 248, 243, 0.68);
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.cs-cta {
  padding: 110px var(--pad-x);
  text-align: center;
}

.cs-cta h2 {
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 600;
  color: var(--espresso);
  letter-spacing: -1.2px;
  line-height: 1.1;
  margin-bottom: 22px;
}

.cs-cta h2 em { color: var(--caramel); font-style: italic; }

.cs-cta p {
  font-size: 17px;
  color: var(--mocha);
  margin-bottom: 40px;
  line-height: 1.72;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ?? Footers ?? */
footer { border-top: 1px solid var(--sand-line); background: var(--cream); }

.footer-wrap {
  padding: 40px var(--pad-x);
  max-width: var(--content-wide);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-logo {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--espresso);
}

.footer-logo span { color: var(--caramel); font-style: italic; }

.footer-text { font-size: 13.5px; color: var(--mocha); }

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
}

.footer-links a {
  color: var(--caramel-2);
  font-weight: 500;
}

.footer-back {
  font-size: 14px;
  color: var(--caramel);
  font-weight: 500;
}

.footer-back:hover { color: var(--caramel-2); }

.footer-copy { font-size: 13px; color: var(--mocha); }

/* Inner page simple footer */
footer:has(.footer-back) {
  padding: 40px var(--pad-x);
  max-width: var(--content-max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ?? Responsive ?? */
@media (max-width: 900px) {
  :root {
    --pad-x: 24px;
  }

  .section-wrap { padding: 76px var(--pad-x); }

  .post-hero { padding: 110px var(--pad-x) 50px; }

  .post-body { padding: 0 var(--pad-x) 60px; }

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

  .city-footer-grid { grid-template-columns: repeat(2, 1fr); }

  .post-body ul:has(a[href*="/seo-for-therapists/"]) {
    grid-template-columns: 1fr;
  }

  .cs-hero { padding: 110px var(--pad-x) 60px; }

  .cs-stats-bar { padding: 40px var(--pad-x); }

  .cs-stats-inner { grid-template-columns: repeat(2, 1fr); gap: 0; }

  .cs-stat {
    padding: 20px 14px;
    border-right: none;
    border-bottom: 1px solid var(--sand-line);
    text-align: center !important;
  }

  .cs-stat:nth-child(odd) { border-right: 1px solid var(--sand-line); }

  .cs-body { padding: 0 var(--pad-x); }

  .cs-metric-grid { grid-template-columns: 1fr; }

  .cs-timeline { padding: 60px var(--pad-x); }

  .cs-quote { padding: 60px var(--pad-x); }

  .cs-cta { padding: 80px var(--pad-x); }

  .cs-profile { padding: 40px var(--pad-x); }

  .cs-profile-inner { grid-template-columns: 150px 1fr; gap: 24px; }

  .cs-profile-img { width: 150px; height: 170px; }

  .cs-evidence { padding: 60px var(--pad-x); }

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

  .about-hero {
    grid-template-columns: 1fr;
    padding: 120px var(--pad-x) 40px;
    text-align: center;
  }

  .about-photo,
  .about-photo-fallback { margin: 0 auto; }

  .about-body { padding: 0 var(--pad-x) 60px; }

  .blog-hero { padding: 120px var(--pad-x) 60px; }

  .posts-wrap { padding: 0 var(--pad-x) 80px; }

  .page-wrap { padding: 100px var(--pad-x) 72px; }

  .footer-wrap,
  footer:has(.footer-back) {
    flex-direction: column;
    text-align: center;
    padding: 36px var(--pad-x);
  }

  .compare-table-wrap {
    margin-left: calc(-1 * var(--pad-x));
    margin-right: calc(-1 * var(--pad-x));
    border-radius: 0;
  }
}

@media (max-width: 560px) {
  .cs-profile-inner { grid-template-columns: 1fr; }

  .city-footer-grid { grid-template-columns: 1fr; }

  .tl-item { grid-template-columns: 80px 1fr; }
}
