.bt-page {
  --navy-900: #163d6c;
  --navy-800: #143560;
  --navy-700: #0f2c50;
  --navy-500: #3f5680;
  --navy-300: #8893b3;
  --navy-100: #d8dde8;

  --cyan-500: #79bad7;
  --cyan-200: #cbe6f2;

  --ink: #163d6c;
  --ink-2: #33425c;
  --ink-3: #5d6a82;

  --cream: #ffffff;        /* warm off-white page bg */
  --cream-2: #f3f3ef;      /* darker cream panel */
  --bone: #ffffff;
  --hair: #e7e7e1;         /* hairline on cream */
  --hair-2: #d4d4cb;

  --gold: #ed8d73;         /* subtle gilded accent */

  --radius: 4px;
  --radius-lg: 8px;
  --shadow-card: 0 1px 0 rgba(14,27,61,0.04), 0 12px 30px -16px rgba(14,27,61,0.18);

  --maxw: 1240px;
}

.bt-page * { box-sizing: border-box; }
.bt-page, .bt-page { margin: 0; padding: 0; }

.bt-page {
  font-family: 'Plus Jakarta Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-feature-settings: 'ss01', 'cv11';
  background: var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  font-size: 16px;
}

.bt-page .serif {
  font-family: 'Fraunces', 'Iowan Old Style', Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.bt-page a { color: inherit; text-decoration: none; }

.bt-page .eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--navy-500);
}
.bt-page .eyebrow--lg {
  font-family: 'Fraunces', 'Iowan Old Style', Georgia, serif;
  font-weight: 500;
  font-size: clamp(36px, 4.2vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  color: var(--navy-900);
  text-transform: none;
  display: inline-block;
}

.bt-page .btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  background: var(--navy-900);
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: var(--radius);
  border: 1px solid var(--navy-900);
  cursor: pointer;
  transition: background 0.18s, transform 0.18s;
}
.bt-page .btn:hover { background: var(--navy-700); }
.bt-page .btn--ghost {
  background: transparent;
  color: var(--navy-900);
}
.bt-page .btn--ghost:hover { background: rgba(14,27,61,0.06); }
.bt-page .btn .arr { display:inline-block; transition: transform 0.2s; }
.bt-page .btn:hover .arr { transform: translateX(3px); }

.bt-page .container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
}

.bt-page hr.hair {
  border: 0;
  height: 1px;
  background: var(--hair);
  margin: 0;
}

/* ---------- top utility bar ---------- */
.bt-page .util {
  background: var(--navy-900);
  color: #d6dceb;
  font-size: 12px;
}
.bt-page .util__row {
  display: flex; justify-content: space-between; align-items: center;
  height: 38px;
}
.bt-page .util a { opacity: 0.92; }
.bt-page .util a:hover { opacity: 1; }
.bt-page .util .dot { opacity: 0.4; padding: 0 12px; }

/* ---------- main nav ---------- */
.bt-page .nav {
  background: #ffffff;
  border-bottom: 1px solid var(--hair);
  position: sticky; top: 0; z-index: 20;
}
.bt-page .nav__row {
  display: flex; align-items: center; justify-content: space-between;
  height: 92px;
}
.bt-page .nav__logo img { height: 54px; display: block; }
.bt-page .nav__links {
  display: flex; gap: 36px;
  font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 500;
  color: var(--ink);
}
.bt-page .nav__links a {
  display: inline-flex; align-items: center; gap: 8px;
  transition: color 0.15s;
}
.bt-page .nav__links a:hover { color: var(--cyan-500); }
.bt-page .nav__links a.is-active { color: var(--ink); }
.bt-page .nav__chev { color: var(--cyan-500); transition: transform 0.18s; }
.bt-page .nav__links a:hover .nav__chev { transform: translateY(1px); }
.bt-page .nav__cta { display: flex; gap: 10px; align-items: center; }

.bt-page .btn--outline {
  background: transparent;
  color: var(--navy-900);
  border: 1px solid var(--navy-900);
  letter-spacing: 0.14em;
}
.bt-page .btn--outline:hover {
  background: var(--navy-900);
  color: #fff;
}

/* ---------- breadcrumb ---------- */
.bt-page .crumb {
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-3);
  padding: 24px 0 0;
  margin-bottom: 26px;
  line-height: 1.5;
}
.bt-page .crumb a:hover { color: var(--navy-900); }
.bt-page .crumb .sep { opacity: 0.5; padding: 0 10px; }

