:root {
  color-scheme: light;
  --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, "Helvetica Neue", Arial, sans-serif;
  --page: #f7f5f0;
  --surface: #fffefa;
  --surface-soft: #f0eee8;
  --surface-muted: #e7e4dc;
  --ink: #24231f;
  --body: #4f4d46;
  --muted: #77736a;
  --faint: #aaa59a;
  --line: #dfdbd1;
  --line-soft: #ebe7dd;
  --accent: #d96b2b;
  --accent-soft: #fff0e6;
  --shadow-soft: 0 18px 50px rgba(54, 48, 38, 0.12);
  --shadow-window: 0 28px 70px rgba(45, 42, 36, 0.18);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --radius-pill: 999px;
  --container: 1160px;
  font-family: var(--font-sans);
  background: var(--page);
  color: var(--ink);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--page);
}

body.modal-open {
  overflow: hidden;
}

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
input:focus-visible,
select:focus-visible,
a:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  clip-path: inset(50%);
}

h1,
h2,
h3,
p,
dl,
dd {
  margin-top: 0;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  width: min(100%, var(--container));
  min-height: 58px;
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
  gap: 24px;
  align-items: center;
  margin: 0 auto;
  padding: 12px 18px;
  background: color-mix(in srgb, var(--page) 92%, transparent);
  backdrop-filter: blur(16px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.brand,
.site-nav,
.header-actions {
  display: flex;
  align-items: center;
}

.brand {
  gap: 8px;
  min-height: 40px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  font-size: 11px;
  line-height: 1;
}

.site-nav {
  gap: 28px;
  justify-content: center;
}

.site-nav a,
.text-link {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 8px;
  color: var(--body);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover,
.text-link:hover,
.site-nav a[aria-current="page"] {
  color: var(--ink);
}

.header-actions {
  justify-content: flex-end;
  gap: 16px;
}

.pill-button,
.detail-toggle,
.modal-close,
.modal-primary,
.modal-secondary,
.filter-modal-backdrop,
.menu-button {
  border: 0;
  cursor: pointer;
  text-decoration: none;
}

.pill-button {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  padding: 0 18px;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.pill-button.dark {
  background: var(--ink);
  color: #ffffff;
}

.pill-button.light {
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--line);
}

.menu-button {
  width: 40px;
  height: 40px;
  display: none;
  place-items: center;
  gap: 4px;
  border-radius: var(--radius-pill);
  background: var(--ink);
  padding: 10px;
}

.menu-button span {
  width: 17px;
  height: 2px;
  display: block;
  border-radius: var(--radius-pill);
  background: #ffffff;
}

.hero-section,
.signal-strip,
.product-preview-section,
.feature-section,
.search-hero,
.clinic-section,
.quote-section,
.resource-section,
.final-cta,
.site-footer {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.hero-section {
  padding: 82px 0 42px;
}

.hero-copy {
  max-width: 820px;
  display: grid;
  justify-items: start;
  gap: 20px;
}

.eyebrow {
  margin: 0;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.hero-copy h1 {
  max-width: 780px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(38px, 5.7vw, 68px);
  font-weight: 760;
  letter-spacing: -0.03em;
  line-height: 1.14;
  word-break: keep-all;
}

.hero-search-form {
  width: min(100%, 760px);
  min-height: 64px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: #ffffff;
  padding: 6px;
  box-shadow: 0 16px 46px rgba(54, 48, 38, 0.1);
}

.hero-search-form input {
  width: 100%;
  min-width: 0;
  min-height: 50px;
  border: 0;
  background: transparent;
  padding: 0 16px;
  color: var(--ink);
  outline: none;
  font-size: 16px;
  font-weight: 700;
}

.hero-search-form input::placeholder {
  color: var(--muted);
}

.hero-search-form button {
  min-width: 86px;
  min-height: 50px;
  border: 0;
  border-radius: var(--radius-pill);
  background: var(--ink);
  color: #ffffff;
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
}

.quick-searches {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.quick-searches a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  padding: 0 12px;
  color: var(--body);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.quick-searches a:hover {
  border-color: color-mix(in srgb, var(--ink) 28%, var(--line));
  color: var(--ink);
}

.product-preview-section {
  display: grid;
  gap: 24px;
  padding-top: 64px;
}

.product-preview-copy {
  max-width: 520px;
}

.product-preview-copy h2 {
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 740;
  letter-spacing: -0.025em;
  line-height: 1.18;
  word-break: keep-all;
}

.product-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.hero-frame {
  min-height: 520px;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(226, 221, 209, 0.62)),
    var(--surface-muted);
  box-shadow: var(--shadow-window);
}

.window-bar {
  height: 34px;
  display: flex;
  gap: 6px;
  align-items: center;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.window-bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line);
}

.window-bar strong {
  margin-left: auto;
  margin-right: auto;
}

.product-grid {
  height: 450px;
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 16px;
}

.mock-sidebar,
.mock-content,
.feature-preview,
.filter-preview,
.evidence-list {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  background: color-mix(in srgb, var(--surface) 92%, transparent);
}

.mock-sidebar {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 18px;
}

.mock-sidebar strong,
.mock-content h2 {
  color: var(--ink);
}

.mock-sidebar span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius-pill);
  background: var(--surface-soft);
  padding: 0 12px;
  color: var(--body);
  font-size: 13px;
  font-weight: 700;
}

.mock-content {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 18px;
}

.mock-search {
  min-height: 44px;
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 0 16px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.mock-content article {
  border-radius: var(--radius-sm);
  background: #ffffff;
  padding: 18px;
}

.mock-content small,
.clinic-meta,
.clinic-note,
.resource-grid span,
.quote-grid span {
  color: var(--muted);
}

.mock-content h2 {
  margin-bottom: 8px;
  font-size: 22px;
}

.mock-content p {
  margin-bottom: 0;
  color: var(--body);
  line-height: 1.55;
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-left: 0;
  background: var(--surface);
}

.signal-strip span {
  min-height: 68px;
  display: grid;
  place-items: center;
  border-left: 1px solid var(--line);
  color: var(--body);
  font-size: 13px;
  font-weight: 800;
}

.feature-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 54px;
  align-items: center;
  min-height: 560px;
  margin-top: 84px;
  padding: 54px;
  background: var(--surface-soft);
}

.feature-section.reverse {
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
}

.feature-copy {
  max-width: 380px;
}

.feature-copy h2,
.section-heading h2,
.quote-section h2,
.final-cta h2 {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 740;
  letter-spacing: -0.025em;
  line-height: 1.18;
  word-break: keep-all;
}

.feature-copy p:not(.eyebrow) {
  color: var(--body);
  font-size: 16px;
  line-height: 1.65;
}

.mini-frame {
  min-height: 360px;
  padding: 18px;
}

.filter-preview,
.evidence-list {
  min-height: 290px;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  gap: 12px;
  padding: 32px;
}

.filter-preview button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: #ffffff;
  padding: 0 16px;
  color: var(--ink);
  font-weight: 800;
}

.evidence-list {
  display: grid;
  align-content: center;
}

.evidence-list div {
  display: grid;
  gap: 6px;
  border-radius: var(--radius-sm);
  background: #ffffff;
  padding: 18px;
}

.evidence-list small {
  color: var(--muted);
}

.clinic-section,
.quote-section,
.resource-section {
  padding-top: 92px;
}

.hero-section + .resource-section {
  padding-top: 28px;
}

.search-page {
  min-height: calc(100vh - 168px);
}

.search-shell .site-header {
  position: relative;
}

.search-hero {
  display: grid;
  gap: 16px;
  padding: 72px 0 10px;
}

.search-hero h1 {
  max-width: 780px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 760;
  letter-spacing: -0.03em;
  line-height: 1.15;
  word-break: keep-all;
}

.search-hero p:not(.eyebrow) {
  max-width: 620px;
  margin: 0;
  color: var(--body);
  font-size: 17px;
  line-height: 1.65;
}

.search-page .clinic-section {
  padding-top: 44px;
  padding-bottom: 104px;
}

.search-page .section-heading {
  display: grid;
  justify-content: start;
  gap: 8px;
  transition: opacity 160ms ease, max-height 160ms ease, margin 160ms ease;
}

.search-page .section-heading h2 {
  margin-bottom: 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.resource-section .section-heading {
  display: grid;
  justify-content: start;
  gap: 8px;
  text-align: left;
}

.resource-section .section-heading h2 {
  margin-bottom: 0;
}

.search-dock {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  margin-bottom: 24px;
  padding: 10px 0 12px;
  background: var(--page);
}

.search-box {
  display: grid;
  gap: 8px;
  color: var(--body);
  font-size: 12px;
  font-weight: 800;
}

.search-box input {
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: #ffffff;
  padding: 0 18px;
  color: var(--ink);
  outline: none;
}

.detail-toggle {
  min-height: 52px;
  align-self: end;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: var(--surface);
  padding: 0 18px;
  color: var(--ink);
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
}

.detail-toggle[aria-expanded="true"] {
  border-color: var(--ink);
  background: var(--ink);
  color: #ffffff;
}

.filter-layout {
  display: grid;
  grid-template-columns: 1fr;
}

.filter-panel {
  display: grid;
  align-content: start;
  gap: 28px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.filter-modal[hidden] {
  display: none;
}

.filter-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 24px;
}

.filter-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(36, 35, 31, 0.38);
  backdrop-filter: blur(3px);
}

.filter-dialog {
  position: relative;
  width: min(100%, 680px);
  max-height: min(760px, calc(100dvh - 48px));
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: 0 26px 80px rgba(36, 35, 31, 0.28);
}

.filter-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px 18px;
  border-bottom: 1px solid var(--line-soft);
}

