/* Jhanelle Peters Psychotherapy
   Design system extracted from Concept 2 (editorial navy + terracotta)
   Display: DM Serif Display | UI: DM Sans
*/
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --navy: #1B2838;
  --navy-mid: #243447;
  --navy-light: #2E4259;
  --stone: #E8E0D4;
  --stone-light: #F0EBE3;
  --sand: #F5F1EC;
  --warm-white: #FAF8F5;
  --terracotta: #C67A4A;
  --terracotta-hover: #B06A3E;
  --terracotta-light: #D4A080;
  --text-primary: #1B2838;
  --text-secondary: #5A6470;
  --text-tertiary: #6B7280;
  --border-subtle: rgba(27,40,56,0.08);
  --max-w: 1200px;
  --pad-x: 56px;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-primary);
  background: var(--warm-white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--terracotta); }

/* ── BANNER STRIP (off-menu low-cost link per Jhanelle) ── */
.banner-strip {
  background: var(--navy);
  color: var(--terracotta-light);
  text-align: center;
  padding: 9px var(--pad-x);
  font-size: 13px;
  letter-spacing: 0.3px;
}
.banner-strip a { color: var(--warm-white); border-bottom: 1px solid var(--terracotta-light); text-decoration: none; padding-bottom: 1px; }
.banner-strip a:hover { color: var(--terracotta-light); }

.trust-bar {
  position: static;
  background: var(--sand);
  color: var(--text-secondary);
  padding: 10px var(--pad-x);
  font-size: 13px;
  letter-spacing: 0.15px;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.trust-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 6px 18px;
  text-align: center;
}
.trust-bar .trust-item { white-space: nowrap; }
.trust-bar strong { color: var(--navy); font-weight: 600; }
.trust-bar .trust-meta { color: var(--text-secondary); font-weight: 400; }
.trust-bar .trust-sep {
  color: var(--terracotta);
  font-size: 10px;
  line-height: 1;
  display: inline-block;
  transform: translateY(-1px);
}
@media (max-width: 768px) {
  .trust-bar { font-size: 12px; padding: 8px 16px; }
  .trust-bar-inner { gap: 4px 12px; }
  .trust-bar .trust-sep { display: none; }
  .trust-bar .trust-item { white-space: normal; }
}

/* ── NAV + MEGA-MENU ── */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px var(--pad-x);
  background: var(--warm-white);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border-subtle);
}
.nav-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.nav-right { display: flex; gap: 32px; align-items: center; }
.nav-item { position: relative; }
.nav-link {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 400;
  transition: color 0.2s;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  padding: 8px 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.nav-link:hover, .nav-link[aria-expanded="true"] { color: var(--navy); }
.nav-link .caret { font-size: 10px; transition: transform 0.2s; }
.nav-link[aria-expanded="true"] .caret { transform: rotate(180deg); }

.mega {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--warm-white);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 24px;
  min-width: 540px;
  box-shadow: 0 20px 40px rgba(27,40,56,0.08);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px 28px;
}
.nav-item.open .mega { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.mega a {
  text-decoration: none;
  color: var(--text-secondary);
  padding: 10px 12px;
  border-radius: 6px;
  display: block;
  font-size: 14px;
  transition: background 0.15s, color 0.15s;
}
.mega a strong {
  display: block;
  color: var(--navy);
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: 15px;
  margin-bottom: 2px;
}
.mega a:hover { background: var(--sand); color: var(--navy); }
.mega a:hover strong { color: var(--terracotta); }
.mega--locations { min-width: 360px; grid-template-columns: 1fr 1fr; }

.btn-terra {
  background: var(--terracotta);
  color: white;
  padding: 11px 26px;
  border: none;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.1s;
  font-family: 'DM Sans', sans-serif;
  display: inline-block;
}
.btn-terra:hover { background: var(--terracotta-hover); }
.btn-terra:active { transform: scale(0.98); }
.btn-ghost {
  background: transparent;
  color: var(--navy);
  padding: 11px 24px;
  border: 1.5px solid var(--navy);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, color 0.2s;
}
.btn-ghost:hover { background: var(--navy); color: white; }

.mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.mobile-toggle svg { width: 24px; height: 24px; stroke: var(--navy); }
.mobile-panel {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--warm-white);
  z-index: 200;
  padding: 24px;
  overflow-y: auto;
}
.mobile-panel.open { display: block; }
.mobile-panel-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }
.mobile-panel a { display: block; padding: 14px 0; font-size: 18px; color: var(--navy); text-decoration: none; border-bottom: 1px solid var(--border-subtle); font-family: 'DM Serif Display', serif; }
.mobile-panel .mobile-sub { padding-left: 16px; font-size: 15px; color: var(--text-secondary); font-family: 'DM Sans', sans-serif; }
.mobile-panel .btn-terra { display: block; text-align: center; margin-top: 24px; }

