/* ==========================================================================
   RoofClaim Advisors — Brand 01 design system
   Single stylesheet, no framework, no webfont requests (LCP < 1.5s target).
   Sections: 1 Tokens · 2 Reset · 3 Layout · 4 Type · 5 Buttons · 6 Header
             7 Hero · 8 Cards · 9 Trust · 10 Forms · 11 FAQ · 12 Prose
             13 Footer · 14 Call bar · 15 Utilities · 16 Motion
   ========================================================================== */

/* 1. Tokens ---------------------------------------------------------------- */
:root {
  /* Brand */
  --navy-950: #020617;
  --navy-900: #0f172a;
  --navy-800: #1e293b;
  --navy-700: #334155;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --ice: #f8fafc;
  --white: #ffffff;

  --gold: #f59e0b;
  --gold-dark: #d97706;
  --gold-ink: #b45309;          /* AA-safe gold for text on light surfaces */
  --gold-wash: #fffbeb;
  --green: #15803d;
  --green-wash: #f0fdf4;

  /* Semantic */
  --bg: var(--ice);
  --surface: var(--white);
  --ink: var(--navy-900);
  --ink-muted: var(--navy-700);
  --ink-subtle: var(--slate-500);
  --line: var(--slate-200);
  --focus: var(--gold-dark);

  /* Type scale (fluid, mobile-first) */
  --step--1: clamp(0.82rem, 0.79rem + 0.15vw, 0.9rem);
  --step-0: clamp(1rem, 0.96rem + 0.2vw, 1.075rem);
  --step-1: clamp(1.15rem, 1.08rem + 0.35vw, 1.3rem);
  --step-2: clamp(1.35rem, 1.22rem + 0.6vw, 1.65rem);
  --step-3: clamp(1.65rem, 1.4rem + 1.1vw, 2.15rem);
  --step-4: clamp(2rem, 1.55rem + 2vw, 3.05rem);

  /* Space */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.5rem;
  --sp-6: 2rem;
  --sp-7: 3rem;
  --sp-8: 4rem;
  --sp-9: 6rem;

  /* Shape */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06), 0 1px 3px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 4px 6px -2px rgba(15, 23, 42, 0.06), 0 12px 20px -6px rgba(15, 23, 42, 0.12);
  --shadow-lg: 0 10px 15px -6px rgba(15, 23, 42, 0.1), 0 28px 48px -12px rgba(15, 23, 42, 0.22);

  --container: 1140px;
  --container-narrow: 760px;

  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", sans-serif;

  /* Fixed heights keep the sticky call bar from shifting layout (CLS = 0) */
  --callbar-h: 68px;
}

/* 2. Reset ----------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--step-0);
  font-weight: 400;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

h1, h2, h3, h4, p, ul, ol, figure, blockquote { margin: 0; }
ul, ol { padding: 0; list-style: none; }

a { color: var(--gold-ink); text-decoration: none; }
a:hover { text-decoration: underline; }

:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
  border-radius: var(--r-sm);
}

.skip-link {
  position: absolute;
  left: var(--sp-4);
  top: -100px;
  z-index: 100;
  padding: var(--sp-3) var(--sp-4);
  background: var(--gold);
  color: var(--navy-900);
  font-weight: 700;
  border-radius: var(--r-sm);
}
.skip-link:focus { top: var(--sp-4); }

/* 3. Layout ---------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--sp-5);
}
.container--narrow { max-width: var(--container-narrow); }

.section { padding-block: var(--sp-7); }
.section--tight { padding-block: var(--sp-6); }
.section--alt { background: var(--white); border-block: 1px solid var(--line); }
.section--dark { background: var(--navy-900); color: var(--slate-200); }
.section--dark h2, .section--dark h3 { color: var(--white); }

@media (min-width: 768px) {
  .section { padding-block: var(--sp-8); }
  .section--tight { padding-block: var(--sp-7); }
}

.grid { display: grid; gap: var(--sp-4); }
@media (min-width: 640px) { .grid--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}

.stack > * + * { margin-top: var(--sp-4); }
.cluster {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  align-items: center;
}

/* 4. Type ------------------------------------------------------------------ */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-wrap: balance;
}
h1 { font-size: var(--step-4); }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-1); letter-spacing: -0.01em; }
h4 { font-size: var(--step-0); letter-spacing: 0; }

p { text-wrap: pretty; }
.lead { font-size: var(--step-1); color: var(--ink-muted); line-height: 1.55; }
.muted { color: var(--ink-subtle); }
.small { font-size: var(--step--1); line-height: 1.55; }

.eyebrow {
  display: inline-block;
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-ink);
}
.section--dark .eyebrow { color: var(--gold); }

.section-head { max-width: 62ch; margin-bottom: var(--sp-6); }
.section-head > * + * { margin-top: var(--sp-3); }

