/* =====================================================================
   Dr. Sarah Quan - V2 mockup theme (designer sample)
   Bootstrap 5 + custom styles. Forest green / cream wellness look.
   ===================================================================== */

:root {
  --hv-green: #1b3f24;
  --hv-green-mid: #2a5634;
  --hv-green-dark: #142e1a;
  --hv-green-darker: #0f2414;
  --hv-title: #2e6b3c;
  --hv-ink: #1a2e20;
  --hv-body: #000000;
  --hv-gold: #c4a574;
  --hv-gold-soft: #e8d5b5;
  --hv-cream: #f7f3eb;
  --hv-cream-2: #efe8dc;
  --hv-soft: #f7f3eb;
  --hv-soft-2: #f0ebe3;
  --hv-line: #e0d8cc;
  --hv-white: #ffffff;
  --font-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-sans: "Manrope", "Segoe UI", Arial, sans-serif;
  --font-body: "Literata", Georgia, "Times New Roman", serif;
  --radius: 6px;
  --radius-lg: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--hv-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.75;
  margin: 0;
  background: var(--hv-white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--hv-ink);
  font-weight: 600;
  line-height: 1.2;
}

a {
  color: var(--hv-green);
  text-decoration: none;
}

a:hover {
  color: var(--hv-green-mid);
}

img {
  max-width: 100%;
  height: auto;
}

.hv-section {
  padding: 96px 0;
}

.hv-section-tight {
  padding: 64px 0;
}

.hv-eyebrow {
  display: inline-block;
  color: var(--hv-green);
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.hv-heading {
  font-size: clamp(2.25rem, 3.8vw, 3.1rem);
  margin-bottom: 1rem;
}

.hv-heading-sm {
  font-size: 1.85rem;
}

.btn {
  border-radius: var(--radius);
  padding: 0.8rem 1.7rem;
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: 0.02em;
  font-size: 1.02rem;
}

.btn-hv {
  background: var(--hv-green);
  border: 2px solid var(--hv-green);
  color: #fff;
}

.btn-hv:hover,
.btn-hv:focus {
  background: var(--hv-green-dark);
  border-color: var(--hv-green-dark);
  color: #fff;
}

.btn-hv-outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.85);
  color: #fff;
}

.btn-hv-outline:hover,
.btn-hv-outline:focus {
  background: #fff;
  color: var(--hv-green);
}

.btn-hv-ghost {
  background: transparent;
  border: 2px solid var(--hv-green);
  color: var(--hv-green);
}

.btn-hv-ghost:hover,
.btn-hv-ghost:focus {
  background: var(--hv-green);
  color: #fff;
}

.btn-hv-light {
  background: #fff;
  border: 2px solid #fff;
  color: var(--hv-green);
}

.btn-hv-light:hover,
.btn-hv-light:focus {
  background: var(--hv-cream);
  border-color: var(--hv-cream);
  color: var(--hv-green-dark);
}

.btn-hv-on-dark {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.9);
  color: #fff;
}

.btn-hv-on-dark:hover,
.btn-hv-on-dark:focus {
  background: #fff;
  border-color: #fff;
  color: var(--hv-green);
}

/* ---------- Top bar ---------- */
.hv-topbar {
  background: #6b736c;
  color: #f3f5f3;
  font-size: 0.92rem;
  font-family: var(--font-sans);
}

.hv-topbar a {
  color: #fff;
}

.hv-topbar .container {
  gap: 0.65rem 1.75rem;
}

.hv-topbar .hv-topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0;
  letter-spacing: 0.045em;
}

.hv-topbar .hv-topbar-item i {
  color: var(--hv-gold-soft);
  font-size: 0.85rem;
}

/* ---------- Navbar ---------- */
.navbar.hv-navbar {
  background: #fff;
  box-shadow: 0 2px 16px rgba(20, 40, 30, 0.06);
  padding: 0.45rem 0;
}

.hv-brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0;
}

.hv-brand-logo {
  height: 66px;
  width: auto;
  max-width: min(320px, 45vw);
  flex-shrink: 0;
  margin-right: 0;
  object-fit: contain;
  background: transparent;
  border: 0;
  box-shadow: none;
  outline: none;
}

.hv-brand-text {
  display: none;
}

