/*
Theme Name: BHPC Collective
Theme URI: https://bhpcollective.com
Author: BHP Collective
Author URI: https://bhpcollective.com
Description: Official theme for Behavioral Health Professionals Collective — BHC clinical arm and BHP training arm.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: Proprietary
Text Domain: bhp-connections
*/

/* ============================================================
   DESIGN TOKENS — BHP Connections Logo Palette
   ============================================================ */
:root {
  /* Offset for sticky header (topbar + nav ≈ 90px) */
  scroll-padding-top: 100px;
  /* 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:   min(1280px, 100%);  /* Never wider than the viewport */
  /* ── NAV BREAKPOINTS — change these to adjust when each nav style activates ──
     desktop-nav-min: viewport width above which desktop nav shows
     tablet-nav-max:  viewport width below which tablet/hamburger nav shows     */
  --desktop-nav-min: 1025px;
  --tablet-nav-max:  1024px;
  --mobile-nav-max:   768px;
  --gutter:      clamp(16px, 3.5vw, 56px);  /* fluid: 16px phone → 56px wide desktop */
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  /* min-width prevents clipping — below 320px the page scrolls horizontally */
  min-width: 320px;
  overflow-x: auto;
}
body {
  min-width: 320px;
  font-family: var(--sans);
  background: var(--warm-white);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: auto;
}
img, svg { max-width: 100%; height: auto; display: block; }
video, iframe, embed, object { max-width: 100%; }
table { max-width: 100%; overflow-x: auto; display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--sans); }
ul, ol { list-style: none; }
li { list-style: none; list-style-type: none; }
li::marker { content: 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);
  overflow: visible;
}
.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: 14px;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.04em;
  font-family: 'Jost', sans-serif;
}
.site-topbar__left a {
  color: #fff;
  text-decoration: none;
}
.site-topbar__left a:hover {
  color: var(--amber-light);
}
.site-topbar__phone {
  font-size: 14px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-family: 'Jost', sans-serif;
  text-decoration: none;
  transition: color 0.2s;
}
.site-topbar__phone:hover { color: var(--amber-light); }

.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;
}
/* merged into .site-announce above */

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  /* width:100% + left:0 ensures header always fills the viewport,
     even if the page content is narrower */
  width: 100%;
  left: 0;
  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;
  overflow: visible;
}
.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: clamp(8px, 1.5vw, 24px);
  padding: clamp(10px,1.2vw,16px) var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
  min-width: 0;
  overflow: visible;
  /* Ensure nav items wrap gracefully when space is very tight */
  flex-wrap: nowrap;
}

.nav-logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(6px, 1vw, 12px);
  text-decoration: none;
  flex-shrink: 0;
  min-width: 0;
  /* No overflow:hidden — never clip the logo name */
}
.nav-logo__img {
  height: 40px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}
.nav-logo__text-group {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
  overflow: hidden;
}
.nav-logo__name {
  font-family: var(--serif);
  font-size: clamp(13px, 1.2vw, 16px);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.02em;
  line-height: 1.1;
  white-space: nowrap;
  overflow: visible;
}
.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: clamp(6px, 0.9vw, 16px);
  flex-wrap: nowrap;
  min-width: 0;
  flex: 1 1 0;
  justify-content: flex-end;
  overflow: visible;
}
.nav-links li {
  list-style: none;
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
}
.nav-links li::before,
.nav-links li::after,
.nav-links li::marker { content: none; display: none; }
.nav-links a {
  font-size: clamp(9px, 0.75vw, 11px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-light);
  font-weight: 400;
  transition: color 0.2s;
  white-space: nowrap;
  min-width: 0;
}
.nav-links a:hover,
.nav-links a.current { color: var(--ink); }

