/* =============================================
   Abundance Family Therapy — Style Sheet
   ============================================= */

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --text:       #241f21;
  --gold:       #ad8330;
  --green:      #365010;
  --white:      #ffffff;
  --light-bg:   #f9f8f6;
  --border:     #e5e0d8;
  --font-body:  'Roboto', sans-serif;
  --font-serif: 'Cormorant Garamond', serif;
  --max-w:      1200px;
  --section-pad: 80px 24px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  font-size: 16px;
  line-height: 1.7;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.2;
  color: var(--text);
}
h1 { font-size: clamp(2rem, 3.5vw, 3.2rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.1rem; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
  display: block;
}

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border-radius: 40px;
  cursor: pointer;
  transition: opacity 0.2s, background 0.2s;
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
  border: 2px solid var(--gold);
}
.btn-gold:hover { opacity: 0.88; }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); }
.btn-outline-dark {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--text);
}
.btn-outline-dark:hover { background: var(--text); color: var(--white); }

/* ---- Utility ---- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-green { color: var(--green); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* =============================================
   ANNOUNCEMENT BAR
   ============================================= */
.announcement-bar {
  background: var(--text);
  color: var(--white);
  font-size: 0.8rem;
  padding: 8px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.announcement-bar a { color: var(--white); }
.announcement-bar a:hover { color: var(--gold); }
.announcement-bar .phone-group { display: flex; align-items: center; gap: 6px; }
.announcement-bar .phone-group .flag { font-size: 1rem; }

/* =============================================
   HEADER / NAV
   ============================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Homepage: header overlays the hero */
.home .site-header {
  background: transparent;
  border-bottom: none;
  box-shadow: none;
}
.home .site-header.scrolled {
  background: var(--white);
  border-bottom-color: var(--border);
  box-shadow: 0 1px 8px rgba(0,0,0,0.08);
}
/* White controls when transparent */
.home .site-header:not(.scrolled) .nav-toggle { color: var(--white); }
.home .site-header:not(.scrolled) .site-logo img { filter: brightness(0) invert(1); }

/* Inner pages with overlay hero (transparent header pulls over hero) */
.overlay-hero .site-header {
  background: transparent;
  border-bottom-color: transparent;
  box-shadow: none;
}
.overlay-hero .site-header.scrolled {
  background: var(--white);
  border-bottom-color: var(--border);
  box-shadow: 0 1px 8px rgba(0,0,0,0.08);
}
.overlay-hero .hero { margin-top: -100px; }
.overlay-hero .site-header:not(.scrolled) .nav-toggle { color: var(--white); }
.overlay-hero .site-header:not(.scrolled) .site-logo img { filter: brightness(0) invert(1); }
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 100px;
}
.nav-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text);
}
.nav-toggle .hamburger {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 28px;
}
.nav-toggle .hamburger span {
  display: block;
  height: 2.5px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.open .hamburger span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
.nav-toggle.open .hamburger span:nth-child(2) { opacity: 0; }
.nav-toggle.open .hamburger span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }

.site-logo { justify-self: center; }
.site-logo img { height: 78px; width: auto; filter: brightness(0.6); }

.header-cta { justify-self: end; }
.header-cta .btn { font-size: 0.8rem; padding: 10px 20px; }

/* Full-screen nav overlay */
.nav-overlay {
  display: flex;
  flex-direction: column;
  position: fixed;
  inset: 0;
  background: rgba(36,31,33,0.97);
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.nav-overlay.open { opacity: 1; pointer-events: auto; }
.nav-overlay nav { flex: 1; overflow-y: auto; padding: 15px 60px 60px; }
.nav-overlay nav ul { display: flex; flex-direction: column; gap: 0; max-width: 600px; }
.nav-overlay nav a {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--white);
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.2s;
}
.nav-overlay nav a:hover { color: var(--gold); }
.nav-overlay .nav-label {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 600px;
  padding: 14px 0;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: none;
  cursor: pointer;
  text-align: left;
  letter-spacing: normal;
  text-transform: none;
  transition: color 0.2s;
}
.nav-overlay .nav-label:hover { color: var(--gold); }
.nav-label-arrow {
  font-size: 0.55em;
  opacity: 0.7;
  transition: transform 0.3s ease;
}
.nav-overlay .nav-label.open .nav-label-arrow { transform: rotate(180deg); }
.nav-overlay .services-group {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.nav-overlay .services-group.open {
  max-height: 600px;
  margin-top: 4px;
}
.nav-overlay .services-group a {
  font-size: clamp(1rem, 1.8vw, 1.4rem);
  padding: 10px 0 10px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.8);
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}
/* On homepage, hero slides up behind the sticky header */
.home .hero {
  margin-top: -100px;
  min-height: 100vh;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.55);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 60px 24px;
}
.hero-content h1 { color: var(--white); margin-bottom: 20px; }
.hero-content p {
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 36px;
  opacity: 0.92;
}
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Interior page hero (shorter) */
.page-hero {
  min-height: 340px;
}
.page-hero .hero-content { max-width: 900px; }
.page-hero .hero-content h1 { font-size: clamp(1.6rem, 3vw, 2.6rem); white-space: nowrap; }
br.mobile-br { display: none; }
.page-hero .hero-bg {
  background: #241f21;
  filter: none;
}

