/* ============================================================
   GOLDEN STATE REHAB — Design System
   Layout: refinerecovery.com patterns
   Color: Rich Gold (#C8A44A) signature palette
   Font: Plus Jakarta Sans
   ============================================================ */

/* 1. CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --gold:        #C8A44A;
  --gold-dark:   #A6842C;
  --gold-light:  #FBF6E8;
  --near-black:  #140E04;
  --dark-2:      #1E1608;
  --body-text:   #3D3020;
  --muted:       #7A6A52;
  --border:      #E8D5A3;
  --white:       #FFFFFF;
  --off-white:   #FDFAF5;
  --shadow-sm:   0 2px 8px rgba(20, 14, 4, 0.08);
  --shadow-md:   0 8px 24px rgba(20, 14, 4, 0.12);
  --shadow-lg:   0 16px 48px rgba(20, 14, 4, 0.16);
  --radius-sm:   8px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-pill: 50px;
  --nav-height:  72px;
  --transition:  0.2s ease;
  --transition-slow: 0.4s ease;
}

/* 2. CSS RESET
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--body-text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img, video {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
ul, ol { list-style: none; }
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}
input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* 3. TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--near-black);
}
h1 { font-size: clamp(40px, 5vw, 64px); }
h2 { font-size: clamp(28px, 3.5vw, 44px); }
h3 { font-size: clamp(20px, 2.5vw, 28px); }
h4 { font-size: 20px; font-weight: 600; }
h5 { font-size: 16px; font-weight: 600; }
p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.text-gold { color: var(--gold); }
.text-muted { color: var(--muted); }

/* 4. LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
.container-sm {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 32px;
}
.section {
  padding: 96px 0;
}
.section-sm {
  padding: 64px 0;
}
.section-lg {
  padding: 128px 0;
}
.section-dark {
  background: var(--near-black);
  color: var(--off-white);
}
.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--off-white);
}
.section-cream {
  background: var(--gold-light);
}
.section-off-white {
  background: var(--off-white);
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.text-center { text-align: center; }
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header h2 {
  margin-bottom: 16px;
}
.section-header p {
  font-size: 18px;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
}

/* 5. NAVIGATION
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  height: var(--nav-height);
  transition: box-shadow var(--transition);
}
.nav.scrolled {
  box-shadow: var(--shadow-md);
}
.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
}
.nav-logo-icon-img {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
}
.nav-logo-wordmark {
  font-size: 17px;
  color: var(--near-black);
  white-space: nowrap;
  letter-spacing: -0.02em;
  line-height: 1;
}
.nav-logo-wordmark strong {
  font-weight: 700;
}
.footer-logo {
  display: inline-block;
  text-decoration: none;
  margin-bottom: 16px;
}
.footer-logo .nav-logo-img {
  height: 120px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-links > li {
  position: relative;
}
.nav-links > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--body-text);
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav-links > li > a:hover,
.nav-links > li > a.active {
  color: var(--near-black);
  background: var(--gold-light);
}
.nav-links > li > a svg {
  width: 14px;
  height: 14px;
  transition: transform var(--transition);
}
.nav-links > li:hover > a svg {
  transform: rotate(180deg);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* 6. DROPDOWN MENUS
   ============================================================ */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
  pointer-events: none;
}
/* Bridge the 8px gap so cursor can travel from nav link into dropdown without losing :hover */
.dropdown::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
}
.dropdown-wide {
  min-width: 560px;
  display: flex;
  flex-direction: column;
}
.dropdown-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.dropdown-col {
  padding: 8px;
}
.dropdown-col-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 8px 12px 4px;
  display: block;
}
.nav-links > li:hover .dropdown,
.nav-links > li:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.dropdown a,
.dropdown-col a {
  display: block;
  padding: 9px 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--body-text);
  border-radius: 8px;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
.dropdown a:hover,
.dropdown-col a:hover {
  background: var(--gold-light);
  color: var(--near-black);
}

