:root {
  --footer-bg: #FFF3E0;
  --footer-text: #9aa5ad;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Karla', sans-serif;
  color: #25303A;
  background: #F7F7F5;
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5 {
  font-family: 'Crimson Pro', serif;
  line-height: 1.25;
  font-weight: 600;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up.delay-1 { transition-delay: 0.15s; }
.fade-up.delay-2 { transition-delay: 0.3s; }
.fade-up.delay-3 { transition-delay: 0.45s; }

/* ===== NAVIGATION ===== */
html.admin-bar .nav { top: 32px; }
@media screen and (max-width: 782px) {
  html.admin-bar .nav { top: 46px; }
}
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
  transition: box-shadow 0.3s;
}
.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo { flex-shrink: 0; }
.nav-logo img {
  height: 50px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links > li {
  position: relative;
}
/* Drop nav items + phone link down to align with the bottom line of the
   logo text. The CTA (last <li>) stays vertically centered. */
.nav-links > li:not(:last-child) {
  transform: translateY(5px);
}
.nav-links > li > a:not(.nav-cta) {
  font-family: 'Karla', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #25303A;
  letter-spacing: 0.3px;
  padding: 8px 0;
  transition: color 0.2s;
}
.nav-links > li > a:hover {
  color: #3F6FA7;
}

/* Dropdown indicator chevron — invites click on Services / Specialties.
   Targets the walker's actual classes (li.dropdown > a). Rotates on hover.
   Uses inline-flex on the parent anchors for baseline parity with plain ones. */
.nav-links > li.dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-links > li.dropdown > a::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid #25303A;
  border-bottom: 1.5px solid #25303A;
  transform: rotate(45deg);
  margin-top: -3px;
  transition: transform 0.3s ease, border-color 0.3s ease;
  flex-shrink: 0;
}
.nav-links > li.dropdown:hover > a::after {
  transform: rotate(-135deg);
  margin-top: 2px;
  border-color: #3F6FA7;
}

/* Dropdown */
.nav-links li .dropdown,
.nav-links li .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  min-width: 240px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
  list-style: none;
}
.nav-links li:hover .dropdown,
.nav-links li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}
.dropdown li a,
.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  font-size: 13.5px;
  color: #25303A;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.dropdown li a:hover,
.dropdown-menu li a:hover {
  background: #FFF3E0;
  color: #3F6FA7;
}
.nav-phone {
  font-size: 13.5px;
  font-weight: 600;
  color: #3F6FA7;
  white-space: nowrap;
}
.nav-cta {
  display: inline-block;
  text-align: center;
  background: #F7BE1C;
  color: #25303A;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2px;
  line-height: 1.25;
  padding: 9px 16px;
  border-radius: 6px;
  white-space: normal;
  transition: background 0.2s, transform 0.15s;
}
.nav-cta:hover {
  background: #e5ae10;
  transform: translateY(-1px);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  position: relative;
  z-index: 10000;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: #25303A;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 72px;
  padding: 80px 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  z-index: 0;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: none;
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 845px;
  padding: 28px 48px 32px;
  background: rgba(30,40,50,0.22);
  border-radius: 10px;
  backdrop-filter: blur(3px);
  color: #fff;
}
.hero-content h1 {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.2);
}
.hero-subtitle {
  font-size: 1.2rem;
  line-height: 1.65;
  margin-bottom: 14px;
  opacity: 0.95;
  font-weight: 300;
}
.hero-location {
  font-size: 0.95rem;
  opacity: 0.8;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}
.btn-primary {
  display: inline-block;
  background: #F7BE1C;
  color: #25303A;
  font-family: 'Karla', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 16px 36px;
  border-radius: 8px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(247,190,28,0.3);
  cursor: pointer;
  border: none;
}
.btn-primary:hover {
  background: #e5ae10;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(247,190,28,0.4);
}

/* ===== 3R FRAMEWORK STRIPE ===== */
.framework-stripe {
  background: #25303A;
  padding: 100px 0 96px;
  position: relative;
  overflow: hidden;
}
.fw-watermark {
  position: absolute;
  font-family: 'Crimson Pro', serif;
  font-size: 52vw;
  font-weight: 600;
  color: rgba(247,190,28,0.035);
  right: -6vw;
  top: 50%;
  transform: translateY(-50%);
  line-height: 0.85;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.05em;
}
.framework-header {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 72px;
}
.framework-header h2 {
  font-family: 'Crimson Pro', serif;
  font-style: italic;
  font-size: clamp(2.2rem, 3.8vw, 3rem);
  font-weight: 400;
  color: #F7BE1C;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.framework-header p {
  font-size: 1.1rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.80);
}
.framework-pillars {
  display: flex;
  align-items: stretch;
  justify-content: center;
  margin: 0 auto 72px;
  max-width: 900px;
  border: 1px solid rgba(247,190,28,0.18);
  border-radius: 4px;
}
.framework-pillar {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 52px 24px 56px;
  position: relative;
}
.framework-pillar + .framework-pillar {
  border-left: 1px solid rgba(247,190,28,0.18);
}
.fw-num {
  display: none;
  font-family: 'Karla', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: #F7BE1C;
  opacity: 0.6;
  margin-bottom: 20px;
}
.fw-word {
  font-family: 'Crimson Pro', serif;
  font-style: italic;
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 400;
  color: #ffffff;
  letter-spacing: -0.01em;
  line-height: 1;
  margin-bottom: 28px;
  display: block;
}
.fw-rule {
  display: block;
  width: 36px;
  height: 2px;
  background: #F7BE1C;
  opacity: 0.5;
}
.framework-cta {
  text-align: center;
}
.btn-framework {
  display: inline-block;
  font-family: 'Karla', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #F7BE1C;
  border: 1.5px solid rgba(247,190,28,0.55);
  padding: 14px 36px;
  border-radius: 3px;
  letter-spacing: 0.03em;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  text-decoration: none;
}
.btn-framework:hover {
  background: #F7BE1C;
  color: #25303A;
  border-color: #F7BE1C;
}

