@import url("https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Manrope:wght@300;400;500;600;700&display=swap");

:root {
  /* Brand */
  --burgundy: #5c2024;
  --burgundy-deep: #3f1518;
  --burgundy-soft: #f4e8e8;
  --green: #4f8f3e;
  --green-deep: #2d5f3d;
  --green-soft: #e5eddc;
  --green-pale: #f1f5ec;

  /* Neutrals */
  --cream: #faf5ec;
  --cream-deep: #f2e9d7;
  --paper: #fdfbf6;
  --ink: #1f1414;
  --ink-soft: #3a2a26;
  --muted: #7a6a66;
  --line: rgba(31, 20, 20, 0.1);
  --line-strong: rgba(31, 20, 20, 0.18);
  --white: #ffffff;

  /* Type */
  --serif: "Instrument Serif", "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", -apple-system, "Segoe UI", sans-serif;

  /* Type scale */
  --t-display: clamp(48px, 7vw, 96px);
  --t-h1: clamp(40px, 5.2vw, 72px);
  --t-h2: clamp(32px, 3.6vw, 52px);
  --t-h3: clamp(22px, 1.6vw, 28px);
  --t-body: 17px;
  --t-small: 14px;
  --t-eyebrow: 12px;

  /* Spacing (fixed rhythm, not themed) */
  --pad-x: clamp(20px, 4vw, 64px);
  --section-y: clamp(72px, 8vw, 128px);
  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  /* Per-level typography (consumed by the override layer) */
  --tl-display-family: var(--serif);
  --tl-display-weight: 400;
  --tl-display-tracking: -0.01em;
  --tl-display-transform: none;
  --tl-h1-family: var(--serif);
  --tl-h1-weight: 400;
  --tl-h1-tracking: -0.01em;
  --tl-h1-transform: none;
  --tl-h2-family: var(--serif);
  --tl-h2-weight: 400;
  --tl-h2-tracking: -0.01em;
  --tl-h2-transform: none;
  --tl-h3-family: var(--serif);
  --tl-h3-weight: 400;
  --tl-h3-tracking: -0.01em;
  --tl-h3-transform: none;
  --tl-body-family: var(--sans);
  --tl-body-weight: 400;
  --tl-body-tracking: normal;
  --tl-body-transform: none;
  --tl-small-family: var(--sans);
  --tl-small-weight: 400;
  --tl-small-tracking: normal;
  --tl-small-transform: none;
  --tl-eyebrow-family: var(--sans);
  --tl-eyebrow-weight: 600;
  --tl-eyebrow-tracking: 0.18em;
  --tl-eyebrow-transform: uppercase;
  --em-style: italic;
  --em-color: var(--burgundy);
}

* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--sans);
  font-size: var(--t-body);
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ---------- Layout primitives ---------- */
.container {
  max-width: 1360px;
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

.eyebrow {
  font-family: var(--sans);
  font-size: var(--t-eyebrow);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-deep);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--green-deep);
}