.hv-navbar .nav-link {
  color: var(--hv-ink);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.5rem 0.85rem;
  letter-spacing: normal;
}

.hv-navbar .nav-link:hover,
.hv-navbar .nav-link.active {
  color: var(--hv-green);
}

.hv-navbar .nav-link.active {
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 2px;
}

.hv-navbar .dropdown-menu {
  border: 1px solid var(--hv-line);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(20, 40, 30, 0.1);
  padding: 0.5rem 0;
}

.hv-navbar .dropdown-item {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  padding: 0.45rem 1.1rem;
  color: var(--hv-ink);
}

.hv-navbar .dropdown-item:hover {
  background: var(--hv-cream);
  color: var(--hv-green);
}

.hv-navbar .btn-hv {
  font-size: 0.9rem;
  text-transform: none;
  letter-spacing: 0.02em;
  padding: 0.7rem 1.25rem;
}



/* ---------- Home hero (split) ---------- */
.v2-hero {
  background: var(--hv-cream);
  padding: 0;
  overflow: hidden;
}

.v2-hero > .container {
  max-width: none;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.v2-hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 0;
  min-height: 0;
}

.v2-hero-copy {
  min-width: 0;
  padding: 86px 2rem 86px 0.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Match Bootstrap .container left edge on the rest of the page */
@media (min-width: 576px) {
  .v2-hero-copy {
    padding-left: max(0.75rem, calc((100vw - 540px) / 2 + 0.75rem));
  }
}
@media (min-width: 768px) {
  .v2-hero-copy {
    padding-left: max(0.75rem, calc((100vw - 720px) / 2 + 0.75rem));
  }
}
@media (min-width: 992px) {
  .v2-hero-copy {
    padding-left: max(0.75rem, calc((100vw - 960px) / 2 + 0.75rem));
  }
}
@media (min-width: 1200px) {
  .v2-hero-copy {
    padding-left: max(0.75rem, calc((100vw - 1140px) / 2 + 0.75rem));
  }
}
@media (min-width: 1400px) {
  .v2-hero-copy {
    padding-left: max(0.75rem, calc((100vw - 1320px) / 2 + 0.75rem));
  }
}

.v2-hero-copy h1 {
  font-size: clamp(1.85rem, 2.9vw, 2.65rem);
  color: #000;
  margin-bottom: 0.85rem;
  max-width: none;
  line-height: 1.18;
  font-weight: 700;
}

.v2-hero-title-main {
  display: block;
  color: #000;
  white-space: nowrap;
}

.v2-hero-title-sub {
  display: block;
  color: var(--hv-green);
  font-weight: 700;
  white-space: nowrap;
}

.v2-hero-copy > p {
  font-size: 1.05rem;
  font-weight: 500;
  max-width: 34rem;
  margin-bottom: 1.6rem;
}

.v2-creds {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 1.75rem;
  margin-bottom: 1.8rem;
}

.v2-cred {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  max-width: 200px;
}

.v2-cred-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--hv-green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.05rem;
}

.v2-cred span {
  font-size: 0.95rem;
  color: var(--hv-ink);
  line-height: 1.3;
}

.v2-cred-text {
  display: flex;
  flex-direction: column;
}

.v2-cred-title {
  font-weight: 700;
}

.v2-cred-sub {
  font-weight: 400;
  color: var(--hv-body);
}

.v2-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* Photo fills full section height (same row as padded text) */
.v2-hero-media {
  position: relative;
  min-height: 100%;
  overflow: hidden;
}

.v2-hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 58% 50%;
  display: block;
  /* Scale from top so only ~8% is clipped at the bottom; nudge left */
  transform: scale(1.064) translateX(-4%);
  transform-origin: top center;
}

.v2-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(
    to right,
    var(--hv-cream) 0%,
    rgba(247, 243, 235, 0.85) 8%,
    rgba(247, 243, 235, 0.45) 18%,
    rgba(247, 243, 235, 0.15) 28%,
    transparent 38%,
    transparent 72%,
    rgba(247, 243, 235, 0.12) 82%,
    rgba(247, 243, 235, 0.4) 90%,
    rgba(247, 243, 235, 0.8) 96%,
    var(--hv-cream) 100%
  );
}

