/* ============================================================
   Aster Health — design system
   Evergreen ink · porcelain · sage · honey
   Sentient (display serif) · Switzer (body) · Spline Sans Mono
   ============================================================ */

:root {
  --ink: #142b25;
  --pine: #1e4038;
  --pine-deep: #12291f;
  --pine-soft: #295045;
  --moss: #5d7a6e;
  --sage: #c7d8cb;
  --sage-dim: #93ac9c;
  --porcelain: #f4f3ec;
  --paper: #fbfaf4;
  --linen: #eae8db;
  --line: #ddddca;
  --honey: #c9913f;
  --honey-deep: #966616;

  --serif: "Sentient", Georgia, "Times New Roman", serif;
  --sans: "Switzer", -apple-system, "Segoe UI", sans-serif;
  --mono: "Spline Sans Mono", ui-monospace, "SF Mono", monospace;

  --radius: 20px;
  --shadow: 0 20px 50px -18px rgba(18, 41, 31, 0.25);
  --header-h: 76px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--porcelain);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3 { margin: 0; font-family: var(--serif); font-weight: 400; line-height: 1.08; letter-spacing: -0.01em; }
p { margin: 0; }
a { color: inherit; }

em { font-style: italic; }

::selection { background: var(--pine); color: var(--porcelain); }

:focus-visible { outline: 2px solid var(--honey); outline-offset: 3px; border-radius: 4px; }

.container { max-width: 1180px; margin-inline: auto; padding-inline: clamp(1.25rem, 4vw, 2.5rem); }

.mono {
  font-family: var(--mono);
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 400;
}

.eyebrow { color: var(--honey-deep); margin-bottom: 1.4rem; }

.section { padding-block: clamp(5rem, 11vw, 8.5rem); }

.section-head { max-width: 40rem; margin-bottom: clamp(2.75rem, 6vw, 4.5rem); }
.section-head h2 { font-size: clamp(2.1rem, 4.4vw, 3.3rem); }
.section-sub { margin-top: 1.2rem; color: var(--moss); font-size: 1.125rem; }

.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;
}

.skip-link {
  position: fixed; top: -100%; left: 1rem; z-index: 200;
  background: var(--ink); color: var(--porcelain);
  padding: 0.7em 1.2em; border-radius: 8px; text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

/* ---------- buttons ---------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.95em 1.8em;
  border-radius: 999px;
  white-space: nowrap;
  font-family: var(--sans); font-weight: 500; font-size: 0.9375rem;
  text-decoration: none; letter-spacing: 0.01em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}
.btn-solid { background: var(--honey); color: var(--pine-deep); }
.btn-solid:hover { background: #d69f4e; transform: translateY(-2px); box-shadow: 0 12px 26px -12px rgba(201, 145, 63, 0.65); }
.btn-ghost { border: 1px solid color-mix(in srgb, currentColor 45%, transparent); }
.btn-ghost:hover { border-color: currentColor; transform: translateY(-2px); }
.btn-small { padding: 0.7em 1.4em; font-size: 0.875rem; }

/* ---------- header ---------- */

.site-header {
  position: fixed; inset-inline: 0; top: 0; z-index: 100;
  color: var(--porcelain);
  transition: background-color 0.35s ease, color 0.35s ease, box-shadow 0.35s ease;
}
.site-header.scrolled {
  background: color-mix(in srgb, var(--porcelain) 92%, transparent);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  color: var(--ink);
  box-shadow: 0 1px 0 rgba(20, 43, 37, 0.08);
}

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; height: var(--header-h);
}

.brand { display: inline-flex; align-items: center; gap: 0.6rem; text-decoration: none; }
.brand-mark { width: 26px; height: 26px; fill: currentColor; flex: none; }
.brand-name { font-family: var(--serif); font-size: 1.35rem; letter-spacing: 0.005em; }

.site-nav { display: flex; gap: 2rem; }
.site-nav a {
  text-decoration: none; font-size: 0.9375rem; font-weight: 500;
  opacity: 0.85; transition: opacity 0.2s;
}
.site-nav a:hover { opacity: 1; }

.header-actions { display: flex; align-items: center; gap: 1.4rem; }
.header-phone { text-decoration: none; opacity: 0.85; }
.header-phone:hover { opacity: 1; }

