/* ============================================================
   Orbis Care — Design System
   Brand: Orbis Purple #A55FC1 / Orbis Blue #4C96D7
   Deeper AA-safe variants are used wherever text sits on colour.
   ============================================================ */

:root {
  /* Brand */
  --purple: #A55FC1;
  --blue: #4C96D7;
  /* AA-safe deep variants (for text on white / white text on fill) */
  --purple-deep: #6E3390;
  --purple-mid: #8A47A9;
  --blue-deep: #1F5E93;
  --blue-mid: #2F76BB;

  /* Neutrals */
  --ink: #1E1E33;
  --ink-soft: #44445E;
  --muted: #5B5B74;
  --bg: #FDFCFE;
  --bg-tint: #F7F4FA;
  --bg-tint-blue: #F2F7FC;
  --line: #E6E1EE;
  --white: #FFFFFF;

  /* Gradients */
  --grad: linear-gradient(100deg, var(--purple) 0%, var(--blue) 100%);
  --grad-deep: linear-gradient(100deg, #7E3F9E 0%, #2A6DAE 100%);

  /* Type */
  --font: "Source Sans 3", "Segoe UI", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-head: "Lexend", "Segoe UI", -apple-system, BlinkMacSystemFont, sans-serif;
  --fs-sm: 0.875rem;
  --fs-base: 1.0625rem;
  --fs-lg: 1.1875rem;

  /* Rhythm */
  --space-1: 0.25rem; --space-2: 0.5rem; --space-3: 0.75rem;
  --space-4: 1rem; --space-5: 1.5rem; --space-6: 2rem;
  --space-7: 3rem; --space-8: 4rem; --space-9: 6rem;

  --radius: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 3px rgba(50, 30, 70, 0.08);
  --shadow-md: 0 6px 24px -6px rgba(50, 30, 70, 0.14);
  --shadow-lg: 0 16px 48px -12px rgba(50, 30, 70, 0.20);

  --header-h: 76px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 1rem); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
body {
  margin: 0;
  font-family: var(--font);
  font-size: var(--fs-base);
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--purple-deep); text-underline-offset: 3px; }
a:hover { color: var(--blue-deep); }
:focus-visible { outline: 3px solid var(--blue-mid); outline-offset: 3px; border-radius: 4px; }
button, input, select, textarea { font: inherit; color: inherit; }
table { border-collapse: collapse; width: 100%; }
strong { font-weight: 700; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.18; font-weight: 700; letter-spacing: -0.01em; margin: 0 0 var(--space-4); }
h1 { font-size: clamp(2.1rem, 4.6vw + 0.6rem, 3.4rem); }
h2 { font-size: clamp(1.6rem, 2.4vw + 0.6rem, 2.25rem); }
h3 { font-size: clamp(1.2rem, 1vw + 0.7rem, 1.4rem); }
h4 { font-size: 1.1rem; }
p { margin: 0 0 var(--space-4); }
.lede { font-size: clamp(1.1rem, 0.7vw + 0.9rem, 1.3rem); color: var(--ink-soft); line-height: 1.6; }
.eyebrow {
  display: inline-block; font-size: 0.8125rem; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--purple-deep); margin-bottom: var(--space-3);
}
.center { text-align: center; }

/* ---------- Layout ---------- */
.container { max-width: 1160px; margin-inline: auto; padding-inline: clamp(1.25rem, 4vw, 2.5rem); }
.container--narrow { max-width: 820px; }
.section { padding-block: clamp(3.5rem, 7vw, 6rem); }
.section--tint { background: var(--bg-tint); }
.section--tint-blue { background: var(--bg-tint-blue); }
.section-head { max-width: 700px; margin-bottom: clamp(2rem, 4vw, 3.5rem); }
.section-head.center { margin-inline: auto; text-align: center; }

.grid { display: grid; gap: var(--space-5); }
@media (min-width: 720px) {
  .grid--2 { grid-template-columns: 1fr 1fr; }
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}

