/* ============================================================
   BRANSON VISTAS — site.css
   Shared stylesheet for all pages
   Fonts: Cormorant Garamond (display) + DM Sans (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=DM+Sans:wght@300;400;500&display=swap');

/* ── RESET & ROOT ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #1B2E4B;
  --navy-dark:  #111D2B;
  --sage:       #7A9E8E;
  --sage-light: #A8C4A0;
  --cream:      #F5F0E8;
  --cream-dark: #E8E3D8;
  --text-mid:   #3D4F63;
  --text-light: #5A6A7A;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--navy);
  background: var(--cream);
  overflow-x: hidden;
}

/* ── NAV ── */
.bv-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 80px;
  background: rgba(255,255,255,0.0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  border-bottom: 1px solid rgba(255,255,255,0.0);
  transition: background 0.35s ease, backdrop-filter 0.35s ease,
              border-color 0.35s ease, box-shadow 0.35s ease;
}

/* Solid white nav — used on interior pages (no hero image beneath) */
.bv-nav.solid {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(27,46,75,0.08);
  box-shadow: 0 1px 24px rgba(27,46,75,0.07);
}

/* Scrolled state — applied via JS on homepage */
.bv-nav.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(27,46,75,0.08);
  box-shadow: 0 1px 24px rgba(27,46,75,0.07);
}

/* Logo wrap — holds two logo versions for crossfade on homepage */
.bv-logo-wrap {
  display: block;
  position: relative;
  height: 52px;
  width: 160px;
  flex-shrink: 0;
}

.bv-logo-img {
  height: 52px;
  width: auto;
  display: block;
  transition: opacity 0.35s ease;
}

/* Homepage: light logo over hero, dark logo when scrolled */
.logo-light {
  filter: brightness(0) invert(1);
  position: absolute;
  top: 0; left: 0;
  opacity: 1;
}
.logo-dark {
  opacity: 0;
}
.bv-nav.scrolled .logo-light { opacity: 0; }
.bv-nav.scrolled .logo-dark  { opacity: 1; }

/* Interior pages: always show natural-color logo */
.bv-nav.solid .logo-light { display: none; }
.bv-nav.solid .logo-dark  { opacity: 1; position: static; }

/* Nav links */
.bv-nav-links {
  display: flex;
  gap: 34px;
  list-style: none;
}
.bv-nav-links a {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-decoration: none;
  transition: opacity 0.2s;
  color: rgba(255,255,255,0.90);
}
.bv-nav-links a:hover { opacity: 0.7; }

.bv-nav.scrolled .bv-nav-links a,
.bv-nav.solid    .bv-nav-links a { color: var(--navy); }

/* Nav CTA */
.bv-nav-cta {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 10px 22px;
  border: 1px solid rgba(255,255,255,0.6);
  color: #fff;
  background: transparent;
  transition: color 0.3s, background 0.3s, border-color 0.3s;
}
.bv-nav-cta:hover { background: rgba(255,255,255,0.15); }

.bv-nav.scrolled .bv-nav-cta,
.bv-nav.solid    .bv-nav-cta {
  color: var(--navy);
  border-color: var(--navy);
}
.bv-nav.scrolled .bv-nav-cta:hover,
.bv-nav.solid    .bv-nav-cta:hover {
  background: var(--navy);
  color: #fff;
}

/* Hamburger */
.bv-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.bv-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: background 0.3s, transform 0.3s, opacity 0.3s;
}
.bv-nav.scrolled .bv-hamburger span,
.bv-nav.solid    .bv-hamburger span { background: var(--navy); }
.bv-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.bv-hamburger.open span:nth-child(2) { opacity: 0; }
.bv-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu drawer */
.bv-mobile-menu {
  display: none;
  position: fixed;
  top: 80px; left: 0; right: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 24px 32px 32px;
  border-bottom: 1px solid rgba(27,46,75,0.1);
  box-shadow: 0 8px 32px rgba(27,46,75,0.12);
  z-index: 199;
  flex-direction: column;
}
.bv-mobile-menu.open { display: flex; }
.bv-mobile-menu a {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid rgba(27,46,75,0.08);
}
.bv-mobile-menu a:last-child { border-bottom: none; }
.bv-mobile-cta {
  margin-top: 20px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #fff !important;
  background: var(--navy);
  padding: 14px 24px !important;
  text-align: center;
  border-bottom: none !important;
}

/* ── BUTTONS ── */
.btn-primary {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--navy);
  background: #fff;
  padding: 15px 32px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--cream); }

.btn-ghost {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.5);
  padding: 15px 32px;
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.2s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.85); }

/* ── SHARED SECTION STYLES ── */
.section-eyebrow {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 20px;
}
.section-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 46px;
  font-weight: 300;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 24px;
}
.section-h2 em { font-style: italic; }
.section-body {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.78;
  color: var(--text-mid);
  margin-bottom: 36px;
}
.link-arrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid var(--sage);
  padding-bottom: 3px;
  transition: border-color 0.2s;
}
.link-arrow:hover { border-color: var(--navy); }

/* ── PAGE HERO (interior pages) ── */
.bv-page-hero {
  margin-top: 80px;
  background: var(--navy);
  padding: 64px 48px 56px;
}
.bv-page-eyebrow {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 16px;
}
.bv-page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 300;
  line-height: 1.08;
  color: #fff;
}
.bv-page-hero h1 em { font-style: italic; color: #c8d8c0; }
.bv-page-hero p {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,.65);
  margin-top: 18px;
  max-width: 580px;
  line-height: 1.7;
}
.bv-page-updated {
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,.45);
  margin-top: 20px;
  letter-spacing: .05em;
}

/* ── FOOTER ── */
.bv-footer { background: var(--navy-dark); padding: 72px 48px 44px; }
.bv-footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 60px;
}
.bv-footer-logo {
  height: 48px;
  width: auto;
  display: block;
  margin-bottom: 22px;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}
.bv-footer-desc {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,.45);
}
.bv-footer-col-title {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 22px;
}
.bv-footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.bv-footer-links a {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,.5);
  text-decoration: none;
  transition: color 0.2s;
}
.bv-footer-links a:hover { color: rgba(255,255,255,.85); }
.bv-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.bv-footer-copy {
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,.28);
}
.bv-footer-copy a {
  color: rgba(255,255,255,.28);
  text-decoration: none;
  transition: color 0.2s;
}
.bv-footer-copy a:hover { color: rgba(255,255,255,.6); }

