/* ================================================================
   Jerrica Adams Counseling — style.css
   Based on EliteStarterStylesheet_v2 + WPS v6
   Brand: Trauma-informed therapy | Tulsa, OK | BIPOC & LGBTQ+ affirming
================================================================ */

/* ── VIEW TRANSITIONS (WPS 20.8) ── */
@view-transition { navigation: auto; }
::view-transition-old(root) { animation: 350ms cubic-bezier(0.4,0,1,1) both vt-out; }
::view-transition-new(root) { animation: 400ms cubic-bezier(0,0,0.2,1) 80ms both vt-in; }
@keyframes vt-out { from{opacity:1;transform:translateY(0)} to{opacity:0;transform:translateY(-16px)} }
@keyframes vt-in  { from{opacity:0;transform:translateY(16px)} to{opacity:1;transform:translateY(0)} }

/* ================================================================
   SECTION 1 — COLOR SYSTEM
================================================================ */
:root {
  /* === BECOMING HER COUNSELING — Brand Colors from Marketing Materials === */

  /* AUTHORITY — Dark Forest Olive (logo circle, hero bg, footer) */
  --ink:         #2C3E1F;   /* deep forest — hero bg, footer */
  --ink-mid:     #3A5228;   /* olive green — dark section backgrounds */
  --ink-light:   #4A6741;   /* medium forest — card borders on dark */

  /* PRIMARY BRAND — Sage Green (blob shapes on business card) */
  --primary:     #6B8F5E;   /* sage green — buttons, links, icons */
  --primary-l:   #7FA870;   /* light sage — hovers */
  --primary-xl:  #B5CFA8;   /* pale sage — text on dark */
  --primary-bg:  #EDF3EA;   /* sage tint — card fills */
  --primary-bg2: #F4F7F2;   /* lightest sage — section fills */

  /* ACCENT — Warm Copper/Terracotta (lotus icon, "Counseling" text) */
  --gold:        #C4865A;   /* warm copper — CTAs, accents */
  --gold-l:      #D9A57C;   /* soft copper — links on dark */
  --gold-xl:     #F5E6D8;   /* copper tint background */
  --gold-pale:   #FAF5F0;   /* warm cream — near-white sections */

  /* WARM SECONDARY — Blush (complements the copper, feminine warmth) */
  --warm:        #C47A6B;   /* dusty coral */
  --warm-l:      #D9A090;   /* lighter coral — hovers */
  --warm-deep:   #A0544A;   /* deep coral — pressed */
  --warm-bg:     #FDF2EF;   /* coral tint */

  /* AFFIRMING ACCENT — keep violet for LGBTQ+ signal */
  --violet:      #7B6FA0;
  --violet-bg:   #F0EEF8;

  /* NEUTRALS — warm cream matching business card background */
  --ivory:       #F5F0E8;   /* warm cream — matches flyer background */
  --white:       #FFFFFF;
  --gray-text:   #3A3A2E;   /* warm dark — body text */
  --gray-mid:    #7A7A6A;   /* warm gray — captions */
  --gray-light:  #EDE8E0;   /* warm light gray — form backgrounds */
  --gray-border: #D8D0C4;   /* warm border */

  /* SHADOWS — derived from forest green */
  --sh-sm:       0 2px 14px rgba(44,62,31,.08);
  --sh-md:       0 8px 32px rgba(44,62,31,.13);
  --sh-lg:       0 20px 60px rgba(44,62,31,.18);
  --sh-pri:      0 8px 28px rgba(107,143,94,.30);
  --sh-gold:     0 8px 28px rgba(196,134,90,.32);
  --sh-warm:     0 8px 28px rgba(196,122,107,.28);

  --r-sm:        12px;
  --r-md:        20px;
  --r-lg:        32px;
  --r-pill:      100px;
  --nav-h:       80px;
}

[data-theme="dark"] {
  --ink:         #F0EBE0;
  --ivory:       #111208;
  --primary-bg:  #141C10;
  --primary-bg2: #0E1509;
  --gold-pale:   #1A1208;
  --gray-text:   #C8C4B8;
  --gray-border: #2A2E1E;
  --gray-light:  #1A1E12;
  --white:       #1C2015;
  --warm-bg:     #1F1410;
  --violet-bg:   #16131E;
}

/* ================================================================
   SECTION 2 — RESET & BASE
================================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Lora', Georgia, serif;
  font-size: 16px;
  color: var(--gray-text);
  line-height: 1.75;
  background: var(--ivory);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1,h2,h3,h4,h5 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
}
h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--primary-bg2); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 2px; }

a,button,[role="button"],input,label,select,textarea {
  -webkit-tap-highlight-color: transparent;
}
a,button,.btn,.hamburger,.dark-toggle,.faq-question,.back-top {
  min-height: 44px;
}

/* ================================================================
   SECTION 3 — SCROLL PROGRESS & CURSOR GLOW
================================================================ */
#scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; z-index: 9999;
  background: linear-gradient(90deg, var(--primary), var(--gold), var(--warm));
  width: 0%; transition: width .08s linear;
}