/* ---------- Header ---------- */
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--white); color: var(--purple-deep);
  padding: 0.75rem 1.25rem; border-radius: 0 0 8px 0; font-weight: 700;
}
.skip-link:focus { left: 0; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(253, 252, 254, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.site-header.is-scrolled { border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }
.header-inner {
  display: flex; align-items: center; gap: var(--space-5);
  min-height: var(--header-h);
}
.logo { display: inline-flex; align-items: center; gap: 0.6rem; text-decoration: none; margin-right: auto; }
.logo svg { height: 40px; width: auto; }

.nav-desktop { display: none; }
.header-cta { display: none; }
.header-phone { display: none; }

@media (min-width: 1100px) {
  .nav-desktop { display: flex; align-items: center; gap: 0.25rem; }
  .nav-desktop > ul { display: flex; list-style: none; margin: 0; padding: 0; gap: 0.125rem; align-items: center; }
  .nav-desktop a, .nav-desktop button.nav-drop-btn {
    display: inline-flex; align-items: center; gap: 0.3rem;
    padding: 0.55rem 0.8rem; border-radius: var(--radius-pill);
    text-decoration: none; color: var(--ink); font-weight: 600; font-size: 0.95rem;
    background: none; border: 0; cursor: pointer; white-space: nowrap;
  }
  .nav-desktop a:hover, .nav-desktop button.nav-drop-btn:hover { background: var(--bg-tint); color: var(--purple-deep); }
  .nav-desktop a[aria-current="page"] { color: var(--purple-deep); background: var(--bg-tint); }
  .nav-drop { position: relative; }
  .nav-drop-menu {
    position: absolute; top: calc(100% + 6px); left: 0; min-width: 240px;
    background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
    box-shadow: var(--shadow-lg); padding: 0.5rem; margin: 0; list-style: none;
    display: none; z-index: 110;
  }
  .nav-drop.is-open .nav-drop-menu, .nav-drop:focus-within .nav-drop-menu { display: block; }
  .nav-drop-menu a { display: block; padding: 0.6rem 0.9rem; border-radius: 10px; width: 100%; }
  .nav-drop-menu .nav-sep { height: 1px; background: var(--line); margin: 0.4rem 0.6rem; }
  .header-phone {
    display: inline-flex; align-items: center; gap: 0.45rem;
    font-weight: 800; color: var(--ink); text-decoration: none; font-size: 1rem;
    padding: 0.55rem 0.6rem; white-space: nowrap;
  }
  .header-phone svg { color: var(--purple-deep); }
  .header-phone:hover { color: var(--purple-deep); }
  .header-cta { display: inline-flex; }
}

/* Mobile nav */
.nav-toggle {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 48px; height: 48px; padding: 12px;
  background: none; border: 1.5px solid var(--line); border-radius: 12px; cursor: pointer;
}
.nav-toggle span { display: block; height: 2px; width: 100%; background: var(--ink); border-radius: 2px; transition: transform 0.2s, opacity 0.2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-phone-link {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 12px;
  border: 1.5px solid var(--line); color: var(--purple-deep);
}
@media (min-width: 1100px) { .nav-toggle, .mobile-phone-link { display: none; } }

.nav-mobile {
  display: none;
  position: fixed; inset: var(--header-h) 0 0 0; z-index: 99;
  background: var(--bg); overflow-y: auto;
  padding: var(--space-5) clamp(1.25rem, 4vw, 2.5rem) 7rem;
}
.nav-mobile.is-open { display: block; }
.nav-mobile ul { list-style: none; margin: 0; padding: 0; }
.nav-mobile a {
  display: block; padding: 0.9rem 0.5rem; text-decoration: none;
  color: var(--ink); font-weight: 700; font-size: 1.15rem;
  border-bottom: 1px solid var(--line);
}
.nav-mobile a[aria-current="page"] { color: var(--purple-deep); }
.nav-mobile .nav-group-label {
  font-size: 0.8rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); padding: 1.4rem 0.5rem 0.4rem;
}
.nav-mobile .nav-sub a { font-weight: 600; font-size: 1.05rem; padding-left: 1.25rem; }
.nav-mobile .btn { margin-top: var(--space-5); width: 100%; justify-content: center; }
body.nav-locked { overflow: hidden; }

/* Mobile sticky action bar */
.action-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem;
  padding: 0.6rem clamp(1rem, 4vw, 2rem) calc(0.6rem + env(safe-area-inset-bottom));
  background: rgba(253, 252, 254, 0.95);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
}
@media (min-width: 1100px) { .action-bar { display: none; } }
body { padding-bottom: 5.25rem; }
@media (min-width: 1100px) { body { padding-bottom: 0; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.85rem 1.6rem; min-height: 48px;
  border-radius: var(--radius-pill); border: 0; cursor: pointer;
  font-family: var(--font-head); font-weight: 600; font-size: 1rem; text-decoration: none; text-align: center;
  transition: transform 0.15s ease-out, box-shadow 0.15s ease-out, background-color 0.15s;
  touch-action: manipulation;
}
.btn:active { transform: scale(0.98); }
.btn--primary { background: var(--grad-deep); color: var(--white); box-shadow: var(--shadow-md); }
.btn--primary:hover { color: var(--white); box-shadow: var(--shadow-lg); transform: translateY(-1px); }
.btn--secondary {
  background: var(--white); color: var(--purple-deep);
  border: 2px solid var(--purple-mid);
}
.btn--secondary:hover { background: var(--bg-tint); color: var(--purple-deep); }
.btn--ghost-light {
  background: rgba(255, 255, 255, 0.14); color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.75);
}
.btn--ghost-light:hover { background: rgba(255, 255, 255, 0.24); color: var(--white); }
.btn--lg { padding: 1.05rem 2.1rem; font-size: 1.08rem; }
.cta-row { display: flex; flex-wrap: wrap; gap: var(--space-3); align-items: center; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding-block: clamp(3.5rem, 8vw, 7rem) clamp(3rem, 6vw, 5rem); }
.hero-orbs {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
}
.hero-inner { position: relative; z-index: 1; max-width: 780px; }
.hero h1 { margin-bottom: var(--space-5); }
.hero .lede { margin-bottom: var(--space-6); }
.hero-note { font-size: var(--fs-sm); color: var(--muted); margin-top: var(--space-4); }

/* ---------- Trust strip ---------- */
.trust-strip { background: var(--grad-deep); color: var(--white); padding-block: var(--space-5); }
.trust-strip ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 0.5rem 2.25rem;
  align-items: center; justify-content: center;
}
.trust-strip li {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-weight: 700; font-size: 0.95rem; letter-spacing: 0.01em;
}
.trust-strip svg { flex: none; opacity: 0.9; }

