/* ───────────────────────────────────────────────────────────────────
   Clear My Texas Record — shared stylesheet for the content pages.
   Redesign v1.1: light product canvas, larger typography, the same
   header/footer/buttons and the same metric-compatible font
   fallbacks as the homepage (extracted from it so they cannot drift).
   ─────────────────────────────────────────────────────────────────── */

/* Metric-compatible local fallbacks (RG3): text paints immediately in a
 size-adjusted system font and the web-font swap no longer reflows the
 page. Values measured against the loaded web fonts at body/heading
 sizes (Georgia / Arial; DM Sans is opsz-variable, so body-size ratios). */
@font-face { font-family: "Lora Fallback"; src: local("Georgia"); font-weight: 400; font-style: normal; size-adjust: 105.6%; ascent-override: 95.7%; descent-override: 25.6%; line-gap-override: 0%; }
@font-face { font-family: "Lora Fallback"; src: local("Georgia Italic"), local("Georgia-Italic"); font-weight: 400 700; font-style: italic; size-adjust: 99.1%; ascent-override: 101%; descent-override: 27%; line-gap-override: 0%; }
@font-face { font-family: "Lora Fallback"; src: local("Georgia Bold"), local("Georgia-Bold"); font-weight: 500 700; font-style: normal; size-adjust: 91.5%; ascent-override: 110.4%; descent-override: 29.5%; line-gap-override: 0%; }
@font-face { font-family: "DM Sans Fallback"; src: local("Arial"), local("Helvetica"); font-weight: 400; font-style: normal; size-adjust: 104.5%; ascent-override: 94.7%; descent-override: 29.7%; line-gap-override: 0%; }
@font-face { font-family: "DM Sans Fallback"; src: local("Arial"), local("Helvetica"); font-weight: 500; font-style: normal; size-adjust: 106.5%; ascent-override: 93%; descent-override: 29.1%; line-gap-override: 0%; }
@font-face { font-family: "DM Sans Fallback"; src: local("Arial Bold"), local("Arial-BoldMT"), local("Helvetica Bold"); font-weight: 600 700; font-style: normal; size-adjust: 100.2%; ascent-override: 98.8%; descent-override: 30.9%; line-gap-override: 0%; }
:root {
  /* Forest green identity (locked). v1.1: green is an accent on a light
     product canvas, not a full-bleed background. */
  --brand-primary: #1F4D3D;
  --brand-primary-soft: #275C49;
  --brand-mid: #2A6A52;
  --ink-soft: #4E6A5E;
  --ink-faint: #B9C8BF;
  --accent: #6B9C7E;
  --accent-light: #93BCA3;
  --accent-deep: #497C61;
  --accent-tint: rgba(107, 156, 126, 0.10);
  --accent-tint-strong: rgba(107, 156, 126, 0.18);
  --surface-deep: #EDE7DA;
  --surface-soft: #F4F1E9;
  --surface: #FFFFFF;
  --bg: #FAF8F3;
  --text: #1B2621;
  --text-mid: #46574F;
  --text-light: #5C6E64; /* ≥4.5:1 on every light surface used here */
  --accent-as-text: #3E6E54; /* accent hue for TEXT on light surfaces (≥4.5:1) */
  --border: rgba(31, 77, 61, 0.13);
  --border-strong: rgba(31, 77, 61, 0.24);
  --green: #2F6B4F;
  --green-bg: #E9F2EC;
  --green-border: #C2D9C9;
  --amber: #8A6A1F;
  --amber-bg: #FBF3DF;
  --amber-border: #ECD99E;
  --red: #8A2929;
  --red-bg: #FAECEC;
  --red-border: #ECC9C9;
  --radius: 11px;
  --radius-lg: 16px;
  --radius-xl: 18px;
  --radius-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(31, 77, 61, 0.05);
  --shadow: 0 2px 10px rgba(31, 77, 61, 0.05);
  --shadow-panel: 0 12px 34px rgba(31, 77, 61, 0.09), 0 2px 6px rgba(31, 77, 61, 0.04);
  --font-serif: 'Lora', 'Lora Fallback', 'Iowan Old Style', 'Georgia', serif;
  --font-sans: 'DM Sans', 'DM Sans Fallback', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --motion: 180ms cubic-bezier(0.2, 0, 0.2, 1);
  --shell: 1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  font-size: 1.0625rem;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  /* clip, not hidden: `hidden` makes body a scroll container and breaks
     position:sticky for everything inside it. */
  overflow-x: clip;
}
::selection { background: var(--accent); color: #fff; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }
.icon { width: 20px; height: 20px; flex-shrink: 0; stroke-width: 1.7; }
.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;
}