/* 7. MOBILE NAV
   ============================================================ */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--near-black);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  overflow-y: auto;
  z-index: 999;
  padding: 24px 32px 48px;
  flex-direction: column;
  gap: 4px;
}
.nav-mobile.open {
  display: flex;
}
.nav-mobile a {
  display: block;
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 500;
  color: var(--body-text);
  border-radius: 8px;
  transition: background var(--transition);
}
.nav-mobile a:hover {
  background: var(--gold-light);
}
.nav-mobile-group {
  margin-bottom: 8px;
}
.nav-mobile-group-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 16px 16px 8px;
}
.nav-mobile-divider {
  height: 1px;
  background: var(--border);
  margin: 12px 0;
}
.nav-mobile-actions {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
/* About Us sub-links in mobile nav */
.nav-mobile-sub {
  padding-left: 32px !important;
  font-size: 14px !important;
  opacity: 0.75;
}

/* 8. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
  text-decoration: none;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn:active {
  transform: translateY(0) scale(0.99);
}
.btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.btn-primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-primary:visited {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
}
.btn-secondary {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-secondary:visited {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-secondary:hover {
  background: var(--gold);
  color: var(--white);
}
.btn-white {
  background: var(--white);
  color: var(--near-black);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--off-white);
  border-color: var(--off-white);
}
.btn-white-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-white-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}
.btn-sm {
  padding: 10px 20px;
  font-size: 13px;
}
.btn-lg {
  padding: 18px 36px;
  font-size: 16px;
}

/* 9. HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(160deg, #FDFAF4 0%, #F5EDD8 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
  padding: 80px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero h1 {
  color: var(--near-black);
  font-size: clamp(32px, 5vw, 60px);
  line-height: 1.1;
  margin-bottom: 24px;
  text-wrap: balance;
}
.hero h1 .hero-h1-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: fit-content;
  max-width: 100%;
  margin: 22px auto 0;
  line-height: 1;
}
.hero h1 .hero-h1-badge-rule {
  flex: 0 0 56px;
  height: 1px;
  background: linear-gradient(90deg, rgba(200, 164, 74, 0) 0%, var(--gold) 100%);
}
.hero h1 .hero-h1-badge-rule:last-child {
  background: linear-gradient(90deg, var(--gold) 0%, rgba(200, 164, 74, 0) 100%);
}
.hero h1 .hero-h1-badge-text {
  display: inline-block;
  color: var(--gold-dark);
  font-size: clamp(11px, 1.05vw, 13px);
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  white-space: nowrap;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 20px;
}
.hero-eyebrow::before {
  display: none;
}
.hero-subtitle {
  font-size: 18px;
  color: var(--near-black);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-subheadline {
  font-size: 22px;
  font-weight: 500;
  color: var(--near-black);
  max-width: 600px;
  margin-bottom: 40px;
  line-height: 1.5;
}
.hero-micro {
  font-size: 16px;
  color: rgba(20, 14, 4, 0.55);
  margin-bottom: 40px;
  line-height: 1.6;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
/* Page hero (inner pages) */
.page-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 64px;
  overflow: hidden;
  background: var(--near-black);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(20, 14, 4, 0.4) 0%,
    rgba(20, 14, 4, 0.80) 100%
  );
}
.page-hero-content {
  position: relative;
  z-index: 1;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.breadcrumb a {
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { color: rgba(255,255,255,0.35); }
.page-hero h1 {
  color: var(--white);
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.1;
  max-width: 640px;
}
.page-hero-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

/* 10. CARDS
   ============================================================ */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.card-body {
  padding: 28px;
}
.card-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.card-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--near-black);
  margin-bottom: 10px;
  line-height: 1.25;
}
.card-text {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 20px;
  line-height: 1.65;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  transition: gap var(--transition);
}
.card-link:hover { gap: 10px; }
.card-link svg { width: 14px; height: 14px; }

/* Feature card (icon style) */
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.feature-card-icon {
  width: 52px;
  height: 52px;
  background: var(--gold-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--gold);
}
.feature-card-icon svg { width: 24px; height: 24px; }
.feature-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}
.feature-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 0;
}

/* Dark card (for dark sections) */
.card-dark {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(200, 164, 74, 0.2);
  border-radius: var(--radius-md);
  padding: 36px 32px;
}
.card-dark h3,
.card-dark h4 {
  color: var(--off-white);
}
.card-dark p {
  color: rgba(253, 250, 245, 0.7);
}

/* 11. PROCESS STEPS
   ============================================================ */
.process-badge {
  width: 56px;
  height: 56px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
  flex-shrink: 0;
}
.process-step {
  display: flex;
  flex-direction: column;
}

/* 12. INTRO / SPLIT SECTION
   ============================================================ */
.intro-section {
  display: grid;
  grid-template-columns: 42% 58%;
  gap: 0;
  align-items: center;
  min-height: 600px;
}
.intro-text {
  padding: 80px 64px 80px 0;
}
.intro-text .eyebrow { margin-bottom: 16px; }
.intro-text h2 { margin-bottom: 24px; }
.intro-text p { color: var(--muted); margin-bottom: 20px; }
.intro-text .btn-group {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.intro-image {
  position: relative;
  height: 100%;
  min-height: 500px;
}
.intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.intro-stat {
  position: absolute;
  bottom: 32px;
  left: -24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 28px;
  box-shadow: var(--shadow-md);
}
.intro-stat-number {
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.intro-stat-label {
  font-size: 13px;
  color: var(--muted);
}

/* 13. GALLERY STRIP
   ============================================================ */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 300px;
  gap: 0;
  overflow: hidden;
}
.gallery-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-strip img:hover {
  transform: scale(1.04);
}

/* 14. INSURANCE STRIP
   ============================================================ */
.insurance-strip {
  padding: 72px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--white);
}
.insurance-header-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 48px;
  flex-wrap: wrap;
  text-align: center;
}
.insurance-heading {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--near-black);
  white-space: nowrap;
}
.insurance-logos-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 32px 48px;
}
.insurance-cta-row {
  display: flex;
  justify-content: center;
  margin-top: 72px;
}
.ins-logo {
  height: 40px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  filter: grayscale(0%);
  opacity: 1;
  transition: opacity 0.25s ease;
}
.ins-logo:hover { opacity: 0.8; }