/* ---------- Cards ---------- */
.card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: clamp(1.5rem, 3vw, 2.25rem);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}
a.card { display: block; text-decoration: none; color: inherit; }
a.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); color: inherit; }
.card--feature { border-top: 4px solid; border-image: var(--grad) 1; border-top-left-radius: 0; border-top-right-radius: 0; }
.card .card-link { font-weight: 800; color: var(--purple-deep); display: inline-flex; align-items: center; gap: 0.4rem; }
a.card:hover .card-link { color: var(--blue-deep); }
.card h3 { margin-bottom: var(--space-3); }
.card p:last-of-type { margin-bottom: 0; }

.icon-chip {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--bg-tint); color: var(--purple-deep);
  margin-bottom: var(--space-4);
}
.icon-chip--blue { background: var(--bg-tint-blue); color: var(--blue-deep); }

/* Activities grid */
.activities { display: grid; gap: var(--space-3); grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
.activity {
  display: flex; gap: 0.85rem; align-items: flex-start;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.1rem 1.2rem;
}
.activity svg { flex: none; color: var(--purple-deep); margin-top: 0.2rem; }
.activity h3, .activity h4 { font-size: 1.02rem; font-weight: 800; margin: 0 0 0.25rem; }
.activity p { font-size: 0.95rem; color: var(--ink-soft); margin: 0; line-height: 1.5; }

/* Specialist callout */
.specialist-callout {
  display: grid; gap: var(--space-4); margin-top: var(--space-6);
}
@media (min-width: 720px) { .specialist-callout { grid-template-columns: 1fr 1fr; } }
.specialist-callout .card { background: linear-gradient(140deg, #FBF7FD 0%, #F3F8FD 100%); }

/* ---------- Steps ---------- */
.steps { display: grid; gap: var(--space-5); counter-reset: step; }
@media (min-width: 760px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step { position: relative; padding-top: var(--space-4); }
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--grad-deep); color: var(--white);
  font-weight: 800; font-size: 1.35rem;
  margin-bottom: var(--space-4); box-shadow: var(--shadow-md);
}
.step h3 { font-size: 1.15rem; }
.step p { color: var(--ink-soft); margin: 0; }

/* ---------- Stats ---------- */
.stats { display: grid; gap: var(--space-5); }
@media (min-width: 760px) { .stats { grid-template-columns: repeat(3, 1fr); } }
.stat { text-align: center; padding: var(--space-5); background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--line); }
.stat-num {
  font-size: clamp(2.6rem, 4vw, 3.4rem); font-weight: 800; line-height: 1;
  background: var(--grad-deep); -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: var(--space-3);
}
.stat p { margin: 0; color: var(--ink-soft); font-weight: 600; }
.stats-source { text-align: center; color: var(--muted); font-size: var(--fs-sm); margin-top: var(--space-5); }

/* ---------- Quote ---------- */
.quote-block {
  position: relative; background: var(--white);
  border-left: 5px solid; border-image: linear-gradient(180deg, var(--purple), var(--blue)) 1;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: clamp(1.5rem, 3.5vw, 2.5rem); box-shadow: var(--shadow-md);
}
.quote-block blockquote { margin: 0; font-size: clamp(1.05rem, 1vw + 0.9rem, 1.25rem); font-weight: 500; line-height: 1.6; }
.quote-block cite { display: block; margin-top: var(--space-4); font-style: normal; font-weight: 800; color: var(--purple-deep); font-size: 0.95rem; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: var(--space-3); max-width: 820px; margin-inline: auto; }
.faq details {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
}
.faq summary {
  list-style: none; cursor: pointer; display: flex; justify-content: space-between; gap: 1rem; align-items: center;
  font-weight: 800; font-size: 1.05rem; padding: 1.15rem 1.4rem; min-height: 48px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; flex: none; width: 12px; height: 12px;
  border-right: 2.5px solid var(--purple-deep); border-bottom: 2.5px solid var(--purple-deep);
  transform: rotate(45deg); transition: transform 0.2s; margin-right: 0.25rem;
}
.faq details[open] summary::after { transform: rotate(225deg); }
.faq details > div { padding: 0 1.4rem 1.25rem; color: var(--ink-soft); }
.faq details > div p:last-child { margin-bottom: 0; }

/* ---------- Tables ---------- */
.table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--line); background: var(--white); box-shadow: var(--shadow-sm); }
.table-wrap table { min-width: 420px; }
caption { text-align: left; font-weight: 800; padding: 1.1rem 1.25rem 0.25rem; font-size: 1.05rem; }
th, td { text-align: left; padding: 0.85rem 1.25rem; }
thead th { background: var(--purple-deep); color: var(--white); font-weight: 700; font-size: 0.95rem; }
thead th:not(:first-child), td:not(:first-child) { text-align: right; font-variant-numeric: tabular-nums; }
tbody tr:nth-child(even) { background: var(--bg-tint); }
tbody td { border-top: 1px solid var(--line); }
.table-note { font-size: var(--fs-sm); color: var(--muted); margin-top: var(--space-3); }