.filter-modal-header h2 {
  margin-bottom: 0;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.2;
}

.modal-close {
  width: 40px;
  height: 40px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: var(--radius-pill);
  background: var(--surface-soft);
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
}

.filter-modal .filter-panel {
  min-height: 0;
  overflow: auto;
  border: 0;
  border-radius: 0;
  padding: 24px;
  background: var(--surface);
}

.filter-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding: 16px 24px 20px;
  border-top: 1px solid var(--line-soft);
  background: var(--surface);
}

.modal-primary,
.modal-secondary {
  min-height: 44px;
  border-radius: var(--radius-pill);
  padding: 0 18px;
  font-size: 13px;
  font-weight: 900;
}

.modal-primary {
  background: var(--ink);
  color: #ffffff;
}

.modal-secondary {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
}

.region-controls {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.select-field {
  display: grid;
  gap: 8px;
  color: var(--body);
  font-size: 12px;
  font-weight: 800;
}

.select-field select {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #ffffff;
  padding: 0 12px;
  color: var(--ink);
  cursor: pointer;
  outline: none;
}

.select-field select:disabled {
  cursor: not-allowed;
  background: var(--surface-soft);
  color: var(--muted);
}

.filter-group h3 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 14px;
}

.chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: #ffffff;
  padding: 0 12px;
  color: var(--body);
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
}

