/* ==========================================================================
   VuePoint Diagnostics — site stylesheet
   Direction: clinical-editorial. White paper, ink-navy type, one blue accent,
   the logo's dot-grid crosshair as the only recurring motif.
   Mobile-first. Breakpoints: 641 (tablet) / 1025 (laptop) / 1441 (desktop).
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design tokens
   -------------------------------------------------------------------------- */
:root {
  /* Brand (sampled from logo) */
  --blue:        #00A4E4;   /* brand accent — fills, marks, borders */
  --blue-deep:   #0072B0;   /* AA-safe blue for text and links on white */
  --blue-dark:   #005B8E;   /* link hover */
  --blue-tint:   #E6F6FD;   /* soft fills */
  --gray-brand:  #808285;   /* logo gray */

  /* Neutrals */
  --ink:         #14202B;   /* headings, footer bg */
  --slate:       #3B4A57;   /* body text */
  --muted:       #66737E;   /* secondary text (AA on white) */
  --line:        #D8E1E8;
  --line-soft:   #E9EFF3;
  --mist:        #F2F7FA;   /* alternate section bg */
  --paper:       #FFFFFF;

  /* Feedback */
  --success:     #1B7F4E;
  --success-bg:  #E7F5EC;
  --error:       #B3261E;
  --error-bg:    #FCEBE9;
  --info-bg:     var(--blue-tint);

  /* Type */
  --font-display: "Outfit", "Avenir Next", "Segoe UI", sans-serif;
  --font-body:    "IBM Plex Sans", "Helvetica Neue", Arial, sans-serif;
  --text-base:    clamp(1.0625rem, 1rem + 0.2vw, 1.125rem);   /* 17–18px */
  --lh-body:      1.6;

  /* Spacing scale (8px base) */
  --s-1: 0.25rem; --s-2: 0.5rem; --s-3: 0.75rem; --s-4: 1rem;
  --s-5: 1.5rem;  --s-6: 2rem;   --s-7: 3rem;    --s-8: 4rem;
  --s-9: 6rem;    --s-10: 8rem;
  --section-y: clamp(3.5rem, 6vw, 6.5rem);

  /* Layout */
  --container: 1240px;
  --container-narrow: 820px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --header-h: 76px;
  --header-h-compact: 64px;

  /* Shape & depth */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --shadow-sm: 0 1px 2px rgba(20,32,43,.06), 0 2px 8px rgba(20,32,43,.05);
  --shadow-md: 0 6px 24px rgba(20,32,43,.10);
  --shadow-lg: 0 24px 60px rgba(20,32,43,.18);

  /* Motion */
  --ease: cubic-bezier(.2,.7,.2,1);
  --t-fast: 160ms;
  --t-med: 260ms;
  --t-slow: 420ms;
}

/* --------------------------------------------------------------------------
   2. Reset & base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--lh-body);
  color: var(--slate);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body.is-locked { overflow: hidden; }

img, picture, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: var(--blue-deep); text-decoration-thickness: 1px; text-underline-offset: .15em; transition: color var(--t-fast) var(--ease); }
a:hover { color: var(--blue-dark); }
button { font: inherit; color: inherit; cursor: pointer; }
ul, ol { margin: 0; padding: 0; }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; border-radius: 2px; }
.skip-link {
  position: absolute; left: var(--s-4); top: -100px; z-index: 1000;
  background: var(--ink); color: #fff; padding: var(--s-3) var(--s-4); border-radius: var(--r-sm);
}
.skip-link:focus { top: var(--s-4); }
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.12;
  margin: 0 0 var(--s-4);
  font-weight: 600;
  text-wrap: balance;
}
h1 { font-size: clamp(2.1rem, 1.4rem + 3vw, 3.75rem); font-weight: 600; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.7rem, 1.2rem + 1.8vw, 2.6rem); letter-spacing: -0.015em; }
h3 { font-size: clamp(1.25rem, 1.1rem + .6vw, 1.5rem); line-height: 1.25; }
h4 { font-size: 1.125rem; line-height: 1.3; }
p { margin: 0 0 var(--s-4); }
p:last-child { margin-bottom: 0; }
.lead { font-size: clamp(1.15rem, 1.05rem + .5vw, 1.35rem); line-height: 1.5; color: var(--slate); max-width: 38em; }
.measure { max-width: 62ch; }
.muted { color: var(--muted); }
strong { color: var(--ink); font-weight: 600; }

/* --------------------------------------------------------------------------
   3. Layout primitives
   -------------------------------------------------------------------------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding-inline: var(--gutter); }
.container--narrow { max-width: var(--container-narrow); }
.section { padding-block: var(--section-y); }
.section--mist { background: var(--mist); }
.section--ink { background: var(--ink); color: #C9D3DC; }
.section--ink h2, .section--ink h3 { color: #fff; }
.section--tight { padding-block: clamp(2rem, 4vw, 3.5rem); }
.section-head { max-width: 42em; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head h2 { margin-bottom: var(--s-3); }
.section-head p { font-size: 1.1rem; }
.section-head--row {
  display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: var(--s-4);
  max-width: none;
}
.section-head--row > div { max-width: 42em; }

.grid { display: grid; gap: var(--s-5); }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr; }
@media (min-width: 641px) {
  .grid--2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .grid--3 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .grid--4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (min-width: 1025px) {
  .grid--3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .grid--4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
}
.split { display: grid; gap: clamp(2rem, 4vw, 4rem); align-items: center; }
@media (min-width: 1025px) {
  .split { grid-template-columns: minmax(0,1fr) minmax(0,1fr); }
  .split--wide-left { grid-template-columns: minmax(0,1.2fr) minmax(0,1fr); }
  .split--wide-right { grid-template-columns: minmax(0,1fr) minmax(0,1.2fr); }
  .split > .split__swap { order: -1; }
}
.stack > * + * { margin-top: var(--s-4); }

/* --------------------------------------------------------------------------
   4. Brand mark & dot grid
   -------------------------------------------------------------------------- */