/* ── LEGAL PAGES ── */
.bv-legal-wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 72px 48px 96px;
}
.bv-legal-wrap h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--navy);
  margin: 52px 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--cream-dark);
}
.bv-legal-wrap h2:first-child { margin-top: 0; }
.bv-legal-wrap p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.82;
  color: var(--text-mid);
  margin-bottom: 18px;
}
.bv-legal-wrap ul {
  margin: 4px 0 20px;
  padding-left: 0;
  list-style: none;
}
.bv-legal-wrap ul li {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-mid);
  padding: 6px 0 6px 20px;
  position: relative;
}
.bv-legal-wrap ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 16px;
  width: 6px; height: 1px;
  background: var(--sage);
}
.bv-legal-wrap a {
  color: var(--sage);
  text-decoration: none;
  border-bottom: 1px solid rgba(122,158,142,0.4);
  transition: border-color 0.2s;
}
.bv-legal-wrap a:hover { border-color: var(--sage); }
.bv-legal-intro {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-mid);
  padding: 28px 32px;
  background: #fff;
  border-left: 3px solid var(--sage);
  margin-bottom: 48px;
}

/* ── FAQ PAGE ── */
.bv-faq-wrap {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  align-items: start;
}
.bv-toc {
  position: sticky;
  top: 100px;
  padding: 40px 32px 40px 0;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
}
.bv-toc::-webkit-scrollbar { width: 3px; }
.bv-toc::-webkit-scrollbar-track { background: transparent; }
.bv-toc::-webkit-scrollbar-thumb { background: var(--cream-dark); border-radius: 2px; }
.bv-toc-title {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--cream-dark);
}
.bv-toc-section { margin-bottom: 4px; }
.bv-toc-section-link {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  padding: 7px 0 7px 10px;
  border-left: 2px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}