/* ================================================================
   SECTION 4 — ANNOUNCEMENT BAR
================================================================ */
.announcement-bar {
  background: linear-gradient(90deg, var(--ink-mid), var(--ink));
  color: #fff;
  padding: 10px 20px;
  text-align: center;
  position: relative;
  z-index: 200;
}
.ann-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  font-family: 'Montserrat', sans-serif;
  font-size: .85rem;
}
.ann-icon { font-size: 1rem; }
.ann-link {
  color: var(--gold-l);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
}
.ann-close {
  position: absolute;
  right: 16px; top: 50%;
  transform: translateY(-50%);
  background: none; border: none;
  color: rgba(255,255,255,.5);
  cursor: pointer;
  font-size: 1rem;
  padding: 4px 8px;
  min-height: unset;
  transition: color .2s;
}
.ann-close:hover { color: #fff; }
.announcement-bar.hidden { display: none; }

/* ================================================================
   SECTION 5 — NAVBAR
================================================================ */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(253,250,245,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  padding: 0 3% 0 5%;
  transition: box-shadow .25s, border-color .25s, background .25s;
  overflow: visible;
  min-height: var(--nav-h);
}
[data-theme="dark"] .navbar {
  background: rgba(15,18,25,.94);
}
.navbar.scrolled {
  box-shadow: var(--sh-md);
  border-color: var(--gray-border);
}
.navbar-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: .5rem;
  height: var(--nav-h);
}
.navbar-logo {
  display: flex;
  align-items: center;
  gap: .65rem;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-mark { flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-name {
  font-family: 'Raleway', 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: .95rem;
  color: var(--ink);
  letter-spacing: .10em;
  text-transform: uppercase;
}
.logo-cred {
  font-family: 'Lora', Georgia, serif;
  font-size: .68rem;
  font-style: italic;
  color: var(--gold);
  letter-spacing: .02em;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-left: 1.25rem;
  flex: 1;
}
.nav-item > a, .navbar-links li > a {
  font-family: 'Montserrat', sans-serif;
  font-size: .88rem;
  font-weight: 500;
  color: var(--gray-text);
  padding: .5rem .7rem;
  border-radius: var(--r-sm);
  transition: color .2s, background .2s;
  display: flex;
  align-items: center;
  gap: .35rem;
  white-space: nowrap;
}
.nav-item > a:hover { color: var(--primary); background: var(--primary-bg); }
.nav-coming-soon > a { color: var(--gray-mid); }
.soon-chip {
  font-size: .62rem;
  background: var(--gold-xl);
  color: var(--gold);
  border: 1px solid rgba(201,149,106,.3);
  padding: 1px 6px;
  border-radius: var(--r-pill);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.navbar-right {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-left: auto;
  flex-shrink: 0;
}
.nav-phone {
  font-family: 'Montserrat', sans-serif;
  font-size: .85rem;
  font-weight: 600;
  color: var(--primary);
  white-space: nowrap;
  display: none;
  align-items: center;
  line-height: 1;
}
@media(min-width:1100px) { .nav-phone { display: inline-flex; } }

/* Mobile menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--r-sm);
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--ivory);
  border-top: 1px solid var(--gray-border);
  padding: 1.5rem 5%;
  gap: .25rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu ul { display: flex; flex-direction: column; gap: .25rem; }
.mobile-menu a {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-text);
  padding: .7rem .5rem;
  border-bottom: 1px solid var(--gray-border);
  display: block;
}
.mobile-ctas {
  display: flex;
  gap: .75rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

/* ================================================================
   SECTION 6 — BUTTONS
================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: .9rem;
  padding: .75rem 1.5rem;
  border-radius: var(--r-pill);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background .22s, color .22s, border-color .22s, box-shadow .22s, transform .22s;
  white-space: nowrap;
}
.btn-lg { padding: .9rem 1.9rem; font-size: .95rem; }
.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-l);
  border-color: var(--primary-l);
  box-shadow: var(--sh-pri);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary-bg);
}
.btn-outline-light {
  background: transparent;
  color: var(--primary-xl);
  border-color: rgba(143,207,197,.4);
}
.btn-outline-light:hover {
  background: rgba(45,125,111,.15);
  border-color: var(--primary-xl);
}
.btn-ghost {
  background: rgba(255,255,255,0.10);
  color: #fff;
  border-color: rgba(255,255,255,0.45);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.20);
  color: #fff;
  border-color: rgba(255,255,255,0.75);
}
.btn-gold {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-l);
  border-color: var(--gold-l);
  box-shadow: var(--sh-gold);
  transform: translateY(-1px);
}
.btn-outline-gold {
  background: transparent;
  color: var(--gold-l);
  border-color: rgba(223,180,142,.5);
}
.btn-outline-gold:hover {
  background: rgba(201,149,106,.12);
  border-color: var(--gold-l);
}
.btn-nav {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  font-size: .82rem;
  padding: .6rem 1.2rem;
  flex-shrink: 0;
  margin-left: 4px;
}
.btn-nav:hover {
  background: var(--primary-l);
  box-shadow: var(--sh-pri);
}
.btn-arrow { transition: transform .22s; }
.btn:hover .btn-arrow { transform: translateX(3px); }

/* Magnetic (WPS 20.3) — JS handles transform, CSS handles transition */
.btn-magnetic {
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s;
}

/* ================================================================
   SECTION 7 — LAYOUT UTILITIES
================================================================ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 5%;
}
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header--split {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  text-align: left;
  margin-bottom: 2.5rem;
}
.section-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--primary);
  margin-bottom: .75rem;
  display: block;
}
.eyebrow-light { color: var(--primary-xl); }
.section-title { font-size: clamp(2rem,4vw,3rem); margin-bottom: 1rem; }
.section-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  color: var(--gray-mid);
  max-width: 560px;
  margin: 0 auto;
}

/* Fade-up animation */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  animation: fadeUp .7s cubic-bezier(.16,1,.3,1) forwards;
}
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ================================================================
   SECTION 8 — HERO
================================================================ */
.hero {
  background: linear-gradient(135deg, #2C3E1F 0%, #3A5228 50%, #4A6741 100%);
  color: #fff;
  padding: calc(var(--nav-h) + 5rem) 5% 0;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Grain texture overlay */
.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding-bottom: 6rem;
  width: 100%;
}

/* Botanical path (WPS 20.4) */
.hero-botanical {
  position: absolute;
  right: 5%;
  top: 10%;
  width: 120px;
  height: 260px;
  opacity: .35;
  z-index: 0;
}
.brand-draw-path {
  fill: none;
  stroke: var(--gold-l);
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  transition: stroke-dashoffset 2.2s cubic-bezier(.25,.46,.45,.94) .4s;
}
.brand-draw-path.drawn { stroke-dashoffset: 0; }

/* Hero text */
.hero-content { z-index: 2; }
.hero-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--primary-xl);
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1.5rem;
  animation-delay: .1s;
}
.eyebrow-dot { font-size: .5rem; color: var(--gold); }

h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.8rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -.02em;
  margin-bottom: 1.5rem;
}

/* Text reveal (WPS 20.2) */
.text-reveal { overflow: hidden; display: block; }
.text-reveal-inner {
  display: block;
  transform: translateY(105%);
  transition: transform .85s cubic-bezier(.16,1,.3,1);
}
.text-reveal.revealed .text-reveal-inner { transform: translateY(0); }
.hl-accent { display: inline; color: var(--gold-l); }
.hl-accent-light { display: inline; color: var(--gold-l); }
.hl-accent .text-reveal-inner,
.hl-accent-light .text-reveal-inner { color: inherit; }

.hero-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: rgba(255,255,255,.78);
  line-height: 1.65;
  max-width: 500px;
  margin-bottom: 2.5rem;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.hero-reassurance {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: 'Montserrat', sans-serif;
  font-size: .82rem;
  color: rgba(255,255,255,.55);
}

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Parallax rings (WPS 20.9) */
.h-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.04);
  pointer-events: none;
  will-change: transform;
}
.hr1 { width: 580px; height: 580px; top: -160px; right: -180px; }
.hr2 { width: 360px; height: 360px; top: 30px; right: 50px;
       border-color: rgba(201,149,106,.08); }
.hr3 { width: 200px; height: 200px; bottom: -40px; left: -20px;
       border-color: rgba(45,125,111,.18); }

/* Hero photo */
.hero-photo-frame {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 420px;
}

/* Clip-path image reveal (WPS 20.5) */
.img-reveal-wrap {
  overflow: hidden;
  border-radius: var(--r-lg);
  position: relative;
}
.img-reveal-inner {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.2s cubic-bezier(.16,1,.3,1);
  width: 100%;
  display: block;
  object-fit: cover;
}
.img-reveal-inner.revealed { clip-path: inset(0 0% 0 0); }
.img-reveal-panel {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--primary), var(--gold));
  transform: translateX(0);
  transition: transform 1.2s cubic-bezier(.16,1,.3,1);
  z-index: 2;
  border-radius: var(--r-lg);
}
.img-reveal-inner.revealed ~ .img-reveal-panel { transform: translateX(101%); }

