/* ─── WellMindsMD — Shared Design System ────────────────────────────── */

/* ─── Design Tokens ─────────────────────────────────────────────────── */
:root {
  --navy:       #1f3a5f;
  --navy-deep:  #16294a;
  --teal:       #4a8b8b;
  --soft-blue:  #eaf1f5;
  --warm-cream: #f7f3ed;
  --sand:       #e8dfd0;
  --text:       #2b2b2b;
  --muted:      #5a6573;
  --gold:       #c9a96e;
  --border:     #e8e8e8;
  --radius:     8px;
  --shadow-sm:  0 2px 12px rgba(31,58,95,0.06);
  --shadow-md:  0 6px 30px rgba(31,58,95,0.10);
  --shadow-lg:  0 12px 48px rgba(31,58,95,0.14);
}

/* ─── Reset & Base ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  line-height: 1.65;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.25;
}
a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--navy); }
img { max-width: 100%; display: block; }

/* ─── Utilities ──────────────────────────────────────────────────────── */
.container        { max-width: 1100px; margin: 0 auto; padding: 0 28px; }
.container--narrow{ max-width: 820px; margin: 0 auto; padding: 0 28px; }

.eyebrow {
  display: block;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.78rem;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 14px;
}
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); margin-bottom: 16px; }
.section-header p  { color: var(--muted); max-width: 700px; margin: 0 auto; font-size: 1.05rem; }

/* ─── Buttons ────────────────────────────────────────────────────────── */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 4px;
  font-weight: 500;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  border: none;
  transition: all 0.25s;
}
.btn-primary                  { background: var(--navy);  color: #fff !important; border: 1.5px solid transparent; }
.btn-primary:hover             { background: var(--teal);  color: #fff !important; }
.btn-secondary                 { background: transparent;  color: var(--navy) !important; border: 1.5px solid var(--navy); }
.btn-secondary:hover           { background: var(--navy);  color: #fff !important; }
.btn-group { display: flex; gap: 14px; flex-wrap: wrap; }

/* ─── Topbar ─────────────────────────────────────────────────────────── */
.topbar {
  background: var(--navy-deep);
  color: #fff;
  font-size: 0.82rem;
  padding: 8px 28px;
  text-align: center;
  letter-spacing: 0.3px;
}
.topbar a { color: var(--gold); font-weight: 500; }
.topbar a:hover { color: #fff; }

/* ─── Header & Navigation ────────────────────────────────────────────── */
header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 200;
}
.nav-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy) !important;
  letter-spacing: 0.5px;
  flex-shrink: 0;
  text-decoration: none;
}
.logo img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.logo span { color: var(--teal); }

nav ul {
  display: flex;
  gap: 28px;
  list-style: none;
  align-items: center;
}
nav a {
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.2s;
}
nav a:hover  { color: var(--teal); }
nav a.active { color: var(--teal); }

.cta-btn {
  background: var(--navy) !important;
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 500;
  transition: background 0.2s;
  white-space: nowrap;
}
.cta-btn:hover { background: var(--teal) !important; color: #fff !important; }

/* Hamburger toggle — hidden on desktop */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ─── Hero ───────────────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--soft-blue) 0%, var(--warm-cream) 100%);
  padding: 100px 28px 90px;
  text-align: center;
}
.hero--home {
  padding: 110px 28px 100px;
  background: linear-gradient(150deg, #f0f6fa 0%, var(--warm-cream) 55%, var(--soft-blue) 100%);
}
.hero--booking {
  padding: 68px 28px 48px;
}
.hero-inner     { max-width: 880px; margin: 0 auto; }
.hero h1        { font-size: clamp(2.1rem, 4.5vw, 3.4rem); margin-bottom: 22px; }
.hero--home h1  { font-size: clamp(2.3rem, 5vw, 3.8rem); }
.hero p         { font-size: 1.1rem; color: var(--muted); max-width: 680px; margin: 0 auto 24px; }
.hero-badges    { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin: 0 auto 28px; }
.hero-badge     { background: rgba(255,255,255,0.7); border: 1px solid rgba(31,58,95,0.15); color: var(--navy); font-size: 0.85rem; font-weight: 500; padding: 6px 14px; border-radius: 999px; white-space: nowrap; }
.hero-buttons   { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; align-items: center; }

/* ─── Trust Strip ────────────────────────────────────────────────────── */
.trust-strip { background: var(--navy); padding: 28px; }
.trust-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: center;
}
.trust-item { text-align: center; color: #fff; }
.trust-item .label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 4px;
}
.trust-item .value {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gold);
}

/* ─── Treatment Ticker ───────────────────────────────────────────────── */
.treatment-ticker {
  background: var(--navy-deep);
  padding: 18px 0;
  overflow: hidden;
  border-top: 1px solid rgba(74,139,139,0.25);
  border-bottom: 1px solid rgba(74,139,139,0.25);
  user-select: none;
}
.ticker-track {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  animation: ticker-scroll 35s linear infinite;
}
.treatment-ticker:hover .ticker-track {
  animation-play-state: paused;
}
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255,255,255,0.78);
  padding: 0 6px;
  letter-spacing: 0.3px;
  font-family: 'Inter', sans-serif;
}
.ticker-dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  margin-left: 20px;
  flex-shrink: 0;
}