/* ── HERO ── */
.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: min(86vh, 740px);
  background: var(--sand);
}
.hero-text {
  padding: 96px var(--pad-x) 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-num, .eyebrow {
  font-family: 'DM Serif Display', serif;
  font-size: 13px;
  color: var(--terracotta);
  letter-spacing: 3px;
  margin-bottom: 24px;
  text-transform: uppercase;
}
.hero h1, .page-h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(38px, 4.5vw, 56px);
  font-weight: 400;
  line-height: 1.12;
  color: var(--navy);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.hero h1 em, .page-h1 em { font-style: italic; color: var(--terracotta); }
.hero-body {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.hero-link {
  color: var(--navy);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1.5px solid var(--navy);
  padding-bottom: 2px;
  transition: border-color 0.2s, color 0.2s;
}
.hero-link:hover { border-color: var(--terracotta); color: var(--terracotta); }
.hero-visual {
  background-size: cover;
  background-position: center;
  position: relative;
}
.hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--sand), transparent 32%);
}

/* ── SOCIAL PROOF STRIP (Concept 1 fusion per Jhanelle) ── */
.proof-strip {
  background: var(--warm-white);
  padding: 28px var(--pad-x);
  border-bottom: 1px solid var(--border-subtle);
}
.proof-strip-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 28px 48px;
  justify-content: center;
  align-items: center;
}
.proof-item {
  font-size: 13px;
  color: var(--text-secondary);
  letter-spacing: 0.4px;
}
.proof-item strong { color: var(--navy); font-weight: 500; }
.proof-sep { color: var(--terracotta); }

/* ── NUMBERED / SECTION FRAME ── */
.section {
  padding: 88px var(--pad-x);
  border-bottom: 1px solid var(--border-subtle);
}
.section-inner { max-width: var(--max-w); margin: 0 auto; }
.num-section {
  display: grid;
  grid-template-columns: 80px 1fr;
  padding: 88px var(--pad-x);
  border-bottom: 1px solid var(--border-subtle);
  max-width: var(--max-w);
  margin: 0 auto;
}
.num {
  font-family: 'DM Serif Display', serif;
  font-size: 64px;
  color: var(--stone);
  line-height: 1;
}
h2, .h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 20px;
}
h2 em, .h2 em { color: var(--terracotta); font-style: italic; }
h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--navy);
}
p { font-size: 16px; color: var(--text-secondary); line-height: 1.75; margin-bottom: 14px; max-width: 720px; }
ul.bullets { list-style: none; padding: 0; margin: 0 0 16px; }
ul.bullets li {
  padding: 8px 0 8px 24px;
  position: relative;
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 15px;
}
ul.bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18px;
  width: 12px;
  height: 1.5px;
  background: var(--terracotta);
}

/* ── PILLARS / CARDS ── */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}
.pillar { border-top: 2px solid var(--terracotta); padding-top: 18px; }
.pillar h4 { font-family: 'DM Serif Display', serif; font-size: 18px; font-weight: 400; color: var(--navy); margin-bottom: 8px; }
.pillar p { font-size: 13px; color: var(--text-secondary); line-height: 1.6; margin: 0; }

/* ── SERVICES LIST ROWS (homepage + hub) ── */
.svc-list { margin-top: 8px; }
.svc-row {
  display: grid;
  grid-template-columns: 1fr 2fr auto;
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid var(--border-subtle);
  align-items: center;
  text-decoration: none;
  color: inherit;
  transition: padding 0.2s;
}
.svc-row:hover { padding-left: 12px; }
.svc-row h3 { font-family: 'DM Serif Display', serif; font-size: 20px; font-weight: 400; color: var(--navy); }
.svc-row p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; margin: 0; }
.svc-row .arrow { font-size: 22px; color: var(--terracotta); transition: transform 0.2s; }
.svc-row:hover .arrow { transform: translateX(4px); }