/* Photo badges */
.photo-badge {
  position: absolute;
  background: rgba(253,250,245,.96);
  border: 1px solid var(--gray-border);
  border-radius: var(--r-md);
  padding: .6rem .9rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: 'Montserrat', sans-serif;
  font-size: .72rem;
  font-weight: 600;
  color: var(--ink);
  box-shadow: var(--sh-md);
  z-index: 10;
  line-height: 1.3;
  animation: fadeUp .7s .9s both;
}
.photo-badge-top { top: -16px; right: -16px; }
.photo-badge-bottom { bottom: -16px; left: -16px; }
.badge-icon { font-size: 1rem; }

/* Hero wave */
.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0; right: 0;
  line-height: 0;
  z-index: 2;
}
.hero-wave svg { width: 100%; height: 80px; display: block; }

/* ================================================================
   SECTION 9 — TRUST BAR
================================================================ */
.trust-bar {
  background: var(--ivory);
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--gray-border);
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding: 0 5%;
  scrollbar-width: none;
}
.trust-inner::-webkit-scrollbar { display: none; }
.t-item {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-family: 'Montserrat', sans-serif;
  font-size: .8rem;
  font-weight: 600;
  color: var(--gray-text);
  white-space: nowrap;
  flex-shrink: 0;
}
.t-icon { font-size: .9rem; }
.t-divider {
  width: 1px; height: 20px;
  background: var(--gray-border);
  flex-shrink: 0;
}
.accepting { color: var(--primary); }
.accepting-dot { color: var(--primary); }

/* ================================================================
   SECTION 10 — WHO I HELP / SPECIALTIES
================================================================ */
.who-i-help {
  padding: 6rem 0;
  background: var(--ivory);
}
.specialty-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.specialty-card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--r-lg);
  padding: 2.5rem 2rem;
  position: relative;
  transition: transform .28s cubic-bezier(.16,1,.3,1), box-shadow .28s;
}
.specialty-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-md);
}
.specialty-card--featured {
  background: var(--primary-bg);
  border-color: var(--primary-l);
  border-width: 2px;
}
.spec-icon-wrap {
  width: 60px; height: 60px;
  margin-bottom: 1.5rem;
}
.spec-svg { width: 100%; height: 100%; }
.spec-primary-badge {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--primary);
  background: rgba(45,125,111,.12);
  padding: 2px 10px;
  border-radius: var(--r-pill);
  margin-bottom: .75rem;
}
.specialty-card h3 {
  font-size: 1.35rem;
  color: var(--ink);
  margin-bottom: .75rem;
}
.specialty-card p {
  font-size: .93rem;
  color: var(--gray-mid);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.spec-link {
  font-family: 'Montserrat', sans-serif;
  font-size: .85rem;
  font-weight: 600;
  color: var(--primary);
  transition: gap .2s;
  display: inline-flex;
  align-items: center;
  gap: .3rem;
}
.spec-link:hover { gap: .5rem; }

/* Tags */
.who-also {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-border);
}
.who-also-label {
  font-family: 'Montserrat', sans-serif;
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gray-mid);
  margin-bottom: 1rem;
}
.tag-cloud { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; }
.tag {
  font-family: 'Montserrat', sans-serif;
  font-size: .82rem;
  font-weight: 500;
  color: var(--gray-text);
  background: var(--gray-light);
  border: 1px solid var(--gray-border);
  padding: .35rem .85rem;
  border-radius: var(--r-pill);
  transition: background .2s, color .2s, border-color .2s;
}
.tag:hover {
  background: var(--primary-bg);
  color: var(--primary);
  border-color: var(--primary-l);
}

/* ================================================================
   SECTION 11 — ABOUT TEASER
================================================================ */
.about-teaser {
  padding: 6rem 0;
  background: var(--gold-pale);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}
.about-photo-col { position: relative; z-index: 1; }
.about-photo-wrap {
  max-width: 440px;
  overflow: visible;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
}
.about-photo-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--r-lg);
  display: block;
}

.modality-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--r-md);
  padding: 1rem 1.25rem;
  box-shadow: var(--sh-md);
  display: flex;
  flex-direction: column;
  gap: .4rem;
  max-width: 200px;
  z-index: 10;
  animation: fadeUp .7s .7s both;
}
.mod-label {
  font-family: 'Montserrat', sans-serif;
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gray-mid);
  margin-bottom: .25rem;
}
.mod-item {
  font-family: 'Montserrat', sans-serif;
  font-size: .78rem;
  font-weight: 500;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: .35rem;
}
.mod-item::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.about-text-col .section-eyebrow { text-align: left; }
.about-text-col h2 { font-size: clamp(1.9rem,3.5vw,2.9rem); margin-bottom: 1.5rem; }
.about-body p {
  margin-bottom: 1rem;
  font-size: .97rem;
  color: var(--gray-text);
}
.about-creds {
  margin: 1.75rem 0;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.cred-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-family: 'Montserrat', sans-serif;
  font-size: .87rem;
  line-height: 1.5;
  color: var(--gray-text);
}
.cred-item strong { color: var(--ink); }
.cred-icon { font-size: 1.1rem; margin-top: 1px; }

/* ================================================================
   SECTION 12 — AFFIRMING SPACE
================================================================ */
.affirming {
  background: linear-gradient(135deg, #2C3E1F 0%, #3A5228 60%, #4A6741 100%);
  color: #fff;
  padding: 6rem 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.affirming::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
}
.affirming-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}
.affirming-headline {
  font-size: clamp(2.5rem, 5.5vw, 5rem);
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.05;
}
.affirming-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  color: rgba(255,255,255,.72);
  max-width: 600px;
  margin: 0 auto 3.5rem;
  line-height: 1.7;
}
.affirming-tags {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  text-align: left;
}
.aff-tag {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  transition: background .25s, border-color .25s, transform .25s;
}
.aff-tag:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.2);
  transform: translateY(-3px);
}
.aff-tag-icon { width: 36px; height: 36px; margin-bottom: 1rem; }
.aff-tag-icon svg { width: 100%; height: 100%; }
.aff-tag-label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .5rem;
}
.aff-tag-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: .85rem;
  color: rgba(255,255,255,.62);
  line-height: 1.65;
}

/* ================================================================
   SECTION 13 — HOW IT WORKS
================================================================ */
.how-it-works {
  padding: 6rem 0;
  background: var(--primary-bg2);
}
.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 1rem;
  align-items: start;
  margin-bottom: 3.5rem;
}
.step-card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--r-lg);
  padding: 2.25rem 1.75rem;
  position: relative;
  transition: transform .28s, box-shadow .28s;
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gray-border);
  line-height: 1;
  position: absolute;
  top: 1.25rem; right: 1.5rem;
}
.step-icon {
  width: 52px; height: 52px;
  margin-bottom: 1.25rem;
}
.step-icon svg { width: 100%; height: 100%; }
.step-card h3 { font-size: 1.2rem; color: var(--ink); margin-bottom: .65rem; }
.step-card p { font-size: .9rem; color: var(--gray-mid); line-height: 1.65; }
.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 3rem;
}
.step-connector svg { width: 60px; }
.hiw-cta { text-align: center; }
.hiw-note {
  margin-top: 1rem;
  font-family: 'Montserrat', sans-serif;
  font-size: .85rem;
  color: var(--gray-mid);
}
.hiw-note a { color: var(--primary); font-weight: 600; }