/* 5. Buttons --------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  min-height: 52px;
  padding: var(--sp-3) var(--sp-5);
  border: 2px solid transparent;
  border-radius: var(--r-md);
  font: inherit;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-900);
  box-shadow: var(--shadow-md);
}
.btn--primary:hover { background: var(--gold-dark); border-color: var(--gold-dark); }

.btn--ghost {
  background: transparent;
  border-color: var(--slate-300);
  color: var(--ink);
}
.btn--ghost:hover { border-color: var(--navy-900); background: var(--white); }

.section--dark .btn--ghost,
.hero .btn--ghost { border-color: rgba(255, 255, 255, 0.35); color: var(--white); }
.section--dark .btn--ghost:hover,
.hero .btn--ghost:hover { border-color: var(--white); background: rgba(255, 255, 255, 0.08); }

.btn--block { width: 100%; }
.btn--lg { min-height: 60px; font-size: var(--step-1); padding-inline: var(--sp-6); }

.btn__sub {
  display: block;
  font-size: var(--step--1);
  font-weight: 500;
  opacity: 0.8;
}

/* 6. Header ---------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--navy-900);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  min-height: 68px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  color: var(--white);
  text-decoration: none;
}
.brand:hover { text-decoration: none; }
.brand__mark {
  flex: none;
  width: 36px;
  height: 36px;
  color: var(--gold);
}
.brand__name {
  display: block;
  font-size: var(--step-0);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.brand__tag {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate-400);
}

.site-nav { display: none; }
@media (min-width: 900px) {
  .site-nav { display: flex; gap: var(--sp-5); align-items: center; }
}
.site-nav a {
  color: var(--slate-300);
  font-size: var(--step--1);
  font-weight: 600;
  text-decoration: none;
}
.site-nav a:hover { color: var(--white); }
.site-nav a[aria-current="page"] { color: var(--white); box-shadow: inset 0 -2px 0 var(--gold); }

.header-call { display: none; }
@media (min-width: 560px) {
  .header-call { display: inline-flex; min-height: 44px; padding-inline: var(--sp-4); }
}

/* 7. Hero ------------------------------------------------------------------ */
.hero {
  position: relative;
  isolation: isolate;
  background: var(--navy-900);
  color: var(--slate-200);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(60rem 30rem at 15% -10%, rgba(245, 158, 11, 0.18), transparent 60%),
    radial-gradient(45rem 28rem at 100% 0%, rgba(51, 65, 85, 0.65), transparent 65%),
    linear-gradient(180deg, var(--navy-900) 0%, var(--navy-950) 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.25;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.14) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 75%);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 75%);
}

.hero__inner { padding-block: var(--sp-7) var(--sp-8); }
@media (min-width: 900px) {
  .hero__inner {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: var(--sp-7);
    align-items: start;
    padding-block: var(--sp-8) var(--sp-9);
  }
}

.hero h1 { color: var(--white); }
.hero__copy > * + * { margin-top: var(--sp-4); }
.hero__lead { font-size: var(--step-1); color: var(--slate-300); line-height: 1.55; }

.hero__points { display: grid; gap: var(--sp-2); margin-top: var(--sp-5); }
.hero__points li {
  display: flex;
  gap: var(--sp-3);
  align-items: flex-start;
  font-size: var(--step--1);
  font-weight: 600;
  color: var(--slate-300);
}
.hero__points svg { flex: none; width: 20px; height: 20px; margin-top: 2px; color: var(--gold); }

/* 8. Cards ----------------------------------------------------------------- */
.card {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  padding: var(--sp-5);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
}
.card--link { transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease; }
.card--link:hover { border-color: var(--slate-300); box-shadow: var(--shadow-md); transform: translateY(-2px); }

.card__icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  background: var(--gold-wash);
  color: var(--gold-ink);
  border: 1px solid #fde68a;
}
.card__icon svg { width: 22px; height: 22px; }
.card p { color: var(--ink-muted); font-size: var(--step--1); }

.card__list { display: grid; gap: var(--sp-2); margin-top: auto; padding-top: var(--sp-3); }
.card__list li {
  position: relative;
  padding-left: var(--sp-5);
  font-size: var(--step--1);
  color: var(--ink-muted);
}
.card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--gold);
}

