/* ─── Acme Drug Mart · v3 design system ──────────────────
   Bricolage Grotesque + warm-rust-on-warm-cream palette.
   Used by every page in the preview.
*/

/* ─── Tokens ────────────────────────────────────────── */
:root {
  --bg:         oklch(0.985 0.008 60);
  --surface:    oklch(0.965 0.010 60);
  --rule:       oklch(0.905 0.010 60);
  --ink:        oklch(0.205 0.015 50);
  --ink-soft:   oklch(0.450 0.012 55);
  --brand:      oklch(0.490 0.135 30);
  --brand-deep: oklch(0.380 0.115 28);
  --brand-on:   oklch(0.985 0.008 60);
  --accent:     oklch(0.760 0.115 78);

  --t-eyebrow:  clamp(0.78rem, 0.74rem + 0.20vw, 0.92rem);
  --t-body:     clamp(1rem,    0.94rem + 0.30vw, 1.18rem);
  --t-lede:     clamp(1.18rem, 1.05rem + 0.65vw, 1.55rem);
  --t-h3:       clamp(1.45rem, 1.28rem + 0.80vw, 1.95rem);
  --t-h2:       clamp(2.10rem, 1.70rem + 2.00vw, 3.60rem);
  --t-h1:       clamp(3.20rem, 2.40rem + 4.20vw, 7.20rem);
  --t-num:      clamp(2.40rem, 1.80rem + 3.00vw, 4.80rem);

  --s-1: clamp(0.45rem, 0.4rem + 0.2vw, 0.55rem);
  --s-2: clamp(0.85rem, 0.7rem + 0.5vw, 1.10rem);
  --s-3: clamp(1.35rem, 1.1rem + 1.0vw, 2.00rem);
  --s-4: clamp(2.20rem, 1.7rem + 2.0vw, 3.50rem);
  --s-5: clamp(3.60rem, 2.6rem + 4.0vw, 6.40rem);
  --s-6: clamp(5.50rem, 3.6rem + 7.5vw, 11.0rem);

  --ease: cubic-bezier(.165, .84, .44, 1);
  --max:  76rem;
  --max-narrow: 56rem;
  --gut:  clamp(1.25rem, 0.8rem + 2.0vw, 2.50rem);
}

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Bricolage Grotesque", system-ui, sans-serif;
  font-size: var(--t-body);
  font-weight: 400;
  line-height: 1.55;
  font-variation-settings: "wdth" 100;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ─── A11y plumbing ─────────────────────────────────── */
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
.skip {
  position: absolute; left: -10000px; top: 0;
  background: var(--ink); color: var(--bg);
  padding: var(--s-2) var(--s-3); z-index: 100;
  font-weight: 600; text-decoration: none;
}
.skip:focus { left: var(--s-3); top: var(--s-3); }
:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ─── Header ────────────────────────────────────────── */
header.site {
  position: sticky; top: 0; z-index: 10;
  background: color-mix(in oklab, var(--bg) 90%, transparent);
  backdrop-filter: saturate(140%);
  border-bottom: 1px solid var(--rule);
}
header.site .row {
  max-width: var(--max);
  margin: 0 auto;
  padding: var(--s-2) var(--gut);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--s-3);
  min-height: 64px;
}
.logo {
  display: inline-flex; align-items: center; gap: var(--s-2);
  color: var(--ink); text-decoration: none;
  font-weight: 700; font-size: 1.05rem; letter-spacing: -0.01em;
  min-height: 44px;
  padding: 0 0.25rem;
}
.logo svg { width: 28px; height: 28px; }
nav.primary ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; gap: var(--s-3); justify-content: center;
}
nav.primary a {
  color: var(--ink); text-decoration: none;
  font-weight: 500; font-size: 0.96rem;
  display: inline-flex; align-items: center;
  min-height: 44px;
  padding: 0 0.4rem;
  border-bottom: 1px solid transparent;
  transition: color .25s var(--ease), border-color .25s var(--ease);
}
nav.primary a:hover { color: var(--brand); border-color: var(--brand); }
nav.primary a[aria-current="page"] {
  color: var(--brand);
  border-color: var(--brand);
}

.header-cta {
  display: inline-flex; align-items: center; gap: var(--s-2);
  background: var(--brand); color: var(--brand-on);
  padding: 0.7rem 1.15rem;
  border-radius: 999px;
  text-decoration: none; font-weight: 600; font-size: 0.95rem;
  min-height: 44px;
  transition: background .25s var(--ease);
}
.header-cta:hover { background: var(--brand-deep); }
.header-cta svg { width: 18px; height: 18px; }