/* ================================================================
   SECTION 14 — STATS BAND
================================================================ */
.stats-band {
  background: var(--ink);
  padding: 4rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 4.5vw, 4.5rem);
  font-weight: 700;
  line-height: 1;
  color: var(--gold-l);
  display: block;
  margin-bottom: .5rem;
}
.stat-label {
  font-family: 'Montserrat', sans-serif;
  font-size: .82rem;
  font-weight: 500;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* ================================================================
   SECTION 15 — ENDORSEMENTS
================================================================ */
.endorsements {
  padding: 6rem 0;
  background: var(--ivory);
}
.endorsement-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.endorsement-card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--r-lg);
  padding: 2.5rem;
  position: relative;
  transition: transform .28s, box-shadow .28s;
}
.endorsement-card:hover { transform: translateY(-3px); box-shadow: var(--sh-md); }
.quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  color: var(--primary-bg);
  line-height: .8;
  margin-bottom: .5rem;
  display: block;
  color: var(--primary-xl);
  opacity: .4;
}
.quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--ink);
  line-height: 1.7;
  margin-bottom: 1.75rem;
}
.quote-attr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--gray-border);
}
.attr-name {
  font-family: 'Montserrat', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  font-style: normal;
  color: var(--ink);
  display: block;
  margin-bottom: .2rem;
}
.attr-title {
  font-family: 'Montserrat', sans-serif;
  font-size: .78rem;
  color: var(--gray-mid);
}
.attr-badge {
  font-family: 'Montserrat', sans-serif;
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--primary);
  background: var(--primary-bg);
  border: 1px solid rgba(45,125,111,.2);
  padding: 3px 10px;
  border-radius: var(--r-pill);
  white-space: nowrap;
}
.pt-badge-wrap { text-align: center; }
.pt-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: 'Montserrat', sans-serif;
  font-size: .85rem;
  color: var(--primary);
  background: var(--primary-bg);
  border: 1px solid rgba(45,125,111,.25);
  padding: .65rem 1.25rem;
  border-radius: var(--r-pill);
  transition: background .2s, box-shadow .2s;
}
.pt-badge:hover { background: var(--primary-bg2); box-shadow: var(--sh-pri); }

/* ================================================================
   SECTION 16 — FEES BAND
================================================================ */
.fees-band {
  background: var(--ink);
  padding: 5rem 0;
  color: #fff;
}
.fees-band-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.fees-left h2 {
  color: #fff;
  font-size: clamp(1.8rem,3vw,2.6rem);
  margin-bottom: 1rem;
}
.fees-left p {
  font-family: 'Montserrat', sans-serif;
  color: rgba(255,255,255,.7);
  line-height: 1.7;
  margin-bottom: 1.75rem;
}
.fee-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg);
  padding: 2rem;
  margin-bottom: 1.5rem;
  text-align: center;
}
.fee-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: .2rem;
}
.fee-dollar { font-family:'Montserrat',sans-serif; font-size:1.5rem; color:var(--gold-l); font-weight:700; }
.fee-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.fee-per { font-family:'Montserrat',sans-serif; font-size:.9rem; color:rgba(255,255,255,.5); }
.fee-note { font-family:'Montserrat',sans-serif; font-size:.8rem; color:rgba(255,255,255,.4); margin-top:.5rem; }

.insurance-list {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-md);
  padding: 1.5rem;
}
.ins-label {
  font-family:'Montserrat',sans-serif; font-size:.72rem;
  font-weight:700; text-transform:uppercase; letter-spacing:.1em;
  color:rgba(255,255,255,.4); margin-bottom:.75rem;
}
.ins-grid {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: .75rem;
}
.ins-item {
  font-family:'Montserrat',sans-serif; font-size:.82rem; font-weight:600;
  color:var(--primary-xl);
  background:rgba(45,125,111,.15);
  border:1px solid rgba(45,125,111,.25);
  padding:.3rem .8rem;
  border-radius:var(--r-pill);
}
.ins-payment {
  font-family:'Montserrat',sans-serif; font-size:.78rem;
  color:rgba(255,255,255,.4); margin-top:.5rem;
}

/* ================================================================
   SECTION 17 — BLOG PREVIEW
================================================================ */
.blog-preview {
  padding: 6rem 0;
  background: var(--gold-pale);
}
.see-all-link {
  font-family:'Montserrat',sans-serif; font-size:.88rem; font-weight:600;
  color:var(--primary); white-space:nowrap;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .28s, box-shadow .28s;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.blog-card-cat {
  font-family:'Montserrat',sans-serif; font-size:.7rem; font-weight:700;
  text-transform:uppercase; letter-spacing:.1em;
  color:var(--primary);
  background:var(--primary-bg);
  padding:.5rem 1.25rem;
  border-bottom:1px solid var(--gray-border);
}
.blog-card-body { padding: 1.5rem; flex: 1; }
.blog-card-body h3 {
  font-family:'Montserrat',sans-serif;
  font-size:1rem; font-weight:700;
  color:var(--ink); line-height:1.4;
  margin-bottom:.65rem;
}
.blog-card-body h3 a { transition:color .2s; }
.blog-card-body h3 a:hover { color:var(--primary); }
.blog-card-body p { font-size:.87rem; color:var(--gray-mid); line-height:1.65; }
.blog-card-footer {
  padding: 1rem 1.5rem;
  border-top:1px solid var(--gray-border);
  display:flex; justify-content:space-between; align-items:center;
  font-family:'Montserrat',sans-serif; font-size:.75rem; color:var(--gray-mid);
}

/* ================================================================
   SECTION 18 — FAQ TEASER
================================================================ */
.faq-teaser {
  padding: 6rem 0;
  background: var(--white);
}
.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
  max-width:1280px; margin:0 auto; padding:0 5%;
}
.faq-left h2 { font-size: clamp(1.9rem,3vw,2.7rem); margin-bottom:.75rem; }
.faq-left p { font-size:.95rem; color:var(--gray-mid); line-height:1.7; }
.faq-accordion { display:flex; flex-direction:column; gap:.5rem; }
.faq-item {
  background:var(--gray-light);
  border:1px solid var(--gray-border);
  border-radius:var(--r-md);
  overflow:hidden;
  transition:border-color .2s;
}
.faq-item[open] { border-color:var(--primary); }
.faq-question {
  font-family:'Montserrat',sans-serif;
  font-size:.95rem; font-weight:600;
  color:var(--ink);
  padding:1.1rem 1.25rem;
  cursor:pointer;
  list-style:none;
  display:flex; justify-content:space-between; align-items:center;
  gap:1rem;
}
.faq-question::-webkit-details-marker { display:none; }
.faq-question::after {
  content:'+'; font-size:1.3rem; font-weight:300;
  color:var(--primary); flex-shrink:0;
  transition:transform .25s;
}
details[open] .faq-question::after { transform:rotate(45deg); }
.faq-answer {
  padding:.25rem 1.25rem 1.25rem;
  border-top:1px solid var(--gray-border);
}
.faq-answer p {
  font-size:.9rem; color:var(--gray-mid); line-height:1.7;
}