/* =============================================
   SECTION LAYOUTS
   ============================================= */
.section { padding: var(--section-pad); }
.section-light { background: var(--light-bg); }
.section-dark { background: var(--text); color: var(--white); }
.section-dark h2, .section-dark h3, .section-dark .eyebrow { color: var(--white); }
.section-green { background: var(--green); color: var(--white); }
.section-green h2, .section-green h3, .section-green .eyebrow { color: var(--white); }

/* Two-column split */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
}
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
.split-img { border-radius: 4px; overflow: hidden; }
.split-img img { width: 100%; height: 500px; object-fit: cover; }

/* =============================================
   QUOTE BLOCK
   ============================================= */
.quote-block {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-style: italic;
  color: var(--green);
  line-height: 1.4;
  margin: 32px 0 12px;
}
.quote-attribution {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(36,31,33,0.5);
}

/* =============================================
   QUOTE BANNER
   ============================================= */
.quote-banner {
  padding: 72px 24px;
  text-align: center;
}
.quote-banner-inner {
  max-width: 780px;
  margin: 0 auto;
}
.quote-banner-inner p {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-style: italic;
  color: var(--text);
  line-height: 1.45;
  margin: 0 0 20px;
}
.quote-banner-inner cite {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(36,31,33,0.45);
  font-style: normal;
}

/* =============================================
   THERAPIST CAROUSEL
   ============================================= */
.therapist-section { padding: var(--section-pad); overflow: hidden; }
.therapist-section .section-header { max-width: var(--max-w); margin: 0 auto 40px; }
.carousel-wrapper { position: relative; }
.carousel-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 0 24px 20px;
  max-width: calc(var(--max-w) + 48px);
  margin: 0 auto;
}
.carousel-track::-webkit-scrollbar { display: none; }
.therapist-card {
  flex: 0 0 360px;
  scroll-snap-align: start;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
  background: var(--border);
}
.therapist-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.therapist-card .card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 60px 20px 20px;
  background: linear-gradient(to top, rgba(36,31,33,0.92) 0%, transparent 100%);
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.2rem;
}
.therapist-card .card-label .card-name {
  display: block;
  line-height: 1.2;
}
/* hidden, out of flow */
.therapist-card .card-label .card-location {
  display: none;
}
/* collapsed by default — max-height:0 means it takes no vertical space */
.therapist-card .card-label .card-bio-btn {
  display: block;
  width: fit-content;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-top: 0;
  padding: 0 16px;
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 40px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--white);
  transition: max-height 0.3s ease, opacity 0.2s ease, margin-top 0.3s ease, padding 0.3s ease, background 0.2s;
}
/* on hover: button expands, pushing name up naturally */
.therapist-card:hover .card-label .card-bio-btn {
  max-height: 50px;
  opacity: 1;
  margin-top: 12px;
  padding: 8px 16px;
}
.therapist-card:hover .card-label .card-bio-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
}
.carousel-wrapper { position: relative; }
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
  cursor: pointer;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  color: var(--text);
}
.carousel-btn.prev { left: 8px; }
.carousel-btn.next { right: 8px; }
.carousel-btn:hover { background: var(--gold); color: var(--white); box-shadow: 0 4px 16px rgba(0,0,0,0.2); }