section           { padding: 88px 0; }
section.bg-white  { background: #fff; }
section.bg-cream  { background: var(--warm-cream); }
section.bg-soft   { background: var(--soft-blue); }
section.bg-navy   { background: var(--navy); }

.page-hero { padding: 64px 0 24px; }
.page-hero + .location-section { padding-top: 24px; }

/* ─── Services Cards ─────────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 50px;
}
.service-card {
  padding: 32px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  transition: transform 0.25s, box-shadow 0.25s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.service-card .icon     { width: 52px; height: 52px; color: var(--teal); margin-bottom: 18px; }
.service-card .icon svg { width: 100%; height: 100%; }
.service-card h3        { font-size: 1.2rem; margin-bottom: 10px; }
.service-card p         { color: var(--muted); font-size: 0.95rem; line-height: 1.6; }
.service-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--teal);
}
.service-card .card-link:hover { color: var(--navy); }

/* ─── Intro Cards ────────────────────────────────────────────────────── */
.intro-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 50px;
}
.intro-card {
  text-align: center;
  padding: 32px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform 0.25s, box-shadow 0.25s;
}
.intro-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.intro-card .icon {
  width: 56px; height: 56px;
  margin: 0 auto 16px;
  color: var(--teal);
  display: flex; align-items: center; justify-content: center;
}
.intro-card .icon svg { width: 100%; height: 100%; }
.intro-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.intro-card p  { color: var(--muted); font-size: 0.95rem; }

/* ─── About Split ────────────────────────────────────────────────────── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-split h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 20px; }
.about-split p  { color: var(--muted); font-size: 1rem; margin-bottom: 16px; line-height: 1.75; }

.cred-card {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 40px 32px;
  color: rgba(255,255,255,0.85);
}
.cred-card h3 { color: #fff; font-size: 1.5rem; margin-bottom: 6px; }
.cred-card .title {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 28px;
  display: block;
}
.cred-item {
  border-bottom: 1px solid rgba(255,255,255,0.12);
  padding: 12px 0;
  font-size: 0.93rem;
}
.cred-item:last-child { border-bottom: none; }
.cred-item strong {
  display: block;
  color: var(--gold);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 3px;
}

/* ─── Service Blocks (2-col detail layout) ───────────────────────────── */
.service        { padding: 88px 0; background: var(--warm-cream); }
.service.alt    { background: #fff; }
.service-grid   {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.service.reverse .service-grid   { direction: rtl; }
.service.reverse .service-text,
.service.reverse .service-side   { direction: ltr; }

.service-text h2   { font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 20px; }
.service-text > p  { color: var(--muted); margin-bottom: 22px; font-size: 1.02rem; }
.service-text h4   {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 26px 0 12px;
}

.feature-list { list-style: none; margin-bottom: 24px; }
.feature-list li {
  padding: 10px 0 10px 32px;
  position: relative;
  color: var(--text);
  border-bottom: 1px solid rgba(31,58,95,0.08);
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 18px;
  width: 14px; height: 7px;
  border-left: 2px solid var(--teal);
  border-bottom: 2px solid var(--teal);
  transform: rotate(-45deg);
}
.feature-list strong { color: var(--navy); }

.service-side {
  background: #fff;
  padding: 36px 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--teal);
}
.service.alt .service-side { background: var(--navy); box-shadow: none; }
.service-side h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 18px;
}
.service-side ul { list-style: none; }
.service-side ul li {
  padding: 10px 0;
  color: var(--muted);
  font-size: 0.93rem;
  border-bottom: 1px solid var(--border);
}
.service-side ul li:last-child { border-bottom: none; }
.service-side ul li strong {
  color: var(--navy);
  display: block;
  margin-bottom: 2px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ─── Compare Table ──────────────────────────────────────────────────── */
.compare { background: linear-gradient(180deg, #fff 0%, var(--soft-blue) 100%); }
.compare-table {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: 20px;
}
.compare-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  border-bottom: 1px solid var(--border);
}
.compare-row:last-child { border-bottom: none; }
.compare-row > div { padding: 18px 24px; font-size: 0.94rem; }
.compare-row.head > div {
  background: var(--navy);
  color: #fff;
  font-weight: 600;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
}
.compare-row > div:first-child        { background: var(--warm-cream); font-weight: 600; color: var(--navy); }
.compare-row.head > div:first-child   { background: var(--navy-deep); }

/* ─── Process Steps ──────────────────────────────────────────────────── */
.process { background: var(--warm-cream); }
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
  counter-reset: step;
}
.step {
  background: #fff;
  padding: 30px 24px;
  border-radius: var(--radius);
  border-bottom: 3px solid var(--teal);
}
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}
.step h4 { font-size: 1.05rem; margin-bottom: 10px; }
.step p  { color: var(--muted); font-size: 0.93rem; }