/* ---------- HERO (split) ---------- */
.bt-page .hero {
  padding: 36px 0 80px;
}
.bt-page .hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: end;
}
/* Let grid children shrink below their content min-width so a single-column
   mobile layout can't blow out past the viewport. */
.bt-page .hero__grid > * { min-width: 0; }
.bt-page .hero__loc-tag {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 12px;
  background: var(--bone);
  border: 1px solid var(--hair);
  border-radius: 100px;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 600;
  color: var(--navy-700);
}
.bt-page .hero__loc-tag .pin { width: 6px; height: 6px; background: var(--cyan-500); border-radius: 50%; }

.bt-page .hero h1 {
  font-family: 'Fraunces', 'Iowan Old Style', Georgia, serif;
  font-weight: 500;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin: 22px 0 22px;
  color: var(--navy-900);
}
.bt-page .hero h1 em {
  font-style: italic;
  color: var(--navy-700);
}
.bt-page .hero__sub {
  max-width: 520px;
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0 0 36px;
}
.bt-page .hero__meta {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: 24px 0;
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  margin: 0 0 36px;
}
.bt-page .hero__meta dt {
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-3);
  margin: 0 0 8px;
  font-weight: 600;
}
.bt-page .hero__meta dd {
  margin: 0;
  font-size: 15px;
  color: var(--navy-900);
  line-height: 1.4;
}

.bt-page .hero__cta { display: flex; gap: 12px; flex-wrap: wrap; }

.bt-page .hero__photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--cream-2);
  box-shadow: var(--shadow-card);
}
.bt-page .hero__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bt-page .hero__photo-cap {
  position: absolute;
  left: 20px; bottom: 20px;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(6px);
  padding: 12px 16px;
  border-radius: var(--radius);
  display: flex; gap: 14px; align-items: center;
  font-size: 13px;
  color: var(--navy-900);
}
.bt-page .hero__photo-cap b { font-weight: 600; }
.bt-page .hero__photo-cap .pulse {
  width: 8px; height: 8px; background: #2bb673; border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(43,182,115,0.5);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(43,182,115,0.6); }
  70% { box-shadow: 0 0 0 8px rgba(43,182,115,0); }
  100% { box-shadow: 0 0 0 0 rgba(43,182,115,0); }
}

/* ---------- at-a-glance strip ---------- */
.bt-page .glance {
  background: var(--navy-900);
  color: #d6dceb;
}
.bt-page .glance__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 28px 0;
}
.bt-page .glance__cell {
  padding: 0 28px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.bt-page .glance__cell:last-child { border-right: 0; }
.bt-page .glance__num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 44px;
  line-height: 1;
  color: #fff;
  letter-spacing: -0.01em;
}
.bt-page .glance__num small {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  margin-left: 6px;
  color: rgba(255,255,255,0.6);
}
.bt-page .glance__lbl {
  font-size: 12px;
  margin-top: 10px;
  letter-spacing: 0.05em;
  line-height: 1.4;
  max-width: 200px;
}

/* ---------- section ---------- */
.bt-page .section { padding: 110px 0; }
.bt-page .section__head {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px;
  align-items: end;
  margin-bottom: 56px;
}
.bt-page .section__head h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: clamp(36px, 4.2vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  color: var(--navy-900);
  margin: 14px 0 0;
}
.bt-page .section__head p {
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  max-width: 460px;
}