/* ===== HOW I HELP ===== */
.services {
  background: #FFF3E0;
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}
.services::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(63,111,167,0.06);
  z-index: 0;
}
.services::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(242,166,90,0.08);
  z-index: 0;
}
.section-heading {
  text-align: center;
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}
.section-heading h2 {
  font-size: 2.4rem;
  color: #25303A;
  margin-bottom: 8px;
}
.section-heading .divider {
  width: 60px;
  height: 3px;
  background: #F7BE1C;
  margin: 16px auto 0;
  border-radius: 2px;
}
/* ===== SERVICE CARDS (Reilly Hunt Style) ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  z-index: 1;
}
.service-card {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px 28px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  text-decoration: none;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.13);
}
.service-card.apricot { background: #F2A65A; }
.service-card.blue { background: #3F6FA7; }
/* 15% colored overlay sitting ON TOP of the photo (image dominant) */
.service-card.apricot::before,
.service-card.blue::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.service-card.apricot::before { background: #F2A65A; opacity: 0.15; }
.service-card.blue::before    { background: #3F6FA7; opacity: 0.15; }
/* On hover, deepen the veil so the reveal copy stays readable on the photo */
.service-card.apricot:hover::before,
.service-card.blue:hover::before { opacity: 0.85; }

/* RV initials in upper-left */
.service-card .card-rv-img {
  position: absolute;
  top: 22px;
  left: 22px;
  width: 38px;
  height: auto;
  opacity: 0.35;
  z-index: 2;
  filter: brightness(0) invert(1);
}

/* Horizontal line from initials */
.service-card .card-line-h {
  position: absolute;
  top: 34px;
  left: 62px;
  width: 48px;
  height: 2px;
  background: rgba(255,255,255,0.4);
  z-index: 2;
}

/* Vertical line below initials */
.service-card .card-line-v {
  position: absolute;
  top: 72px;
  left: 38px;
  width: 2px;
  height: 55px;
  background: rgba(255,255,255,0.4);
  z-index: 2;
}

/* Dotted grid pattern bottom-right */
.service-card .card-dots {
  position: absolute;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 50px;
  z-index: 2;
  opacity: 0.35;
  background-image: radial-gradient(circle, rgba(255,255,255,0.8) 1.5px, transparent 1.5px);
  background-size: 10px 10px;
}

/* Service name */
.service-card .card-title {
  font-family: 'Crimson Pro', serif;
  font-size: 1.55rem;
  font-weight: 600;
  color: #fff;
  text-align: center;
  position: relative;
  transition: transform 0.35s ease;
  z-index: 3;
  /* Legibility shim — title sits over a photo with only a 15% colored tint */
  text-shadow: 0 2px 12px rgba(0,0,0,0.55), 0 1px 2px rgba(0,0,0,0.45);
}

/* Hover reveal text */
.service-card .card-hover-text {
  color: rgba(255,255,255,0.92);
  font-size: 0.9rem;
  line-height: 1.6;
  text-align: center;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.45s ease, opacity 0.35s ease, margin 0.35s ease;
  position: relative;
  z-index: 3;
  margin-top: 0;
}
.service-card:hover .card-title {
  transform: translateY(-4px);
}
.service-card:hover .card-hover-text {
  max-height: 120px;
  opacity: 1;
  margin-top: 10px;
}



/* Service card photo — image fills the card, fully visible (15% tint applied via ::before) */
.service-card .card-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  z-index: 0;
  transition: opacity 0.4s ease;
}
.service-card:hover .card-bg-img {
  opacity: 1;
}
.service-card .card-rv-img,
.service-card .card-line-h,
.service-card .card-line-v,
.service-card .card-dots,
.service-card .card-title,
.service-card .card-hover-text {
  position: relative;
  z-index: 2;
}
.service-card .card-rv-img { position: absolute; z-index: 2; }
.service-card .card-line-h { position: absolute; z-index: 2; }
.service-card .card-line-v { position: absolute; z-index: 2; }
.service-card .card-dots { position: absolute; z-index: 2; }

/* ===== SERVICES-TO-PAIN TRANSITION ===== */
.services-pain-divider {
  position: relative;
  padding: 48px 0;
  background: linear-gradient(180deg, #F7F7F5 0%, #FFF3E0 100%);
  overflow: hidden;
  text-align: center;
}
.services-pain-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247,190,28,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.divider-motif {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}
.divider-wing {
  height: 1px;
  width: 120px;
  position: relative;
}
.divider-wing::before {
  content: '';
  position: absolute;
  inset: 0;
}
.divider-wing.left::before {
  background: linear-gradient(90deg, transparent, #F2A65A);
}
.divider-wing.right::before {
  background: linear-gradient(90deg, #3F6FA7, transparent);
}
.divider-words {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Crimson Pro', serif;
  font-style: italic;
  font-size: 1rem;
  color: #3F6FA7;
  letter-spacing: 0.5px;
  opacity: 0.7;
}
.divider-words .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #F7BE1C;
  flex-shrink: 0;
}

/* ===== PAIN PANELS ===== */
.pain-panels {
  background: #FFF3E0;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.pain-panels::before {
  content: '';
  position: absolute;
  top: 120px;
  left: -100px;
  width: 400px;
  height: 400px;
  border: 2px solid rgba(63,111,167,0.17);
  border-radius: 50%;
  z-index: 0;
}
.pain-panels::after {
  content: '';
  position: absolute;
  top: 57%;
  right: -60px;
  width: 350px;
  height: 350px;
  border: 2px solid rgba(242,166,90,0.19);
  border-radius: 50%;
  z-index: 0;
}
.pain-panel {
  max-width: 680px;
  margin: 0 0 56px 0;
  position: relative;
  z-index: 1;
}
.pain-panel:last-child { margin-bottom: 0; }
.pain-panel.stagger-1 { margin-left: 0; margin-right: auto; }
.pain-panel.stagger-2 { margin-left: calc((100% - 680px) * 0.33); margin-right: auto; }
.pain-panel.stagger-3 { margin-left: calc((100% - 680px) * 0.66); margin-right: auto; }
.pain-panel.stagger-4 { margin-left: auto; margin-right: 0; }
.pain-panel h3 {
  font-size: 1.85rem;
  color: #3F6FA7;
  margin-bottom: 20px;
  font-weight: 600;
}
.pain-panel .pull-quote {
  font-family: 'Crimson Pro', serif;
  font-style: italic;
  font-size: 1.25rem;
  color: #F2A65A;
  margin-bottom: 18px;
  padding-left: 20px;
  border-left: 3px solid #F2A65A;
  line-height: 1.55;
}
.pain-panel p {
  font-size: 1.02rem;
  color: #4a5568;
  margin-bottom: 14px;
  line-height: 1.75;
}
.pain-panel p:last-child { margin-bottom: 0; }
.pain-divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, #3F6FA7, #F2A65A);
  margin: 0 0 56px;
  border-radius: 1px;
}
.pain-divider.stagger-1 { margin-left: 40px; }
.pain-divider.stagger-2 { margin-left: calc((100% - 680px) * 0.33 + 40px); }
.pain-divider.stagger-3 { margin-left: calc((100% - 680px) * 0.66 + 40px); }

/* ===== PAIN PANEL WITH IMAGE ===== */
/* Image-bearing panels span both columns and break the stagger rhythm — they
   act as visual anchors between the staggered text-only panels. Image side
   alternates (right, left, right) for left-to-right reading rhythm. */
.pain-panel.has-image {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.pain-panel.has-image.image-left .pain-panel-text  { order: 2; }
.pain-panel.has-image.image-left .pain-panel-image { order: 1; }
.pain-panel.has-image .pain-panel-image {
  position: relative;
}
.pain-panel.has-image .pain-panel-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 14px 40px rgba(37,48,58,0.14), 0 4px 12px rgba(37,48,58,0.08);
  position: relative;
  z-index: 1;
}
/* Decorative offset accent block behind image — pulls in client palette */
.pain-panel.has-image .pain-panel-image::before {
  content: '';
  position: absolute;
  top: 18px;
  bottom: -18px;
  left: 18px;
  right: -18px;
  background: rgba(63,111,167,0.14);
  border-radius: 14px;
  z-index: 0;
}
.pain-panel.has-image.image-left .pain-panel-image::before {
  left: -18px;
  right: 18px;
}
@media (max-width: 768px) {
  .pain-panel.has-image {
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: 100%;
  }
  .pain-panel.has-image .pain-panel-text,
  .pain-panel.has-image.image-left .pain-panel-text  { order: 2; }
  .pain-panel.has-image .pain-panel-image,
  .pain-panel.has-image.image-left .pain-panel-image { order: 1; }
  .pain-panel.has-image .pain-panel-image::before { display: none; }
}


/* ===== CONSEQUENCES ===== */
/* ===== CONSEQUENCES + TRANSITION (merged flow) ===== */
.consequences-transition {
  position: relative;
  overflow: hidden;
}
.consequences-block {
  background: #3F6FA7;
  padding: 64px 0 56px;
  text-align: center;
  position: relative;
}
.consequences-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #F2A65A, #F7BE1C, #3F6FA7);
}
.consequences-block h2 {
  font-family: 'Crimson Pro', serif;
  font-size: 2rem;
  color: #fff;
  margin-bottom: 24px;
  font-weight: 600;
}
.consequences-block p {
  max-width: 720px;
  margin: 0 auto 16px;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.75;
}
.consequences-block p.consequences-cta-wrap {
  margin-top: 32px;
  margin-bottom: 0;
}
.consequences-wave {
  position: relative;
  height: 60px;
  background: #FFF3E0;
}
.consequences-wave::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: #3F6FA7;
  clip-path: ellipse(55% 100% at 50% 0%);
}
.transition-block {
  background: #FFF3E0;
  padding: 40px 0 56px;
  text-align: center;
  position: relative;
}
.transition-block h2 {
  font-family: 'Crimson Pro', serif;
  font-size: 2.2rem;
  color: #F7BE1C;
  margin-bottom: 16px;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0,0,0,0.08);
}
.transition-block p {
  font-family: 'Crimson Pro', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: #3F6FA7;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== BRIDGE CTA ===== */
.bridge {
  position: relative;
  padding: 60px 0;
  background: #F7F7F5;
  overflow: hidden;
}
.bridge-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.bridge-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}
.bridge-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
}
.bridge-text h2 {
  font-size: 2rem;
  color: #25303A;
  margin-bottom: 24px;
}
.bridge-text p {
  font-size: 1rem;
  color: #4a5568;
  margin-bottom: 16px;
  line-height: 1.75;
}
.bridge-text .btn-primary {
  margin-top: 12px;
}

/* ===== BIO ===== */
.bio {
  background: #FFF3E0;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.bio::before {
  content: '';
  position: absolute;
  top: -40px;
  right: 10%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(63,111,167,0.05);
}
.bio-inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 56px;
  align-items: center;
}
.bio-headshot {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  position: relative;
}
.bio-headshot::after {
  content: '';
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 100%;
  height: 100%;
  border: 3px solid #F7BE1C;
  border-radius: 16px;
  z-index: -1;
}
.bio-headshot img {
  width: 100%;
  height: auto;
  display: block;
  /* New headshot is landscape — crop it into a portrait frame to keep the
     bio grid balanced. object-position pulls toward upper-mid so the face
     stays centered after the crop. */
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center 30%;
}
.bio-text h2 {
  font-size: 2.2rem;
  color: #25303A;
  margin-bottom: 8px;
}
.bio-text p.bio-credentials {
  font-size: 0.85rem;
  color: rgba(37,48,58,0.6);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 24px !important;
}
.bio-text p {
  font-size: 1rem;
  color: #4a5568;
  margin-bottom: 16px;
  line-height: 1.75;
}
.bio-text .btn-primary {
  margin-top: 12px;
}