.v2-hero-quote {
  position: absolute;
  left: 80%;
  bottom: 10px;
  transform: translateX(-50%);
  z-index: 2;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 0.85rem 0.65rem;
  width: 168px;
  max-width: 168px;
  box-shadow: 0 14px 36px rgba(20, 40, 30, 0.14);
}

.v2-hero-quote p {
  font-family: var(--font-serif);
  font-size: 1.02rem;
  font-style: italic;
  color: var(--hv-ink);
  margin: 0 0 0.85rem;
  line-height: 1.55;
}

.v2-hero-quote cite {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-style: normal;
  font-weight: 600;
  color: var(--hv-green);
}

/* ---------- Services grid (icon cards) ---------- */
.v2-services {
  background: #fff;
}

.v2-services.hv-section {
  padding-bottom: 40px;
}

.v2-service-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--hv-line);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem 1.5rem;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.v2-service-card:hover {
  border-color: var(--hv-gold);
  box-shadow: 0 12px 32px rgba(20, 40, 30, 0.08);
  transform: translateY(-4px);
}

.v2-service-icon {
  width: 141px;
  height: 141px;
  flex: 0 0 141px;
  margin-bottom: 0;
  line-height: 1;
}

.v2-service-icon img {
  width: 141px !important;
  height: 141px !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: contain;
  display: block;
}

.v2-service-body {
  flex: 1;
  min-width: 0;
  padding-bottom: 0.35rem;
}

.v2-service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.55rem;
  color: var(--hv-title);
}

.v2-service-card p {
  font-family: var(--font-body);
  font-size: 1.02rem;
  margin-bottom: 1rem;
  min-height: 0;
  color: #000;
  font-weight: 400;
}

.v2-service-link {
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--hv-green);
}

.v2-service-num {
  position: absolute;
  right: 1rem;
  bottom: 0.4rem;
  font-family: var(--font-serif);
  font-size: 3.2rem;
  font-weight: 600;
  color: rgba(26, 46, 32, 0.07);
  line-height: 1;
  pointer-events: none;
}

/* ---------- How it works ---------- */
.v2-how {
  background: #fff;
}

.v2-how.hv-section {
  padding-top: 40px;
  padding-bottom: 40px;
}

.v2-how-grid {
  display: grid;
  grid-template-columns: 35% 65%;
  min-height: 560px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--hv-cream);
}

.v2-how-media {
  background: center / cover no-repeat;
  min-height: 420px;
}

.v2-how-panel {
  padding: 72px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.v2-how-panel > p {
  max-width: 36rem;
  margin-bottom: 2rem;
}

.v2-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
  position: relative;
}

.v2-steps::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: var(--hv-line);
  z-index: 0;
}

.v2-step {
  position: relative;
  z-index: 1;
  text-align: left;
}

.v2-step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--hv-green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.v2-step h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--hv-ink);
}

.v2-step p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}

/* ---------- Testimonials (3 cards) ---------- */
.v2-stories {
  background: #fff;
}

.v2-stories.hv-section {
  padding-top: 40px;
}

.v2-stories-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.v2-stories-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.v2-stories-actions > a {
  font-weight: 600;
  font-size: 0.92rem;
}

.v2-stories-nav {
  display: flex;
  gap: 0.5rem;
}

.v2-stories-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--hv-line);
  background: #fff;
  color: var(--hv-green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.v2-stories-btn:hover {
  background: var(--hv-green);
  border-color: var(--hv-green);
  color: #fff;
}

.v2-story-card {
  background: var(--hv-cream);
  border-radius: var(--radius-lg);
  padding: 2rem 1.8rem;
  max-width: 820px;
  margin: 0 auto;
  display: block;
  text-align: center;
  height: auto;
  color: inherit;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

a.v2-story-link:hover {
  color: inherit;
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(20, 40, 30, 0.1);
}

.v2-stars {
  color: var(--hv-gold);
  letter-spacing: 0.08em;
  margin-bottom: 0.9rem;
  font-size: 0.95rem;
}

.v2-story-card blockquote {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--hv-ink);
  margin: 0 0 1.2rem;
  line-height: 1.5;
}

.v2-story-card .v2-author {
  font-weight: 700;
  color: var(--hv-ink);
  font-size: 1.05rem;
}

.v2-story-card .v2-condition {
  font-size: 0.95rem;
  color: var(--hv-body);
}

#v2Stories.carousel-fade .carousel-item {
  transition: opacity 0.9s ease-in-out;
}