/* ---------- services list (accordion) ---------- */
.bt-page .svcs {
  border-top: 1px solid var(--hair-2);
}
.bt-page .svc {
  border-bottom: 1px solid var(--hair-2);
}
.bt-page .svc__head {
  display: grid;
  grid-template-columns: 60px 1fr 1fr auto auto;
  gap: 24px;
  align-items: center;
  padding: 26px 0;
  cursor: pointer;
  transition: padding 0.2s;
}
.bt-page .svc__head:hover { padding-left: 8px; }
.bt-page .svc__num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px;
  color: var(--navy-300);
}
.bt-page .svc__title {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--navy-900);
}
.bt-page .svc__sub { font-size: 14px; color: var(--ink-3); }
.bt-page .svc__count {
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-3);
  background: var(--bone);
  border: 1px solid var(--hair);
  padding: 6px 12px;
  border-radius: 100px;
  white-space: nowrap;
}
.bt-page .svc__chev {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--hair-2);
  display: grid; place-items: center;
  transition: background 0.2s, transform 0.3s;
  color: var(--navy-900);
}
.bt-page .svc.is-open .svc__chev { background: var(--navy-900); color: #fff; transform: rotate(45deg); border-color: var(--navy-900); }

.bt-page .svc__body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s ease;
}
.bt-page .svc.is-open .svc__body { max-height: 1400px; }
.bt-page .svc__bodyinner {
  padding: 4px 0 38px 84px;
}
.bt-page .svc__note {
  display: flex; align-items: baseline; gap: 14px;
  padding: 14px 18px;
  background: var(--bone);
  border: 1px solid var(--hair);
  border-left: 2px solid var(--gold);
  border-radius: var(--radius);
  margin-bottom: 18px;
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.5;
}
.bt-page .svc__note-lbl {
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--navy-700);
  font-weight: 600;
  flex-shrink: 0;
}
.bt-page .svc__list {
  margin: 0; padding: 0; list-style: none;
}
.bt-page .svc__list li {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 28px;
  align-items: center;
  padding: 16px 4px;
  border-bottom: 1px solid var(--hair);
}
.bt-page .svc__list li:last-child { border-bottom: 0; }
.bt-page .svc__item-name {
  font-size: 15px;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.bt-page .svc__info {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px; height: 18px;
  border-radius: 50%;
  color: var(--navy-300);
  cursor: help;
  transition: color 0.15s, background 0.15s;
  outline: none;
}
.bt-page .svc__info:hover, .bt-page .svc__info:focus {
  color: var(--navy-900);
  background: var(--navy-100);
}
.bt-page .svc__tip {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  width: max-content;
  max-width: 280px;
  padding: 10px 14px;
  background: var(--navy-900);
  color: #fff;
  font-size: 12.5px;
  line-height: 1.45;
  font-weight: 400;
  letter-spacing: 0.01em;
  border-radius: var(--radius);
  text-align: left;
  white-space: normal;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s, transform 0.18s;
  z-index: 10;
  box-shadow: 0 8px 24px -8px rgba(14,27,61,0.4);
}
.bt-page .svc__tip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid var(--navy-900);
}
.bt-page .svc__info:hover .svc__tip, .bt-page .svc__info:focus .svc__tip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.bt-page .svc__badge {
  display: inline-block;
  margin-left: 4px;
  padding: 2px 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--navy-900);
  background: var(--cyan-200);
  border-radius: 100px;
  text-transform: uppercase;
  white-space: nowrap;
}
.bt-page .svc__badge[data-badge*="TMR"] {
  background: var(--navy-900);
  color: var(--cyan-200);
}
.bt-page .svc__item-price {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy-900);
  font-variant-numeric: tabular-nums;
  text-align: right;
  min-width: 96px;
}
.bt-page .svc__book {
  display: inline-flex; align-items: center;
  padding: 8px 18px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--navy-900);
  background: transparent;
  border: 1px solid var(--navy-300);
  border-radius: var(--radius);
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.bt-page .svc__book:hover {
  background: var(--navy-900);
  color: #fff;
  border-color: var(--navy-900);
}

/* ---------- services grid variant ---------- */
.bt-page .svcs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.bt-page .svccard {
  background: var(--bone);
  border: 1px solid var(--hair);
  border-radius: var(--radius-lg);
  padding: 32px 28px 24px;
  min-height: 240px;
  display: flex; flex-direction: column; gap: 12px;
  transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
}
.bt-page .svccard:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); border-color: var(--navy-300); }
.bt-page .svccard__num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 18px;
  color: var(--navy-300);
}
.bt-page .svccard__title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 28px;
  line-height: 1.05;
  color: var(--navy-900);
  letter-spacing: -0.01em;
  margin-top: 36px;
}
.bt-page .svccard__sub {
  font-size: 14px; color: var(--ink-3); line-height: 1.45;
}
.bt-page .svccard__foot {
  margin-top: auto;
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 18px;
  border-top: 1px solid var(--hair);
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--navy-700);
  font-weight: 600;
}
.bt-page .svccard__arr { font-size: 14px; transition: transform 0.2s; }
.bt-page .svccard:hover .svccard__arr { transform: translateX(4px); }