/* ─── FAQ Accordion ──────────────────────────────────────────────────── */
.faq-group { margin-bottom: 48px; }
.faq-group h3 {
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--soft-blue);
}
.faq-item { border-bottom: 1px solid #e0e0e0; padding: 22px 0; }
.faq-item summary {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--navy);
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--teal);
  transition: transform 0.25s;
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p { color: var(--muted); margin-top: 14px; font-size: 0.97rem; line-height: 1.75; }

/* ─── Insurance Logos ───────────────────────────────────────────────── */
.insurance-section {
  background: var(--warm-cream);
  padding: 80px 28px 88px;
  text-align: center;
}
.insurance-section .eyebrow { margin-bottom: 8px; }
.insurance-section h2 { margin-bottom: 12px; font-size: clamp(1.6rem, 3vw, 2.2rem); }
.insurance-section > .container > p {
  color: var(--muted); max-width: 560px; margin: 0 auto 52px; font-size: 1rem;
}
.insurance-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 52px;
  margin-bottom: 48px;
}
.insurance-logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.insurance-logo-item img {
  height: 52px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  filter: none;
  transition: opacity 0.2s;
}
.insurance-logo-item img:hover { opacity: 0.8; }
.insurance-logo-item span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.insurance-note {
  font-size: 0.92rem;
  color: var(--muted);
}
.insurance-note a { color: var(--teal); text-decoration: none; }
.insurance-note a:hover { text-decoration: underline; }

/* ─── CTA Strip ──────────────────────────────────────────────────────── */
.final-cta {
  background: var(--navy);
  color: #fff;
  text-align: center;
  padding: 88px 28px;
}
.final-cta h2 { color: #fff; margin-bottom: 18px; font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
.final-cta p  { color: rgba(255,255,255,0.85); max-width: 620px; margin: 0 auto 32px; font-size: 1.05rem; }
.final-cta .btn-primary               { background: var(--gold); color: var(--navy-deep) !important; }
.final-cta .btn-primary:hover         { background: #fff; color: var(--navy) !important; }
.final-cta .btn-secondary             { border-color: rgba(255,255,255,0.5); color: #fff !important; }
.final-cta .btn-secondary:hover       { background: #fff; color: var(--navy) !important; border-color: #fff; }

/* ─── Locations Page ─────────────────────────────────────────────────── */
.location-section { padding: 80px 28px; }
.bg-navy-section  { background: var(--navy); }
#san-francisco { padding-bottom: 32px; }
#telehealth { padding-top: 56px; padding-bottom: 40px; }
#telehealth .section-header { margin-bottom: 40px; }
.final-cta--locations {
  background: var(--navy-deep);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 56px;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.location-grid-reverse { direction: rtl; }
.location-grid-reverse > * { direction: ltr; }

.location-info .eyebrow { margin-bottom: 8px; }
.location-info h2 { margin-bottom: 20px; font-size: clamp(1.7rem, 3vw, 2.2rem); }

.location-notice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(201,169,110,0.12);
  border-left: 3px solid var(--gold);
  border-radius: 6px;
  padding: 14px 16px;
  margin-bottom: 24px;
  font-size: 0.92rem;
  color: var(--navy);
  line-height: 1.5;
}
.location-notice svg { flex-shrink: 0; margin-top: 2px; color: var(--gold); }

.location-address-block { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.addr-card {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 20px;
  background: var(--warm-cream);
}
.addr-card.addr-new { border-color: var(--teal); background: #f0f7f7; }
.addr-label {
  display: block;
  font-size: 0.73rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--teal);
  margin-bottom: 8px;
}
.addr-label em { font-style: normal; font-weight: 400; color: var(--muted); }
.addr-card p { margin: 0; line-height: 1.7; font-size: 0.97rem; }
.addr-card a { color: var(--teal); font-weight: 600; text-decoration: none; font-size: 0.88rem; }
.addr-card a:hover { text-decoration: underline; }

.location-details { display: flex; flex-direction: column; gap: 16px; }
.loc-detail-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 0.95rem;
  color: var(--body);
  line-height: 1.6;
}
.loc-detail-item svg { flex-shrink: 0; margin-top: 3px; color: var(--teal); }
.loc-detail-item strong { display: block; color: var(--navy); font-size: 0.87rem; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 2px; }

.location-map iframe { width: 100%; display: block; box-shadow: 0 4px 24px rgba(0,0,0,0.10); }
.map-caption { font-size: 0.82rem; color: var(--muted); margin-top: 10px; text-align: center; font-style: italic; }

/* Telehealth state cards */
.telehealth-states {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.state-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 12px;
  padding: 24px 28px;
  min-width: 110px;
  transition: background 0.2s, border-color 0.2s;
}
.state-card:hover { background: rgba(255,255,255,0.14); border-color: var(--gold); }
.state-abbr {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.state-name { font-size: 0.8rem; color: rgba(255,255,255,0.8); font-weight: 500; letter-spacing: 0.5px; }

@media (max-width: 860px) {
  .location-grid, .location-grid-reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .location-grid-reverse > * { direction: ltr; }
}
@media (max-width: 540px) {
  .telehealth-states { gap: 12px; }
  .state-card { padding: 18px 20px; min-width: 90px; }
  .state-abbr { font-size: 1.6rem; }
  .sf-banner { min-height: 220px; }
}

/* ─── Bellevue Banner ────────────────────────────────────────────────── */
.bv-banner {
  position: relative;
  width: 100%;
  min-height: 300px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.bv-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.bv-banner-overlay {
  position: relative;
  z-index: 2;
  padding: 40px 48px;
  background: linear-gradient(to top, rgba(15,30,55,0.80) 0%, rgba(15,30,55,0.25) 60%, transparent 100%);
  width: 100%;
}
.bv-banner-overlay .eyebrow { margin-bottom: 8px; display: block; }
.bv-banner-overlay h2 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 6px; }
.bv-banner-overlay p { color: rgba(255,255,255,0.85); font-size: 1.05rem; margin: 0 0 8px; }
.banner-credit, .banner-credit a { font-size: 0.72rem; color: rgba(255,255,255,0.55); text-decoration: none; }
.banner-credit a:hover { color: rgba(255,255,255,0.85); text-decoration: underline; }
@media (max-width: 540px) { .bv-banner { min-height: 200px; } .bv-banner-overlay { padding: 28px 24px; } }


.sf-banner {
  position: relative;
  width: 100%;
  min-height: 340px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.sf-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.sf-banner-overlay {
  position: relative;
  z-index: 2;
  padding: 40px 48px;
  background: linear-gradient(to top, rgba(15,30,55,0.85) 0%, rgba(15,30,55,0.3) 60%, transparent 100%);
  width: 100%;
}
.sf-banner-overlay .eyebrow { margin-bottom: 8px; display: block; }
.sf-banner-overlay h2 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 6px; }
.sf-banner-overlay p { color: rgba(255,255,255,0.85); font-size: 1.05rem; margin: 0; }

.loc-gallery-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--teal);
  margin-bottom: 14px;
}

/* ─── Image Carousel ─────────────────────────────────────────────────── */
.img-carousel {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #111;
  user-select: none;
}
.carousel-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.carousel-slide {
  flex: 0 0 100%;
  aspect-ratio: 4 / 3;
}
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.92);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.22);
  z-index: 3;
  transition: background 0.18s, transform 0.18s;
  padding: 0;
}
.carousel-btn:hover { background: #fff; transform: translateY(-50%) scale(1.08); }
.carousel-btn.prev { left: 12px; }
.carousel-btn.next { right: 12px; }
.carousel-btn svg { pointer-events: none; }
.carousel-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  padding: 12px 0 4px;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  border: none;
}
.carousel-dot.active { background: var(--teal); transform: scale(1.3); }