/* 15. GOOGLE REVIEWS
   ============================================================ */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.reviews-section {
  padding: 96px 0;
  background: #ffffff;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px;
  background: #ffffff;
  border: 1px solid #dadce0;
  border-radius: 8px;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.review-card:hover {
  box-shadow: 0 1px 6px rgba(32,33,36,0.08), 0 4px 16px rgba(32,33,36,0.08);
  border-color: #c4c7cb;
}
.review-head {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  flex-shrink: 0;
}
.review-avatar[data-color="blue"]   { background: #4285F4; }
.review-avatar[data-color="red"]    { background: #EA4335; }
.review-avatar[data-color="yellow"] { background: #FBBC05; }
.review-avatar[data-color="green"]  { background: #34A853; }
.review-author {
  flex: 1;
  min-width: 0;
}
.review-name {
  font-size: 15px;
  font-weight: 600;
  color: #202124;
  line-height: 1.3;
}
.review-meta {
  font-size: 13px;
  color: #5f6368;
  line-height: 1.4;
  margin-top: 2px;
}
.review-source {
  flex-shrink: 0;
}
.review-rating {
  display: flex;
  align-items: center;
  gap: 10px;
}
.review-stars {
  color: #FBBC05;
  font-size: 16px;
  letter-spacing: 1px;
  line-height: 1;
}
.review-time {
  font-size: 13px;
  color: #5f6368;
}
.review-body {
  font-size: 14px;
  line-height: 1.6;
  color: #202124;
  margin: 0;
}

/* 16. FAQ ACCORDION
   ============================================================ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child {
  border-top: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
  font-size: 17px;
  font-weight: 600;
  color: var(--near-black);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--gold); }
.faq-question svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--gold);
}
.faq-item.open .faq-question svg {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer-inner {
  padding-bottom: 24px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
}

/* 17. FORMS
   ============================================================ */
.form-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.form-group {
  margin-bottom: 20px;
}
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--near-black);
  margin-bottom: 8px;
}
.form-label .required { color: var(--gold); margin-left: 2px; }
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  color: var(--near-black);
  font-size: 15px;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,164,74,0.12);
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--muted);
  opacity: 0.6;
}
.form-textarea {
  resize: vertical;
  min-height: 120px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-info {
  padding-top: 8px;
}
.form-info h3 {
  font-size: 28px;
  margin-bottom: 16px;
}
.form-info p {
  color: var(--muted);
  margin-bottom: 32px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--gold-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-icon svg { width: 18px; height: 18px; }
.contact-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.contact-value {
  font-size: 15px;
  font-weight: 500;
  color: var(--near-black);
}

/* Help type accordion (verify insurance / contact) */
.help-accordion {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.help-accordion-item {
  border-bottom: 1px solid var(--border);
}
.help-accordion-item:last-child { border-bottom: none; }
.help-accordion-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--near-black);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  transition: background var(--transition);
}
.help-accordion-btn:hover { background: var(--gold-light); }
.help-accordion-btn svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }
.help-accordion-item.open .help-accordion-btn { background: var(--gold-light); }
.help-accordion-item.open .help-accordion-btn svg { transform: rotate(180deg); }
.help-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.help-accordion-content p {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

/* 18. CTA BANNER
   ============================================================ */
.cta-banner {
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: center;
  text-align: center;
  overflow: hidden;
}
.cta-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.cta-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 14, 4, 0.7);
}
.cta-banner-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
  padding: 80px 32px;
}
.cta-banner h2 {
  color: var(--white);
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 16px;
}
.cta-banner p {
  color: rgba(255,255,255,0.8);
  font-size: 18px;
  margin-bottom: 36px;
}
.cta-banner .btn-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* 19. RELATED PROGRAMS (inner page pattern)
   ============================================================ */
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.related-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.related-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
  background: var(--white);
}
.related-card h4 {
  font-size: 17px;
  margin-bottom: 8px;
}
.related-card p {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.6;
}
.related-card a {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.related-card a svg { width: 12px; height: 12px; }

/* Team grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.team-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.team-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: top;
}
.team-card-body {
  padding: 24px;
}
.team-card-role {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.team-card-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--near-black);
  margin-bottom: 8px;
}
.team-card-bio {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
}

/* Stats row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.stat-item {
  padding: 40px 32px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}

/* 20. FOOTER
   ============================================================ */
.footer {
  background: var(--near-black);
  color: rgba(253,250,245,0.7);
  padding: 80px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
.footer-brand .nav-logo-img { height: 120px; }
.footer-tagline {
  font-size: 14px;
  color: rgba(253,250,245,0.5);
  margin: 16px 0 24px;
  line-height: 1.65;
  max-width: 260px;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-contact a {
  font-size: 14px;
  color: rgba(253,250,245,0.6);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color var(--transition);
}
.footer-contact a:hover { color: var(--gold); }
.footer-contact svg { width: 14px; height: 14px; flex-shrink: 0; }
.footer-phone {
  font-size: 20px;
  font-weight: 700;
  color: var(--off-white) !important;
  margin-bottom: 4px;
}
.footer-col h5 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 14px;
  color: rgba(253,250,245,0.6);
  transition: color var(--transition);
  line-height: 1.4;
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(200,164,74,0.15);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom-text {
  font-size: 13px;
  color: rgba(253,250,245,0.4);
}
.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a {
  font-size: 13px;
  color: rgba(253,250,245,0.4);
  transition: color var(--transition);
}
.footer-bottom-links a:hover { color: var(--gold); }
.footer-badges {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.footer-badge {
  background: rgba(200,164,74,0.12);
  border: 1px solid rgba(200,164,74,0.25);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(200,164,74,0.8);
}

/* 21. SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* Utility divider */
.divider {
  height: 1px;
  background: var(--border);
  margin: 48px 0;
}

/* List styles */
.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--body-text);
}
.check-list li::before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  background: var(--gold-light);
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M5 10l4 4 6-7' stroke='%23C8A44A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  margin-top: 2px;
}

/* Program hours badge */
.hours-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-light);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--near-black);
  margin-bottom: 24px;
}
.hours-badge svg { width: 16px; height: 16px; color: var(--gold); }

/* ============================================================
   22a. CONDITION LINK CARDS (Homepage)
   ============================================================ */
.condition-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all 0.2s ease;
  text-decoration: none;
}
.condition-link:hover {
  border-color: var(--gold);
  transform: translateX(4px);
}
.condition-link-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--near-black);
  margin-bottom: 4px;
}
.condition-link-desc {
  font-size: 13px;
  color: var(--muted);
}
.condition-link-icon {
  color: var(--gold);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.condition-link-all {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: var(--gold-light);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all 0.2s ease;
  text-decoration: none;
}
.condition-link-all:hover {
  border-color: var(--gold);
}
.condition-link-all-text {
  font-size: 15px;
  font-weight: 600;
  color: var(--gold);
}
.condition-list-heading {
  margin-bottom: 24px;
  font-size: 22px;
}
.condition-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ============================================================
   22b. MEDICAL DISCLAIMER
   ============================================================ */
.medical-disclaimer {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0 0;
  margin-top: 24px;
}
.medical-disclaimer p {
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255,255,255,0.5);
  margin: 0 0 8px;
}
.medical-disclaimer p:last-child { margin-bottom: 0; }
.medical-disclaimer a {
  color: rgba(255,255,255,0.6);
  text-decoration: underline;
}
.medical-disclaimer a:hover { color: var(--gold-light); }