/* hero photo shape via body data attr */
.bt-page body[data-hero-shape="square"] .hero__photo { aspect-ratio: 1 / 1; }
.bt-page body[data-hero-shape="tall"]   .hero__photo { aspect-ratio: 4 / 5; }

/* ---------- location / practical ---------- */
.bt-page .loc {
  background: var(--cream-2);
}
.bt-page .loc__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: start;
}
.bt-page .loc__map {
  position: relative;
  aspect-ratio: 5 / 4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--hair-2);
  background: #e8e6dc;
}
.bt-page .loc__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  filter: grayscale(0.15) saturate(0.85);
}
.bt-page .loc__pin {
  position: absolute;
  top: 44%; left: 52%;
  transform: translate(-50%, -100%);
}
.bt-page .loc__pin .pin-bubble {
  background: var(--navy-900);
  color: #fff;
  padding: 10px 14px;
  border-radius: var(--radius);
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
  box-shadow: 0 8px 24px -8px rgba(14,27,61,0.5);
}
.bt-page .loc__pin .pin-tail {
  width: 0; height: 0; margin: -1px auto 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 10px solid var(--navy-900);
}
.bt-page .loc__pin .pin-dot {
  width: 14px; height: 14px; border-radius: 50%; background: var(--cyan-500);
  border: 3px solid #fff; margin: 4px auto 0;
  box-shadow: 0 0 0 6px rgba(42,155,209,0.25);
}

.bt-page .loc__info dt {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 600;
  margin: 28px 0 8px;
}
.bt-page .loc__info dt:first-of-type { margin-top: 0; }
.bt-page .loc__info dd {
  margin: 0; font-size: 16px; color: var(--navy-900);
  line-height: 1.5;
}
.bt-page .loc__info .row { display: flex; justify-content: space-between; padding: 6px 0; border-bottom: 1px dotted var(--hair-2); }
.bt-page .loc__info .row:last-child { border-bottom: 0; }
.bt-page .loc__info .row span:last-child { color: var(--ink-2); font-variant-numeric: tabular-nums; }

.bt-page .loc__perks {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px;
  margin-top: 14px;
}
.bt-page .perk {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 12px 14px;
  background: var(--bone);
  border: 1px solid var(--hair);
  border-radius: var(--radius);
  font-size: 13px; color: var(--ink-2);
}
.bt-page .perk svg { flex-shrink: 0; }

/* ---------- team strip ---------- */
.bt-page .team {
  background: var(--bone);
}
.bt-page .team__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.bt-page .team__photo {
  aspect-ratio: 5 / 4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--cream-2);
}
.bt-page .team__photo img { width:100%; height:100%; object-fit: cover; }
.bt-page .team h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.015em;
  color: var(--navy-900);
  margin: 14px 0 22px;
}
.bt-page .team p { font-size: 16px; color: var(--ink-2); line-height: 1.65; margin: 0 0 18px; max-width: 480px; }
.bt-page .team__quote {
  margin-top: 32px;
  padding-left: 22px;
  border-left: 2px solid var(--gold);
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: 22px;
  line-height: 1.4;
  color: var(--navy-700);
  max-width: 460px;
}
.bt-page .team__quote cite {
  display: block; margin-top: 12px;
  font-family: 'Plus Jakarta Sans', sans-serif; font-style: normal;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-3); font-weight: 600;
}

/* ---------- other locations ---------- */
.bt-page .others { background: var(--cream); }
.bt-page .others__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  margin-top: 40px;
}
.bt-page .locard {
  background: var(--bone);
  border: 1px solid var(--hair);
  border-radius: var(--radius);
  padding: 24px;
  display: flex; flex-direction: column; gap: 10px;
  min-height: 180px;
  transition: transform 0.18s, box-shadow 0.18s;
  cursor: pointer;
}
.bt-page .locard:hover { transform: translateY(-2px); box-shadow: var(--shadow-card); }
.bt-page .locard.is-current { background: var(--navy-900); color: #fff; border-color: var(--navy-900); }
.bt-page .locard.is-current .locard__city { color: rgba(255,255,255,0.6); }
.bt-page .locard.is-current .locard__addr { color: rgba(255,255,255,0.78); }
.bt-page .locard__city {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-3); font-weight: 600;
}
.bt-page .locard__name {
  font-size: 20px; font-weight: 500; letter-spacing: -0.005em; color: inherit;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 26px;
  line-height: 1.1;
}
.bt-page .locard__addr { color: var(--ink-2); font-size: 13px; line-height: 1.45; margin-top: auto; }
.bt-page .locard__cur {
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 4px 10px; background: var(--cyan-500); color: var(--navy-900);
  display: inline-block; border-radius: 100px; align-self: flex-start;
  font-weight: 700;
}