/* ─── Carousel video slide ───────────────────────────────────────────── */
.carousel-slide--video {
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-slide--video video {
  width: auto;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  display: block;
}
.carousel-dot--video {
  width: auto;
  height: 20px;
  border-radius: 10px;
  padding: 0 8px;
  font-size: 0.65rem;
  line-height: 20px;
  background: var(--border);
  color: var(--muted);
}
.carousel-dot--video.active {
  background: var(--teal);
  color: #fff;
  transform: none;
}


.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}
.contact-detail .icon {
  width: 44px; height: 44px;
  background: var(--soft-blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--teal);
}
.contact-detail .icon svg { width: 20px; height: 20px; }
.contact-detail strong { display: block; color: var(--navy); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 3px; }
.contact-detail span   { color: var(--muted); font-size: 0.97rem; }
.contact-detail a      { color: var(--teal); font-weight: 500; }

.contact-form   { background: #fff; border-radius: var(--radius); padding: 44px 40px; box-shadow: var(--shadow-md); }
.contact-form h3 { font-size: 1.6rem; margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  transition: border-color 0.2s;
  background: #fff;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--teal); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.82rem; color: var(--muted); margin-top: 16px; line-height: 1.6; }

/* ─── Policy Pages ───────────────────────────────────────────────────── */
.policy-body { max-width: 820px; margin: 0 auto; padding: 0 28px 88px; }
.policy-section { margin-bottom: 48px; }
.policy-section h3 {
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--soft-blue);
}
.policy-section p  { color: var(--muted); font-size: 0.97rem; line-height: 1.8; margin-bottom: 12px; }
.policy-section ul { list-style: none; padding: 0; }
.policy-section ul li {
  padding: 10px 0 10px 28px;
  position: relative;
  color: var(--muted);
  font-size: 0.97rem;
  border-bottom: 1px solid var(--border);
}
.policy-section ul li:last-child { border-bottom: none; }
.policy-section ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 18px;
  width: 12px; height: 6px;
  border-left: 2px solid var(--teal);
  border-bottom: 2px solid var(--teal);
  transform: rotate(-45deg);
}
.alert-box {
  background: var(--soft-blue);
  border-left: 4px solid var(--teal);
  border-radius: 4px;
  padding: 18px 22px;
  margin-bottom: 32px;
  font-size: 0.95rem;
  color: var(--navy);
  line-height: 1.7;
}
.alert-box strong { display: block; margin-bottom: 6px; }