.hamburger {
  display: none;
  width: 44px; height: 44px;
  background: transparent; border: 1px solid var(--rule);
  border-radius: 10px; cursor: pointer;
  align-items: center; justify-content: center;
}
.hamburger svg { width: 22px; height: 22px; color: var(--ink); }

@media (max-width: 820px) {
  nav.primary { display: none; }
  .hamburger { display: inline-flex; }
  header.site .row { grid-template-columns: auto 1fr auto; }
}

/* ─── Hero · scroll-pinned film ─────────────────────── */
.hero-film {
  position: relative;
  height: 130vh;
  background: oklch(0.10 0.012 35);
  margin: 0;
}
.hero-film .pin {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  isolation: isolate;
}
.hero-film iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
  z-index: 1;
}
.hero-film .veil {
  position: absolute; inset: 0;
  z-index: 2;
  background: linear-gradient(
    180deg,
    transparent 0%,
    transparent 80%,
    oklch(0.10 0.014 30 / 0.55) 100%
  );
  pointer-events: none;
}
.film-phone {
  position: absolute;
  top: var(--s-3);
  right: var(--s-3);
  z-index: 4;
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: oklch(0.10 0.014 30 / 0.85);
  color: var(--accent);
  border: 1px solid oklch(0.85 0.01 60 / 0.20);
  padding: 0.7rem 1.1rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  min-height: 44px;
  transition: background .35s var(--ease), color .35s var(--ease);
}
.film-phone:hover {
  background: var(--accent);
  color: oklch(0.15 0.014 30);
}
.film-phone svg { width: 16px; height: 16px; }

@media (prefers-reduced-motion: reduce) {
  .hero-film {
    height: auto;
    min-height: 0;
    background: var(--bg);
  }
  .hero-film .pin {
    position: static;
    height: auto;
  }
  .hero-film iframe,
  .hero-film .veil,
  .film-phone { display: none; }
}