/* ---------- cta band ---------- */
.bt-page .cta {
  background: var(--navy-900);
  color: #fff;
}
.bt-page .cta__row {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 64px; align-items: center;
  padding: 96px 0;
}
.bt-page .cta h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: clamp(36px, 4.4vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin: 0;
}
.bt-page .cta h2 em { font-style: italic; color: var(--cyan-200); }
.bt-page .cta p { color: rgba(255,255,255,0.7); font-size: 16px; line-height: 1.55; margin: 18px 0 0; max-width: 480px; }
.bt-page .cta__row--centered {
  grid-template-columns: 1fr;
  text-align: left;
  max-width: 900px;
}
.bt-page .cta__row--centered p { max-width: 640px; }
.bt-page .cta .btn { background: #fff; color: var(--navy-900); border-color: #fff; }
.bt-page .cta .btn:hover { background: var(--cyan-200); border-color: var(--cyan-200); }

/* ---------- footer ---------- */
.bt-page .footer {
  background: #0a142d;
  color: rgba(255,255,255,0.7);
  padding: 72px 0 32px;
  font-size: 14px;
}
.bt-page .footer__grid {
  display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 48px;
  margin-bottom: 56px;
}
.bt-page .footer h5 {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); margin: 0 0 18px; font-weight: 600;
}
.bt-page .footer ul { list-style: none; padding: 0; margin: 0; }
.bt-page .footer li { padding: 6px 0; }
.bt-page .footer a:hover { color: #fff; }
.bt-page .footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex; justify-content: space-between; font-size: 12px;
  color: rgba(255,255,255,0.5);
}
.bt-page .footer__logo img { height: 38px; filter: brightness(0) invert(1); margin-bottom: 18px; }

/* responsiveness — minimal, for design preview comfort */
@media (max-width: 1024px) {
  .bt-page .hero__grid, .bt-page .section__head, .bt-page .loc__grid, .bt-page .team__grid, .bt-page .cta__row { grid-template-columns: minmax(0, 1fr); gap: 36px; }
  .bt-page .glance__row, .bt-page .others__grid { grid-template-columns: repeat(2, 1fr); }
  .bt-page .svc__head { grid-template-columns: 40px 1fr auto auto; }
  .bt-page .svc__sub { display: none; }
  .bt-page .svc__bodyinner { padding-left: 0; }
  .bt-page .svc__list li { grid-template-columns: 1fr auto; gap: 12px; }
  .bt-page .svc__book { grid-column: 1 / -1; justify-self: end; margin-top: 4px; }
}
.bt-page </style>
<style>/* ---------- Blood-test landing — additional sections ---------- */

/* Laval "analyses only" note on location card */
.locard--limited { border-color: rgba(209, 132, 88, 0.45); }
.bt-page .locard__note {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--hair-2);
  font-size: 12px;
  line-height: 1.45;
  color: #b76945;
  font-weight: 500;
}
.bt-page .locard__note svg { flex-shrink: 0; margin-top: 1px; }

