/*
Theme Name: BHP Collective
Theme URI: https://www.behavioralhealthpathways.com
Author: BHP Collective
Description: Luxury soulful wellness theme for BHP Collective — parent of Behavioral Health Connections (BHC) and Behavioral Health Pathways (BHP). Where Wellness is First.
Version: 2.1.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: Private
Text Domain: bhp-connections
*/

/* ============================================================
   DESIGN TOKENS — BHP Connections Logo Palette
   ============================================================ */
:root {
  /* Core brand colors from butterfly logo */
  --amber:        #E0A000;
  --amber-light:  #F5D98A;
  --amber-pale:   #FDF6E3;
  --coral:        #E04020;
  --coral-light:  #F2C4B0;
  --coral-pale:   #FDF1EC;
  --periwinkle:   #8080C0;
  --peri-light:   #C4C4E8;
  --peri-pale:    #F0EEFA;
  --indigo:       #4020A0;
  --indigo-light: #A080C0;
  --cream:        #FDFAF3;
  --warm-white:   #FFFFFF;
  --sage-tint:    #F4F7F2;

  /* Text */
  --ink:          #1C1410;
  --ink-mid:      #4A3828;
  --ink-light:    #9A8878;
  --border:       rgba(224,160,0,0.1);
  --border-soft:  rgba(224,160,0,0.06);

  /* Typography */
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Jost', system-ui, sans-serif;

  /* Spacing */
  --section-pad: clamp(72px, 8vw, 120px);
  --container:   1280px;
  --gutter:      clamp(24px, 5vw, 80px);
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  background: var(--warm-white);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--sans); }
ul, ol { list-style: none; }
address { font-style: normal; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section {
  padding: var(--section-pad) 0;
}
.section--cream      { background: var(--cream); }
.section--white      { background: var(--warm-white); }
.section--amber-pale { background: var(--amber-pale); }
.section--peri-pale  { background: var(--peri-pale); }
.section--sage       { background: var(--sage-tint); }
.section--dark       { background: var(--ink); }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--serif);
  font-weight: 300;
  line-height: 1.12;
  color: var(--ink);
}
h1 { font-size: clamp(44px, 6vw, 72px); }
h2 { font-size: clamp(32px, 4vw, 52px); }
h3 { font-size: clamp(20px, 2.5vw, 28px); }
h4 { font-size: clamp(17px, 2vw, 22px); }
p  { font-size: clamp(15px, 1.2vw, 17px); line-height: 1.85; color: var(--ink-mid); font-weight: 300; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 15px 32px;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn--primary { background: var(--indigo); color: #fff; }
.btn--primary:hover { background: #2e1580; transform: translateY(-2px); color: #fff; }
.btn--ghost   { background: transparent; color: var(--ink-mid); border: 1px solid rgba(28,20,16,0.18); }
.btn--ghost:hover { border-color: var(--indigo); color: var(--indigo); }
.btn--amber   { background: var(--amber); color: #fff; }
.btn--amber:hover { background: #c08a00; transform: translateY(-2px); color: #fff; }
.btn--outline-white { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.4); }
.btn--outline-white:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); }

/* ============================================================
   EYEBROW / SECTION TAG
   ============================================================ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 20px;
  font-weight: 400;
}
.eyebrow__pip { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
/* ── TOP UTILITY BAR (portals) ─────────────────────────── */
.site-topbar {
  background: var(--indigo);
  padding: 0 var(--gutter);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.site-topbar__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 38px;
  gap: 16px;
}
.site-topbar__left {
  font-size: 11px;
  color: rgba(245,240,232,0.4);
  font-weight: 300;
  letter-spacing: 0.08em;
}
.site-topbar__right {
  display: flex;
  align-items: center;
  gap: 0;
}
.site-topbar__portal {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 16px;
  height: 38px;
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  border-left: 1px solid rgba(255,255,255,0.08);
}
.site-topbar__portal--employee {
  color: rgba(245,240,232,0.6);
}
.site-topbar__portal--employee:hover {
  color: #fff;
  background: rgba(255,255,255,0.06);
}
.site-topbar__portal--client {
  color: var(--amber);
  background: rgba(224,160,0,0.1);
}
.site-topbar__portal--client:hover {
  background: rgba(224,160,0,0.18);
  color: #F5D98A;
}
@media (max-width: 600px) {
  .site-topbar__left { display: none; }
  .site-topbar__portal { padding: 0 12px; font-size: 9px; }
}

.site-announce {
  background: var(--indigo);
  padding: 13px var(--gutter);
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  font-weight: 300;
  width: 100%;
  display: block;
}
.site-announce strong { color: var(--amber-light); font-weight: 500; letter-spacing: 0.12em; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.site-header.scrolled { box-shadow: 0 2px 24px rgba(28,20,16,0.07); }

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 18px var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo__img {
  height: 48px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}
.nav-logo__text-group {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.nav-logo__name {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.02em;
  line-height: 1.1;
  white-space: nowrap;
}
.nav-logo__sub {
  font-size: 9px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink-light);
  font-weight: 300;
}
.nav-logo__pips {
  display: flex;
  gap: 3px;
  margin-top: 4px;
}
.nav-logo__pip { width: 14px; height: 2px; border-radius: 1px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-light);
  font-weight: 400;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.current { color: var(--ink); }

.nav-cta {
  flex-shrink: 0;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: var(--indigo);
  padding: 12px 24px;
  font-weight: 500;
  transition: background 0.25s, transform 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { background: #2e1580; transform: translateY(-1px); color: #fff; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--ink);
  border-radius: 1px;
  transition: all 0.3s ease;
  transform-origin: center;
}

/* Mobile menu */
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}
.mobile-nav.is-open {
  display: flex;
  max-height: 600px;
  padding: 16px 0;
}
.mobile-nav a {
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mid);
  padding: 14px var(--gutter);
  border-bottom: 1px solid var(--border-soft);
  font-weight: 400;
  transition: background 0.2s;
}
.mobile-nav a:hover { background: var(--amber-pale); color: var(--ink); }
.mobile-nav .mobile-nav__cta {
  margin: 16px var(--gutter) 8px;
  text-align: center;
  background: var(--indigo);
  color: #fff;
  border-bottom: none;
  padding: 14px;
}

/* ============================================================
   HERO — Full bleed with transparent logo zone
   ============================================================ */
.hero {
  min-height: 72vh;
  display: grid;
  grid-template-columns: 55% 45%;
  align-items: stretch;
  background: var(--warm-white);
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
}

.hero__left {
  padding: clamp(36px,4.5vw,64px) clamp(24px,4vw,56px) clamp(36px,4.5vw,64px) var(--gutter);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.hero__left::after {
  content: '';
  position: absolute;
  right: 0; top: 12%; bottom: 12%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--border), transparent);
}

.hero__eyebrow-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
}
.hero__eyebrow-line { width: 36px; height: 1px; background: var(--amber); opacity: 0.6; }
.hero__eyebrow-text {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-light);
  font-weight: 300;
}