/* ─── Hero · typographic (every page except home) ───── */
.hero-page {
  padding: var(--s-6) var(--gut) var(--s-5);
  max-width: var(--max);
  margin: 0 auto;
}
.hero-page .crumbs {
  display: flex; gap: 0.5rem;
  font-size: 0.85rem; color: var(--ink-soft);
  margin: 0 0 var(--s-3);
  flex-wrap: wrap;
}
.hero-page .crumbs a {
  color: var(--ink-soft);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
.hero-page .crumbs a:hover { color: var(--brand); border-color: var(--brand); }
.hero-page .crumbs span[aria-current] { color: var(--ink); }
.hero-page .crumbs::before { content: ""; }

.hero-page h1 {
  font-size: clamp(2.4rem, 1.8rem + 3vw, 5rem);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: -0.03em;
  margin: 0 0 var(--s-3);
  font-variation-settings: "wdth" 110, "opsz" 96;
  color: var(--ink);
  max-width: 18ch;
}
.hero-page h1 em {
  font-style: italic;
  color: var(--brand);
  font-weight: 800;
}
.hero-page .lede {
  font-size: var(--t-lede);
  line-height: 1.40;
  color: var(--ink-soft);
  max-width: 50ch;
  margin: 0 0 var(--s-4);
}

/* ─── Intro · home page only ─────────────────────────── */
.intro {
  padding: var(--s-6) var(--gut) var(--s-5);
  max-width: var(--max);
  margin: 0 auto;
  display: block;
}
.intro-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: var(--s-5);
  align-items: end;
}
@media (max-width: 900px) {
  .intro-inner { grid-template-columns: 1fr; gap: var(--s-4); }
}
.eyebrow {
  font-size: var(--t-eyebrow);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: var(--brand);
  margin: 0 0 var(--s-3);
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.eyebrow::before {
  content: ""; display: inline-block;
  width: 28px; height: 1px; background: var(--brand);
}
h1 {
  font-size: var(--t-h1);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.035em;
  margin: 0 0 var(--s-3);
  font-variation-settings: "wdth" 110, "opsz" 96;
  color: var(--ink);
  max-width: 14ch;
}
h1 em {
  font-style: italic;
  color: var(--brand);
  font-weight: 800;
}
.lede {
  font-size: var(--t-lede);
  line-height: 1.40;
  color: var(--ink-soft);
  max-width: 38ch;
  margin: 0 0 var(--s-4);
}

.cta-row {
  display: flex; flex-wrap: wrap;
  gap: var(--s-2);
}
.btn {
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.95rem 1.45rem;
  min-height: 48px;
  border-radius: 999px;
  font-weight: 600; font-size: 1rem;
  text-decoration: none; cursor: pointer;
  border: 1px solid transparent;
  transition: transform .35s var(--ease),
              background .35s var(--ease),
              color .35s var(--ease),
              border-color .35s var(--ease);
}
.btn.primary {
  background: var(--brand); color: var(--brand-on);
}
.btn.primary:hover {
  background: var(--brand-deep);
  transform: translateY(-1px);
}
.btn.ghost {
  background: transparent; color: var(--ink);
  border-color: var(--ink);
}
.btn.ghost:hover { background: var(--ink); color: var(--bg); }
.btn svg { width: 18px; height: 18px; }

.hero-meta {
  border-left: 1px solid var(--rule);
  padding-left: var(--s-3);
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.55;
}
.hero-meta dt {
  font-size: 0.78rem; text-transform: uppercase;
  letter-spacing: 0.15em; font-weight: 600;
  color: var(--ink); margin-top: var(--s-2);
}
.hero-meta dt:first-child { margin-top: 0; }
.hero-meta dd { margin: 0.15rem 0 0; }
.hero-meta a {
  color: inherit; text-decoration: none;
  border-bottom: 1px solid var(--rule);
  display: inline-flex; align-items: center;
  min-height: 44px;
}
.hero-meta a:hover { color: var(--brand); border-color: var(--brand); }

.trust {
  margin-top: var(--s-4);
  padding-top: var(--s-3);
  border-top: 1px solid var(--rule);
  display: flex; flex-wrap: wrap; gap: var(--s-3);
  color: var(--ink-soft);
  font-size: 0.92rem;
}
.trust .t-item {
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.trust .stars {
  color: var(--brand);
  font-weight: 700;
  letter-spacing: 0.05em;
}
.trust .sep {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--rule);
  align-self: center;
}

/* ─── Why section · DISTILLED ──────────────────────── */
.why {
  background: var(--surface);
  padding: var(--s-6) var(--gut);
  content-visibility: auto;
  contain-intrinsic-size: 800px;
}
.why-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.6fr);
  gap: var(--s-5);
  align-items: start;
}
@media (max-width: 820px) {
  .why-inner { grid-template-columns: 1fr; gap: var(--s-4); }
}
h2 {
  font-size: var(--t-h2);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.025em;
  margin: 0 0 var(--s-3);
  font-variation-settings: "wdth" 105;
  max-width: 18ch;
}
.why ol {
  list-style: none; margin: 0; padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-3);
}
.why li {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: var(--s-3);
  row-gap: 0.4rem;
  padding: var(--s-3) 0;
  border-top: 1px solid var(--rule);
}
.why li:last-child { border-bottom: 1px solid var(--rule); }
.why .num {
  font-size: var(--t-num);
  font-weight: 800;
  line-height: 0.85;
  color: var(--brand);
  font-variation-settings: "wdth" 75;
  grid-row: span 2;
  align-self: start;
}
.why h3 {
  font-size: var(--t-h3);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.018em;
  margin: 0;
}
.why p {
  margin: 0;
  color: var(--ink-soft);
  max-width: 50ch;
}

/* ─── Services grid ─────────────────────────────────── */
.services {
  padding: var(--s-6) var(--gut);
  max-width: var(--max);
  margin: 0 auto;
  content-visibility: auto;
  contain-intrinsic-size: 900px;
}
.services-head {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: var(--s-4);
  align-items: end;
  margin-bottom: var(--s-4);
}
@media (max-width: 820px) {
  .services-head { grid-template-columns: 1fr; }
}
.services-head p {
  color: var(--ink-soft);
  margin: 0;
  max-width: 38ch;
  font-size: var(--t-lede);
  line-height: 1.4;
}
.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.svc {
  background: var(--bg);
  padding: var(--s-4) var(--s-3);
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: var(--s-2);
  text-decoration: none;
  color: var(--ink);
  transition: background .35s var(--ease);
  min-height: 280px;
}
.svc:hover { background: var(--surface); }
.svc-icon {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--brand);
  border: 1px solid var(--rule);
  border-radius: 50%;
}
.svc-icon svg { width: 22px; height: 22px; }
.svc h3 {
  font-size: 1.30rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.012em;
  line-height: 1.2;
}
.svc p {
  margin: 0; color: var(--ink-soft);
  font-size: 0.95rem; line-height: 1.55;
  max-width: 35ch;
}
.svc-more {
  font-size: 0.92rem;
  color: var(--brand);
  font-weight: 600;
  display: inline-flex; align-items: center; gap: 0.35rem;
  min-height: 32px;
}
.svc-more::after {
  content: "→"; transition: transform .35s var(--ease);
}
.svc:hover .svc-more::after { transform: translateX(4px); }