.bv-toc-section-link:hover,
.bv-toc-section-link.active { border-left-color: var(--sage); color: var(--sage); }
.bv-toc-items { padding-left: 10px; margin-bottom: 8px; }
.bv-toc-item {
  display: block;
  font-size: 12px;
  font-weight: 300;
  color: var(--text-light);
  text-decoration: none;
  padding: 4px 0 4px 10px;
  border-left: 1px solid var(--cream-dark);
  line-height: 1.4;
  transition: color 0.2s, border-color 0.2s;
}
.bv-toc-item:hover { color: var(--navy); border-left-color: var(--sage); }
.bv-faq-content {
  padding: 56px 0 96px 48px;
  border-left: 1px solid var(--cream-dark);
}
.bv-faq-section { margin-bottom: 72px; }
.bv-section-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  background: var(--navy);
  margin-bottom: 32px;
}
.bv-section-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 300;
  color: var(--sage);
  line-height: 1;
}
.bv-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 400;
  color: #fff;
}
.bv-faq-item {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--cream-dark);
}
.bv-faq-item:last-child { border-bottom: none; }
.bv-item-num {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .2em;
  color: var(--sage);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.bv-item-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.2;
}
.bv-item-body p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.82;
  color: var(--text-mid);
  margin-bottom: 14px;
}
.bv-item-body p:last-child { margin-bottom: 0; }
.bv-item-body ul,
.bv-item-body ol { margin: 8px 0 16px; padding-left: 0; list-style: none; }
.bv-item-body ul li,
.bv-item-body ol li {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-mid);
  padding: 5px 0 5px 20px;
  position: relative;
}
.bv-item-body ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 15px;
  width: 6px; height: 1px;
  background: var(--sage);
}
.bv-item-body ol { counter-reset: ol-counter; }
.bv-item-body ol li { counter-increment: ol-counter; }
.bv-item-body ol li::before {
  content: counter(ol-counter)'.';
  position: absolute;
  left: 0; top: 5px;
  font-size: 13px;
  font-weight: 500;
  color: var(--sage);
}
.bv-item-body strong { font-weight: 500; color: var(--navy); }
.bv-item-body a { color: var(--sage); text-decoration: none; border-bottom: 1px solid rgba(122,158,142,.35); }
.bv-item-body a:hover { border-color: var(--sage); }
.bv-rev-table { width: 100%; border-collapse: collapse; margin: 20px 0; }
.bv-rev-table th { background: var(--navy); color: #fff; font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 400; padding: 14px 20px; text-align: left; }
.bv-rev-table td { padding: 12px 20px; font-size: 15px; font-weight: 300; color: var(--text-mid); border-bottom: 1px solid var(--cream-dark); }
.bv-rev-table tr:nth-child(even) td { background: #fff; }
.bv-rev-table .tbd { color: var(--sage); font-style: italic; }
.bv-fee-table { width: 100%; border-collapse: collapse; margin: 20px 0; }
.bv-fee-table th { background: var(--navy); color: #fff; font-size: 13px; font-weight: 400; letter-spacing: .08em; text-transform: uppercase; padding: 12px 20px; text-align: left; }
.bv-fee-table td { padding: 12px 20px; font-size: 14px; font-weight: 300; color: var(--text-mid); border-bottom: 1px solid var(--cream-dark); }
.bv-fee-table tr:nth-child(even) td { background: #fff; }
.bv-fee-table td:last-child,
.bv-fee-table th:last-child { text-align: right; }
.bv-fee-table .total td { font-weight: 500; color: var(--navy); background: var(--cream-dark) !important; }
.bv-fee-table .divider td { background: var(--cream) !important; height: 8px; border: none; }
.bv-tbd { background: #fff; border-left: 3px solid #e8a030; padding: 16px 20px; margin: 16px 0; border-radius: 0 4px 4px 0; }
.bv-tbd-label { font-size: 10px; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: #e8a030; margin-bottom: 6px; }
.bv-tbd p { font-size: 14px; font-weight: 300; color: var(--text-light); line-height: 1.65; margin-bottom: 0 !important; }
.bv-timeline { margin: 20px 0; }
.bv-timeline-item { display: grid; grid-template-columns: 80px 1fr; gap: 16px; margin-bottom: 16px; align-items: start; }
.bv-timeline-day { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 400; color: var(--sage); text-align: right; padding-right: 16px; border-right: 2px solid var(--cream-dark); padding-top: 2px; }
.bv-timeline-text { font-size: 14px; font-weight: 300; color: var(--text-mid); line-height: 1.65; padding-top: 2px; }
.bv-faq-cta { background: var(--navy); padding: 64px 48px; text-align: center; }
.bv-faq-cta h2 { font-family: 'Cormorant Garamond', serif; font-size: 40px; font-weight: 300; color: #fff; margin-bottom: 16px; }
.bv-faq-cta h2 em { font-style: italic; color: #c8d8c0; }
.bv-faq-cta p { font-size: 15px; font-weight: 300; color: rgba(255,255,255,.65); margin-bottom: 32px; }

/* ── HOMEPAGE SPECIFIC ── */
.bv-hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.bv-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
}
.bv-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(15,25,45,.45) 0%, rgba(15,25,45,.08) 42%, rgba(15,25,45,.82) 100%),
    linear-gradient(to right,  rgba(15,25,45,.38) 0%, rgba(15,25,45,.00) 52%);
}
.bv-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 48px 80px;
  max-width: 700px;
}
.bv-eyebrow {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--sage-light);
  margin-bottom: 18px;
}
.bv-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  font-weight: 300;
  line-height: 1.03;
  color: #fff;
  margin-bottom: 22px;
}
.bv-hero h1 em { font-style: italic; color: #c8d8c0; }
.bv-hero-sub {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,.82);
  line-height: 1.72;
  margin-bottom: 38px;
  max-width: 500px;
}
.bv-hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.bv-stats { background: var(--navy); display: grid; grid-template-columns: repeat(4,1fr); }
.bv-stat { padding: 30px 32px; border-right: 1px solid rgba(255,255,255,.1); text-align: center; }
.bv-stat:last-child { border-right: none; }
.bv-stat-num { font-family: 'Cormorant Garamond', serif; font-size: 44px; font-weight: 300; color: #fff; line-height: 1; margin-bottom: 7px; }
.bv-stat-label { font-size: 11px; font-weight: 300; letter-spacing: .16em; text-transform: uppercase; color: var(--sage); }
.bv-intro { display: grid; grid-template-columns: 1fr 1fr; }
.bv-intro-text { padding: 88px 60px 88px 48px; background: var(--cream); }
.bv-intro-image { position: relative; overflow: hidden; min-height: 460px; }
.bv-intro-image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.bv-services { background: #fff; padding: 96px 48px; }
.bv-services-header { text-align: center; margin-bottom: 64px; }
.bv-services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: var(--cream-dark); }
.bv-service-card { background: #fff; padding: 52px 44px; }
.bv-service-rule { width: 40px; height: 2px; background: var(--sage); margin-bottom: 30px; }
.bv-service-h3 { font-family: 'Cormorant Garamond', serif; font-size: 25px; font-weight: 400; color: var(--navy); margin-bottom: 14px; line-height: 1.2; }
.bv-service-body { font-size: 14px; font-weight: 300; line-height: 1.72; color: var(--text-light); }
.bv-owner { display: grid; grid-template-columns: 1fr 1fr; min-height: 500px; background: var(--navy); }
.bv-owner-image { position: relative; overflow: hidden; }
.bv-owner-image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .65; }
.bv-owner-image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, transparent 60%, var(--navy) 100%); }
.bv-owner-content { padding: 80px 64px; display: flex; flex-direction: column; justify-content: center; }
.bv-owner-eyebrow { font-size: 10px; font-weight: 400; letter-spacing: .3em; text-transform: uppercase; color: var(--sage); margin-bottom: 22px; }
.bv-owner-h2 { font-family: 'Cormorant Garamond', serif; font-size: 46px; font-weight: 300; line-height: 1.1; color: #fff; margin-bottom: 22px; }
.bv-owner-h2 em { font-style: italic; }
.bv-owner-body { font-size: 15px; font-weight: 300; line-height: 1.72; color: rgba(255,255,255,.7); margin-bottom: 38px; }
.bv-testimonials { background: var(--cream); padding: 96px 48px; }
.bv-testimonials-header { text-align: center; margin-bottom: 60px; }
.bv-test-h2 { font-size: 42px; }
.bv-test-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.bv-test-card { background: #fff; padding: 44px 38px; border-top: 3px solid var(--sage); }
.bv-test-quote { font-family: 'Cormorant Garamond', serif; font-size: 19px; font-weight: 400; font-style: italic; line-height: 1.62; color: var(--navy); margin-bottom: 30px; }
.bv-test-name { font-size: 12px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--navy); }
.bv-test-detail { font-size: 12px; font-weight: 300; color: var(--sage); margin-top: 5px; }
.bv-blog { background: #fff; padding: 96px 48px; }
.bv-blog-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 52px; }
.bv-blog-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2px; background: var(--cream-dark); }
.bv-blog-card { background: #fff; overflow: hidden; display: flex; flex-direction: column; }
.bv-blog-img { height: 230px; overflow: hidden; flex-shrink: 0; }
.bv-blog-card:first-child .bv-blog-img { height: 290px; }
.bv-blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.bv-blog-card:hover .bv-blog-img img { transform: scale(1.04); }
.bv-blog-body { padding: 30px 30px 36px; }
.bv-blog-cat { font-size: 10px; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; color: var(--sage); margin-bottom: 11px; }
.bv-blog-title { font-family: 'Cormorant Garamond', serif; font-size: 21px; font-weight: 400; line-height: 1.3; color: var(--navy); margin-bottom: 12px; }
.bv-blog-card:first-child .bv-blog-title { font-size: 27px; }
.bv-blog-excerpt { font-size: 13px; font-weight: 300; line-height: 1.68; color: var(--text-light); text-decoration: none; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .bv-nav { padding: 0 24px; height: 68px; }
  .bv-logo-wrap { width: 130px; height: 42px; }
  .bv-logo-img { height: 42px; }
  .bv-nav-links, .bv-nav-cta { display: none; }
  .bv-hamburger { display: flex; }
  .bv-mobile-menu { top: 68px; }
  .bv-page-hero { padding: 48px 24px 40px; }
  .bv-page-hero h1 { font-size: 36px; }
  .bv-legal-wrap { padding: 48px 24px 72px; }
  .bv-legal-intro { padding: 20px; }
  .bv-hero { height: 100svh; min-height: 560px; }
  .bv-hero-content { padding: 0 24px 56px; max-width: 100%; }
  .bv-hero h1 { font-size: 48px; }
  .bv-hero-sub { font-size: 14px; max-width: 100%; }
  .bv-eyebrow { font-size: 10px; letter-spacing: .2em; }
  .bv-hero-btns { flex-direction: column; gap: 10px; }
  .btn-primary, .btn-ghost { text-align: center; padding: 14px 24px; }
  .bv-stats { grid-template-columns: repeat(2,1fr); }
  .bv-stat:nth-child(2) { border-right: none; }
  .bv-stat { padding: 22px 16px; }
  .bv-stat-num { font-size: 36px; }
  .bv-intro { grid-template-columns: 1fr; }
  .bv-intro-text { padding: 56px 24px; order: 2; }
  .bv-intro-image { min-height: 280px; order: 1; }
  .section-h2 { font-size: 36px; }
  .bv-services { padding: 64px 24px; }
  .bv-services-grid { grid-template-columns: 1fr; }
  .bv-service-card { padding: 36px 28px; }
  .bv-services-header { margin-bottom: 40px; }
  .bv-owner { grid-template-columns: 1fr; min-height: auto; }
  .bv-owner-image { min-height: 260px; position: relative; }
  .bv-owner-content { padding: 48px 24px; }
  .bv-owner-h2 { font-size: 36px; }
  .bv-testimonials { padding: 64px 24px; }
  .bv-test-grid { grid-template-columns: 1fr; gap: 16px; }
  .bv-blog { padding: 64px 24px; }
  .bv-blog-grid { grid-template-columns: 1fr; }
  .bv-blog-card:first-child .bv-blog-img { height: 230px; }
  .bv-blog-header { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 32px; }
  .bv-faq-wrap { grid-template-columns: 1fr; padding: 0 24px; }
  .bv-toc { display: none; }
  .bv-faq-content { padding: 40px 0 64px; border-left: none; }
  .bv-faq-cta { padding: 48px 24px; }
  .bv-faq-cta h2 { font-size: 32px; }
  .bv-footer { padding: 48px 24px 32px; }
  .bv-footer-top { grid-template-columns: 1fr; gap: 36px; }
  .bv-footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .bv-nav { padding: 0 32px; }
  .bv-nav-links { gap: 22px; }
  .bv-hero h1 { font-size: 56px; }
  .bv-hero-content { padding: 0 32px 64px; }
  .bv-intro { grid-template-columns: 1fr 1fr; }
  .bv-intro-text { padding: 64px 40px 64px 32px; }
  .bv-services { padding: 72px 32px; }
  .bv-services-grid { grid-template-columns: repeat(2,1fr); }
  .bv-owner { grid-template-columns: 1fr 1fr; }
  .bv-test-grid { grid-template-columns: 1fr; gap: 16px; }
  .bv-blog-grid { grid-template-columns: 1fr 1fr; }
  .bv-blog-card:nth-child(3) { display: none; }
  .bv-faq-wrap { grid-template-columns: 240px 1fr; padding: 0 32px; }
  .bv-toc { padding: 40px 20px 40px 0; }
  .bv-footer { padding: 56px 32px 36px; }
  .bv-footer-top { gap: 36px; }
}

/* ── CONTACT PAGE ── */
.bv-contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 48px 96px;
  gap: 80px;
  align-items: start;
}
.bv-contact-info { position: sticky; top: 110px; }
.bv-contact-info h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 300;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 20px;
}
.bv-contact-info h2 em { font-style: italic; }
.bv-contact-info p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.78;
  color: var(--text-mid);
  margin-bottom: 40px;
}
.bv-contact-detail {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.bv-contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.bv-contact-icon {
  width: 36px;
  height: 36px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.bv-contact-icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: #fff;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.bv-contact-item-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 4px;
}
.bv-contact-item-value {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.55;
}
.bv-contact-item-value a {
  color: var(--text-mid);
  text-decoration: none;
  transition: color .2s;
}
.bv-contact-item-value a:hover { color: var(--navy); }
.bv-contact-divider {
  width: 40px;
  height: 1px;
  background: var(--sage);
  margin: 36px 0;
}
.bv-contact-promise {
  background: var(--cream-dark);
  padding: 24px 28px;
  border-left: 3px solid var(--sage);
}
.bv-contact-promise p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-mid);
  margin-bottom: 0;
}

