/* ============================================================
   PT-141 Doctor — Organic Warm
   Sage primary, dusty terracotta secondary, dusty plum accent,
   warm cream background. Fraunces + Source Sans 3.
   ============================================================ */

/* --- Tokens ------------------------------------------------ */
:root {
  --primary: #5A6B57;
  --primary-50: #EEF0EC;
  --primary-100: #DDE2D9;
  --primary-900: #2C3A2A;

  --secondary: #A8624A;
  --secondary-50: #F4E7E0;
  --secondary-900: #6E3D2C;

  --accent: #7D5A75;
  --accent-50: #EFE7ED;
  --accent-900: #4A3344;

  --neutral-50: #FAF6F0;
  --neutral-100: #F4EEE3;
  --neutral-200: #E8E0D2;
  --neutral-300: #CFC5B3;
  --neutral-500: #8A8275;
  --neutral-700: #4E483F;
  --neutral-900: #2A2620;

  --bg: #FAF6F0;
  --surface: #FFFBF4;
  --surface-tint: #F5EFE2;
  --text: #2A2620;
  --text-muted: #6E665A;

  --success: #4E7C3C;
  --warning: #A8624A;
  --danger: #9B3A2E;

  --max-width: 68rem;
  --container-px: clamp(1.25rem, 4vw, 2.5rem);

  --font-heading: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Source Sans 3', system-ui, -apple-system, 'Helvetica Neue', sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, 'SF Mono', Menlo, Consolas, monospace;

  --radius-pill: 999px;
  --radius-button: 0.625rem;
  --radius-card: 1rem;
  --radius-callout: 0.75rem;
  --radius-image: 1.25rem;

  --shadow-paper: 0 1px 2px rgba(42, 38, 32, 0.04), 0 6px 18px rgba(42, 38, 32, 0.05);
  --shadow-paper-lift: 0 2px 4px rgba(42, 38, 32, 0.06), 0 14px 32px rgba(42, 38, 32, 0.08);

  --transition-fast: 180ms ease-out;
  --transition-card: 240ms ease-out;

  --leading-heading: 1.18;
  --leading-body: 1.7;
}

/* --- Reset ------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-rendering: optimizeLegibility; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: var(--leading-body);
  color: var(--text);
  background: var(--bg);
  background-image:
    radial-gradient(1100px 600px at 12% -100px, rgba(168, 98, 74, 0.05), transparent 60%),
    radial-gradient(900px 540px at 92% -120px, rgba(125, 90, 117, 0.05), transparent 60%);
  background-attachment: fixed;
}
img, svg { max-width: 100%; height: auto; display: block; }
button { font: inherit; cursor: pointer; }
a { color: var(--primary-900); text-decoration-thickness: 1px; text-underline-offset: 3px; transition: color var(--transition-fast); }
a:hover { color: var(--secondary); }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); line-height: var(--leading-heading); color: var(--neutral-900); margin: 0; font-weight: 500; letter-spacing: -0.005em; }
p { margin: 0 0 1em 0; }
ul, ol { padding-inline-start: 1.25rem; margin: 0 0 1em 0; }

/* --- Typography scale ------------------------------------- */
h1 { font-size: clamp(2.25rem, 4.5vw, 3.625rem); font-weight: 500; font-variation-settings: "opsz" 96, "SOFT" 30; letter-spacing: -0.015em; }
h2 { font-size: clamp(1.625rem, 3vw, 2.25rem); font-weight: 500; font-variation-settings: "opsz" 48, "SOFT" 30; margin-top: 0.25em; }
h3 { font-size: 1.375rem; font-weight: 600; font-variation-settings: "opsz" 24, "SOFT" 30; }
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78125rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--secondary);
  margin: 0 0 0.875rem 0;
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 1.75rem;
  height: 1px;
  background: var(--secondary);
}
small, .small { font-size: 0.875rem; }