/* ================================================================
   SECTION 19 — CTA STRIP
================================================================ */
.cta-strip {
  background: linear-gradient(135deg, #3A5228 0%, #2C3E1F 50%, #4A6741 100%);
  padding: 6rem 5%;
  position: relative;
  overflow: hidden;
}
.cta-strip-inner {
  max-width:860px; margin:0 auto;
  position:relative; z-index:1;
  text-align:center;
}
.cta-botanical {
  position:absolute; left:-40px; bottom:0;
  width:80px; height:160px;
  opacity:.25; pointer-events:none;
}
.draw-path {
  fill:none; stroke:var(--gold-l); stroke-width:1.2;
  stroke-linecap:round;
  stroke-dasharray:400; stroke-dashoffset:400;
  transition:stroke-dashoffset 1.8s cubic-bezier(.25,.46,.45,.94);
}
.draw-path.drawn { stroke-dashoffset:0; }
.cta-strip-content .section-eyebrow { margin-bottom:.75rem; }
.cta-strip-content h2 {
  font-size:clamp(2rem,4.5vw,3.8rem);
  color:#fff; line-height:1.1; margin-bottom:1.25rem;
}
.cta-sub {
  font-family:'Montserrat',sans-serif;
  font-size:1.05rem; color:rgba(255,255,255,.65);
  max-width:480px; margin:0 auto 2.5rem;
  line-height:1.65;
}
.cta-strip-buttons {
  display:flex; flex-wrap:wrap;
  gap:1rem; justify-content:center;
  margin-bottom:1.25rem;
}
.cta-disclaimer {
  font-family:'Montserrat',sans-serif;
  font-size:.78rem; color:rgba(255,255,255,.38);
}

/* ================================================================
   SECTION 20 — FOOTER
================================================================ */
.footer {
  background:var(--ink);
  color:rgba(255,255,255,.65);
  padding:4rem 0 1.5rem;
}
.footer-grid {
  display:grid;
  grid-template-columns:1.4fr 1fr 1.2fr;
  gap:3rem;
  padding-bottom:3rem;
  border-bottom:1px solid rgba(255,255,255,.08);
  margin-bottom:1.5rem;
}
.footer-logo {
  display:flex; align-items:flex-start; gap:.75rem;
  margin-bottom:1.25rem;
}
.footer-name {
  display:block;
  font-family:'Cormorant Garamond',serif;
  font-size:1rem; font-weight:700; color:#fff;
}
.footer-cred-text {
  display:block;
  font-family:'Montserrat',sans-serif;
  font-size:.7rem; color:rgba(255,255,255,.4);
  letter-spacing:.05em; text-transform:uppercase; margin-top:2px;
}
.footer-tagline {
  font-family:'Montserrat',sans-serif;
  font-size:.85rem; line-height:1.65; margin-bottom:1rem;
}
.footer-license {
  font-family:'Montserrat',sans-serif;
  font-size:.75rem; color:rgba(255,255,255,.35);
  display:flex; flex-wrap:wrap; gap:.5rem;
}
.f-divider { opacity:.3; }

.footer-nav-heading {
  font-family:'Montserrat',sans-serif;
  font-size:.72rem; font-weight:700;
  text-transform:uppercase; letter-spacing:.12em;
  color:rgba(255,255,255,.35);
  margin-bottom:1.25rem;
  font-style:normal;
}
.footer-nav ul, .footer-contact ul { display:flex; flex-direction:column; gap:.6rem; }
.footer-nav a, .footer-contact a {
  font-family:'Montserrat',sans-serif;
  font-size:.87rem; color:rgba(255,255,255,.6);
  transition:color .2s;
}
.footer-nav a:hover, .footer-contact a:hover { color:var(--primary-xl); }
.footer-contact ul li {
  display:flex; align-items:flex-start; gap:.5rem;
  font-family:'Montserrat',sans-serif;
  font-size:.87rem; color:rgba(255,255,255,.55);
  line-height:1.5;
}
.footer-contact ul li svg { flex-shrink:0; margin-top:3px; opacity:.5; }
.footer-cta-btn {
  margin-top:1.25rem;
  display:inline-flex; font-size:.85rem; padding:.6rem 1.2rem;
}
.pt-footer-link {
  display:block;
  margin-top:.75rem;
  font-family:'Montserrat',sans-serif;
  font-size:.78rem;
  color:rgba(255,255,255,.35);
  transition:color .2s;
}
.pt-footer-link:hover { color:var(--primary-xl); }
.footer-bottom {
  display:flex; justify-content:space-between; align-items:center;
  flex-wrap:wrap; gap:1rem;
}
.footer-copy {
  font-family:'Montserrat',sans-serif;
  font-size:.78rem; color:rgba(255,255,255,.3);
}
.footer-legal {
  display:flex; flex-wrap:wrap; gap:1.25rem;
}
.footer-legal a {
  font-family:'Montserrat',sans-serif;
  font-size:.78rem; color:rgba(255,255,255,.35);
  transition:color .2s;
}
.footer-legal a:hover { color:var(--primary-xl); }

/* ================================================================
   SECTION 21 — FLOATING ELEMENTS
================================================================ */

/* Floating mobile CTA */
.float-cta {
  position:fixed; bottom:0; left:0; right:0;
  display:flex; gap:0;
  z-index:900;
  transform:translateY(100%);
  transition:transform .35s cubic-bezier(.16,1,.3,1);
}
.float-cta.visible { transform:translateY(0); }
.float-cta-main {
  flex:1;
  background:var(--primary);
  color:#fff;
  font-family:'Montserrat',sans-serif;
  font-size:.9rem; font-weight:700;
  text-align:center;
  padding:.9rem 1rem;
  min-height:54px;
  display:flex; align-items:center; justify-content:center;
}
.float-cta-phone {
  background:var(--gold);
  color:#fff;
  padding:.9rem 1.1rem;
  min-height:54px;
  display:flex; align-items:center; justify-content:center;
  border-left:1px solid rgba(255,255,255,.2);
}
@media(min-width:768px) { .float-cta { display:none !important; } }

/* Back to top */
.back-top {
  position:fixed; bottom:1.5rem; right:1.5rem;
  background:var(--primary);
  color:#fff;
  width:44px; height:44px;
  border-radius:50%;
  border:none;
  cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  box-shadow:var(--sh-pri);
  opacity:0; transform:translateY(10px);
  transition:opacity .3s, transform .3s;
  z-index:500;
}
.back-top.visible { opacity:1; transform:translateY(0); }
.back-top:hover { background:var(--primary-l); transform:translateY(-2px); }
@media(max-width:767px) { .back-top { bottom:4rem; } }

/* Dark mode toggle (WPS 20.6) */
.dark-toggle {
  position:fixed; top:50%; right:0;
  transform:translateY(-50%);
  z-index:800;
  background:var(--ink-mid);
  border:1px solid rgba(255,255,255,.12); border-right:none;
  border-radius:var(--r-sm) 0 0 var(--r-sm);
  padding:10px 10px 10px 12px;
  cursor:pointer;
  display:flex; flex-direction:column; align-items:center; gap:4px;
  transition:background .25s, transform .25s;
  box-shadow:-4px 0 20px rgba(0,0,0,.2);
}
.dark-toggle:hover { transform:translateY(-50%) translateX(-3px); }
.dt-icon { font-size:1rem; line-height:1; transition:transform .4s; }
.dt-label {
  font-size:.5rem; font-weight:700; color:rgba(255,255,255,.4);
  letter-spacing:.1em; text-transform:uppercase;
  writing-mode:vertical-rl;
  font-family:'Montserrat',sans-serif;
}
[data-theme="dark"] .dark-toggle { background:rgba(255,255,255,.08); }
[data-theme="dark"] .dark-toggle .dt-icon { transform:rotate(180deg); }

/* ================================================================
   SECTION 22 — SKELETON (WPS 20.12)
================================================================ */
.skeleton {
  background:linear-gradient(90deg,var(--gray-border) 25%,var(--gray-light) 50%,var(--gray-border) 75%);
  background-size:200% 100%;
  animation:skelShimmer 1.4s infinite;
  border-radius:var(--r-sm);
}
@keyframes skelShimmer {
  from{background-position:200% 0}
  to{background-position:-200% 0}
}

/* ================================================================
   SECTION 23 — RESPONSIVE
================================================================ */
@media(max-width:1100px) {
  .hero-inner { grid-template-columns:1fr; gap:3rem; padding-bottom:4rem; }
  .hero-visual { order:-1; }
  .hero-photo-frame { max-width:340px; margin:0 auto; }
  .hero-botanical { display:none; }
  .hr1 { width:420px; height:420px; top:-100px; right:-100px; }
  .hr2 { width:260px; height:260px; right:20px; }
  .specialty-grid { grid-template-columns:1fr; gap:1rem; }
  .specialty-card--featured { order:-1; }
  .about-grid { grid-template-columns:1fr; gap:2rem; }
  .about-photo-col { display:none; }
  .affirming-tags { grid-template-columns:1fr; gap:1rem; }
  .steps-grid { grid-template-columns:1fr; gap:1rem; }
  .step-connector { display:none; }
  .stats-grid { grid-template-columns:repeat(2,1fr); gap:1.5rem; }
  .endorsement-grid { grid-template-columns:1fr; }
  .fees-band-inner { grid-template-columns:1fr; gap:3rem; }
  .blog-grid { grid-template-columns:1fr; gap:1rem; }
  .faq-inner { grid-template-columns:1fr; gap:2.5rem; }
  .footer-grid { grid-template-columns:1fr; gap:2rem; }
  .navbar-links { display:none; }
  .hamburger { display:flex; }
  .nav-phone { display:none !important; }
}

@media(max-width:640px) {
  h1 { font-size:clamp(2rem,8vw,3rem); }
  /* FIX: Reduce hero top padding on short mobile screens */
  .hero { padding:calc(var(--nav-h) + 1.5rem) 5% 0; min-height:auto; }
  .section-header--split { flex-direction:column; align-items:flex-start; gap:1rem; }
  .stats-grid { grid-template-columns:repeat(2,1fr); }
  .fee-num { font-size:3.5rem; }
  .cta-strip-buttons { flex-direction:column; align-items:center; }
  .footer-bottom { flex-direction:column; text-align:center; }
  .photo-badge-top,.photo-badge-bottom { display:none; }
  .modality-float { display:none; }
  /* FIX: Font size floor for body copy on mobile */
  p, .article-body p, .specialty-text p, .bio-main p { font-size:1rem !important; }
  /* FIX: Hide nav CTA text on very small screens, keep icon */
  .btn-nav { font-size:0; padding:.6rem .85rem; }
  .btn-nav::after { content:"Book"; font-size:.78rem; font-family:'Montserrat',sans-serif; font-weight:700; }
}

/* FIX: Trust bar wrapping on iPad / 768px */
@media(max-width:900px) and (min-width:641px) {
  .trust-bar-inner { flex-wrap:wrap; gap:.75rem 1.25rem; justify-content:center; }
  .t-divider { display:none; }
}

/* FIX: Navbar button label shrink at tablet width before hamburger kicks in */
@media(max-width:1100px) and (min-width:641px) {
  .btn-nav { font-size:.78rem; padding:.55rem .9rem; }
}

/* ================================================================
   BECOMING HER — BLOB ORGANIC SHAPES (from business card design)
================================================================ */
.hero-blob-left {
  position: absolute;
  left: -80px; top: 20%;
  width: 280px; height: 340px;
  background: rgba(107,143,94,0.18);
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  pointer-events: none;
  z-index: 0;
}
.hero-blob-right {
  position: absolute;
  right: -60px; bottom: 15%;
  width: 220px; height: 280px;
  background: rgba(196,134,90,0.12);
  border-radius: 40% 60% 30% 70% / 60% 40% 50% 50%;
  pointer-events: none;
  z-index: 0;
}
/* Blob divider between sections */
.blob-divider {
  position: relative;
  overflow: hidden;
  line-height: 0;
}
.blob-divider svg {
  display: block;
  width: 100%;
  height: 80px;
}

/* ================================================================
   BECOMING HER — OFFICE ENVIRONMENT PHOTO
================================================================ */
.about-office-photo {
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 160px;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  border: 3px solid var(--ivory);
  z-index: 5;
}
.about-office-photo img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  display: block;
}
.office-photo-label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: .58rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gray-mid);
  background: var(--ivory);
  padding: .35rem .5rem;
  text-align: center;
}