/* ─── LIGHT HEADER ─── */
.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 0.85rem 1.75rem;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  color: var(--text);
  position: relative;
  z-index: 2;
}
.brand-mark {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--brand-primary);
  text-decoration: none;
}
.brand-glyph {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--brand-primary);
  border: 0;
  color: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.brand-name {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: -0.012em;
  line-height: 1.2;
  color: var(--brand-primary);
}
.brand-sub {
  font-size: 0.75rem;
  color: var(--text-light);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  line-height: 1.4;
}
.header-cta { display: flex; align-items: center; gap: 0.85rem; }
.header-phone { font-size: 0.8125rem; color: var(--text-light); line-height: 1.3; text-align: right; }
.header-phone a { color: var(--brand-primary); text-decoration: none; font-size: 0.9375rem; font-weight: 500; }
.header-link {
  background: var(--brand-primary);
  color: #fff;
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  border: 1px solid var(--brand-primary);
  border-radius: var(--radius);
  padding: 0 1.15rem;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  transition: background var(--motion), border-color var(--motion);
}
.header-link:hover { background: var(--brand-primary-soft); border-color: var(--brand-primary-soft); }
.site-nav { display: flex; }
.nav-links { list-style: none; display: flex; gap: 1.75rem; }
.nav-links a {
  color: var(--text-mid);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: color var(--motion);
}
.nav-links a:hover { color: var(--brand-primary); }
.nav-links a:focus-visible { outline: 2px solid var(--accent-deep); outline-offset: 4px; border-radius: 4px; }
.nav-toggle {
  background: transparent;
  border: 1px solid var(--border-strong);
  color: var(--brand-primary);
  border-radius: var(--radius);
  width: 46px; height: 46px;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.nav-toggle:focus-visible { outline: 2px solid var(--accent-deep); outline-offset: 2px; }
.mobile-menu { background: var(--surface); border-bottom: 1px solid var(--border); padding: 0.25rem 1.25rem 1rem; }
.mobile-menu[hidden] { display: none; }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; }
.mobile-menu a {
  display: block;
  color: var(--text-mid);
  text-decoration: none;
  font-size: 1.0625rem;
  font-weight: 500;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:focus-visible { outline: 2px solid var(--accent-deep); outline-offset: -2px; }
.mobile-menu-cta { color: var(--brand-primary) !important; font-weight: 600; border-bottom: 0 !important; }
@media (max-width: 959px) {
  .site-nav { display: none; }
  .nav-toggle { display: inline-flex; }
  .header-link { display: none; }
}
@media (min-width: 960px) {
  .mobile-menu { display: none !important; }
}

/* ─── BUTTONS ─── */
.btn-primary, .btn-secondary, .btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  padding: 0.8rem 1.4rem;
  min-height: 50px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--motion), border-color var(--motion), color var(--motion);
  text-align: center;
  max-width: 100%;
}
.btn-primary {
  background: var(--brand-primary);
  color: #fff;
  border-color: var(--brand-primary);
}
.btn-primary:hover { background: var(--brand-primary-soft); border-color: var(--brand-primary-soft); }
.btn-primary:disabled { opacity: 0.4; cursor: not-allowed; }
.btn-primary:focus-visible, .btn-secondary:focus-visible, .btn-ghost:focus-visible {
  outline: 2px solid var(--accent-deep);
  outline-offset: 2px;
}
.btn-primary.btn-large { width: 100%; font-size: 1.0625rem; min-height: 56px; font-weight: 600; }
.btn-secondary {
  background: transparent;
  color: var(--brand-primary);
  border-color: var(--border-strong);
  font-weight: 500;
}
.btn-secondary:hover { border-color: var(--brand-primary); background: var(--accent-tint); }