.hero__heading {
  font-family: var(--serif);
  font-size: clamp(48px, 5.5vw, 72px);
  font-weight: 300;
  line-height: 1.06;
  color: var(--ink);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}
.hero__heading em { font-style: italic; font-weight: 400; }
.c-indigo { color: var(--indigo); }
.c-amber  { color: var(--amber); }
.c-coral  { color: var(--coral); }
.c-peri   { color: var(--periwinkle); }

.hero__body {
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.88;
  color: var(--ink-mid);
  max-width: 440px;
  margin-bottom: 40px;
  font-weight: 300;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero__affirm {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  background: var(--amber-pale);
  border-left: 3px solid var(--amber);
  width: fit-content;
}
.hero__affirm-pips { display: flex; gap: 4px; }
.hero__affirm-pip  { width: 7px; height: 7px; border-radius: 50%; }
.hero__affirm-text {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-light);
  font-weight: 300;
}

/* Hero right — carousel or logo */
.hero__right {
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: center;
  overflow: hidden;
  background: var(--warm-white);
  min-height: 0;
  min-width: 0;
}

/* Soft gradient orbs */
.hero__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.hero__orb--1 {
  width: 70%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(224,160,0,0.10) 0%, transparent 70%);
  top: -10%; right: -10%;
}
.hero__orb--2 {
  width: 50%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(224,64,32,0.07) 0%, transparent 70%);
  bottom: 10%; left: 5%;
}
.hero__orb--3 {
  width: 40%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(128,128,192,0.08) 0%, transparent 70%);
  top: 40%; right: 20%;
}

/* ── HERO CAROUSEL — sliding track ─────────────────────────── */
.hero-carousel {
  position: relative;
  width: 100%;
  /* Stretch to fill the hero__right column height */
  flex: 1 1 100%;
  height: 100%;
  min-height: 360px;
  overflow: hidden;
  z-index: 1;
  cursor: grab;
}
.hero-carousel:active { cursor: grabbing; }

/* Track: all slides in a single row; JS moves it with translateX */
.hero-carousel__track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

/* Each slide: full width, fills column height */
.hero-carousel__slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

/* picture and img fill the slide completely */
.hero-carousel__slide picture {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: var(--warm-white);
  overflow: hidden;
}
.hero-carousel__slide img {
  width: 100%;
  height: 100%;
  /* contain: whole photo always visible within the column bounds.
     Background fills any letterbox/pillarbox gaps. */
  object-fit: contain;
  object-position: center center;
  display: block;
  background: var(--warm-white);
}

/* Dots */
.hero-carousel__dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 10;
}
.hero-carousel__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.25s, transform 0.25s;
}
.hero-carousel__dot.is-active {
  background: #fff;
  transform: scale(1.25);
}

/* Prev / Next arrows — desktop only */
.hero-carousel__prev,
.hero-carousel__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 0.2s;
  backdrop-filter: blur(4px);
}
.hero-carousel__prev:hover,
.hero-carousel__next:hover { background: rgba(255,255,255,0.32); }
.hero-carousel__prev { left: 12px; }
.hero-carousel__next { right: 12px; }
@media (max-width: 768px) {
  .hero-carousel__prev,
  .hero-carousel__next { display: none; }
}

/* Logo zone fallback */
.hero__logo-zone {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 32px;
  width: 100%;
  height: 100%;
  min-height: 340px;
}
.hero__logo-img {
  width: clamp(200px, 26vw, 320px);
  height: auto;
  object-fit: contain;
}

/* Origins · Rooted · Rising */
.hero__words {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.hero__word {
  font-family: var(--serif);
  font-size: clamp(11px, 1vw, 13px);
  letter-spacing: 0.45em;
  text-transform: uppercase;
  font-style: italic;
  font-weight: 300;
  opacity: 0.55;
}

/* ============================================================
   TRUST BAR — matches screenshot: cream, serif, elegant
   ============================================================ */
.trust-bar {
  background: #EEEAE2;
  border-top: none;
  border-bottom: none;
  padding: clamp(20px,3vw,32px) var(--gutter);
}
.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  max-width: var(--container);
  margin: 0 auto;
  flex-wrap: wrap;
}
.trust-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
  min-width: 100px;
  text-align: center;
}
.trust-bar__num {
  font-family: var(--serif);
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.01em;
}
.trust-bar__lbl {
  font-size: clamp(8px, 0.7vw, 10px);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-light);
  font-weight: 400;
}
.trust-bar__div {
  width: 1px;
  height: 36px;
  background: rgba(28,20,16,0.15);
  flex-shrink: 0;
}

/* ============================================================
   BRAND CARDS — BHC & BHP
   ============================================================ */
/* ============================================================
   DUAL APPROACH — brand cards matching design reference
   ============================================================ */