/* --- Container -------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--container-px);
}

/* --- Header ------------------------------------------------ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 240, 0.88);
  backdrop-filter: saturate(120%) blur(10px);
  -webkit-backdrop-filter: saturate(120%) blur(10px);
  border-bottom: 1px solid var(--neutral-200);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.25rem;
}
.site-brand {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1875rem;
  color: var(--neutral-900);
  text-decoration: none;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
}
.site-brand::before {
  content: "";
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: inline-block;
}
.site-brand:hover { color: var(--primary-900); }
.site-nav ul {
  list-style: none;
  display: flex;
  gap: 0.25rem;
  margin: 0;
  padding: 0;
  align-items: center;
}
.site-nav a {
  color: var(--neutral-700);
  text-decoration: none;
  padding: 0.5rem 0.875rem;
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: var(--radius-pill);
  position: relative;
  transition: color var(--transition-fast), background var(--transition-fast);
}
.site-nav a:hover { color: var(--primary-900); background: var(--primary-50); }
.site-nav a.is-active { color: var(--primary-900); }
.site-nav a.is-active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0.125rem;
  transform: translateX(-50%);
  width: 0.3125rem;
  height: 0.3125rem;
  border-radius: 999px;
  background: var(--secondary);
}
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--neutral-300);
  border-radius: var(--radius-button);
  padding: 0.5rem 0.75rem;
  color: var(--neutral-700);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  align-items: center;
  gap: 0.5rem;
}
.nav-toggle:hover { background: var(--primary-50); }
.nav-toggle .bar {
  display: inline-block;
  width: 1.125rem;
  height: 1.5px;
  background: var(--neutral-700);
  position: relative;
}
.nav-toggle .bar::before, .nav-toggle .bar::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: var(--neutral-700);
}
.nav-toggle .bar::before { top: -5px; }
.nav-toggle .bar::after { top: 5px; }

@media (max-width: 880px) {
  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--neutral-200);
    padding: 0.75rem var(--container-px) 1.25rem;
    display: none;
    box-shadow: var(--shadow-paper);
  }
  .site-nav.is-open { display: block; }
  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0.125rem;
  }
  .site-nav a {
    padding: 0.75rem 0.875rem;
    border-radius: var(--radius-button);
  }
  .site-nav a.is-active::after { display: none; }
  .site-nav a.is-active { background: var(--primary-50); }
}

/* --- Main / sections --------------------------------------- */
main { padding-block: 1rem 4rem; }
main > article { display: block; }

/* --- Hero (asymmetric two-column) -------------------------- */
.hero {
  position: relative;
  padding-block: clamp(2.5rem, 6vw, 4.5rem) clamp(2rem, 5vw, 3.5rem);
}
.hero-centered .hero-text-only {
  max-width: 44rem;
  margin-inline: auto;
  text-align: center;
}
.hero-centered .hero-text-only .lede {
  margin-inline: auto;
  max-width: 38ch;
}
.hero-centered .hero-text-only .cta-row {
  justify-content: center;
}
.hero-centered .eyebrow {
  justify-content: center;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: center;
}
@media (min-width: 880px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(2.5rem, 5vw, 4.25rem);
  }
  .hero-grid.hero-grid-narrow {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  }
}
.hero h1 {
  margin-bottom: 1.125rem;
  text-wrap: balance;
}
.hero .lede {
  font-size: clamp(1.125rem, 1.6vw, 1.3125rem);
  color: var(--neutral-700);
  line-height: 1.55;
  max-width: 38ch;
  margin-bottom: 1.5rem;
}
.hero .pull-quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
  color: var(--primary-900);
  font-size: 1.0625rem;
  line-height: 1.6;
  border-left: 2px solid var(--secondary);
  padding-left: 1rem;
  margin: 1.5rem 0 1.75rem;
  max-width: 36ch;
}
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-top: 0.5rem;
}
.hero-figure {
  position: relative;
  margin: 0;
}
.hero-figure img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-image);
  box-shadow: var(--shadow-paper);
  background: var(--surface-tint);
  aspect-ratio: 16/10;
  object-fit: cover;
}
.hero-figure::after {
  content: "";
  position: absolute;
  inset: -0.5rem -0.5rem auto auto;
  width: 5rem;
  height: 5rem;
  background: var(--accent-50);
  border-radius: 999px;
  z-index: -1;
  filter: blur(2px);
}