/* 9. Trust ----------------------------------------------------------------- */
.stats { display: grid; gap: var(--sp-4); }
@media (min-width: 640px) { .stats { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .stats { grid-template-columns: repeat(4, 1fr); } }

.stat {
  padding: var(--sp-4) var(--sp-5);
  border-left: 3px solid var(--gold);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 0 var(--r-md) var(--r-md) 0;
}
.stat__value {
  display: block;
  font-size: var(--step-3);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 1.1;
}
.stat__label { display: block; margin-top: var(--sp-1); font-size: var(--step--1); color: var(--slate-400); }

.badges { display: grid; gap: var(--sp-3); }
@media (min-width: 720px) { .badges { grid-template-columns: repeat(3, 1fr); } }

.badge {
  display: flex;
  gap: var(--sp-3);
  align-items: flex-start;
  padding: var(--sp-4);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
}
.badge svg { flex: none; width: 22px; height: 22px; color: var(--green); margin-top: 2px; }
.badge strong { display: block; font-size: var(--step--1); font-weight: 700; line-height: 1.35; }
.badge span { display: block; font-size: var(--step--1); color: var(--ink-subtle); line-height: 1.45; }

.steps { counter-reset: step; display: grid; gap: var(--sp-5); }
@media (min-width: 800px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step { position: relative; padding-top: var(--sp-6); }
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: var(--r-pill);
  background: var(--navy-900);
  color: var(--gold);
  font-weight: 700;
  font-size: var(--step-0);
}
.step h3 { margin-bottom: var(--sp-2); }
.step p { color: var(--ink-muted); font-size: var(--step--1); }

.areas { display: grid; gap: var(--sp-2); }
@media (min-width: 640px) { .areas { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .areas { grid-template-columns: repeat(3, 1fr); } }
.areas li {
  padding: var(--sp-3) var(--sp-4);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  font-size: var(--step--1);
  font-weight: 600;
}
.areas li span { display: block; font-weight: 400; color: var(--ink-subtle); }

/* 10. Forms ---------------------------------------------------------------- */
.lead-form {
  padding: var(--sp-5);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  color: var(--ink);
}
@media (min-width: 560px) { .lead-form { padding: var(--sp-6); } }

.lead-form__head { margin-bottom: var(--sp-4); }
.lead-form__head h2 { font-size: var(--step-2); }
.lead-form__head p { margin-top: var(--sp-2); font-size: var(--step--1); color: var(--ink-subtle); }

.field { display: block; margin-bottom: var(--sp-4); }
.field__label {
  display: block;
  margin-bottom: var(--sp-2);
  font-size: var(--step--1);
  font-weight: 700;
}
.field__hint { font-weight: 400; color: var(--ink-subtle); }

.input,
.select {
  display: block;
  width: 100%;
  min-height: 52px;
  padding: var(--sp-3) var(--sp-4);
  font: inherit;
  font-size: 16px; /* 16px prevents iOS zoom-on-focus reflow */
  color: var(--ink);
  background: var(--white);
  border: 1.5px solid var(--slate-300);
  border-radius: var(--r-md);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.input::placeholder { color: var(--slate-400); }
.input:hover, .select:hover { border-color: var(--slate-500); }
.input:focus, .select:focus {
  border-color: var(--gold-dark);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.25);
  outline: none;
}
.input:invalid:not(:placeholder-shown) { border-color: #b91c1c; }

.select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: var(--sp-7);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%2364748b'%3E%3Cpath d='M5.5 7.5 10 12l4.5-4.5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--sp-4) center;
  background-size: 20px 20px;
}

.consent {
  display: flex;
  gap: var(--sp-3);
  align-items: flex-start;
  padding: var(--sp-4);
  background: var(--slate-100);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  margin-bottom: var(--sp-4);
  cursor: pointer;
}
.consent input[type="checkbox"] {
  flex: none;
  width: 22px;
  height: 22px;
  margin: 2px 0 0;
  accent-color: var(--gold-dark);
}
.consent span { font-size: 0.78rem; line-height: 1.5; color: var(--ink-muted); }

.form-footnote { margin-top: var(--sp-3); font-size: 0.75rem; line-height: 1.5; color: var(--ink-subtle); }

/* Affiliate disclosure notice, placed directly above the form */
.disclosure-note {
  display: flex;
  gap: var(--sp-3);
  align-items: flex-start;
  padding: var(--sp-3) var(--sp-4);
  margin-bottom: var(--sp-4);
  background: var(--gold-wash);
  border: 1px solid #fde68a;
  border-left: 3px solid var(--gold);
  border-radius: var(--r-md);
  font-size: 0.78rem;
  line-height: 1.5;
  color: #78350f;
}
.disclosure-note svg { flex: none; width: 18px; height: 18px; margin-top: 2px; }
.disclosure-note a { color: #78350f; text-decoration: underline; }

/* Compact estimate search used in the homepage hero */
.estimate-search { display: grid; gap: var(--sp-3); }
@media (min-width: 560px) {
  .estimate-search--inline { grid-template-columns: 1fr 1.2fr; }
  .estimate-search--inline .estimate-search__full { grid-column: 1 / -1; }
}

/* 11. FAQ ------------------------------------------------------------------ */
.faq { display: grid; gap: var(--sp-3); }
.faq__item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
}
.faq__item[open] { border-color: var(--slate-300); box-shadow: var(--shadow-sm); }
.faq__q {
  display: flex;
  gap: var(--sp-3);
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-4) var(--sp-5);
  font-weight: 700;
  font-size: var(--step-0);
  cursor: pointer;
  list-style: none;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after {
  content: "";
  flex: none;
  width: 12px;
  height: 12px;
  border-right: 2.5px solid var(--gold-dark);
  border-bottom: 2.5px solid var(--gold-dark);
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform 0.15s ease;
}
.faq__item[open] .faq__q::after { transform: rotate(225deg) translate(-2px, -2px); }
.faq__a { padding: 0 var(--sp-5) var(--sp-5); color: var(--ink-muted); font-size: var(--step--1); }
.faq__a > * + * { margin-top: var(--sp-3); }

/* 12. Prose (legal + editorial pages) -------------------------------------- */
.page-header {
  background: var(--navy-900);
  color: var(--slate-300);
  padding-block: var(--sp-6) var(--sp-7);
}
.page-header h1 { color: var(--white); }
.page-header p { margin-top: var(--sp-3); max-width: 60ch; }
.page-header .eyebrow { margin-bottom: var(--sp-3); }

.prose {
  max-width: 72ch;
  font-size: var(--step-0);
  color: var(--ink-muted);
}
.prose > * + * { margin-top: var(--sp-4); }
.prose h2 {
  margin-top: var(--sp-7);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--line);
  font-size: var(--step-2);
}
.prose h2:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.prose h3 { margin-top: var(--sp-5); }
.prose ul, .prose ol { display: grid; gap: var(--sp-2); padding-left: var(--sp-5); }
.prose ul li { list-style: disc; }
.prose ol li { list-style: decimal; }
.prose li::marker { color: var(--gold-dark); }
.prose strong { color: var(--ink); }
.prose a { text-decoration: underline; }

