/* ==========================================================================
   Balance Point Clinical Counseling — Design System
   Palette sourced directly from brand logo + live site (balancepointcc.com)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Forum&family=Outfit:wght@300;400;500;600;700&family=Caveat:wght@500;600&display=swap');

:root {
  /* Brand colors — sampled from logo & production site */
  --ink: #2a404b;          /* deep teal-navy — primary */
  --ink-2: #3a5566;        /* lighter ink for hovers/gradients */
  --ink-soft: #4f6470;     /* body copy on light bg */
  --accent: #be713b;       /* terracotta — from logo script */
  --accent-2: #a25f2f;     /* accent hover/darker */
  --accent-tint: #f4e6da;  /* accent at low opacity, pre-mixed */
  --cream: #eee9dd;        /* warm ivory section bg */
  --cream-soft: #f7f4ee;   /* lighter ivory */
  --white: #ffffff;
  --line: #dcd5c6;         /* hairline borders on cream */
  --line-dark: rgba(255,255,255,0.16);

  /* Type */
  --font-display: 'Forum', 'Iowan Old Style', Georgia, serif;
  --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-script: 'Caveat', cursive;

  /* Spacing tokens */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 24px;
  --sp-6: 32px;
  --sp-7: 48px;
  --sp-8: 64px;
  --sp-9: 96px;

  --radius: 6px;
  --radius-lg: 14px;
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  --shadow-sm: 0 1px 2px rgba(42,64,75,0.08), 0 2px 8px rgba(42,64,75,0.06);
  --shadow-md: 0 2px 4px rgba(42,64,75,0.07), 0 8px 24px rgba(42,64,75,0.10), 0 20px 48px rgba(42,64,75,0.06);
  --shadow-lg: 0 4px 8px rgba(42,64,75,0.10), 0 16px 40px rgba(42,64,75,0.14), 0 32px 72px rgba(42,64,75,0.08);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-soft);
  background: var(--white);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 400;
  line-height: 1.15;
  margin: 0 0 var(--sp-4);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.4rem, 4.6vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.75rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }
p { margin: 0 0 var(--sp-4); max-width: 62ch; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--sp-3);
}
.eyebrow::before {
  content: '';
  width: 22px;
  height: 1.5px;
  background: var(--accent);
}
.script {
  font-family: var(--font-script);
  color: var(--accent);
  font-size: 1.6em;
  font-weight: 600;
}

/* skip link */
.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  background: var(--ink);
  color: var(--white);
  padding: var(--sp-3) var(--sp-5);
  z-index: 999;
  border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus {
  left: 0;
  top: 0;
}

/* focus-visible everywhere */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--sp-5);
}
.section { padding: var(--sp-9) 0; position: relative; }
.section-sm { padding: var(--sp-8) 0; }
@media (max-width: 720px) {
  .section { padding: var(--sp-8) 0; }
  .section-sm { padding: var(--sp-7) 0; }
  .container { padding: 0 var(--sp-5); }
}
.bg-cream { background: var(--cream); }
.bg-cream-soft { background: var(--cream-soft); }
.bg-ink { background: var(--ink); color: rgba(255,255,255,0.86); }
.bg-ink h1, .bg-ink h2, .bg-ink h3 { color: var(--white); }
.bg-ink p { color: rgba(255,255,255,0.78); }
.bg-white { background: var(--white); }

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-prose { max-width: 62ch; }

/* chevron divider — echoes the brand's signature peak motif */
.divider {
  height: 56px;
  width: 100%;
  display: block;
}
.divider-cream-to-white { fill: var(--cream); }
.divider-white-to-cream { fill: var(--white); }
.divider-cream-to-ink { fill: var(--cream); }
.divider-ink-to-white { fill: var(--ink); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 15px 32px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease-spring), box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  min-height: 48px;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(0.98); }