#v2Stories.carousel-fade .carousel-item .v2-story-card {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.75s ease 0.12s, transform 0.75s ease 0.12s;
}

#v2Stories.carousel-fade .carousel-item.active .v2-story-card {
  opacity: 1;
  transform: translateY(0);
}

#v2Stories .carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--hv-line);
  opacity: 1;
}

#v2Stories .carousel-indicators .active {
  background-color: var(--hv-green);
  transform: scale(1.25);
}

@media (prefers-reduced-motion: reduce) {
  #v2Stories.carousel-fade .carousel-item,
  #v2Stories.carousel-fade .carousel-item .v2-story-card {
    transition: none;
    transform: none;
    opacity: 1;
  }
}

.hv-content [id] {
  scroll-margin-top: 110px;
}

/* ---------- FAQ / Insurance / CTA trio ---------- */
.v2-info {
  background: var(--hv-cream);
}

.v2-faq {
  max-width: 34rem;
}

.v2-faq .accordion-item {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--hv-line);
}

.v2-faq .accordion-button {
  background: transparent;
  box-shadow: none;
  font-family: var(--font-sans);
  font-weight: 600;
  color: var(--hv-ink);
  font-size: 1.05rem;
  padding: 1rem 0;
}

.v2-info-lead {
  font-family: var(--font-sans);
  font-weight: 600;
  color: var(--hv-ink);
  font-size: 1.05rem;
  line-height: 1.4;
  margin: 0;
}

.v2-faq .accordion-button:not(.collapsed) {
  background: transparent;
  color: var(--hv-green);
  box-shadow: none;
}

.v2-faq .accordion-button::after {
  background-size: 0.9rem;
}

.v2-faq .accordion-body {
  padding: 0 0 1rem;
  font-size: 1.02rem;
}

.v2-insurers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin: 1.25rem 0 1rem;
}

.v2-insurer {
  background: #fff;
  border: 1px solid var(--hv-line);
  border-radius: var(--radius);
  padding: 0.9rem 0.75rem;
  text-align: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--hv-ink);
}

.v2-cta-card {
  background: var(--hv-green);
  color: #e8efe9;
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.4rem;
  height: auto;
}

.v2-cta-card h3 {
  color: #fff;
  font-size: 1.55rem;
  margin-bottom: 0.85rem;
  line-height: 1.3;
}

.v2-cta-kicker {
  margin: 0 0 0.4rem;
  color: var(--hv-gold-soft);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: var(--font-sans);
}

.v2-cta-card > p {
  margin-bottom: 0.85rem;
  color: #d5e2d8;
  font-size: 0.9rem;
  line-height: 1.45;
}

.v2-cta-card .btn {
  width: 100%;
  margin-bottom: 0.5rem;
  padding: 0.55rem 1.1rem;
  justify-content: center;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.v2-cta-note {
  font-size: 0.85rem;
  margin: 0.25rem 0 0;
  color: var(--hv-gold-soft);
  font-weight: 600;
}

/* ---------- Legacy service cards (inner pages may not use) ---------- */
.hv-services {
  background: var(--hv-soft);
}

.hv-service-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  box-shadow: 0 8px 24px rgba(20, 40, 30, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hv-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(20, 40, 30, 0.12);
}

.hv-service-card .hv-service-img {
  height: 180px;
  background-color: #fff;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.hv-service-card .hv-service-body {
  padding: 1.6rem;
}

.hv-service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
}

.hv-service-card p {
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.hv-service-link {
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

/* ---------- About / checks (kept for inner compatibility) ---------- */
.hv-about-img-wrap {
  position: relative;
}

.hv-about-img-wrap img {
  border-radius: var(--radius-lg);
  width: 100%;
  object-fit: cover;
}

.hv-experience-badge {
  position: absolute;
  right: -10px;
  bottom: -10px;
  background: var(--hv-green);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 1rem 1.4rem;
  text-align: center;
  box-shadow: 0 10px 25px rgba(20, 40, 30, 0.25);
}

.hv-experience-badge .hv-exp-num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  display: block;
  line-height: 1;
}

.hv-experience-badge .hv-exp-text {
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}

.hv-check-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.hv-check-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.7rem;
  font-weight: 500;
  color: var(--hv-ink);
}