.dual-approach-section { background: #EEEAE2; }

.dual-approach__heading {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 300;
  text-align: center;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.dual-approach__heading em {
  font-style: italic;
  color: var(--indigo);
  font-weight: 400;
}

.brand-cards-grid {
  display: grid;
  grid-template-columns: 1fr 3px 1fr;
  align-items: stretch;
}
.brand-cards-grid__divider {
  background: var(--amber);
  border-radius: 2px;
}

.brand-card-v2 {
  padding: clamp(36px, 4vw, 60px) clamp(28px, 3.5vw, 52px);
  display: flex;
  flex-direction: column;
}
.brand-card-v2--bhc { background: #DDD9EA; }
.brand-card-v2--bhp { background: #EDE6D6; }

.brand-card-v2__logo {
  height: 48px;
  width: auto;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 22px;
  max-width: 190px;
}
.brand-card-v2__eyebrow {
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink-light);
  font-weight: 400;
  margin-bottom: 16px;
}
.brand-card-v2__name {
  font-family: var(--serif);
  font-size: clamp(26px, 2.5vw, 36px);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.12;
  margin-bottom: 20px;
}
.brand-card-v2__name em { font-style: italic; font-weight: 400; }
.brand-card-v2__desc {
  font-size: clamp(14px, 1.1vw, 16px);
  color: var(--ink-mid);
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 28px;
}
.brand-card-v2__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.brand-card-v2__list-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-mid);
  font-weight: 300;
  line-height: 1.55;
}
.brand-card-v2__list-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 5px;
}
.brand-card-v2--bhc .brand-card-v2__list-dot { background: var(--indigo); }
.brand-card-v2--bhp .brand-card-v2__list-dot { background: var(--amber); }

.brand-card-v2__link {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  transition: gap 0.2s;
}
.brand-card-v2--bhc .brand-card-v2__link { color: var(--indigo); }
.brand-card-v2--bhp .brand-card-v2__link { color: var(--amber); }
.brand-card-v2__link:hover { gap: 13px; }

/* Keep old brand-card for pages that still use it */
.brand-card {
  padding: clamp(28px,3vw,44px) clamp(24px,3vw,40px);
  cursor: pointer;
  transition: transform 0.3s ease;
  position: relative;
}
.brand-card--peri { background: var(--peri-pale); border-left: 3px solid var(--periwinkle); }
.brand-card--amber { background: var(--amber-pale); border-left: 3px solid var(--amber); }
.brand-card__link { font-size:11px; letter-spacing:0.14em; text-transform:uppercase; font-weight:400; display:inline-flex; align-items:center; gap:6px; transition:gap 0.25s; }
.brand-card--peri .brand-card__link { color:var(--periwinkle); }
.brand-card--amber .brand-card__link { color:var(--amber); }

/* ============================================================
   SERVICES — Light, airy, readable
   ============================================================ */
.services-section { background: var(--sage-tint); }

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  gap: 24px;
  flex-wrap: wrap;
}
.services-heading {
  font-family: var(--serif);
  font-size: clamp(32px,4vw,50px);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.15;
}
.services-heading em { font-style: italic; color: var(--indigo); font-weight: 400; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.svc-card {
  background: #fff;
  padding: clamp(28px,3vw,40px) clamp(24px,2.5vw,32px);
  border: 1px solid var(--border-soft);
  border-top: 3px solid transparent;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}
.svc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(28,20,16,0.07);
}
.svc-card__num {
  font-family: var(--serif);
  font-size: 12px;
  font-style: italic;
  color: var(--ink-light);
  margin-bottom: 16px;
  opacity: 0.6;
}
.svc-card__icon {
  font-size: 28px;
  margin-bottom: 14px;
  line-height: 1;
}
.svc-card__name {
  font-family: var(--serif);
  font-size: clamp(18px,1.8vw,22px);
  color: var(--ink);
  font-weight: 400;
  margin-bottom: 10px;
  line-height: 1.25;
}
.svc-card__desc {
  font-size: 14px;
  color: var(--ink-mid);
  line-height: 1.8;
  font-weight: 300;
}
.svc-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 400;
  transition: gap 0.2s;
}
.svc-card:hover .svc-card__link { gap: 12px; }

/* ============================================================
   TEAM CAROUSEL
   ============================================================ */
.team-section { background: var(--warm-white); }

.team-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  gap: 24px;
  flex-wrap: wrap;
}
.team-heading {
  font-family: var(--serif);
  font-size: clamp(32px,4vw,50px);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.18;
  max-width: 540px;
}
.team-heading em { font-style: italic; color: var(--indigo); font-weight: 400; }

/* Scrollable track */
.team-track-wrap {
  position: relative;
  overflow: hidden;
}
.team-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 8px;
  cursor: grab;
}
.team-track::-webkit-scrollbar { display: none; }
.team-track.is-grabbing { cursor: grabbing; }

.team-card {
  flex: 0 0 clamp(200px, 22vw, 260px);
  scroll-snap-align: start;
}
.team-card__photo {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--amber-pale);
  position: relative;
  overflow: hidden;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  position: absolute;
  inset: 0;
}
.team-card__photo-top {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  z-index: 2;
}
.team-card__photo-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,20,16,0.18) 0%, transparent 50%);
  z-index: 1;
}
.team-card__initials {
  font-family: var(--serif);
  font-size: 36px;
  font-style: italic;
  font-weight: 300;
  color: var(--amber-light);
  position: relative;
  z-index: 0;
}
.team-card__name {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--ink);
  font-weight: 400;
  margin-bottom: 4px;
  line-height: 1.2;
}
.team-card__creds {
  font-size: 12px;
  color: var(--periwinkle);
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-bottom: 5px;
}
.team-card__title {
  font-size: 12px;
  color: var(--ink-mid);
  font-weight: 300;
  line-height: 1.5;
  font-style: italic;
}
.team-card__accepting {
  display: inline-block;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 3px 10px;
  border: 1px solid;
  margin-top: 8px;
  font-weight: 400;
}