/* ============================================================
   22. RESPONSIVE BREAKPOINTS
   ============================================================ */

/* Tablet (≤1024px) */
@media (max-width: 1024px) {
  .nav-links, .nav-actions { display: none; }
  .nav-toggle { display: flex; }
  .container { padding: 0 24px; }
  .nav-container { padding: 0 24px; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-brand { grid-column: 1 / -1; }

  .intro-section {
    grid-template-columns: 1fr;
  }
  .intro-text {
    padding: 64px 0 0;
    order: 2;
  }
  .intro-image {
    order: 1;
    min-height: 380px;
  }
  .intro-stat { left: 16px; }

  .reviews-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .reviews-grid .review-card:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 560px;
    justify-self: center;
    width: 100%;
  }

  .form-section {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .gallery-strip {
    grid-template-columns: repeat(2, 1fr);
    height: auto;
  }
  .gallery-strip img { height: 200px; }

  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(2) { border-bottom: 1px solid var(--border); }
  .stat-item:nth-child(3) { border-bottom: 1px solid var(--border); }

  .team-grid { grid-template-columns: 1fr 1fr; }
  .related-grid { grid-template-columns: 1fr 1fr; }
}

/* ── EXTENDED COMPONENT STYLES ──────────────────────────────
   Added for team, FAQ, contact, insurance, and shared pages
   ============================================================ */

/* Page hero with direct background-image on section */
.page-hero {
  background-size: cover;
  background-position: center;
}

/* Badge aliases */
.badge-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

/* Page hero sub + breadcrumb aliases */
.page-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.page-hero-breadcrumb a {
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.page-hero-breadcrumb a:hover { color: var(--gold); }
.page-hero-breadcrumb svg { width: 14px; height: 14px; }
.page-hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  margin-top: 16px;
  max-width: 520px;
}

/* Button aliases (standalone without .btn prefix) */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--gold);
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  cursor: pointer;
  text-decoration: none;
}
.btn-primary:visited {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-1px);
}
.btn-primary svg { width: 16px; height: 16px; }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--gold);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--gold);
  transition: background var(--transition), color var(--transition), transform var(--transition);
  cursor: pointer;
  text-decoration: none;
}
.btn-secondary:visited {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-secondary:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-1px);
}
.btn-white-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  border: 2px solid rgba(255,255,255,0.5);
  transition: background var(--transition), border-color var(--transition);
  text-decoration: none;
}
.btn-white-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.8);
}
.btn-full { width: 100%; justify-content: center; }

/* Footer extended styles */
.footer-container {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  margin-bottom: 64px;
}
.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul li a {
  font-size: 14px;
  color: rgba(253,250,245,0.6);
  transition: color var(--transition);
  line-height: 1.4;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}
.footer-contact-block a,
.footer-contact-block p {
  font-size: 14px;
  color: rgba(253,250,245,0.6);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0;
  transition: color var(--transition);
}
.footer-contact-block a:hover { color: var(--gold); }
.footer-contact-block svg { width: 14px; height: 14px; flex-shrink: 0; }
.footer-phone {
  font-size: 18px !important;
  font-weight: 700;
  color: var(--off-white) !important;
}
.footer-disclaimer {
  font-size: 11px;
  color: rgba(253,250,245,0.3);
  margin-top: 8px;
}
.footer-bottom p {
  font-size: 13px;
  color: rgba(253,250,245,0.4);
  margin-bottom: 0;
}
.footer-bottom a {
  color: rgba(253,250,245,0.5);
  transition: color var(--transition);
}
.footer-bottom a:hover { color: var(--gold); }

/* Team card extended */
.team-card-photo { overflow: hidden; }
.team-card-photo img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: top;
  transition: transform 0.5s ease;
}
.team-card:hover .team-card-photo img { transform: scale(1.04); }
.team-role {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 4px;
}
.team-name {
  font-size: 19px;
  font-weight: 700;
  color: var(--near-black);
  margin-bottom: 10px;
}
.team-bio {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 16px;
}
.team-credentials {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.team-credentials span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
}
.team-credentials svg { width: 13px; height: 13px; color: var(--gold); flex-shrink: 0; }

/* FAQ Layout */
.faq-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 64px;
  align-items: start;
}
.faq-sidebar {
  position: sticky;
  top: calc(var(--nav-height) + 32px);
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 24px;
}
.faq-sidebar h3 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.faq-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 32px;
}
.faq-nav a {
  font-size: 14px;
  color: var(--body-text);
  padding: 8px 12px;
  border-radius: 8px;
  transition: background var(--transition), color var(--transition);
}
.faq-nav a:hover {
  background: var(--gold-light);
  color: var(--gold-dark);
}
.faq-sidebar-cta { border-top: 1px solid var(--border); padding-top: 24px; }
.faq-sidebar-cta p { font-size: 13px; color: var(--muted); margin-bottom: 12px; }
.faq-group { margin-bottom: 56px; }
.faq-group-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--near-black);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--border);
}