.feature {
  grid-column: span 2;
  background: var(--ink);
  color: var(--bg);
  padding: var(--s-5) var(--s-4);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: end;
  gap: var(--s-4);
}
@media (max-width: 820px) {
  .feature { grid-column: span 1; grid-template-columns: 1fr; }
}
.feature .label {
  font-size: 0.78rem; text-transform: uppercase;
  letter-spacing: 0.15em; font-weight: 600;
  color: var(--accent);
  margin-bottom: var(--s-2);
}
.feature h3 {
  font-size: clamp(1.6rem, 1.2rem + 1.4vw, 2.4rem);
  font-weight: 700;
  line-height: 1.05;
  margin: 0 0 var(--s-2);
  letter-spacing: -0.02em;
  font-variation-settings: "wdth" 105;
  color: var(--bg);
}
.feature p {
  margin: 0 0 var(--s-3); color: oklch(0.85 0.01 60);
  max-width: 40ch;
}
.feature .btn.primary {
  background: var(--accent); color: var(--ink);
}
.feature .btn.primary:hover { background: var(--bg); }

/* ─── GLP-1 detail band ──────────────────────────────── */
.glp {
  background: var(--bg);
  padding: var(--s-6) var(--gut);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  content-visibility: auto;
  contain-intrinsic-size: 700px;
}
.glp-inner { max-width: var(--max); margin: 0 auto; }
.glp-head {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: var(--s-4);
  align-items: end;
  margin-bottom: var(--s-4);
}
@media (max-width: 820px) { .glp-head { grid-template-columns: 1fr; } }
.glp-head h2 {
  color: var(--ink);
  font-size: clamp(1.8rem, 1.3rem + 2vw, 3rem);
  max-width: 22ch;
}
.glp-head h2 em { font-style: italic; color: var(--brand); font-weight: 800; }
.glp-head p {
  margin: 0; color: var(--ink-soft);
  font-size: var(--t-lede); line-height: 1.4; max-width: 36ch;
}
.glp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.glp-card {
  background: var(--surface);
  padding: var(--s-4) var(--s-3);
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: var(--s-2);
}
.glp-card .brand-name {
  font-size: 0.78rem; text-transform: uppercase;
  letter-spacing: 0.15em; font-weight: 600;
  color: var(--brand);
}
.glp-card h3 {
  margin: 0; font-size: 1.6rem; font-weight: 800;
  letter-spacing: -0.02em; color: var(--ink);
  font-variation-settings: "wdth" 110;
}
.glp-card .gen { font-style: italic; color: var(--ink-soft); font-size: 0.95rem; margin: 0.15rem 0 0; }
.glp-card p { margin: 0; color: var(--ink-soft); font-size: 0.95rem; line-height: 1.55; }
.glp-card .tag {
  font-size: 0.85rem; color: var(--ink); font-weight: 600;
  border-top: 1px solid var(--rule); padding-top: var(--s-2);
}
.glp-foot { margin-top: var(--s-3); color: var(--ink-soft); font-size: 0.85rem; max-width: 60ch; }

/* ─── Transfer RX CTA band ────────────────────────────── */
.transfer-band {
  background: var(--brand);
  color: var(--brand-on);
  padding: var(--s-6) var(--gut);
}
.transfer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: var(--s-4);
  align-items: center;
}
@media (max-width: 820px) { .transfer-inner { grid-template-columns: 1fr; } }
.transfer-band .label {
  font-size: 0.78rem; text-transform: uppercase;
  letter-spacing: 0.15em; font-weight: 600;
  color: var(--accent); margin: 0 0 var(--s-2);
}
.transfer-band h2 {
  color: var(--brand-on);
  font-size: clamp(1.8rem, 1.4rem + 1.8vw, 3rem);
  line-height: 1.0; max-width: 18ch; margin: 0 0 var(--s-3);
}
.transfer-band p {
  margin: 0; color: oklch(0.95 0.02 60 / 0.92);
  font-size: var(--t-lede); line-height: 1.4; max-width: 42ch;
}
.transfer-band .actions { display: flex; flex-direction: column; gap: var(--s-2); align-items: stretch; }
.transfer-band .btn.primary { background: var(--brand-on); color: var(--brand); justify-content: center; }
.transfer-band .btn.primary:hover { background: var(--ink); color: var(--brand-on); }
.transfer-band .btn.ghost {
  background: transparent; color: var(--brand-on);
  border-color: oklch(0.95 0.02 60 / 0.45); justify-content: center;
}
.transfer-band .btn.ghost:hover { background: var(--brand-on); color: var(--brand); border-color: var(--brand-on); }