.hv-check-list li i {
  position: absolute;
  left: 0;
  top: 0.35rem;
  color: var(--hv-green);
}

/* ---------- CTA banner ---------- */
.hv-cta {
  position: relative;
  color: #fff;
  text-align: center;
  background: linear-gradient(rgba(15, 40, 25, 0.85), rgba(15, 40, 25, 0.85)),
    url("../../images/face-needles.jpg") center/cover no-repeat;
  padding: 80px 0;
}

.hv-cta h2 {
  color: #fff;
  font-size: 2.2rem;
  margin-bottom: 1.4rem;
}

.hv-cta .hv-eyebrow {
  color: var(--hv-gold-soft);
}

/* ---------- Video testimonials ---------- */
.hv-video {
  margin-bottom: 2.5rem;
}

.hv-video-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--hv-ink);
  margin: 0 0 0.75rem;
}

.hv-video-frame {
  position: relative;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  background: #111;
  border-radius: var(--radius);
  overflow: hidden;
}

.hv-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---------- Steps / testimonials legacy ---------- */
.hv-step {
  text-align: center;
  padding: 1.5rem;
}

.hv-step .hv-step-num {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--hv-green);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
}

.hv-step h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.hv-step p {
  font-size: 0.93rem;
}

.hv-testimonials {
  background: var(--hv-soft-2);
}

.hv-testimonial-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  box-shadow: 0 10px 30px rgba(20, 40, 30, 0.08);
  margin: 0 auto;
  max-width: 820px;
  text-align: center;
}

.hv-testimonial-card .hv-quote-icon {
  color: var(--hv-gold);
  font-size: 2rem;
  margin-bottom: 0.8rem;
}

.hv-testimonial-card p.hv-quote {
  font-size: 1.1rem;
  font-style: italic;
  font-family: var(--font-serif);
  color: var(--hv-ink);
  margin-bottom: 1.2rem;
}

.hv-testimonial-card .hv-author {
  font-weight: 700;
  color: var(--hv-green);
}

#hvTestimonials.carousel-fade .carousel-item {
  transition: opacity 0.9s ease-in-out;
}

#hvTestimonials.carousel-fade .carousel-item .hv-testimonial-card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.75s ease 0.15s, transform 0.75s ease 0.15s;
}

#hvTestimonials.carousel-fade .carousel-item.active .hv-testimonial-card {
  opacity: 1;
  transform: translateY(0);
}

#hvTestimonials .carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

#hvTestimonials .carousel-indicators .active {
  transform: scale(1.3);
}

.hv-appointment .hv-check-list {
  display: inline-block;
  text-align: left;
}

@media (prefers-reduced-motion: reduce) {
  #hvTestimonials.carousel-fade .carousel-item,
  #hvTestimonials.carousel-fade .carousel-item .hv-testimonial-card {
    transition: none;
    transform: none;
    opacity: 1;
  }

  .v2-service-card,
  .v2-hero-media img {
    transition: none;
  }
}

.hv-mini {
  text-align: center;
  padding: 1.2rem;
}

.hv-mini .hv-mini-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: var(--hv-green);
  color: #fff;
  font-size: 1.4rem;
}

.hv-mini h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.hv-mini p {
  font-size: 0.9rem;
}

.hv-appointment {
  background: var(--hv-soft);
}

.hv-form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 12px 36px rgba(20, 40, 30, 0.1);
}

.hv-form-card .form-control,
.hv-form-card .form-select {
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  border: 1px solid var(--hv-line);
  margin-bottom: 1rem;
}

.hv-form-card .form-control:focus,
.hv-form-card .form-select:focus {
  border-color: var(--hv-green);
  box-shadow: 0 0 0 0.2rem rgba(27, 63, 36, 0.15);
}

.hv-form-note {
  font-size: 0.85rem;
  color: var(--hv-body);
  margin-top: 0.5rem;
}

/* ---------- Page hero (inner pages) ---------- */
.hv-page-hero {
  position: relative;
  color: var(--hv-ink);
  text-align: left;
  background: var(--hv-cream);
  border-bottom: 1px solid var(--hv-line);
  padding: 56px 0 48px;
}

.hv-page-hero h1 {
  color: #000;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  font-weight: 700;
  margin-bottom: 0.55rem;
  line-height: 1.2;
}