/* ─── COMPACT FOOTER ─── */
.site-footer { background: var(--brand-primary); color: rgba(255,255,255,0.74); padding: 2.75rem 1.75rem 1.75rem; }
.footer-inner {
  max-width: var(--shell);
  margin: 0 auto;
  display: grid;
  gap: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid rgba(147, 188, 163, 0.22);
}
.footer-inner > *, .footer-brand-row > *, .footer-col > * { min-width: 0; }
.footer-brand-row { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 0.75rem; min-width: 0; }
.footer-brand .brand-name { color: #fff; }
.footer-brand .brand-sub { color: rgba(255,255,255,0.58); }
.footer-brand .brand-glyph { background: rgba(147, 188, 163, 0.18); }
.footer-firm { font-size: 0.875rem; line-height: 1.6; color: rgba(255,255,255,0.66); }
.footer-firm strong { color: rgba(255,255,255,0.88); font-weight: 500; }
.footer-col .footer-heading {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-light);
  font-weight: 600;
  margin-bottom: 0.7rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.45rem; }
.footer-col a { color: rgba(255,255,255,0.76); text-decoration: none; font-size: 0.875rem; }
.footer-col a:hover { color: #fff; text-decoration: underline; }
.footer-col a, .footer-firm, .footer-disclaimer { overflow-wrap: break-word; }
.footer-disclaimer {
  max-width: var(--shell);
  margin: 1.25rem auto 0;
  font-size: 0.8125rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.55);
}
.footer-disclaimer a { color: rgba(255,255,255,0.75); }

/* ─── ENV BANNER / SKIP LINK / STICKY CTA ─── */
.env-banner { background: #8A2929; color: #fff; text-align: center; padding: 0.5rem 1rem; font-size: 0.875rem; line-height: 1.45; }
.env-banner[hidden] { display: none; }
.env-banner strong { display: block; letter-spacing: 0.04em; }
.env-banner-meta { font-size: 0.75rem; opacity: 0.85; }
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: #fff; color: var(--brand-primary);
  padding: 0.7rem 1.1rem; z-index: 100; border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { left: 0; }
.site-header > *, .brand-mark, .brand-mark > * { min-width: 0; }
.brand-name, .brand-sub { overflow-wrap: anywhere; }

/* ─── Page shell: article + supporting rail ─── */
main { max-width: 1120px; margin: 0 auto; padding: 3rem 1.75rem 4.5rem; }
.breadcrumbs { font-size: 0.9375rem; color: var(--text-light); margin-bottom: 1.75rem; }
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 0.4rem; }
.breadcrumbs li + li::before { content: "›"; margin-right: 0.4rem; color: var(--text-light); }
.breadcrumbs a { color: var(--accent-as-text); text-decoration: none; }
.breadcrumbs a:hover { text-decoration: underline; }

h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.8vw, 2.75rem);
  color: var(--brand-primary);
  line-height: 1.12; margin-bottom: 0.85rem; letter-spacing: -0.022em;
  text-wrap: balance; max-width: 19em;
}
.page-lead { color: var(--text-mid); font-size: 1.125rem; margin-bottom: 2.5rem; text-wrap: pretty; max-width: 38em; line-height: 1.65; }

.page-grid { display: grid; gap: 2.25rem; }
.page-doc { min-width: 0; }
.page-rail { min-width: 0; }
.sec-anchor { display: block; height: 0; overflow: hidden; scroll-margin-top: 1.25rem; }

.rail-toc {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  padding: 1.1rem 1.2rem;
  margin-bottom: 1.1rem;
}
.rail-title {
  font-family: var(--font-sans);
  font-size: 0.8125rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-light); font-weight: 600; margin: 0;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  cursor: pointer; list-style: none; padding: 0.2rem 0;
}
.rail-title::-webkit-details-marker { display: none; }
.rail-title::after {
  content: ''; width: 7px; height: 7px; flex-shrink: 0;
  border-right: 1.5px solid var(--accent-deep); border-bottom: 1.5px solid var(--accent-deep);
  transform: rotate(45deg) translateY(-2px); transition: transform var(--motion);
}
.rail-toc[open] .rail-title::after { transform: rotate(-135deg) translateY(-2px); }
.rail-title:focus-visible { outline: 2px solid var(--accent-deep); outline-offset: 2px; }
.rail-toc[open] .rail-title { margin-bottom: 0.75rem; }
/* Opened by site-nav.js on wide viewports, where the rail is its own
   column; without scripting it simply stays collapsed and still works. */