.nav-toggle {
  display: none; flex-direction: column; gap: 6px;
  background: none; border: 0; padding: 10px 4px; cursor: pointer;
}
.nav-toggle span { width: 24px; height: 1.5px; background: currentColor; transition: transform 0.3s, opacity 0.3s; }
.nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.75px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.75px) rotate(-45deg); }

.mobile-menu {
  display: none;
  background: var(--pine-deep); color: var(--porcelain);
  padding: 1rem 1.5rem 2rem;
}
.mobile-menu nav { display: flex; flex-direction: column; gap: 1.1rem; }
.mobile-menu a { text-decoration: none; font-size: 1.15rem; font-family: var(--serif); }
.mobile-menu .mobile-phone { font-family: var(--mono); font-size: 0.875rem; color: var(--sage); }
.mobile-menu .btn { align-self: flex-start; font-family: var(--sans); font-size: 0.9375rem; }
.site-header.menu-open .mobile-menu { display: block; }
.site-header.menu-open { background: var(--pine-deep); color: var(--porcelain); box-shadow: none; }

/* ---------- hero ---------- */

.hero {
  position: relative;
  background:
    radial-gradient(120% 90% at 85% 0%, rgba(201, 145, 63, 0.10), transparent 55%),
    radial-gradient(100% 80% at 10% 100%, rgba(18, 41, 31, 0.5), transparent 60%),
    var(--pine);
  color: var(--porcelain);
  padding-top: calc(var(--header-h) + clamp(3rem, 7vw, 5.5rem));
  overflow: clip;
}

.hero-aster {
  position: absolute; top: -12%; right: -8%;
  width: min(56vw, 720px); height: min(56vw, 720px);
  fill: var(--sage); opacity: 0.06;
  animation: slow-spin 240s linear infinite;
  pointer-events: none;
}
@keyframes slow-spin { to { transform: rotate(360deg); } }

.hero-grid {
  position: relative;
  display: grid; grid-template-columns: 1.05fr 0.9fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
  padding-bottom: clamp(3.5rem, 7vw, 6rem);
}

.hero .eyebrow { color: var(--honey); }

.hero-title {
  font-size: clamp(2.9rem, 6.6vw, 5.1rem);
  line-height: 1.02;
}
.hero-line { display: block; }
.hero-title em { color: var(--honey); }

.hero-sub {
  margin-top: 1.8rem; max-width: 30rem;
  font-size: 1.155rem; line-height: 1.65;
  color: var(--sage);
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.4rem; }

.hero-media { position: relative; }
.hero-figure { position: relative; margin: 0; }
.hero-figure img {
  width: 100%; aspect-ratio: 3 / 4; object-fit: cover;
  border-radius: calc(var(--radius) + 6px);
  box-shadow: var(--shadow);
}
.hero-chip {
  position: absolute; left: 1.1rem; bottom: 1.1rem;
  display: inline-flex; align-items: center; gap: 0.55rem;
  background: color-mix(in srgb, var(--porcelain) 94%, transparent);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: var(--ink);
  padding: 0.65em 1em; border-radius: 12px;
  font-size: 0.72rem; letter-spacing: 0.08em;
}
.chip-mark { width: 14px; height: 14px; fill: var(--honey-deep); flex: none; }

.hero-facts { border-top: 1px solid rgba(199, 216, 203, 0.22); position: relative; }
.facts {
  list-style: none; margin: 0; padding: 1.35rem 0;
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  color: var(--sage);
}
.facts li { display: flex; align-items: center; gap: 1rem; }
.facts li + li::before { content: "✳\FE0E"; color: var(--honey); font-size: 0.9em; }

/* hero load-in */
.hero-el { animation: rise 0.9s cubic-bezier(0.2, 0.65, 0.25, 1) both; animation-delay: calc(var(--d) * 95ms + 80ms); }
@keyframes rise {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: none; }
}

/* ---------- why ---------- */

.why-grid {
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: start;
}
.statement { font-size: clamp(1.75rem, 3.4vw, 2.7rem); line-height: 1.22; }
.statement em { color: var(--honey-deep); }

.why-support { padding-top: clamp(0rem, 4vw, 3.4rem); color: var(--moss); font-size: 1.1rem; }
.why-support p { color: var(--ink); }