/* ── ABOUT SPLIT ── */
.about-split { display: grid; grid-template-columns: 5fr 7fr; min-height: 500px; }
.about-img { background-size: cover; background-position: center top; min-height: 360px; }
.about-content { padding: 80px var(--pad-x); display: flex; flex-direction: column; justify-content: center; background: var(--sand); }
.about-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--terracotta);
  font-weight: 500;
  margin-bottom: 16px;
}
.cred-line { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.cred-chip {
  font-size: 12px;
  color: var(--navy);
  background: white;
  padding: 7px 16px;
  border-radius: 4px;
  font-weight: 500;
  border: 1px solid var(--border-subtle);
}

/* ── TEAM GRID ── */
.team-section { padding: 88px var(--pad-x); max-width: var(--max-w); margin: 0 auto; }
.team-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.tm { text-align: left; }
.tm-photo {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 14px;
  background: var(--stone-light);
}
.tm-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.tm:hover .tm-photo img { transform: scale(1.03); }
.tm h3 { font-family: 'DM Serif Display', serif; font-size: 17px; font-weight: 400; margin-bottom: 3px; }
.tm .title { font-size: 11px; color: var(--terracotta); text-transform: uppercase; letter-spacing: 1.5px; font-weight: 500; margin-bottom: 6px; }
.tm p { font-size: 13px; color: var(--text-secondary); line-height: 1.5; margin: 0; }
.tm-book {
  display: inline-block;
  margin-top: 10px;
  font-size: 12px;
  color: var(--navy);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid var(--navy);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}
.tm-book:hover { color: var(--terracotta); border-color: var(--terracotta); }
.video-tag { font-size: 11px; color: var(--text-secondary); display: inline-block; margin-top: 6px; font-style: italic; }

/* ── PRESS / LOGO WALL ── */
.press-wall {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 56px;
  align-items: center;
  justify-content: center;
  padding-top: 24px;
  opacity: 0.7;
}
.press-wall .logo-slot {
  height: 36px;
  min-width: 110px;
  background: var(--stone-light);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-tertiary);
  font-size: 12px;
  font-family: 'DM Serif Display', serif;
  letter-spacing: 0.5px;
}

/* ── QUOTE BLOCK ── */
.quote-block { background: var(--navy); padding: 88px var(--pad-x); text-align: center; }
.quote-block blockquote {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(22px, 3vw, 30px);
  color: white;
  font-style: italic;
  line-height: 1.45;
  max-width: 720px;
  margin: 0 auto 18px;
}
.quote-block cite { font-family: 'DM Sans', sans-serif; font-size: 12px; color: var(--terracotta-light); font-style: normal; letter-spacing: 2px; text-transform: uppercase; }

/* ── CTA ── */
.cta-editorial { padding: 88px var(--pad-x); text-align: center; background: var(--sand); }
.cta-editorial h2 { margin-bottom: 14px; }
.cta-editorial p { font-size: 16px; color: var(--text-secondary); margin-bottom: 32px; max-width: 480px; margin-left: auto; margin-right: auto; line-height: 1.7; }

/* ── FAQ ── */
.faq-list { max-width: 820px; margin: 32px auto 0; }
.faq-item {
  border-bottom: 1px solid var(--border-subtle);
  padding: 22px 0;
}
.faq-q {
  font-family: 'DM Serif Display', serif;
  font-size: 19px;
  color: var(--navy);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  font-weight: 400;
}
.faq-q::after {
  content: '+';
  color: var(--terracotta);
  font-size: 24px;
  transition: transform 0.2s;
  font-family: 'DM Sans', sans-serif;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0;
}
.faq-item.open .faq-a { max-height: 800px; padding: 14px 0 4px; }