.btn-accent {
  background: var(--accent);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-accent:hover { background: var(--accent-2); box-shadow: var(--shadow-md); }

.btn-ink {
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-ink:hover { background: var(--ink-2); box-shadow: var(--shadow-md); }

.btn-outline {
  background: transparent;
  border-color: currentColor;
  color: var(--ink);
}
.btn-outline:hover { background: rgba(42,64,75,0.06); }

.btn-outline-light {
  background: transparent;
  border-color: rgba(255,255,255,0.55);
  color: var(--white);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

.btn-sm { padding: 10px 22px; font-size: 0.88rem; min-height: 40px; }

.nav-links .btn-accent.btn-sm {
  box-shadow: 0 1px 2px rgba(190,113,59,0.18), 0 6px 16px rgba(190,113,59,0.16);
}
.nav-links .btn-accent.btn-sm:hover {
  box-shadow: 0 2px 4px rgba(190,113,59,0.2), 0 10px 24px rgba(190,113,59,0.22);
}

/* ---------- Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.98);
  border-bottom: 1px solid var(--line);
  transition: background-color 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

/* On pages that open with a hero (video or photo), the header starts transparent
   and overlaid on the hero, then fades to its solid appearance once scrolled. */
body:has(main > .hero-video) .site-header,
body:has(main > .hero-photo) .site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  border-bottom-color: transparent;
  box-shadow: none;
}
body:has(main > .hero-video) .site-header.scrolled,
body:has(main > .hero-photo) .site-header.scrolled {
  background: rgba(255,255,255,0.98);
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px rgba(42,64,75,0.08);
}
body:has(main > .hero-video) .site-header:not(.scrolled) .brand-text,
body:has(main > .hero-photo) .site-header:not(.scrolled) .brand-text {
  color: var(--white);
}
body:has(main > .hero-video) .site-header:not(.scrolled) .brand-text small,
body:has(main > .hero-photo) .site-header:not(.scrolled) .brand-text small {
  color: rgba(255,255,255,0.75);
}
body:has(main > .hero-video) .site-header:not(.scrolled) .brand img,
body:has(main > .hero-photo) .site-header:not(.scrolled) .brand img {
  filter: brightness(0) invert(1);
}
body:has(main > .hero-video) .site-header:not(.scrolled) .nav-links:not(.open) .nav-dropdown-label:not([aria-current="page"]),
body:has(main > .hero-photo) .site-header:not(.scrolled) .nav-links:not(.open) .nav-dropdown-label:not([aria-current="page"]),
body:has(main > .hero-video) .site-header:not(.scrolled) .nav-phone,
body:has(main > .hero-photo) .site-header:not(.scrolled) .nav-phone,
body:has(main > .hero-video) .site-header:not(.scrolled) .nav-links:not(.open) .nav-dropdown-toggle,
body:has(main > .hero-photo) .site-header:not(.scrolled) .nav-links:not(.open) .nav-dropdown-toggle {
  color: var(--white);
}
body:has(main > .hero-video) .site-header:not(.scrolled) .nav-toggle span,
body:has(main > .hero-photo) .site-header:not(.scrolled) .nav-toggle span,
body:has(main > .hero-video) .site-header:not(.scrolled) .nav-toggle span::before,
body:has(main > .hero-photo) .site-header:not(.scrolled) .nav-toggle span::before,
body:has(main > .hero-video) .site-header:not(.scrolled) .nav-toggle span::after,
body:has(main > .hero-photo) .site-header:not(.scrolled) .nav-toggle span::after {
  background: var(--white);
}
.brand img { transition: filter 0.35s ease; }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--sp-3);
  padding-bottom: var(--sp-3);
  gap: var(--sp-5);
}
.brand {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-shrink: 0;
}
.brand img { height: 44px; width: auto; }
.brand-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--ink);
  letter-spacing: 0.03em;
  line-height: 1.2;
  text-transform: uppercase;
}
.brand-text small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  color: var(--ink-soft);
  font-weight: 500;
  text-transform: uppercase;
  margin-top: 2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
}
.nav-links a:not(.btn) {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: var(--sp-2) 0;
}
.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--accent);
  transition: right 0.25s var(--ease-spring);
}
.nav-links a:not(.btn):hover::after, .nav-links a[aria-current="page"]:not(.btn)::after { right: 0; }
.nav-links a[aria-current="page"]:not(.btn) { color: var(--accent); }
.nav-cta { display: flex; align-items: center; gap: var(--sp-4); }
.nav-phone {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-weight: 600;
  color: var(--ink);
  font-size: 0.92rem;
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--sp-2);
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  position: relative;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle span::before { position: absolute; top: -8px; }
.nav-toggle span::after { position: absolute; top: 8px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    inset: 72px 0 0 0;
    flex-direction: column;
    background: var(--cream);
    padding: var(--sp-6) var(--sp-5);
    gap: var(--sp-2);
    align-items: stretch;
    transform: translateX(100%);
    opacity: 0;
    transition: transform 0.3s var(--ease-spring), opacity 0.3s ease;
    overflow-y: auto;
  }
  .nav-links.open { transform: translateX(0); opacity: 1; }
  .nav-links a:not(.btn) {
    font-size: 1.15rem;
    padding: var(--sp-4) 0;
    border-bottom: 1px solid var(--line);
  }
  .nav-links a::after { display: none; }
  .nav-links .btn { margin-top: var(--sp-4); align-self: flex-start; }
  .nav-phone { display: none; }
  .nav-toggle { display: flex; }
  .brand-text { font-size: 0.92rem; }
  .brand img { height: 38px; }
}