/* Legal Content (Privacy Policy, Terms & Conditions) */
.legal-content {
  max-width: 820px;
}
.legal-content .legal-effective {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 48px;
}
.legal-content h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--near-black);
  margin-top: 48px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
}
.legal-content h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--near-black);
  margin-top: 32px;
  margin-bottom: 12px;
}
.legal-content p {
  margin-bottom: 16px;
  line-height: 1.8;
}
.legal-content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 16px;
}
.legal-content ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  line-height: 1.7;
}
.legal-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}
.legal-content a {
  color: var(--gold-dark);
  text-decoration: underline;
  transition: color var(--transition);
}
.legal-content a:hover {
  color: var(--gold);
}
.legal-content .legal-contact {
  margin-top: 32px;
  padding: 24px;
  background: var(--off-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}
.legal-content .legal-contact p {
  margin-bottom: 8px;
}
.legal-content .legal-updated {
  margin-top: 48px;
  font-size: 14px;
  color: var(--muted);
  font-style: italic;
}

/* Contact Layout */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: start;
}
.contact-form-wrapper h2 {
  font-size: 32px;
  margin-bottom: 8px;
}
.contact-form-sub {
  color: var(--muted);
  margin-bottom: 32px;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-info-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
}
.contact-info-icon {
  width: 44px;
  height: 44px;
  background: rgba(200,164,74,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.contact-info-icon svg { width: 20px; height: 20px; color: var(--gold); }
.contact-info-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}
.contact-info-card p {
  font-size: 13px;
  color: var(--muted);
}
.contact-info-link {
  font-size: 16px;
  font-weight: 600;
  color: var(--gold-dark);
  display: block;
  margin-bottom: 6px;
  transition: color var(--transition);
}
.contact-info-link:hover { color: var(--gold); }
.hours-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--muted);
}
.contact-help-box {
  background: var(--near-black);
  border-radius: var(--radius-md);
  padding: 24px;
  color: var(--off-white);
}
.contact-help-box h3 { color: var(--gold); margin-bottom: 8px; font-size: 16px; }
.contact-help-box p { font-size: 13px; color: rgba(253,250,245,0.7); margin-bottom: 0; }

/* Map */
.section-map { margin-top: 0; }
.map-placeholder {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-placeholder-inner {
  text-align: center;
  color: var(--muted);
}
.map-placeholder-inner svg { width: 40px; height: 40px; color: var(--gold); margin: 0 auto 12px; }
.map-placeholder-inner p { font-size: 18px; font-weight: 600; margin-bottom: 4px; }
.map-sub { font-size: 14px; color: var(--muted); }

/* Insurance Verify Layout */
.insurance-verify-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: start;
}
.insurance-form-wrapper h2 {
  font-size: 32px;
  margin-bottom: 8px;
}
.form-header { margin-bottom: 32px; }
.form-header h2 { font-size: 32px; margin-bottom: 8px; }
.form-header p { color: var(--muted); }
.insurance-help-panel {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.help-panel-header {}
.help-panel-header h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}
.help-panel-header p { color: var(--muted); font-size: 14px; }
.insurance-logos-panel {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
}
.insurance-logos-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.insurance-logos-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}
.insurance-logo-badge {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--body-text);
}
.insurance-logos-more {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 0;
}

/* Trust Bar */
.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(200,164,74,0.15);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.trust-item {
  background: var(--near-black);
  padding: 40px 24px;
  text-align: center;
}
.trust-item svg {
  width: 32px;
  height: 32px;
  color: var(--gold);
  margin: 0 auto 12px;
  display: block;
}
.trust-item h4 {
  color: var(--off-white);
  font-size: 16px;
  margin-bottom: 6px;
}
.trust-item p {
  font-size: 13px;
  color: rgba(253,250,245,0.55);
  margin-bottom: 0;
}

/* Native form elements in .contact-form (no BEM classes needed) */
.contact-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--near-black);
  margin-bottom: 8px;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  color: var(--near-black);
  font-size: 15px;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,164,74,0.12);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--muted);
  opacity: 0.6;
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237A6A52' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

/* Form shared */
.required { color: var(--gold); }
.form-privacy {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--muted);
  margin-top: 12px;
}
.form-privacy svg { width: 13px; height: 13px; flex-shrink: 0; }

/* ── RESPONSIVE: extended components ─────────────────────── */
@media (max-width: 1024px) {
  .faq-layout { grid-template-columns: 1fr; }
  .faq-sidebar { position: static; }
  .contact-layout { grid-template-columns: 1fr; }
  .insurance-verify-layout { grid-template-columns: 1fr; }
  .trust-bar { grid-template-columns: repeat(2, 1fr); }
  .footer-container { grid-template-columns: 1fr 1fr; gap: 32px; padding: 0 40px; }
}

/* Mobile (≤640px) */
@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .section-lg { padding: 80px 0; }
  .container, .container-sm { padding: 0 20px; }
  .nav-container { padding: 0 20px; }

  .hero { min-height: 85vh; overflow: hidden; }
  .hero h1 { font-size: 36px; white-space: normal; }
  .hero h1 .hero-h1-badge { gap: 12px; margin-top: 16px; }
  .hero h1 .hero-h1-badge-rule { flex: 0 0 32px; }
  .hero h1 .hero-h1-badge-text { font-size: 11px; letter-spacing: 0.24em; }
  .hero-subheadline { font-size: 16px; line-height: 1.4; }
  .hero-content { padding-left: 24px; padding-right: 24px; width: 100%; box-sizing: border-box; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .page-hero { min-height: 320px; padding-bottom: 40px; }

  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }

  .gallery-strip { height: auto; }
  .gallery-strip img { height: 160px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { grid-column: auto; }

  .insurance-heading { font-size: 24px; white-space: normal; }
  .insurance-header-row { flex-direction: column; align-items: center; text-align: center; }
  .insurance-logos-grid { gap: 24px 32px; }
  .ins-logo { height: 32px; max-width: 120px; }

  .team-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .section-header { margin-bottom: 40px; }
  .section-header h2 { font-size: 28px; }

  .cta-banner { min-height: 380px; }
  .cta-banner .btn-group { flex-direction: column; align-items: center; }

  .reviews-section { padding: 64px 0; }
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-grid .review-card:nth-child(3) {
    grid-column: auto;
    max-width: none;
    justify-self: stretch;
  }

  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; }

  .trust-bar { grid-template-columns: 1fr 1fr; }
  .footer-container { grid-template-columns: 1fr; padding: 0 20px; }

  /* Intro / "Who We Are" section spacing */
  .intro-section { padding-top: 56px; }
  .intro-text { padding: 40px 24px 48px; }
}