/* ===== FINAL CTA PARALLAX ===== */
.final-cta {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 0;
  background-image: url('../images/finalcta-bg-wm.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-color: #25303A;
}
.final-cta-bg {
  display: none;
}
.final-cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(37,48,58,0.7);
  z-index: 1;
}
.final-cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1100px;
  padding: 70px 24px;
  color: #fff;
}
.final-cta-content h2 {
  font-size: 2.3rem;
  margin-bottom: 20px;
  font-weight: 600;
}
.final-cta-content p {
  font-size: 1.05rem;
  margin-bottom: 16px;
  line-height: 1.7;
  opacity: 0.93;
}
.final-cta-content .phone-link {
  font-size: 1.4rem;
  font-weight: 700;
  color: #F7BE1C;
  display: inline-block;
  margin-top: 8px;
}


/* Final CTA grid + contact form */
.final-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  text-align: left;
}
.final-cta-copy h2 { text-align: left; }
.final-cta-contact-details {
  font-size: 0.92rem;
  margin-top: 0;
  opacity: 0.85;
  line-height: 1.7;
}
.final-cta-contact-details a:hover { opacity: 0.8; }
.final-cta-prompt {
  font-weight: 600;
  opacity: 1 !important;
  margin-top: 8px;
}
.final-cta-form-wrap {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 32px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 14px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-family: 'Karla', sans-serif;
  font-size: 15px;
  transition: border-color 0.2s, background 0.2s;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255,255,255,0.5);
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #F7BE1C;
  background: rgba(255,255,255,0.1);
}
.contact-form textarea {
  resize: vertical;
  min-height: 100px;
}
.contact-form .btn-primary {
  width: 100%;
  margin-top: 4px;
  border: none;
  cursor: pointer;
}

/* WPForms overrides — Final CTA (dark overlay background) */
.final-cta-form-wrap .wpforms-field { margin-bottom: 14px; }
.final-cta-form-wrap .wpforms-field-label {
  color: rgba(255,255,255,0.85) !important;
  font-family: 'Karla', sans-serif !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  margin-bottom: 6px !important;
}
.final-cta-form-wrap .wpforms-field input[type="text"],
.final-cta-form-wrap .wpforms-field input[type="email"],
.final-cta-form-wrap .wpforms-field input[type="tel"],
.final-cta-form-wrap .wpforms-field textarea {
  width: 100% !important;
  padding: 14px 16px !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
  border-radius: 8px !important;
  background: rgba(255,255,255,0.06) !important;
  color: #fff !important;
  font-family: 'Karla', sans-serif !important;
  font-size: 15px !important;
  box-sizing: border-box !important;
}
.final-cta-form-wrap .wpforms-field input::placeholder,
.final-cta-form-wrap .wpforms-field textarea::placeholder {
  color: rgba(255,255,255,0.45) !important;
}
.final-cta-form-wrap .wpforms-field input:focus,
.final-cta-form-wrap .wpforms-field textarea:focus {
  outline: none !important;
  border-color: #F7BE1C !important;
  background: rgba(255,255,255,0.1) !important;
}
.final-cta-form-wrap .wpforms-field textarea { min-height: 100px !important; resize: vertical !important; }
.final-cta-form-wrap .wpforms-submit-container { margin-top: 4px; }
.final-cta-form-wrap .wpforms-submit,
.final-cta-form-wrap button[type="submit"] {
  width: 100% !important;
  background: #F7BE1C !important;
  color: #25303A !important;
  font-family: 'Karla', sans-serif !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  padding: 16px !important;
  border: none !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: background 0.2s, transform 0.2s !important;
}
.final-cta-form-wrap .wpforms-submit:hover,
.final-cta-form-wrap button[type="submit"]:hover {
  background: #e5ae10 !important;
  transform: translateY(-1px) !important;
}
.final-cta-form-wrap .wpforms-required-label { color: #F7BE1C !important; }
.final-cta-form-wrap .wpforms-error { color: #ffd0d0 !important; font-size: 13px !important; }

/* ===== MOBILE NAV DRAWER ===== */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(37,48,58,0.55);
  z-index: 998;
}
.mobile-overlay.open { display: block; }

.mobile-nav {
  display: none;
  position: fixed;
  top: 0; right: 0;
  width: 88%;
  max-width: 340px;
  height: 100vh;
  height: 100dvh;
  background: #fff;
  z-index: 999;
  padding: 80px 28px 48px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 40px rgba(37,48,58,0.18);
}
.mobile-nav.open { transform: translateX(0); display: block; }

@media (min-width: 769px) {
  .mobile-nav, .mobile-overlay { display: none !important; }
}

.mobile-nav-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 44px; height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #25303A;
  transition: transform 0.25s ease, color 0.2s;
}
.mobile-nav-close svg { width: 22px; height: 22px; }
.mobile-nav-close:hover { transform: rotate(90deg); color: #3F6FA7; }

.mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mobile-nav-list > li {
  border-bottom: 1px solid rgba(63,111,167,0.1);
  list-style: none;
}
.mobile-nav-list > li:last-child { border-bottom: none; }
.mobile-nav-list > li > a {
  display: block;
  padding: 15px 0;
  font-family: 'Crimson Pro', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #25303A;
  text-decoration: none;
  transition: color 0.2s;
}
.mobile-nav-list > li > a:hover { color: #3F6FA7; }

/* Parent items with submenus: flex so toggle sits inline */
.mobile-nav-list .menu-item-has-children {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.mobile-nav-list .menu-item-has-children > a {
  flex: 1 1 auto;
  border-bottom: none;
}

/* Chevron toggle button */
.mobile-sub-toggle {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(63,111,167,0.1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3F6FA7;
  padding: 0;
  transition: color 0.2s;
}
.mobile-sub-toggle span {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.25s ease;
}
.mobile-sub-toggle[aria-expanded="true"] span {
  transform: rotate(-135deg) translateY(-2px);
}

/* Submenus: hidden by default, shown with .open */
.mobile-nav-list .sub-menu,
.mobile-nav-list .dropdown-menu {
  display: none;
  flex-basis: 100%;
  list-style: none;
  padding: 0 0 8px 16px;
  margin: 2px 0 4px;
  border-left: 2px solid #F2A65A;
}
.mobile-nav-list .sub-menu.open,
.mobile-nav-list .dropdown-menu.open { display: block; }
.mobile-nav-list .sub-menu li,
.mobile-nav-list .dropdown-menu li { list-style: none; border-bottom: none; }
.mobile-nav-list .sub-menu li a,
.mobile-nav-list .dropdown-menu li a {
  display: block;
  padding: 9px 0 9px 8px;
  font-family: 'Karla', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  color: #4a5568;
  border-bottom: 1px solid rgba(63,111,167,0.07);
  transition: color 0.2s;
}
.mobile-nav-list .sub-menu li:last-child a,
.mobile-nav-list .dropdown-menu li:last-child a { border-bottom: none; }
.mobile-nav-list .sub-menu li a:hover,
.mobile-nav-list .dropdown-menu li a:hover { color: #3F6FA7; }

.mobile-nav-phone {
  display: block;
  margin-top: 20px;
  padding: 14px 0 10px;
  border-top: 1px solid rgba(63,111,167,0.12);
  font-family: 'Crimson Pro', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #3F6FA7;
  text-decoration: none;
}
.mobile-nav-cta {
  display: block;
  margin-top: 14px;
  padding: 14px 20px;
  background: #F7BE1C;
  color: #25303A;
  font-family: 'Karla', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s;
}
.mobile-nav-cta:hover { background: #e5ae10; }

/* ===== FOOTER ===== */
.footer {
  background: #FFF3E0;
  padding: 36px 0 22px;
  border-top: 1px solid rgba(63,111,167,0.06);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-logo-left img {
  height: 56px;
  width: auto;
  opacity: 0.65;
  transition: opacity 0.3s;
}
.footer-logo-left img:hover { opacity: 1; }
.footer-badge-center {
  display: flex;
  justify-content: center;
}
.pt-badge {
  width: 130px;
  height: auto;
  opacity: 0.8;
  transition: opacity 0.3s;
  cursor: pointer;
}
.pt-badge:hover { opacity: 1; }
.footer-copy {
  font-size: 0.78rem;
  color: #9aa5ad;
  white-space: nowrap;
  text-align: right;
}
.footer-legal-row {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0;
  margin-top: 14px;
  padding-top: 0;
}
.footer-legal-row a {
  font-size: 0.72rem;
  color: #9aa5ad;
  transition: color 0.2s;
}
.footer-legal-row a:hover {
  color: #3F6FA7;
}
.footer-legal-sep {
  margin: 0 8px;
  color: #9aa5ad;
  font-size: 0.6rem;
}
@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 18px;
  }
  .footer-copy { text-align: center; }
}

/* ===== ANNOTATION BAR ===== */
.annotation {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #25303A;
  color: #fff;
  text-align: center;
  font-size: 12px;
  font-family: 'Karla', sans-serif;
  padding: 8px;
  z-index: 9999;
  letter-spacing: 1px;
  font-weight: 500;
}

/* ===== ABOUT PAGE ===== */
.about-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 72px;
  min-height: 420px;
}
.about-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 60%;
  background-image: url('../images/about-hero-sunset-wm.jpg');
}
@media (max-width: 768px) {
  .about-hero-bg {
    background-image: url('../images/about-hero-mobile.jpg');
  }
}
.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(37,48,58,0.45), rgba(37,48,58,0.25));
}
.about-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 24px;
}
.about-hero-content h1 {
  font-family: 'Crimson Pro', serif;
  font-size: 2.8rem;
  font-weight: 600;
  letter-spacing: -0.3px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

/* About Therapy Section */
.about-page {
  position: relative;
  overflow: hidden;
}
.about-page::before {
  content: '';
  position: absolute;
  top: 520px;
  left: -100px;
  width: 400px;
  height: 400px;
  border: 2px solid rgba(63,111,167,0.17);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}
.about-page::after {
  content: '';
  position: absolute;
  bottom: 28%;
  right: -120px;
  width: 350px;
  height: 350px;
  border: 2px solid rgba(242,166,90,0.19);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.about-therapy {
  padding: 60px 0 0;
  background: #F7F7F5;
  position: relative;
  overflow: hidden;
}
.about-therapy::after {
  content: '';
  position: absolute;
  top: 38%;
  right: -80px;
  width: 240px;
  height: 240px;
  border: 1.5px solid rgba(63,111,167,0.11);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}
.about-therapy-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
}
.about-therapy-intro h2 {
  font-family: 'Crimson Pro', serif;
  font-size: 2.4rem;
  color: #25303A;
  font-weight: 600;
  margin-bottom: 8px;
}
.about-divider {
  width: 60px;
  height: 3px;
  background: #F7BE1C;
  margin: 16px auto 28px;
  border-radius: 2px;
}
.about-lead {
  font-family: 'Crimson Pro', serif;
  font-size: 1.6rem;
  color: #3F6FA7;
  font-weight: 600;
  margin-bottom: 16px;
}
.about-lead-text {
  font-size: 1.1rem;
  color: #4a5568;
  line-height: 1.75;
}
.about-therapy-intro > p {
  font-size: 1.05rem;
  color: #4a5568;
  line-height: 1.75;
  margin-top: 12px;
}

/* Image + text grid */
.about-therapy-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 50px;
}
.about-therapy-image img {
  width: 100%;
  border-radius: 14px;
  aspect-ratio: 3/5;
  object-fit: cover;
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
  max-height: 280px;
}
.about-therapy-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: #4a5568;
  margin-bottom: 14px;
}