/* --- Buttons ----------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  border-radius: var(--radius-button);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.96875rem;
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: 0.005em;
}
.btn-primary {
  background: var(--primary);
  color: var(--neutral-50);
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-900);
  border-color: var(--primary-900);
  color: var(--neutral-50);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(44, 58, 42, 0.18);
}
.btn-secondary {
  background: transparent;
  color: var(--primary-900);
  border-color: var(--primary);
}
.btn-secondary:hover {
  background: var(--primary-50);
  color: var(--primary-900);
}
.btn-arrow::after {
  content: "→";
  display: inline-block;
  transition: transform var(--transition-fast);
}
.btn-arrow:hover::after { transform: translateX(2px); }

/* --- Article body ----------------------------------------- */
.article-body { max-width: 44rem; margin-inline: auto; }
.article-body section { margin-block: clamp(2.25rem, 5vw, 3.5rem); }
.article-body section:first-child { margin-top: clamp(1.25rem, 3vw, 2rem); }
.article-body section h2 {
  margin-bottom: 1rem;
  text-wrap: balance;
}
.article-body section h2::before {
  content: "";
  display: block;
  width: 2.25rem;
  height: 2px;
  background: var(--secondary);
  margin-bottom: 1rem;
  border-radius: 1px;
}
.article-body p { font-size: 1.0625rem; line-height: var(--leading-body); }
.article-body p + p { margin-top: 0.5em; }
.article-body em { font-family: var(--font-heading); font-style: italic; font-weight: 500; color: var(--neutral-900); }
.article-body ul, .article-body ol { margin-block: 1em; }
.article-body li { margin-bottom: 0.5em; line-height: 1.65; }
.article-body ul { list-style: none; padding-inline-start: 0; }
.article-body ul li {
  position: relative;
  padding-left: 1.5rem;
}
.article-body ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.625em;
  width: 0.4375rem;
  height: 0.4375rem;
  border-radius: 999px;
  background: var(--secondary);
}
.article-body strong { color: var(--neutral-900); font-weight: 600; }
.article-body a {
  color: var(--primary-900);
  text-decoration: underline;
  text-decoration-color: rgba(90, 107, 87, 0.4);
  text-underline-offset: 3px;
}
.article-body a:hover {
  color: var(--secondary);
  text-decoration-color: var(--secondary);
}

.section-figure {
  margin: 2.5rem auto;
  max-width: 44rem;
}
.section-figure img {
  border-radius: var(--radius-image);
  box-shadow: var(--shadow-paper);
  width: 100%;
  height: auto;
  background: var(--surface-tint);
}
.section-figure figcaption {
  margin-top: 0.875rem;
  font-size: 0.875rem;
  font-style: italic;
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-weight: 400;
  text-align: center;
}

/* --- Citations -------------------------------------------- */
.cite {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  vertical-align: super;
  line-height: 1;
  margin-left: 0.125rem;
}
.cite a {
  color: var(--accent);
  text-decoration: none;
  padding: 0.0625rem 0.3125rem;
  border-radius: 999px;
  background: var(--accent-50);
  transition: background var(--transition-fast), color var(--transition-fast);
}
.cite a:hover { background: var(--accent); color: var(--neutral-50); }

/* --- Callouts --------------------------------------------- */
.callout {
  border-radius: var(--radius-callout);
  background: var(--primary-50);
  border-left: 4px solid var(--accent);
  padding: 1.25rem 1.5rem;
  margin-block: 1.75rem;
}
.callout .callout-label {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 500;
  color: var(--accent-900);
  font-size: 0.9375rem;
  margin-bottom: 0.375rem;
  display: block;
}
.callout p:last-child { margin-bottom: 0; }

/* --- Code pill ------------------------------------------- */
code, .code-pill {
  font-family: var(--font-mono);
  font-size: 0.875em;
  background: var(--neutral-200);
  padding: 0.125rem 0.5rem;
  border-radius: 999px;
  color: var(--neutral-900);
}

/* --- Cards (used for landing summary blocks) -------------- */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-block: 2.25rem 1rem;
}
@media (min-width: 720px) {
  .card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
  .card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
}
.card {
  background: var(--surface);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-card);
  padding: 1.75rem;
  box-shadow: var(--shadow-paper);
  transition: transform var(--transition-card), box-shadow var(--transition-card);
}
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow-paper-lift); }
.card h3 { margin-bottom: 0.5rem; font-size: 1.1875rem; }
.card .card-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--secondary);
  display: block;
  margin-bottom: 0.625rem;
}
.card p { color: var(--text-muted); margin: 0.25rem 0 0.875rem; font-size: 1rem; line-height: 1.6; }
.card .card-link {
  font-weight: 600;
  color: var(--primary-900);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.9375rem;
}
.card .card-link::after { content: "→"; transition: transform var(--transition-fast); }
.card .card-link:hover { color: var(--secondary); }
.card .card-link:hover::after { transform: translateX(2px); }

/* --- Index page key-fact strip ---------------------------- */
.fact-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 2.5rem 0 1.5rem;
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-paper);
}
@media (min-width: 720px) {
  .fact-strip { grid-template-columns: repeat(3, 1fr); gap: 1.75rem; padding: 1.75rem 2rem; }
}
.fact-strip dt {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 0.375rem;
}
.fact-strip dd {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--neutral-900);
  line-height: 1.35;
  font-variation-settings: "opsz" 18;
}
.fact-strip > div:not(:first-child) { padding-top: 0.25rem; }
@media (min-width: 720px) {
  .fact-strip > div + div { border-left: 1px solid var(--neutral-200); padding-left: 1.75rem; padding-top: 0; }
}

/* --- Page intro / sub-section dividers -------------------- */
.section-rule {
  border: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--neutral-200) 30%, var(--neutral-200) 70%, transparent);
  margin: 3rem auto;
  max-width: 44rem;
}