/* ============================================================
   APPLE-STYLE PAGE HERO (programs/index + treatments/index only)
   Does NOT modify .page-hero — all other inner pages unaffected.
   ============================================================ */
.apple-page-hero {
  background: var(--white);
  padding: 80px 0 64px;
  border-bottom: 1px solid var(--border);
}
.apple-page-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}
.apple-page-hero-title {
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 800;
  color: var(--near-black);
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 48px;
}
.apple-page-hero-grid {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.apple-page-hero-grid::-webkit-scrollbar { display: none; }
.apple-page-hero-item {
  flex: 0 0 108px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 16px 12px;
  border-radius: 12px;
  text-decoration: none;
  color: var(--near-black);
  transition: background var(--transition);
}
.apple-page-hero-item:hover { background: #F5F5F4; }
.apple-page-hero-item:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.apple-page-hero-item-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #F0EDEA;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  flex-shrink: 0;
}
.apple-page-hero-item-icon svg { width: 24px; height: 24px; }
.apple-page-hero-item-label {
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  color: var(--near-black);
  line-height: 1.3;
  word-break: break-word;
}

/* ============================================================
   VALUE CARDS SECTION
   ============================================================ */
.value-cards-section {
  padding: 80px 0;
  background: var(--white);
}
.value-cards-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}
.value-cards-heading {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  color: var(--near-black);
  margin-bottom: 40px;
  max-width: 600px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.value-cards-scroll-wrapper {
  position: relative;
  overflow: hidden;
}
.value-cards-scroll-wrapper::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 20px;
  width: 80px;
  background: linear-gradient(to left, var(--white), transparent);
  pointer-events: none;
  z-index: 1;
}
.value-cards-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 20px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.value-cards-track::-webkit-scrollbar { display: none; }
.value-card {
  flex: 0 0 320px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
}
.value-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.value-card-content { padding: 28px 28px 20px; }
.value-card-eyebrow {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}
.value-card-headline {
  font-size: 24px;
  font-weight: 700;
  color: var(--near-black);
  line-height: 1.2;
  margin-bottom: 12px;
}
.value-card-body {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}
.value-card-visual {
  margin-top: auto;
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 160px;
}
.value-card-visual svg { width: 64px; height: 64px; }
.value-card-visual--gold { background: var(--gold-light); color: var(--gold-dark); }
.value-card-visual--blue { background: #EBF4FF; color: #2563EB; }
.value-card-visual--green { background: #EDFAF2; color: #16A34A; }
.value-card-visual--rose { background: #FFF1F2; color: #BE123C; }
.value-card-visual--lavender { background: #F3F0FF; color: #6D28D9; }

@media (max-width: 1024px) {
  .apple-page-hero-inner,
  .value-cards-inner { padding: 0 32px; }
}
@media (max-width: 640px) {
  .apple-page-hero { padding: 48px 0 40px; }
  .apple-page-hero-inner,
  .value-cards-inner { padding: 0 20px; }
  .apple-page-hero-title { margin-bottom: 32px; }
  .apple-page-hero-item { flex: 0 0 88px; padding: 12px 8px; }
  .apple-page-hero-item-icon { width: 48px; height: 48px; }
  .apple-page-hero-item-icon svg { width: 20px; height: 20px; }
  .value-cards-section { padding: 56px 0; }
  .value-card { flex: 0 0 280px; }
  .value-card-headline { font-size: 20px; }
}

/* ============================================================
   APPLE HERO GRID — SCROLL ARROW WRAPPER
   ============================================================ */
.apple-page-hero-grid-wrapper {
  position: relative;
}
.hero-grid-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--near-black);
  transition: box-shadow 0.2s;
  padding: 0;
}
.hero-grid-arrow:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.16); }
.hero-grid-arrow--left  { left: -14px; }
.hero-grid-arrow--right { right: -14px; }
.hero-grid-arrow svg    { width: 14px; height: 14px; }
.hero-grid-arrow.arrow-hidden { display: none; }

/* ============================================================
   NAV DROPDOWN — ALL PROGRAMS / ALL TREATMENTS LINK
   ============================================================ */
.dropdown-all {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 12px;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-dark) !important;
  border-radius: 8px;
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  margin-bottom: 4px;
  transition: background var(--transition);
  white-space: nowrap;
}
.dropdown-all::after {
  content: '→';
  font-size: 12px;
  opacity: 0.7;
}
.dropdown-all:hover {
  background: var(--gold-light) !important;
  color: var(--near-black) !important;
}

/* ── Exit-Intent Popup ──────────────────────────────────────── */
.exit-popup-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(20,14,4,0.75);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.exit-popup-overlay.visible { opacity: 1; pointer-events: all; }
.exit-popup {
  position: relative;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  max-width: 820px; width: 100%;
  transform: scale(0.94);
  transition: transform 0.3s ease;
  box-shadow: 0 24px 64px rgba(20,14,4,0.3);
}
.exit-popup-overlay.visible .exit-popup { transform: scale(1); }
.exit-popup-image { width: 42%; object-fit: cover; display: block; flex-shrink: 0; min-height: 360px; }
.exit-popup-body {
  padding: 48px 40px;
  display: flex; flex-direction: column; justify-content: center; gap: 16px;
}
.exit-popup-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold); margin: 0;
}
.exit-popup-heading {
  font-size: 28px; font-weight: 800; line-height: 1.2;
  color: var(--near-black); margin: 0;
}
.exit-popup-text {
  font-size: 15px; color: var(--muted); line-height: 1.6; margin: 0;
}
.exit-popup-actions { display: flex; flex-direction: column; gap: 12px; margin-top: 8px; }
.exit-popup-close {
  position: absolute; top: 16px; right: 16px;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(20,14,4,0.08); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--near-black); transition: background 0.2s;
}
.exit-popup-close:hover { background: rgba(20,14,4,0.16); }
.exit-popup-close svg { width: 16px; height: 16px; }
@media (max-width: 640px) {
  .exit-popup { flex-direction: column; }
  .exit-popup-image { width: 100%; height: 200px; min-height: 0; }
  .exit-popup-body { padding: 28px 24px; }
  .exit-popup-heading { font-size: 22px; }
}