/* Process block */
.about-therapy-process {
  max-width: 720px;
  margin: 0 auto 50px;
  padding: 40px;
  background: #FFF3E0;
  border-radius: 14px;
  box-shadow: 0 14px 40px rgba(37,48,58,0.14), 0 4px 12px rgba(37,48,58,0.08);
}
.about-therapy-process h3 {
  font-family: 'Crimson Pro', serif;
  font-size: 1.5rem;
  color: #25303A;
  font-weight: 600;
  margin-bottom: 16px;
}
.about-therapy-process p {
  font-size: 1rem;
  line-height: 1.8;
  color: #4a5568;
  margin-bottom: 12px;
}
.about-therapy-process em {
  color: #3F6FA7;
  font-size: 1.05rem;
}

/* Shift section (reverse grid) */
.about-therapy-shift {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 50px;
}
.about-therapy-shift-text h3 {
  font-family: 'Crimson Pro', serif;
  font-size: 1.5rem;
  color: #25303A;
  font-weight: 600;
  margin-bottom: 16px;
}
.about-therapy-shift-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: #4a5568;
  margin-bottom: 12px;
}
.about-therapy-shift-image img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.06);
}

/* CTA band — full-width blue stripe matching homepage consequences block */
.about-cta-band {
  text-align: center;
  padding: 50px 24px;
  background: #3F6FA7;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  width: 100vw;
  position: relative;
}
.about-cta-band::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #F2A65A, #F7BE1C, #3F6FA7);
}
.about-cta-band p {
  font-family: 'Crimson Pro', serif;
  font-size: 1.25rem;
  color: #fff;
  font-weight: 500;
  margin-bottom: 20px;
}

/* Bio Section */
.about-bio {
  background: #FFF3E0;
  padding: 65px 0;
  position: relative;
  overflow: hidden;
}
.about-bio::before {
  content: '';
  position: absolute;
  top: -50px;
  right: 8%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(63,111,167,0.05);
}
.about-bio::after {
  content: '';
  position: absolute;
  bottom: -30px;
  left: 5%;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(242,166,90,0.06);
}
.about-bio-inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 50px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.about-bio-photo img {
  width: 100%;
  border-radius: 14px;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: top;
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}
.about-bio-credentials {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #3F6FA7;
  margin-bottom: 8px;
}
.about-bio-text { white-space: pre-line; }
.about-bio-text h2 {
  font-family: 'Crimson Pro', serif;
  font-size: 2.2rem;
  color: #25303A;
  font-weight: 600;
  margin-bottom: 18px;
}
.about-bio-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: #4a5568;
  margin-bottom: 14px;
}
.about-bio-quote {
  margin: 24px 0;
  padding: 20px 24px;
  border-left: 3px solid #F7BE1C;
  font-family: 'Crimson Pro', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: #3F6FA7;
  line-height: 1.5;
  background: rgba(255,255,255,0.5);
  border-radius: 0 8px 8px 0;
}
.about-bio-text .btn-primary {
  margin-top: 10px;
}

/* ===== ABOUT EXTRAS — Education + Personal ===== */
.about-extras {
  background: #F7F7F5;
  padding: 70px 0 80px;
  position: relative;
}
.about-extras::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(63,111,167,0.18), rgba(242,166,90,0.18), transparent);
}
.about-extra {
  max-width: 880px;
  margin: 0 auto 56px;
}
.about-extra:last-child { margin-bottom: 0; }
.about-extra h3 {
  font-family: 'Crimson Pro', serif;
  font-size: 1.7rem;
  font-weight: 600;
  color: #25303A;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}
.about-extra h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 56px;
  height: 2px;
  background: linear-gradient(90deg, #3F6FA7, #F2A65A);
  border-radius: 1px;
}
.about-extra p {
  font-size: 1rem;
  line-height: 1.8;
  color: #4a5568;
  margin-bottom: 14px;
}
.about-extra p:last-child { margin-bottom: 0; }

/* Personal subsection — text + Yogi photo grid */
.about-extra--personal {
  max-width: 880px;
}
.about-extra-photos {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  margin: 32px 0 0;
}
.about-extra-photos img {
  height: 400px;
  width: auto;
  border-radius: 14px;
  box-shadow: 0 14px 40px rgba(37,48,58,0.10), 0 4px 12px rgba(37,48,58,0.06);
  object-fit: cover;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .about-extra-photos {
    flex-direction: column;
    align-items: stretch;
  }
  .about-extra-photos img {
    height: auto;
    width: 100%;
    object-fit: unset;
  }
}

/* ===== CLOSING QUOTE — Alan Watts pull on About ===== */
.about-quote {
  background: #FFF3E0;
  padding: 70px 0;
}
.about-quote-block {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  padding: 36px 24px;
  border: 0;
}
.about-quote-block::before,
.about-quote-block::after {
  content: '';
  position: absolute;
  left: 50%;
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #F2A65A, transparent);
  transform: translateX(-50%);
}
.about-quote-block::before { top: 0; }
.about-quote-block::after  { bottom: 0; }
.about-quote-block p {
  font-family: 'Crimson Pro', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 1.7rem;
  line-height: 1.5;
  color: #25303A;
  margin: 0 0 22px;
}
.about-quote-block cite {
  display: block;
  font-style: normal;
  font-family: 'Karla', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #3F6FA7;
}
.about-quote-block cite::before {
  content: '\2014\00a0';
  color: #F2A65A;
}
@media (max-width: 768px) {
  .about-quote { padding: 50px 0; }
  .about-quote-block p { font-size: 1.32rem; }
}

@media (max-width: 768px) {
  .about-therapy-grid { grid-template-columns: 1fr; gap: 30px; }
  .about-therapy-shift { grid-template-columns: 1fr; gap: 30px; }
  .about-therapy-shift-image { order: -1; }
  .about-therapy-process { padding: 28px 24px; }
  .about-bio-inner { grid-template-columns: 1fr; gap: 30px; }
  .about-bio-photo { max-width: 320px; margin: 0 auto; }
  .about-bio-text h2 { font-size: 1.8rem; }
}

/* ===== INNER PAGES (FAQ, generic) ===== */
.inner-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 72px;
  min-height: 420px;
}
.inner-hero--solid {
  background: #3F6FA7;
}
.inner-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.inner-page--about .inner-hero-bg { background-position: center 60%; }
.inner-page--faq .inner-hero-bg   { background-position: center 40%; }
.inner-page--couples-therapy .inner-hero-bg,
.inner-page--perimenopause-menopause .inner-hero-bg {
  background-position: center 70%;
}
/* ── Service page circles — all live inside .inner-content so they paint on its background ── */