.callout {
  padding: var(--sp-4) var(--sp-5);
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: var(--r-md);
  font-size: var(--step--1);
}
.callout--info { border-left-color: var(--navy-700); }

.meta-line {
  font-size: var(--step--1);
  color: var(--ink-subtle);
  padding-bottom: var(--sp-4);
  border-bottom: 1px solid var(--line);
}

.contact-grid { display: grid; gap: var(--sp-6); }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1.1fr 0.9fr; align-items: start; } }

/* 13. Footer --------------------------------------------------------------- */
.site-footer {
  background: var(--navy-950);
  color: var(--slate-400);
  padding-block: var(--sp-7) var(--sp-6);
  font-size: var(--step--1);
}
.footer-grid { display: grid; gap: var(--sp-6); }
@media (min-width: 800px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }

.site-footer h3 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate-300);
  margin-bottom: var(--sp-3);
}
.footer-links { display: grid; gap: var(--sp-2); }
.footer-links a { color: var(--slate-400); text-decoration: none; }
.footer-links a:hover { color: var(--white); text-decoration: underline; }

.footer-legal {
  margin-top: var(--sp-6);
  padding-top: var(--sp-5);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  gap: var(--sp-3);
  font-size: 0.75rem;
  line-height: 1.6;
  color: var(--slate-500);
}
.footer-legal a { color: var(--slate-400); text-decoration: underline; }

/* 14. Sticky mobile call bar ---------------------------------------------- */
/* Space is reserved on <body> so the fixed bar never causes layout shift. */
body { padding-bottom: calc(var(--callbar-h) + env(safe-area-inset-bottom, 0px)); }

.call-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  height: calc(var(--callbar-h) + env(safe-area-inset-bottom, 0px));
  padding: var(--sp-2) var(--sp-4) calc(var(--sp-2) + env(safe-area-inset-bottom, 0px));
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  background: var(--navy-900);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.call-bar .btn { flex: 1; min-height: 52px; }

@media (min-width: 900px) {
  body { padding-bottom: 0; }
  .call-bar { display: none; }
}

/* 15. Utilities ------------------------------------------------------------ */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.text-center { text-align: center; }
.mt-5 { margin-top: var(--sp-5); }
.mt-6 { margin-top: var(--sp-6); }

.pill {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--r-pill);
  background: var(--green-wash);
  border: 1px solid #bbf7d0;
  color: #14532d;
  font-size: 0.75rem;
  font-weight: 700;
}
.pill--dark { background: rgba(245, 158, 11, 0.12); border-color: rgba(245, 158, 11, 0.4); color: var(--gold); }
.pill__dot { width: 8px; height: 8px; border-radius: var(--r-pill); background: currentColor; }

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

@media print {
  .site-header, .call-bar, .hero::before, .hero::after { display: none; }
  body { padding-bottom: 0; background: #fff; }
}