/* Form panel */
.bv-form-panel {
  background: #fff;
  padding: 52px 52px 48px;
}
.bv-form-panel h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 8px;
}
.bv-form-panel .bv-form-sub {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-light);
  margin-bottom: 36px;
  line-height: 1.6;
}
.bv-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.bv-form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.bv-form-group.full { grid-column: 1 / -1; }
.bv-form-group label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}
.bv-form-group input,
.bv-form-group textarea,
.bv-form-group select {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--navy);
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  padding: 13px 16px;
  outline: none;
  transition: border-color .2s, background .2s;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
}
.bv-form-group input::placeholder,
.bv-form-group textarea::placeholder { color: #C0B8A8; }
.bv-form-group input.invalid,
.bv-form-group textarea.invalid,
.bv-form-group select.invalid {
  border-color: #C0392B;
}
.bv-form-group input.invalid:focus,
.bv-form-group textarea.invalid:focus,
.bv-form-group select.invalid:focus {
  border-color: #C0392B;
}
.bv-form-group input:focus,
.bv-form-group textarea:focus {
  border-color: var(--sage);
  background: #fff;
}
.bv-form-group textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.6;
}
.bv-recaptcha-note {
  font-size: 12px;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 20px;
}
/* Google reCAPTCHA v3 — hide floating badge, show inline attribution */
.grecaptcha-badge { visibility: hidden !important; }
.bv-form-error {
  color: #C0392B;
  font-size: 13px;
  font-weight: 400;
  margin: 0 0 16px;
}
.bv-submit-wrap { margin-bottom: 16px; }
.bv-form-panel .btn-submit {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #fff;
  background: var(--navy);
  border: none;
  padding: 16px 48px;
  cursor: pointer;
  transition: background .2s;
  width: 100%;
}
.bv-form-panel .btn-submit:hover { background: var(--text-mid); }
.bv-form-disclaimer {
  font-size: 12px;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.65;
  text-align: center;
}
.bv-form-disclaimer a {
  color: var(--sage);
  text-decoration: none;
  border-bottom: 1px solid rgba(122,158,142,.35);
  transition: border-color .2s;
}
.bv-form-disclaimer a:hover { border-color: var(--sage); }
.bv-form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.bv-form-success .success-icon {
  width: 56px; height: 56px;
  background: var(--sage);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.bv-form-success .success-icon svg {
  width: 24px; height: 24px;
  stroke: #fff; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.bv-form-success h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 400; color: var(--navy); margin-bottom: 12px;
}
.bv-form-success p {
  font-size: 14px; font-weight: 300; color: var(--text-mid); line-height: 1.7;
}

/* Trust bar */
.bv-trust-bar {
  background: var(--navy);
  padding: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background-color: var(--cream-dark);
}
.bv-trust-item {
  background: var(--navy);
  padding: 36px 40px;
  text-align: center;
}
.bv-trust-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px; font-weight: 300; color: #fff; line-height: 1; margin-bottom: 8px;
}
.bv-trust-label {
  font-size: 11px; font-weight: 300; letter-spacing: .16em;
  text-transform: uppercase; color: var(--sage);
}