/* Carousel nav arrows */
.team-arrows {
  display: flex;
  gap: 8px;
  margin-top: 24px;
}
.team-arrow {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: #fff;
  color: var(--ink-mid);
  font-size: 18px;
  transition: all 0.2s;
}
.team-arrow:hover { border-color: var(--indigo); color: var(--indigo); }
.team-arrow:disabled { opacity: 0.3; cursor: default; }

/* ============================================================
   VALUES — B.I.R.T.H & C.A.R.E
   ============================================================ */
.values-section {
  background: var(--cream);
}
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.values-group__heading {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 300;
  margin-bottom: 8px;
  line-height: 1.1;
}
.values-group__sub {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 28px;
}
.values-list { display: flex; flex-direction: column; gap: 0; }
.value-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border-soft);
  transition: padding-left 0.3s;
  cursor: default;
}
.value-item:first-child { border-top: 1px solid var(--border-soft); }
.value-item:hover { padding-left: 6px; }
.value-letter {
  font-family: var(--serif);
  font-size: 24px;
  font-style: italic;
  font-weight: 400;
  line-height: 1;
  flex-shrink: 0;
  width: 28px;
}
.value-content__name {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 3px;
}
.value-content__desc {
  font-size: 13px;
  color: var(--ink-light);
  line-height: 1.65;
  font-weight: 300;
}

/* ============================================================
   QUOTE / MISSION
   ============================================================ */
.mission-section {
  background: var(--peri-pale);
}
.mission-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px,6vw,80px);
  align-items: center;
}
.mission-quote {
  background: #fff;
  padding: clamp(36px,4vw,56px) clamp(28px,3vw,48px);
  position: relative;
}
.mission-quote::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--amber), var(--coral), var(--periwinkle));
}
.mission-quote__mark {
  font-family: var(--serif);
  font-size: 72px;
  line-height: 0.5;
  color: var(--amber-light);
  font-weight: 300;
  margin-bottom: 20px;
  user-select: none;
}
.mission-quote__text {
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 26px);
  font-style: italic;
  font-weight: 300;
  color: var(--ink);
  line-height: 1.5;
  margin-bottom: 24px;
}
.mission-quote__attr {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-light);
  display: flex;
  align-items: center;
  gap: 12px;
}
.mission-quote__attr::before {
  content: '';
  width: 22px; height: 1px;
  background: var(--amber);
  display: block;
}

.mission-right__heading {
  font-family: var(--serif);
  font-size: clamp(28px,3.5vw,44px);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 20px;
}
.mission-right__heading em { font-style: italic; color: var(--coral); font-weight: 400; }
.mission-right__body {
  font-size: clamp(14px,1.2vw,16px);
  line-height: 1.9;
  color: var(--ink-mid);
  font-weight: 300;
  margin-bottom: 32px;
}

/* ============================================================
   PATHWAY STEPS
   ============================================================ */
.pathway-section { background: var(--amber-pale); }
.pathway-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.pathway-steps::before {
  content: '';
  position: absolute;
  top: 26px;
  left: calc(12.5% + 12px);
  right: calc(12.5% + 12px);
  height: 1px;
  background: rgba(28,20,16,0.1);
  pointer-events: none;
}
.pathway-step { text-align: center; padding: 0 8px; }
.pathway-step__circle {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
  font-weight: 300;
  color: #fff;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
}
.pathway-step__name {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--ink);
  font-weight: 400;
  margin-bottom: 8px;
}
.pathway-step__desc {
  font-size: 13px;
  color: var(--ink-mid);
  line-height: 1.75;
  font-weight: 300;
}

/* ============================================================
   INSURANCE STRIP
   ============================================================ */
.insurance-strip {
  background: #fff;
  padding: 32px var(--gutter);
  display: flex;
  align-items: center;
  gap: 40px;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  flex-wrap: wrap;
}
.insurance-strip__label {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-light);
  white-space: nowrap;
  font-weight: 300;
  flex-shrink: 0;
}
.insurance-strip__logos {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: center;
}
.insurance-strip__logo {
  font-size: 13px;
  color: var(--ink-light);
  font-weight: 300;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: #fff;
  padding: var(--section-pad) var(--gutter);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.cta-section__orb--1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(224,160,0,0.07), transparent 70%);
  top: -150px; left: -100px;
}
.cta-section__orb--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(128,128,192,0.07), transparent 70%);
  bottom: -100px; right: -80px;
}
.cta-section__watermark {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--serif);
  font-size: clamp(60px, 12vw, 160px);
  font-weight: 300;
  font-style: italic;
  color: rgba(224,160,0,0.04);
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
}
.cta-section__content { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.cta-section__heading { color: var(--ink); margin-bottom: 16px; }
.cta-section__heading em { font-style: italic; color: var(--indigo); font-weight: 400; }
.cta-section__body { margin-bottom: 40px; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-section__actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ============================================================
   LOCATIONS
   ============================================================ */
.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.location-card {
  background: #fff;
  padding: clamp(32px,4vw,52px) clamp(24px,3vw,48px);
  cursor: pointer;
  transition: transform 0.3s ease;
  position: relative;
  border-bottom: 3px solid transparent;
}
.location-card:nth-child(1) { border-bottom-color: var(--amber); }
.location-card:nth-child(2) { border-bottom-color: var(--periwinkle); }
.location-card:hover { transform: translateY(-5px); }
.location-card__badge {
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 16px;
  font-weight: 300;
}
.location-card__name {
  font-family: var(--serif);
  font-size: clamp(22px,2.5vw,30px);
  color: var(--ink);
  font-weight: 400;
  margin-bottom: 14px;
}
.location-card__address {
  font-size: 14px;
  color: var(--ink-mid);
  line-height: 1.8;
  margin-bottom: 16px;
  font-weight: 300;
}
.location-card__phone {
  font-size: 15px;
  color: var(--ink);
  font-weight: 400;
  display: block;
}
.location-card__pill {
  position: absolute;
  top: 20px; right: 20px;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--periwinkle);
  border: 1px solid var(--periwinkle);
  padding: 4px 10px;
}

/* ============================================================
   INNER PAGE HERO
   ============================================================ */
.page-hero {
  padding: clamp(48px,6vw,80px) var(--gutter) clamp(40px,4vw,60px);
  background: var(--amber-pale);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--indigo), var(--periwinkle), var(--amber), var(--coral));
}
.page-hero__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(224,160,0,0.1), transparent 70%);
  right: -80px; top: -80px;
}
.page-hero__content { position: relative; z-index: 1; max-width: var(--container); margin: 0 auto; }
.page-hero__eyebrow {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 12px;
  font-weight: 300;
}
.page-hero__heading {
  font-family: var(--serif);
  font-size: clamp(36px,5vw,64px);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.08;
  margin-bottom: 16px;
}
.page-hero__heading em { font-style: italic; color: var(--indigo); }
.page-hero__sub {
  font-size: clamp(15px,1.2vw,18px);
  color: var(--ink-mid);
  font-weight: 300;
  max-width: 560px;
  line-height: 1.75;
}