.proof-list { list-style: none; margin: 2.2rem 0 0; padding: 0; display: grid; gap: 1.15rem; }
.proof-list li {
  display: flex; gap: 0.9rem; align-items: baseline;
  color: var(--ink); font-size: 1rem; line-height: 1.55;
  padding-top: 1.15rem; border-top: 1px solid var(--line);
}
.li-mark { width: 15px; height: 15px; fill: var(--honey-deep); flex: none; transform: translateY(2px); }

/* ---------- care ---------- */

.care { background: var(--paper); border-block: 1px solid var(--line); }

.care-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.care-card {
  background: var(--porcelain);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.9rem 2.1rem;
  transition: transform 0.35s cubic-bezier(0.2, 0.65, 0.25, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}
.care-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: color-mix(in srgb, var(--honey) 45%, var(--line));
}
.care-icon {
  width: 42px; height: 42px;
  fill: none; stroke: var(--pine); stroke-width: 1.5;
  stroke-linecap: round; stroke-linejoin: round;
  margin-bottom: 1.4rem;
  transition: stroke 0.35s ease;
}
.care-card:hover .care-icon { stroke: var(--honey-deep); }
.care-card h3 { font-size: 1.35rem; margin-bottom: 0.65rem; }
.care-card p { color: var(--moss); font-size: 0.9875rem; line-height: 1.65; }

/* ---------- visit (dark timeline) ---------- */

.visit { background: var(--pine); color: var(--porcelain); position: relative; overflow: clip; }
.visit .container {
  display: grid; grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.visit .section-head { margin-bottom: 0; position: sticky; top: calc(var(--header-h) + 3rem); }
.section-head--dark h2 { color: var(--porcelain); }
.visit .eyebrow { color: var(--honey); }

.timeline {
  list-style: none; margin: 0; padding: 0;
  position: relative;
  max-width: 46rem;
}
.timeline::before {
  content: "";
  position: absolute; left: calc(5.5rem + 19px); top: 14px; bottom: 14px;
  width: 1px; background: rgba(199, 216, 203, 0.28);
  transform: scaleY(0); transform-origin: top;
  transition: transform 1.4s cubic-bezier(0.3, 0.4, 0.2, 1) 0.2s;
}
.timeline.in::before { transform: scaleY(1); }

.tl-row {
  display: grid; grid-template-columns: 5.5rem 40px 1fr;
  gap: 0 1.4rem;
  padding-block: 1.6rem;
}
.tl-time { color: var(--honey); padding-top: 0.45rem; text-align: right; }
.tl-node {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--pine-soft);
  display: grid; place-items: center;
  border: 1px solid rgba(199, 216, 203, 0.25);
  position: relative; z-index: 1;
}
.tl-node svg { width: 17px; height: 17px; fill: var(--sage); }
.tl-body h3 { font-size: 1.45rem; margin-bottom: 0.5rem; }
.tl-body p { color: var(--sage-dim); max-width: 32rem; line-height: 1.65; }

/* ---------- doctors ---------- */

.doctor-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
}
.doctor-card { display: flex; flex-direction: column; }
.doctor-photo {
  margin: 0; overflow: hidden; border-radius: var(--radius);
  aspect-ratio: 4 / 4.6;
}
.doctor-photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: top;
  transition: transform 0.8s cubic-bezier(0.2, 0.65, 0.25, 1);
}
.doctor-card:hover .doctor-photo img { transform: scale(1.035); }
.doctor-info { padding: 1.6rem 0.4rem 0; }
.doctor-info h3 { font-size: 1.75rem; }
.doctor-role { color: var(--honey-deep); margin: 0.5rem 0 1rem; }
.doctor-bio { color: var(--ink); line-height: 1.65; }
.doctor-focus { margin-top: 1rem; color: var(--moss); font-size: 0.9375rem; line-height: 1.6; }
.focus-label { display: block; color: var(--honey-deep); font-size: 0.72rem; margin-bottom: 0.3rem; }

/* ---------- office ---------- */

.office { background: var(--paper); border-block: 1px solid var(--line); }

.office-grid {
  display: grid; grid-template-columns: repeat(12, 1fr);
  gap: 1.25rem;
}
.office-item { margin: 0; }
.office-item--wide { grid-column: 1 / 8; }
.office-item:nth-of-type(2) { grid-column: 8 / 13; }
.office-item:nth-of-type(3) { grid-column: 6 / 13; }
.office-quote { grid-column: 1 / 6; }