/* ================================================================
   BECOMING HER — FOOTER QR CODE STUB
================================================================ */
.footer-qr {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.footer-qr-label {
  font-family: 'Montserrat', sans-serif;
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.35);
}
.footer-qr-placeholder {
  width: 64px; height: 64px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.04);
}
.footer-qr-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: .6rem;
  color: rgba(255,255,255,.25);
}

@media(max-width:1100px) {
  .about-office-photo { display: none; }
  .hero-blob-left, .hero-blob-right { display: none; }
}

/* ================================================================
   BECOMING HER — OFFICE STRIP SECTION
================================================================ */
.office-strip {
  padding: 5rem 0;
  background: var(--primary-bg2);
}
.office-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 5%;
}
.office-strip-text h2 {
  font-size: clamp(1.8rem,3vw,2.6rem);
  margin-bottom: 1rem;
}
.office-strip-text p {
  font-size: .95rem;
  color: var(--gray-text);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.office-strip-text strong { color: var(--ink); }
.office-details {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.office-detail-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: 'Montserrat', sans-serif;
  font-size: .82rem;
  font-weight: 500;
  color: var(--gray-text);
}
.office-detail-item svg { color: var(--primary); flex-shrink: 0; }

.office-strip-photos {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1rem;
  align-items: end;
}
.office-photo-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-md);
}
.office-photo-card img {
  width: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.office-photo-card:hover img { transform: scale(1.03); }
.office-photo-card--main img { height: 280px; }
.office-photo-card--accent img { height: 200px; }

@media(max-width:1100px) {
  .office-strip-inner { grid-template-columns: 1fr; gap: 2rem; }
  .office-strip-photos { grid-template-columns: 1fr 1fr; }
}
@media(max-width:640px) {
  .office-strip-photos { grid-template-columns: 1fr; }
  .office-photo-card--accent { display: none; }
}

/* ================================================================
   PARTNER BADGE — LearnTodayDental.com footer widget
================================================================ */
.partner-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: 1rem;
  padding: .45rem .9rem .45rem .6rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-pill);
  transition: background .2s;
}
.partner-badge:hover { background: rgba(255,255,255,.1); }
.partner-badge-label {
  font-family: 'Montserrat', sans-serif;
  font-size: .62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.45);
}
.partner-badge-link {
  font-family: 'Montserrat', sans-serif;
  font-size: .78rem;
  font-weight: 600;
  color: var(--gold-l);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: .3rem;
  transition: color .2s;
}
.partner-badge-link:hover { color: var(--gold-xl); }
.partner-badge-link svg { opacity: .7; }