/* ============================================================
   PAGE CONTENT
   ============================================================ */
.page-content {
  padding: clamp(48px,6vw,80px) var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
}
.entry-content h1, .entry-content h2, .entry-content h3,
.entry-content h4 { margin-bottom: 1rem; margin-top: 2.5rem; }
.entry-content p   { margin-bottom: 1.25rem; }
.entry-content ul, .entry-content ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.entry-content ul  { list-style: disc; }
.entry-content ol  { list-style: decimal; }
.entry-content a   { color: var(--indigo); text-decoration: underline; text-underline-offset: 3px; }
.entry-content a:hover { color: var(--amber); }
.entry-content blockquote {
  border-left: 3px solid var(--amber);
  padding: 16px 24px;
  margin: 2rem 0;
  background: var(--amber-pale);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15em;
}

/* ============================================================
   FOOTER — soft deep navy, readable contrast
   ============================================================ */
.site-footer {
  background: #2A2D3E;
  padding: clamp(56px,6vw,80px) var(--gutter) clamp(32px,3vw,44px);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(32px,4vw,56px);
  padding-bottom: clamp(40px,4vw,56px);
  margin-bottom: clamp(28px,3vw,40px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand {
  font-family: var(--serif);
  font-size: 22px;
  color: #F5F0E8;
  font-weight: 400;
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}
.footer-brand-sub {
  font-size: 9px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.45);
  margin-bottom: 18px;
}
.footer-tagline {
  font-size: 13px;
  color: rgba(245,240,232,0.55);
  line-height: 1.85;
  max-width: 280px;
  font-weight: 300;
  margin-bottom: 20px;
}
.footer-pips { display: flex; gap: 4px; }
.footer-pip  { width: 14px; height: 2px; border-radius: 1px; opacity: 0.7; }
.footer-col__heading {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.45);
  font-weight: 500;
  margin-bottom: 20px;
}
.footer-col__links { display: flex; flex-direction: column; gap: 11px; }
.footer-col__links li, .footer-col__links a {
  font-size: 13px;
  color: rgba(245,240,232,0.6);
  transition: color 0.2s;
  font-weight: 300;
  line-height: 1.5;
}
.footer-col__links a:hover { color: #F5F0E8; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 11px;
  color: rgba(245,240,232,0.35);
  font-weight: 300;
  line-height: 1.6;
}
.footer-accent-bar { display: flex; gap: 3px; }
.footer-accent-pip { height: 2px; width: 20px; border-radius: 1px; opacity: 0.5; }

/* Black & Woman owned badge */
.bwo-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,240,232,0.07);
  border: 1px solid rgba(245,240,232,0.18);
  padding: 8px 14px;
  margin-top: 16px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.55);
  font-weight: 400;
  border-radius: 2px;
}
.bwo-badge__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
}