.hv-breadcrumb {
  color: var(--hv-body);
  font-size: 0.95rem;
  font-weight: 500;
}

.hv-breadcrumb a {
  color: var(--hv-green);
  font-weight: 600;
}

.hv-breadcrumb a:hover {
  color: var(--hv-green-dark);
}

/* ---------- Inner page content ---------- */
.hv-content {
  padding: 40px 0 70px;
  background: #fff;
}

.hv-patient-stories {
  padding-top: 40px;
}

.hv-content h1,
.hv-content h2,
.hv-content h3,
.hv-content h4,
.hv-content h5 {
  margin-top: 1.6rem;
  margin-bottom: 0.65rem;
  font-family: var(--font-serif);
  color: var(--hv-title);
  font-weight: 700;
  line-height: 1.25;
}

.hv-content h2 {
  font-size: clamp(1.45rem, 2.2vw, 1.7rem);
}

.hv-content h3 {
  font-size: clamp(1.2rem, 1.8vw, 1.35rem);
}

.hv-content h4 {
  font-size: 1.2rem;
}

.hv-content h5 {
  font-size: 1.1rem;
}

.hv-content .col-lg-8 > h2:first-child,
.hv-content .col-lg-8 > *:first-child h2:first-child {
  margin-top: 0;
}

.hv-content .body,
.hv-content .main-text,
.hv-content p,
.hv-content li {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--hv-body);
  line-height: 1.8;
}

.hv-content .body-large {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--hv-title);
  line-height: 1.2;
}

.hv-content .hv-lead {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
  font-style: italic;
  color: var(--hv-title);
  line-height: 1.4;
  margin: 1.5rem 0;
}

.hv-content strong,
.hv-content b {
  font-weight: 700;
}

/* Subsection titles that are bold-only paragraphs */
.hv-content p.body > strong:only-child,
.hv-content p.main-text > strong:only-child {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--hv-title);
  line-height: 1.2;
}

.hv-content a:not(.btn) {
  color: #3d7a4a;
  font-weight: 600;
}

.hv-content a:not(.btn):hover {
  color: var(--hv-green-mid);
}

.hv-sidebar-card .btn-hv {
  color: #fff;
  background: var(--hv-green);
  border-color: var(--hv-green);
}

.hv-sidebar-card .btn-hv:hover,
.hv-sidebar-card .btn-hv:focus {
  color: #fff;
  background: var(--hv-green-dark);
  border-color: var(--hv-green-dark);
}

.hv-sidebar-card .btn-hv-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #fff !important;
  border-color: #fff !important;
  color: var(--hv-green);
}

.hv-sidebar-card .btn-hv-light:hover,
.hv-sidebar-card .btn-hv-light:focus {
  background: #d9e7db !important;
  border-color: #d9e7db !important;
  color: var(--hv-green-dark);
}

.hv-content img {
  border-radius: var(--radius);
  margin: 0.5rem 0;
}

.hv-content-figure {
  margin: 1.5rem 0 2rem;
}

.hv-content-figure img {
  display: block;
  width: 75%;
  max-width: 75%;
  height: auto;
}

.hv-content #contact-box {
  background: var(--hv-cream);
  border: 1px solid var(--hv-line);
  border-radius: var(--radius-lg);
  padding: 1rem 1.5rem;
  margin-top: 1.5rem;
}

.hv-hl {
  margin-top: 0.5rem;
}

.hv-hl-head,
.hv-hl-pair {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
  column-gap: 2.5rem;
  align-items: start;
}

.hv-content .hv-hl-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--hv-title);
  margin: 0 0 0.75rem;
  padding: 0;
  line-height: 1.3;
}

.hv-hl-pair {
  margin: 0;
  padding: 0.55rem 0;
  color: var(--hv-body);
  font-size: 1rem;
  line-height: 1.35;
}

.hv-hl-hours {
  display: grid;
  grid-template-columns: minmax(7rem, 42%) 1fr;
  gap: 0.75rem;
  align-items: start;
  border-bottom: 1px solid var(--hv-line);
}