/* ─── Reviews · social proof ──────────────────────────── */
.reviews {
  padding: var(--s-6) var(--gut);
  max-width: 56rem;
  margin: 0 auto;
  text-align: left;
}
.reviews .stars-big {
  font-size: clamp(2rem, 1.5rem + 2vw, 3.5rem);
  color: var(--brand);
  letter-spacing: 0.05em;
  line-height: 1;
  font-weight: 800;
  margin: 0 0 var(--s-2);
}
.reviews blockquote {
  margin: 0;
  font-size: clamp(1.5rem, 1.0rem + 2.0vw, 2.6rem);
  font-weight: 600;
  line-height: 1.20;
  letter-spacing: -0.018em;
  color: var(--ink);
  max-width: 26ch;
  font-variation-settings: "wdth" 105;
}
.reviews cite {
  display: block;
  margin-top: var(--s-3);
  font-style: normal;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.reviews cite strong { color: var(--ink); font-weight: 600; }

/* ─── Contact ───────────────────────────────────────── */
.contact {
  background: var(--ink);
  color: var(--bg);
  padding: var(--s-6) var(--gut);
}
.contact-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: var(--s-4);
  align-items: start;
}
@media (max-width: 820px) { .contact-inner { grid-template-columns: 1fr; } }
.contact h2 { color: var(--bg); margin-bottom: var(--s-3); }
.contact-lede {
  color: oklch(0.82 0.01 60);
  font-size: var(--t-lede);
  line-height: 1.4;
  max-width: 36ch;
  margin: 0 0 var(--s-3);
}
.hours-table {
  margin: 0;
  color: oklch(0.82 0.01 60);
  font-size: 1rem;
  line-height: 1.7;
}
.hours-table dt {
  display: inline-block;
  min-width: 8ch;
  color: var(--bg);
  font-weight: 600;
}
.hours-table dd { display: inline-block; margin: 0 0 0 0.5rem; }
.hours-row { display: flex; align-items: baseline; }
.hours-row .today {
  margin-left: 0.6rem;
  font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 0.1rem 0.4rem;
  border-radius: 999px;
}
.contact-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: oklch(0.30 0.012 50);
  border: 1px solid oklch(0.30 0.012 50);
  border-radius: 4px;
  overflow: hidden;
}
.contact-actions a {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: var(--s-2);
  padding: 1.05rem 1.25rem;
  background: var(--ink);
  color: var(--bg);
  text-decoration: none;
  min-height: 56px;
  font-size: 1rem;
  transition: background .3s var(--ease);
}
.contact-actions a:hover { background: oklch(0.28 0.018 40); }
.contact-actions a strong { font-weight: 600; font-size: 1.05rem; }
.contact-actions a span {
  color: oklch(0.65 0.01 60);
  font-size: 0.85rem;
  grid-column: 2; grid-row: 2;
  margin-top: -0.25rem;
}
.contact-actions a::after {
  content: "→"; opacity: 0.6;
  grid-row: 1 / span 2; grid-column: 3;
  align-self: center;
  transition: transform .35s var(--ease), opacity .35s var(--ease);
}
.contact-actions a:hover::after { transform: translateX(3px); opacity: 1; }
.contact-actions svg {
  width: 22px; height: 22px;
  color: var(--accent);
  grid-row: 1 / span 2;
  align-self: center;
}

/* ─── Footer ────────────────────────────────────────── */
footer.site {
  background: var(--bg);
  border-top: 1px solid var(--rule);
  padding: var(--s-4) var(--gut);
  color: var(--ink-soft);
  font-size: 0.9rem;
}
footer.site .row {
  max-width: var(--max);
  margin: 0 auto;
  display: flex; flex-wrap: wrap; gap: var(--s-3);
  align-items: center; justify-content: space-between;
}
footer.site a {
  color: var(--ink-soft);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  display: inline-flex; align-items: center;
  min-height: 44px;
  padding: 0 0.5rem;
}
footer.site a:hover { color: var(--brand); border-color: var(--brand); }
footer.site nav { display: flex; gap: var(--s-3); flex-wrap: wrap; }