/* ============================================================
   ABOUT PAGE SPECIFIC
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: clamp(40px,6vw,80px);
  align-items: start;
  margin-bottom: clamp(56px,6vw,80px);
}
.about-image-wrap {
  position: relative;
}
.about-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
}
.about-image-wrap::after {
  content: '';
  position: absolute;
  bottom: -12px; right: -12px;
  width: 60%;
  height: 60%;
  border: 2px solid var(--amber-light);
  pointer-events: none;
  z-index: -1;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px,6vw,80px);
  align-items: start;
}
.contact-info__item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-soft);
}
.contact-info__icon {
  width: 36px;
  height: 36px;
  background: var(--amber-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.contact-info__label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 4px;
  font-weight: 300;
}
.contact-info__value {
  font-size: 15px;
  color: var(--ink-mid);
  font-weight: 300;
  line-height: 1.6;
}
.contact-info__value a { color: var(--indigo); }
.contact-info__value a:hover { color: var(--amber); }

/* Contact form styling */
.wpcf7-form, .bhp-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.bhp-form input,
.bhp-form textarea,
.bhp-form select,
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea,
.wpcf7-form select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink);
  font-weight: 300;
  transition: border-color 0.2s;
  outline: none;
  -webkit-appearance: none;
}
.bhp-form input:focus,
.bhp-form textarea:focus,
.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
  border-color: var(--indigo);
  background: #fff;
}
.bhp-form textarea,
.wpcf7-form textarea { min-height: 140px; resize: vertical; }
.bhp-form label,
.wpcf7-form label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-light);
  font-weight: 400;
  display: block;
  margin-bottom: 6px;
}
.wpcf7-submit, .bhp-form button[type="submit"] {
  background: var(--indigo);
  color: #fff;
  padding: 15px 36px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: background 0.25s;
  font-family: var(--sans);
}
.wpcf7-submit:hover, .bhp-form button[type="submit"]:hover { background: #2e1580; }

/* ============================================================
   WORDPRESS CORE
   ============================================================ */
.alignwide  { max-width: 1100px; margin: 2rem auto; }
.alignfull  { max-width: 100%; }
.aligncenter { text-align: center; margin: 1.5rem auto; }
.alignleft  { float: left; margin: 0 1.5rem 1rem 0; }
.alignright { float: right; margin: 0 0 1rem 1.5rem; }
.wp-block-image img { display: block; }
.screen-reader-text {
  clip: rect(1px,1px,1px,1px);
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
}

/* ============================================================
   MOBILE RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  :root { --gutter: 40px; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero__left { padding: clamp(40px,6vw,64px) var(--gutter); order: 2; }
  .hero__left::after { display: none; }
  /* ── MOBILE CAROUSEL — fade mode, in-flow layout ────────────────
     Slides stay in normal document flow so the image occupies real height
     above the text. Inactive slides collapse to zero height and opacity.
     This prevents the carousel from overlapping the text below it. */
  .hero__right {
    min-height: 0; order: 1;
    height: auto; max-height: none;
    overflow: visible;
    position: relative;
    z-index: 1;
  }
  .hero-carousel {
    min-height: 0; width: 100%;
    height: auto; overflow: visible;
    position: relative;
  }
  .hero-carousel__track {
    /* Stack slides on top of each other using a single-cell grid */
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    height: auto;
    position: relative;
  }
  /* All slides occupy the same grid cell */
  .hero-carousel__slide {
    grid-column: 1;
    grid-row: 1;
    height: auto;
    opacity: 0;
    transition: opacity 0.8s ease;
    pointer-events: none;
  }
  /* Active slide is visible and interactive */
  .hero-carousel__slide.bhp-fade-active {
    opacity: 1;
    pointer-events: auto;
  }
  .hero-carousel__slide picture { height: auto; display: block; }
  .hero-carousel__slide img { height: auto; width: 100%; display: block; }
  /* Dots sit below the image, above the hero text */
  .hero-carousel__dots {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    justify-content: center;
    padding: 10px 0 4px;
    background: var(--warm-white);
  }
  /* Text section sits below the carousel with clear separation */
  .hero__left { z-index: 2; background: var(--warm-white); }
  .hero__logo-img { width: clamp(160px, 40vw, 240px); }
  .hero__logo-zone { min-height: 0; height: 65vw; max-height: 560px; }
  .brand-cards-grid { grid-template-columns: 1fr; }
  .brand-cards-grid__divider { height: 3px; width: 100%; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .mission-inner { grid-template-columns: 1fr; }
  .values-grid  { grid-template-columns: 1fr; gap: 40px; }
  .pathway-steps { grid-template-columns: 1fr 1fr; gap: 32px; }
  .pathway-steps::before { display: none; }
  .locations-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .services-header { flex-direction: column; align-items: flex-start; }
  .team-header { flex-direction: column; align-items: flex-start; }
  .bhc-intro-grid { grid-template-columns: 1fr !important; }
}

@media (max-width: 768px) {
  :root { --gutter: 24px; --section-pad: clamp(56px,8vw,80px); }

  /* Nav mobile */
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .site-nav { padding: 14px var(--gutter); }
  .nav-logo__img { height: 36px; }

  /* Hero mobile */
  .hero__heading { font-size: clamp(38px, 9vw, 52px); letter-spacing: -0.01em; }
  .hero__body { font-size: 15px; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { text-align: center; justify-content: center; }
  .hero__affirm { width: 100%; }
  /* Phone: carousel rules inherited from 1024px breakpoint above */
  .hero__right { height: auto; max-height: none; }
  .hero-carousel { height: auto; }

  /* Services — single column mobile, no overstimulation */
  .services-grid { grid-template-columns: 1fr; gap: 12px; }
  .svc-card { padding: 24px 20px; }
  .svc-card__desc { font-size: 14px; }

  /* Team carousel — still scrollable */
  .team-card { flex: 0 0 min(200px, 72vw); }

  /* Steps — single column */
  .pathway-steps { grid-template-columns: 1fr; gap: 24px; }

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

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  /* Trust bar wrap */
  .trust-bar__inner { justify-content: center; gap: 12px; }
  .trust-bar__div { display: none; }
  .trust-bar__item { min-width: 80px; }

  /* Insurance */
  .insurance-strip { flex-direction: column; align-items: flex-start; gap: 16px; }
  .insurance-strip__logos { gap: 16px; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; }

  /* Locations */
  .locations-grid { grid-template-columns: 1fr; }

  /* Mission */
  .mission-inner { grid-template-columns: 1fr; }

  /* Typography scale down */
  h2 { font-size: clamp(28px, 7vw, 40px); }
  h3 { font-size: clamp(18px, 5vw, 24px); }

  /* Reduce section padding on mobile */
  .section { padding: clamp(48px, 8vw, 72px) 0; }

  /* CTA */
  .cta-section__actions { flex-direction: column; align-items: center; }
  .cta-section__actions .btn { width: 100%; max-width: 320px; }
}

@media (max-width: 480px) {
  :root { --gutter: 18px; }
  .hero__heading { font-size: clamp(34px, 9vw, 44px); }
  .services-grid { grid-template-columns: 1fr; }
  .brand-cards { gap: 12px; }
  .team-card { flex: 0 0 min(180px, 78vw); }
}

/* ============================================================
   DUAL PATHWAY STEPS — BHC & BHP side by side
   ============================================================ */
.dual-pathway {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--amber-pale);
}
.dual-pathway__col {
  padding: clamp(40px,5vw,72px) clamp(28px,4vw,56px);
  display: flex;
  flex-direction: column;
  gap: 0;
}
.dual-pathway__col--bhc { background: var(--peri-pale); border-right: 1px solid var(--border); }
.dual-pathway__col--bhp { background: var(--amber-pale); }

.dual-pathway__logo {
  height: 56px;
  width: auto;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 18px;
  max-width: 220px;
}
.dual-pathway__label {
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink-mid);
  font-weight: 500;
  margin-bottom: 12px;
}
.dual-pathway__heading {
  font-family: var(--serif);
  font-size: clamp(24px,2.8vw,34px);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 28px;
}
.dual-pathway__heading em { font-style: italic; font-weight: 400; }
.dual-pathway__steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.dual-pathway__step {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border-soft);
  align-items: flex-start;
}
.dual-pathway__step:first-child { border-top: 1px solid var(--border-soft); }
.dual-pathway__step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 15px;
  font-style: italic;
  font-weight: 300;
  color: #fff;
  flex-shrink: 0;
  margin-top: 2px;
}
.dual-pathway__step-name {
  font-family: var(--serif);
  /* Larger on desktop for thin serif on tinted background */
  font-size: clamp(17px,1.4vw,20px);
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 5px;
  line-height: 1.2;
}
.dual-pathway__step-desc {
  /* Larger desktop size and heavier weight for legibility on color background */
  font-size: clamp(13px,1.05vw,15px);
  color: var(--ink-mid);
  line-height: 1.75;
  font-weight: 400;
}
.dual-pathway__cta {
  margin-top: 28px;
}