/* Dark mode partner badge */
[data-theme="dark"] .partner-badge {
  background: rgba(196,134,90,.1);
  border-color: rgba(196,134,90,.2);
}

/* ================================================================
   COMING SOON CHIP in navbar
================================================================ */
.soon-chip {
  font-family: 'Montserrat', sans-serif;
  font-size: .58rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  background: var(--gold-xl);
  color: var(--gold);
  padding: .15rem .5rem;
  border-radius: var(--r-pill);
  margin-left: .3rem;
  vertical-align: middle;
  border: 1px solid rgba(196,134,90,.3);
  white-space: nowrap;
}

/* ================================================================
   SCREEN READER ONLY UTILITY
================================================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}

/* ================================================================
   COPY YEAR spans — ensure JS can target all pages
================================================================ */
.copy-year { display: inline; }

/* ================================================================
   WELCOME SLIDE-IN (Jerrica photo + "Hi, have a question?")
================================================================ */
.welcome-slidein {
  position: fixed;
  bottom: 80px;
  right: 24px;
  z-index: 9000;
  width: 280px;
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
  padding: 1.25rem;
  transform: translateY(120px);
  opacity: 0;
  pointer-events: none;
  transition: transform .5s cubic-bezier(.16,1,.3,1), opacity .4s;
}
.welcome-slidein.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.welcome-slidein.dismissed { display: none !important; }
.ws-header { display: flex; align-items: center; gap: .75rem; margin-bottom: .85rem; }
.ws-photo {
  width: 48px; height: 48px; border-radius: 50%;
  object-fit: cover; border: 2px solid var(--primary-bg);
  flex-shrink: 0;
}
.ws-status { display: flex; align-items: center; gap: .35rem; font-family: 'Montserrat',sans-serif; font-size: .7rem; color: var(--primary); font-weight: 600; margin-bottom: .1rem; }
.ws-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--primary); animation: wsPulse 2s ease-in-out infinite; }
@keyframes wsPulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.55;transform:scale(1.3)} }
.ws-name { font-family: 'Montserrat',sans-serif; font-size: .82rem; font-weight: 700; color: var(--ink); }
.ws-message { font-size: .88rem; color: var(--gray-text); line-height: 1.6; margin-bottom: 1rem; }
.ws-actions { display: flex; flex-direction: column; gap: .5rem; }
.ws-btn { display: flex; align-items: center; gap: .5rem; padding: .6rem 1rem; border-radius: var(--r-pill); font-family: 'Montserrat',sans-serif; font-size: .8rem; font-weight: 600; text-decoration: none; transition: all .2s; border: 1.5px solid transparent; }
.ws-btn-primary { background: var(--primary); color: #fff; }
.ws-btn-primary:hover { background: var(--primary-l); }
.ws-btn-phone { border-color: var(--gray-border); color: var(--gray-text); background: transparent; }
.ws-btn-phone:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-bg); }
.ws-close { position: absolute; top: .6rem; right: .75rem; background: none; border: none; cursor: pointer; color: var(--gray-mid); font-size: 1.1rem; line-height: 1; padding: 4px 6px; border-radius: 6px; transition: color .2s, background .2s; }
.ws-close:hover { color: var(--ink); background: var(--gray-light); }
@media(max-width:480px) {
  .welcome-slidein { width:calc(100vw - 2rem); right:1rem; bottom:70px; }
}

/* ================================================================
   "HOW IT WORKS" ANIMATED TIMELINE (homepage improvement)
================================================================ */
.how-it-works-v2 { padding: 6rem 0; background: var(--primary-bg2); }
.hit-inner { max-width: 1100px; margin: 0 auto; padding: 0 5%; }
.hit-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; margin-top: 3.5rem; position: relative; }
.hit-steps::before {
  content: '';
  position: absolute;
  top: 36px; left: calc(12.5%); right: calc(12.5%);
  height: 2px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--gold) 100%);
  z-index: 0;
}
.hit-step { text-align: center; padding: 0 1rem; position: relative; z-index: 1; }
.hit-step-num {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gray-border);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; font-weight: 700;
  color: var(--primary);
  box-shadow: var(--sh-sm);
  transition: border-color .3s, box-shadow .3s, transform .3s;
}
.hit-step.is-visible .hit-step-num {
  border-color: var(--primary);
  box-shadow: var(--sh-pri);
  transform: scale(1.07);
}
.hit-step h3 { font-size: 1rem; color: var(--ink); margin-bottom: .4rem; }
.hit-step p { font-family: 'Montserrat',sans-serif; font-size: .82rem; color: var(--gray-mid); line-height: 1.6; }
@media(max-width:768px) {
  .hit-steps { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .hit-steps::before { display: none; }
}
@media(max-width:480px) {
  .hit-steps { grid-template-columns: 1fr; }
}

/* ================================================================
   SIMPLEPRACTICE CONTACT WIDGET (overrides their inline styles)
================================================================ */
.sp-contact-widget {
  margin-top: 1rem;
}
/* Override SimplePractice's default button styles to match site brand.
   Higher specificity (parent class) beats their inline <style> block. */
.sp-contact-widget .spwidget-button-wrapper {
  text-align: center;
}
.sp-contact-widget .spwidget-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  width: 100%;
  padding: .9rem 1.9rem;
  background: var(--primary);
  color: #fff;
  border: 2px solid var(--primary);
  border-radius: var(--r-pill);
  font-family: 'Montserrat', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .02em;
  text-decoration: none;
  cursor: pointer;
  transition: background .22s, color .22s, border-color .22s, box-shadow .22s, transform .22s;
  box-shadow: 0 1px 0 rgba(0,0,0,0); /* primes the layer for smooth shadow transition */
}
.sp-contact-widget .spwidget-button:hover {
  background: var(--primary-l);
  color: #fff;
  border-color: var(--primary-l);
  box-shadow: var(--sh-pri);
  transform: translateY(-1px);
}
.sp-contact-widget .spwidget-button:active {
  background: var(--primary);
  color: rgba(255,255,255,.85);
  transform: translateY(0);
  box-shadow: 0 1px 3px rgba(0,0,0,.15) inset;
}
.sp-contact-widget .spwidget-button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}
.sp-contact-widget .sp-widget-note {
  font-family: 'Montserrat', sans-serif;
  font-size: .72rem;
  color: var(--gray-mid);
  text-align: center;
  margin-top: .85rem;
  line-height: 1.55;
}