/* ─── Footer ─────────────────────────────────────────────────────────── */
footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.75);
  padding: 56px 28px 28px;
  font-size: 0.9rem;
}
.foot-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
footer h5 {
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  margin-bottom: 16px;
}
footer p   { line-height: 1.7; margin-bottom: 8px; }
footer ul  { list-style: none; }
footer ul li { padding: 4px 0; }
footer a   { color: rgba(255,255,255,0.75); }
footer a:hover { color: var(--gold); }
.foot-badge {
  display: inline-block;
  background: rgba(201,169,110,0.15);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 10px;
  margin-right: 6px;
}
.copyright {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 24px;
  text-align: center;
  color: rgba(255,255,255,0.45);
  font-size: 0.82rem;
}

/* ─── Responsive ─────────────────────────────────────────────────────── */
@media (max-width: 860px) {
  /* Mobile nav */
  .nav-toggle { display: flex; }
  nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }
  nav.open { max-height: 440px; }
  nav ul {
    flex-direction: column;
    gap: 0;
    padding: 8px 0 16px;
  }
  nav ul li a         { display: block; padding: 12px 28px; font-size: 1rem; }
  nav ul li .cta-btn  { margin: 8px 20px; padding: 12px 20px; text-align: center; display: block; }

  /* Layouts */
  .hero, .hero--home { padding: 64px 24px 56px; }
  section { padding: 64px 0; }
  .trust-strip .container   { grid-template-columns: repeat(2, 1fr); }
  .about-split              { grid-template-columns: 1fr; gap: 40px; }
  .service-grid             { grid-template-columns: 1fr !important; gap: 40px; direction: ltr !important; }
  .steps                    { grid-template-columns: repeat(2, 1fr); }
  .compare-row              { grid-template-columns: 1fr 1fr; }
  .compare-row > div        { padding: 12px 14px; font-size: 0.88rem; }
  .compare-row > div:first-child { grid-column: 1 / -1; background: var(--navy); color: #fff; font-size: 0.8rem; padding: 8px 14px; }
  .compare-row.head         { display: grid; grid-template-columns: 1fr 1fr; }
  .compare-row.head > div:first-child { display: none; }
  .compare-row.head > div   { padding: 10px 14px; font-size: 0.85rem; text-align: center; }
  .compare-row.head > div:nth-child(3) { border-left: 2px solid rgba(255,255,255,0.3); background: #0e2240 !important; }
  .compare-row > div:nth-child(3) { border-left: 2px solid var(--border); background: #eef4fb !important; }
  .contact-grid             { grid-template-columns: 1fr; gap: 40px; }
  .form-row                 { grid-template-columns: 1fr; }
  .contact-form             { padding: 32px 24px; }
  .foot-grid                { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 540px) {
  .container, .container--narrow { padding: 0 20px; }
  .hero h1   { font-size: 1.9rem; }
  .steps     { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .btn-group { flex-direction: column; align-items: center; }
  .trust-strip .container { grid-template-columns: 1fr 1fr; gap: 16px; }
  .policy-body { padding: 0 20px 64px; }
}

/* ─── Intro Grid (Testing page "Why Test") ───────────────────────────── */
.intro-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 52px;
}
.intro-card {
  background: var(--warm-cream);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
}
.intro-card .icon {
  width: 52px; height: 52px;
  background: var(--soft-blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  color: var(--teal);
}
.intro-card .icon svg { width: 26px; height: 26px; }
.intro-card h3 { font-size: 1.05rem; color: var(--navy); margin-bottom: 8px; }
.intro-card p  { color: var(--muted); font-size: 0.9rem; line-height: 1.65; margin: 0; }

/* ─── Service Sections ───────────────────────────────────────────────── */
.service { padding: 88px 0; background: var(--warm-cream); }
.service.alt { background: #fff; }
.service-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: start;
}
.service.reverse .service-grid { direction: rtl; }
.service.reverse .service-grid > * { direction: ltr; }
.service-text h2 { font-size: clamp(1.6rem, 2.8vw, 2.2rem); margin-bottom: 18px; }
.service-text p  { color: var(--muted); line-height: 1.8; margin-bottom: 24px; }
.service-text h4 {
  font-size: 1rem;
  color: var(--navy);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 28px 0 14px;
  font-family: 'Inter', sans-serif;
}
.feature-list { list-style: none; padding: 0; margin: 0 0 18px; }
.feature-list li {
  padding: 10px 0 10px 22px;
  position: relative;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
  border-bottom: 1px solid var(--border);
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li::before {
  content: "";
  position: absolute; left: 0; top: 18px;
  width: 10px; height: 5px;
  border-left: 2px solid var(--teal);
  border-bottom: 2px solid var(--teal);
  transform: rotate(-45deg);
}
.service-side {
  background: var(--navy);
  color: rgba(255,255,255,0.95);
  border-radius: var(--radius);
  padding: 36px 30px;
  font-size: 0.92rem;
  position: sticky;
  top: 100px;
}
.service-side h4 {
  color: var(--gold);
  font-size: 0.78rem;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.service-side ul { list-style: none; padding: 0; }
.service-side ul li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  line-height: 1.5;
  color: rgba(255,255,255,0.92);
}
.service-side ul li:last-child { border-bottom: none; }
.service-side ul li strong {
  display: block;
  color: var(--gold);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 4px;
  font-weight: 700;
}

/* ─── Comparison Table ───────────────────────────────────────────────── */
.compare { padding: 88px 0; background: var(--warm-cream); }
.compare-table { margin-top: 48px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }

@media (min-width: 769px) {
  .compare-row {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1.5fr;
  }
  .compare-row > div {
    padding: 16px 24px;
    font-size: 0.93rem;
    color: var(--text);
    border-bottom: 1px solid var(--border);
  }
  .compare-row > div:first-child {
    background: var(--soft-blue);
    font-weight: 600;
    color: var(--navy);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  .compare-row > div:nth-child(2) { background: #fff; }
  .compare-row > div:nth-child(3) { background: #f9fcff; }
  .compare-row.head > div {
    background: var(--navy) !important;
    color: #fff !important;
    font-family: 'Playfair Display', serif;
    font-size: 1rem !important;
    font-weight: 600;
    text-transform: none !important;
    letter-spacing: 0 !important;
    padding: 20px 24px;
  }
  .compare-row.head > div:first-child { background: #111c2e !important; }
}

/* ─── Process Steps ──────────────────────────────────────────────────── */
.process { padding: 88px 0; background: #fff; }
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 52px;
  counter-reset: step;
}
.step {
  background: var(--warm-cream);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
}
.step::before {
  content: counter(step, decimal-leading-zero);
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
  display: block;
  margin-bottom: 16px;
}
.step h4 { font-size: 1.05rem; color: var(--navy); margin-bottom: 12px; }
.step p   { color: var(--muted); font-size: 0.92rem; line-height: 1.7; margin: 0; }

/* ─── FAQ Groups ─────────────────────────────────────────────────────── */
.faq-group { margin-bottom: 52px; }
.faq-group h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 8px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--soft-blue);
}

/* ─── Contact Page ───────────────────────────────────────────────────── */
.booking-options-section {
  padding-top: 24px;
  padding-bottom: 40px;
}
.booking-request-section {
  padding-top: 56px;
  border-top: 1px solid rgba(31,58,95,0.06);
}
.booking-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.booking-option {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
}
.booking-option--primary {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  border-color: transparent;
  box-shadow: var(--shadow-md);
}
.booking-option .eyebrow { margin-bottom: 12px; }
.booking-option h3 { font-size: 1.45rem; margin-bottom: 12px; }
.booking-option p { color: var(--muted); line-height: 1.7; margin: 0; }
.booking-option--primary h3 { color: #fff; }
.booking-option--primary p { color: rgba(255,255,255,0.84); }
.booking-option--primary .eyebrow { color: var(--gold); }
.booking-option--primary .btn-primary {
  background: var(--gold);
  color: var(--navy-deep) !important;
}
.booking-option--primary .btn-primary:hover {
  background: #fff;
  color: var(--navy) !important;
}
.booking-option--primary .btn-secondary {
  border-color: rgba(255,255,255,0.5);
  color: #fff !important;
}
.booking-option--primary .btn-secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: #fff;
}
.booking-option-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}
.booking-facts {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}
.booking-facts li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
  color: var(--muted);
  line-height: 1.6;
}
.booking-facts li:last-child { margin-bottom: 0; }
.booking-facts li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 5px;
  border-left: 2px solid var(--teal);
  border-bottom: 2px solid var(--teal);
  transform: rotate(-45deg);
}
.booking-facts--light li { color: rgba(255,255,255,0.82); }
.booking-facts--light li::before {
  border-left-color: var(--gold);
  border-bottom-color: var(--gold);
}
.booking-panel {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  border-radius: 18px;
  padding: 32px 28px;
  color: #fff;
  box-shadow: var(--shadow-md);
}
.booking-panel .eyebrow { color: var(--gold); margin-bottom: 12px; }
.booking-panel h3 { color: #fff; font-size: 1.65rem; margin-bottom: 12px; }
.booking-panel p { color: rgba(255,255,255,0.84); line-height: 1.75; }
.booking-panel a { color: #fff; font-weight: 600; }
.booking-panel a:hover { color: var(--gold); text-decoration: underline; }
.contact-info { display: flex; flex-direction: column; gap: 6px; }
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: var(--warm-cream);
  border-radius: var(--radius);
  padding: 24px 22px;
}
.contact-icon {
  width: 48px; height: 48px;
  background: var(--soft-blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--teal);
}
.contact-icon svg { width: 20px; height: 20px; }
.contact-card h4 { font-size: 0.78rem; font-family: 'Inter', sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--navy); margin-bottom: 4px; }
.contact-card p  { color: var(--muted); font-size: 0.92rem; line-height: 1.6; margin: 2px 0; }
.contact-card a  { color: var(--teal); font-weight: 500; }
.text-sm { font-size: 0.82rem !important; color: var(--muted); }
.crisis-box {
  background: #e8f4f0;
  border: 2px solid var(--teal);
  border-left: 5px solid var(--teal);
  border-radius: var(--radius);
  padding: 20px 18px;
}
.crisis-box h4 { color: var(--navy); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; font-weight: 700; }
.crisis-box p  { color: var(--text); font-size: 0.88rem; line-height: 1.65; margin-bottom: 6px; font-weight: 500; }
.crisis-box--booking {
  grid-column: 1 / -1;
  max-width: 780px;
  margin: 4px auto 0;
}

.contact-form-wrap { background: #fff; border-radius: var(--radius); padding: 44px 40px; box-shadow: var(--shadow-md); }
.contact-form-wrap--booking {
  border: 1px solid rgba(31,58,95,0.08);
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
}
.contact-form-wrap h3 { font-size: 1.6rem; margin-bottom: 8px; }
.form-note   { font-size: 0.85rem; color: var(--muted); margin-bottom: 28px; line-height: 1.6; }
.booking-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}
.booking-meta div {
  background: var(--warm-cream);
  border: 1px solid rgba(31,58,95,0.07);
  border-radius: 12px;
  padding: 14px 16px;
}
.booking-meta strong {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--teal);
  margin-bottom: 4px;
}
.booking-meta span {
  display: block;
  color: var(--navy);
  font-weight: 600;
  line-height: 1.45;
}
.form-privacy { font-size: 0.8rem; color: var(--muted); line-height: 1.6; margin-bottom: 20px; }
.form-privacy a { color: var(--teal); }
.form-status {
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 18px;
  font-size: 0.92rem;
  line-height: 1.55;
}
.form-status--success {
  background: #eef7f3;
  border: 1px solid #b7d8c8;
  color: #1f5b43;
}
.form-status--error {
  background: #fff4f2;
  border: 1px solid #efc1b8;
  color: #8b3d2e;
}
.form-submit { width: 100%; justify-content: center; font-size: 1rem; padding: 16px; }
.form-submit:disabled { opacity: 0.7; cursor: wait; }
.form-group label span { color: var(--teal); }
.form-group 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='%234a8b8b' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }

/* ─── Policy Page ────────────────────────────────────────────────────── */
.policy-page { padding-bottom: 88px; }
.policy-block { margin-bottom: 52px; padding-bottom: 52px; border-bottom: 1px solid var(--border); }
.policy-block:last-of-type { border-bottom: none; }
.policy-block h2 { font-size: 1.5rem; color: var(--navy); margin-bottom: 18px; }
.policy-block p  { color: var(--muted); font-size: 0.96rem; line-height: 1.82; margin-bottom: 14px; }
.policy-block ul { list-style: none; padding: 0; margin-bottom: 14px; }
.policy-block ul li {
  padding: 10px 0 10px 24px;
  position: relative;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  border-bottom: 1px solid var(--border);
}
.policy-block ul li:last-child { border-bottom: none; }
.policy-block ul li::before {
  content: "";
  position: absolute; left: 0; top: 18px;
  width: 10px; height: 5px;
  border-left: 2px solid var(--teal);
  border-bottom: 2px solid var(--teal);
  transform: rotate(-45deg);
}
.policy-updated { font-size: 0.82rem; color: var(--muted); font-style: italic; margin-top: 40px; }

/* ─── Psychology Today badge ─────────────────────────────────────────── */
.pt-badge-official {
  margin-top: 8px;
  line-height: 0;
}
.pt-badge-official a {
  display: inline-block !important;
}
.cred-item--badge strong {
  display: block;
  margin-bottom: 6px;
}
.pt-trust-pill {
  text-decoration: none;
}
.pt-trust-pill:hover {
  background: rgba(74,139,139,0.35);
}
.foot-badge--pt {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.foot-badge--pt:hover {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
}
.foot-pt-link {
  margin-top: 12px;
  font-size: 0.8rem;
}
.foot-pt-link a {
  color: rgba(201,169,110,0.8);
  text-decoration: none;
}
.foot-pt-link a:hover {
  color: var(--gold);
  text-decoration: underline;
}

.families-section {
  background: var(--warm-cream);
  padding: 96px 0;
}
.families-section .services-grid {
  grid-template-columns: repeat(5, 1fr);
}
@media (max-width: 1100px) {
  .families-section .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .families-section .services-grid {
    grid-template-columns: 1fr;
  }
}
.families-section .section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}
.families-section .section-header h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--navy);
  margin-bottom: 16px;
}
.families-section .section-header p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}
.family-note {
  margin-top: 44px;
  text-align: center;
  padding: 22px 28px;
  background: rgba(255,255,255,0.72);
  border-radius: var(--radius);
  font-size: 1.02rem;
  color: var(--navy);
  border: 1px solid rgba(31,58,95,0.08);
}
.family-note a {
  color: var(--teal);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ─── Contact form child note ────────────────────────────────────────── */
.form-child-note {
  background: #e8f7f4;
  border-left: 4px solid var(--teal);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 14px 18px;
  font-size: 0.9rem;
  color: var(--navy);
  margin-top: 6px;
  line-height: 1.6;
}

/* ─── Testing page child callout ─────────────────────────────────────── */
.kids-callout {
  background: linear-gradient(135deg, var(--warm-cream) 0%, #e6f2f2 100%);
  padding: 60px 0;
  text-align: center;
}
.kids-callout .eyebrow { display: block; margin-bottom: 8px; }
.kids-callout h3 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--navy);
  margin-bottom: 16px;
}
.kids-callout p {
  max-width: 620px;
  margin: 0 auto 28px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}