.office-item img {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: var(--radius);
  aspect-ratio: 3 / 2.1;
}
.office-item:nth-of-type(2) img { aspect-ratio: auto; height: calc(100% - 2rem); }
.office-item figcaption { margin-top: 0.7rem; color: var(--moss); font-size: 0.72rem; }

.office-quote {
  margin: 0; background: var(--linen); border-radius: var(--radius);
  padding: 2.4rem 2.2rem;
  display: flex; flex-direction: column; justify-content: center; gap: 1.2rem;
}
.quote-mark { width: 22px; height: 22px; fill: var(--honey-deep); }
.office-quote p { font-family: var(--serif); font-size: clamp(1.3rem, 2vw, 1.65rem); line-height: 1.35; }
.office-quote footer { color: var(--moss); font-size: 0.72rem; }

/* ---------- voices ---------- */

.voices { padding-block: clamp(4rem, 8vw, 6.5rem); }
.voices-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
}
.voice { margin: 0; padding-top: 1.6rem; border-top: 1px solid var(--line); }
.voice p {
  font-family: var(--serif); font-style: italic;
  font-size: 1.22rem; line-height: 1.45;
}
.voice footer { margin-top: 1.1rem; color: var(--moss); font-size: 0.72rem; }

/* ---------- practical (insurance + faq) ---------- */

.practical { background: var(--linen); border-top: 1px solid var(--line); }
.practical-grid {
  display: grid; grid-template-columns: 1fr 1.15fr;
  gap: clamp(3rem, 7vw, 6rem);
  align-items: start;
}
.practical h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); margin-bottom: 1.2rem; }
.insurance p { color: var(--ink); max-width: 26rem; }
.insurance p em { color: var(--honey-deep); }

.plan-list {
  list-style: none; margin: 2.2rem 0 0; padding: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  color: var(--moss);
}
.plan-list li { padding: 0.85rem 0; border-bottom: 1px solid var(--line); font-size: 0.75rem; }

.faq-list { border-top: 1px solid var(--line); margin-top: 2.2rem; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item h3 { font-family: var(--sans); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  width: 100%; padding: 1.25rem 0.2rem;
  background: none; border: 0; cursor: pointer;
  font-family: var(--sans); font-size: 1.05rem; font-weight: 500;
  color: var(--ink); text-align: left;
}
.faq-icon { position: relative; width: 14px; height: 14px; flex: none; }
.faq-icon::before, .faq-icon::after {
  content: ""; position: absolute; inset: 0; margin: auto;
  background: var(--honey-deep); transition: transform 0.35s ease;
}
.faq-icon::before { width: 14px; height: 1.5px; }
.faq-icon::after { width: 1.5px; height: 14px; }
.faq-item.open .faq-icon::after { transform: rotate(90deg); }

.faq-a {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s cubic-bezier(0.2, 0.65, 0.25, 1);
}
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a-inner { overflow: hidden; }
.faq-a-inner p { padding: 0 2.5rem 1.4rem 0.2rem; color: var(--moss); line-height: 1.65; }

/* ---------- book ---------- */

.book {
  position: relative; overflow: clip;
  background:
    radial-gradient(110% 100% at 90% 110%, rgba(201, 145, 63, 0.13), transparent 55%),
    var(--pine-deep);
  color: var(--porcelain);
}
.book-aster {
  position: absolute; bottom: -22%; left: -7%;
  width: min(46vw, 560px); height: min(46vw, 560px);
  fill: var(--sage); opacity: 0.05;
  animation: slow-spin 240s linear infinite reverse;
  pointer-events: none;
}
.book-grid {
  position: relative;
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(3rem, 7vw, 6rem);
  align-items: center;
}
.book .eyebrow { color: var(--honey); }
.book h2 { font-size: clamp(2.3rem, 4.8vw, 3.6rem); }
.book-sub { margin-top: 1.4rem; color: var(--sage); font-size: 1.125rem; max-width: 28rem; }
.book-ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.4rem; }