.rail-toc ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.rail-toc li { margin: 0; font-size: 0.9375rem; line-height: 1.45; }
.rail-toc a { color: var(--text-mid); text-decoration: none; display: block; }
.rail-toc a:hover { color: var(--accent-as-text); text-decoration: underline; }
.rail-cta {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface-soft);
  padding: 1.15rem 1.2rem;
}
.rail-cta p { font-size: 0.9375rem; color: var(--text-mid); margin-bottom: 0.9rem; line-height: 1.55; }
.rail-cta .btn-primary { width: 100%; }
/* Below the rail breakpoint the page already ends with its own CTA — one
   eligibility call to action per screen, not three. */
@media (max-width: 1023px) { .rail-cta { display: none; } }

@media (min-width: 1024px) {
  .page-grid { grid-template-columns: minmax(0, 720px) 290px; column-gap: 3.25rem; align-items: start; }
  .page-doc { grid-column: 1; grid-row: 1; }
  .page-rail { grid-column: 2; grid-row: 1; position: sticky; top: 1.25rem; align-self: start; }
  h1, .page-lead, .breadcrumbs { max-width: 720px; }
}
/* The first section heading sits flush with the top of the rail. */
.page-doc > *:first-child { margin-top: 0; }
.page-doc > .sec-anchor:first-child + h2 { margin-top: 0; }

/* ─── Article typography ─── */
h2 {
  font-family: var(--font-serif);
  font-size: 1.55rem; color: var(--brand-primary);
  margin: 2.75rem 0 0.8rem; letter-spacing: -0.018em; line-height: 1.25;
  text-wrap: pretty;
}
h3 { font-family: var(--font-sans); font-size: 1.125rem; font-weight: 600; color: var(--brand-primary); margin: 1.85rem 0 0.5rem; letter-spacing: -0.01em; }
p, li { color: var(--text-mid); font-size: 1.0625rem; margin-bottom: 0.95rem; line-height: 1.7; }
ul, ol { padding-left: 1.4rem; margin-bottom: 1.1rem; }
li { margin-bottom: 0.5rem; }
a { color: var(--accent-as-text); }
a:focus-visible { outline: 2px solid var(--accent-deep); outline-offset: 2px; }
strong { color: var(--text); font-weight: 600; }
h1, .page-lead, h2, h3, p, li { overflow-wrap: break-word; }
.eyebrow { font-size: 0.8125rem; letter-spacing: 0.11em; text-transform: uppercase; color: var(--accent-as-text); font-weight: 600; margin-bottom: 0.6rem; }

.callout {
  background: var(--accent-tint);
  border: 0;
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.15rem 1.25rem;
  margin: 1.75rem 0;
}
.callout p:last-child { margin-bottom: 0; }
.info-card {
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.5rem;
  margin: 1.75rem 0;
}
.info-card h3 { margin-top: 0; }
.price-figure { font-family: var(--font-serif); font-size: clamp(2.25rem, 3.4vw, 2.75rem); color: var(--brand-primary); font-weight: 600; letter-spacing: -0.03em; line-height: 1; }
.price-figure .plus { font-family: var(--font-sans); font-size: 0.9375rem; color: var(--text-light); font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; }
.glossary-list dt { font-weight: 600; color: var(--brand-primary); margin-top: 1.6rem; font-size: 1.0625rem; }
.glossary-list dd { color: var(--text-mid); font-size: 1.0625rem; margin: 0.35rem 0 0; line-height: 1.7; }
.lead-points { list-style: none; padding: 0; margin: 0 0 1.75rem; }
.lead-points li { position: relative; padding-left: 1.5rem; color: var(--text-mid); }
.lead-points li::before {
  content: ''; position: absolute; left: 0.2rem; top: 0.68em;
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
}
.steps-list { list-style: none; padding: 0; counter-reset: s; }
.steps-list li { position: relative; padding-left: 2.5rem; counter-increment: s; margin-bottom: 1.05rem; }
.steps-list li::before {
  content: counter(s);
  position: absolute; left: 0; top: 0.05em;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--surface); border: 1.5px solid var(--accent); color: var(--accent-as-text);
  font-size: 0.8125rem; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
}
.credential-list { list-style: none; padding: 0; }
.credential-list li { position: relative; padding-left: 1.5rem; }
.credential-list li::before {
  content: ''; position: absolute; left: 0.2rem; top: 0.62em;
  width: 7px; height: 7px; border-radius: 50%; background: var(--accent);
}
.credential-list strong { color: var(--brand-primary); }

