/* ==========================================================================
   Book Me Memories — Brand System v1.0
   Single source of truth for every non-React surface (static pages, route SEO
   pages, package pages, itinerary pages).

   Mirrors dashboard/website-react/tailwind.config.js + src/index.css so the
   SPA and the server-rendered pages are visually identical.

   DO NOT fork this file. Change tokens here and every page follows.
   ========================================================================== */

:root {
  /* ── Brand Guidelines v1.0 ─────────────────────────────────────────── */
  --bmm-blue-50:  #EAF2FB;
  --bmm-blue-100: #D2E4F6;
  --bmm-blue-200: #A6C8EC;
  --bmm-blue-300: #6FA5DF;
  --bmm-blue-400: #3B7FCE;
  --bmm-blue-500: #064FA0;   /* Ocean Blue — primary */
  --bmm-blue-600: #05468F;
  --bmm-blue-700: #043B78;
  --bmm-blue-800: #032F60;
  --bmm-blue-900: #022346;

  --bmm-passport: #B91005;   /* Passport Red   */
  --bmm-sunshine: #FDB713;   /* Sunshine Gold  */
  --bmm-horizon:  #DC5726;   /* Horizon Orange */
  --bmm-aqua:     #C7E8E5;   /* Cloud Aqua     */

  /* ── Neutrals ──────────────────────────────────────────────────────── */
  --bmm-ink:      #0f172a;
  --bmm-body:     #334155;
  --bmm-muted:    #64748b;
  --bmm-faint:    #94a3b8;
  --bmm-line:     #e2e8f0;
  --bmm-surface:  #ffffff;

  /* ── Type ──────────────────────────────────────────────────────────── */
  --bmm-font: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* ── Radii (matches tailwind 2xl/3xl/4xl) ──────────────────────────── */
  --bmm-r-sm: 10px;
  --bmm-r:    16px;
  --bmm-r-lg: 20px;
  --bmm-r-xl: 24px;

  /* ── Elevation ─────────────────────────────────────────────────────── */
  --bmm-sh-card:  0 2px 12px rgba(6,79,160,.07), 0 1px 3px rgba(0,0,0,.04);
  --bmm-sh-hover: 0 12px 40px rgba(6,79,160,.14), 0 3px 10px rgba(0,0,0,.06);
  --bmm-sh-btn:   0 4px 14px rgba(6,79,160,.32), inset 0 1px 0 rgba(255,255,255,.12);

  /* ── Gradients ─────────────────────────────────────────────────────── */
  --bmm-g-hero: linear-gradient(135deg, #043B78 0%, #064FA0 45%, #0A6BC4 100%);
  --bmm-g-btn:  linear-gradient(135deg, #064FA0 0%, #043B78 100%);
  --bmm-g-gold: linear-gradient(135deg, #DC5726 0%, #FDB713 100%);

  /* ── Layering scale ────────────────────────────────────────────────── */
  --bmm-z-nav: 40;
  --bmm-z-modal: 100;
}

/* ── Reset / base ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body.bmm {
  margin: 0;
  font-family: var(--bmm-font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--bmm-body);
  -webkit-font-smoothing: antialiased;
  background:
    radial-gradient(at 20% 10%, rgba(6,79,160,.07) 0, transparent 50%),
    radial-gradient(at 82% 0%,  rgba(14,165,233,.07) 0, transparent 50%),
    radial-gradient(at 0%  80%, rgba(253,183,19,.05) 0, transparent 50%),
    linear-gradient(180deg, #f8faff 0%, #f1f5fb 100%);
  background-attachment: fixed;
  min-height: 100vh;
}

/* NOTE ON SPECIFICITY — do not re-qualify these with `body`.
   `body.bmm h1` scores (0,1,2) and silently beats every component rule like
   `.bmm-hero h1` (0,1,1), which is how the hero headline ended up dark-on-dark
   and un-centred. Base rules stay at (0,1,1) so later component rules win on
   source order. Component rules on anchors are written `a.bmm-btn` for the
   same reason — a bare `.bmm-btn` (0,1,0) loses to `.bmm a`. */
.bmm h1, .bmm h2, .bmm h3, .bmm h4 {
  font-family: var(--bmm-font);
  color: var(--bmm-ink);
  letter-spacing: -.02em;
  line-height: 1.2;
  margin: 0;
}
.bmm p { margin: 0 0 12px; }
.bmm a { color: var(--bmm-blue-500); text-decoration: none; }
.bmm a:hover { color: var(--bmm-blue-700); }
.bmm img { max-width: 100%; }

/* Accessible focus ring — never remove */
.bmm :focus-visible {
  outline: 3px solid var(--bmm-blue-400);
  outline-offset: 2px;
  border-radius: 6px;
}

/* Skip link for keyboard users */
.bmm-skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--bmm-blue-500); color: #fff;
  padding: 12px 20px; border-radius: 0 0 var(--bmm-r-sm) 0; font-weight: 600;
}
.bmm-skip:focus { left: 0; color: #fff; }

/* ══════════════════════════════════════════════════════════════════════
   HEADER — identical on every surface
   ══════════════════════════════════════════════════════════════════════ */
.bmm-header {
  position: sticky; top: 0; z-index: var(--bmm-z-nav);
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid rgba(203,213,225,.5);
  box-shadow: 0 1px 12px rgba(6,79,160,.05);
}
.bmm-header-in {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 10px;
  padding: 10px 20px; min-height: 60px;
}
.bmm-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.bmm-logo img { height: 38px; width: auto; display: block; }
.bmm-logo span {
  font-weight: 800; font-size: 16px; color: var(--bmm-blue-500);
  letter-spacing: -.02em; white-space: nowrap;
}
/* min-width:0 is what lets the nav — not the sign-in button — absorb the
   squeeze. Without it the nav's min-content width wins and the browser
   compresses the button label instead, which rendered "Sign in" as "S…". */
.bmm-nav {
  display: flex; align-items: center; gap: 2px; margin-left: 14px;
  flex: 1 1 auto; min-width: 0; overflow-x: auto;
  scrollbar-width: none;
}
.bmm-nav::-webkit-scrollbar { display: none; }
.bmm-nav a {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 13px; border-radius: var(--bmm-r-sm);
  font-size: 14px; font-weight: 600; color: var(--bmm-muted);
  transition: background .18s ease, color .18s ease;
  min-height: 44px;
}
.bmm-nav a:hover { background: rgba(6,79,160,.07); color: var(--bmm-blue-500); }
.bmm-nav a[aria-current="page"] {
  background: rgba(6,79,160,.10); color: var(--bmm-blue-500); font-weight: 700;
}
.bmm-nav svg { width: 17px; height: 17px; flex-shrink: 0; }
.bmm-header-cta { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
/* The account control carries a name once signed in. It must never wrap to two
   lines, and never be the thing that gets compressed — the nav scrolls instead. */
.bmm-header-cta .bmm-btn { white-space: nowrap; flex-shrink: 0; }
.bmm-header-cta .bmm-btn span {
  flex-shrink: 0; max-width: 12ch;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}

/* Mobile: nav collapses into a horizontally scrollable rail below the logo */
@media (max-width: 900px) {
  .bmm-header-in { flex-wrap: wrap; padding: 10px 14px; gap: 8px; }
  /* flex-basis must be 100%, not width — a flex-basis of 0 (from `flex: 1`)
     beats `width` and the nav never wraps onto its own line. */
  .bmm-nav {
    order: 3; flex: 1 0 100%; margin-left: 0;
    -webkit-overflow-scrolling: touch; padding-bottom: 2px;
  }
  .bmm-nav a { white-space: nowrap; padding: 8px 11px; font-size: 13px; }
  .bmm-header-cta { margin-left: auto; order: 2; }
  .bmm-logo { order: 1; }
  .bmm-logo span { display: none; }
}

/* ══════════════════════════════════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════════════════════════════════ */
a.bmm-btn, .bmm-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--bmm-font); font-weight: 700; font-size: 15px;
  padding: 13px 26px; border-radius: 14px; border: none; cursor: pointer;
  min-height: 44px; text-align: center;
  background: var(--bmm-g-btn); color: #fff;
  box-shadow: var(--bmm-sh-btn);
  transition: transform .2s cubic-bezier(.16,1,.3,1), box-shadow .2s ease, background .2s ease;
}
a.bmm-btn:hover, .bmm-btn:hover {
  color: #fff; transform: translateY(-1px);
  background: linear-gradient(135deg, #0A6BC4 0%, #064FA0 100%);
  box-shadow: 0 8px 24px rgba(6,79,160,.42);
}
.bmm-btn:active { transform: translateY(0) scale(.98); }
/* Icons inside buttons had no intrinsic size and rendered at ~26px, which
   pushed the WhatsApp CTA onto two lines and made it taller than its sibling. */
.bmm-btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.bmm-btn-sm svg { width: 16px; height: 16px; }

a.bmm-btn-gold, .bmm-btn-gold { background: var(--bmm-g-gold); box-shadow: 0 4px 14px rgba(220,87,38,.32); color: #fff; }
a.bmm-btn-gold:hover, .bmm-btn-gold:hover { background: linear-gradient(135deg,#FDB713 0%,#DC5726 100%); box-shadow: 0 8px 24px rgba(220,87,38,.42); color: #fff; }

a.bmm-btn-ghost, .bmm-btn-ghost {
  background: rgba(255,255,255,.9); color: var(--bmm-blue-500);
  border: 1.5px solid rgba(203,213,225,.85); box-shadow: none;
}
a.bmm-btn-ghost:hover, .bmm-btn-ghost:hover {
  background: #fff; color: var(--bmm-blue-700);
  border-color: var(--bmm-blue-500); box-shadow: 0 2px 8px rgba(6,79,160,.12);
}

.bmm-btn-sm { padding: 9px 16px; font-size: 13.5px; border-radius: 11px; }

/* On dark backgrounds (hero / CTA band) */
.bmm-on-dark .bmm-btn-ghost {
  background: rgba(255,255,255,.14); color: #fff;
  border-color: rgba(255,255,255,.42); backdrop-filter: blur(8px);
}
.bmm-on-dark .bmm-btn-ghost:hover { background: rgba(255,255,255,.24); color: #fff; border-color: #fff; }

/* ══════════════════════════════════════════════════════════════════════
   LAYOUT
   ══════════════════════════════════════════════════════════════════════ */
.bmm-wrap { max-width: 1060px; margin: 0 auto; padding: 0 20px; }
.bmm-wrap-narrow { max-width: 820px; margin: 0 auto; padding: 0 20px; }
.bmm-section { margin: 0 0 44px; }
.bmm-section > h2 {
  font-size: clamp(20px, 3vw, 25px); font-weight: 800; color: var(--bmm-blue-700);
  padding-left: 14px; border-left: 4px solid var(--bmm-sunshine);
  margin-bottom: 16px;
}
.bmm-section > h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.bmm-lede { font-size: 17px; color: var(--bmm-body); max-width: 68ch; }

/* ── Hero ─────────────────────────────────────────────────────────────── */
.bmm-hero {
  background: var(--bmm-g-hero); color: #fff;
  padding: clamp(44px, 7vw, 72px) 20px clamp(40px, 6vw, 60px);
  text-align: center; position: relative; overflow: hidden;
}
.bmm-hero::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(at 15% 5%,  rgba(253,183,19,.16) 0, transparent 45%),
    radial-gradient(at 88% 92%, rgba(199,232,229,.14) 0, transparent 45%);
}
.bmm-hero > * { position: relative; z-index: 1; }
.bmm-hero h1 {
  color: #fff; font-size: clamp(26px, 4.6vw, 42px); font-weight: 800;
  margin: 0 auto 14px; max-width: 26ch; text-wrap: balance;
}
.bmm-hero .bmm-sub {
  font-size: clamp(15px, 2vw, 18px); color: rgba(255,255,255,.86);
  max-width: 58ch; margin: 0 auto 22px; line-height: 1.65;
}
.bmm-hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Breadcrumbs */
.bmm-crumbs {
  font-size: 13px; color: rgba(255,255,255,.72); margin-bottom: 14px;
  /* Content-page titles can be very long — keep the trail to one tidy line. */
  max-width: 90%; margin-inline: auto;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.bmm-crumbs a { color: rgba(255,255,255,.86); text-decoration: underline; text-underline-offset: 2px; }
.bmm-crumbs a:hover { color: #fff; }
.bmm-crumbs span[aria-current] { color: #fff; font-weight: 600; }

/* Fact pills under the hero headline */
.bmm-facts { display: flex; justify-content: center; gap: 9px; flex-wrap: wrap; margin: 18px 0 24px; }
.bmm-facts span {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px; padding: 7px 15px; font-size: 13.5px; font-weight: 600; color: #fff;
}
.bmm-facts svg { width: 15px; height: 15px; }

/* ── Cards ────────────────────────────────────────────────────────────── */
.bmm-card {
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: var(--bmm-r); padding: 24px;
  box-shadow: var(--bmm-sh-card);
}
.bmm-card h2, .bmm-card h3 { color: var(--bmm-blue-700); margin-bottom: 12px; }
.bmm-card + .bmm-card { margin-top: 20px; }
.bmm-card ul, .bmm-card ol { padding-left: 20px; margin: 0 0 12px; }
.bmm-card li { margin-bottom: 8px; line-height: 1.75; }

/* Column counts are chosen against the 1060px content column so sets don't end
   in a lonely orphan card: 5 or 6 tiles read as 3+2 / 3+3 rather than 4+1 / 4+2.
   Use -4 for sets of exactly four, -2 for text-heavy pairs. */
/* min() guards the track floor — a bare minmax(430px,…) forces a 430px column
   inside a 390px phone and scrolls the whole page sideways. */
.bmm-grid   { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(min(290px, 100%), 1fr)); }
.bmm-grid-4 { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(min(215px, 100%), 1fr)); }
.bmm-grid-2 { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(min(430px, 100%), 1fr)); }

/* Feature tile */
.bmm-tile {
  background: rgba(255,255,255,.86); border: 1px solid rgba(255,255,255,.7);
  border-radius: var(--bmm-r); padding: 22px 18px; text-align: center;
  box-shadow: var(--bmm-sh-card);
  transition: transform .25s cubic-bezier(.16,1,.3,1), box-shadow .25s ease;
}
.bmm-tile:hover { transform: translateY(-2px); box-shadow: var(--bmm-sh-hover); }
.bmm-tile .bmm-ico {
  width: 42px; height: 42px; margin: 0 auto 12px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bmm-blue-50); color: var(--bmm-blue-500);
}
.bmm-tile .bmm-ico svg { width: 22px; height: 22px; }
.bmm-tile h3 { font-size: 15px; font-weight: 700; color: var(--bmm-ink); margin-bottom: 5px; }
.bmm-tile p { font-size: 13.5px; color: var(--bmm-muted); margin: 0; }

/* Tags / chips */
.bmm-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.bmm-tag {
  background: var(--bmm-blue-50); border: 1px solid var(--bmm-blue-100);
  border-radius: 999px; padding: 6px 14px;
  font-size: 13px; font-weight: 600; color: var(--bmm-blue-600);
}

/* ══════════════════════════════════════════════════════════════════════
   INTERNAL LINK RAILS — every page routes visitors into the app
   ══════════════════════════════════════════════════════════════════════ */
.bmm-links { display: flex; flex-wrap: wrap; gap: 10px; }
a.bmm-link-tag, .bmm-link-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.9); border: 1.5px solid var(--bmm-line);
  border-radius: 11px; padding: 10px 15px; min-height: 44px;
  font-size: 13.5px; font-weight: 600; color: var(--bmm-blue-600);
  transition: all .18s ease;
}
a.bmm-link-tag:hover, .bmm-link-tag:hover {
  background: var(--bmm-blue-500); color: #fff;
  border-color: var(--bmm-blue-500); box-shadow: 0 4px 14px rgba(6,79,160,.24);
}

/* "Explore Book Me Memories" — the app-surface hub, present on every page */
.bmm-hub { display: grid; gap: 14px; grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr)); }
a.bmm-hub-card, .bmm-hub-card {
  display: flex; gap: 13px; align-items: flex-start;
  background: rgba(255,255,255,.88); border: 1px solid rgba(255,255,255,.7);
  border-left: 3px solid var(--bmm-blue-500);
  border-radius: var(--bmm-r); padding: 18px;
  box-shadow: var(--bmm-sh-card);
  transition: transform .25s cubic-bezier(.16,1,.3,1), box-shadow .25s ease;
}
.bmm-hub-card:hover { transform: translateY(-2px); box-shadow: var(--bmm-sh-hover); color: inherit; }
.bmm-hub-card .bmm-ico {
  width: 38px; height: 38px; border-radius: 11px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--bmm-blue-50); color: var(--bmm-blue-500);
}
.bmm-hub-card .bmm-ico svg { width: 20px; height: 20px; }
.bmm-hub-card strong { display: block; font-size: 15px; color: var(--bmm-ink); font-weight: 700; margin-bottom: 3px; }
.bmm-hub-card em { font-style: normal; font-size: 13px; color: var(--bmm-muted); line-height: 1.55; }
/* Accent rotation so the hub reads as a set, not a list */
.bmm-hub-card:nth-child(2) { border-left-color: var(--bmm-sunshine); }
.bmm-hub-card:nth-child(2) .bmm-ico { background: rgba(253,183,19,.14); color: #B07800; }
.bmm-hub-card:nth-child(3) { border-left-color: var(--bmm-horizon); }
.bmm-hub-card:nth-child(3) .bmm-ico { background: rgba(220,87,38,.12); color: var(--bmm-horizon); }
.bmm-hub-card:nth-child(4) { border-left-color: #0d9488; }
.bmm-hub-card:nth-child(4) .bmm-ico { background: rgba(199,232,229,.55); color: #0d7a70; }
.bmm-hub-card:nth-child(5) { border-left-color: var(--bmm-passport); }
.bmm-hub-card:nth-child(5) .bmm-ico { background: rgba(185,16,5,.09); color: var(--bmm-passport); }

/* ── Conversion band ──────────────────────────────────────────────────── */
.bmm-cta {
  background: var(--bmm-g-hero); color: #fff;
  border-radius: var(--bmm-r-lg); padding: clamp(28px, 5vw, 40px) 24px;
  text-align: center; margin: 40px 0; position: relative; overflow: hidden;
}
.bmm-cta::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(at 12% 0%, rgba(253,183,19,.18) 0, transparent 50%);
}
.bmm-cta > * { position: relative; z-index: 1; }
.bmm-cta h2 { color: #fff; font-size: clamp(20px, 3.4vw, 26px); font-weight: 800; margin-bottom: 8px; }
.bmm-cta p { color: rgba(255,255,255,.85); margin: 0 auto 20px; max-width: 52ch; }
.bmm-cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ══════════════════════════════════════════════════════════════════════
   FOOTER — identical on every surface, full internal link map
   ══════════════════════════════════════════════════════════════════════ */
.bmm-footer {
  background: linear-gradient(180deg, #0f172a 0%, #0a0f1e 100%);
  color: #94a3b8; margin-top: 56px; padding: 44px 20px 26px; font-size: 14px;
}
.bmm-footer-in {
  max-width: 1100px; margin: 0 auto;
  display: grid; gap: 30px;
  grid-template-columns: 1.5fr repeat(3, 1fr);
}
@media (max-width: 860px) { .bmm-footer-in { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .bmm-footer-in { grid-template-columns: 1fr; } }

.bmm-footer h4 {
  color: #fff; font-size: 12px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; margin-bottom: 14px;
}
.bmm-footer ul { list-style: none; margin: 0; padding: 0; }
.bmm-footer li { margin-bottom: 9px; }
.bmm-footer a { color: #94a3b8; font-size: 14px; }
.bmm-footer a:hover { color: #fff; }
/* The logo is a full-colour mark. brightness(0) invert(1) flattened it into a
   white blob, so it sits on a light chip instead and keeps its own colours. */
.bmm-footer-brand img {
  height: 40px; width: auto; display: block; margin-bottom: 14px;
  background: #fff; padding: 7px 12px; border-radius: var(--bmm-r-sm);
  box-sizing: content-box;
}
.bmm-footer-brand p { font-size: 13.5px; color: #94a3b8; line-height: 1.7; max-width: 34ch; }
.bmm-footer-legal {
  max-width: 1100px; margin: 30px auto 0; padding-top: 20px;
  border-top: 1px solid rgba(148,163,184,.18);
  font-size: 12.5px; color: #64748b; line-height: 1.8; text-align: center;
}
.bmm-footer-social { display: flex; gap: 10px; margin-top: 14px; }
.bmm-footer-social a {
  width: 38px; height: 38px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.07); color: #cbd5e1;
}
.bmm-footer-social a:hover { background: var(--bmm-blue-500); color: #fff; }
.bmm-footer-social svg { width: 18px; height: 18px; }

/* ── Floating WhatsApp — consistent across all surfaces ───────────────── */
a.bmm-wa, .bmm-wa {
  position: fixed; right: 18px; bottom: 18px; z-index: var(--bmm-z-nav);
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: #25D366; color: #fff;
  box-shadow: 0 8px 26px rgba(37,211,102,.42);
  transition: transform .2s cubic-bezier(.16,1,.3,1);
}
.bmm-wa:hover { transform: scale(1.06); color: #fff; }
.bmm-wa svg { width: 29px; height: 29px; }
@media (max-width: 520px) { .bmm-wa { right: 14px; bottom: 14px; width: 52px; height: 52px; } }

/* ── Prose (legal pages) ──────────────────────────────────────────────── */
.bmm-prose { max-width: 74ch; }
.bmm-prose h2 { font-size: 21px; font-weight: 700; color: var(--bmm-blue-700); margin: 32px 0 12px; }
.bmm-prose h3 { font-size: 17px; font-weight: 700; color: var(--bmm-ink); margin: 22px 0 8px; }
.bmm-prose p, .bmm-prose li { color: var(--bmm-body); line-height: 1.8; }
.bmm-prose ul, .bmm-prose ol { padding-left: 22px; margin-bottom: 14px; }
.bmm-prose li { margin-bottom: 7px; }
.bmm-prose table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 14px; }
.bmm-prose th, .bmm-prose td { border: 1px solid var(--bmm-line); padding: 10px 13px; text-align: left; }
.bmm-prose th { background: var(--bmm-blue-50); color: var(--bmm-blue-700); font-weight: 700; }

/* Wide content must scroll inside itself, never the page */
.bmm-scroll-x { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* ── Motion preferences ───────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}