/* ── Footer Redesign ─────────────────────────────────────────── */
.footer-tagline { color: rgba(253,250,245,0.75) !important; }
.footer-contact a { color: rgba(253,250,245,0.8) !important; }
.footer-links a { color: rgba(253,250,245,0.8) !important; }
.footer-bottom-text { color: rgba(253,250,245,0.65) !important; }
.footer-bottom-links a { color: rgba(253,250,245,0.65) !important; }
.footer-brand .nav-logo-icon-img { width: 52px; height: 52px; }
.footer-brand .nav-logo-wordmark { font-size: 20px; }
.footer-call-cta { margin: 20px 0 4px; }
.footer-call-label {
  display: block;
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(253,250,245,0.45);
  margin-bottom: 4px;
}
.footer-call-number {
  display: block;
  font-size: 26px; font-weight: 800;
  color: var(--off-white) !important;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: color var(--transition);
  line-height: 1.2;
}
.footer-call-number:hover { color: var(--gold) !important; }

/* ── Facility Card Carousel ──────────────────────────────────── */
.facility-section { padding-bottom: 64px; }
.facility-carousel-wrapper {
  position: relative;
  overflow: hidden;
  margin-top: 48px;
  padding: 0 56px;
}
.facility-carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.facility-card {
  flex: 0 0 calc((100% - 40px) / 3);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--near-black);
  cursor: default;
}
.facility-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.facility-card:hover img { transform: scale(1.04); }
.facility-card-label {
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(253,250,245,0.85);
  letter-spacing: 0.02em;
}
.facility-arrow {
  position: absolute; top: calc(50% - 22px); transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%; border: none; cursor: pointer;
  background: var(--white); color: var(--near-black);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  transition: background 0.2s, color 0.2s;
  z-index: 2;
}
.facility-arrow--prev { left: 4px; }
.facility-arrow--next { right: 4px; }
.facility-arrow:hover { background: var(--gold); color: #fff; }
@media (max-width: 768px) {
  .facility-carousel-wrapper { padding: 0 44px; }
  .facility-card { flex: 0 0 calc(85vw - 44px); }
  .facility-card img { height: 220px; }
}

/* ── Team Circle Cards ─────────────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
@media (max-width: 1024px) {
  .team-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

.team-circle-card {
  text-align: center;
  padding: 36px 20px 28px;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.team-circle-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(20,14,4,0.10);
}

.team-circle-avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  border: 4px solid var(--gold-light);
  box-shadow: 0 4px 16px rgba(200,164,74,0.22);
}
.team-circle-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-circle-name {
  font-weight: 700;
  font-size: 15px;
  line-height: 1.3;
  color: var(--near-black);
  margin: 0 0 6px;
}
.team-circle-role {
  color: var(--muted);
  font-size: 13px;
  margin: 0 0 16px;
}

.team-read-more {
  background: none;
  border: none;
  color: var(--gold);
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  transition: gap 0.2s ease, color 0.2s ease;
}
.team-read-more:hover {
  color: var(--gold-dark);
  gap: 10px;
}
.team-read-more svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* ── Team Member Modal ─────────────────────────────────────────────────── */
.team-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20,14,4,0.72);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.team-modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.team-modal {
  background: var(--white);
  border-radius: 20px;
  max-width: 520px;
  width: 100%;
  padding: 44px 40px 40px;
  position: relative;
  transform: translateY(28px);
  transition: transform 0.3s ease;
  max-height: 90vh;
  overflow-y: auto;
}
.team-modal-overlay.open .team-modal {
  transform: translateY(0);
}

.team-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted);
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: background 0.2s ease, color 0.2s ease;
  line-height: 1;
}
.team-modal-close:hover {
  background: var(--off-white);
  color: var(--near-black);
}
.team-modal-close svg { width: 20px; height: 20px; }