/* Comparison table */
.table-wrap { overflow-x: auto; margin: 1.75rem 0; border: 1px solid var(--border-strong); border-radius: var(--radius-lg); background: var(--surface); }
table.compare { width: 100%; border-collapse: collapse; font-size: 1rem; min-width: 480px; }
table.compare th, table.compare td { text-align: left; padding: 0.9rem 1.05rem; border-bottom: 1px solid var(--border); color: var(--text-mid); vertical-align: top; }
table.compare th { background: var(--surface-soft); color: var(--brand-primary); font-weight: 600; font-size: 0.9375rem; letter-spacing: 0.01em; }
table.compare tr:last-child td { border-bottom: 0; }
table.compare td:first-child { color: var(--text); font-weight: 500; }
@media (max-width: 640px) {
  .table-wrap { border: 0; background: transparent; }
  table.compare { min-width: 0; }
  table.compare, table.compare tbody, table.compare tr, table.compare td { display: block; width: 100%; }
  table.compare thead { display: none; }
  table.compare tr { background: var(--surface); border: 1px solid var(--border-strong); border-radius: var(--radius); margin-bottom: 0.85rem; padding: 0.4rem 0.2rem; }
  table.compare td { border-bottom: 1px solid var(--border); }
  table.compare tr td:last-child { border-bottom: 0; }
  table.compare td:first-child { font-weight: 600; color: var(--brand-primary); }
}

/* FAQ disclosures */
.faq { border-bottom: 1px solid var(--border); }
.faq:first-of-type { border-top: 1px solid var(--border); }
.faq summary {
  cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 1.25rem;
  padding: 1.25rem 0.2rem;
  font-size: 1.0625rem; font-weight: 600; color: var(--brand-primary); line-height: 1.45;
  letter-spacing: -0.008em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ''; width: 13px; height: 13px; flex-shrink: 0;
  background:
    linear-gradient(var(--accent-deep), var(--accent-deep)) center/13px 1.6px no-repeat,
    linear-gradient(var(--accent-deep), var(--accent-deep)) center/1.6px 13px no-repeat;
  transition: transform var(--motion);
}
.faq[open] summary::after { transform: rotate(90deg); background: linear-gradient(var(--accent-deep), var(--accent-deep)) center/13px 1.6px no-repeat; }
.faq summary:focus-visible { outline: 2px solid var(--accent-deep); outline-offset: -2px; }
.faq-a { padding: 0 0.2rem 1.25rem; max-width: 68ch; }
.faq-a p:last-child { margin-bottom: 0; }

/* Related + page CTA */
.related { margin-top: 3rem; border-top: 1px solid var(--border); padding-top: 1.75rem; }
.related h2 { font-size: 1.1875rem; margin: 0 0 1rem; font-family: var(--font-sans); font-weight: 600; }
.related ul { list-style: none; padding: 0; display: grid; gap: 0.55rem; }
.related li { margin: 0; font-size: 1rem; }
.related a { color: var(--accent-as-text); text-decoration: none; }
.related a:hover { text-decoration: underline; }
@media (min-width: 620px) { .related ul { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

.page-cta {
  margin-top: 2.25rem;
  background: var(--brand-primary);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem 1.85rem;
}
.page-cta h2 { color: #fff; margin: 0 0 0.5rem; font-size: clamp(1.35rem, 2.4vw, 1.7rem); font-family: var(--font-serif); letter-spacing: -0.02em; }
.page-cta p { color: rgba(255,255,255,0.78); font-size: 1.0625rem; margin-bottom: 1.35rem; }
.page-cta .btn-primary { background: var(--accent-light); color: var(--brand-primary); border-color: var(--accent-light); font-weight: 600; }
.page-cta .btn-primary:hover { background: #A9CDB6; border-color: #A9CDB6; }
.page-cta .btn-primary:focus-visible { outline-color: #fff; }

@media (max-width: 719px) {
  main { padding: 2rem 1.15rem 3rem; }
  .site-header { padding: 0.7rem 1.15rem; }
  .site-footer { padding: 2.25rem 1.15rem 1.5rem; }
  .page-cta { padding: 1.6rem 1.35rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition-duration: 0.001ms !important; animation-duration: 0.001ms !important; }
}