/* ---------- Nav dropdowns (Services / Fees & Insurance / Meet the Team) ---------- */
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}
.nav-dropdown-row {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--sp-1);
  color: var(--ink-soft);
}
.nav-dropdown-toggle svg {
  width: 14px;
  height: 14px;
  transition: transform 0.25s var(--ease-spring);
}
.nav-dropdown:hover .nav-dropdown-toggle svg,
.nav-dropdown:focus-within .nav-dropdown-toggle svg,
.nav-dropdown.open .nav-dropdown-toggle svg {
  transform: rotate(180deg);
}
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 10px;
  min-width: 230px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(42,64,75,0.08);
  box-shadow: var(--shadow-lg);
  padding: var(--sp-2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s var(--ease-spring), visibility 0.2s;
  z-index: 60;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-links a.nav-dropdown-link {
  display: block;
  padding: 10px 14px;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
}
.nav-links a.nav-dropdown-link::after { content: none; }
.nav-links a.nav-dropdown-link:hover,
.nav-links a.nav-dropdown-link:focus-visible {
  background: var(--cream-soft);
  color: var(--accent);
}
@media (max-width: 900px) {
  .nav-dropdown { flex-direction: column; align-items: stretch; }
  .nav-dropdown-row { border-bottom: 1px solid var(--line); }
  .nav-links a.nav-dropdown-label { border-bottom: none; flex: 1; }
  .nav-dropdown-toggle { padding: var(--sp-4) var(--sp-2); }
  .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    margin-top: 0;
    padding: 0 0 var(--sp-2) var(--sp-4);
    display: none;
  }
  .nav-dropdown.open .nav-dropdown-menu { display: block; }
  .nav-links a.nav-dropdown-link { padding: var(--sp-3) 0; font-size: 1.02rem; }
}