.kids-callout .hero-buttons {
  justify-content: center;
}

/* ─── Additional responsive overrides ───────────────────────────────── */
@media (max-width: 860px) {
  .booking-options { grid-template-columns: 1fr; }
  .booking-meta { grid-template-columns: 1fr; }
  .intro-grid  { grid-template-columns: repeat(2, 1fr); }
  .steps       { grid-template-columns: repeat(2, 1fr); }
  .contact-form-wrap { padding: 32px 24px; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .intro-grid  { grid-template-columns: 1fr; }
  .steps       { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr !important; }
  .service-side { position: static; }
}

/* ─── Hero Split (Home Page) ─────────────────────────────────────────── */
.hero-split {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 60%, #2a5a6a 100%);
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 0;
  align-items: stretch;
  min-height: 520px;
  overflow: hidden;
}
.hero-split-text {
  padding: 72px 56px 72px 60px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-split-text .eyebrow { color: var(--teal); margin-bottom: 18px; font-size: 0.8rem; }
.hero-split-text h1 {
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  color: #fff;
  line-height: 1.18;
  margin-bottom: 12px;
}
.hero-split-text h1 em { font-style: italic; color: var(--gold); }
.hero-tagline {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--teal);
  font-style: italic;
  margin-bottom: 20px;
  letter-spacing: 0.3px;
}
.hero-split-text p {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 26px;
}
.hero-trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}
.hero-trust-pills span,
.hero-trust-pills a.pt-trust-pill {
  background: rgba(74,139,139,0.2);
  border: 1px solid rgba(74,139,139,0.5);
  color: rgba(255,255,255,0.9);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 20px;
  text-decoration: none;
}
.hero-split-text .hero-buttons .btn-primary {
  background: var(--gold);
  color: var(--navy-deep) !important;
  font-weight: 700;
}
.hero-split-text .hero-buttons .btn-primary:hover { background: #fff; }
.hero-split-text .hero-buttons .btn-secondary {
  border-color: rgba(255,255,255,0.4);
  color: #fff !important;
}
.hero-split-text .hero-buttons .btn-secondary:hover { background: rgba(255,255,255,0.1); }

/* Photo column — full-bleed edge-to-edge */
.hero-split-photo {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #16294a 0%, #1f3a5f 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-photo-frame {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
  filter: brightness(0.92) contrast(1.05);
}
.hero-photo-card {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(22, 41, 74, 0.92);
  border-top: 2px solid var(--teal);
  padding: 14px 20px;
  text-align: center;
}
.hero-photo-card strong {
  display: block;
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 0.98rem;
  margin-bottom: 3px;
}
.hero-photo-card span {
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* ─── Dr. Quote ──────────────────────────────────────────────────────── */
.dr-quote {
  border-left: 3px solid var(--teal);
  padding: 14px 20px;
  margin: 0 0 22px;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--navy);
  background: var(--soft-blue);
  border-radius: 0 var(--radius) var(--radius) 0;
  line-height: 1.65;
}

/* ─── About Split (with photo) ───────────────────────────────────────── */
.about-split {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 64px;
  align-items: start;
}
.about-photo-col { position: sticky; top: 100px; }
.about-photo-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-photo {
  width: 100%;
  display: block;
  border-radius: var(--radius);
  filter: brightness(0.96) contrast(1.04);
}
.about-photo-badge {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy-deep);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 7px 18px;
  border-radius: 20px;
  white-space: nowrap;
  border: 1px solid var(--gold);
}
.about-split h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 16px; }
.about-split p  { color: var(--muted); font-size: 1rem; margin-bottom: 16px; line-height: 1.75; }

/* ─── Footer Logo ────────────────────────────────────────────────────── */
.foot-logo-text {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 6px;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.5px;
}
.foot-logo-text img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  background: rgba(255,255,255,0.08);
}
.foot-logo-text span {
  color: var(--teal);
}
.foot-tagline {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px !important;
}

/* ─── Hero Split responsive ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-split { grid-template-columns: 1fr; }
  .hero-split-photo { height: 360px; }
  .hero-split-text { padding: 56px 28px 44px; }
}
@media (max-width: 860px) {
  .about-split { grid-template-columns: 1fr; gap: 24px; }
  .about-photo-col { position: static; }
}
@media (max-width: 540px) {
  .hero-split-text { padding: 44px 20px 36px; }
  .hero-split-photo { height: 300px; }
  .hero-trust-pills { gap: 8px; }
  .hero-trust-pills span, .hero-trust-pills a.pt-trust-pill { font-size: 0.76rem; padding: 5px 10px; }
  .hero-buttons { align-items: flex-start; }
}