.nav-cta {
  flex-shrink: 0;
  flex-grow: 0;
  font-size: clamp(8px, 0.75vw, 10px);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: var(--indigo);
  padding: clamp(8px,0.8vw,11px) clamp(10px,1.2vw,18px);
  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 NAV ─────────────────────────────────────────────
   Visibility controlled ONLY by .is-open class — no [hidden] attribute,
   no display:none/flex toggling. Max-height + visibility transition.
   ──────────────────────────────────────────────────────────── */
.mobile-nav {
  /* Always flex — visibility/pointer-events control whether it's usable.
     Never toggle display: switching display interrupts CSS transitions. */
  display: flex;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid var(--border);
  /* Collapsed: zero height, invisible, non-interactive */
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition:
    max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    opacity    0.25s ease;
}
.mobile-nav.is-open {
  max-height: 90vh;
  overflow-y: auto;
  opacity: 1;
  pointer-events: auto;
  transition:
    max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    opacity    0.2s ease;
}
.mobile-nav a {
  display: block;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mid);
  padding: 15px var(--gutter);
  border-bottom: 1px solid var(--border-soft);
  font-weight: 400;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  /* Prevent text wrapping pushing layout wide */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mobile-nav a:hover,
.mobile-nav a:active { background: var(--amber-pale); color: var(--ink); }
/* Sub-items (BHC / BHP under Services) */
.mobile-nav .mobile-nav__sub {
  padding-left: calc(var(--gutter) + 20px);
  font-size: 11px;
  color: var(--ink-light);
  letter-spacing: 0.14em;
  border-bottom-style: dashed;
}
/* Portal links */
.mobile-nav .mobile-nav__portal {
  font-size: 11px;
  letter-spacing: 0.16em;
  border-bottom: none;
  padding-top: 18px;
  padding-bottom: 4px;
}
.mobile-nav .mobile-nav__portal--client  { color: var(--amber); }
.mobile-nav .mobile-nav__portal--employee { color: var(--periwinkle); }
/* CTA button */
.mobile-nav .mobile-nav__cta {
  margin: 12px var(--gutter) 16px;
  text-align: center;
  background: var(--indigo);
  color: #fff !important;
  border: none;
  border-bottom: none;
  padding: 15px;
  letter-spacing: 0.14em;
  font-size: 11px;
  font-weight: 500;
  transition: background 0.2s;
  white-space: normal;
}
.mobile-nav .mobile-nav__cta:hover { background: #2e1580; }

/* Offset anchor links for sticky header */
[id] { scroll-margin-top: 100px; }

/* ============================================================
   HERO — Full bleed with transparent logo zone
   ============================================================ */
.hero {
  min-height: 72vh;
  display: grid;
  /* Fluid columns: left text gets more space, right gets less, both are fluid */
  grid-template-columns: minmax(0, 55%) minmax(0, 45%);
  align-items: stretch;
  background: var(--warm-white);
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
  /* Caps at container width on ultra-wide screens */
  max-width: 100%;
}

.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: center;
  gap: clamp(8px, 1.5vw, 24px);
  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 {
  /* In carousel context: fixed flex width */
  flex: 0 0 clamp(180px, 20vw, 240px);
  scroll-snap-align: start;
  min-width: 0;
}
.team-card__photo {
  width: 100%;
  /* 3/4 portrait for carousel; collective page overrides to 1/1 square */
  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;
  /* center 15% shows faces — slightly above center pulls hairline into frame */
  object-position: center 10%;
  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;
}
/* ── TEAM CARD STATUS ROW — badge + action button ────────────
   Used for Accepting Clients (Schedule Now) and Waitlist (Join Waitlist).
   Row wraps on narrow cards. Button never shows on admin cards.
   ─────────────────────────────────────────────────────────── */
.team-card__status-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
}

/* Schedule Now — amber/green feel */
.team-card__action-btn {
  display: inline-flex;
  align-items: center;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 4px 9px;
  text-decoration: none;
  transition: background 0.18s, color 0.18s;
  white-space: nowrap;
  line-height: 1.5;
  border: 1px solid transparent;
}
.team-card__action-btn--schedule {
  color: #fff;
  background: var(--indigo);
  border-color: var(--indigo);
}
.team-card__action-btn--schedule:hover {
  background: #2e1580;
  border-color: #2e1580;
  color: #fff;
}

/* Join Waitlist — periwinkle outline */
.team-card__action-btn--waitlist {
  color: var(--periwinkle);
  background: transparent;
  border-color: var(--periwinkle);
}
.team-card__action-btn--waitlist:hover {
  background: var(--periwinkle);
  color: #fff;
}


/* ── COLLECTIVE PAGE — team card overrides ──────────────────
   Cards sit in a CSS grid (not a flex carousel), so:
   - Remove flex sizing, let grid column dictate width
   - Square crop shows faces; shorter = more cards visible
   ────────────────────────────────────────────────────────── */
.collective-panel .team-card {
  flex: none !important;
  width: 100%;
  min-width: 0;
}
.collective-panel .team-card__photo {
  aspect-ratio: 3 / 4 !important;
  margin-bottom: 8px;
  width: 100%;
}
.collective-panel .team-card__photo img {
  object-position: center 10% !important;
}
.collective-panel .team-card__name {
  font-size: clamp(12px, 1vw, 15px);
  margin-bottom: 2px;
}
.collective-panel .team-card__creds { font-size: 10px; }
.collective-panel .team-card__title { font-size: 10px; }
.collective-panel .team-card__accepting { font-size: 8px; padding: 2px 6px; margin-top: 4px; }


/* 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;
  /* Auto-reflow: brand column gets more space, others share equally */
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: clamp(20px,3vw,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
   ============================================================ */

/* ══════════════════════════════════════════════════════════════
   HERO — 3 Button Layout
   ══════════════════════════════════════════════════════════════ */
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: clamp(20px,2.5vw,32px);
}
.hero__phone-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.2;
  padding: clamp(10px,1vw,14px) clamp(14px,1.5vw,22px);
}
.hero__phone-number {
  font-size: clamp(11px,0.9vw,13px);
  font-weight: 700;
  letter-spacing: 0.04em;
  opacity: 0.95;
  margin-top: 2px;
}