/* Contact responsive */
@media (max-width: 768px) {
  .bv-contact-wrap { grid-template-columns: 1fr; padding: 48px 24px 64px; gap: 48px; }
  .bv-contact-info { position: static; }
  .bv-form-panel { padding: 36px 24px; }
  .bv-form-row { grid-template-columns: 1fr; }
  .bv-trust-bar { grid-template-columns: 1fr; padding: 0; }
  .bv-trust-item { padding: 28px 24px; }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .bv-contact-wrap { padding: 64px 32px 80px; gap: 48px; }
  .bv-form-panel { padding: 40px 36px; }
  .bv-trust-bar { padding: 0; }
}

/* ── NAV ACTIVE (current page) STATE ── */
.bv-nav-links a[aria-current="page"] {
  opacity: 1;
  color: #fff;
  position: relative;
}
.bv-nav-links a[aria-current="page"]::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--sage-light);
}
/* On solid/scrolled nav the underline uses sage, text uses navy */
.bv-nav.scrolled .bv-nav-links a[aria-current="page"],
.bv-nav.solid    .bv-nav-links a[aria-current="page"] {
  color: var(--navy);
  opacity: 1;
}
.bv-nav.scrolled .bv-nav-links a[aria-current="page"]::after,
.bv-nav.solid    .bv-nav-links a[aria-current="page"]::after {
  background: var(--sage);
}

/* ── TESTIMONIAL AVATARS ── */
.bv-test-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  margin-bottom: 20px;
  border: 2px solid var(--cream-dark);
  display: block;
}
.bv-test-footer {
  display: flex;
  align-items: center;
  gap: 14px;
}
.bv-test-footer .bv-test-avatar {
  margin-bottom: 0;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

/* ── TESTIMONIAL SLIDER ── */
.bv-test-slider-wrap {
  position: relative;
  overflow: hidden;
}
.bv-test-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.bv-test-slide {
  flex-shrink: 0;
  /* width set dynamically by JS */
}
/* Cards fill their slide and stack quote above footer */
.bv-test-slide .bv-test-card {
  height: 100%;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.bv-test-slide .bv-test-quote {
  flex: 1;
  white-space: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Nav dots */
.bv-test-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 36px;
}
.bv-test-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cream-dark);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.bv-test-dot.active {
  background: var(--sage);
  transform: scale(1.25);
}

/* Prev / Next arrows */
.bv-test-arrows {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}
.bv-test-arrow {
  width: 44px;
  height: 44px;
  border: 1px solid var(--cream-dark);
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
  flex-shrink: 0;
}
.bv-test-arrow:hover {
  background: var(--navy);
  border-color: var(--navy);
}
.bv-test-arrow:hover svg { stroke: #fff; }
.bv-test-arrow svg {
  width: 18px; height: 18px;
  stroke: var(--navy); fill: none;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
  transition: stroke 0.2s;
}

/* Mobile: single card */
@media (max-width: 768px) {
  .bv-test-slide {
    min-width: 100%;
    margin-right: 24px;
  }
}
/* Tablet: 2 cards */
@media (min-width: 769px) and (max-width: 1024px) {
  .bv-test-slide {
    min-width: calc(50% - 12px);
  }
}

/* ── BLOG INDEX PAGE ── */
.bv-blog-index { background: var(--cream); padding: 64px 48px 96px; }
.bv-blog-index-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--cream-dark);
  margin-top: 48px;
}
.bv-blog-index-card {
  background: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: box-shadow .2s;
}
.bv-blog-index-card:hover { box-shadow: 0 4px 24px rgba(27,46,75,.10); }
.bv-blog-index-img {
  height: 220px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.bv-blog-index-img svg {
  width: 48px; height: 48px;
  stroke: rgba(255,255,255,.25); fill: none;
  stroke-width: 1; stroke-linecap: round; stroke-linejoin: round;
}
.bv-blog-index-img img {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
}
.bv-blog-index-card:hover .bv-blog-index-img img { transform: scale(1.04); }
.bv-blog-index-img .bv-blog-cat-pill {
  position: absolute;
  top: 20px; left: 20px;
  font-size: 10px; font-weight: 500; letter-spacing: .18em;
  text-transform: uppercase; color: var(--navy);
  background: #fff; padding: 5px 12px;
}
.bv-blog-index-body { padding: 28px 30px 36px; flex: 1; display: flex; flex-direction: column; }
.bv-blog-index-date {
  font-size: 11px; font-weight: 300; letter-spacing: .12em;
  color: var(--text-light); margin-bottom: 10px;
}
.bv-blog-index-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 400; line-height: 1.3;
  color: var(--navy); margin-bottom: 14px;
}
.bv-blog-index-excerpt {
  font-size: 14px; font-weight: 300; line-height: 1.7;
  color: var(--text-light); flex: 1; margin-bottom: 24px;
}
.bv-blog-read-more {
  font-size: 11px; font-weight: 500; letter-spacing: .18em;
  text-transform: uppercase; color: var(--sage);
  border-bottom: 1px solid rgba(122,158,142,.35);
  padding-bottom: 2px; align-self: flex-start;
}

/* ── BLOG POST PAGE ── */
.bv-post-hero {
  background: var(--navy);
  padding: 110px 48px 64px;
}
.bv-post-hero .bv-page-eyebrow { margin-bottom: 12px; }
.bv-post-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px; font-weight: 300; line-height: 1.1; color: #fff;
  max-width: 820px;
}
.bv-post-hero h1 em { font-style: italic; color: #c8d8c0; }
.bv-post-meta {
  font-size: 12px; font-weight: 300; color: rgba(255,255,255,.5);
  margin-top: 20px; letter-spacing: .06em;
}
.bv-post-intro {
  font-size: 17px; font-weight: 300; font-style: italic;
  color: rgba(255,255,255,.72); line-height: 1.7;
  margin-top: 18px; max-width: 720px;
}

.bv-post-wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 64px 48px 96px;
}
.bv-post-wrap p {
  font-size: 16px; font-weight: 300; line-height: 1.85;
  color: var(--text-mid); margin-bottom: 22px;
}
.bv-post-wrap h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px; font-weight: 400; color: var(--navy);
  margin: 52px 0 16px; line-height: 1.2;
}
.bv-post-wrap h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; font-weight: 400; color: var(--navy);
  margin: 36px 0 12px;
}
.bv-post-wrap h4 {
  font-size: 12px; font-weight: 500; letter-spacing: .18em;
  text-transform: uppercase; color: var(--sage);
  margin: 28px 0 10px;
}
.bv-post-wrap ul, .bv-post-wrap ol {
  margin: 8px 0 22px; padding-left: 0; list-style: none;
}
.bv-post-wrap ul li, .bv-post-wrap ol li {
  font-size: 16px; font-weight: 300; line-height: 1.75;
  color: var(--text-mid); padding: 5px 0 5px 22px; position: relative;
}
.bv-post-wrap ul li::before {
  content: ''; position: absolute; left: 0; top: 15px;
  width: 8px; height: 1px; background: var(--sage);
}
.bv-post-wrap ol { counter-reset: post-ol; }
.bv-post-wrap ol li { counter-increment: post-ol; }
.bv-post-wrap ol li::before {
  content: counter(post-ol)'.'; position: absolute;
  left: 0; top: 5px; font-size: 13px; font-weight: 500; color: var(--sage);
}
.bv-post-wrap strong { font-weight: 500; color: var(--navy); }
.bv-post-wrap a { color: var(--sage); text-decoration: none; border-bottom: 1px solid rgba(122,158,142,.4); }
.bv-post-wrap a:hover { border-color: var(--sage); }