/* =============================================
   SERVICES GRID
   ============================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: var(--max-w);
  margin: 40px auto 0;
}
.service-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--border);
}
.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(36,31,33,0.82) 0%, rgba(36,31,33,0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px 20px;
  color: var(--white);
  transition: background 0.3s;
}
.service-card:hover .service-card-overlay { background: linear-gradient(to top, rgba(173,131,48,0.9) 0%, rgba(173,131,48,0.5) 60%, rgba(173,131,48,0.2) 100%); }
.service-card-overlay h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.service-card-overlay p { font-size: 0.85rem; opacity: 0.88; }

/* =============================================
   CONDITIONS LIST
   ============================================= */
.conditions-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 860px;
  margin: 32px auto 0;
  list-style: none;
  padding: 0;
}
.conditions-grid li {
  padding: 9px 20px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.conditions-grid li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  flex-shrink: 0;
}

/* =============================================
   FAQ ACCORDION
   ============================================= */
.faq-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 1.05rem;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
  transition: color 0.2s;
}
.faq-btn:hover { color: var(--gold); }
.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  line-height: 1;
  transition: transform 0.3s ease;
}
.faq-icon::before { content: '+'; }
.faq-item.is-open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-item.is-open .faq-answer { max-height: 600px; }
.faq-answer p { margin: 0 0 24px; }

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner {
  background: var(--text);
  color: var(--white);
  text-align: center;
  padding: 80px 24px;
}
.cta-banner h2 { color: var(--white); font-size: clamp(2rem, 4vw, 3.5rem); margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.8); margin-bottom: 36px; font-size: 1.05rem; }

/* Bio page prev/next nav */
.bio-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 48px 24px;
  border-top: 1px solid rgba(36,31,33,0.12);
}
.bio-nav-link {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-decoration: none;
  color: var(--text);
  transition: color 0.2s;
}
.bio-nav-link:hover { color: var(--gold); }
.bio-nav-next { text-align: right; }
.bio-nav-dir {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
}
.bio-nav-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--text);
  color: rgba(255,255,255,0.75);
  padding: 60px 24px 32px;
}
.footer-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1.4fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer-brand img {
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.88;
  max-width: 180px;
}
.footer-col h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.9rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }
.footer-col p { font-size: 0.9rem; }
.footer-phone { color: var(--white); font-size: 1rem; font-weight: 500; display: block; margin-bottom: 6px; }


.footer-bottom {
  max-width: var(--max-w);
  margin: 24px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
}
.footer-bottom a { transition: color 0.2s; }
.footer-bottom a:hover { color: var(--gold); }
.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* =============================================
   LOCATIONS PAGE
   ============================================= */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gold);
  text-decoration: none;
  margin-bottom: 20px;
  letter-spacing: 0.03em;
  transition: opacity 0.2s;
}
.back-link:hover { opacity: 0.7; }
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  max-width: var(--max-w);
  margin: 48px auto 0;
}
.locations-grid-5 {
  grid-template-columns: repeat(6, 1fr);
}
.locations-grid-5 .location-card:nth-child(-n+3) { grid-column: span 2; }
.locations-grid-5 .location-card:nth-child(4)    { grid-column: 2 / 4; }
.locations-grid-5 .location-card:nth-child(5)    { grid-column: 4 / 6; }

.location-card {
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 28px 24px;
  text-decoration: none;
  color: var(--text);
  display: block;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.location-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.location-card h3 { font-size: 1.2rem; margin-bottom: 6px; }
.location-card .state-tag {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
}
.location-card address { font-style: normal; font-size: 0.9rem; color: rgba(36,31,33,0.7); line-height: 1.6; }

/* =============================================
   ABOUT PAGE — TEAM GRID
   ============================================= */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
  max-width: var(--max-w);
  margin: 48px auto 0;
}
.team-grid-3 { grid-template-columns: repeat(3, 1fr); }
.team-card {
  border-radius: 4px;
  overflow: hidden;
  text-decoration: none;
  color: var(--text);
  display: block;
  cursor: pointer;
}
.team-card-img {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--border);
  position: relative;
}
.team-card-img img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform 0.4s ease; }
.team-card:hover .team-card-img img { transform: scale(1.04); }
.team-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(36,31,33,0.52);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.team-card:hover .team-card-overlay { opacity: 1; }
.team-card-overlay span {
  border: 1.5px solid rgba(255,255,255,0.85);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 9px 22px;
  border-radius: 40px;
}
.team-card-info { padding: 14px 4px 0; }
.team-card-info h4 { font-family: var(--font-serif); font-size: 1.15rem; margin-bottom: 2px; }
.team-card-info span { font-size: 0.8rem; color: var(--gold); }