/* hero variant — single column over a wide photo on the right */
.bt-page .hero--svc {
  padding: 36px 0 56px;
}
.bt-page .hero--svc .hero__grid {
  grid-template-columns: 1.1fr 1fr;
  gap: 72px;
  align-items: center;
}
.bt-page .hero--svc .hero__photo { aspect-ratio: 5/6; }
.bt-page .hero--svc h1 { font-size: clamp(44px, 5.4vw, 78px); }
.bt-page .hero__insurance {
  margin-top: 44px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  border-radius: 0;
  display: block;
  max-width: 640px;
  position: relative;
}
.bt-page .hero__insurance::before {
  /* peach backstop, offset down-right */
  content: '';
  position: absolute;
  top: 14px;
  left: 14px;
  right: -10px;
  bottom: -10px;
  background: linear-gradient(135deg, #f4c8a8 0%, #d18458 100%);
  border-radius: var(--radius-lg);
  z-index: 0;
}
.bt-page .hero__insurance__inner {
  position: relative;
  z-index: 1;
  background: var(--bone);
  border: 1px solid var(--hair);
  border-radius: var(--radius-lg);
  padding: 30px 34px;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  box-shadow: 0 18px 36px -22px rgba(14,27,61,0.18);
}
.bt-page .hero__insurance__inner svg {
  flex-shrink: 0;
  color: #b76945;
  width: 26px;
  height: 28px;
}
.bt-page .hero__insurance__inner svg path { stroke-width: 1.7; }

.bt-page .hero__insurance__iconwrap {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: #fbece1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(209, 132, 88, 0.25);
}

.bt-page .hero__insurance__tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: #b76945;
  background: transparent;
  padding: 0;
  margin: 0 0 8px;
  border-radius: 0;
  box-shadow: none;
  white-space: nowrap;
}
.bt-page .hero__insurance__tag::before {
  content: '';
  width: 6px; height: 6px;
  background: #d18458;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(209,132,88,0.55);
  animation: tagPulse 2.4s infinite;
}
@keyframes tagPulse {
  0%   { box-shadow: 0 0 0 0 rgba(209,132,88,0.55); }
  70%  { box-shadow: 0 0 0 6px rgba(209,132,88,0); }
  100% { box-shadow: 0 0 0 0 rgba(209,132,88,0); }
}

.bt-page .hero__insurance__title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--navy-900);
  margin: 0 0 8px;
}
.bt-page .hero__insurance__body {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0;
}
.bt-page .hero__insurance__body b { color: var(--navy-900); font-weight: 600; }
.bt-page .hero__insurance__note {
  margin: 10px 0 0;
  padding-top: 10px;
  border-top: 1px solid rgba(209, 132, 88, 0.28);
  font-size: 12px;
  letter-spacing: 0.02em;
  color: #b76945;
  font-weight: 600;
}
.bt-page .hero__insurance__tag::before {
  content: '';
  width: 6px; height: 6px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255,255,255,0.7);
  animation: tagPulse 2.4s infinite;
}
@keyframes tagPulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,255,255,0.7); }
  70%  { box-shadow: 0 0 0 6px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

/* ---------- How it works — two paths ---------- */
.bt-page .paths {
  background: var(--cream);
}
.bt-page .paths__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 8px;
}
.bt-page .path {
  background: var(--bone);
  border: 1px solid var(--hair);
  border-radius: var(--radius-lg);
  padding: 40px 36px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.bt-page .path__eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--navy-500);
}
.bt-page .path__title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 34px;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--navy-900);
  margin: 6px 0 0;
}
.bt-page .path__lede {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.55;
  margin: 0;
  max-width: 440px;
}
.bt-page .path__steps {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  counter-reset: step;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.bt-page .path__steps li {
  counter-increment: step;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid var(--hair);
  position: relative;
}
.bt-page .path__steps li:last-child { border-bottom: 1px solid var(--hair); }
.bt-page .path__steps li::before {
  content: counter(step, decimal-leading-zero);
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px;
  color: var(--navy-300);
  line-height: 1.2;
}
.bt-page .path__step-title {
  font-size: 15.5px;
  font-weight: 500;
  color: var(--navy-900);
  letter-spacing: -0.005em;
}
.bt-page .path__step-sub {
  font-size: 13.5px;
  color: var(--ink-3);
  line-height: 1.5;
  margin-top: 4px;
}
.bt-page .path__cta {
  margin-top: auto;
}
.bt-page .path__price {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 0;
  margin-top: 4px;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.bt-page .path__price-amt {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 1;
  color: #fff;
  letter-spacing: -0.01em;
}
.bt-page .path__price-amt span {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.02em;
  margin-left: 6px;
}
.bt-page .path__price-note {
  font-size: 12.5px;
  line-height: 1.45;
  color: rgba(255,255,255,0.6);
  max-width: 340px;
}
.bt-page .path--featured {
  background: var(--navy-900);
  border-color: var(--navy-900);
  color: #fff;
}
.bt-page .path--featured .path__eyebrow { color: var(--cyan-200); }
.bt-page .path--featured .path__title { color: #fff; }
.bt-page .path--featured .path__lede { color: rgba(255,255,255,0.78); }
.bt-page .path--featured .path__steps li { border-color: rgba(255,255,255,0.12); }
.bt-page .path--featured .path__steps li::before { color: rgba(255,255,255,0.45); }
.bt-page .path--featured .path__step-title { color: #fff; }
.bt-page .path--featured .path__step-sub { color: rgba(255,255,255,0.65); }
.bt-page .path--featured .btn {
  background: #fff;
  color: var(--navy-900);
  border-color: #fff;
}
.bt-page .path--featured .btn:hover { background: var(--cyan-200); border-color: var(--cyan-200); }

/* ---------- Tests two-column list ---------- */
.bt-page .tests {
  background: var(--cream);
}
.bt-page .tests__head-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: var(--bone);
  border: 1px solid var(--hair);
  border-radius: 100px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--navy-700);
}
.bt-page .tests__head-meta .dot { width: 6px; height: 6px; background: var(--cyan-500); border-radius: 50%; }

.bt-page .tests__statement {
  max-width: 980px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
}
.bt-page .tests__lede {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.18;
  letter-spacing: -0.015em;
  color: var(--navy-900);
  margin: 4px 0 0;
  text-wrap: pretty;
}

.bt-page .tests__panel {
  background: var(--bone);
  border: 1px solid var(--hair);
  border-radius: var(--radius-lg);
  padding: 12px 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 56px;
}
.bt-page .tests__panel-head {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 22px 0 14px;
  border-bottom: 1px solid var(--hair-2);
  margin-bottom: 4px;
}
.bt-page .tests__panel-title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 24px;
  color: var(--navy-900);
  letter-spacing: -0.005em;
}
.bt-page .tests__panel-meta {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 600;
}
.bt-page .testitem {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--hair);
  align-items: baseline;
}
.bt-page .testitem:nth-last-child(-n+2) { border-bottom: 0; }
.bt-page .testitem__num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 16px;
  color: var(--navy-300);
  font-variant-numeric: tabular-nums;
}
.bt-page .testitem__name {
  font-size: 16px;
  font-weight: 500;
  color: var(--navy-900);
  letter-spacing: -0.005em;
}
.bt-page .testitem__desc {
  font-size: 13.5px;
  color: var(--ink-3);
  line-height: 1.5;
  margin-top: 4px;
}
.bt-page .tests__foot {
  background: var(--bone);
  border: 1px solid var(--hair);
  border-top: 0;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  margin-top: -1px;
  padding: 18px 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-size: 13.5px;
  color: var(--ink-2);
}
.bt-page .tests__foot b { color: var(--navy-900); font-weight: 600; }