h1,
h2,
h3,
h4 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin: 0;
  color: var(--ink);
  text-wrap: pretty;
}
h1 {
  font-size: var(--t-h1);
}
h2 {
  font-size: var(--t-h2);
}
h3 {
  font-size: var(--t-h3);
  line-height: 1.2;
}
p {
  margin: 0;
}
.lede {
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 56ch;
  text-wrap: pretty;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease,
    border-color 0.18s ease;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn--primary {
  background: var(--burgundy);
  color: var(--cream);
}
.btn--primary:hover {
  background: var(--burgundy-deep);
}
.btn--green {
  background: var(--green-deep);
  color: var(--cream);
}
.btn--green:hover {
  background: #234c30;
}
.btn--ghost {
  border: 1px solid var(--line-strong);
  color: var(--ink);
  background: transparent;
}
.btn--ghost:hover {
  border-color: var(--ink);
  background: var(--cream);
}
.btn--light {
  background: var(--cream);
  color: var(--burgundy);
}
.btn--light:hover {
  background: var(--white);
}
.btn .arr {
  font-size: 17px;
  transition: transform 0.18s ease;
}
.btn:hover .arr {
  transform: translateX(3px);
}

/* ---------- Promo bar ---------- */
.promo {
  background: var(--burgundy);
  color: var(--cream);
  font-size: 13px;
  letter-spacing: 0.04em;
}
.promo__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 10px var(--pad-x);
  text-align: center;
  flex-wrap: wrap;
}
.promo a {
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.promo .pill {
  display: inline-block;
  background: rgba(250, 245, 236, 0.12);
  padding: 2px 10px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(253, 251, 246, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px var(--pad-x);
  max-width: 1360px;
  margin: 0 auto;
}
.brand img {
  height: 52px;
  width: auto;
}
.nav {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav a {
  position: relative;
  padding: 9px 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  border-radius: var(--radius-pill);
  transition: color 0.18s ease, background 0.18s ease;
}
.nav a:hover {
  color: var(--burgundy);
  background: var(--burgundy-soft);
}
.nav a.is-active {
  color: var(--burgundy);
}
.nav a .badge {
  display: inline-block;
  background: var(--green-deep);
  color: var(--cream);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 2px 7px;
  border-radius: var(--radius-pill);
  margin-left: 8px;
  vertical-align: 2px;
}
.header__cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--burgundy-deep);
  color: var(--cream);
  padding: 88px var(--pad-x) 32px;
}
.footer__inner {
  max-width: 1360px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 56px;
}
.footer h4 {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(250, 245, 236, 0.55);
  margin-bottom: 18px;
}
.footer__brand .word {
  font-family: var(--serif);
  font-size: 32px;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 12px;
}
.footer__brand p {
  color: rgba(250, 245, 236, 0.7);
  font-size: 15px;
  line-height: 1.6;
  max-width: 32ch;
}
.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer ul a {
  color: rgba(250, 245, 236, 0.85);
  font-size: 15px;
  transition: color 0.15s ease;
}
.footer ul a:hover {
  color: var(--white);
}
.footer__bottom {
  max-width: 1360px;
  margin: 56px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(250, 245, 236, 0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: rgba(250, 245, 236, 0.55);
  flex-wrap: wrap;
}

/* OCP regulatory / accreditation strip */
.footer__legal {
  max-width: 1360px;
  margin: 48px auto 0;
  padding-top: 32px;
  border-top: 1px solid rgba(250, 245, 236, 0.14);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: start;
}
.footer__poc {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.footer__poc svg {
  width: 64px;
  height: 64px;
}
.footer__poc img {
  width: 84px;
  height: auto;
  background: #fff;
  border-radius: 12px;
  padding: 10px 12px;
}
.footer__poc span {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250, 245, 236, 0.5);
  max-width: 90px;
  line-height: 1.3;
}
.footer__legal-body h4 {
  margin-bottom: 14px;
}
.footer__regdl {
  margin: 0 0 14px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px 40px;
}
.footer__regdl div {
  display: flex;
  gap: 8px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(250, 245, 236, 0.08);
  font-size: 13.5px;
  line-height: 1.4;
}
.footer__regdl dt {
  flex: 0 0 132px;
  color: rgba(250, 245, 236, 0.5);
  font-weight: 500;
}
.footer__regdl dd {
  margin: 0;
  color: rgba(250, 245, 236, 0.88);
}
.footer__regdl dd a {
  color: rgba(250, 245, 236, 0.88);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer__regnote {
  font-size: 12.5px;
  line-height: 1.55;
  color: rgba(250, 245, 236, 0.5);
  max-width: 70ch;
}
.footer__regnote a {
  color: rgba(250, 245, 236, 0.78);
  text-decoration: underline;
  text-underline-offset: 2px;
}
@media (max-width: 760px) {
  .footer__legal { grid-template-columns: 1fr; gap: 24px; }
  .footer__regdl { grid-template-columns: 1fr; }
  .footer__regdl dt { flex-basis: 120px; }
}

/* ---------- Utility ---------- */
.section {
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
}
.divider {
  height: 1px;
  background: var(--line);
}

/* ---------- Mobile nav (hamburger) ---------- */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.22s ease, opacity 0.22s ease;
}
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-mobile {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 24px 44px -24px rgba(60, 30, 30, 0.28);
  padding: 6px var(--pad-x) 18px;
  z-index: 49;
}
body.nav-open .nav-mobile { display: block; }
.nav-mobile nav { display: flex; flex-direction: column; }
.nav-mobile a {
  padding: 15px 6px;
  font-size: 17px;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
}
.nav-mobile a:last-child { border-bottom: 0; }
.nav-mobile a .badge {
  display: inline-block;
  background: var(--green-deep);
  color: var(--cream);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 2px 7px;
  border-radius: var(--radius-pill);
  margin-left: 8px;
}

/* ---------- Responsive ---------- */
@media (max-width: 1300px) {
  .header .live-pill { display: none; }
}
@media (max-width: 1140px) {
  .nav { display: none; }
  .nav-toggle { display: flex; }
}
@media (min-width: 1141px) {
  .nav-mobile { display: none !important; }
}
@media (max-width: 900px) {
  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}
@media (max-width: 560px) {
  .footer__inner {
    grid-template-columns: 1fr;
  }
  .promo__inner {
    font-size: 12px;
    gap: 10px;
  }
}

/* ---------- What's New / updates (compact carousel) ---------- */
  .updates {
    background: var(--green-pale);
    padding: clamp(34px, 4vw, 52px) 0;
    border-top: 1px solid var(--green-soft);
    border-bottom: 1px solid var(--green-soft);
  }
  .updates__inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 var(--pad-x);
  }
  .updates__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 16px;
  }
  .updates__head .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0;
  }
  .updates__pulse {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 0 rgba(79, 143, 62, 0.5);
    animation: updatesPulse 2.2s infinite;
  }
  @media (prefers-reduced-motion: no-preference) {
    @keyframes updatesPulse {
      0% { box-shadow: 0 0 0 0 rgba(79, 143, 62, 0.45); }
      70% { box-shadow: 0 0 0 9px rgba(79, 143, 62, 0); }
      100% { box-shadow: 0 0 0 0 rgba(79, 143, 62, 0); }
    }
  }
  .updates__nav {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .updates__dots {
    display: flex;
    gap: 7px;
  }
  .updates__dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: var(--green-soft);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
  }
  .updates__dot.is-active {
    background: var(--green-deep);
    transform: scale(1.25);
  }
  .updates__arrows {
    display: flex;
    gap: 6px;
  }
  .updates__arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--green-soft);
    background: var(--paper);
    color: var(--green-deep);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: 1;
    transition: background 0.18s ease, border-color 0.18s ease;
  }
  .updates__arrow:hover {
    background: var(--green-soft);
    border-color: var(--green);
  }
  .updates__viewport {
    overflow: hidden;
    border-radius: var(--radius-lg);
  }
  .updates__track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
    will-change: transform;
  }
  .update-slide {
    flex: 0 0 100%;
    min-width: 100%;
    box-sizing: border-box;
  }
  .update-card {
    background: var(--paper);
    border: 1px solid var(--green-soft);
    border-radius: var(--radius-lg);
    padding: 22px 26px;
    display: flex;
    align-items: center;
    gap: 26px;
    text-decoration: none;
    color: inherit;
    min-height: 132px;
    box-sizing: border-box;
    transition: border-color 0.18s ease;
  }
  a.update-card:hover {
    border-color: var(--green);
  }
  .update-card__meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    flex: 0 0 138px;
  }
  .update-card__tag {
    display: inline-flex;
    align-items: center;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--green-deep);
    background: var(--green-soft);
    border-radius: var(--radius-pill);
    padding: 5px 11px;
    text-align: left;
  }
  .update-card__tag--alert {
    color: var(--burgundy);
    background: var(--burgundy-soft);
  }
  .update-card__date {
    font-size: 12.5px;
    color: var(--muted);
    font-weight: 600;
  }
  .update-card__main {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
  }
  .update-card h3 {
    font-size: 18px;
    line-height: 1.25;
    color: var(--ink);
    margin: 0;
  }
  .update-card p {
    font-size: 14.5px;
    line-height: 1.55;
    color: var(--ink-soft);
    margin: 0;
  }
  .update-card__link {
    font-size: 14px;
    font-weight: 600;
    color: var(--green-deep);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 2px;
  }
  @media (max-width: 620px) {
    .update-card {
      flex-direction: column;
      align-items: flex-start;
      gap: 14px;
      padding: 20px 22px;
    }
    .update-card__meta {
      flex-basis: auto;
      flex-direction: row;
      align-items: center;
    }
  }

/* ===== next inline block ===== */