.chip[aria-pressed="true"] {
  border-color: var(--ink);
  background: var(--ink);
  color: #ffffff;
}

.toggle-list {
  display: grid;
  gap: 8px;
}

.toggle-list label {
  min-height: 38px;
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--body);
  font-size: 14px;
  font-weight: 700;
}

.toggle-list input {
  width: 17px;
  height: 17px;
  accent-color: var(--ink);
}

.results-panel {
  min-width: 0;
}

.results-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.clinic-list {
  display: grid;
  gap: 12px;
}

.load-sentinel {
  min-height: 1px;
}

.clinic-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  padding: 20px;
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.clinic-card:hover {
  border-color: color-mix(in srgb, var(--ink) 28%, var(--line));
  box-shadow: var(--shadow-soft);
  transform: translateY(-1px);
}

.clinic-main {
  min-width: 0;
}

.clinic-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 800;
}

.clinic-category {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
}

.verified {
  color: var(--accent);
}

.clinic-main h3 {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 780;
  line-height: 1.24;
}

.clinic-note {
  max-width: 640px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.clinic-facts {
  display: grid;
  justify-items: end;
  gap: 12px;
  margin-bottom: 0;
}

.clinic-facts div {
  display: grid;
  gap: 8px;
}

.clinic-facts dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
}