/* ================================================================
   SELF-ASSESSMENT QUIZ WIDGET
================================================================ */
.quiz-section { padding: 6rem 0; background: var(--warm-bg); }
.quiz-inner { max-width: 720px; margin: 0 auto; padding: 0 5%; }
.quiz-card { background: var(--white); border: 1px solid var(--gray-border); border-radius: var(--r-lg); padding: 2.5rem; box-shadow: var(--sh-md); }
.quiz-progress { height: 4px; background: var(--gray-border); border-radius: 2px; margin-bottom: 2rem; overflow: hidden; }
.quiz-progress-bar { height: 100%; background: linear-gradient(90deg, var(--primary), var(--gold)); border-radius: 2px; transition: width .4s cubic-bezier(.16,1,.3,1); }
.quiz-q { font-family: 'Cormorant Garamond',serif; font-size: 1.4rem; color: var(--ink); line-height: 1.4; margin-bottom: 1.5rem; }
.quiz-options { display: flex; flex-direction: column; gap: .6rem; margin-bottom: 1.75rem; }
.quiz-opt {
  padding: .85rem 1.25rem; border: 1.5px solid var(--gray-border); border-radius: var(--r-md);
  font-family: 'Montserrat',sans-serif; font-size: .88rem; color: var(--gray-text);
  cursor: pointer; text-align: left; background: transparent; transition: all .2s;
}
.quiz-opt:hover { border-color: var(--primary); background: var(--primary-bg); color: var(--ink); }
.quiz-opt.selected { border-color: var(--primary); background: var(--primary-bg); color: var(--ink); font-weight: 600; }
.quiz-nav { display: flex; justify-content: space-between; align-items: center; }
.quiz-step-label { font-family:'Montserrat',sans-serif; font-size:.78rem; color:var(--gray-mid); }
.quiz-result { text-align: center; display: none; }
.quiz-result.visible { display: block; }
.quiz-result h3 { font-size: 1.8rem; margin-bottom: .75rem; }
.quiz-result p { font-family:'Montserrat',sans-serif; font-size:.92rem; color:var(--gray-text); line-height:1.7; max-width:480px; margin:0 auto 1.5rem; }

/* ================================================================
   ACCEPTING NEW CLIENTS — Pulsing badge (hero trust bar)
================================================================ */
.accepting-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: 'Montserrat', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  color: var(--primary);
  background: var(--primary-bg);
  border: 1.5px solid rgba(107,143,94,.35);
  padding: .3rem .85rem .3rem .65rem;
  border-radius: var(--r-pill);
}
.accepting-pulse {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--primary);
  display: inline-block;
  flex-shrink: 0;
  animation: pulse-ring 1.4s ease-out infinite;
  box-shadow: 0 0 0 0 rgba(107,143,94,.7);
}
@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(107,143,94,.70); transform: scale(1); }
  60%  { box-shadow: 0 0 0 10px rgba(107,143,94,0); transform: scale(1.1); }
  100% { box-shadow: 0 0 0 0 rgba(107,143,94,0); transform: scale(1); }
}
/* Dark mode badge */
[data-theme="dark"] .accepting-badge {
  background: rgba(107,143,94,.15);
  border-color: rgba(107,143,94,.3);
  color: var(--primary-xl);
}
[data-theme="dark"] .accepting-pulse { background: var(--primary-xl); }

/* ================================================================
   HOW-IT-WORKS TIMELINE — Initial hidden state for animation
   Steps start invisible; JS adds .is-visible on scroll
================================================================ */
.hit-step {
  opacity: 0;
  transform: translateY(36px) scale(0.94);
  transition: opacity .7s cubic-bezier(.16,1,.3,1),
              transform .7s cubic-bezier(.16,1,.3,1);
}
.hit-step.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
/* Number circle — spring in with glow ring */
.hit-step.is-visible .hit-step-num {
  border-color: var(--primary);
  background: var(--primary-bg);
  box-shadow: 0 0 0 6px rgba(107,143,94,.13), var(--sh-pri);
  transform: scale(1.13);
  transition: all .55s cubic-bezier(.34,1.56,.64,1);
}
/* Hover effect — gold lift */
.hit-step:hover .hit-step-num {
  border-color: var(--gold);
  background: var(--gold-xl);
  box-shadow: 0 0 0 8px rgba(196,134,90,.15), var(--sh-gold);
  transform: scale(1.18) translateY(-4px);
  color: var(--gold);
  transition: all .28s cubic-bezier(.34,1.56,.64,1);
}
.hit-step:hover h3 {
  color: var(--primary);
  transition: color .2s;
}

/* ================================================================
   SOCIAL ICONS — Footer
================================================================ */
.footer-social {
  padding: 1.5rem 0 1rem;
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: .5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-social-label {
  font-family: 'Montserrat', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.35);
  white-space: nowrap;
}
.footer-social-icons {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
}
.social-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.55);
  text-decoration: none;
  transition: background .2s, color .2s, border-color .2s, transform .2s;
  position: relative;
}
.social-icon:hover {
  background: rgba(255,255,255,.14);
  color: #fff;
  border-color: rgba(255,255,255,.25);
  transform: translateY(-2px);
}
/* Platform accent colors on hover */
.social-icon[data-platform="linkedin"]:hover  { background: rgba(10,102,194,.4);  border-color: rgba(10,102,194,.6); }
.social-icon[data-platform="facebook"]:hover  { background: rgba(24,119,242,.4);  border-color: rgba(24,119,242,.6); }
.social-icon[data-platform="instagram"]:hover { background: rgba(225,48,108,.4);  border-color: rgba(225,48,108,.6); }
.social-icon[data-platform="tiktok"]:hover    { background: rgba(0,0,0,.5);        border-color: rgba(255,255,255,.3); }
.social-icon[data-platform="youtube"]:hover   { background: rgba(255,0,0,.4);      border-color: rgba(255,0,0,.6); }
/* "Coming soon" tooltip */
.social-icon[href^="#"]::after {
  content: attr(title);
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  color: rgba(255,255,255,.85);
  font-family: 'Montserrat', sans-serif;
  font-size: .65rem;
  white-space: nowrap;
  padding: .25rem .6rem;
  border-radius: 6px;
  pointer-events: none;
  opacity: 0;
  transition: opacity .2s;
  z-index: 10;
}
.social-icon[href^="#"]:hover::after { opacity: 1; }

/* ================================================================
   QUIZ — Fix initial render (ensure first question is visible)
================================================================ */
#quiz-questions { display: block; }
.quiz-result { display: none; text-align: center; }
.quiz-result.visible { display: block; }