/* --- References list -------------------------------------- */
.references-list {
  max-width: 44rem;
  margin-inline: auto;
  list-style: none;
  padding-inline-start: 0;
  counter-reset: ref-counter;
}
.references-list li {
  position: relative;
  padding: 0.75rem 0 0.75rem 2.5rem;
  border-bottom: 1px solid var(--neutral-200);
  counter-increment: ref-counter;
  font-size: 0.96875rem;
  line-height: 1.55;
  scroll-margin-top: 6rem;
}
.references-list li:last-child { border-bottom: 0; }
.references-list li::before {
  content: counter(ref-counter);
  position: absolute;
  left: 0;
  top: 0.625rem;
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 500;
  color: var(--primary);
  font-size: 1.0625rem;
  width: 1.75rem;
  text-align: right;
}
.references-list li:target {
  background: var(--accent-50);
  border-radius: var(--radius-callout);
  padding-left: 3rem;
  padding-right: 1rem;
}
.references-list a {
  word-break: break-word;
  color: var(--primary-900);
}
.references-list a:hover { color: var(--secondary); }
.ref-link {
  display: inline-block;
  margin-left: 0.375rem;
  color: var(--secondary);
  text-decoration: none;
  font-size: 1.125rem;
  vertical-align: middle;
}
.ref-link:hover { color: var(--secondary-900); }

/* --- FAQ list --------------------------------------------- */
.faq-item h2 {
  font-size: 1.4375rem;
  margin-bottom: 0.75rem;
}
@media (min-width: 720px) {
  .faq-item h2 { font-size: 1.5625rem; }
}

/* --- Contact ---------------------------------------------- */
.contact-form {
  max-width: 36rem;
  margin: 1.5rem auto 2rem;
  background: var(--surface);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-card);
  padding: 1.75rem;
  box-shadow: var(--shadow-paper);
}
.field { margin-bottom: 1.125rem; }
.field label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--neutral-700);
  margin-bottom: 0.375rem;
}
.field input, .field textarea {
  width: 100%;
  padding: 0.75rem 0.875rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--neutral-300);
  border-radius: var(--radius-button);
  transition: border-color var(--transition-fast), background var(--transition-fast);
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--surface);
  box-shadow: 0 0 0 3px var(--primary-50);
}
.field textarea { min-height: 9rem; resize: vertical; }
.form-note {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin: 0.5rem 0 1.25rem;
}

/* --- 404 page -------------------------------------------- */
.notfound {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-block: clamp(3rem, 8vw, 6rem);
}
.notfound .code {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 10vw, 6rem);
  color: var(--primary);
  font-style: italic;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 1rem;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.notfound h1 { margin-bottom: 1rem; }
.notfound p { color: var(--text-muted); max-width: 32rem; margin-bottom: 1.75rem; }

/* --- Footer ---------------------------------------------- */
.site-footer {
  background: var(--primary-900);
  color: var(--neutral-100);
  padding-block: 3.25rem 2rem;
  margin-top: 4rem;
  position: relative;
}
.site-footer::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(60%, 28rem);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 224, 210, 0.35), transparent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2.25rem;
}
@media (min-width: 720px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; }
}
.footer-brand {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  color: var(--neutral-50);
  font-weight: 500;
  margin-bottom: 0.625rem;
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
}
.footer-brand::before {
  content: "";
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 999px;
  background: var(--secondary);
}
.footer-tagline {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
  color: rgba(244, 238, 227, 0.78);
  font-size: 0.96875rem;
  line-height: 1.55;
  max-width: 32ch;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(244, 238, 227, 0.6);
  margin: 0 0 0.875rem 0;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a {
  color: var(--neutral-100);
  text-decoration: none;
  font-size: 0.96875rem;
  transition: color var(--transition-fast);
}
.footer-col a:hover { color: var(--secondary-50); }
.footer-bottom {
  border-top: 1px solid rgba(244, 238, 227, 0.15);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
.disclaimer {
  font-size: 0.84375rem;
  line-height: 1.55;
  color: rgba(244, 238, 227, 0.72);
  margin: 0;
  max-width: 60rem;
}
.copyright {
  font-size: 0.78125rem;
  color: rgba(244, 238, 227, 0.55);
  margin: 0;
}

/* --- Utilities -------------------------------------------- */
.text-muted { color: var(--text-muted); }
.center { text-align: center; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

/* --- Reduced motion -------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* --- Print ------------------------------------------------ */
@media print {
  .site-header, .site-footer, .cta-row, .hero-figure::after { display: none; }
  body { background: white; color: black; }
  a { color: black; text-decoration: underline; }
}