/* ---------- Checklist ---------- */
.checklist { list-style: none; margin: 0 0 var(--space-4); padding: 0; display: grid; gap: 0.7rem; }
.checklist li { display: flex; gap: 0.7rem; align-items: flex-start; }
.checklist svg { flex: none; color: var(--purple-deep); margin-top: 0.25rem; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--grad-deep); color: var(--white); position: relative; overflow: hidden; }
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 { color: var(--white); }
.cta-band p { color: rgba(255, 255, 255, 0.92); max-width: 620px; }
.cta-band .btn--primary { background: var(--white); color: var(--purple-deep); }
.cta-band .btn--primary:hover { color: var(--purple-deep); }
.cta-band a:not(.btn) { color: var(--white); }

/* ---------- Forms ---------- */
.form-grid { display: grid; gap: var(--space-4); }
@media (min-width: 640px) { .form-grid--2 { grid-template-columns: 1fr 1fr; } .form-span { grid-column: 1 / -1; } }
.field label { display: block; font-weight: 700; margin-bottom: 0.45rem; font-size: 0.98rem; }
.field .hint { font-size: var(--fs-sm); color: var(--muted); margin: 0.35rem 0 0; }
.req { color: var(--purple-deep); }
.field input, .field select, .field textarea {
  width: 100%; padding: 0.85rem 1rem; min-height: 48px;
  border: 1.5px solid #C9C2D6; border-radius: 12px; background: var(--white);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--purple-mid); box-shadow: 0 0 0 3px rgba(165, 95, 193, 0.22);
}
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: #B3261E; }
.field-error { display: none; color: #B3261E; font-weight: 600; font-size: var(--fs-sm); margin-top: 0.35rem; }
.field.has-error .field-error { display: block; }
.form-status { display: none; margin-top: var(--space-4); padding: 1rem 1.25rem; border-radius: 12px; font-weight: 600; }
.form-status.is-success { display: block; background: #EDF7EF; border: 1.5px solid #2E7D43; color: #1E5B30; }
.form-status.is-error { display: block; background: #FDF1F0; border: 1.5px solid #B3261E; color: #8C1D17; }
.form-privacy { font-size: var(--fs-sm); color: var(--muted); }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* ---------- Contact layout ---------- */
.contact-grid { display: grid; gap: var(--space-6); }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 5fr 7fr; } }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; padding-block: var(--space-4); border-bottom: 1px solid var(--line); }
.contact-item:last-child { border-bottom: 0; }
.contact-item svg { flex: none; color: var(--purple-deep); margin-top: 0.2rem; }
.contact-item h3 { font-size: 1.02rem; margin-bottom: 0.2rem; }
.contact-item p { margin: 0; color: var(--ink-soft); }
.contact-item a { font-weight: 700; }