/* couples-therapy — blue left top, orange right lower */
.inner-page--couples-therapy .inner-content::before {
  content: ''; position: absolute;
  top: 60px; left: -100px;
  width: 360px; height: 360px;
  border: 2px solid rgba(63,111,167,0.17); border-radius: 50%;
  z-index: 0; pointer-events: none;
}
.inner-page--couples-therapy .inner-content::after {
  content: ''; position: absolute;
  bottom: 120px; right: -80px;
  width: 300px; height: 300px;
  border: 2px solid rgba(242,166,90,0.19); border-radius: 50%;
  z-index: 0; pointer-events: none;
}

/* individual-therapy — orange right top, blue left lower */
.inner-page--individual-therapy .inner-content::before {
  content: ''; position: absolute;
  top: 60px; right: -140px;
  width: 400px; height: 400px;
  border: 2px solid rgba(242,166,90,0.18); border-radius: 50%;
  z-index: 0; pointer-events: none;
}
.inner-page--individual-therapy .inner-content::after {
  content: ''; position: absolute;
  bottom: 100px; left: -70px;
  width: 260px; height: 260px;
  border: 2px solid rgba(63,111,167,0.15); border-radius: 50%;
  z-index: 0; pointer-events: none;
}

/* family-therapy — small blue right top, orange left in "Create a more balanced homelife" section */
.inner-page--family-therapy .inner-content::before {
  content: ''; position: absolute;
  top: 60px; right: -80px;
  width: 280px; height: 280px;
  border: 2px solid rgba(63,111,167,0.16); border-radius: 50%;
  z-index: 0; pointer-events: none;
}
.inner-page--family-therapy .inner-content::after {
  content: ''; position: absolute;
  top: 72%; left: -110px;
  width: 380px; height: 380px;
  border: 2px solid rgba(242,166,90,0.18); border-radius: 50%;
  z-index: 0; pointer-events: none;
}

/* midlife-couples — orange left top, large blue right lower */
.inner-page--midlife-couples .inner-content::before {
  content: ''; position: absolute;
  top: 60px; left: -90px;
  width: 340px; height: 340px;
  border: 2px solid rgba(242,166,90,0.19); border-radius: 50%;
  z-index: 0; pointer-events: none;
}
.inner-page--midlife-couples .inner-content::after {
  content: ''; position: absolute;
  bottom: 140px; right: -130px;
  width: 420px; height: 420px;
  border: 2px solid rgba(63,111,167,0.14); border-radius: 50%;
  z-index: 0; pointer-events: none;
}

/* perimenopause-menopause — both circles on the right */
.inner-page--perimenopause-menopause .inner-content::before {
  content: ''; position: absolute;
  top: 60px; right: -140px;
  width: 420px; height: 420px;
  border: 2px solid rgba(242,166,90,0.18); border-radius: 50%;
  z-index: 0; pointer-events: none;
}
.inner-page--perimenopause-menopause .inner-content::after {
  content: ''; position: absolute;
  bottom: 100px; right: -60px;
  width: 240px; height: 240px;
  border: 2px solid rgba(63,111,167,0.15); border-radius: 50%;
  z-index: 0; pointer-events: none;
}

/* parents-teens-adult-kids — both circles on the left */
.inner-page--parents-teens-adult-kids .inner-content::before {
  content: ''; position: absolute;
  top: 60px; left: -100px;
  width: 380px; height: 380px;
  border: 2px solid rgba(63,111,167,0.16); border-radius: 50%;
  z-index: 0; pointer-events: none;
}
.inner-page--parents-teens-adult-kids .inner-content::after {
  content: ''; position: absolute;
  bottom: 80px; left: -70px;
  width: 260px; height: 260px;
  border: 2px solid rgba(242,166,90,0.17); border-radius: 50%;
  z-index: 0; pointer-events: none;
}

/* 3r-framework — one circle left beside "What can you expect...", one right lower */
.inner-page--3r-framework .inner-content::before {
  content: ''; position: absolute;
  top: 40%; left: -110px;
  width: 380px; height: 380px;
  border: 2px solid rgba(63,111,167,0.16); border-radius: 50%;
  z-index: 0; pointer-events: none;
}
.inner-page--3r-framework .inner-content::after {
  content: ''; position: absolute;
  bottom: 80px; right: -90px;
  width: 300px; height: 300px;
  border: 2px solid rgba(242,166,90,0.19); border-radius: 50%;
  z-index: 0; pointer-events: none;
}

.inner-page--testimonials {
  position: relative;
  overflow: hidden;
}
.inner-page--testimonials::before {
  content: '';
  position: absolute;
  top: 480px;
  right: -140px;
  width: 420px;
  height: 420px;
  border: 2px solid rgba(242,166,90,0.18);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}
.inner-page--testimonials::after {
  content: '';
  position: absolute;
  top: 560px;
  left: -90px;
  width: 300px;
  height: 300px;
  border: 2px solid rgba(63,111,167,0.16);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}
.inner-page--testimonials .inner-content {
  position: relative;
}
.inner-page--testimonials .inner-content::before {
  content: '';
  position: absolute;
  top: 58%;
  right: -60px;
  width: 260px;
  height: 260px;
  border: 1.5px solid rgba(242,166,90,0.15);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}
.inner-page--testimonials .inner-content::after {
  content: '';
  position: absolute;
  top: 78%;
  left: -70px;
  width: 320px;
  height: 320px;
  border: 2px solid rgba(63,111,167,0.13);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.inner-page--3r-framework .inner-hero-bg {
  background-position: center 30%;
}
.inner-page--3r-framework .svc-img-section {
  grid-template-columns: 1fr 0.55fr;
  align-items: stretch;
}
.inner-page--3r-framework .svc-img-col {
  position: relative;
  min-height: 560px;
}
.inner-page--3r-framework .svc-img-col::before {
  display: none;
}
.inner-page--3r-framework .svc-img-col img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: top center;
  border-radius: 12px;
}
.inner-page--3r-framework .svc-block--center {
  text-align: left;
}
.inner-page--3r-framework .svc-block--center h2::after {
  left: 0;
  transform: none;
}
.inner-hero-overlay {
  position: absolute;
  inset: 0;
  background: none;
}
.inner-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 24px;
}
.inner-hero-content h1 {
  font-family: 'Crimson Pro', serif;
  font-size: 2.8rem;
  font-weight: 600;
  letter-spacing: -0.3px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

.inner-content {
  padding: 55px 0;
  background: #F7F7F5;
  position: relative;
  overflow: hidden;
}
.inner-body {
  /* Width parity with About page — fills the .container (1140px). Text-only
     blocks inside use .svc-block / .svc-intro to constrain reading column. */
  font-size: 1rem;
  line-height: 1.8;
  color: #4a5568;
}
.inner-hero-sub {
  font-size: 1.1rem;
  margin-top: 12px;
  color: rgba(255,255,255,0.92);
  font-style: italic;
  font-family: 'Crimson Pro', serif;
}
.inner-body h2 {
  font-family: 'Crimson Pro', serif;
  font-size: 2rem;
  color: #25303A;
  font-weight: 600;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}
.inner-body h2:first-child {
  margin-top: 0;
}
.inner-body h3 {
  font-family: 'Crimson Pro', serif;
  font-size: 1.4rem;
  color: #3F6FA7;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
}
.inner-body p {
  margin-bottom: 1rem;
}
.inner-body strong {
  color: #25303A;
}
.inner-body a {
  color: #3F6FA7;
  font-weight: 600;
  transition: color 0.2s;
}
.inner-body a:hover {
  color: #F7BE1C;
}
/* btn-primary inside inner-body must not inherit the gold link hover */
.inner-body .btn-primary,
.inner-body .btn-primary:hover {
  color: #25303A;
}
.inner-body hr {
  border: none;
  height: 2px;
  background: linear-gradient(90deg, #F7BE1C, #F2A65A);
  margin: 3rem 0;
  max-width: 120px;
}

/* ===== INNER PAGE SECTION COMPONENTS ===== */
/* All used inside .inner-body — built for service / specialty pages.
   Matches About-page width (lives in 1140px .container). */

/* Intro lede above the first section — centered narrow column */
.svc-intro {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}
.svc-intro h2 {
  font-family: 'Crimson Pro', serif;
  font-size: 2rem;
  color: #25303A;
  font-weight: 600;
  margin: 0 0 18px;
}
.svc-intro p { font-size: 1.05rem; }

/* Text-only block — keeps comfortable reading column */
.svc-block {
  max-width: 720px;
  margin: 0 auto 56px;
}
.svc-block:last-child { margin-bottom: 0; }
.svc-block h2 {
  font-family: 'Crimson Pro', serif;
  font-size: 1.85rem;
  color: #25303A;
  font-weight: 600;
  margin: 0 0 16px;
  position: relative;
  padding-bottom: 12px;
}
.svc-block h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 56px;
  height: 2px;
  background: linear-gradient(90deg, #3F6FA7, #F2A65A);
  border-radius: 1px;
}
.svc-block.svc-block--center { text-align: center; }
.svc-block.svc-block--center h2::after { left: 50%; transform: translateX(-50%); }

/* Image-beside-text section — full container width 2-col grid.
   H2 lives INSIDE .svc-text-col (Rule #7 — never above .svc-img-section). */
.svc-img-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin: 0 0 64px;
}
.svc-img-section--reverse .svc-text-col  { order: 2; }
.svc-img-section--reverse .svc-img-col   { order: 1; }
.svc-text-col h2 {
  font-family: 'Crimson Pro', serif;
  font-size: 1.85rem;
  color: #25303A;
  font-weight: 600;
  margin: 0 0 16px;
  position: relative;
  padding-bottom: 12px;
}
.svc-text-col h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 56px;
  height: 2px;
  background: linear-gradient(90deg, #3F6FA7, #F2A65A);
  border-radius: 1px;
}
.svc-text-col p + h2 { margin-top: 36px; }
.svc-text-col p { margin-bottom: 14px; }
.svc-img-col {
  position: relative;
}
.svc-img-col img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 14px 40px rgba(37,48,58,0.14), 0 4px 12px rgba(37,48,58,0.08);
  position: relative;
  z-index: 1;
}
/* Decorative offset accent block behind image */
.svc-img-col::before {
  content: '';
  position: absolute;
  top: 18px;
  bottom: -18px;
  left: 18px;
  right: -18px;
  background: rgba(63,111,167,0.12);
  border-radius: 14px;
  z-index: 0;
}
.svc-img-section--reverse .svc-img-col::before {
  left: -18px;
  right: 18px;
}