/* ─── Reveal ────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation: none !important; transition: none !important; }
}

/* ─── Page sections (used on service/article pages) ───── */
.section {
  padding: var(--s-6) var(--gut);
  max-width: var(--max);
  margin: 0 auto;
}
.section.tight { padding: var(--s-5) var(--gut); }
.section.surface {
  background: var(--surface);
  max-width: none;
  padding-left: 0; padding-right: 0;
  margin: 0;
}
.section.surface > .section-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gut);
}
.section.ink {
  background: var(--ink);
  color: var(--bg);
  max-width: none;
  padding-left: 0; padding-right: 0;
  margin: 0;
}
.section.ink > .section-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gut);
}
.section.ink h2 { color: var(--bg); }
.section.ink p { color: oklch(0.82 0.01 60); }

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--s-5);
  align-items: start;
}
@media (max-width: 820px) { .split { grid-template-columns: 1fr; gap: var(--s-4); } }

.split-3-2 {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: var(--s-5);
  align-items: start;
}
@media (max-width: 820px) { .split-3-2 { grid-template-columns: 1fr; gap: var(--s-4); } }

/* Two-column long form: prose left, sticky callout right */
.article {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: var(--s-5);
  max-width: var(--max);
  margin: 0 auto;
  padding: var(--s-5) var(--gut);
}
@media (max-width: 900px) {
  .article { grid-template-columns: 1fr; gap: var(--s-4); }
}
.prose {
  font-size: clamp(1.05rem, 1rem + 0.3vw, 1.18rem);
  line-height: 1.65;
  color: var(--ink);
  max-width: 65ch;
}
.prose > * + * { margin-top: var(--s-3); }
.prose h2 {
  font-size: clamp(1.6rem, 1.2rem + 1.5vw, 2.4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-top: var(--s-5);
  max-width: 22ch;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  font-size: clamp(1.25rem, 1rem + 0.7vw, 1.55rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.012em;
  margin-top: var(--s-4);
  max-width: 30ch;
}
.prose p { color: var(--ink); }
.prose strong { color: var(--ink); font-weight: 700; }
.prose em { font-style: italic; color: var(--brand); }
.prose ul, .prose ol {
  padding-left: 1.4em;
  color: var(--ink);
}
.prose li { margin: 0.4rem 0; }
.prose li::marker { color: var(--brand); }
.prose blockquote {
  margin: var(--s-3) 0;
  padding: 0 0 0 var(--s-3);
  border-left: 3px solid var(--brand);
  font-style: italic;
  color: var(--ink-soft);
  font-size: 1.1em;
  max-width: 60ch;
}
.prose a {
  color: var(--brand);
  text-decoration: none;
  border-bottom: 1px solid var(--brand);
}
.prose a:hover { color: var(--brand-deep); border-bottom-color: var(--brand-deep); }
.prose figure { margin: var(--s-3) 0; }
.prose figure img { max-width: 100%; height: auto; display: block; border: 1px solid var(--rule); }
.prose figcaption {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: var(--ink-soft);
}
.prose code {
  background: var(--surface);
  padding: 0.05em 0.35em;
  border-radius: 4px;
  font-family: ui-monospace, SFMono-Regular, monospace;
  font-size: 0.95em;
}
.prose hr {
  border: 0;
  border-top: 1px solid var(--rule);
  margin: var(--s-4) 0;
}

.aside {
  position: sticky;
  top: calc(64px + var(--s-3));
  border: 1px solid var(--rule);
  background: var(--surface);
  padding: var(--s-3);
  font-size: 0.95rem;
  line-height: 1.5;
}
.aside .eyebrow { margin-bottom: var(--s-2); }
.aside h3 {
  margin: 0 0 var(--s-2);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.012em;
  color: var(--ink);
}
.aside p { margin: 0 0 var(--s-2); color: var(--ink-soft); }
.aside .btn { width: 100%; justify-content: center; margin-top: var(--s-2); }
@media (max-width: 900px) { .aside { position: static; } }

/* ─── FAQ ─────────────────────────────────────────────── */
.faq {
  display: grid; gap: 0;
  border-top: 1px solid var(--rule);
}
.faq details {
  border-bottom: 1px solid var(--rule);
  padding: var(--s-3) 0;
}
.faq summary {
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
  color: var(--ink);
  list-style: none;
  min-height: 44px;
  gap: var(--s-3);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--brand);
  transition: transform .3s var(--ease);
}
.faq details[open] summary::after { content: "−"; }
.faq details > *:not(summary) {
  margin-top: var(--s-2);
  color: var(--ink-soft);
  max-width: 65ch;
}

/* ─── Step list (used on transfer / how-to pages) ──── */
.steps {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  gap: var(--s-3);
  counter-reset: step;
}
.steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: var(--s-3);
  padding: var(--s-3) 0;
  border-top: 1px solid var(--rule);
  counter-increment: step;
}
.steps li:last-child { border-bottom: 1px solid var(--rule); }
.steps li::before {
  content: counter(step, decimal-leading-zero);
  font-size: var(--t-h3);
  font-weight: 800;
  color: var(--brand);
  font-variation-settings: "wdth" 75;
  line-height: 1;
}
.steps h3 {
  margin: 0;
  font-size: var(--t-h3);
  font-weight: 700;
  letter-spacing: -0.018em;
}
.steps p {
  margin: 0.4rem 0 0;
  color: var(--ink-soft);
  max-width: 50ch;
}