/* Insider tip callout */
.bv-post-tip {
  background: #fff;
  border-left: 3px solid var(--sage);
  padding: 18px 24px;
  margin: 24px 0;
}
.bv-post-tip-label {
  font-size: 10px; font-weight: 500; letter-spacing: .22em;
  text-transform: uppercase; color: var(--sage); margin-bottom: 8px;
}
.bv-post-tip p {
  font-size: 14px; font-style: italic; color: var(--text-mid);
  margin-bottom: 0; line-height: 1.7;
}

/* Summary table */
.bv-post-table-wrap { overflow-x: auto; margin: 28px 0; }
.bv-post-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.bv-post-table th {
  background: var(--navy); color: #fff; font-family: 'Cormorant Garamond', serif;
  font-size: 16px; font-weight: 400; padding: 14px 18px; text-align: left;
}
.bv-post-table td {
  padding: 12px 18px; font-weight: 300; color: var(--text-mid);
  border-bottom: 1px solid var(--cream-dark); vertical-align: top; line-height: 1.6;
}
.bv-post-table tr:nth-child(even) td { background: #fff; }
.bv-post-table td:first-child { font-weight: 500; color: var(--navy); }

/* Try this callout */
.bv-post-try {
  background: var(--cream-dark);
  padding: 16px 20px;
  margin: 16px 0 28px;
  border-radius: 0;
}
.bv-post-try-label {
  font-size: 10px; font-weight: 500; letter-spacing: .2em;
  text-transform: uppercase; color: var(--navy); margin-bottom: 6px;
}
.bv-post-try p { font-size: 14px; font-weight: 300; color: var(--text-mid); margin-bottom: 0; line-height: 1.65; }

/* Post CTA */
.bv-post-cta {
  background: var(--navy); padding: 52px 48px; margin-top: 0; text-align: center;
}
.bv-post-cta h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px; font-weight: 300; color: #fff; margin-bottom: 14px;
}
.bv-post-cta h2 em { font-style: italic; color: #c8d8c0; }
.bv-post-cta p { font-size: 15px; font-weight: 300; color: rgba(255,255,255,.65); margin-bottom: 28px; }

/* Blog nav back link */
.bv-post-back {
  font-size: 11px; font-weight: 500; letter-spacing: .18em;
  text-transform: uppercase; color: var(--sage);
  text-decoration: none; border-bottom: 1px solid rgba(122,158,142,.35);
  padding-bottom: 2px; display: inline-block; margin-top: 32px;
}

/* Blog responsive */
@media (max-width: 768px) {
  .bv-blog-index { padding: 48px 24px 64px; }
  .bv-blog-index-grid { grid-template-columns: 1fr; }
  .bv-post-hero { padding: 80px 24px 44px; }
  .bv-post-hero h1 { font-size: 32px; }
  .bv-post-wrap { padding: 48px 24px 64px; }
  .bv-post-cta { padding: 48px 24px; }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .bv-blog-index-grid { grid-template-columns: repeat(2, 1fr); }
  .bv-blog-index { padding: 48px 32px 72px; }
  .bv-post-wrap { padding: 56px 32px 80px; }
}

/* ============================================================
   PROPERTY MANAGEMENT PAGE — property-management.html
   ============================================================ */

/* ── PM HERO ── */
.bv-pm-hero {
  position: relative;
  margin-top: 80px;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.bv-pm-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, #1e3349 0%, #2b4a67 35%, #1B2E4B 65%, #111d2b 100%);
}
.bv-pm-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(15,25,45,.15) 0%, rgba(15,25,45,.55) 55%, rgba(15,25,45,.92) 100%),
    linear-gradient(to right,  rgba(15,25,45,.55) 0%, rgba(15,25,45,.0)  52%);
}
.bv-pm-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 48px 96px;
  max-width: 720px;
}
.bv-pm-hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  font-weight: 300;
  line-height: 1.03;
  color: #fff;
  margin-bottom: 22px;
}
.bv-pm-hero-content h1 em { font-style: italic; color: #c8d8c0; }
.bv-pm-hero-sub {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,.82);
  line-height: 1.72;
  margin-bottom: 40px;
  max-width: 540px;
}
.bv-pm-hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── INTRO SPLIT ── */
.bv-pm-intro {
  background: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.bv-pm-intro-text {
  padding: 96px 64px 96px 48px;
}
.bv-pm-intro-body {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.78;
  color: var(--text-mid);
  margin-bottom: 40px;
}
.bv-pm-intro-image {
  position: relative;
  min-height: 520px;
  overflow: hidden;
}
.bv-pm-intro-image img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.bv-pm-intro-placeholder {
  position: absolute;
  inset: 0;
  background: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bv-pm-intro-placeholder span {
  font-size: 12px;
  color: #aaa;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* ── NAVY BUTTON (for light backgrounds) ── */
.btn-navy {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #fff;
  background: var(--navy);
  padding: 15px 32px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
}
.btn-navy:hover { background: var(--text-mid); }

/* ── SERVICES SECTION ── */
.bv-svc-section {
  background: var(--cream);
  padding: 96px 48px;
}
.bv-svc-header {
  text-align: center;
  margin-bottom: 72px;
}
.bv-svc-intro {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-mid);
  max-width: 580px;
  margin: 0 auto;
}
.bv-svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--cream-dark);
}
.bv-svc-card {
  background: #fff;
  padding: 52px 44px 48px;
}
.bv-svc-icon {
  width: 48px;
  height: 48px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  flex-shrink: 0;
}
.bv-svc-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--sage);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.bv-svc-h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.2;
}
.bv-svc-body {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-light);
  margin-bottom: 20px;
}
.bv-svc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.bv-svc-list li {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.6;
  padding: 6px 0 6px 18px;
  position: relative;
  border-top: 1px solid var(--cream-dark);
}
.bv-svc-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15px;
  width: 6px;
  height: 1px;
  background: var(--sage);
}