/* Styled bullet list inside inner-body */
.svc-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 1.4rem;
}
.svc-bullets li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  line-height: 1.7;
}
.svc-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 12px;
  height: 2px;
  background: linear-gradient(90deg, #3F6FA7, #F2A65A);
  border-radius: 1px;
}

/* Pull-quote micro accent (used inline in body copy) */
.svc-pull {
  font-family: 'Crimson Pro', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: #3F6FA7;
  border-left: 3px solid #F2A65A;
  padding: 4px 0 4px 18px;
  margin: 18px 0;
  line-height: 1.55;
}

/* ===== FULL-BLEED BLUE BAND (matches home consequences-block) =====
   Escapes the .container with negative-margin viewport math, so it spans
   the full window. Re-uses .container-narrow inside for content reflow. */
.svc-blue-band {
  background: #3F6FA7;
  color: #fff;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  margin-bottom: 64px;
  width: 100vw;
  padding: 64px 24px 56px;
  position: relative;
  overflow: hidden;
}
.svc-blue-band::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #F2A65A, #F7BE1C, #3F6FA7);
}
.svc-blue-inner {
  max-width: 1080px;
  margin: 0 auto;
}
.svc-blue-inner h2,
.svc-blue-band h2 {
  font-family: 'Crimson Pro', serif;
  font-size: 1.95rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 18px;
  text-align: center;
}
.svc-blue-band h3,
.svc-blue-inner h3 {
  font-family: 'Crimson Pro', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  text-align: center;
  margin: 36px 0 14px;
}
.svc-blue-inner p {
  color: rgba(255,255,255,0.9);
  max-width: 760px;
  margin: 0 auto 14px;
  font-size: 1.02rem;
  line-height: 1.75;
}
.svc-blue-inner p strong { color: #fff; }
.svc-blue-inner ul.svc-bullets li { color: rgba(255,255,255,0.92); }
.svc-blue-inner ul.svc-bullets {
  max-width: 720px;
  margin: 0 auto 1.4rem;
}
.svc-blue-inner ul.svc-bullets li::before {
  background: linear-gradient(90deg, #F7BE1C, #F2A65A);
}

/* 3R framework cards — 3-col grid inside the blue band */
.svc-3r-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin: 32px auto 0;
  max-width: 980px;
}
.svc-3r-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 14px;
  padding: 28px 24px;
  text-align: center;
  position: relative;
  transition: background 0.3s ease, transform 0.3s ease;
}
.svc-3r-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-2px);
}
.svc-3r-label {
  display: inline-block;
  font-family: 'Karla', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #F7BE1C;
  margin-bottom: 14px;
}
/* Optional sub-phase line below the label (used when the doc gives a phase
   name alongside the R-word — e.g. "Reflect → The Audit"). Keeps the
   card readable instead of running everything into one long label. */
.svc-3r-phase {
  display: block;
  font-family: 'Crimson Pro', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.92);
  margin: -8px 0 16px;
  letter-spacing: 0;
}
.svc-3r-card p {
  color: rgba(255,255,255,0.92);
  margin: 0 0 12px;
  font-size: 0.98rem;
  line-height: 1.6;
}
.svc-3r-card p:last-child { margin-bottom: 0; }
.svc-3r-shift {
  font-family: 'Crimson Pro', serif;
  font-style: italic;
  color: #F2A65A;
  font-size: 1.02rem;
  border-top: 1px solid rgba(255,255,255,0.18);
  padding-top: 12px;
  margin-top: 12px !important;
}

/* ===== FEATURE VARIANT — used on the dedicated 3R Framework page =====
   Cards get a numbered hero indicator, generous breathing room, and
   left-aligned typographic hierarchy so each card reads as a chapter
   instead of a wall of text. */
.svc-3r-grid--feature {
  gap: 28px;
}
.svc-3r-grid--feature .svc-3r-card {
  padding: 40px 30px 30px;
  text-align: left;
  display: flex;
  flex-direction: column;
}
.svc-3r-grid--feature .svc-3r-card::after {
  content: '';
  position: absolute;
  top: 30px;
  right: 28px;
  width: 28px;
  height: 1px;
  background: rgba(247,190,28,0.55);
}
.svc-3r-num {
  display: block;
  font-family: 'Crimson Pro', serif;
  font-style: italic;
  font-size: 2.6rem;
  font-weight: 600;
  color: rgba(247,190,28,0.55);
  line-height: 1;
  margin-bottom: 14px;
  letter-spacing: -1px;
}
.svc-3r-grid--feature .svc-3r-label {
  font-size: 1.14rem;
  margin-bottom: 4px;
}
.svc-3r-grid--feature .svc-3r-phase {
  font-size: 1.22rem;
  margin: 0 0 18px;
  color: rgba(255,255,255,0.95);
}
.svc-3r-grid--feature .svc-3r-card p {
  font-size: 0.97rem;
  line-height: 1.7;
}

/* Question list inside a 3R card (used on Parents — Reflect card) */
.svc-3r-questions {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
}
.svc-3r-questions li {
  font-family: 'Crimson Pro', serif;
  font-style: italic;
  font-size: 1.02rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.92);
  position: relative;
  padding-left: 14px;
  margin-bottom: 10px;
  border-left: 2px solid rgba(247,190,28,0.55);
}