.brand { display: inline-flex; align-items: center; gap: .65rem; text-decoration: none; color: var(--ink); }
.brand__grid { width: 34px; height: 34px; flex: none; }
.brand__word { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--font-display); font-weight: 500; font-size: 1.32rem;
  letter-spacing: .3em; color: var(--blue); text-transform: uppercase;
}
.brand__sub {
  font-family: var(--font-display); font-weight: 400; font-size: .72rem;
  letter-spacing: .42em; color: var(--gray-brand); margin-top: .22em; text-transform: lowercase;
}
.brand--light .brand__sub { color: #AEBAC5; }
.brand--light .brand__name { color: #fff; }
.brand--light .brand__grid .dg-g { fill: #AEBAC5; }
.brand--light .brand__grid .dg-b { fill: #fff; }
.dg-g { fill: var(--gray-brand); }
.dg-b { fill: var(--blue); }

/* Decorative large watermark of the grid used behind the hero */
.watermark {
  position: absolute; pointer-events: none; z-index: 0; display: none;
  opacity: .045; width: min(40vw, 460px); height: auto;
}
@media (min-width: 1025px) { .watermark { display: block; } }
.watermark .dg-g { fill: var(--ink); }
.watermark .dg-b { fill: var(--blue); }

/* Small mark used at the head of sections — a single crosshair */
.mark { width: 26px; height: 26px; display: inline-block; vertical-align: middle; }

/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  min-height: 48px; padding: .8rem 1.35rem;
  font-family: var(--font-display); font-weight: 600; font-size: 1rem; letter-spacing: .005em;
  border-radius: var(--r-sm); border: 2px solid transparent; text-decoration: none;
  transition: background-color var(--t-fast) var(--ease), color var(--t-fast) var(--ease),
              border-color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease),
              box-shadow var(--t-fast) var(--ease);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn svg { width: 1.1em; height: 1.1em; flex: none; }

.btn--primary { background: var(--blue); color: var(--ink); border-color: var(--blue); }
.btn--primary:hover { background: #22B6F0; border-color: #22B6F0; color: var(--ink); box-shadow: 0 6px 18px rgba(0,164,228,.35); }

.btn--ink { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn--ink:hover { background: #22323F; border-color: #22323F; color: #fff; }

.btn--outline { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--outline:hover { border-color: var(--ink); color: var(--ink); background: rgba(20,32,43,.03); }

.btn--ghost { background: transparent; color: var(--blue-deep); border-color: transparent; padding-inline: .6rem; }
.btn--ghost:hover { color: var(--blue-dark); background: var(--blue-tint); }

.btn--on-ink { background: transparent; color: #fff; border-color: rgba(255,255,255,.35); }
.btn--on-ink:hover { border-color: #fff; background: rgba(255,255,255,.08); color: #fff; }

.btn--lg { min-height: 56px; padding: 1rem 1.75rem; font-size: 1.1rem; }
.btn--block { width: 100%; }

/* Text link with arrow, used in cards */
.link-more {
  display: inline-flex; align-items: center; gap: .4rem; font-family: var(--font-display);
  font-weight: 600; text-decoration: none; color: var(--blue-deep);
}
.link-more svg { width: 1em; height: 1em; transition: transform var(--t-fast) var(--ease); }
.link-more:hover svg { transform: translateX(3px); }

/* Phone number treatment — big, tappable, unmistakable */
.phone {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-display); font-weight: 600; text-decoration: none; color: var(--ink);
  font-size: clamp(1.5rem, 1.2rem + 1.5vw, 2.25rem); letter-spacing: -.01em; line-height: 1.1;
  padding: .25rem 0; border-bottom: 3px solid var(--blue);
  transition: border-color var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.phone:hover { color: var(--blue-deep); border-color: var(--blue-deep); }
.phone svg { width: .85em; height: .85em; color: var(--blue); flex: none; }
.phone--sm { font-size: 1.25rem; border-bottom-width: 2px; }

/* --------------------------------------------------------------------------
   6. Header & navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
}
.site-header.is-scrolled { border-bottom-color: var(--line-soft); box-shadow: 0 4px 20px rgba(20,32,43,.06); }
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between; gap: var(--s-4);
  min-height: var(--header-h);
  transition: min-height var(--t-med) var(--ease);
}
.site-header.is-scrolled .site-header__inner { min-height: var(--header-h-compact); }

.nav { display: none; }
.nav__list { display: flex; gap: .25rem; list-style: none; }
.nav__link {
  display: inline-flex; align-items: center; min-height: 44px; padding: 0 .85rem;
  border-radius: var(--r-sm); text-decoration: none; color: var(--slate);
  font-family: var(--font-display); font-weight: 500; font-size: 1rem;
  transition: background-color var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.nav__link:hover { color: var(--ink); background: var(--mist); }
.nav__link[aria-current="page"] { color: var(--ink); box-shadow: inset 0 -3px 0 var(--blue); border-radius: var(--r-sm) var(--r-sm) 0 0; }

.header-actions { display: none; align-items: center; gap: .5rem; }
.header-actions .btn { min-height: 44px; padding-block: .6rem; }

.menu-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: var(--r-sm); border: 1px solid var(--line); background: #fff;
  transition: background-color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
}
.menu-toggle:hover { border-color: var(--ink); }
.menu-toggle__bars { position: relative; width: 20px; height: 14px; }
.menu-toggle__bars span {
  position: absolute; left: 0; width: 100%; height: 2px; background: var(--ink); border-radius: 2px;
  transition: transform var(--t-med) var(--ease), opacity var(--t-med) var(--ease), top var(--t-med) var(--ease);
}
.menu-toggle__bars span:nth-child(1) { top: 0; }
.menu-toggle__bars span:nth-child(2) { top: 6px; }
.menu-toggle__bars span:nth-child(3) { top: 12px; }
.menu-toggle[aria-expanded="true"] .menu-toggle__bars span:nth-child(1) { top: 6px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle__bars span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] .menu-toggle__bars span:nth-child(3) { top: 6px; transform: rotate(-45deg); }

@media (min-width: 1025px) {
  .nav { display: block; }
  .header-actions { display: flex; }
  .menu-toggle { display: none; }
}

/* Mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: 200; display: none;
}
.drawer[data-open="true"] { display: block; }
.drawer__backdrop {
  position: absolute; inset: 0; background: rgba(20,32,43,.5);
  opacity: 0; transition: opacity var(--t-med) var(--ease);
}
.drawer__panel {
  position: absolute; top: 0; right: 0; bottom: 0; width: min(88vw, 400px);
  background: #fff; display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform var(--t-slow) var(--ease);
  box-shadow: var(--shadow-lg);
}
.drawer.is-visible .drawer__backdrop { opacity: 1; }
.drawer.is-visible .drawer__panel { transform: translateX(0); }
.drawer__head { display: flex; align-items: center; justify-content: space-between; padding: 1rem var(--gutter); border-bottom: 1px solid var(--line-soft); min-height: var(--header-h); }
.drawer__close {
  width: 48px; height: 48px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--r-sm); border: 1px solid var(--line); background: #fff;
}
.drawer__close svg { width: 20px; height: 20px; }
.drawer__nav { list-style: none; padding: .75rem var(--gutter); flex: 1; overflow-y: auto; }
.drawer__nav a {
  display: flex; align-items: center; justify-content: space-between; min-height: 56px;
  padding: .5rem .5rem; text-decoration: none; color: var(--ink);
  font-family: var(--font-display); font-weight: 500; font-size: 1.25rem;
  border-bottom: 1px solid var(--line-soft);
}
.drawer__nav a[aria-current="page"] { color: var(--blue-deep); }
.drawer__nav a svg { width: 18px; height: 18px; color: var(--gray-brand); }
.drawer__foot { padding: 1rem var(--gutter) 1.5rem; display: grid; gap: .75rem; border-top: 1px solid var(--line-soft); }
.drawer__foot .phone { justify-self: start; }
.drawer__foot small { color: var(--muted); }

/* --------------------------------------------------------------------------
   7. Hero (home)
   -------------------------------------------------------------------------- */
.hero { position: relative; overflow: hidden; padding-block: clamp(2.5rem, 5vw, 5rem) clamp(3rem, 6vw, 6rem);
  background:
    radial-gradient(55% 60% at 90% 0%, rgba(0,164,228,.10) 0%, rgba(0,164,228,0) 70%),
    radial-gradient(45% 55% at 0% 100%, rgba(0,164,228,.06) 0%, rgba(0,164,228,0) 70%),
    #fff; }
.hero .watermark { right: -4%; top: 4%; }
.hero__inner { position: relative; z-index: 1; display: grid; gap: clamp(2rem, 4vw, 3rem); }
@media (min-width: 1025px) {
  .hero__inner { grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr); grid-template-rows: auto 1fr; align-items: start; column-gap: clamp(2.5rem, 5vw, 5rem); }
  .hero__copy { grid-column: 1; grid-row: 1; }
  .hero__photo { grid-column: 1; grid-row: 2; align-self: end; }
  .doors { grid-column: 2; grid-row: 1 / span 2; }
}
.hero__copy h1 { margin-bottom: var(--s-5); max-width: 19ch; }
.hero__copy .lead { margin-bottom: var(--s-6); }
.hero__facts { display: flex; flex-wrap: wrap; gap: .5rem 1.75rem; list-style: none; padding: 0; margin: 0; }
.hero__facts li { display: flex; align-items: center; gap: .5rem; font-family: var(--font-display); font-weight: 500; color: var(--ink); font-size: 1.02rem; }
.hero__facts li svg { width: 10px; height: 10px; }
.hero__photo { margin: 0; border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 16 / 9; }
.hero__photo picture { height: 100%; }
.hero__photo img { width: 100%; height: 100%; object-fit: cover; object-position: 40% 50%; }

/* The two "doors" */
.doors { display: grid; gap: var(--s-4); }
.door {
  position: relative; display: flex; flex-direction: column; gap: var(--s-4);
  padding: clamp(1.5rem, 3vw, 2.25rem); border-radius: var(--r-md);
  border: 1px solid var(--line); background: #fff;
}
.door h2 { font-size: clamp(1.3rem, 1.1rem + .8vw, 1.65rem); margin: 0; }
.door p { margin: 0; }
.door--patient { background: var(--ink); color: #C9D3DC; border-color: var(--ink); }
.door--patient h2 { color: #fff; }
.door--patient .phone { color: #fff; border-color: var(--blue); font-size: clamp(1.75rem, 1.3rem + 2vw, 2.5rem); }
.door--patient .phone:hover { color: var(--blue); }
.door--patient .phone svg { color: var(--blue); }
.door--patient small { color: #AEBAC5; display: block; }
.door__actions { display: flex; flex-wrap: wrap; gap: .75rem; align-items: center; }
.door__tag {
  align-self: flex-start; font-family: var(--font-display); font-weight: 600; font-size: .9rem;
  color: var(--blue-deep); background: var(--blue-tint); padding: .25rem .65rem; border-radius: 999px;
}
.door--patient .door__tag { color: var(--ink); background: var(--blue); }

/* --------------------------------------------------------------------------
   8. Content components
   -------------------------------------------------------------------------- */
/* Trust strip */
.trust { border-block: 1px solid var(--line-soft);
  background: linear-gradient(90deg, #fff 60%, rgba(255,255,255,.4) 100%), url("../img/dotgrid-tile-light.svg") right center / 112px 112px repeat, #fff; }
.trust__list { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1.5rem 2rem; list-style: none; padding: 0; }
@media (min-width: 1025px) { .trust__list { grid-template-columns: repeat(4, minmax(0,1fr)); } }
.trust__item strong { display: block; font-family: var(--font-display); font-size: clamp(1.4rem, 1.2rem + 1vw, 1.9rem); color: var(--ink); line-height: 1.1; font-weight: 600; }
.trust__item span { color: var(--muted); font-size: .95rem; }
.trust__item .stars { color: #E9A200; letter-spacing: .05em; font-size: .9em; }

/* Service cards */
.service-card {
  display: flex; flex-direction: column; gap: var(--s-3);
  padding: clamp(1.5rem, 3vw, 2rem); border: 1px solid var(--line); border-radius: var(--r-md);
  background: #fff; transition: border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}
.service-card:hover { border-color: var(--blue); box-shadow: var(--shadow-sm); }
.service-card h3 { margin: 0; }
.service-card__icon { width: 52px; height: 52px; color: var(--blue-deep); }
.service-card__icon svg { width: 100%; height: 100%; }
.service-card ul { list-style: none; padding: 0; display: grid; gap: .45rem; }
.service-card li { display: flex; gap: .6rem; align-items: flex-start; }
.service-card li::before { content: ""; flex: none; width: 8px; height: 8px; border-radius: 50%; background: var(--blue); margin-top: .6em; }
.service-card .link-more { margin-top: auto; }
.service-card__fact { font-family: var(--font-display); color: var(--ink); font-weight: 500; padding-top: .5rem; border-top: 1px solid var(--line-soft); font-size: .95rem; }

/* Check list */
.checklist { list-style: none; padding: 0; display: grid; gap: .65rem; }
.checklist li { display: flex; gap: .7rem; align-items: flex-start; }
.checklist li svg { flex: none; width: 22px; height: 22px; color: var(--blue-deep); margin-top: .15em; }
.checklist--tight li { gap: .55rem; }

/* Steps (a real sequence — numbering is warranted) */
.steps { list-style: none; padding: 0; display: grid; gap: var(--s-5); counter-reset: step; }
@media (min-width: 641px) { .steps { grid-template-columns: repeat(3, minmax(0,1fr)); } }
.step { position: relative; padding-top: 1rem; border-top: 3px solid var(--blue); counter-increment: step; }
.step::before {
  content: counter(step); display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%; background: var(--ink); color: #fff;
  font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; margin-bottom: .85rem;
}
.step h3 { margin-bottom: .5rem; }
.step p { margin: 0; }
.section--ink .step { border-top-color: var(--blue); }
.section--ink .step::before { background: var(--blue); color: var(--ink); }
.section--ink .step p { color: #C9D3DC; }

/* Reviews */
.reviews { display: grid; gap: var(--s-4); }
@media (min-width: 641px) { .reviews { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (min-width: 1025px) { .reviews { grid-template-columns: repeat(3, minmax(0,1fr)); } }
.review {
  display: flex; flex-direction: column; gap: var(--s-4); padding: clamp(1.5rem, 3vw, 2rem);
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); margin: 0;
}
.review__stars { color: #E9A200; font-size: 1rem; letter-spacing: .08em; }
.review p { margin: 0; font-size: 1.05rem; color: var(--ink); line-height: 1.55; }
.review footer { margin-top: auto; display: flex; flex-wrap: wrap; align-items: baseline; gap: .15rem .6rem; color: var(--muted); font-size: .95rem; }
.review footer strong { color: var(--ink); font-weight: 600; }
.review footer .g { width: 18px; height: 18px; }
.review--quote-large p { font-size: clamp(1.15rem, 1rem + .7vw, 1.45rem); font-family: var(--font-display); font-weight: 500; }
.rating-badge { display: inline-flex; align-items: center; gap: .6rem; font-family: var(--font-display); font-weight: 600; color: var(--ink); }
.rating-badge .stars { color: #E9A200; letter-spacing: .06em; }
.rating-badge span { color: var(--muted); font-weight: 400; }

/* Payer quote */
.quote-block { border-left: 4px solid var(--blue); padding-left: clamp(1.25rem, 3vw, 2rem); margin: 0; }
.quote-block p { font-family: var(--font-display); font-weight: 500; color: var(--ink); font-size: clamp(1.15rem, 1rem + .8vw, 1.5rem); line-height: 1.4; }
.quote-block footer { color: var(--muted); margin-top: var(--s-3); }
.section--ink .quote-block p { color: #fff; }
.section--ink .quote-block footer { color: #AEBAC5; }

/* Fact table (definition list) */
.facts { display: grid; gap: 0; border-top: 1px solid var(--line); }
.facts > div { display: grid; grid-template-columns: 1fr; gap: .2rem 1.5rem; padding: .9rem 0; border-bottom: 1px solid var(--line); }
@media (min-width: 641px) { .facts > div { grid-template-columns: 200px 1fr; } }
.facts dt { font-family: var(--font-display); font-weight: 600; color: var(--ink); margin: 0; }
.facts dd { margin: 0; }

/* Feature list for two column "for whom" */
.who { display: grid; gap: .75rem 1.5rem; list-style: none; padding: 0; }
@media (min-width: 641px) { .who { grid-template-columns: repeat(2, minmax(0,1fr)); } }
.who li { display: flex; align-items: center; padding: .85rem 1rem; background: #fff; border: 1px solid var(--line); border-left: 3px solid var(--blue); border-radius: var(--r-sm); font-family: var(--font-display); font-weight: 500; color: var(--ink); }
.who li svg { width: 18px; height: 18px; color: var(--blue); flex: none; }

/* Photo figure */
.figure { margin: 0; min-width: 0; border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-md); background: var(--mist); }
.figure picture { height: 100%; }
.figure img { width: 100%; height: 100%; object-fit: cover; }
.figure--tall { aspect-ratio: 4 / 5; }
.figure--wide { aspect-ratio: 16 / 10; }
.figure--square { aspect-ratio: 1; }
.figure--banner { aspect-ratio: 21 / 9; }
.figure--capped { max-width: 560px; }
@media (max-width: 1024px) { .figure--capped { max-width: none; } }
.figure figcaption { padding: .75rem 1rem; font-size: .9rem; color: var(--muted); background: #fff; }

/* Photo grid (about) */
.photo-grid { display: grid; gap: var(--s-4); grid-template-columns: minmax(0,1fr) minmax(0,1fr); }
@media (min-width: 1025px) { .photo-grid { grid-template-columns: minmax(0,2fr) minmax(0,1fr) minmax(0,1fr); grid-auto-rows: 260px; } .photo-grid .figure:first-child { grid-row: span 2; } }
.photo-grid .figure { aspect-ratio: auto; min-height: 180px; box-shadow: none; }
@media (max-width: 1024px) { .photo-grid .figure { aspect-ratio: 4/3; min-height: 0; } .photo-grid .figure:first-child { grid-column: span 2; aspect-ratio: 16/9; } }

/* People */
.people { display: grid; gap: var(--s-4); }
@media (min-width: 641px) { .people { grid-template-columns: repeat(3, minmax(0,1fr)); } }
.person { padding: 1.5rem; border: 1px solid var(--line); border-radius: var(--r-md); background: #fff; }
.person h3 { margin-bottom: .2rem; font-size: 1.2rem; }
.person__role { color: var(--blue-deep); font-family: var(--font-display); font-weight: 500; margin-bottom: .75rem; }
.person p { margin: 0; font-size: 1rem; }

/* Spotlight (careers) */
.spotlight { display: grid; gap: var(--s-5); align-items: start; padding: clamp(1.5rem, 3vw, 2.25rem); border-radius: var(--r-md); background: #fff; border: 1px solid var(--line); }
@media (min-width: 641px) { .spotlight { grid-template-columns: 120px 1fr; } }
.spotlight img { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; }
.spotlight blockquote { margin: 0; }
.spotlight blockquote p { color: var(--ink); font-size: 1.05rem; }
.spotlight cite { display: block; font-style: normal; color: var(--muted); margin-top: .75rem; }
.spotlight cite strong { color: var(--ink); }

/* Location cards */
.locations { display: grid; gap: var(--s-4); }
@media (min-width: 641px) { .locations { grid-template-columns: repeat(3, minmax(0,1fr)); } }
.location { padding: 1.5rem; border-radius: var(--r-md); border: 1px solid var(--line); background: #fff; }
.location h3 { font-size: 1.15rem; margin-bottom: .25rem; }
.location .muted { font-size: .95rem; }
.location address { font-style: normal; margin-top: .75rem; }
.location a { display: inline-block; margin-top: .5rem; }

/* News cards */
.news-list { display: grid; gap: var(--s-4); }
@media (min-width: 641px) { .news-list { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (min-width: 1025px) { .news-list--3 { grid-template-columns: repeat(3, minmax(0,1fr)); } }
.news-card {
  display: flex; flex-direction: column; gap: .75rem; padding: clamp(1.5rem, 3vw, 2rem);
  border: 1px solid var(--line); border-radius: var(--r-md); background: #fff;
  transition: border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}
.news-card:hover { border-color: var(--blue); box-shadow: var(--shadow-sm); }
.news-card time { color: var(--muted); font-size: .95rem; }
.news-card h3 { margin: 0; font-size: 1.25rem; }
.news-card h3 a { color: var(--ink); text-decoration: none; }
.news-card h3 a:hover { color: var(--blue-deep); }
.news-card p { margin: 0; }
.news-card .link-more { margin-top: auto; }
.news-card--featured { grid-column: 1 / -1; }
@media (min-width: 1025px) {
  .news-card--featured { display: grid; grid-template-columns: 1.1fr 1fr; gap: 2rem; align-items: center; padding: 0; overflow: hidden; }
  .news-card--featured .figure { border-radius: 0; box-shadow: none; height: 100%; aspect-ratio: auto; min-height: 320px; }
  .news-card--featured .news-card__body { padding: 2rem 2rem 2rem 0; display: flex; flex-direction: column; gap: .75rem; }
}
@media (max-width: 1024px) { .news-card--featured .figure { aspect-ratio: 16/9; margin: -1.5rem -1.5rem .5rem; border-radius: var(--r-md) var(--r-md) 0 0; box-shadow: none; } }

/* Article */
.article { max-width: var(--container-narrow); margin: 0 auto; padding-inline: var(--gutter); }
.article__head { padding-block: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 3vw, 2.5rem); }
.article__head time { color: var(--muted); }
.article__head h1 { font-size: clamp(1.9rem, 1.3rem + 2.2vw, 3rem); margin-top: .75rem; }
.article__head .lead { margin-top: 1rem; }
.article__body { padding-bottom: var(--section-y); }
.article__body p { font-size: 1.1rem; line-height: 1.7; }
.article__body h2 { font-size: 1.5rem; margin-top: 2.5rem; }
.article__body blockquote { margin: 2rem 0; padding-left: 1.5rem; border-left: 4px solid var(--blue); }
.article__body blockquote p { font-family: var(--font-display); font-weight: 500; color: var(--ink); font-size: 1.2rem; }
.article__body blockquote footer { color: var(--muted); font-size: 1rem; }
.article__body .figure { margin: 2rem 0; }
.article__foot { border-top: 1px solid var(--line); padding-top: 1.5rem; margin-top: 2.5rem; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; }
.boilerplate { background: var(--mist); padding: 1.5rem; border-radius: var(--r-md); margin-top: 2.5rem; }
.boilerplate h2 { margin-top: 0 !important; font-size: 1.15rem !important; }
.boilerplate p { font-size: 1rem !important; }

/* Scroll progress (articles) */
.progress { position: fixed; top: 0; left: 0; height: 3px; width: 100%; z-index: 101; background: transparent; pointer-events: none; }
.progress__bar { height: 100%; width: 0; background: var(--blue); transition: width 80ms linear; }

/* Breadcrumbs */
.crumbs { padding-top: 1.25rem; }
.crumbs ol { display: flex; flex-wrap: wrap; gap: .4rem; list-style: none; font-size: .95rem; color: var(--muted); }
.crumbs li + li::before { content: "/"; margin-right: .4rem; color: var(--line); }
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: var(--blue-deep); text-decoration: underline; }

/* Page hero (interior) */
.page-hero { position: relative; overflow: hidden; padding-block: clamp(2.5rem, 5vw, 4.5rem) clamp(2.5rem, 5vw, 4rem); border-bottom: 1px solid var(--line-soft);
  background: radial-gradient(50% 70% at 95% 20%, rgba(0,164,228,.09) 0%, rgba(0,164,228,0) 70%), #fff; }
.page-hero .watermark { right: -6%; top: 50%; transform: translateY(-50%); opacity: .04; width: min(30vw, 380px); }
.page-hero__inner { position: relative; z-index: 1; display: grid; gap: var(--s-6); }
@media (min-width: 1025px) { .page-hero__inner { grid-template-columns: 1.1fr .9fr; align-items: center; } }
.page-hero h1 { max-width: 16ch; }
.page-hero .lead { margin-bottom: var(--s-5); }
.page-hero__actions { display: flex; flex-wrap: wrap; gap: .75rem; align-items: center; }
.page-hero__aside { display: grid; gap: 1rem; }
.page-hero .figure { box-shadow: var(--shadow-md); }
.page-hero--ink { border-bottom: 0;
  background: linear-gradient(90deg, var(--ink) 50%, rgba(20,32,43,.9) 72%, rgba(20,32,43,.6) 100%), url("../img/dotgrid-tile.svg") right center / 112px 112px repeat, var(--ink); }
.page-hero--ink .watermark { display: none; }
.page-hero--ink h1 { color: #fff; }
.page-hero--ink .lead { color: #C9D3DC; }
.page-hero--ink .watermark .dg-g { fill: #fff; }
.page-hero--ink .watermark { opacity: .08; }

/* Callout / notice */
.callout { display: flex; gap: 1rem; padding: 1.25rem 1.5rem; border-radius: var(--r-md); background: var(--blue-tint); border: 1px solid #BFE6F8; }
.callout svg { flex: none; width: 26px; height: 26px; color: var(--blue-deep); margin-top: .1em; }
.callout p { margin: 0; color: var(--ink); }
.callout--plain { background: var(--mist); border-color: var(--line); }

/* FAQ (accordion) */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.15rem 0; font-family: var(--font-display); font-weight: 600; color: var(--ink); font-size: 1.1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--blue-deep); }
.faq summary .faq__icon { flex: none; width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; transition: transform var(--t-med) var(--ease), background-color var(--t-fast) var(--ease); }
.faq summary .faq__icon svg { width: 14px; height: 14px; }
.faq details[open] summary .faq__icon { transform: rotate(45deg); background: var(--blue); border-color: var(--blue); }
.faq details[open] summary .faq__icon svg { color: var(--ink); }
.faq__body { padding: 0 0 1.25rem; max-width: 65ch; }
.faq__body p { margin-bottom: .75rem; }
.faq__body p:last-child { margin-bottom: 0; }

/* CTA band */
.cta-band { color: #C9D3DC;
  background: linear-gradient(90deg, var(--ink) 60%, rgba(20,32,43,.75) 100%), url("../img/dotgrid-tile.svg") right center / 112px 112px repeat, var(--ink); }
.cta-band__inner { display: grid; gap: var(--s-5); align-items: center; }
@media (min-width: 1025px) { .cta-band__inner { grid-template-columns: 1fr 1fr; } }
.cta-band h2 { color: #fff; margin-bottom: .5rem; }
.cta-band p { margin: 0; }
.cta-band__col { display: grid; gap: 1rem; padding: clamp(1.5rem, 3vw, 2.25rem); border-radius: var(--r-md); background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); }
.cta-band__col h2 { font-size: clamp(1.3rem, 1.1rem + .8vw, 1.6rem); }
.cta-band .phone { color: #fff; }
.cta-band .phone:hover { color: var(--blue); }

/* Sticky mobile call bar (patients page) */
.call-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 150;
  display: flex; align-items: center; justify-content: space-between; gap: .75rem;
  padding: .65rem var(--gutter) calc(.65rem + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.96); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid var(--line); box-shadow: 0 -6px 24px rgba(20,32,43,.08);
}
.call-bar span { font-family: var(--font-display); font-weight: 600; color: var(--ink); font-size: .95rem; }
.call-bar .btn { min-height: 48px; }
@media (min-width: 1025px) { .call-bar { display: none; } }
@media (max-width: 1024px) { body:has(.call-bar) { padding-bottom: 76px; } body:has(.call-bar) .toasts { bottom: 88px; } }
@media (max-width: 420px) { .call-bar span { display: none; } .call-bar .btn { width: 100%; } }

/* --------------------------------------------------------------------------
   9. Forms
   -------------------------------------------------------------------------- */
.form { display: grid; gap: 1.25rem; }
.form__row { display: grid; gap: 1.25rem; }
@media (min-width: 641px) { .form__row { grid-template-columns: 1fr 1fr; } }
.field { display: grid; gap: .4rem; }
.field label { font-family: var(--font-display); font-weight: 600; color: var(--ink); font-size: 1rem; }
.field label .opt { color: var(--muted); font-weight: 400; font-size: .9rem; margin-left: .3rem; }
.field input, .field select, .field textarea {
  width: 100%; min-height: 52px; padding: .8rem 1rem; font: inherit; color: var(--ink);
  background: #fff; border: 1.5px solid var(--line); border-radius: var(--r-sm);
  transition: border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}
.field textarea { min-height: 140px; resize: vertical; }
.field select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%233B4A57' stroke-width='2'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.75rem; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: #B9C6D0; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0,164,228,.25); }
.field.is-invalid input, .field.is-invalid select, .field.is-invalid textarea { border-color: var(--error); }
.field.is-invalid input:focus, .field.is-invalid select:focus, .field.is-invalid textarea:focus { box-shadow: 0 0 0 3px rgba(179,38,30,.2); }
.field.is-valid input, .field.is-valid select, .field.is-valid textarea { border-color: var(--success); }
.field__hint { font-size: .9rem; color: var(--muted); }
.field__error { display: none; align-items: center; gap: .4rem; font-size: .92rem; color: var(--error); font-weight: 500; }
.field__error svg { width: 16px; height: 16px; flex: none; }
.field.is-invalid .field__error { display: flex; }
.form__actions { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.form__note { font-size: .92rem; color: var(--muted); }
.honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* Contact aside */
.contact-aside { display: grid; gap: 1.25rem; }
.contact-card { padding: 1.5rem; border-radius: var(--r-md); border: 1px solid var(--line); background: #fff; }
.contact-card h3 { font-size: 1.1rem; margin-bottom: .35rem; }
.contact-card p { margin: 0 0 .5rem; }
.contact-card .muted { font-size: .95rem; }
.contact-card address { font-style: normal; }
.map { border: 0; width: 100%; height: 280px; border-radius: var(--r-md); display: block; filter: saturate(.85); }

/* --------------------------------------------------------------------------
   10. Modal & toasts
   -------------------------------------------------------------------------- */
.modal { position: fixed; inset: 0; z-index: 300; display: none; align-items: center; justify-content: center; padding: 1rem; }
.modal[data-open="true"] { display: flex; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(20,32,43,.55); backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px); opacity: 0; transition: opacity var(--t-med) var(--ease); }
.modal__card {
  position: relative; width: min(100%, 520px); background: #fff; border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg); padding: clamp(1.5rem, 4vw, 2.5rem);
  transform: translateY(12px) scale(.98); opacity: 0;
  transition: transform var(--t-med) var(--ease), opacity var(--t-med) var(--ease);
}
.modal.is-visible .modal__backdrop { opacity: 1; }
.modal.is-visible .modal__card { transform: none; opacity: 1; }
.modal__close { position: absolute; top: .9rem; right: .9rem; width: 44px; height: 44px; border-radius: 50%; border: 0; background: var(--mist); display: grid; place-items: center; }
.modal__close:hover { background: var(--line-soft); }
.modal__close svg { width: 18px; height: 18px; }
.modal__icon { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; margin-bottom: 1rem; }
.modal__icon svg { width: 28px; height: 28px; }
.modal__icon--success { background: var(--success-bg); color: var(--success); }
.modal__icon--error { background: var(--error-bg); color: var(--error); }
.modal__icon--info { background: var(--info-bg); color: var(--blue-deep); }
.modal h2 { font-size: 1.5rem; margin-bottom: .5rem; }
.modal p { color: var(--slate); }
.modal__actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.5rem; }

.toasts { position: fixed; right: 1rem; bottom: 1rem; z-index: 400; display: grid; gap: .6rem; width: min(calc(100vw - 2rem), 380px); pointer-events: none; }
.toast {
  pointer-events: auto; display: flex; gap: .75rem; align-items: flex-start; padding: .95rem 1rem;
  background: var(--ink); color: #fff; border-radius: var(--r-md); box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--blue); transform: translateY(12px); opacity: 0;
  transition: transform var(--t-med) var(--ease), opacity var(--t-med) var(--ease);
}
.toast.is-visible { transform: none; opacity: 1; }
.toast--success { border-left-color: #4CC48A; }
.toast--error { border-left-color: #F0857D; }
.toast svg { width: 20px; height: 20px; flex: none; margin-top: .1rem; }
.toast p { margin: 0; font-size: .98rem; }
.toast button { margin-left: auto; background: transparent; border: 0; color: #AEBAC5; width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; }
.toast button:hover { color: #fff; background: rgba(255,255,255,.1); }
.toast button svg { width: 14px; height: 14px; margin: 0; }

/* --------------------------------------------------------------------------
   11. Footer
   -------------------------------------------------------------------------- */
.site-footer { background: var(--ink); color: #C9D3DC; padding-block: clamp(3rem, 5vw, 4.5rem) 1.5rem; }
.site-footer a { color: #E4EAEF; text-decoration: none; }
.site-footer a:hover { color: var(--blue); text-decoration: underline; }
.footer-grid { display: grid; gap: 2.5rem 2rem; }
@media (min-width: 641px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1025px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; } }
.footer-grid h3 { color: #fff; font-size: 1rem; margin-bottom: .9rem; }
.footer-grid ul { list-style: none; display: grid; gap: .55rem; }
.footer-grid address { font-style: normal; }
.footer-brand p { margin-top: 1rem; max-width: 34ch; color: #AEBAC5; }
.footer-brand .badges { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.25rem; }
.badge { display: inline-flex; align-items: center; gap: .4rem; padding: .3rem .7rem; border-radius: 999px; border: 1px solid rgba(255,255,255,.18); font-size: .85rem; color: #E4EAEF; font-family: var(--font-display); font-weight: 500; }
.badge svg { width: 14px; height: 14px; color: var(--blue); }
.footer-contact li { display: grid; gap: .1rem; }
.footer-contact li span { font-size: .85rem; color: #8EA0AF; }
.footer-contact li a { font-family: var(--font-display); font-weight: 600; color: #fff; font-size: 1.1rem; }
.footer-bottom { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.12); display: flex; flex-wrap: wrap; gap: 1rem 2rem; align-items: center; justify-content: space-between; font-size: .92rem; color: #8EA0AF; }
.footer-bottom ul { display: flex; flex-wrap: wrap; gap: 1.25rem; list-style: none; }
.footer-bottom a { color: #C9D3DC; }
.social { display: flex; gap: .5rem; }
.social a { width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(255,255,255,.18); display: grid; place-items: center; }
.social a:hover { border-color: var(--blue); background: rgba(0,164,228,.12); }
.social svg { width: 18px; height: 18px; fill: currentColor; }

/* --------------------------------------------------------------------------
   12. 404
   -------------------------------------------------------------------------- */
.notfound { min-height: 60vh; display: grid; place-items: center; text-align: left; padding-block: var(--section-y); position: relative; overflow: hidden; }
.notfound__inner { position: relative; z-index: 1; display: grid; gap: 1.5rem; max-width: 46ch; }
.notfound .watermark { left: auto; right: 6%; top: 50%; transform: translateY(-50%); width: min(30vw, 400px); opacity: .05; }
.notfound__code { font-family: var(--font-display); font-weight: 600; color: var(--blue-deep); font-size: 1.1rem; }
.notfound__links { display: flex; flex-wrap: wrap; gap: .75rem; }

/* --------------------------------------------------------------------------
   13. Scroll reveals & motion
   -------------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity var(--t-slow) var(--ease), transform var(--t-slow) var(--ease); will-change: opacity, transform; }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 80ms; }
.reveal[data-delay="2"] { transition-delay: 160ms; }
.reveal[data-delay="3"] { transition-delay: 240ms; }
.reveal[data-delay="4"] { transition-delay: 320ms; }
.reveal[data-delay="5"] { transition-delay: 400ms; }

[id] { scroll-margin-top: calc(var(--header-h) + 1.5rem); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: 1ms !important; animation-duration: 1ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* No-JS: keep everything visible */
.no-js .reveal { opacity: 1; transform: none; }
.no-js .menu-toggle { display: none; }
.no-js .nav { display: block; }

/* Print */
@media print {
  .site-header, .site-footer, .drawer, .toasts, .modal, .cta-band { display: none !important; }
  body { color: #000; }
  a { color: #000; text-decoration: underline; }
}