@media (max-width: 767px) {
  .hv-footer > .container > .row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 1.25rem;
    row-gap: 1.75rem;
    margin-left: 0;
    margin-right: 0;
  }

  .hv-footer > .container > .row > [class*="col-"] {
    width: auto;
    max-width: none;
    padding-left: 0;
    padding-right: 0;
  }

  .hv-footer > .container > .row > [class*="col-"]:first-child {
    grid-column: 1 / -1;
  }

  .hv-footer-map iframe {
    height: 120px;
  }

  .hv-hl-head,
  .hv-hl-pair {
    grid-template-columns: 1fr;
    row-gap: 0.15rem;
  }

  .hv-hl-head .hv-hl-title:last-child {
    margin-top: 1.25rem;
  }

  .hv-hl-pair .hv-hl-hours {
    padding-bottom: 0.15rem;
  }
}

.hv-content #contact-box p {
  margin: 0;
  text-align: center;
}

.hv-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 1.5rem;
}

.hv-content table td,
.hv-content table th {
  padding: 0.55rem 0.75rem;
  border-bottom: 1px solid var(--hv-line);
  color: var(--hv-body);
  font-weight: 500;
}

.hv-fees .col-lg-8,
.hv-fees .col-lg-8 p,
.hv-fees .col-lg-8 td,
.hv-fees .col-lg-8 th {
  font-size: 0.95rem;
}

.hv-fees table th,
.hv-fees table td {
  white-space: nowrap;
}

.hv-fees table td[colspan] {
  white-space: normal;
}

.hv-fees-note {
  font-size: 0.9rem;
  text-align: left;
}

.hv-content .hv-note {
  margin: 1rem 0 0;
  padding: 0.55rem 0.8rem;
  width: fit-content;
  max-width: 100%;
  background: var(--hv-cream);
  border-left: 4px solid var(--hv-gold);
  border-radius: var(--radius);
  color: var(--hv-ink);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.4;
}

.hv-sidebar-card {
  background: var(--hv-cream);
  border: 1px solid var(--hv-line);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  position: sticky;
  top: 100px;
}

.hv-sidebar-card h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 1rem;
  color: #000;
}

.hv-sidebar-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hv-sidebar-card li {
  border-bottom: 1px solid var(--hv-line);
}

.hv-sidebar-card li:last-child {
  border-bottom: none;
}

.hv-sidebar-card li a {
  display: block;
  padding: 0.65rem 0;
  font-weight: 500;
  color: var(--hv-ink);
}

  .hv-sidebar-card li a:hover {
    color: var(--hv-green);
    padding-left: 0.3rem;
    transition: padding 0.2s ease;
  }
  
.hv-content .flex-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.hv-content .flex-item img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius);
  margin: 0;
  cursor: pointer;
}

.hv-content .flex-item .hv-lightbox-link {
  display: block;
  line-height: 0;
}

.hv-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.hv-lightbox.open {
  display: flex;
}

.hv-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  cursor: pointer;
}

.hv-lightbox-img {
  position: relative;
  z-index: 2;
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55);
}

.hv-lightbox-close {
  position: absolute;
  top: 14px;
  right: 22px;
  z-index: 3;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 2.6rem;
  line-height: 1;
  cursor: pointer;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.hv-content .hv-indoor-map {
  display: block;
  width: 75%;
  max-width: 75%;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius);
  margin: 0.5rem auto 1.5rem;
  background: #fff;
}

/* ---------- Footer ---------- */
.hv-footer {
  background: var(--hv-cream);
  color: var(--hv-body);
  padding: 70px 0 0;
  border-top: 1px solid var(--hv-line);
  font-family: var(--font-body);
}

.hv-footer h4 {
  color: var(--hv-ink);
  font-size: 1.2rem;
  margin-bottom: 1.1rem;
  font-family: var(--font-serif);
}

.hv-footer a {
  color: var(--hv-body);
}

.hv-footer a:hover {
  color: var(--hv-green);
}

.hv-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hv-footer ul li {
  margin-bottom: 0.55rem;
  font-size: 1rem;
}

.hv-footer-brand {
  margin-bottom: 1rem;
}

.hv-footer-brand .hv-brand-name {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--hv-ink);
}

.hv-footer-brand .hv-brand-sub {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hv-green);
  font-weight: 600;
}

.hv-footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.1rem;
}

.hv-footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--hv-line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hv-green);
}

.hv-footer-social a:hover {
  background: var(--hv-green);
  color: #fff;
  border-color: var(--hv-green);
}