.book-card {
  background: var(--porcelain); color: var(--ink);
  border-radius: calc(var(--radius) + 4px);
  padding: clamp(1.8rem, 3vw, 2.6rem);
  box-shadow: var(--shadow);
}
.book-card-label { color: var(--honey-deep); margin: 0 0 1.4rem; }
.hours { width: 100%; border-collapse: collapse; font-size: 0.8125rem; }
.hours th { text-align: left; font-weight: 400; color: var(--moss); padding: 0.6rem 0; border-bottom: 1px solid var(--line); }
.hours td { text-align: right; padding: 0.6rem 0; border-bottom: 1px solid var(--line); }
.book-card address { font-style: normal; margin-top: 1.5rem; line-height: 1.6; }
.book-map-link { display: inline-block; margin-top: 1rem; color: var(--honey-deep); text-decoration: none; border-bottom: 1px solid color-mix(in srgb, var(--honey-deep) 45%, transparent); padding-bottom: 2px; }
.book-map-link:hover { border-color: var(--honey-deep); }

/* ---------- footer ---------- */

.site-footer { background: var(--pine-deep); color: var(--sage); }
.footer-grid {
  display: grid; grid-template-columns: 1.2fr 1fr 1fr;
  gap: 3rem;
  padding-block: clamp(3.5rem, 6vw, 5rem) 3rem;
}
.footer-brand .brand { color: var(--porcelain); }
.footer-tag { margin-top: 1.2rem; font-family: var(--serif); font-size: 1.15rem; line-height: 1.45; color: var(--sage); }

.footer-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem 2rem; align-content: start; }
.footer-nav a { text-decoration: none; font-size: 0.9375rem; opacity: 0.8; transition: opacity 0.2s; }
.footer-nav a:hover { opacity: 1; }

.footer-contact { display: grid; gap: 0.8rem; align-content: start; color: var(--sage-dim); font-size: 0.75rem; }
.footer-contact a { text-decoration: none; }
.footer-contact a:hover { color: var(--sage); }

.footer-legal {
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  padding-block: 1.6rem 2rem;
  border-top: 1px solid rgba(199, 216, 203, 0.15);
  color: var(--sage-dim); font-size: 0.6875rem;
}

/* ---------- scroll reveals ---------- */

.reveal, .reveal-stagger > * {
  opacity: 0; transform: translateY(26px);
  transition: opacity 0.85s ease, transform 0.85s cubic-bezier(0.2, 0.65, 0.25, 1);
}
.reveal.in, .reveal-stagger.in > * { opacity: 1; transform: none; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 90ms; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 180ms; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 270ms; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: 360ms; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: 450ms; }

/* ---------- responsive ---------- */

@media (max-width: 980px) {
  .site-nav, .header-phone { display: none; }
  .nav-toggle { display: flex; }

  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { max-width: 480px; }

  .why-grid, .doctor-grid, .practical-grid, .book-grid, .visit .container { grid-template-columns: 1fr; }
  .visit .section-head { position: static; margin-bottom: 2.5rem; }
  .why-support { padding-top: 0; }

  .care-grid { grid-template-columns: 1fr 1fr; }
  .voices-grid { grid-template-columns: 1fr; gap: 2rem; }

  .office-grid { grid-template-columns: 1fr; }
  .office-item--wide, .office-item:nth-of-type(2), .office-item:nth-of-type(3), .office-quote { grid-column: auto; }
  .office-item:nth-of-type(2) img { height: auto; aspect-ratio: 1 / 1; }

  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 620px) {
  .care-grid { grid-template-columns: 1fr; }
  .header-actions .btn-small { padding: 0.6em 1.1em; font-size: 0.8125rem; }
  .facts { flex-direction: column; gap: 0.7rem; padding-block: 1.2rem; }
  .facts li + li::before { display: none; }
  .facts li::before { content: "✳\FE0E"; color: var(--honey); font-size: 0.9em; }
  .tl-row { grid-template-columns: 40px 1fr; gap: 0 1.1rem; }
  .tl-time { grid-column: 2; text-align: left; padding-top: 0; order: -1; margin-bottom: 0.4rem; }
  .tl-node { grid-row: 2; }
  .tl-body { grid-row: 2; }
  .timeline::before { left: 19px; }
  .hero-chip { left: 0.8rem; bottom: 0.8rem; font-size: 0.62rem; }
}

/* ---------- reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-el { animation: none; }
  .hero-aster, .book-aster { animation: none; }
  .reveal, .reveal-stagger > * { opacity: 1; transform: none; transition: none; }
  .timeline::before { transform: none; transition: none; }
  .care-card, .btn, .doctor-photo img { transition: none; }
}