/* ---------- Services mega-menu (image feature + service list) ---------- */
.nav-dropdown-menu.nav-mega {
  width: 660px;
  min-width: 0;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: var(--sp-4);
  padding: var(--sp-4);
}
.nav-links a.nav-mega-feature {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 250px;
  border-radius: var(--radius);
  overflow: hidden;
  padding: var(--sp-5);
  isolation: isolate;
  align-self: start;
}
.nav-mega-feature img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.nav-links a.nav-mega-feature::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  height: auto;
  z-index: -1;
  background: linear-gradient(180deg, rgba(42,64,75,0.12) 0%, rgba(42,64,75,0.55) 55%, rgba(28,42,50,0.92) 100%);
  transition: none;
}
.nav-mega-feature h4 {
  color: var(--white);
  font-size: 1.3rem;
  line-height: 1.2;
  margin: 0 0 8px;
}
.nav-mega-feature p {
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  line-height: 1.5;
  margin: 0;
  max-width: none;
}
.nav-mega-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px var(--sp-3);
  align-content: start;
}
.nav-links a.nav-dropdown-link.nav-mega-item {
  padding: 10px 12px;
}
.nav-mega-item strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 2px;
}
.nav-mega-item span {
  display: block;
  font-size: 0.78rem;
  color: var(--ink-soft);
  line-height: 1.4;
}
.nav-mega-item:hover strong, .nav-mega-item:focus-visible strong { color: var(--accent); }
.nav-mega-list.single-col { grid-template-columns: 1fr; }
@media (max-width: 900px) {
  .nav-dropdown-menu.nav-mega { grid-template-columns: 1fr; width: auto; padding: 0 0 var(--sp-2) var(--sp-4); display: none; }
  .nav-dropdown.open .nav-dropdown-menu.nav-mega { display: grid; }
  .nav-links a.nav-mega-feature { display: none; }
  .nav-mega-list { grid-template-columns: 1fr; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(ellipse 900px 500px at 12% -10%, rgba(190,113,59,0.16), transparent 60%),
    radial-gradient(ellipse 800px 600px at 100% 0%, rgba(42,64,75,0.10), transparent 55%),
    var(--cream-soft);
  overflow: hidden;
  padding: var(--sp-9) 0 var(--sp-8);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.5;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0.16 0 0 0 0 0.25 0 0 0 0 0.29 0 0 0 0.03 0'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero-leaf {
  position: absolute;
  right: -40px;
  top: -60px;
  width: 260px;
  opacity: 0.14;
  transform: rotate(12deg);
  pointer-events: none;
}

/* ---------- Hero (video) ---------- */
.hero-video {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--ink) url("video/hero-pathway-poster.jpg") center/cover no-repeat;
}
.hero-video-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: opacity;
  opacity: 1;
  transition: opacity 1.1s ease;
}
.hero-video-media.is-standby { opacity: 0; }
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(42,64,75,0.55) 0%, rgba(42,64,75,0.38) 45%, rgba(42,64,75,0.72) 100%);
}
.hero-video-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  mix-blend-mode: multiply;
  background: rgba(190,113,59,0.14);
}
.hero-video-content {
  position: relative;
  z-index: 2;
  padding: var(--sp-8) 0;
}
.hero-logo-mark {
  display: block;
  width: min(620px, 82vw);
  height: auto;
  margin: 0 auto var(--sp-6);
  filter: drop-shadow(0 4px 18px rgba(0,0,0,0.35));
}
.hero-video-eyebrow {
  display: block;
  width: 100%;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  color: rgba(255,255,255,0.92);
}
.hero-video-eyebrow::before {
  display: block;
  margin: 0 auto var(--sp-3);
  background: var(--white);
}
.hero-video-title { color: var(--white); }
.hero-video-title .script { color: var(--accent); filter: brightness(1.25); }
.hero-video-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.88);
  max-width: 56ch;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 720px) {
  .hero-video { min-height: 100vh; }
  .hero-logo-mark { width: min(320px, 78vw); margin-bottom: var(--sp-5); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-video-media { display: none; }
}

/* ---------- Hero (photo background, inner pages) ---------- */
.hero-photo {
  position: relative;
  overflow: hidden;
  min-height: 440px;
  display: flex;
  align-items: center;
  padding: var(--sp-9) 0 var(--sp-8);
  color: rgba(255,255,255,0.92);
}
.hero-photo-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-photo-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-photo-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(160deg, rgba(42,64,75,0.88) 0%, rgba(42,64,75,0.58) 50%, rgba(42,64,75,0.8) 100%);
}
.hero-photo-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  mix-blend-mode: multiply;
  background: rgba(190,113,59,0.16);
}
.hero-photo > .container {
  position: relative;
  z-index: 2;
}
.hero-photo .breadcrumb, .hero-photo .breadcrumb a { color: rgba(255,255,255,0.72); }
.hero-photo .eyebrow { color: rgba(255,255,255,0.92); }
.hero-photo .eyebrow::before { background: var(--white); }
.hero-photo h1 { color: var(--white); }
.hero-photo p { color: rgba(255,255,255,0.88); }
@media (max-width: 720px) {
  .hero-photo { padding: var(--sp-8) 0 var(--sp-7); min-height: 400px; }
}

/* ---------- Cards ---------- */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(42,64,75,0.06);
  transition: transform 0.28s var(--ease-spring), box-shadow 0.28s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.grid {
  display: grid;
  gap: var(--sp-6);
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.icon-tile {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--accent-tint);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-4);
}
.icon-tile svg { width: 26px; height: 26px; }

/* ---------- Service cards (image top) ---------- */
.service-card {
  display: block;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(42,64,75,0.06);
  transition: transform 0.28s var(--ease-spring), box-shadow 0.28s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--cream);
}
.service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-spring);
}
.service-card:hover .service-card-media img { transform: scale(1.06); }
.service-card-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(42,64,75,0.05) 0%, rgba(42,64,75,0.22) 100%);
}
.service-card-body { padding: var(--sp-5) var(--sp-6) var(--sp-6); }
.service-card-body h3 { margin-bottom: var(--sp-2); }