/* ─── Pill row (small chips, e.g. conditions list) ──── */
.pills {
  list-style: none;
  margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 0.5rem;
}
.pills li {
  background: var(--surface);
  border: 1px solid var(--rule);
  padding: 0.5rem 1rem;
  font-size: 0.95rem;
  border-radius: 999px;
  color: var(--ink);
  font-weight: 500;
}
.pills.brand li {
  background: oklch(0.96 0.025 50);
  border-color: oklch(0.85 0.06 35 / 0.5);
  color: var(--brand-deep);
}

/* ─── Stat block ─────────────────────────────────────── */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.stats .stat {
  background: var(--bg);
  padding: var(--s-3);
}
.stats .num {
  font-size: clamp(2.4rem, 1.8rem + 2vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--brand);
  line-height: 1;
  font-variation-settings: "wdth" 75;
  margin: 0 0 0.4rem;
}
.stats .lbl {
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin: 0;
}

/* ─── Card list (used on blog index) ───────────────── */
.posts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--rule);
}
.post-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2.5fr) auto;
  gap: var(--s-3);
  align-items: start;
  padding: var(--s-3) 0;
  border-bottom: 1px solid var(--rule);
  text-decoration: none;
  color: var(--ink);
  transition: background .2s var(--ease);
}
.post-row:hover { background: var(--surface); }
.post-row .pmeta {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: var(--ink-soft);
  padding-top: 0.3rem;
}
.post-row h3 {
  margin: 0;
  font-size: clamp(1.2rem, 1rem + 0.7vw, 1.6rem);
  font-weight: 700;
  letter-spacing: -0.018em;
  line-height: 1.15;
  color: var(--ink);
}
.post-row p {
  margin: 0.5rem 0 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
  max-width: 60ch;
}
.post-row::after {
  content: "→";
  font-size: 1.2rem;
  color: var(--brand);
  align-self: center;
  transition: transform .3s var(--ease);
}
.post-row:hover::after { transform: translateX(4px); }
@media (max-width: 720px) {
  .post-row {
    grid-template-columns: 1fr auto;
  }
  .post-row .pmeta { grid-column: 1; }
  .post-row h3 { grid-column: 1 / -1; }
  .post-row p { grid-column: 1 / -1; }
}