/* =============================================
   LOCATION TEAM GRID
   ============================================= */
.location-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.location-therapist-card {
  display: flex;
  flex-direction: column;
  color: inherit;
}
.location-therapist-card a img,
.location-therapist-card > a { display: block; }
.location-therapist-card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
  border-radius: 8px;
}
.location-therapist-card--no-photo {
  background: rgba(36,31,33,0.05);
  border-radius: 8px;
  padding: 24px;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 100px;
}
.location-therapist-info {
  padding: 12px 4px 0;
}
.location-therapist-info strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.05rem;
}
.view-bio-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
}
.telehealth-only-tag {
  display: block;
  font-size: 0.7rem;
  color: var(--green);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-form {
  background: var(--light-bg);
  border-radius: 6px;
  padding: 40px;
  max-width: 640px;
}
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 500; margin-bottom: 6px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-group input:focus,
.form-group textarea:focus { outline: 2px solid var(--gold); border-color: transparent; }
.form-checkbox { display: flex; align-items: flex-start; gap: 10px; font-size: 0.85rem; margin-top: 4px; }
.form-checkbox input { width: auto; margin-top: 3px; }

/* =============================================
   SUPERVISION PAGE
   ============================================= */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
  max-width: var(--max-w);
  margin: 48px auto 0;
}
.pillar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 28px 24px;
}
.pillar-card h3 { font-size: 1.1rem; margin-bottom: 10px; color: var(--green); }
.pillar-card p { font-size: 0.9rem; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 24px; }
  .split.reverse { direction: ltr; }
  .split-img img { height: 260px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; flex-direction: row; align-items: center; gap: 32px; }
}

@media (max-width: 600px) {
  :root { --section-pad: 56px 20px; }
  .services-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .therapist-card { flex: 0 0 290px; }
  .header-inner { grid-template-columns: 1fr auto 1fr; gap: 0; padding: 0 16px; }
  .site-logo img { height: 32px; }
  .announcement-bar { gap: 12px; font-size: 0.72rem; }
  .conditions-grid { gap: 8px; }
  .pillars-grid { grid-template-columns: 1fr !important; }
  .locations-grid, .locations-grid-5 { grid-template-columns: 1fr 1fr; gap: 12px; }
  .locations-grid-5 .location-card { grid-column: auto !important; }
  .team-grid-3 { grid-template-columns: 1fr; }
  .location-team-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-form { padding: 24px 20px; }
  .hero-content p { letter-spacing: 0.06em; font-size: 0.9rem; }
  .header-cta { display: none; }
  .nav-toggle { font-size: 0.72rem; gap: 6px; }
  .nav-toggle .hamburger { width: 22px; gap: 5px; }
  .nav-toggle.open .hamburger span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav-toggle.open .hamburger span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
  .nav-overlay nav { padding: 15px 40px 60px; }
  .service-card-overlay { padding: 14px 10px; }
  .service-card-overlay h3 { font-size: 0.95rem; margin-bottom: 0; }
  .service-card-overlay p { display: none; }
  .page-hero .hero-content h1 { white-space: normal; font-size: clamp(1.4rem, 6vw, 2rem); }
  br.mobile-br { display: inline; }
  .autism-hero { background-position: center top !important; }
  .teen-hero { background-image: linear-gradient(to bottom, rgba(36,31,33,0.15), rgba(36,31,33,0.6)), url('/images/teenager.jpg') !important; background-size: cover !important; background-position: center top !important; }
  .page-hero .hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(36,31,33,0.35);
    pointer-events: none;
  }
}

/* =============================================
   MOBILE FAB (floating contact button)
   ============================================= */
.mobile-fab {
  display: none;
}
@media (max-width: 768px) {
  .mobile-fab {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 24px;
    right: 20px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
    z-index: 900;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
  }
  .mobile-fab:hover,
  .mobile-fab:active {
    transform: scale(1.08);
    box-shadow: 0 6px 24px rgba(0,0,0,0.3);
  }
  .mobile-fab svg {
    width: 24px;
    height: 24px;
  }
}