@media (max-width: 768px) {
  .dual-pathway { grid-template-columns: 1fr; }
  .dual-pathway__col--bhc { border-right: none; border-bottom: 1px solid var(--border); }
}

/* ============================================================
   SERVICES — two column side by side layout
   ============================================================ */
.services-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: start;
}
.services-two-col__divider {
  display: none;
}
.services-col {
  padding: clamp(40px,5vw,72px) clamp(28px,4vw,52px);
}
.services-col--bhc { background: #EEEAE2; }
.services-col--bhp { background: var(--cream); }

@media (max-width: 900px) {
  .services-two-col { grid-template-columns: 1fr; }
}

/* ============================================================
   BRAND FAMILY HEADING
   ============================================================ */
.brand-family-heading {
  font-family: var(--serif);
  font-size: clamp(28px,3vw,40px);
  font-weight: 300;
  text-align: center;
  color: var(--ink);
  margin-bottom: clamp(32px,4vw,48px);
  line-height: 1.2;
}
.brand-family-heading em { font-style: italic; color: var(--indigo); font-weight: 400; }

/* ============================================================
   RESOURCES / BLOG PAGE
   ============================================================ */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 340px), 1fr));
  gap: 24px;
}
.resource-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-top: 3px solid var(--amber);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.resource-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(28,20,16,0.07);
}
.resource-card__img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}
.resource-card__img-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--amber-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}
.resource-card__body {
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.resource-card__cat {
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 10px;
  font-weight: 400;
}
.resource-card__title {
  font-family: var(--serif);
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 10px;
}
.resource-card__excerpt {
  font-size: 14px;
  color: var(--ink-mid);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 18px;
  flex: 1;
}
.resource-card__meta {
  font-size: 11px;
  color: var(--ink-light);
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.resource-card__link {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  transition: gap 0.2s;
}
.resource-card:hover .resource-card__link { gap: 11px; }

/* Shop / product cards */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
  gap: 20px;
}
.product-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
}
.product-card:hover { transform: translateY(-3px); }
.product-card__img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.product-card__img-placeholder {
  width: 100%;
  aspect-ratio: 1;
  background: var(--peri-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
}
.product-card__body { padding: 20px 22px; flex: 1; display: flex; flex-direction: column; }
.product-card__name {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 6px;
}
.product-card__price {
  font-size: 15px;
  color: var(--indigo);
  font-weight: 500;
  margin-bottom: 12px;
}
.product-card__desc {
  font-size: 13px;
  color: var(--ink-mid);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 16px;
  flex: 1;
}

/* ============================================================
   EDITABLE SECTION BLOCKS — for Gutenberg / ACF
   ============================================================ */
.bhp-section-block {
  padding: var(--section-pad) 0;
}
.bhp-section-block .container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* Logo transparency helper */
.logo-on-light { background: transparent; mix-blend-mode: multiply; }
.logo-on-dark  { background: transparent; filter: brightness(0) invert(1); }

/* Nav tagline visible */
.nav-logo__tagline {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-light);
  font-weight: 300;
  font-style: italic;
  margin-top: 1px;
}

/* ============================================================
   MOBILE RESPONSIVE ADDITIONS
   ============================================================ */
@media (max-width: 768px) {
  .services-two-col { grid-template-columns: 1fr; }
  .resources-grid { grid-template-columns: 1fr; }
  .shop-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .shop-grid { grid-template-columns: 1fr; }
  .dual-pathway__col { padding: 32px 20px; }
}

/* ============================================================
   DROPDOWN NAV — Services sub-menu
   ============================================================ */
.nav-item-dropdown {
  position: relative;
}
.nav-item-dropdown > a::after {
  content: ' ▾';
  font-size: 9px;
  opacity: 0.5;
}
.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 240px;
  background: #fff;
  border: 1px solid var(--border);
  border-top: 2px solid var(--indigo);
  box-shadow: 0 8px 32px rgba(28,20,16,0.1);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.nav-item-dropdown:hover .nav-dropdown,
.nav-item-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 14px 20px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mid) !important;
  border-bottom: 1px solid var(--border-soft);
  font-weight: 400;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.nav-dropdown a:last-child { border-bottom: none; }
.nav-dropdown a:hover { background: var(--peri-pale); color: var(--indigo) !important; }

/* ============================================================
   BRAND CARD — matches screenshot exactly
   ============================================================ */