/* ══════════════════════════════════════════════════════════════
   HERO — Static Photo Override
   ══════════════════════════════════════════════════════════════ */
.hero-static-photo {
  width: 100%;
  height: 100%;
  min-height: 420px;
  position: relative;
  overflow: hidden;
}
.hero-static-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 1024px) {
  .hero-static-photo { min-height: 56vw; height: auto; }
  .hero-static-photo img { height: 56vw; width: 100%; }
}
@media (max-width: 768px) {
  .hero-static-photo { min-height: 72vw; }
  .hero-static-photo img { height: 72vw; }
}

/* ══════════════════════════════════════════════════════════════
   COLLECTIVE — Availability CTA Bar
   ══════════════════════════════════════════════════════════════ */
.collective-cta-bar {
  background: var(--indigo);
  padding: clamp(20px,3vw,32px) var(--gutter);
  width: 100%;
}
.collective-cta-bar__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(16px,3vw,40px);
  flex-wrap: wrap;
}
.collective-cta-bar__text {
  flex: 1 1 280px;
  min-width: 0;
}
.collective-cta-bar__heading {
  font-family: var(--serif);
  font-size: clamp(17px,1.8vw,24px);
  font-weight: 400;
  color: #fff;
  line-height: 1.3;
  margin: 0 0 4px;
}
.collective-cta-bar__sub {
  font-size: clamp(12px,1vw,14px);
  color: rgba(255,255,255,0.7);
  font-weight: 300;
  margin: 0;
  letter-spacing: 0.02em;
}
.collective-cta-bar__btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  flex-shrink: 0;
  align-items: center;
}
.collective-cta-bar__btns .btn {
  white-space: nowrap;
}
@media (max-width: 768px) {
  .collective-cta-bar__inner {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .collective-cta-bar__btns {
    width: 100%;
  }
  .collective-cta-bar__btns .btn {
    flex: 1 1 calc(50% - 5px);
    text-align: center;
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .collective-cta-bar__btns .btn {
    flex: 1 1 100%;
  }
}

/* ══════════════════════════════════════════════════════════════
   HERO ACTIONS — responsive on all platforms
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
  .hero__actions .btn {
    text-align: center;
    justify-content: center;
    width: 100%;
  }
  .hero__phone-btn {
    flex-direction: row;
    gap: 8px;
    align-items: center;
  }
  .hero__phone-number {
    margin-top: 0;
  }
}

/* ══════════════════════════════════════════════════════════════
   HOME — Team Section buttons + photo override
   ══════════════════════════════════════════════════════════════ */
.team-section__phone-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.2;
  padding: clamp(8px,0.8vw,12px) clamp(12px,1.2vw,20px);
}
.team-section__phone-num {
  font-size: clamp(10px,0.8vw,12px);
  font-weight: 700;
  letter-spacing: 0.04em;
  opacity: 0.95;
  margin-top: 2px;
}

/* ── TEAM SECTION — PHOTO OVERRIDE MODE ──────────────────────────
   Two-column layout: left = indigo text panel, right = photo.
   Photo shows FULL image with object-fit:cover and no height cap
   so faces are never cut off.
   Mobile: stacks — text panel on top, full photo below.
   ──────────────────────────────────────────────────────────────── */
.team-section__override-wrap {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  min-height: clamp(360px, 50vw, 600px);
  overflow: hidden;
  /* Extend to full container width */
  margin: 0 calc(-1 * var(--gutter));
}

/* Left panel — indigo background, text + buttons */
.team-section__override-text {
  background: var(--indigo);
  padding: clamp(32px, 5vw, 60px) clamp(24px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}
.team-section__override-text .eyebrow {
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
}
.team-section__override-text .eyebrow__pip {
  background: var(--amber) !important;
}
.team-section__override-heading {
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 42px);
  font-weight: 300;
  color: #fff;
  line-height: 1.2;
  margin: 0 0 12px;
}
.team-section__override-sub {
  font-size: clamp(13px, 1vw, 16px);
  color: rgba(255,255,255,0.7);
  font-weight: 300;
  line-height: 1.7;
  margin: 0 0 24px;
}
.team-section__override-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.team-section__override-btns .btn {
  flex-shrink: 0;
}
.team-section__override-btns .btn--amber {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.2;
  padding: clamp(10px,1vw,14px) clamp(14px,1.5vw,22px);
}

/* Right panel — photo fills the full column, no height cap */
.team-section__override-photo {
  position: relative;
  overflow: hidden;
  background: var(--peri-pale);
}
.team-section__override-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
  /* No max-height — shows the full photo */
}

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .team-section__override-wrap {
    grid-template-columns: 1fr 1fr;
    min-height: clamp(300px, 55vw, 480px);
  }
}
@media (max-width: 768px) {
  /* Stack: text on top, photo below */
  .team-section__override-wrap {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    min-height: auto;
    margin: 0 calc(-1 * var(--gutter));
  }
  .team-section__override-text {
    padding: clamp(28px, 6vw, 40px) var(--gutter);
    order: 1;
  }
  .team-section__override-photo {
    order: 2;
    /* Fixed height on mobile so photo doesn't dominate */
    height: 64vw;
    min-height: 240px;
    max-height: 420px;
  }
  .team-section__override-photo img {
    height: 100%;
    object-position: center 10%;
  }
  .team-section__override-btns {
    flex-direction: column;
  }
  .team-section__override-btns .btn {
    text-align: center;
    justify-content: center;
    width: 100%;
  }
}
@media (max-width: 480px) {
  .team-section__override-photo {
    height: 72vw;
  }
  .team-section__phone-btn {
    flex-direction: row;
    gap: 6px;
    align-items: center;
  }
  .team-section__phone-num { margin-top: 0; }
}