.hv-footer .hv-footer-contact i {
  color: var(--hv-gold);
  width: 22px;
}

.hv-footer-map {
  margin-top: 0.85rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--hv-line);
}

.hv-footer-map iframe {
  display: block;
  width: 100%;
  height: 140px;
  border: 0;
}

.hv-footer-bottom {
  border-top: 1px solid var(--hv-line);
  margin-top: 50px;
  padding: 1.2rem 0;
  font-size: 0.88rem;
}

.hv-footer-bottom .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
}

.hv-footer-bottom a {
  margin-left: 1rem;
}

/* ---------- Motion ---------- */
@keyframes v2-fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.v2-hero-copy {
  animation: v2-fade-up 0.8s ease both;
}

.v2-service-card {
  animation: v2-fade-up 0.7s ease both;
}

.row > [class*="col-"]:nth-child(1) .v2-service-card { animation-delay: 0.05s; }
.row > [class*="col-"]:nth-child(2) .v2-service-card { animation-delay: 0.1s; }
.row > [class*="col-"]:nth-child(3) .v2-service-card { animation-delay: 0.15s; }
.row > [class*="col-"]:nth-child(4) .v2-service-card { animation-delay: 0.2s; }
.row > [class*="col-"]:nth-child(5) .v2-service-card { animation-delay: 0.25s; }
.row > [class*="col-"]:nth-child(6) .v2-service-card { animation-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  .v2-hero-copy,
  .v2-service-card {
    animation: none;
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 1199px) {
  .v2-how-panel {
    padding: 56px 36px;
  }

  .v2-hero-quote {
    left: 80%;
    right: auto;
    bottom: 6px;
    transform: translateX(-50%);
    width: 160px;
    max-width: 160px;
  }
}

@media (min-width: 992px) {
  .v2-hero-layout {
    min-height: 575px;
  }
}

@media (max-width: 991px) {
  .hv-topbar .container {
    gap: 0 1rem;
    padding-top: 0.075rem;
    padding-bottom: 0.075rem;
  }

  .hv-topbar .hv-topbar-item {
    padding: 0.075rem 0;
  }

  .v2-service-icon {
    width: min(25vw, 110px);
    height: min(25vw, 110px);
    flex: 0 0 auto;
  }

  .v2-service-icon img {
    width: 100% !important;
    height: 100% !important;
  }

  .hv-section {
    padding: 64px 0;
  }

  .v2-services.hv-section {
    padding-bottom: 32px;
  }

  .v2-how.hv-section {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .v2-stories.hv-section {
    padding-top: 32px;
  }

  .v2-hero {
    padding: 20px 0 56px;
  }

  .v2-hero-layout {
    grid-template-columns: 1fr;
  }

  .v2-hero-copy h1 {
    max-width: none;
  }

  .v2-hero-media {
    min-height: 334px;
    overflow: visible;
  }

  .v2-hero-copy {
    padding: 16px 0.75rem 46px;
  }

  .v2-hero-quote {
    left: 80%;
    right: auto;
    bottom: -42px;
    transform: translateX(-50%);
    width: 150px;
    max-width: min(150px, 55%);
  }

  .v2-how-grid {
    grid-template-columns: 1fr;
  }

  .v2-how-media {
    min-height: 320px;
  }

  .v2-steps {
    grid-template-columns: 1fr 1fr;
  }

  .v2-steps::before {
    display: none;
  }

  .hv-experience-badge {
    position: static;
    display: inline-block;
    margin-top: 1rem;
  }

  .hv-page-hero {
    padding: 40px 0 36px;
  }

  .hv-page-hero h1 {
    font-size: 2rem;
  }
}

@media (max-width: 575px) {
  .v2-hero-copy h1 {
    font-size: 1.95rem;
    max-width: none;
  }

  .hv-heading {
    font-size: 1.7rem;
  }

  .hv-brand-logo {
    height: 48px;
    max-width: 68vw;
  }

  .v2-steps {
    grid-template-columns: 1fr;
  }

  .v2-insurers {
    grid-template-columns: 1fr;
  }

  .hv-footer-bottom .container {
    flex-direction: column;
    text-align: center;
  }

  .hv-footer-bottom a {
    margin-left: 0.5rem;
  }
}