/* ─── Blog index — alt structure (li.post-row > a) ─── */
ol.posts, ol.posts.reveal {
  list-style: none;
  margin: 0;
  padding: 0;
}
li.post-row::after { content: none !important; }
li.post-row {
  display: block;
  padding: 0;
  border: 0;
  border-bottom: 1px solid var(--rule);
  transition: background .25s var(--ease);
}
li.post-row:first-child { border-top: 1px solid var(--rule); }
li.post-row:hover { background: var(--surface); }
li.post-row > a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2.5fr) auto;
  gap: var(--s-3);
  align-items: start;
  padding: var(--s-3) 0;
  text-decoration: none;
  color: var(--ink);
  position: relative;
}
li.post-row .post-meta {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-weight: 600;
  color: var(--ink-soft);
  margin: 0;
  padding-top: 0.35rem;
  line-height: 1.5;
}
li.post-row .post-meta .cat { color: var(--brand); font-weight: 700; }
li.post-row h2 {
  margin: 0;
  font-size: clamp(1.25rem, 1.05rem + 0.7vw, 1.7rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.18;
  color: var(--ink);
  font-variation-settings: "wdth" 95;
}
li.post-row > a > p:not(.post-meta) {
  margin: 0.55rem 0 0;
  color: var(--ink-soft);
  font-size: 0.96rem;
  max-width: 60ch;
  line-height: 1.5;
}
li.post-row > a::after {
  content: "→";
  font-size: 1.25rem;
  color: var(--brand);
  align-self: center;
  transition: transform .3s var(--ease);
  font-weight: 400;
}
li.post-row:hover > a::after { transform: translateX(5px); }
@media (max-width: 720px) {
  li.post-row > a { grid-template-columns: 1fr auto; gap: var(--s-2); }
  li.post-row .post-meta { grid-column: 1; padding-top: 0; }
  li.post-row h2 { grid-column: 1 / -1; }
  li.post-row > a > p:not(.post-meta) { grid-column: 1 / -1; }
}

/* ─── Byline — under hero-page h1 on blog posts ────── */
.byline {
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin: var(--s-2) 0 0;
  font-weight: 500;
  letter-spacing: 0.005em;
}
.byline::before {
  content: "";
  display: inline-block;
  width: 1.6rem;
  height: 1px;
  background: var(--brand);
  vertical-align: middle;
  margin-right: 0.65rem;
  transform: translateY(-2px);
}

/* ─── Contact grid + cards (contact.html) ─────────── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: 6px;
  overflow: hidden;
}
@media (max-width: 920px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card {
  background: var(--bg);
  padding: var(--s-4) var(--s-3);
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  min-height: 100%;
}
.contact-card .eyebrow {
  margin: 0;
  font-size: var(--t-eyebrow);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  color: var(--brand);
}
.contact-card h2 {
  margin: 0;
  font-size: clamp(1.4rem, 1.15rem + 0.85vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.022em;
  line-height: 1.18;
  color: var(--ink);
  font-variation-settings: "wdth" 92;
}
.contact-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.97rem;
  line-height: 1.55;
}
.contact-card .btn {
  align-self: flex-start;
  margin-top: auto;
}

/* ─── Hours <table> variant (light bg) ───────────── */
table.hours-table {
  width: 100%;
  max-width: 36rem;
  border-collapse: collapse;
  font-size: 1rem;
  color: var(--ink);
}
table.hours-table tr { border-bottom: 1px solid var(--rule); }
table.hours-table tr:last-child { border-bottom: 0; }
table.hours-table th,
table.hours-table td {
  text-align: left;
  padding: var(--s-2) 0;
  font-weight: 500;
}
table.hours-table th {
  width: 30%;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.005em;
}
table.hours-table td { color: var(--ink-soft); }

/* ─── Coverage table (vaccinations.html) ─────────── */
.coverage-table {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.8fr) minmax(0, 2fr);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--rule);
}
.coverage-table .ct-head,
.coverage-table .ct-row {
  display: contents;
}
.coverage-table .ct-head > span {
  padding: var(--s-2) var(--s-2) var(--s-2) 0;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: var(--brand);
  border-bottom: 1px solid var(--ink);
}
.coverage-table .ct-row > span {
  padding: var(--s-2) var(--s-2) var(--s-2) 0;
  border-bottom: 1px solid var(--rule);
  font-size: 0.97rem;
  color: var(--ink);
  line-height: 1.5;
}
.coverage-table .ct-row > span:nth-child(2) {
  font-weight: 600;
  color: var(--brand-deep);
}
.coverage-table .ct-row > span:nth-child(3) {
  color: var(--ink-soft);
  font-size: 0.93rem;
}
.coverage-table .ct-row:last-child > span { border-bottom: 0; }
@media (max-width: 720px) {
  .coverage-table {
    grid-template-columns: 1fr;
    border-top: 1px solid var(--ink);
  }
  .coverage-table .ct-head { display: none; }
  .coverage-table .ct-row { display: block; padding: var(--s-2) 0; border-bottom: 1px solid var(--rule); }
  .coverage-table .ct-row > span {
    display: block;
    padding: 0.15rem 0;
    border: 0;
  }
  .coverage-table .ct-row > span:first-child {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--ink);
    margin-bottom: 0.2rem;
  }
  .coverage-table .ct-row > span:nth-child(2)::before {
    content: "Coverage: ";
    color: var(--ink-soft);
    font-weight: 500;
  }
}