/* Team header buttons — responsive */
.team-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: clamp(16px,3vw,32px);
  margin-bottom: clamp(24px,3vw,40px);
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .team-header { flex-direction: column; align-items: flex-start; }
}

/* ══════════════════════════════════════════════════════════════
   MOBILE NAV — Call Us Today button
   ══════════════════════════════════════════════════════════════ */
.mobile-nav__call {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 8px var(--gutter) 12px;
  padding: 14px 16px;
  background: var(--amber);
  color: #fff;
  text-decoration: none;
  font-family: var(--sans);
  transition: background 0.2s;
  gap: 3px;
}
.mobile-nav__call:hover,
.mobile-nav__call:active {
  background: #c88a00;
  color: #fff;
}
.mobile-nav__call-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1;
}
.mobile-nav__call-number {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.2;
}

/* ── LARGE SCREENS (1280px+): center and cap content ─────── */
@media (min-width: 1280px) {
  .site-header { max-width: 100%; }
  .hero { max-width: 100%; }
  .trust-bar__inner { max-width: 1280px; }
}

/* ── MEDIUM DESKTOP (1025–1200px): tighten nav slightly ──── */
@media (max-width: 1200px) and (min-width: 1025px) {
  /* Medium desktop: hide tagline/pips so logo stays compact */
  .nav-logo__tagline { display: none; }
  .nav-logo__pips    { display: none; }
}
@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); }
  /* ── NAV: tablet/mobile — hamburger replaces desktop nav ── */
  .nav-links  { display: none !important; }
  .nav-cta    { display: none !important; }
  .nav-toggle { display: flex !important; }
  .site-nav   { padding: 12px var(--gutter); gap: 10px; overflow: visible; }
  .nav-logo   { overflow: visible; max-width: none; }
  .nav-logo__img     { height: 36px; }
  .nav-logo__name    { font-size: clamp(13px,3.5vw,16px); white-space: nowrap; overflow: visible; }
  .nav-logo__tagline { display: none; }
  .nav-logo__pips    { display: none; }
  .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: clamp(16px,3vw,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 — phone tweaks */
  .site-nav      { padding: 8px var(--gutter); gap: 8px; overflow: visible; }
  .nav-logo      { overflow: visible; gap: 6px; }
  .nav-logo__img { height: 30px; }
  .nav-logo__name { font-size: clamp(12px,3vw,15px); white-space: nowrap; overflow: visible; }
  .site-announce { font-size: 10px; padding: 8px var(--gutter); letter-spacing: 0.08em; }
  .site-topbar   { display: none; }

  /* 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 — 2 columns on phone */
  .trust-bar__inner { justify-content: center; gap: 16px 8px; flex-wrap: wrap; }
  .trust-bar__div { display: none; }
  .trust-bar__item { min-width: 0; flex: 0 0 calc(50% - 8px); max-width: calc(50% - 8px); }
  .trust-bar__num { font-size: clamp(16px, 4.5vw, 24px); }
  .trust-bar__lbl { font-size: clamp(9px, 2.5vw, 11px); }

  /* 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: 16px; }
  .hero__heading { font-size: clamp(32px, 9vw, 42px); letter-spacing: -0.02em; }
  .hero__body { font-size: 14px; }
  .services-grid { grid-template-columns: 1fr; }
  .brand-cards { gap: 12px; }
  .team-card { flex: 0 0 min(180px, 78vw); }

  /* Trust bar: 2×2 wrap on very small screens */
  .trust-bar__item { min-width: calc(50% - 8px); flex: 0 0 calc(50% - 8px); }
  .trust-bar__inner { gap: 16px 8px; }

  /* Footer: single column always */
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }

  /* Dual pathway: single column */
  .dual-pathway { grid-template-columns: 1fr; }

  /* Brand cards: single column */
  .brand-card-exact { grid-template-columns: 1fr; }
  .brand-card-exact__divider { width: 100%; height: 3px; }

  /* About values: single column */
  .values-grid { grid-template-columns: 1fr; }

  /* Buttons: full width */
  .btn { width: 100%; text-align: center; justify-content: center; box-sizing: border-box; }

  /* Nav logo text: smallest but never clipped */
  .nav-logo      { gap: 5px; overflow: visible; }
  .nav-logo__img { height: 26px; }
  .nav-logo__name { font-size: 12px; white-space: nowrap; overflow: visible; }
  .nav-logo__tagline { display: none; }
  .nav-logo__pips { display: none; }

  /* Site announce: even smaller text */
  .site-announce { font-size: 11px; padding: 10px var(--gutter); }
}

/* ============================================================
   DUAL PATHWAY STEPS — BHC & BHP side by side
   ============================================================ */
.dual-pathway {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,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 — hidden by default across ALL sizes.
   The nav bar is too full to show it without causing overlap.
   Keep the styles so it renders correctly if/when displayed. */
.nav-logo__tagline {
  display: none;
  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: minmax(0,1fr) 3px minmax(0,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; }
}