/* ============================================================
     HOMEPAGE STYLES (v2 — growth-optimized)
     ============================================================ */

  /* --- Header: live status + rating ------------------------- */
  .live-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: var(--radius-pill);
    background: rgba(79, 143, 62, 0.1);
    color: var(--green-deep);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.02em;
  }
  .live-pill__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 4px rgba(79, 143, 62, 0.2);
    animation: pulse 2s ease-out infinite;
  }
  .live-pill.is-closed {
    background: rgba(122, 106, 102, 0.12);
    color: var(--muted);
  }
  .live-pill.is-closed .live-pill__dot {
    background: var(--muted);
    box-shadow: none;
    animation: none;
  }
  @keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(79, 143, 62, 0.2); }
    50% { box-shadow: 0 0 0 8px rgba(79, 143, 62, 0); }
  }

  /* --- Hero ------------------------------------------------- */
  .hero {
    position: relative;
    padding: 64px 0 96px;
    overflow: hidden;
    min-height: 720px;
    display: flex;
    align-items: center;
    background: linear-gradient(180deg, var(--green-pale) 0%, var(--paper) 62%);
  }
  /* full-bleed feathered hero photo */
  .hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    -webkit-mask-image: linear-gradient(to right, transparent 28%, rgba(0,0,0,0.18) 44%, #000 62%);
    mask-image: linear-gradient(to right, transparent 28%, rgba(0,0,0,0.18) 44%, #000 62%);
  }
  .hero__bg image-slot,
  .hero__bg img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: right center;
  }
  .hero__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 72%, rgba(31,20,20,0.10));
    pointer-events: none;
  }
  /* cream scrim that keeps the copy readable over the photo */
  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(to right, var(--paper) 0%, var(--paper) 30%, rgba(253,251,246,0.82) 42%, rgba(253,251,246,0) 64%);
  }
  .hero__inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 var(--pad-x);
    width: 100%;
    position: relative;
    z-index: 2;
  }
  .hero__copy {
    max-width: 560px;
  }
  .hero__leaf {
    display: none;
  }
  .hero__copy h1 {
    font-size: clamp(52px, 6.4vw, 96px);
    line-height: 0.98;
    letter-spacing: -0.025em;
    margin: 22px 0 24px;
  }
  .hero__copy h1 em {
    font-style: var(--em-style);
    color: var(--em-color);
  }
  .hero__copy .lede {
    font-size: 20px;
    line-height: 1.55;
    color: var(--ink-soft);
    margin-bottom: 32px;
    max-width: 52ch;
  }
  .hero__rating {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
    flex-wrap: wrap;
  }
  .hero__stars {
    display: inline-flex;
    gap: 2px;
    color: #d49b1c;
  }
  .hero__rating-txt {
    font-size: 14px;
    color: var(--ink-soft);
  }
  .hero__rating-txt b {
    font-weight: 700;
    color: var(--ink);
  }
  .hero__rating-google {
    font-size: 13px;
    color: var(--muted);
    border-left: 1px solid var(--line);
    padding-left: 14px;
  }
  .hero__cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 32px;
  }
  .hero__trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    font-size: 13px;
    color: var(--muted);
  }
  .hero__trust span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .hero__trust svg {
    color: var(--green-deep);
    flex-shrink: 0;
  }

  /* Hero mobile reflow: photo drops below the copy */
  @media (max-width: 1080px) {
    .hero {
      flex-direction: column;
      min-height: 0;
      padding: 48px 0 0;
      align-items: stretch;
    }
    .hero::before { display: none; }
    .hero__inner { order: 1; }
    .hero__copy { max-width: none; }
    .hero__bg {
      position: relative;
      order: 2;
      height: 340px;
      margin-top: 40px;
      -webkit-mask-image: none;
      mask-image: none;
    }
    .hero__bg image-slot,
    .hero__bg img {
      object-fit: cover;
      object-position: center 35%;
    }
  }
  .hero__tag {
    position: absolute;
    left: 24px;
    bottom: 24px;
    background: rgba(253, 251, 246, 0.96);
    backdrop-filter: blur(6px);
    padding: 14px 18px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 14px;
    max-width: 320px;
    box-shadow: 0 12px 28px -12px rgba(0, 0, 0, 0.2);
  }
  .hero__tag .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 4px rgba(79, 143, 62, 0.18);
    flex-shrink: 0;
  }
  .hero__tag .txt {
    font-size: 13px;
    line-height: 1.35;
  }
  .hero__tag .txt b {
    display: block;
    margin-bottom: 1px;
    font-weight: 600;
  }
  /* Hero floating review card */
  .hero__review {
    position: absolute;
    top: 32px;
    right: -36px;
    background: var(--paper);
    padding: 18px 20px 16px;
    border-radius: var(--radius);
    max-width: 260px;
    box-shadow: 0 24px 48px -20px rgba(60, 30, 30, 0.22);
    z-index: 3;
  }
  .hero__review .stars {
    color: #d49b1c;
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 6px;
  }
  .hero__review p {
    font-family: var(--serif);
    font-style: italic;
    font-size: 15px;
    line-height: 1.4;
    color: var(--ink);
    margin-bottom: 10px;
  }
  .hero__review .by {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
  }

  /* --- Quick actions ---------------------------------------- */
  .quick {
    background: var(--cream);
    padding: 32px var(--pad-x);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .quick__grid {
    max-width: 1360px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .quick__card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 22px 24px;
    display: flex;
    align-items: center;
    gap: 18px;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
    cursor: pointer;
  }
  .quick__card:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px -16px rgba(45, 95, 61, 0.2);
    border-color: var(--green-deep);
  }
  .quick__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--green-pale);
    color: var(--green-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .quick__txt {
    flex: 1;
  }
  .quick__txt b {
    display: block;
    font-family: var(--serif);
    font-size: 20px;
    line-height: 1.15;
    margin-bottom: 2px;
    color: var(--ink);
  }
  .quick__txt span {
    font-size: 13.5px;
    color: var(--muted);
  }
  .quick__card .arr {
    color: var(--burgundy);
    font-size: 20px;
    transition: transform 0.18s ease;
  }
  .quick__card:hover .arr {
    transform: translateX(4px);
  }

  /* --- Section heads ---------------------------------------- */
  .sect-head {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 var(--pad-x);
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 32px;
    margin-bottom: 56px;
  }
  .sect-head__left h2 {
    font-size: var(--t-h2);
    line-height: 1.05;
    margin-top: 16px;
    max-width: 18ch;
  }
  .sect-head__left h2 em {
    font-style: var(--em-style);
    color: var(--em-color);
  }
  .sect-head__right {
    max-width: 38ch;
    font-size: 16px;
    color: var(--muted);
    text-align: right;
  }

  /* --- Services -------------------------------------------- */
  .services { background: var(--paper); }
  .services__grid {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 var(--pad-x);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
  }
  .service {
    background: var(--paper);
    padding: 40px 36px 36px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-height: 270px;
    transition: background 0.2s ease;
  }
  .service:hover { background: var(--cream); }
  .service__icon {
    width: 44px; height: 44px; border-radius: 12px;
    background: var(--green-pale);
    color: var(--green-deep);
    display: flex; align-items: center; justify-content: center;
  }
  .service__icon svg { width: 22px; height: 22px; }
  .service h3 {
    font-family: var(--serif);
    font-size: 26px;
    line-height: 1.1;
  }
  .service p {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.55;
    flex: 1;
  }
  .service__link {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--burgundy);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.18s ease;
  }
  .service:hover .service__link { gap: 12px; }
  .service__badge {
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 700;
    color: var(--burgundy);
    background: var(--burgundy-soft);
    padding: 3px 8px;
    border-radius: var(--radius-pill);
    vertical-align: 5px;
    letter-spacing: 0.12em;
    margin-left: 6px;
  }

  /* --- Services: quick-nav filter -------------------------- */
  .services__filter {
    max-width: 1360px;
    margin: 0 auto 24px;
    padding: 0 var(--pad-x);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
  }
  .services__filter-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    margin-right: 4px;
  }
  .services__chip {
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius-pill);
    padding: 8px 16px;
    cursor: pointer;
    transition: background 0.16s ease, color 0.16s ease, border-color 0.16s ease;
  }
  .services__chip:hover { background: var(--cream); }
  .services__chip[aria-pressed="true"] {
    background: var(--burgundy);
    border-color: var(--burgundy);
    color: #fff;
  }
  .services__empty {
    max-width: 1360px;
    margin: 20px auto 0;
    padding: 0 var(--pad-x);
    font-size: 15px;
    color: var(--muted);
  }
  .service[hidden] { display: none; }

  /* --- Why Opal (differentiators) -------------------------- */
  .why {
    background: var(--cream);
    position: relative;
  }
  .why__inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 var(--pad-x);
  }
  .why__head {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: end;
    margin-bottom: 64px;
  }
  .why__head h2 {
    font-size: clamp(40px, 4.6vw, 64px);
    line-height: 1.02;
  }
  .why__head h2 em { font-style: var(--em-style); color: var(--em-color); }
  .why__head p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.55;
    max-width: 44ch;
  }
  .why__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .why__card {
    background: var(--paper);
    padding: 36px 28px 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .why__stat {
    font-family: var(--serif);
    font-size: 64px;
    line-height: 1;
    color: var(--burgundy);
    letter-spacing: -0.02em;
  }
  .why__stat sup {
    font-size: 28px;
    vertical-align: 24px;
    color: var(--green-deep);
  }
  .why__stat--icon {
    display: flex;
    align-items: center;
    height: 64px;
    color: var(--burgundy);
  }
  .why__stat--icon svg {
    width: 50px;
    height: 50px;
  }
  .why__card h3 {
    font-family: var(--serif);
    font-size: 22px;
    line-height: 1.2;
  }
  .why__card p {
    color: var(--muted);
    font-size: 14.5px;
    line-height: 1.55;
  }

  /* --- Women's Health feature ------------------------------ */
  .feature {
    background: linear-gradient(170deg, var(--burgundy-soft) 0%, #ecd9d9 100%);
    position: relative;
    overflow: hidden;
  }
  .feature__inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 var(--pad-x);
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
  }
  .feature__copy .eyebrow { color: var(--burgundy); }
  .feature__copy .eyebrow::before { background: var(--burgundy); }
  .feature__copy h2 {
    font-size: clamp(40px, 4.4vw, 64px);
    line-height: 1.02;
    margin: 18px 0 24px;
  }
  .feature__copy h2 em { font-style: var(--em-style); }
  .feature__copy p {
    color: var(--ink-soft);
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 44ch;
  }
  .feature__list {
    list-style: none;
    padding: 0;
    margin: 0 0 36px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 24px;
  }
  .feature__list li {
    font-size: 15px;
    color: var(--ink-soft);
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .feature__list li::before {
    content: "";
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--burgundy);
    flex-shrink: 0;
  }
  .feature__visual {
    position: relative;
    aspect-ratio: 1 / 1.05;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: linear-gradient(160deg, #d8c2c2, #b89797);
    box-shadow: 0 30px 60px -30px rgba(60, 30, 30, 0.3);
  }
  .feature__visual img { width: 100%; height: 100%; object-fit: cover; }
  .feature__badge {
    position: absolute;
    top: 24px;
    left: 24px;
    background: var(--burgundy);
    color: var(--cream);
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
  }

  /* --- Reviews / testimonials ------------------------------ */
  .reviews {
    background: var(--paper);
  }
  .reviews__head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 56px;
    padding: 0 var(--pad-x);
  }
  .reviews__head h2 {
    font-size: clamp(36px, 4.2vw, 60px);
    line-height: 1.05;
    margin-bottom: 18px;
  }
  .reviews__head h2 em { font-style: var(--em-style); color: var(--em-color); }
  .reviews__head .agg {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: var(--cream);
    padding: 12px 24px;
    border-radius: var(--radius-pill);
    margin-bottom: 24px;
    border: 1px solid var(--line);
  }
  .reviews__head .stars {
    color: #d49b1c;
    font-size: 18px;
    letter-spacing: 2px;
  }
  .reviews__head .agg-txt {
    font-size: 14px;
    color: var(--ink-soft);
  }
  .reviews__head .agg-txt b { color: var(--ink); font-weight: 700; }
  .reviews__head p {
    color: var(--muted);
    font-size: 17px;
  }
  .reviews__grid {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 var(--pad-x);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .review {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px 26px 26px;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .review__stars {
    color: #d49b1c;
    font-size: 14px;
    letter-spacing: 2px;
  }
  .review__body {
    font-family: var(--serif);
    font-size: 18px;
    line-height: 1.4;
    color: var(--ink);
    flex: 1;
  }
  .review__attr {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
  }
  .review__avatar {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--burgundy-soft), var(--green-soft));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--serif);
    font-size: 16px;
    color: var(--burgundy);
    flex-shrink: 0;
  }
  .review__attr div { font-size: 13.5px; }
  .review__attr b { display: block; font-weight: 600; color: var(--ink); }
  .review__attr .src { color: var(--muted); font-size: 12px; }
  .reviews__cta {
    text-align: center;
    margin-top: 40px;
    padding: 0 var(--pad-x);
  }
  .reviews__cta a {
    font-size: 14px;
    color: var(--burgundy);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
  }
  /* --- Google reviews widget mounts -------------------------
     Hidden until a widget injects content (see reveal script at
     the bottom of the page). Keeps the designed fallback visible
     until the live Google widget is connected. */
  .reviews__embed {
    display: none;
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 var(--pad-x);
  }
  .reviews__embed.is-live { display: block; }
  .reviews.is-live .reviews__grid,
  .reviews.is-live .reviews__cta { display: none; }
  .hero__gbadge { display: none; }
  .hero__gbadge.is-live { display: block; }
  .hero__rating.is-live { display: none; }

  /* --- About / Nelo ---------------------------------------- */
  .about { background: var(--cream); }
  .about__inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 var(--pad-x);
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 64px;
    align-items: center;
  }
  .about__visual {
    aspect-ratio: 4 / 5;
    width: 100%;
    max-width: 300px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: linear-gradient(160deg, #e8efe0, #c7d6b6);
  }
  .about__visual img { width: 100%; height: 100%; object-fit: cover; }
  .about__copy .eyebrow { margin-bottom: 18px; }
  .about__copy h2 {
    font-size: clamp(36px, 4vw, 56px);
    line-height: 1.05;
    margin-bottom: 24px;
  }
  .about__copy h2 em {
    font-style: var(--em-style);
    color: var(--green-deep);
  }
  .about__copy blockquote {
    margin: 0 0 28px;
    font-family: var(--serif);
    font-style: italic;
    font-size: 24px;
    line-height: 1.35;
    color: var(--ink-soft);
    border-left: 2px solid var(--green-deep);
    padding-left: 22px;
  }
  .about__copy .bio {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 52ch;
  }
  .about__signature {
    font-family: var(--serif);
    font-style: italic;
    font-size: 26px;
    color: var(--green-deep);
    margin-bottom: 4px;
  }
  .about__sig-l {
    font-size: 13px;
    color: var(--muted);
    letter-spacing: 0.04em;
  }
  .about__credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
  }
  .about__credential {
    font-size: 12px;
    color: var(--muted);
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .about__credential svg { color: var(--green-deep); flex-shrink: 0; }

  /* --- Network (podcasts + practitioners) ------------------ */
  .network { background: var(--paper); }
  .network__grid {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 var(--pad-x);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
  }
  .network__col {
    display: flex;
    flex-direction: column;
  }
  .network__col-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 8px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line-strong);
  }
  .network__col-head h3 {
    font-family: var(--serif);
    font-size: 30px;
    line-height: 1.1;
  }
  .network__col-head h3 em { font-style: var(--em-style); color: var(--em-color); }
  .network__col-head .kicker {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--muted);
    white-space: nowrap;
  }
  .network__list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .network__item {
    display: grid;
    grid-template-columns: 68px 1fr auto;
    gap: 20px;
    align-items: center;
    padding: 22px 8px 22px 4px;
    border-bottom: 1px solid var(--line);
    transition: background 0.16s ease, padding 0.16s ease;
  }
  .network__item:last-child { border-bottom: 0; }
  .network__item:hover {
    background: var(--cream);
    padding-left: 10px;
    padding-right: 14px;
  }
  .podcast__art {
    width: 68px; height: 68px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--serif);
    color: var(--cream);
    font-size: 26px;
    font-style: italic;
    letter-spacing: -0.02em;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.06);
  }
  .podcast__art::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(155deg, rgba(255,255,255,0.18), transparent 55%);
  }
  .podcast__art--01 { background: linear-gradient(150deg, #7d2a30, #4a1518); }
  .podcast__art--02 { background: linear-gradient(150deg, var(--green), var(--green-deep)); }
  .podcast__art--03 { background: linear-gradient(150deg, #c98a4a, #8a4f1f); }
  .podcast__art--04 { background: linear-gradient(150deg, #1f1311, #3a2422); }
  .prac__avatar {
    width: 68px; height: 68px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--serif);
    font-size: 24px;
    color: var(--burgundy);
    background: linear-gradient(135deg, var(--burgundy-soft), var(--green-soft));
    flex-shrink: 0;
    box-shadow: inset 0 0 0 1px rgba(92,32,36,0.08);
  }
  .network__item b {
    display: block;
    font-family: var(--serif);
    font-size: 19px;
    line-height: 1.2;
    color: var(--ink);
    margin-bottom: 4px;
  }
  .network__item .meta {
    display: block;
    font-size: 12px;
    letter-spacing: 0.04em;
    color: var(--muted);
    margin-bottom: 8px;
    text-transform: uppercase;
    font-weight: 600;
  }
  .network__item .note {
    font-family: var(--serif);
    font-style: italic;
    font-size: 15px;
    line-height: 1.45;
    color: var(--ink-soft);
    margin: 0;
    max-width: 42ch;
  }
  .network__action {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1px solid var(--line-strong);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy);
    flex-shrink: 0;
    transition: all 0.18s ease;
    background: var(--paper);
  }
  .network__item:hover .network__action {
    background: var(--burgundy);
    color: var(--cream);
    border-color: var(--burgundy);
    transform: scale(1.05);
  }
  /* Practitioner "Coming soon" state */
  .prac__soon {
    display: inline-block;
    vertical-align: middle;
    margin-left: 8px;
    padding: 2px 9px;
    border-radius: 999px;
    background: var(--cream);
    border: 1px solid var(--line-strong);
    color: var(--burgundy);
    font-family: var(--sans, inherit);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    white-space: nowrap;
  }
  .network__action--soon {
    color: var(--muted);
    cursor: default;
    opacity: 0.7;
  }
  .network__item:hover .network__action--soon {
    background: var(--paper);
    color: var(--muted);
    border-color: var(--line-strong);
    transform: none;
  }
  /* "Coming soon" banner shown in place of practitioner cards */
  .network__soon-banner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 26px 24px;
    border: 1px dashed var(--line-strong);
    border-radius: 14px;
    background: var(--cream);
    text-align: left;
  }
  .network__soon-badge {
    display: inline-block;
    padding: 3px 11px;
    border-radius: 999px;
    background: var(--burgundy-soft);
    border: 1px solid var(--line-strong);
    color: var(--burgundy);
    font-family: var(--sans, inherit);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    white-space: nowrap;
  }
  .network__soon-banner p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
  }
  /* "More" badge + full recommendations list */
  .network__col-head-right {
    display: flex;
    align-items: baseline;
    gap: 14px;
  }
  .network__more {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--burgundy);
    background: var(--burgundy-soft);
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    padding: 6px 12px;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.16s ease, color 0.16s ease, border-color 0.16s ease;
  }
  .network__more:hover {
    background: var(--burgundy);
    color: var(--cream);
    border-color: var(--burgundy);
  }
  /* Visual click tracker shown on each recommendation card */
  .podcast__clicks {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 4px 10px;
    transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  }
  .podcast__clicks svg { width: 11px; height: 11px; flex-shrink: 0; }
  .podcast__clicks.is-active {
    color: var(--burgundy);
    background: var(--burgundy-soft);
    border-color: var(--burgundy);
  }
  .podcast__clicks.bump { transform: scale(1.14); }
  /* Full-list modal */
  .reco-modal {
    position: fixed;
    inset: 0;
    z-index: 9500;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(25,15,15,0.5);
  }
  .reco-modal[hidden] { display: none; }
  .reco-modal__box {
    background: var(--paper);
    border-radius: 16px;
    max-width: 720px;
    width: 100%;
    max-height: 86vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 30px 80px -20px rgba(0,0,0,0.5);
  }
  .reco-modal__head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 26px;
    border-bottom: 1px solid var(--line-strong);
  }
  .reco-modal__head h3 { font-family: var(--serif); font-size: 26px; line-height: 1.1; }
  .reco-modal__head h3 em { font-style: var(--em-style); color: var(--em-color); }
  .reco-modal__x {
    background: none;
    border: none;
    font-size: 26px;
    line-height: 1;
    color: var(--muted);
    cursor: pointer;
    padding: 4px;
  }
  .reco-modal__scroll { overflow: auto; padding: 4px 26px 22px; }

  .network__footnote {
    max-width: 1360px;
    margin: 56px auto 0;
    padding: 28px var(--pad-x) 0;
    border-top: 1px solid var(--line);
    font-size: 14px;
    color: var(--muted);
    text-align: center;
  }
  .network__footnote a {
    color: var(--burgundy);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
  }
  @media (max-width: 900px) {
    .network__grid { grid-template-columns: 1fr; gap: 48px; }
    .network__col-head { flex-direction: column; align-items: flex-start; gap: 6px; }
    .network__item { grid-template-columns: 56px 1fr auto; gap: 16px; }
    .podcast__art, .prac__avatar { width: 56px; height: 56px; font-size: 20px; }
  }

  /* --- Google reviews badge -------------------------------- */
  .agg__g { flex-shrink: 0; }
  a.agg { cursor: pointer; transition: border-color 0.16s ease, background 0.16s ease; }
  a.agg:hover { border-color: var(--burgundy); }
  .gmini { width: 15px; height: 15px; vertical-align: -3px; margin-right: 5px; }
  a.hero__rating-google { transition: color 0.15s ease; }
  a.hero__rating-google:hover { color: var(--burgundy); }
  .review .src::before {
    content: "";
    display: inline-block;
    width: 13px; height: 13px;
    margin-right: 5px;
    vertical-align: -2px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%234285F4' d='M23.5 12.3c0-.8-.1-1.6-.2-2.3H12v4.5h6.4a5.5 5.5 0 0 1-2.4 3.6v3h3.9c2.3-2.1 3.6-5.2 3.6-8.8z'/%3E%3Cpath fill='%2334A853' d='M12 24c3.2 0 6-1.1 8-2.9l-3.9-3c-1 .7-2.4 1.2-4.1 1.2-3.1 0-5.8-2.1-6.8-5H1.2v3.1A12 12 0 0 0 12 24z'/%3E%3Cpath fill='%23FBBC05' d='M5.2 14.3a7.2 7.2 0 0 1 0-4.6V6.6H1.2a12 12 0 0 0 0 10.8l4-3.1z'/%3E%3Cpath fill='%23EA4335' d='M12 4.8c1.8 0 3.3.6 4.6 1.8l3.4-3.4A12 12 0 0 0 1.2 6.6l4 3.1c1-2.9 3.7-5 6.8-5z'/%3E%3C/svg%3E") center/contain no-repeat;
  }

  /* --- FAQ (AEO / answer engines) --------------------------- */
  .faq { background: var(--cream); }
  .faq__inner { max-width: 900px; margin: 0 auto; padding: 0 var(--pad-x); }
  .faq__head { text-align: center; margin-bottom: 44px; }
  .faq__head h2 { font-size: clamp(34px, 4vw, 56px); line-height: 1.05; }
  .faq__head h2 em { font-style: var(--em-style); color: var(--em-color); }
  .faq__head p { color: var(--muted); font-size: 17px; margin-top: 14px; }
  .faq__item { border-top: 1px solid var(--line-strong); }
  .faq__item:last-child { border-bottom: 1px solid var(--line-strong); }
  .faq__q {
    width: 100%; text-align: left; cursor: pointer;
    display: flex; align-items: center; justify-content: space-between; gap: 24px;
    padding: 26px 4px; font-family: var(--serif); font-size: 22px; line-height: 1.25;
    color: var(--ink); list-style: none;
  }
  .faq__q::-webkit-details-marker { display: none; }
  .faq__icon { flex-shrink: 0; width: 24px; height: 24px; position: relative; transition: transform .2s ease; }
  .faq__item[open] .faq__icon { transform: rotate(45deg); }
  .faq__icon::before, .faq__icon::after { content: ""; position: absolute; background: var(--green-deep); border-radius: 2px; }
  .faq__icon::before { top: 11px; left: 2px; right: 2px; height: 2px; }
  .faq__icon::after { left: 11px; top: 2px; bottom: 2px; width: 2px; }
  .faq__a { padding: 0 4px 28px; font-size: 16px; line-height: 1.65; color: var(--muted); max-width: 72ch; }
  .faq__a a { color: var(--burgundy); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

  /* --- Veterinary prescriptions ---------------------------- */
  .vet { background: var(--paper); }
  .vet__inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 var(--pad-x);
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 60px;
    align-items: center;
  }
  .vet__copy h2 {
    font-size: clamp(34px, 3.6vw, 52px);
    line-height: 1.05;
    margin: 16px 0 18px;
  }
  .vet__copy h2 em { font-style: var(--em-style); color: var(--em-color); }
  .vet__copy > p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 22px;
    max-width: 48ch;
  }
  .vet__chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
  .vet__chips span {
    font-size: 13px;
    font-weight: 500;
    padding: 7px 13px;
    border-radius: var(--radius-pill);
    background: var(--green-pale);
    color: var(--green-deep);
  }
  .vet__cta { display: flex; gap: 12px; flex-wrap: wrap; }
  .vet__hint {
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.55;
    color: var(--muted);
    max-width: 52ch;
  }
  .vet__hint b { color: var(--green-deep); font-weight: 600; }
  .vet__card {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 38px 36px;
  }
  .vet__card h3 { font-family: var(--serif); font-size: 24px; margin-bottom: 22px; }
  .vet__steps { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 18px; }
  .vet__steps li { display: flex; gap: 16px; align-items: flex-start; font-size: 15px; color: var(--ink-soft); line-height: 1.5; }
  .vet__steps b { color: var(--ink); font-weight: 600; }
  .vet__steps .n {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--burgundy);
    color: var(--cream);
    font-family: var(--serif);
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  @media (max-width: 900px) { .vet__inner { grid-template-columns: 1fr; gap: 40px; } }

  /* --- View all services link + menu footer ---------------- */
  .services__all {
    max-width: 1360px;
    margin: 40px auto 0;
    padding: 0 var(--pad-x);
    text-align: center;
  }
  .services__all a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--burgundy);
    text-decoration: underline;
    text-underline-offset: 4px;
  }
  .services__all a .arr { transition: transform 0.16s ease; }
  .services__all a:hover .arr { transform: translateX(4px); }
  .bookmodal__menu-foot {
    padding: 10px 12px 4px;
    margin-top: 6px;
    border-top: 1px solid var(--line);
  }
  .bookmodal__viewall {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 600;
    color: var(--burgundy);
    border-radius: var(--radius);
    transition: background 0.14s ease;
  }
  .bookmodal__viewall:hover { background: var(--burgundy-soft); }

  /* --- Vaccines & Access to Care showcase ------------------ */
  .vaxcare { background: var(--cream); }
  .vaxcare__inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 var(--pad-x);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .vaxcare__card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 40px 38px 36px;
    display: flex;
    flex-direction: column;
  }
  .vaxcare__card .eyebrow { margin-bottom: 16px; }
  .vaxcare__card h3 {
    font-family: var(--serif);
    font-size: 32px;
    line-height: 1.08;
    margin-bottom: 12px;
  }
  .vaxcare__card h3 em { font-style: var(--em-style); color: var(--em-color); }
  .vaxcare__card.is-green h3 em { color: var(--green-deep); }
  .vaxcare__card > p {
    color: var(--muted);
    font-size: 15.5px;
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 46ch;
  }
  .vaxcare__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
  }
  .vaxcare__chips span {
    font-size: 13px;
    font-weight: 500;
    padding: 7px 13px;
    border-radius: var(--radius-pill);
    background: var(--burgundy-soft);
    color: var(--burgundy);
  }
  .vaxcare__card.is-green .vaxcare__chips span {
    background: var(--green-pale);
    color: var(--green-deep);
  }
  .vaxcare__foot {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
  }
  .vaxcare__foot .note {
    font-size: 13px;
    color: var(--muted);
  }
  @media (max-width: 900px) {
    .vaxcare__inner { grid-template-columns: 1fr; }
  }

  /* --- Partnerships (prescribers) -------------------------- */
  .partners {
    background: linear-gradient(165deg, #4f1a1e 0%, #3a1316 100%);
    color: var(--cream);
    position: relative;
    overflow: hidden;
  }
  .partners__leaf {
    position: absolute;
    bottom: -90px;
    left: -70px;
    width: 360px;
    opacity: 0.06;
    pointer-events: none;
    transform: rotate(20deg);
  }
  .partners__inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 var(--pad-x);
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 72px;
    align-items: center;
    position: relative;
    z-index: 2;
  }
  .partners__copy .eyebrow { color: rgba(250, 245, 236, 0.72); }
  .partners__copy .eyebrow::before { background: rgba(250, 245, 236, 0.5); }
  .partners__copy h2 {
    color: var(--cream);
    font-size: clamp(36px, 4vw, 58px);
    line-height: 1.04;
    margin: 18px 0 22px;
  }
  .partners__copy h2 em { font-style: var(--em-style); }
  .partners__copy .lede {
    color: rgba(250, 245, 236, 0.82);
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 46ch;
  }
  .partners__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 16px;
  }
  .partners__list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    font-size: 15.5px;
    line-height: 1.5;
    color: rgba(250, 245, 236, 0.88);
  }
  .partners__list .tick {
    width: 22px; height: 22px;
    border-radius: 50%;
    background: rgba(250, 245, 236, 0.12);
    color: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
  }
  .partners__list b { color: var(--cream); font-weight: 600; }

  .partners__card {
    background: var(--paper);
    color: var(--ink);
    border-radius: var(--radius-lg);
    padding: 40px 38px 34px;
    box-shadow: 0 44px 88px -44px rgba(0, 0, 0, 0.55);
  }
  .partners__card h3 {
    font-family: var(--serif);
    font-size: 30px;
    line-height: 1.1;
    margin-bottom: 8px;
  }
  .partners__card h3 em { font-style: var(--em-style); color: var(--em-color); }
  .partners__card .sub {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.55;
    margin-bottom: 26px;
  }
  .partners__form {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .partners__field {
    display: flex;
    flex-direction: column;
    gap: 7px;
  }
  .partners__field label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
  }
  .partners__field input {
    font-family: inherit;
    font-size: 15px;
    color: var(--ink);
    background: var(--cream);
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    transition: border-color 0.16s ease, background 0.16s ease;
    outline: none;
  }
  .partners__field input::placeholder { color: var(--muted); opacity: 0.7; }
  .partners__field input:focus {
    border-color: var(--burgundy);
    background: var(--white);
  }
  .partners__form .btn { margin-top: 6px; justify-content: center; }
  .partners__fineprint {
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    font-size: 14px;
    color: var(--muted);
    text-align: center;
  }
  .partners__fineprint a {
    color: var(--burgundy);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
  }
  @media (max-width: 900px) {
    .partners__inner { grid-template-columns: 1fr; gap: 44px; }
  }

  /* --- Visit ----------------------------------------------- */
  .visit { background: var(--paper); }
  .visit__inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 var(--pad-x);
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 72px;
    align-items: stretch;
  }
  .visit__copy h2 {
    font-size: clamp(36px, 4vw, 56px);
    line-height: 1.05;
    margin-bottom: 32px;
  }
  .visit__copy h2 em { font-style: var(--em-style); color: var(--em-color); }
  .visit__rows { margin-bottom: 36px; }
  .visit__row {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 20px;
    padding: 16px 0;
    border-top: 1px solid var(--line);
    align-items: baseline;
  }
  .visit__row:last-child { border-bottom: 1px solid var(--line); }
  .visit__row dt {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
  }
  .visit__row dd { margin: 0; font-size: 16px; color: var(--ink); }
  .visit__row dd a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: var(--line-strong);
    transition: text-decoration-color 0.15s ease;
  }
  .visit__row dd a:hover { text-decoration-color: var(--burgundy); }
  .visit__row dd .sub {
    display: block;
    font-size: 14px;
    color: var(--muted);
    margin-top: 2px;
  }
  .visit__row--fax {
    background: var(--burgundy-tint, rgba(122, 30, 45, 0.06));
    border-radius: var(--radius-sm, 10px);
    padding-left: 16px;
    padding-right: 16px;
    margin: 4px 0;
    border-top: 1px solid transparent;
  }
  .visit__row--fax + .visit__row { border-top: 1px solid var(--line); }
  .visit__row--fax dt { color: var(--burgundy); }
  .visit__row--fax dd { font-size: 24px; font-weight: 700; letter-spacing: 0.01em; }
  .visit__row--fax dd a { text-decoration-color: var(--burgundy); }
  .visit__row--fax dd .sub { font-size: 14px; font-weight: 400; }
  .visit__map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: linear-gradient(135deg, #d6e1c9, #b8c8a6);
    min-height: 460px;
    position: relative;
    box-shadow: 0 20px 40px -24px rgba(0, 0, 0, 0.18);
  }
  .visit__map-card {
    position: absolute;
    left: 24px; bottom: 24px; right: 24px;
    background: var(--paper);
    border-radius: var(--radius);
    padding: 20px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    box-shadow: 0 16px 32px -16px rgba(0, 0, 0, 0.25);
  }
  .visit__map-card .addr {
    font-family: var(--serif);
    font-size: 20px;
    line-height: 1.2;
    margin-bottom: 4px;
  }
  .visit__map-card .city { font-size: 13px; color: var(--muted); }

  /* --- Insights / Blog teaser ------------------------------ */
  .insights { background: var(--cream); }
  .insights__grid {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 var(--pad-x);
    display: grid;
    /* Always three smaller cards in one row (the 3 most recent posts). */
    grid-template-columns: repeat(3, 1fr);
    justify-content: center;
    gap: 22px;
  }
  .insight {
    background: var(--paper);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  .insight:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 48px -24px rgba(60, 30, 30, 0.18);
  }
  .insight__thumb {
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, var(--burgundy-soft), var(--green-soft));
    position: relative;
    overflow: hidden;
  }
  .insight__thumb img { width: 100%; height: 100%; object-fit: cover; }
  .insight__cat {
    position: absolute;
    top: 16px; left: 16px;
    background: rgba(253, 251, 246, 0.95);
    padding: 6px 12px;
    border-radius: var(--radius-pill);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--burgundy);
  }
  .insight__body {
    padding: 20px 22px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
  }
  .insight__meta {
    font-size: 12px;
    color: var(--muted);
    letter-spacing: 0.04em;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .insight__meta::after {
    /* spacer */
    content: "";
  }
  .insight h3 {
    font-family: var(--serif);
    font-size: 20px;
    line-height: 1.2;
  }
  .insight p {
    font-size: 13.5px;
    line-height: 1.5;
    color: var(--muted);
    flex: 1;
  }
  .insight__link {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--burgundy);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.18s ease;
  }
  .insight:hover .insight__link { gap: 10px; }
  .insights__all {
    max-width: 1360px;
    margin: 32px auto 0;
    padding: 0 var(--pad-x);
    display: flex;
    justify-content: center;
  }
  .insights__all-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--burgundy);
    border: 1px solid var(--line);
    border-radius: var(--radius-pill);
    padding: 12px 22px;
    background: var(--paper);
    transition: gap 0.18s ease, box-shadow 0.2s ease, transform 0.2s ease;
  }
  .insights__all-link:hover {
    gap: 12px;
    transform: translateY(-2px);
    box-shadow: 0 18px 36px -20px rgba(60, 30, 30, 0.22);
  }

  /* --- CTA / Newsletter ------------------------------------ */
  .cta {
    background: var(--green-deep);
    color: var(--cream);
    padding: 96px var(--pad-x);
    position: relative;
    overflow: hidden;
  }
  .cta__inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
  }
  .cta h2 {
    color: var(--cream);
    font-size: clamp(40px, 5vw, 68px);
    line-height: 1.05;
    margin-bottom: 20px;
  }
  .cta h2 em { font-style: var(--em-style); }
  .cta p {
    color: rgba(250, 245, 236, 0.78);
    font-size: 18px;
    max-width: 48ch;
    margin: 0 auto 36px;
  }
  .cta__form {
    display: flex;
    gap: 10px;
    max-width: 480px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.08);
    padding: 6px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(250, 245, 236, 0.18);
  }
  .cta__form input {
    flex: 1;
    background: transparent;
    border: 0;
    padding: 12px 18px;
    color: var(--cream);
    font-family: inherit;
    font-size: 15px;
    outline: none;
  }
  .cta__form input::placeholder { color: rgba(250, 245, 236, 0.55); }
  .cta__form button {
    background: var(--cream);
    color: var(--green-deep);
    padding: 12px 24px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 15px;
    font-family: inherit;
    transition: background 0.18s ease;
  }
  .cta__form button:hover { background: var(--white); }
  .cta__leaf {
    position: absolute;
    opacity: 0.08;
    pointer-events: none;
  }
  .cta__leaf--l { top: -80px; left: -60px; width: 360px; transform: rotate(-30deg); }
  .cta__leaf--r { bottom: -80px; right: -60px; width: 360px; transform: rotate(150deg); }

  /* --- Sticky mobile CTA bar ------------------------------- */
  .mobile-cta {
    display: none;
    position: fixed;
    bottom: 16px;
    left: 16px;
    right: 16px;
    z-index: 60;
    background: var(--ink);
    border-radius: var(--radius-pill);
    padding: 8px 8px 8px 22px;
    box-shadow: 0 20px 40px -16px rgba(0, 0, 0, 0.4);
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--cream);
  }
  .mobile-cta__txt {
    font-family: var(--serif);
    font-size: 16px;
    line-height: 1.1;
    flex: 1;
  }
  .mobile-cta__txt span {
    display: block;
    font-family: var(--sans);
    font-size: 11px;
    color: rgba(250, 245, 236, 0.6);
    letter-spacing: 0.06em;
    margin-top: 2px;
  }
  .mobile-cta__buttons {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
  }
  .mobile-cta__buttons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
  }
  .mobile-cta__buttons a.call {
    background: rgba(250, 245, 236, 0.14);
    color: var(--cream);
  }
  .mobile-cta__buttons a.book {
    background: var(--green);
    color: var(--cream);
    padding: 0 18px;
    width: auto;
    font-size: 13px;
    font-weight: 600;
    height: 42px;
  }

  /* --- Responsive ------------------------------------------- */
  @media (max-width: 1180px) {
    .why__grid { grid-template-columns: repeat(2, 1fr); }
    .reviews__grid { grid-template-columns: repeat(2, 1fr); }
    .hero__review { display: none; }
  }
  @media (max-width: 1080px) {
    .services__grid { grid-template-columns: repeat(2, 1fr); }
    .insights__grid { grid-template-columns: 1fr; max-width: 720px; }
  }
  @media (max-width: 900px) {
    .hero__inner, .feature__inner, .about__inner, .visit__inner {
      grid-template-columns: 1fr;
      gap: 48px;
    }
    .about__visual { margin: 0 auto; }
    .why__head { grid-template-columns: 1fr; }
    .quick__grid { grid-template-columns: 1fr; }
    .hero__visual { aspect-ratio: 5 / 4; }
    .feature__list { grid-template-columns: 1fr; }
    .sect-head { flex-direction: column; align-items: flex-start; }
    .sect-head__right { text-align: left; }
    .mobile-cta { display: flex; }
    body { padding-bottom: 80px; }
  }
  @media (max-width: 620px) {
    .services__grid { grid-template-columns: 1fr; }
    .reviews__grid { grid-template-columns: 1fr; }
    .cta__form { flex-direction: column; border-radius: var(--radius); }
    .cta__form button { width: 100%; }
  }  /* --- Booking modal (MedEssist / BookMyPharmacy) ---------- */
  .bookmodal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: none;
  }
  .bookmodal.is-open { display: block; }
  .bookmodal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(31, 20, 20, 0.55);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    animation: bmFade 0.2s ease;
  }
  @keyframes bmFade { from { opacity: 0; } to { opacity: 1; } }
  @keyframes bmRise {
    from { opacity: 0; transform: translateX(-50%) translateY(14px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
  }
  .bookmodal__panel {
    position: absolute;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: min(660px, calc(100% - 28px));
    height: calc(100% - 48px);
    background: var(--paper);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 40px 90px -30px rgba(31, 20, 20, 0.5);
    animation: bmRise 0.26s cubic-bezier(0.2, 0.7, 0.2, 1);
  }
  .bookmodal__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 16px 14px 20px;
    border-bottom: 1px solid var(--line);
    background: var(--cream);
    flex-shrink: 0;
  }
  .bookmodal__title {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
  }
  .bookmodal__title .leaf {
    width: 26px; height: 26px;
    flex-shrink: 0;
    color: var(--green);
  }
  .bookmodal__title b {
    font-family: var(--serif);
    font-size: 20px;
    line-height: 1.05;
    font-weight: 400;
  }
  .bookmodal__title small {
    display: block;
    font-family: var(--sans);
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 1px;
  }
  .bookmodal__actions {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
  }
  .bookmodal__newtab {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--burgundy);
    padding: 8px 12px;
    border-radius: var(--radius-pill);
    transition: background 0.16s ease;
    white-space: nowrap;
  }
  .bookmodal__newtab:hover { background: var(--burgundy-soft); }
  .bookmodal__close {
    width: 38px; height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    background: transparent;
    border: 1px solid var(--line-strong);
    transition: background 0.16s ease, color 0.16s ease;
  }
  .bookmodal__close:hover { background: var(--ink); color: var(--cream); }
  .bookmodal__back {
    display: none;
    width: 38px; height: 38px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    background: transparent;
    border: 1px solid var(--line-strong);
    margin-right: 2px;
    flex-shrink: 0;
    transition: background 0.16s ease, color 0.16s ease;
  }
  .bookmodal__back:hover { background: var(--ink); color: var(--cream); }
  .bookmodal.is-service .bookmodal__back { display: flex; }
  .bookmodal.is-service .bookmodal__title .leaf { display: none; }

  .bookmodal__menu {
    flex: 1;
    overflow-y: auto;
    padding: 10px 14px 26px;
    background: var(--paper);
    -webkit-overflow-scrolling: touch;
  }
  .bookmodal.is-service .bookmodal__menu { display: none; }
  .bookmodal__group { padding-top: 6px; }
  .bookmodal__group h5 {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    padding: 14px 12px 4px;
    margin: 0;
  }
  .bookmodal__svc {
    width: 100%;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 13px 12px;
    border-radius: var(--radius);
    transition: background 0.14s ease;
  }
  .bookmodal__svc:hover { background: var(--cream); }
  .bookmodal__svc-ic {
    width: 42px; height: 42px;
    border-radius: 11px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--burgundy-soft);
    color: var(--burgundy);
  }
  .bookmodal__svc.is-core .bookmodal__svc-ic {
    background: var(--green-pale);
    color: var(--green-deep);
  }
  .bookmodal__svc-tx { flex: 1; min-width: 0; }
  .bookmodal__svc-tx b {
    display: block;
    font-family: var(--serif);
    font-size: 18px;
    line-height: 1.15;
    color: var(--ink);
  }
  .bookmodal__svc-tx span {
    font-size: 13px;
    color: var(--muted);
  }
  .bookmodal__svc .chev {
    color: var(--muted);
    flex-shrink: 0;
    transition: transform 0.16s ease, color 0.16s ease;
  }
  .bookmodal__svc:hover .chev { transform: translateX(3px); color: var(--burgundy); }

  .bookmodal__framewrap {
    position: relative;
    flex: 1;
    background: var(--cream);
    min-height: 0;
    display: none;
  }
  .bookmodal.is-service .bookmodal__framewrap { display: block; }
  .bookmodal__frame {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
  }
  .bookmodal__loading {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: var(--muted);
    font-size: 14px;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  .bookmodal__loading.is-hidden { opacity: 0; }
  .bookmodal__spinner {
    width: 34px; height: 34px;
    border-radius: 50%;
    border: 3px solid var(--burgundy-soft);
    border-top-color: var(--burgundy);
    animation: bmSpin 0.8s linear infinite;
  }
  @keyframes bmSpin { to { transform: rotate(360deg); } }
  @media (max-width: 560px) {
    .bookmodal__panel {
      top: 0; height: 100%;
      width: 100%;
      border-radius: 0;
    }
    .bookmodal__newtab span { display: none; }
  }


/* ---------- Per-level typography (theme-driven) ---------- */
h1 { font-family: var(--tl-h1-family); font-weight: var(--tl-h1-weight); letter-spacing: var(--tl-h1-tracking); text-transform: var(--tl-h1-transform); }
h2 { font-family: var(--tl-h2-family); font-weight: var(--tl-h2-weight); letter-spacing: var(--tl-h2-tracking); text-transform: var(--tl-h2-transform); }
h3 { font-family: var(--tl-h3-family); font-weight: var(--tl-h3-weight); letter-spacing: var(--tl-h3-tracking); text-transform: var(--tl-h3-transform); }
body { font-family: var(--tl-body-family); font-weight: var(--tl-body-weight); letter-spacing: var(--tl-body-tracking); }
.eyebrow { font-family: var(--tl-eyebrow-family); font-weight: var(--tl-eyebrow-weight); letter-spacing: var(--tl-eyebrow-tracking); text-transform: var(--tl-eyebrow-transform); }
h1 em, h2 em, h3 em { font-style: var(--em-style); color: var(--em-color); }