/* Closing micro-CTA line — sits above the parallax final-cta */
.svc-cta-line {
  max-width: 720px;
  margin: 56px auto 0;
  text-align: center;
  padding: 24px 0 0;
  border-top: 1px solid rgba(63,111,167,0.18);
}
.svc-cta-line p {
  font-family: 'Crimson Pro', serif;
  font-size: 1.18rem;
  color: #25303A;
  margin: 0;
}
.svc-cta-line strong { color: #3F6FA7; }

/* ===== TESTIMONIALS PAGE ===== */
.svc-testimonials {
  display: flex;
  flex-direction: column;
  gap: 36px;
  max-width: 880px;
  margin: 0 auto;
}
.svc-testimonial {
  background: #FFF3E0;
  border-radius: 16px;
  padding: 36px 40px 32px;
  position: relative;
  border-left: 4px solid #F2A65A;
  box-shadow: 0 8px 28px rgba(37,48,58,0.06);
}
.svc-testimonial:nth-child(even) {
  background: #fff;
  border-left-color: #3F6FA7;
}
.svc-testimonial::before {
  content: '\201C';
  position: absolute;
  top: 6px;
  left: 18px;
  font-family: 'Crimson Pro', serif;
  font-size: 4.5rem;
  line-height: 1;
  color: rgba(63,111,167,0.18);
  font-weight: 600;
}
.svc-testimonial p {
  position: relative;
  z-index: 1;
  font-size: 1.02rem;
  line-height: 1.8;
  color: #4a5568;
  margin-bottom: 14px;
}
.svc-testimonial p.svc-testimonial-emphasis {
  font-family: 'Crimson Pro', serif;
  font-style: italic;
  font-size: 1.18rem;
  color: #25303A;
  font-weight: 600;
  margin-top: 18px;
  margin-bottom: 18px;
}
.svc-testimonial cite {
  display: block;
  font-style: normal;
  font-family: 'Karla', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #3F6FA7;
  margin-top: 8px;
  letter-spacing: 0.3px;
}
.svc-testimonial cite::before {
  content: '— ';
  color: #F2A65A;
  font-weight: 700;
}

/* ===== Mobile breakpoints for inner sections ===== */
@media (max-width: 768px) {
  .svc-img-section,
  .svc-img-section--reverse {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .svc-img-section .svc-text-col,
  .svc-img-section--reverse .svc-text-col { order: 2; }
  .svc-img-section .svc-img-col,
  .svc-img-section--reverse .svc-img-col  { order: 1; }
  .svc-img-col::before,
  .svc-img-section--reverse .svc-img-col::before { display: none; }
  .svc-3r-grid { grid-template-columns: 1fr; gap: 18px; }
  .svc-blue-band { padding: 48px 24px 44px; }
  .svc-testimonial { padding: 28px 24px 24px; }
  /* Beat the higher-specificity 3R page override on mobile */
  .inner-page--3r-framework .svc-img-section { grid-template-columns: 1fr; }
  .inner-page--3r-framework .inner-content::before,
  .inner-page--3r-framework .inner-content::after { display: none; }
  /* Breathing room between paragraphs and the next H2 in the text column */
  .svc-text-col p + h2 { margin-top: 36px; }
}

/* ===== FAQ PAGE ===== */
.faq-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 72px;
  min-height: 420px;
}
.faq-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  background-image: url('../images/faq-hero-sunset-wm.jpg');
}
.faq-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(37,48,58,0.45), rgba(37,48,58,0.25));
}
.faq-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 24px;
}
.faq-hero-content h1 {
  font-family: 'Crimson Pro', serif;
  font-size: 2.8rem;
  font-weight: 600;
  letter-spacing: -0.3px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
.faq-page {
  position: relative;
  overflow: hidden;
}
.faq-page::before {
  content: '';
  position: absolute;
  top: 720px;
  left: -100px;
  width: 400px;
  height: 400px;
  border: 2px solid rgba(63,111,167,0.17);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}
.faq-page::after {
  content: '';
  position: absolute;
  bottom: calc(28% + 200px);
  right: -120px;
  width: 350px;
  height: 350px;
  border: 2px solid rgba(242,166,90,0.19);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.faq-body {
  padding: 60px 0;
  background: #F7F7F5;
}

/* Accordion */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-left: 4px solid #3F6FA7;
  box-shadow: 0 0 10px -3px rgba(0,0,0,0.15);
  margin-bottom: 24px;
  background: #fff;
  transition: box-shadow 0.3s, border-color 0.3s;
}

.faq-item:hover {
  box-shadow: 0 2px 16px -2px rgba(0,0,0,0.18);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 28px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Crimson Pro', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #25303A;
  line-height: 1.4;
  transition: color 0.2s;
}

.faq-question:hover {
  color: #3F6FA7;
}

.faq-icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3F6FA7;
  transition: transform 0.35s ease;
}

.faq-icon svg {
  width: 22px;
  height: 22px;
}

.faq-icon-v {
  transition: transform 0.35s ease, opacity 0.25s ease;
  transform-origin: center;
}

/* Open state */
.faq-item--open {
  border-left-color: #F7BE1C;
}

.faq-item--open .faq-question {
  color: #3F6FA7;
}

.faq-item--open .faq-icon {
  color: #F7BE1C;
}

.faq-item--open .faq-icon-v {
  transform: rotate(90deg);
  opacity: 0;
}

/* Answer collapse/expand */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding: 0 28px 24px;
  border-top: 1px solid rgba(63,111,167,0.1);
  margin: 0 28px;
  padding-top: 20px;
  margin-left: 0;
  margin-right: 0;
  padding-left: 28px;
  padding-right: 28px;
}

.faq-answer-inner p {
  font-size: 1rem;
  line-height: 1.8;
  color: #4a5568;
  margin-bottom: 12px;
}

.faq-answer-inner p:last-child {
  margin-bottom: 0;
}

.faq-answer-inner strong {
  color: #25303A;
}

.faq-answer-inner a {
  color: #3F6FA7;
  font-weight: 600;
  transition: color 0.2s;
}

.faq-answer-inner a:hover {
  color: #F7BE1C;
}

/* CTA at bottom — full-width blue band */
.faq-cta {
  text-align: center;
  margin-top: 50px;
  padding: 50px 24px;
  background: #3F6FA7;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  width: 100vw;
  position: relative;
}
.faq-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #F2A65A, #F7BE1C, #3F6FA7);
}
.faq-cta p {
  font-family: 'Crimson Pro', serif;
  font-size: 2rem;
  color: #fff;
  font-weight: 600;
  margin-bottom: 22px;
}

@media (max-width: 768px) {
  .faq-question { font-size: 1.05rem; padding: 18px 16px 18px 16px; }
}

@media (max-width: 768px) {
  .inner-hero-content h1 { font-size: 2.2rem; }
  .inner-content { padding: 40px 0; }
}