.brand-card-exact {
  display: grid;
  grid-template-columns: 1fr 3px 1fr;
  align-items: stretch;
  border-top: none;
  /* Break out of container padding to full width */
  margin-left: calc(-1 * var(--gutter));
  margin-right: calc(-1 * var(--gutter));
}
.brand-card-exact__divider {
  background: var(--amber);
  width: 3px;
}
.brand-card-exact__col {
  padding: clamp(36px,4.5vw,64px) clamp(32px,4vw,56px);
  display: flex;
  flex-direction: column;
}
.brand-card-exact__col--bhc {
  background: #DDDAE8;
  border-left: 4px solid var(--indigo);
}
.brand-card-exact__col--bhp {
  background: #EDE6D4;
}
.brand-card-exact__logo {
  height: 56px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 22px;
  background: transparent;
  mix-blend-mode: multiply;
  display: block;
}
.brand-card-exact__eyebrow {
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink-mid);
  font-weight: 500;
  margin-bottom: 14px;
}
.brand-card-exact__name {
  font-family: var(--serif);
  font-size: clamp(24px, 2.5vw, 34px);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.12;
  margin-bottom: 18px;
}
.brand-card-exact__name em { font-style: italic; font-weight: 400; }
.brand-card-exact__desc {
  /* Larger desktop size for readability on color background */
  font-size: clamp(15px,1.25vw,17px);
  color: var(--ink-mid);
  line-height: 1.85;
  font-weight: 400;
  margin-bottom: 22px;
}
.brand-card-exact__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  flex: 1;
}
.brand-card-exact__list-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  /* Bumped up for legibility on tinted background */
  font-size: clamp(14px,1.1vw,16px);
  color: var(--ink-mid);
  font-weight: 400;
  line-height: 1.6;
}
.brand-card-exact__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 5px;
}
.brand-card-exact__col--bhc .brand-card-exact__dot { background: var(--indigo); }
.brand-card-exact__col--bhp .brand-card-exact__dot { background: var(--amber); }
.brand-card-exact__link {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  transition: gap 0.2s;
}
.brand-card-exact__col--bhc .brand-card-exact__link { color: var(--indigo); }
.brand-card-exact__col--bhp .brand-card-exact__link { color: var(--amber); }
.brand-card-exact__link:hover { gap: 13px; }

@media (max-width: 768px) {
  .brand-card-exact { grid-template-columns: 1fr; }
  .brand-card-exact__divider { width: 100%; height: 3px; }
  .brand-card-exact__col--bhc { border-left: none; border-top: 4px solid var(--indigo); }
}

/* ============================================================
   BHC/BHP BRAND PAGES — matches reference screenshots
   ============================================================ */
.brand-page-intro {
  background: #EAEAE5;
  padding: clamp(56px,7vw,100px) clamp(32px,6vw,100px);
}
.brand-page-intro__logo {
  height: 52px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  object-position: left;
  margin-bottom: 24px;
  background: transparent;
}
.brand-page-intro__heading {
  font-family: var(--serif);
  font-size: clamp(42px,6vw,80px);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  max-width: 800px;
}
.brand-page-intro__heading em {
  font-style: italic;
  font-weight: 400;
}
.brand-page-intro__body {
  font-size: clamp(16px,1.3vw,19px);
  line-height: 1.85;
  color: var(--ink-mid);
  font-weight: 300;
  max-width: 600px;
}

/* Dark indigo "why choose us / why train with us" section */
.brand-page-dark {
  background: var(--indigo);
  padding: clamp(56px,7vw,100px) clamp(32px,6vw,100px);
}
.brand-page-dark__eyebrow {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
  font-weight: 400;
}
.brand-page-dark__heading {
  font-family: var(--serif);
  font-size: clamp(32px,4vw,54px);
  font-weight: 300;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 36px;
}
.brand-page-dark__heading em {
  font-style: italic;
  color: var(--amber-soft);
  font-weight: 400;
}
.brand-page-dark__list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 640px;
}
.brand-page-dark__list-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: clamp(14px,1.2vw,16px);
  color: rgba(255,255,255,0.75);
  font-weight: 300;
  line-height: 1.6;
}
.brand-page-dark__list-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
  margin-top: 5px;
}

/* BHP training services — numbered rows */
.bhp-service-row {
  padding: clamp(36px,4vw,56px) clamp(32px,6vw,100px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px,5vw,80px);
  align-items: start;
  background: #EAEAE5;
  border-top: 2px solid transparent;
}
.bhp-service-row:nth-child(odd) { border-top-color: var(--coral); }
.bhp-service-row:nth-child(even) { border-top-color: var(--indigo); background: #E8E4DC; }
.bhp-service-row:last-child { border-top-color: var(--periwinkle); }
.bhp-service-row__num {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ink-light);
  font-weight: 300;
  margin-bottom: 10px;
}
.bhp-service-row__name {
  font-family: var(--serif);
  font-size: clamp(24px,2.5vw,34px);
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 16px;
  line-height: 1.2;
}
.bhp-service-row__desc {
  font-size: clamp(14px,1.1vw,16px);
  color: var(--ink-mid);
  line-height: 1.85;
  font-weight: 300;
}
.bhp-service-row__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 8px;
}
.bhp-service-row__list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--ink-mid);
  font-weight: 300;
  line-height: 1.5;
}
.bhp-service-row__list-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
  margin-top: 5px;
}
@media (max-width: 768px) {
  .bhp-service-row { grid-template-columns: 1fr; gap: 20px; }
  .brand-page-intro { padding: 48px 24px; }
  .brand-page-dark { padding: 48px 24px; }
}

/* ============================================================
   PATHWAY STEPS — matches screenshot #10 exactly
   ============================================================ */
.pathway-steps-row {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  position: relative;
  gap: 0;
  padding-top: 32px;
}
.pathway-steps-row::before {
  content: '';
  position: absolute;
  top: 57px; /* center of circle */
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 1px;
  background: rgba(28,20,16,0.15);
}
.pathway-step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 12px;
}
.pathway-step-item__circle {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  font-weight: 300;
  color: #fff;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
.pathway-step-item__name {
  font-family: var(--serif);
  font-size: clamp(18px,1.8vw,22px);
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.2;
}
.pathway-step-item__desc {
  font-size: 13px;
  color: var(--ink-mid);
  line-height: 1.75;
  font-weight: 300;
  max-width: 200px;
}
@media (max-width: 768px) {
  .pathway-steps-row { grid-template-columns: 1fr 1fr; gap: 32px; }
  .pathway-steps-row::before { display: none; }
}
@media (max-width: 480px) {
  .pathway-steps-row { grid-template-columns: 1fr; }
}