/* ---------- Team ---------- */
.team-card {
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s ease;
  position: relative;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-photo-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--cream);
  clip-path: polygon(0 0, 100% 0, 100% 94%, 50% 100%, 0 94%);
}
.team-photo-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s var(--ease-spring);
}
.team-card:hover .team-photo-wrap img { transform: scale(1.045); }
.team-photo-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(42,64,75,0.55), transparent 55%);
}
.team-card-body { margin-top: calc(-1 * var(--sp-3)); position: relative; }
.team-photo-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(160deg, var(--ink) 0%, var(--ink-2) 100%);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 3.4rem;
}
.team-card-body { padding: var(--sp-5) var(--sp-5) var(--sp-6); }
.team-card h3 { margin-bottom: var(--sp-1); font-size: 1.35rem; }
.team-cred {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--sp-3);
}
.team-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
}
.team-card-link svg { width: 14px; height: 14px; transition: transform 0.2s var(--ease-spring); }
.team-card:hover .team-card-link svg { transform: translateX(3px); }

/* ---------- Support staff (non-clickable, same card size as therapists) ---------- */
.support-team-card { cursor: default; }
.support-team-card:hover { transform: none; box-shadow: var(--shadow-sm); }
.support-team-card:hover .team-photo-wrap img { transform: none; }
@media (min-width: 981px) {
  .support-team-grid .support-team-card:nth-child(1) { grid-column: 2; }
  .support-team-grid .support-team-card:nth-child(2) { grid-column: 3; }
}

/* ---------- Bio page ---------- */
.bio-hero {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: var(--sp-9);
  align-items: start;
}
.bio-photo-frame {
  position: relative;
  isolation: isolate;
}
.bio-photo-frame::before {
  content: '';
  position: absolute;
  inset: var(--sp-5) calc(-1 * var(--sp-5)) calc(-1 * var(--sp-5)) var(--sp-5);
  background: var(--accent-tint);
  border-radius: var(--radius-lg);
  z-index: -1;
}
.bio-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}
.bio-photo img { width: 100%; height: 100%; object-fit: cover; }
.bio-photo-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(160deg, var(--ink) 0%, var(--ink-2) 100%);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 5rem;
}
@media (max-width: 780px) {
  .bio-hero { grid-template-columns: 1fr; gap: var(--sp-7); }
  .bio-photo-frame { max-width: 320px; margin: 0 auto; }
}
.bio-facts {
  list-style: none;
  margin: var(--sp-5) 0;
  padding: 0;
  display: grid;
  gap: var(--sp-3);
}
.bio-facts li {
  display: flex;
  gap: var(--sp-3);
  align-items: flex-start;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.bio-facts svg { flex-shrink: 0; width: 18px; height: 18px; color: var(--accent); margin-top: 3px; }

/* ---------- Quote ---------- */
.quote-block {
  position: relative;
  padding-left: var(--sp-6);
  border-left: 3px solid var(--accent);
}
.quote-block p:not(.quote-cite) { font-family: var(--font-display); font-size: 1.55rem; font-weight: 700; color: var(--ink); line-height: 1.5; }
.quote-cite { font-size: 0.85rem; color: var(--ink-soft); font-weight: 600; }
.quote-block .quote-cite { font-weight: 400; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.72);
  padding: var(--sp-8) 0 var(--sp-6);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--sp-6);
  padding-bottom: var(--sp-7);
  border-bottom: 1px solid var(--line-dark);
}
.footer-brand img { height: 40px; margin-bottom: var(--sp-4); }
.footer-brand p { color: rgba(255,255,255,0.62); font-size: 0.92rem; }
.footer-col h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--sp-4);
}
.footer-col a, .footer-col p {
  display: block;
  color: rgba(255,255,255,0.72);
  font-size: 0.92rem;
  margin-bottom: var(--sp-3);
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-3);
  padding-top: var(--sp-5);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--white); }
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- Forms ---------- */
.field {
  margin-bottom: var(--sp-4);
}
.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: var(--sp-2);
}
.field input:not([type="checkbox"]):not([type="radio"]), .field select, .field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  min-height: 48px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 0 0 4px rgba(190,113,59,0.14);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4); }
@media (max-width: 620px) { .field-row { grid-template-columns: 1fr; } }