/* ===== CONTACT PAGE ===== */
.contact-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 72px;
  min-height: 420px;
}
.contact-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-image: url('../images/contact-hero-bokeh-wm.jpg');
}
.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(37,48,58,0.45), rgba(37,48,58,0.25));
}
.contact-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 24px;
}
.contact-hero-content h1 {
  font-family: 'Crimson Pro', serif;
  font-size: 2.8rem;
  font-weight: 600;
  letter-spacing: -0.3px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
.contact-page {
  position: relative;
  overflow: hidden;
}
.contact-page::before {
  content: '';
  position: absolute;
  top: 40%;
  left: -120px;
  width: 350px;
  height: 350px;
  border: 2px solid rgba(242,166,90,0.19);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}
.contact-page::after {
  content: '';
  position: absolute;
  top: 55%;
  right: -100px;
  width: 400px;
  height: 400px;
  border: 2px solid rgba(63,111,167,0.17);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.contact-body {
  padding: 60px 0;
  background: #F7F7F5;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 {
  font-family: 'Crimson Pro', serif;
  font-size: 1.9rem;
  color: #25303A;
  font-weight: 600;
  margin-bottom: 20px;
}

.contact-info p {
  font-size: 1rem;
  line-height: 1.75;
  color: #4a5568;
  margin-bottom: 14px;
}

.contact-inline-link {
  color: #3F6FA7;
  font-weight: 600;
  transition: color 0.2s;
}
.contact-inline-link:hover {
  color: #F7BE1C;
}

.contact-closing {
  margin-top: 8px;
  color: #3F6FA7;
}

.contact-details-block {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 2px solid #F7BE1C;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-detail-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #9aa5ad;
  margin-bottom: 4px;
}

.contact-detail-value {
  font-size: 1rem;
  color: #25303A;
  font-weight: 500;
}
a.contact-detail-value {
  color: #3F6FA7;
  transition: color 0.2s;
}
a.contact-detail-value:hover {
  color: #F7BE1C;
}

.contact-form-wrap {
  background: #FFF3E0;
  border-radius: 16px;
  padding: 36px 32px;
}

.contact-form-wrap h3 {
  font-family: 'Crimson Pro', serif;
  font-size: 1.5rem;
  color: #25303A;
  margin-bottom: 24px;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 14px;
  border: 1px solid rgba(63,111,167,0.2);
  border-radius: 8px;
  background: #fff;
  color: #25303A;
  font-family: 'Karla', sans-serif;
  font-size: 15px;
  transition: border-color 0.2s;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #9aa5ad;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #F7BE1C;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .btn-primary {
  width: 100%;
  margin-top: 4px;
  border: none;
  cursor: pointer;
}

/* WPForms overrides — Contact page (light background) */
.contact-form-wrap .wpforms-field { margin-bottom: 14px; }
.contact-form-wrap .wpforms-field-label {
  color: #25303A !important;
  font-family: 'Karla', sans-serif !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  margin-bottom: 6px !important;
}
.contact-form-wrap .wpforms-field input[type="text"],
.contact-form-wrap .wpforms-field input[type="email"],
.contact-form-wrap .wpforms-field input[type="tel"],
.contact-form-wrap .wpforms-field textarea {
  width: 100% !important;
  padding: 14px 16px !important;
  border: 1px solid rgba(63,111,167,0.2) !important;
  border-radius: 8px !important;
  background: #fff !important;
  color: #25303A !important;
  font-family: 'Karla', sans-serif !important;
  font-size: 15px !important;
  box-sizing: border-box !important;
  transition: border-color 0.2s !important;
}
.contact-form-wrap .wpforms-field input:focus,
.contact-form-wrap .wpforms-field textarea:focus {
  outline: none !important;
  border-color: #F7BE1C !important;
}
.contact-form-wrap .wpforms-field textarea { min-height: 120px !important; resize: vertical !important; }
.contact-form-wrap .wpforms-submit-container { margin-top: 4px; }
.contact-form-wrap .wpforms-submit,
.contact-form-wrap button[type="submit"] {
  width: 100% !important;
  background: #F7BE1C !important;
  color: #25303A !important;
  font-family: 'Karla', sans-serif !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  padding: 14px !important;
  border: none !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: background 0.2s, transform 0.2s !important;
}
.contact-form-wrap .wpforms-submit:hover,
.contact-form-wrap button[type="submit"]:hover {
  background: #e5ae10 !important;
  transform: translateY(-1px) !important;
}
.contact-form-wrap .wpforms-required-label { color: #3F6FA7 !important; }
.contact-form-wrap .wpforms-error { color: #c0392b !important; font-size: 13px !important; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid .service-card:nth-child(3) { grid-column: 1 / -1; max-width: 380px; margin: 0 auto; }
  .service-card { min-height: 340px; }
  .bridge-inner { grid-template-columns: 1fr; gap: 40px; }
  .bio-inner { grid-template-columns: 1fr; gap: 40px; }
  .bio-headshot { max-width: 360px; margin: 0 auto; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-phone { display: none; }
  .hamburger { display: flex; }
  /* Mobile nav drawer — shown when hamburger is clicked */
  #navLinks.open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    background: #fff;
    z-index: 9998;
    padding: 80px 32px 40px;
    gap: 0;
    overflow-y: auto;
  }
  #navLinks.open > li { width: 100%; border-bottom: 1px solid #eee; }
  #navLinks.open > li > a {
    display: block;
    padding: 16px 0;
    font-size: 1.1rem;
    font-family: 'Karla', sans-serif;
    color: #25303A;
    font-weight: 600;
    transform: none;
  }
  #navLinks.open > li.dropdown > a::after { display: none; }
  /* Sub-menus always visible when drawer is open */
  #navLinks.open .dropdown-menu {
    display: block;
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    padding: 0 0 8px 16px;
    box-shadow: none;
    background: none;
    min-width: unset;
    width: 100%;
  }
  #navLinks.open .dropdown-menu li { border: none; }
  #navLinks.open .dropdown-menu a {
    padding: 10px 0;
    font-size: 1rem;
    font-weight: 400;
    color: #3F6FA7;
  }
  #navLinks.open .nav-phone { display: none; }
  #navLinks.open .nav-cta { display: none; }
  .footer-legal-row { justify-content: center; }
  .hero { min-height: auto; }
  .hero-content h1 { font-size: 2.1rem; }
  .hero-subtitle { font-size: 1.05rem; }
  /* Individual Therapy hero: swap to portrait-cropped mobile image */
  .page-individual-therapy .inner-hero-bg { background-image: url('../images/ind-hero-mobile.jpg') !important; }
  /* Contact hero: person/phone is on the right side */
  .inner-page--contact .inner-hero-bg { background-position: right center; }
  /* Family therapy: swap to portrait-cropped mobile image */
  .page-family-therapy-and-parenting .inner-hero-bg { background-image: url('../images/family-therapy-hero-mobile.jpg') !important; }
  /* FAQ: swap to portrait-cropped mobile image */
  .inner-page--faq .inner-hero-bg { background-image: url('../images/faq-hero-mobile.jpg') !important; }
  /* 3R Framework: swap to portrait-cropped mobile image */
  .page-3r-framework .inner-hero-bg { background-image: url('../images/3r-framework-hero-mobile.jpg') !important; }
  /* Contact: swap to portrait-cropped mobile image */
  .contact-hero-bg { background-image: url('../images/hero-mobile-contact.jpg') !important; }
  /* Testimonials: swap to portrait-cropped mobile image */
  .page-testimonials .inner-hero-bg { background-image: url('../images/hero-mobile-testimonials.jpg') !important; }
  .services-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
  .service-card { min-height: 300px; }
  .service-card { min-height: 360px; }
  .pain-panel h3 { font-size: 1.5rem; }
  .pain-panel.stagger-1, .pain-panel.stagger-2, .pain-panel.stagger-3, .pain-panel.stagger-4 { margin-left: auto; margin-right: auto; max-width: 100%; }
  .pain-divider.stagger-1, .pain-divider.stagger-2, .pain-divider.stagger-3 { margin-left: auto; margin-right: auto; }
  .section-heading h2 { font-size: 1.9rem; }
  .bridge-image img { min-height: 280px; }
  .bio-inner { grid-template-columns: 1fr; }
  .bio-headshot { max-width: 300px; }
  .final-cta { min-height: auto; }
  .final-cta-grid { grid-template-columns: 1fr; text-align: center; }
  .final-cta-copy h2 { text-align: center; }
  .final-cta-bg { background-attachment: scroll; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-details-block { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .framework-stripe { padding: 72px 0 68px; }
  .framework-pillars { flex-direction: column; max-width: 400px; }
  .framework-pillar + .framework-pillar { border-left: none; border-top: 1px solid rgba(247,190,28,0.18); }
  .framework-pillar { padding: 36px 24px 40px; }
  .fw-watermark { font-size: 90vw; right: -12vw; }
}
@media (max-width: 480px) {
  .hero-content h1 { font-size: 1.75rem; }
  /* 3px gap so hero glass box doesn't sit flush against viewport edges */
  .hero-content { padding: 36px 18px 40px; margin: 0 8px; }
  .btn-primary { padding: 14px 28px; font-size: 0.93rem; }
  .pain-panel h3 { font-size: 1.35rem; }
  .consequences-block h2 { font-size: 1.6rem; }
  .framework-header h2 { font-size: 1.9rem; }
  .fw-word { font-size: 2.6rem; }
}

/* ── Mobile portrait: per-hero focal point ────────────────────────────────
   Default center crop cuts the subject on narrow portrait viewports.
   Each override shifts background-position to keep the feature in frame. */
@media (max-width: 540px) and (orientation: portrait) {
  /* Woman in wheat field is right of center */
  .inner-page--about .inner-hero-bg                        { background-position: 72% center; }
  /* Person wrapped in blanket is on the far left */
  .inner-page--individual-therapy .inner-hero-bg           { background-position: left center; }
  /* Couple watching sunset sits slightly left of center */
  .inner-page--couples-therapy .inner-hero-bg              { background-position: 40% center; }
  /* Stacked hands are perfectly centered */
  .inner-page--family-therapy-and-parenting .inner-hero-bg { background-position: center center; }
  /* Older couple on beach is centered */
  .inner-page--midlife-couples .inner-hero-bg              { background-position: center center; }
  /* Letter blocks are in lower-center of frame */
  .inner-page--perimenopause-menopause .inner-hero-bg      { background-position: center 65%; }
  /* Full family group spans width, centered */
  .inner-page--parents-teens-adult-kids .inner-hero-bg     { background-position: center center; }
  /* Rohini is on the far right of the frame */
  .inner-page--3r-framework .inner-hero-bg                 { background-position: right center; }
  /* Journal + teacup composition is centered */
  .inner-page--faq .inner-hero-bg                          { background-position: center center; }
  /* Stacked zen stones are on the left */
  .inner-page--testimonials .inner-hero-bg                 { background-position: left center; }
  /* Rotary phone is on the right */
  .inner-page--contact .inner-hero-bg                      { background-position: right center; }
}

/* ═══ JS-FAILURE SAFETY NET (Critical Lesson #9) ═══
   If client.js throws, IntersectionObserver never adds .visible.
   Above-fold safety: hero/inner-hero stay visible after 2.5s.
   .visible override ensures scroll-reveal transition still wins
   when JS works. Below-fold elements intentionally NOT included
   to preserve their scroll-reveal effect. */
@keyframes forceVisible { to { opacity: 1; transform: none; } }

.hero .fade-in,
.inner-hero-content { animation: forceVisible 0s 0s forwards; }
.inner-body { animation: forceVisible 0s 0.8s forwards; }

.fade-in.visible,
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
  animation: none;
}

/* ═══ TOUCH-DEVICE OVERRIDES ═══
   Disables parallax (iOS ignores fixed bg anyway) and enforces
   14px minimum font floor on elements that use sub-14px sizes. */
@media (hover: none) and (pointer: coarse) {
  .final-cta { background-attachment: scroll; }

  /* 14px floor on sub-14px text elements */
  .nav-links a,
  .footer-legal a,
  .footer-legal,
  .footer-copy,
  .copyright,
  .form-label,
  label { font-size: max(0.875rem, 14px) !important; }

  /* Bio credentials line */
  .bio-text p.bio-credentials { font-size: max(0.875rem, 14px) !important; }

  /* WPForms labels — override our own 13px rule for touch devices */
  .contact-form-wrap .wpforms-field-label,
  .final-cta-form-wrap .wpforms-field-label { font-size: 14px !important; }

  /* Nav links on iPad: ensure 44px tap target height */
  .nav-links > li > a { min-height: 44px; display: inline-flex; align-items: center; }
  .nav-phone { min-height: 44px; display: inline-flex; align-items: center; }

  /* Hamburger: 44px tall */
  .hamburger { min-height: 44px; }

  /* Footer legal links: 44px tap targets */
  .footer-legal-row a { min-height: 44px; display: inline-flex; align-items: center; padding: 0 6px; }

  /* Final CTA phone link: 44px tap target */
  .final-cta-content .phone-link { min-height: 44px; display: inline-flex; align-items: center; }

  /* Nav links on iPad: 44px in both dimensions for short-text items */
  .nav-links > li > a:not(.nav-cta) { min-width: 44px; }
}