/* ---------- Service cards (Analyses / Consultation) ---------- */
.bt-page .svcpicker__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.bt-page .pickcard {
  background: var(--bone);
  border: 1px solid var(--hair);
  border-radius: var(--radius-lg);
  padding: 36px 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
}
.bt-page .pickcard:hover { transform: translateY(-2px); box-shadow: var(--shadow-card); border-color: var(--navy-300); }
.bt-page .pickcard--featured {
  background: var(--navy-900);
  border-color: var(--navy-900);
  color: #fff;
}
.bt-page .pickcard__tag {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--navy-500);
}
.bt-page .pickcard--featured .pickcard__tag { color: var(--cyan-200); }
.bt-page .pickcard__title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--navy-900);
  margin: 4px 0 0;
}
.bt-page .pickcard--featured .pickcard__title { color: #fff; }
.bt-page .pickcard__sub {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.5;
  margin: 0;
}
.bt-page .pickcard--featured .pickcard__sub { color: rgba(255,255,255,0.7); }
.bt-page .pickcard__bullets {
  list-style: none;
  padding: 0;
  margin: 6px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.bt-page .pickcard__bullets li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  font-size: 14.5px;
  color: var(--ink);
  line-height: 1.5;
}
.bt-page .pickcard--featured .pickcard__bullets li { color: rgba(255,255,255,0.92); }
.bt-page .pickcard__bullets svg { color: var(--cyan-500); margin-top: 4px; flex-shrink: 0; }
.bt-page .pickcard__foot {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--hair);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.bt-page .pickcard--featured .pickcard__foot { border-color: rgba(255,255,255,0.12); }
.bt-page .pickcard__note {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--ink-3);
}
.bt-page .pickcard--featured .pickcard__note { color: rgba(255,255,255,0.55); }
.bt-page .pickcard--featured .btn {
  background: #fff;
  color: var(--navy-900);
  border-color: #fff;
}
.bt-page .pickcard--featured .btn:hover { background: var(--cyan-200); border-color: var(--cyan-200); }