.map-embed { border: 0; width: 100%; height: 380px; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }

/* ---------- Reviews ---------- */
.review-card { display: flex; flex-direction: column; gap: var(--space-3); }
.review-stars { display: flex; gap: 3px; color: #B8860B; }
.review-card blockquote { margin: 0; font-size: 1.02rem; }
.review-attr { font-weight: 700; color: var(--ink-soft); font-size: 0.95rem; }
.review-attr span { display: block; font-weight: 600; color: var(--muted); font-size: 0.85rem; }

/* ---------- Prelaunch flags (visible until resolved) ---------- */
.prelaunch-flag {
  background: #FFF7E6; border: 1.5px dashed #9A6700; color: #6B4A00;
  border-radius: 12px; padding: 1rem 1.25rem; font-size: 0.95rem; font-weight: 600;
  margin-block: var(--space-4);
}
.prelaunch-flag::before { content: "Before launch: "; font-weight: 800; }

/* ---------- Footer ---------- */
.site-footer { background: #221F33; color: #CFCBDE; margin-top: var(--space-8); }
.footer-main { display: grid; gap: var(--space-6); padding-block: clamp(2.5rem, 5vw, 4rem); }
@media (min-width: 800px) { .footer-main { grid-template-columns: 1.3fr 1fr 1fr 1.3fr; } }
.site-footer h3 { color: var(--white); font-size: 0.9rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: var(--space-4); }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.55rem; }
.site-footer a { color: #CFCBDE; text-decoration: none; }
.site-footer a:hover { color: var(--white); text-decoration: underline; }
.footer-brand svg { height: 42px; width: auto; margin-bottom: var(--space-3); }
.footer-brand p { color: #A8A3BE; font-size: 0.95rem; }
.footer-contact p { margin-bottom: 0.55rem; font-size: 0.95rem; }
.footer-contact a { font-weight: 700; color: var(--white); }
.footer-hours { color: #A8A3BE; font-size: 0.9rem; }
.footer-bottom {
  border-top: 1px solid #3A3652; padding-block: var(--space-5);
  display: flex; flex-wrap: wrap; gap: var(--space-4); align-items: center; justify-content: space-between;
  font-size: 0.9rem; color: #A8A3BE;
}
.footer-legal { display: flex; flex-wrap: wrap; gap: 1.25rem; list-style: none; margin: 0; padding: 0; }
.cqc-badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  border: 1.5px solid #4A4666; border-radius: 10px; padding: 0.5rem 0.85rem;
  color: #CFCBDE; text-decoration: none; font-size: 0.85rem; font-weight: 700;
}
.cqc-badge:hover { border-color: #CFCBDE; }

/* ---------- Breadcrumb ---------- */
.breadcrumb { padding-top: var(--space-5); font-size: var(--fs-sm); }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 0; padding: 0; color: var(--muted); }
.breadcrumb li + li::before { content: "/"; margin-right: 0.5rem; color: var(--line); }
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--purple-deep); text-decoration: underline; }

/* ---------- Prose (legal pages) ---------- */
.prose h2 { margin-top: var(--space-7); }
.prose h3 { margin-top: var(--space-6); }
.prose ul { padding-left: 1.4rem; }
.prose li { margin-bottom: 0.5rem; }
.updated-line { color: var(--muted); font-size: var(--fs-sm); }

/* ---------- Photos ---------- */
.photo {
  margin: 0; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md); background: var(--bg-tint);
}
.photo img { width: 100%; height: 100%; object-fit: cover; }
.photo--landscape { aspect-ratio: 3 / 2; }
.photo--portrait { aspect-ratio: 4 / 5; }
.photo--wide { aspect-ratio: 21 / 9; }
.photo figcaption { font-size: var(--fs-sm); color: var(--muted); padding: 0.6rem 1rem; background: var(--white); }

/* ---------- Scroll reveal (progressive enhancement) ---------- */
@media (prefers-reduced-motion: no-preference) {
  .js-reveal .card,
  .js-reveal .stat,
  .js-reveal .step,
  .js-reveal .quote-block,
  .js-reveal .activity {
    opacity: 0; transform: translateY(14px);
    transition: opacity 0.45s ease-out, transform 0.45s ease-out;
  }
  .js-reveal .is-revealed { opacity: 1; transform: none; }
}

/* ---------- Utility ---------- */
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.divider-note { color: var(--muted); font-size: var(--fs-sm); }