.value-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

.value-list span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius-pill);
  background: var(--surface-soft);
  padding: 0 10px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
}

.value-list span:nth-child(n + 3) {
  display: none;
}

.clinic-review {
  grid-column: 1 / -1;
  display: grid;
  gap: 12px;
  border-top: 1px solid var(--line-soft);
  padding-top: 14px;
}

.clinic-review header {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
}

.clinic-review header em {
  font-style: normal;
  font-weight: 800;
}

.review-score {
  display: inline-flex;
  gap: 3px;
  align-items: center;
  color: var(--ink);
}

.review-score i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--line);
}

.review-score i.is-filled {
  background: var(--accent);
}

.review-score b {
  margin-left: 3px;
  font-size: 11px;
  line-height: 1;
}

.clinic-review dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
  margin-bottom: 0;
}

.review-group {
  min-width: 0;
  display: grid;
  gap: 7px;
}

.review-group dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
}

.review-group dd {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
}

.review-group dd span {
  max-width: 100%;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border-radius: var(--radius-pill);
  background: color-mix(in srgb, var(--surface-soft) 76%, #ffffff);
  padding: 0 9px;
  color: var(--body);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
}

.review-tags dd span {
  background: var(--accent-soft);
  color: var(--ink);
}

.review-tags small {
  color: var(--accent);
  font-size: 10px;
  font-weight: 900;
}

.empty {
  min-height: 160px;
  display: grid;
  place-items: center;
  border: 1px dashed var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  color: var(--muted);
}

.quote-section {
  text-align: center;
}

.quote-grid,
.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  text-align: left;
}

.quote-grid article,
.resource-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  padding: 22px;
}

.quote-grid p {
  color: var(--ink);
  line-height: 1.6;
}

.quote-grid span,
.resource-grid span {
  font-size: 12px;
  font-weight: 800;
}

.resource-grid h3 {
  min-height: 58px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.28;
}

.resource-grid a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding-right: 8px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.article-page {
  width: min(100% - 32px, 880px);
  margin: 0 auto;
}

.article-shell {
  display: grid;
  gap: 42px;
  padding: 76px 0 96px;
}

.article-hero {
  max-width: 760px;
  display: grid;
  gap: 18px;
}

.article-hero h1 {
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 760;
  letter-spacing: -0.03em;
  line-height: 1.12;
  word-break: keep-all;
}

.article-hero p:not(.eyebrow),
.article-section p,
.article-callout p {
  color: var(--body);
  font-size: 16px;
  line-height: 1.72;
}

.article-section {
  display: grid;
  gap: 18px;
  padding-top: 2px;
}

.article-section h2,
.article-callout h2 {
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 760;
  letter-spacing: -0.02em;
  line-height: 1.22;
  word-break: keep-all;
}

.checklist-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.checklist-grid label {
  min-height: 58px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  padding: 16px;
  color: var(--body);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.45;
}

.checklist-grid input {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  margin-top: 2px;
  accent-color: var(--ink);
}

.article-list {
  display: grid;
  gap: 12px;
}

.article-list div {
  display: grid;
  gap: 6px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.article-list strong {
  color: var(--ink);
  font-size: 15px;
}

.article-list p {
  margin-bottom: 0;
}

.question-list,
.source-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: var(--body);
  line-height: 1.68;
}