.team-modal-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  border: 3px solid var(--gold-light);
  box-shadow: 0 4px 16px rgba(200,164,74,0.2);
}
.team-modal-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-modal-name {
  font-weight: 700;
  font-size: 20px;
  text-align: center;
  margin: 0 0 6px;
  color: var(--near-black);
}
.team-modal-role {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 24px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.team-modal-bio {
  font-size: 15px;
  line-height: 1.75;
  color: var(--body-text);
  margin: 0 0 24px;
}

.team-modal-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.team-modal-credential {
  background: var(--gold-light);
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
}

@media (max-width: 640px) {
  .team-modal { padding: 36px 24px 28px; }
  .team-circle-avatar { width: 110px; height: 110px; }
}

/* Medical Review Byline */
.medical-review-byline {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: var(--gold-light, #FBF6E8);
  border-left: 3px solid var(--gold, #C8A44A);
  font-size: 14px;
  color: var(--text-muted, #6B6B6B);
  max-width: 1280px;
  margin: 0 auto;
}
.medical-review-byline a {
  color: var(--gold-dark, #A6842C);
  font-weight: 600;
  text-decoration: none;
}
.medical-review-byline a:hover {
  text-decoration: underline;
}
.medical-review-byline .review-date {
  margin-left: auto;
  font-size: 13px;
}
@media (max-width: 640px) {
  .medical-review-byline {
    flex-wrap: wrap;
    padding: 10px 16px;
    font-size: 13px;
  }
  .medical-review-byline .review-date {
    margin-left: 0;
    width: 100%;
  }
}

/* Smooth-scroll anchor offset for sticky nav (About Us → Why Us?) */
#about-why-us {
  scroll-margin-top: 80px;
}

/* ============================================================
   HOMEPAGE — TRUST & CONVERSION REDESIGN
   ============================================================ */

/* Top sticky phone banner (sits above nav) */
.phone-banner {
  position: sticky;
  top: 0;
  z-index: 1001;
  background: var(--near-black);
  color: var(--off-white);
  border-bottom: 1px solid rgba(200, 164, 74, 0.25);
}
.phone-banner-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
  flex-wrap: wrap;
}
.phone-banner-text {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(253, 250, 245, 0.75);
}
.phone-banner-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: color var(--transition);
}
.phone-banner-link:hover { color: var(--off-white); }
.phone-banner-link svg { width: 16px; height: 16px; }
.phone-banner-divider {
  width: 1px;
  height: 16px;
  background: rgba(200, 164, 74, 0.3);
}
.phone-banner-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--off-white);
  font-size: 13px;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(200, 164, 74, 0.5);
  text-underline-offset: 3px;
  transition: text-decoration-color var(--transition);
}
.phone-banner-cta:hover { text-decoration-color: var(--gold); }

/* Sticky stack — phone banner stays at top:0, nav docks beneath it */
:root { --phone-banner-h: 56px; }
.phone-banner ~ .nav { top: var(--phone-banner-h); }
.phone-banner ~ .nav-mobile { top: calc(var(--phone-banner-h) + var(--nav-height)); }
@media (max-width: 640px) {
  :root { --phone-banner-h: 52px; }
}

/* Nav hides on scroll-down (phone banner stays put) */
.nav {
  transition: transform 0.3s ease, box-shadow var(--transition);
  will-change: transform;
}
.nav.nav-hidden {
  transform: translateY(calc(-1 * var(--nav-height) - 1px));
}

/* Hero trust signals — flat, inline with the background, no chrome */
.hero-trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-top: 44px;
  flex-wrap: wrap;
  max-width: 880px;
}
.hero-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: none;
  padding: 0;
  box-shadow: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: rgba(20, 14, 4, 0.72);
}
.hero-trust-badge svg {
  width: 16px;
  height: 16px;
  color: var(--gold-dark);
  flex-shrink: 0;
}
.hero-trust-badge-sep {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(20, 14, 4, 0.22);
}
.hero-google-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: none;
  padding: 0;
  box-shadow: none;
}
.hero-google-g {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.hero-google-g svg { width: 100%; height: 100%; display: block; }
.hero-google-badge-rating {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  line-height: 1;
}
.hero-google-badge-stars {
  color: #fbbc05;
  font-size: 14px;
  letter-spacing: 1px;
}
.hero-google-badge-count {
  font-size: 13px;
  font-weight: 600;
  color: rgba(20, 14, 4, 0.72);
}

/* "Why Golden State Rehab?" — embedded info blocks (not interactive cards) */
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 48px;
}
.why-us-card {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  cursor: default;
  transition: none;
}
.why-us-card:hover {
  transform: none;
  box-shadow: none;
  border-color: transparent;
}
.why-us-icon {
  width: 56px;
  height: 56px;
  background: transparent;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: var(--gold-dark);
  pointer-events: none;
}
.why-us-icon svg {
  width: 36px;
  height: 36px;
  stroke-width: 1.6;
}
.why-us-card h3 {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--near-black);
  margin: 0;
  letter-spacing: -0.005em;
}
.why-us-card p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

/* Inline verify-insurance CTA strip used between sections */
.verify-cta-strip {
  background: linear-gradient(135deg, var(--gold-light) 0%, #F7EBC4 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 36px 0;
}
.verify-cta-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.verify-cta-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.verify-cta-text strong {
  font-size: 20px;
  font-weight: 700;
  color: var(--near-black);
  letter-spacing: -0.01em;
}
.verify-cta-text span {
  font-size: 14px;
  color: var(--body-text);
}
.verify-cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Section-header: left-aligned variant for mid-page */
.section-header-left {
  text-align: left;
  margin-bottom: 48px;
  max-width: 720px;
}
.section-header-left h2 { margin-bottom: 16px; }
.section-header-left p { font-size: 18px; color: var(--muted); }

/* Final CTA banner — variant with insurance focus */
.cta-banner-content .cta-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

/* Responsive */
@media (max-width: 1024px) {
  .why-us-grid { grid-template-columns: 1fr 1fr; }
  .phone-banner-inner { gap: 12px; padding: 8px 24px; }
  .phone-banner-text { font-size: 12px; }
}
@media (max-width: 640px) {
  .phone-banner-inner { padding: 8px 16px; gap: 8px; flex-wrap: wrap; }
  .phone-banner-text { display: none; }
  .phone-banner-divider { display: none; }
  .phone-banner-link { font-size: 14px; }
  .phone-banner-cta { font-size: 12px; }
  .why-us-grid { grid-template-columns: 1fr; }
  .hero-trust-row { gap: 14px; margin-top: 32px; row-gap: 12px; }
  .hero-trust-badge { font-size: 12px; }
  .hero-trust-badge svg { width: 14px; height: 14px; }
  .hero-trust-badge-sep { display: none; }
  .hero-google-badge-count { font-size: 12px; }
  .verify-cta-inner { flex-direction: column; align-items: flex-start; text-align: left; padding: 0 20px; }
  .verify-cta-text strong { font-size: 18px; }
  .verify-cta-actions { width: 100%; }
  .verify-cta-actions .btn { flex: 1; justify-content: center; }
}