/* ── BREADCRUMBS ── */
.breadcrumbs { font-size: 12px; color: var(--text-secondary); padding: 18px var(--pad-x); max-width: var(--max-w); margin: 0 auto; }
.breadcrumbs a { color: var(--text-secondary); text-decoration: none; }
.breadcrumbs a:hover { color: var(--terracotta); }
.breadcrumbs span.sep { margin: 0 8px; color: var(--terracotta); }

/* ── FORM ── */
.form-card { max-width: 620px; margin: 32px auto 0; background: white; padding: 36px; border-radius: 8px; border: 1px solid var(--border-subtle); }
.form-row { margin-bottom: 18px; }
.form-row label { display: block; font-size: 13px; color: var(--navy); margin-bottom: 6px; font-weight: 500; letter-spacing: 0.3px; }
.form-row input, .form-row select, .form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  font-family: inherit;
  font-size: 14px;
  background: var(--warm-white);
  color: var(--text-primary);
  transition: border-color 0.2s;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { border-color: var(--terracotta); }
.form-row textarea { min-height: 120px; resize: vertical; }
.form-row .help { font-size: 12px; color: var(--text-secondary); margin-top: 4px; }
.form-card .btn-terra { width: 100%; padding: 14px; font-size: 15px; border-radius: 8px; }

/* ── INFO GRID (services, pricing) ── */
.info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; margin-top: 32px; }
.info-card {
  background: var(--warm-white);
  border: 1px solid var(--border-subtle);
  padding: 28px;
  border-radius: 6px;
  display: block;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, transform 0.2s;
}
.info-card:hover { border-color: var(--terracotta); transform: translateY(-2px); }
.info-card h3 { margin-bottom: 8px; }
.info-card p { font-size: 14px; margin: 0; }
.info-card .price { font-family: 'DM Serif Display', serif; color: var(--terracotta); font-size: 16px; margin-top: 12px; display: block; }

/* ── CITY LIST (location pages) ── */
.city-list { margin-top: 28px; display: flex; flex-direction: column; gap: 0; }
.city-row { padding: 22px 0; border-bottom: 1px solid var(--border-subtle); display: grid; grid-template-columns: 220px 1fr; gap: 32px; align-items: baseline; }
.city-row:last-child { border-bottom: none; }
.city-row h3 { font-family: 'DM Serif Display', serif; color: var(--navy); font-size: 22px; font-weight: 400; margin: 0; }
.city-row p { color: var(--text-secondary); font-size: 15.5px; line-height: 1.65; margin: 0; }
@media (max-width: 768px) {
  .city-row { grid-template-columns: 1fr; gap: 8px; padding: 18px 0; }
  .city-row h3 { font-size: 20px; }
  .city-row p { font-size: 15px; }
}

/* ── FOOTER ── */
footer { background: var(--navy); color: var(--text-tertiary); padding: 56px var(--pad-x) 28px; }
.footer-inner { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 40px; max-width: var(--max-w); margin-left: auto; margin-right: auto; flex-wrap: wrap; gap: 40px; }
.footer-brand { font-family: 'DM Serif Display', serif; font-size: 18px; color: white; margin-bottom: 10px; }
footer p { font-size: 13px; line-height: 1.6; max-width: 320px; color: var(--text-tertiary); }
.footer-cols { display: grid; grid-template-columns: repeat(4, auto); gap: 56px; }
.footer-col h4 { font-size: 11px; text-transform: uppercase; letter-spacing: 2px; color: var(--terracotta-light); margin-bottom: 14px; font-weight: 500; }
.footer-col a { color: var(--text-tertiary); text-decoration: none; font-size: 13px; display: block; margin-bottom: 8px; transition: color 0.2s; }
.footer-col a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 20px; font-size: 12px; display: flex; justify-content: space-between; max-width: var(--max-w); margin: 0 auto; flex-wrap: wrap; gap: 12px; color: var(--text-tertiary); }
.qc-note { color: var(--terracotta-light); font-size: 12px; margin-top: 8px; text-align: center; }