/* ---------- Practical info — definition grid ---------- */
.bt-page .practical {
  background: var(--bone);
}
.bt-page .practical__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--hair-2);
}
.bt-page .practical__cell {
  padding: 28px 32px;
  border-bottom: 1px solid var(--hair-2);
  border-right: 1px solid var(--hair-2);
}
.bt-page .practical__cell:nth-child(3n+1) { padding-left: 0; }
.bt-page .practical__cell:nth-child(3n) { border-right: 0; padding-right: 0; }
.bt-page .practical__cell:nth-child(n+4) { border-bottom: 0; }
.bt-page .practical__cell:last-child { border-right: 0; }
.bt-page .practical__lbl {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-3);
  margin-bottom: 10px;
}
.bt-page .practical__val {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.25;
  color: var(--navy-900);
  letter-spacing: -0.005em;
}
.bt-page .practical__foot {
  margin-top: 28px;
  font-size: 12px;
  color: var(--ink-3);
  font-style: italic;
}

/* ---------- FAQ accordion ---------- */
.bt-page .faq__grid {
  display: grid;
  grid-template-columns: 1.05fr 1.4fr;
  gap: 80px;
  align-items: flex-start;
}
.bt-page .faq__intro h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: clamp(40px, 4.4vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--navy-900);
  margin: 14px 0 22px;
}
.bt-page .faq__intro p {
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.6;
  max-width: 380px;
  margin: 0 0 24px;
}
.bt-page .faq__contact {
  padding: 20px 22px;
  background: var(--bone);
  border: 1px solid var(--hair);
  border-radius: var(--radius);
  margin-top: 16px;
}
.bt-page .faq__contact h4 {
  font-size: 13px;
  letter-spacing: 0.04em;
  margin: 0 0 6px;
  color: var(--navy-900);
  font-weight: 600;
}
.bt-page .faq__contact p {
  margin: 0;
  font-size: 13.5px;
  color: var(--ink-3);
  max-width: none;
}
.bt-page .faq__contact a { color: var(--navy-900); font-weight: 500; }

.bt-page .faq__list {
  border-top: 1px solid var(--hair-2);
}
.bt-page .faqitem {
  border-bottom: 1px solid var(--hair-2);
}
.bt-page .faqitem__head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 24px 0;
  cursor: pointer;
  transition: padding 0.2s;
}
.bt-page .faqitem__head:hover { padding-left: 6px; }
.bt-page .faqitem__q {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--navy-900);
  line-height: 1.35;
}
.bt-page .faqitem__chev {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--hair-2);
  display: grid; place-items: center;
  color: var(--navy-900);
  transition: background 0.2s, transform 0.3s;
  flex-shrink: 0;
}
.bt-page .faqitem.is-open .faqitem__chev {
  background: var(--navy-900);
  color: #fff;
  border-color: var(--navy-900);
  transform: rotate(45deg);
}
.bt-page .faqitem__body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s ease;
}
.bt-page .faqitem.is-open .faqitem__body { max-height: 600px; }
.bt-page .faqitem__bodyinner {
  padding: 0 0 26px;
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.6;
  max-width: 640px;
}

/* responsive */
@media (max-width: 1024px) {
  .bt-page .hero--svc .hero__grid, .bt-page .paths__grid, .bt-page .svcpicker__grid, .bt-page .faq__grid { grid-template-columns: minmax(0, 1fr); gap: 28px; }
  .bt-page .practical__grid { grid-template-columns: 1fr 1fr; }
  .bt-page .practical__cell:nth-child(3n) { border-right: 1px solid var(--hair-2); padding-right: 24px; }
  .bt-page .practical__cell:nth-child(2n) { border-right: 0; padding-right: 0; }
  .bt-page .practical__cell:nth-child(2n+1) { padding-left: 0; }
  .bt-page .tests__panel { grid-template-columns: 1fr; column-gap: 0; padding: 12px 24px; }
}