/* ── CHANNEL DISTRIBUTION ── */
.bv-channels {
  background: #fff;
  padding: 88px 48px;
}
.bv-channels-header {
  text-align: center;
  margin-bottom: 16px;
}
.bv-channels-sub {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.72;
  color: var(--text-mid);
  text-align: center;
  max-width: 560px;
  margin: 0 auto 52px;
}
.bv-channels-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2px;
  background: var(--cream-dark);
  max-width: 960px;
  margin: 0 auto 36px;
}
.bv-channel-item {
  background: var(--cream);
  padding: 28px 16px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.bv-channel-logo-box {
  width: 100%;
  height: 52px;
  background: #f5f5f5;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
}
.bv-channel-logo-box img.bv-channel-logo {
  max-width: 80%;
  max-height: 30px;
  object-fit: contain;
}
.bv-channel-logo-box img.bv-channel-logo--wide {
  max-width: 90%;
  max-height: 26px;
}
.bv-channel-logo-box span {
  font-size: 11px;
  font-weight: 500;
  color: #888;
  letter-spacing: .04em;
  text-align: center;
  line-height: 1.35;
}
.bv-channel-note {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--sage);
  text-align: center;
}
.bv-channels-footnote {
  text-align: center;
  font-size: 13px;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.65;
  max-width: 600px;
  margin: 0 auto;
}

/* ── TRANSPARENT PRICING ── */
.bv-pricing-section {
  background: var(--navy);
  padding: 96px 48px;
}
.bv-pricing-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.bv-pricing-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 24px;
}
.bv-pricing-h2 em { font-style: italic; }
.bv-pricing-body {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.78;
  color: rgba(255,255,255,.65);
  margin-bottom: 32px;
}
.bv-pricing-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}
.bv-pricing-bullets li {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,.72);
  line-height: 1.6;
  padding-left: 22px;
  position: relative;
}
.bv-pricing-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 1px;
  background: var(--sage);
}
.bv-pricing-panel {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.13);
  padding: 48px 44px;
}
.bv-pricing-fee-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 96px;
  font-weight: 300;
  line-height: 1;
  color: #fff;
  margin-bottom: 8px;
}
.bv-pricing-fee-label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.bv-pricing-breakdown {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.bv-pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,.55);
  line-height: 1.5;
}
.bv-pricing-row strong {
  font-weight: 400;
  color: rgba(255,255,255,.82);
  text-align: right;
  flex-shrink: 0;
}
.bv-pricing-row-deduct { color: rgba(255,255,255,.45); }
.bv-pricing-row-deduct strong { color: rgba(200,180,180,.8); }
.bv-pricing-row-total {
  border-top: 1px solid rgba(255,255,255,.15);
  padding-top: 12px;
  margin-top: 4px;
  font-weight: 400;
  color: rgba(255,255,255,.9);
}
.bv-pricing-row-total strong { color: #fff; font-size: 15px; }
.bv-pricing-panel-note {
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,.38);
  line-height: 1.6;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.08);
}

/* ── COMPARISON TABLE ── */
.bv-comparison-section {
  background: var(--cream);
  padding: 96px 48px;
}
.bv-comparison-header {
  text-align: center;
  margin-bottom: 16px;
}
.bv-comparison-sub {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-mid);
  text-align: center;
  max-width: 480px;
  margin: 0 auto 56px;
  line-height: 1.65;
}
.bv-comparison-wrap {
  max-width: 960px;
  margin: 0 auto;
  overflow-x: auto;
}
.bv-comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}
.bv-comparison-table th {
  padding: 16px 20px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  background: var(--navy);
  color: rgba(255,255,255,.75);
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.08);
}
.bv-comparison-table th:last-child { border-right: none; }
.bv-cmp-feature-head {
  text-align: left !important;
  background: var(--navy-dark) !important;
  color: var(--sage) !important;
  width: 36%;
}
.bv-cmp-bv-head {
  background: var(--sage) !important;
  color: #fff !important;
}
.bv-comparison-table td {
  padding: 14px 20px;
  font-size: 13px;
  font-weight: 300;
  color: var(--text-mid);
  border-bottom: 1px solid var(--cream-dark);
  border-right: 1px solid var(--cream-dark);
  text-align: center;
  background: #fff;
  line-height: 1.4;
}
.bv-comparison-table td:last-child { border-right: none; }
.bv-cmp-feature {
  text-align: left !important;
  font-weight: 400 !important;
  color: var(--navy) !important;
  background: var(--cream) !important;
}
.bv-cmp-bv {
  background: rgba(122,158,142,.07) !important;
  font-weight: 400 !important;
  color: var(--navy) !important;
}
.bv-cmp-yes { color: var(--sage); font-weight: 500; }
.bv-cmp-no  { color: #b8c4ce; }
.bv-cmp-maybe { color: #c09858; font-style: italic; }

/* ── HOW IT WORKS ── */
.bv-how-section {
  background: #fff;
  padding: 96px 48px;
}
.bv-how-header {
  text-align: center;
  margin-bottom: 72px;
}
.bv-how-intro {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.72;
  color: var(--text-mid);
  max-width: 540px;
  margin: 0 auto;
}
.bv-how-steps {
  max-width: 800px;
  margin: 0 auto;
}
.bv-how-step {
  display: grid;
  grid-template-columns: 72px 1fr;
  position: relative;
}
.bv-how-step:not(:last-child) .bv-how-num-wrap::after {
  content: '';
  display: block;
  width: 2px;
  flex: 1;
  background: var(--cream-dark);
  margin-top: 8px;
}
.bv-how-num-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 48px;
}
.bv-how-step:last-child .bv-how-num-wrap { padding-bottom: 0; }
.bv-how-num {
  width: 44px;
  height: 44px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: #fff;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.bv-how-content {
  padding: 4px 0 48px 32px;
}
.bv-how-step:last-child .bv-how-content { padding-bottom: 0; }
.bv-how-tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 8px;
}
.bv-how-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.2;
}
.bv-how-body {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.78;
  color: var(--text-light);
}