/* ── REVEAL ANIM ── */
html.js .reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
html.js .reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  :root { --pad-x: 32px; }
  .hero { grid-template-columns: 1fr; }
  .hero-visual { min-height: 360px; }
  .about-split { grid-template-columns: 1fr; }
  .team-row { grid-template-columns: repeat(3, 1fr); }
  .pillars { grid-template-columns: 1fr 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); gap: 36px; }
}
@media (max-width: 768px) {
  :root { --pad-x: 20px; }
  .nav-right { display: none; }
  .mobile-toggle { display: block; }
  .hero-text { padding: 56px 20px 48px; }
  .hero h1, .page-h1 { font-size: 32px; }
  .num-section { grid-template-columns: 48px 1fr; padding: 56px 20px; }
  .num { font-size: 40px; }
  .section { padding: 56px 20px; }
  .team-row { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .svc-row { grid-template-columns: 1fr; gap: 6px; }
  .svc-row .arrow { display: none; }
  .pillars { grid-template-columns: 1fr; }
  .team-section { padding: 48px 20px; }
  .quote-block { padding: 56px 20px; }
  .cta-editorial { padding: 56px 20px; }
  footer { padding: 40px 20px 72px; }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 24px; }
  .about-content { padding: 48px 20px; }
  .proof-strip-inner { gap: 16px 20px; }
  .form-card { padding: 24px; }
  .banner-strip { font-size: 12px; padding: 8px 16px; }
}

/* ── A11Y + AUDIT FIXES (2026-07-03) ── */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy);
  color: #fff;
  padding: 10px 18px;
  z-index: 1000;
  border-radius: 0 0 6px 0;
  font-size: 14px;
  text-decoration: none;
}
.skip-link:focus { left: 0; }
:focus-visible { outline: 2px solid var(--terracotta); outline-offset: 2px; }
.form-row input:focus-visible, .form-row select:focus-visible, .form-row textarea:focus-visible { outline: 2px solid var(--terracotta); outline-offset: 1px; }
main:focus { outline: none; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 480px) {
  .footer-cols { grid-template-columns: 1fr; gap: 20px; }
}

/* == ROUND2 2026-07-16 == */
.nav-logo { display: inline-flex; align-items: center; gap: 10px; }
.nav-mark { height: 30px; width: auto; display: block; }
@media (max-width: 520px) {
  .nav-logo { font-size: 16px; gap: 8px; }
  .nav-mark { height: 24px; }
}
.proof-strip.cred-section { background: var(--sand); }
.cred-strip { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 14px; }
.cred-badge {
  display: inline-block;
  padding: 11px 20px;
  background: var(--warm-white);
  border: 1px solid var(--border-subtle);
  border-left: 3px solid var(--terracotta);
  font-size: 13.5px;
  color: var(--text-secondary);
  letter-spacing: 0.1px;
  line-height: 1.5;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.cred-badge strong { color: var(--navy); font-weight: 600; }
.cred-badge:hover { transform: translateY(-3px); box-shadow: 0 12px 24px rgba(27,40,56,0.10); }
@media (prefers-reduced-motion: reduce) {
  .cred-badge { transition: none; }
  .cred-badge:hover { transform: none; box-shadow: none; }
}
.mega--locations { min-width: 560px; }
.footer-newsletter-note { font-size: 12px; margin-top: 6px; }

/* == ROUND2-POLISH == */
.eyebrow, .about-label { color: #A0582E; }
.trusted-by .logo-wall { display: flex; flex-wrap: wrap; justify-content: center; gap: 36px 48px; }
.trusted-by .logo-cell { width: 140px; }
.logo-strip { display: flex !important; flex-wrap: wrap; justify-content: center; }

/* == ROUND2-MOBILE == */
.banner-strip a { white-space: nowrap; }
@media (max-width: 520px) {
  .cred-strip { flex-direction: column; align-items: stretch; }
  .cred-badge { text-align: center; }
  .tm-photo:empty { max-height: 180px; }
}

/* == ROUND2-A11Y == */
.hero-num { color: #A0582E; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  html.js .reveal { opacity: 1; transform: none; transition: none; }
  .bp-card, .podcast-card, .info-card, .therapist-card, .btn-terra { transition: none !important; }
  .bp-card:hover, .podcast-card:hover, .info-card:hover, .therapist-card:hover { transform: none !important; }
}

/* == ROUND2-TAP == */
@media(max-width:700px){ .footer-col a { display:block; padding:8px 0; } }