.question-list li,
.source-list li {
  padding-left: 2px;
}

.source-list a {
  color: var(--body);
  text-underline-offset: 3px;
}

.article-callout {
  display: grid;
  gap: 12px;
  border: 1px solid color-mix(in srgb, var(--accent) 34%, var(--line));
  border-radius: var(--radius-md);
  background: var(--accent-soft);
  padding: 24px;
}

.article-callout p {
  margin-bottom: 0;
  color: var(--ink);
  font-weight: 720;
}

.article-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 10px;
}

.final-cta {
  display: grid;
  justify-items: center;
  gap: 18px;
  padding: 110px 0 72px;
  text-align: center;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  padding: 46px 0 64px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.site-footer div,
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.site-footer strong {
  color: var(--ink);
}

.site-footer a {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding-right: 8px;
  color: var(--muted);
  text-decoration: none;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    position: absolute;
    top: 58px;
    right: 18px;
    left: 18px;
    display: none;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--surface);
    box-shadow: var(--shadow-soft);
    padding: 14px;
  }

  .site-nav.is-open {
    display: grid;
    gap: 8px;
  }

  .site-nav a {
    min-height: 42px;
    display: flex;
    align-items: center;
    border-radius: var(--radius-sm);
    padding: 0 12px;
  }

  .text-link,
  .header-actions > .pill-button {
    display: none;
  }

  .menu-button {
    display: grid;
  }

  .hero-section {
    padding-top: 48px;
  }

  .product-grid,
  .feature-section,
  .feature-section.reverse,
  .filter-layout,
  .quote-grid,
  .resource-grid,
  .checklist-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero-frame {
    min-height: auto;
  }

  .product-grid {
    height: auto;
  }

  .mock-sidebar {
    display: none;
  }

  .signal-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-section,
  .feature-section.reverse {
    min-height: auto;
    gap: 28px;
    padding: 32px 22px;
  }

  .clinic-card {
    grid-template-columns: 1fr;
  }

  .clinic-facts,
  .value-list {
    justify-items: start;
    justify-content: flex-start;
  }

  .clinic-review dl {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .hero-section,
  .signal-strip,
  .product-preview-section,
  .feature-section,
  .search-hero,
  .clinic-section,
  .quote-section,
  .resource-section,
  .final-cta,
  .article-page,
  .site-footer {
    width: min(100% - 20px, var(--container));
  }

  .site-header {
    padding-right: 10px;
    padding-left: 10px;
  }

  .hero-copy h1 {
    font-size: 40px;
  }

  .hero-search-form,
  .search-dock,
  .results-meta {
    display: grid;
  }

  .hero-search-form {
    grid-template-columns: 1fr;
    border-radius: var(--radius-md);
    padding: 8px;
  }

  .hero-search-form button {
    width: 100%;
  }

  .section-heading,
  .search-dock {
    grid-template-columns: 1fr;
  }

  .pill-button,
  .detail-toggle {
    width: 100%;
  }

  .mock-content article:nth-of-type(2) {
    display: none;
  }

  .signal-strip {
    overflow: hidden;
  }

  .signal-strip span {
    min-height: 56px;
  }

  .filter-modal {
    align-items: end;
    padding: 10px;
  }

  .filter-dialog {
    width: 100%;
    max-height: calc(100dvh - 20px);
    border-radius: var(--radius-md) var(--radius-md) 0 0;
  }

  .filter-modal-header,
  .filter-modal .filter-panel,
  .filter-modal-actions {
    padding-right: 18px;
    padding-left: 18px;
  }

  .filter-modal-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .region-controls {
    grid-template-columns: 1fr;
  }

  .modal-primary,
  .modal-secondary {
    width: 100%;
  }

  .article-shell {
    gap: 34px;
    padding-top: 54px;
    padding-bottom: 72px;
  }

  .article-hero h1 {
    font-size: 40px;
  }

  .checklist-grid label {
    min-height: 0;
  }

  .article-actions {
    display: grid;
  }
}