/* ── PM FAQ ACCORDION ── */
.bv-pm-faq-section {
  background: var(--cream);
  padding: 96px 48px;
}
.bv-pm-faq-header {
  text-align: center;
  margin-bottom: 60px;
}
.bv-pm-faq-list {
  max-width: 800px;
  margin: 0 auto 52px;
}
.bv-pm-faq-item {
  border-bottom: 1px solid var(--cream-dark);
}
.bv-pm-faq-trigger {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  text-align: left;
  gap: 24px;
}
.bv-pm-faq-q {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.3;
}
.bv-pm-faq-icon {
  width: 30px;
  height: 30px;
  border: 1px solid var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .2s, border-color .2s;
}
.bv-pm-faq-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--navy);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  transition: transform .3s;
}
.bv-pm-faq-item.open .bv-pm-faq-icon { background: var(--navy); border-color: var(--navy); }
.bv-pm-faq-item.open .bv-pm-faq-icon svg { stroke: #fff; transform: rotate(45deg); }
.bv-pm-faq-body { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.bv-pm-faq-item.open .bv-pm-faq-body { max-height: 700px; }
.bv-pm-faq-body-inner { padding: 0 0 28px; }
.bv-pm-faq-body-inner p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.78;
  color: var(--text-mid);
  margin-bottom: 14px;
}
.bv-pm-faq-body-inner p:last-child { margin-bottom: 0; }
.bv-pm-faq-footer {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding-top: 12px;
}
.bv-pm-faq-footer p {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-mid);
  margin-bottom: 12px;
  line-height: 1.6;
}

/* ── ESTIMATE SECTION ── */
.bv-estimate-section {
  background: #fff;
  padding: 96px 48px;
}
.bv-estimate-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.bv-estimate-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 300;
  line-height: 1.08;
  color: var(--navy);
  margin-bottom: 22px;
}
.bv-estimate-h2 em { font-style: italic; }
.bv-estimate-body {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.78;
  color: var(--text-mid);
  margin-bottom: 18px;
}
.bv-estimate-promise {
  background: var(--navy);
  padding: 22px 26px;
  border-left: 3px solid var(--sage);
  margin-top: 28px;
}
.bv-estimate-promise p {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,.7);
  margin: 0;
}
.bv-label-opt {
  font-size: 10px;
  font-weight: 300;
  text-transform: none;
  letter-spacing: 0;
  color: var(--text-light);
  margin-left: 4px;
}
.bv-form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpolyline points='1 1 5 5 9 1' fill='none' stroke='%235A6A7A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

/* ── FINAL CTA ── */
.bv-final-cta {
  background: var(--navy-dark);
  padding: 104px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.bv-final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(122,158,142,.10) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 60%, rgba(27,46,75,.6)     0%, transparent 60%);
  pointer-events: none;
}
.bv-final-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}
.bv-final-cta-eyebrow {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 22px;
}
.bv-final-cta h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 54px;
  font-weight: 300;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 22px;
}
.bv-final-cta h2 em { font-style: italic; color: #c8d8c0; }
.bv-final-cta p {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,.62);
  line-height: 1.72;
  margin-bottom: 44px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.bv-final-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-ghost-light {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
  background: transparent;
  border: 1px solid rgba(255,255,255,.28);
  padding: 15px 32px;
  text-decoration: none;
  display: inline-block;
  transition: border-color .2s, color .2s;
}
.btn-ghost-light:hover { border-color: rgba(255,255,255,.65); color: #fff; }

/* ── PM PAGE RESPONSIVE ── */
@media (max-width: 768px) {
  .bv-pm-hero { min-height: 520px; }
  .bv-pm-hero-content { padding: 0 24px 72px; max-width: 100%; }
  .bv-pm-hero-content h1 { font-size: 46px; }
  .bv-pm-hero-sub { font-size: 14px; }
  .bv-pm-hero-btns { flex-direction: column; gap: 10px; }
  .bv-pm-intro { grid-template-columns: 1fr; }
  .bv-pm-intro-text { padding: 60px 24px; order: 2; }
  .bv-pm-intro-image { min-height: 300px; order: 1; }
  .bv-svc-section { padding: 64px 24px; }
  .bv-svc-grid { grid-template-columns: 1fr; }
  .bv-svc-card { padding: 40px 28px; }
  .bv-svc-header { margin-bottom: 48px; }
  .bv-channels { padding: 64px 24px; }
  .bv-channels-grid { grid-template-columns: repeat(3, 1fr); }
  .bv-pricing-section { padding: 64px 24px; }
  .bv-pricing-inner { grid-template-columns: 1fr; gap: 48px; }
  .bv-pricing-h2 { font-size: 38px; }
  .bv-pricing-fee-num { font-size: 72px; }
  .bv-pricing-panel { padding: 36px 28px; }
  .bv-comparison-section { padding: 64px 24px; }
  .bv-how-section { padding: 64px 24px; }
  .bv-how-header { margin-bottom: 52px; }
  .bv-pm-faq-section { padding: 64px 24px; }
  .bv-pm-faq-q { font-size: 18px; }
  .bv-estimate-section { padding: 64px 24px; }
  .bv-estimate-inner { grid-template-columns: 1fr; gap: 48px; }
  .bv-estimate-h2 { font-size: 34px; }
  .bv-final-cta { padding: 72px 24px; }
  .bv-final-cta h2 { font-size: 38px; }
  .bv-final-cta-btns { flex-direction: column; align-items: center; }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .bv-pm-hero-content { padding: 0 32px 80px; }
  .bv-pm-hero-content h1 { font-size: 54px; }
  .bv-pm-intro { grid-template-columns: 1fr 1fr; }
  .bv-pm-intro-text { padding: 72px 44px 72px 32px; }
  .bv-pm-intro-image { min-height: 420px; }
  .bv-svc-section { padding: 72px 32px; }
  .bv-svc-grid { grid-template-columns: repeat(2, 1fr); }
  .bv-channels { padding: 72px 32px; }
  .bv-channels-grid { grid-template-columns: repeat(3, 1fr); }
  .bv-pricing-section { padding: 72px 32px; }
  .bv-pricing-inner { gap: 52px; }
  .bv-comparison-section { padding: 72px 32px; }
  .bv-how-section { padding: 72px 32px; }
  .bv-pm-faq-section { padding: 72px 32px; }
  .bv-estimate-section { padding: 72px 32px; }
  .bv-estimate-inner { gap: 52px; }
  .bv-final-cta { padding: 80px 32px; }
  .bv-final-cta h2 { font-size: 44px; }
}