.field-required {
  font-weight: 500;
  color: var(--ink-soft);
  font-size: 0.78rem;
  text-transform: none;
}
.field-hint-inline { font-weight: 500; color: var(--ink-soft); font-size: 0.82rem; }
.field-hint {
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin: 6px 0 0;
  max-width: none;
}
.form-legal {
  font-size: 0.78rem;
  color: var(--ink-soft);
  line-height: 1.6;
  background: var(--cream-soft);
  padding: 14px 16px;
  border-radius: var(--radius);
  margin: 4px 0 var(--sp-3);
  max-width: none;
}
.form-legal a { color: var(--accent); font-weight: 600; }
.field.field-checkbox label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--ink-soft);
  cursor: pointer;
  font-weight: 500;
  margin-bottom: 0;
}
.field-checkbox input {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  accent-color: var(--accent);
  flex-shrink: 0;
}
.check-group {
  display: grid;
  gap: 10px;
  margin-top: 8px;
}
.field .check-group label.check-option {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--ink);
  cursor: pointer;
  font-weight: 400;
  margin-bottom: 0;
  text-transform: none;
}
.check-option input {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  accent-color: var(--accent);
  flex-shrink: 0;
}

/* ---------- Scenic image sections ---------- */
.parallax-section {
  position: relative;
  overflow: hidden;
  width: calc(100% - (var(--sp-5) * 2));
  max-width: 1180px;
  margin: var(--sp-7) auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  min-height: 300px;
  display: flex;
  align-items: center;
  color: rgba(255,255,255,0.92);
}
.parallax-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.parallax-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.parallax-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(160deg, rgba(42,64,75,0.90) 0%, rgba(42,64,75,0.62) 48%, rgba(42,64,75,0.42) 100%);
}
.parallax-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  mix-blend-mode: multiply;
  background: rgba(190,113,59,0.18);
}
.parallax-content {
  position: relative;
  z-index: 2;
  width: 100%;
}
.parallax-content h2 { color: var(--white); }
.parallax-content p { color: rgba(255,255,255,0.85); }
.parallax-eyebrow { color: rgba(255,255,255,0.85); }
.parallax-eyebrow::before { background: var(--white); }
@media (max-width: 720px) {
  .parallax-section {
    width: calc(100% - (var(--sp-4) * 2));
    min-height: 220px;
    margin: var(--sp-6) auto;
  }
}

/* ---------- Tables ---------- */
.fee-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.fee-table caption {
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--ink);
  padding: var(--sp-5) var(--sp-5) var(--sp-3);
  background: var(--white);
}
.fee-table th, .fee-table td {
  text-align: left;
  padding: var(--sp-4) var(--sp-5);
  border-top: 1px solid var(--line);
  font-size: 0.95rem;
}
.fee-table th { color: var(--ink-soft); font-weight: 500; }
.fee-table td:last-child, .fee-table th:last-child {
  text-align: right;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
}
.fee-table tbody tr:hover { background: var(--cream-soft); }
@media (max-width: 620px) {
  .fee-table th, .fee-table td { padding: var(--sp-3) var(--sp-4); font-size: 0.88rem; }
}

/* ---------- Utility / animation ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s var(--ease-spring); }
.reveal.in-view { opacity: 1; transform: translateY(0); }

.tag-list { display: flex; flex-wrap: wrap; gap: var(--sp-2); }
.tag {
  font-size: 0.82rem;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--cream);
  color: var(--ink);
  border: 1px solid var(--line);
}

/* ---------- Insurance logo grid ---------- */
.insurance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
}
.insurance-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: var(--sp-5) var(--sp-4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  min-height: 108px;
  transition: transform 0.25s var(--ease-spring), box-shadow 0.25s ease;
}
.insurance-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.insurance-card img {
  width: 100%;
  height: 42px;
  object-fit: contain;
}
.insurance-card-note {
  font-size: 0.72rem;
  color: var(--ink-soft);
  text-align: center;
}
@media (max-width: 620px) {
  .insurance-grid { grid-template-columns: repeat(2, 1fr); }
}

.stat { text-align: center; }
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--accent);
}
.stat span { font-size: 0.85rem; color: var(--ink-soft); }

.breadcrumb {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-bottom: var(--sp-5);
}
.breadcrumb a { color: var(--ink-soft); }
.breadcrumb a:hover { color: var(--accent); }

