/* =========================================================================
   Monticello Roofing Co — design system
   Weathered zinc + copper. Archivo (display) / Source Serif 4 (body).

   Deliberately not the red-white-blue of every competitor in this market.
   A serif body face is the fastest way to look unlike the other five
   results on the page.

   Contrast: --copper (#B0561F) on white = 5.0:1. Body ink on bone = 14.8:1.
   Every interactive target is >=44px. Motion respects prefers-reduced-motion.
   ========================================================================= */

/* ---------- 1. Tokens ---------- */
:root {
  /* Ink / zinc ramp */
  --ink:        #10161C;
  --zinc-900:   #1B242C;
  --zinc-800:   #253039;
  --zinc-700:   #2E3D48;
  --zinc-600:   #415462;
  --zinc-500:   #55697A;
  --zinc-400:   #7A8B99;
  --zinc-300:   #9BAAB6;
  --zinc-200:   #C6D0D8;
  --zinc-100:   #E4EAEE;

  /* Warm neutrals */
  --bone:       #F6F4F0;
  --bone-dark:  #EDE9E2;
  --surface:    #FFFFFF;
  --line:       #DFD9D0;
  --line-soft:  #EBE6DE;

  /* Accents */
  --copper:        #B0561F;  /* 5.0:1 on white — safe for text and buttons */
  --copper-bright: #C86A2A;  /* fills and large text only */
  --copper-dark:   #8E4416;
  --copper-wash:   #FBF1E9;
  --patina:        #2F6F63;
  --patina-wash:   #EAF3F1;

  /* Feedback */
  --danger:      #A3231B;
  --danger-wash: #FDF0EF;

  /* Type */
  --font-display: "Archivo", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Source Serif 4", Georgia, "Times New Roman", serif;

  --step--1: clamp(0.83rem, 0.80rem + 0.15vw, 0.90rem);
  --step-0:  clamp(1.00rem, 0.96rem + 0.20vw, 1.09rem);
  --step-1:  clamp(1.20rem, 1.13rem + 0.35vw, 1.40rem);
  --step-2:  clamp(1.44rem, 1.32rem + 0.60vw, 1.80rem);
  --step-3:  clamp(1.73rem, 1.53rem + 1.00vw, 2.32rem);
  --step-4:  clamp(2.07rem, 1.76rem + 1.55vw, 2.99rem);
  --step-5:  clamp(2.49rem, 2.02rem + 2.35vw, 3.85rem);

  /* 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;

  /* Structure */
  --container: 1200px;
  --container-narrow: 760px;
  --gutter: 1rem;
  --radius: 6px;
  --radius-lg: 12px;

  --shadow-sm: 0 1px 2px rgba(16, 22, 28, 0.06), 0 1px 3px rgba(16, 22, 28, 0.08);
  --shadow-md: 0 4px 12px rgba(16, 22, 28, 0.08), 0 2px 4px rgba(16, 22, 28, 0.06);
  --shadow-lg: 0 12px 32px rgba(16, 22, 28, 0.12), 0 4px 8px rgba(16, 22, 28, 0.06);

  --header-h: 72px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

@media (min-width: 768px) {
  :root { --gutter: 1.5rem; --header-h: 80px; }
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  /* Anchor targets clear the sticky header */
  scroll-padding-top: calc(var(--header-h) + 1rem);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--zinc-800);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-wrap: break-word;
}

body.menu-open { overflow: hidden; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 var(--sp-4);
  text-wrap: balance;
}

h1 { font-size: var(--step-5); }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-2); }
h4 { font-size: var(--step-1); font-weight: 700; }

p, ul, ol, dl, table, figure, blockquote { margin: 0 0 var(--sp-5); }
p:last-child, ul:last-child, ol:last-child { margin-bottom: 0; }

a { color: var(--copper); text-decoration-thickness: 1px; text-underline-offset: 0.16em; }
a:hover { color: var(--copper-dark); }

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

ul, ol { padding-left: 1.25em; }
li + li { margin-top: var(--sp-2); }

strong, b { font-weight: 600; color: var(--ink); }

hr { border: 0; border-top: 1px solid var(--line); margin: var(--sp-7) 0; }

code {
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 0.88em;
  background: var(--bone-dark);
  padding: 0.12em 0.36em;
  border-radius: 3px;
}

table { width: 100%; border-collapse: collapse; font-size: var(--step--1); }
th, td { text-align: left; padding: var(--sp-3) var(--sp-4); border-bottom: 1px solid var(--line); }
th { font-family: var(--font-display); font-weight: 700; color: var(--ink); background: var(--bone); }

/* ---------- 3. Focus + a11y utilities ---------- */
:focus { outline: none; }

:focus-visible {
  outline: 3px solid var(--copper);
  outline-offset: 2px;
  border-radius: 2px;
}

.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;
}

.skip-link {
  position: absolute;
  top: -60px; left: var(--sp-4);
  z-index: 200;
  background: var(--ink);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  padding: var(--sp-3) var(--sp-5);
  border-radius: 0 0 var(--radius) var(--radius);
  text-decoration: none;
  transition: top 0.15s var(--ease);
}
.skip-link:focus { top: 0; color: #fff; }

main:focus { outline: none; }

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

.layout-2col {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-7);
  padding-block: var(--sp-7);
}

@media (min-width: 1024px) {
  .layout-2col {
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: var(--sp-8);
    align-items: start;
  }
}

.section { padding-block: var(--sp-8); }
.section--bone { background: var(--bone); }
.section--ink { background: var(--ink); color: var(--zinc-200); }
.section--ink h2, .section--ink h3 { color: #fff; }

.section-head { max-width: 62ch; margin-bottom: var(--sp-6); }
.section-head p { color: var(--zinc-600); font-size: var(--step-1); }
.section--ink .section-head p { color: var(--zinc-300); }

.eyebrow {
  font-family: var(--font-display);
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: var(--sp-3);
}

.lede {
  font-size: var(--step-1);
  line-height: 1.55;
  color: var(--zinc-600);
  max-width: 62ch;
}

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

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--copper); color: #fff; border-color: var(--copper); }
.btn--primary:hover { background: var(--copper-dark); border-color: var(--copper-dark); color: #fff; }


.btn--ghost { background: rgba(255,255,255,0.10); color: #fff; border-color: rgba(255,255,255,0.35); }
.btn--ghost:hover { background: rgba(255,255,255,0.18); border-color: #fff; color: #fff; }

.btn--sm { min-height: 44px; padding: var(--sp-2) var(--sp-4); font-size: var(--step--1); }
.btn--lg { min-height: 56px; padding: var(--sp-4) var(--sp-6); font-size: var(--step-1); }
.btn--block { display: flex; width: 100%; }
.btn + .btn { margin-top: var(--sp-3); }

.btn[disabled] { opacity: 0.5; cursor: not-allowed; transform: none; }

/* ---------- 6. Top bar ---------- */
.top-bar {
  background: var(--ink);
  color: var(--zinc-200);
  font-family: var(--font-display);
  font-size: var(--step--1);
}

.top-bar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-2) var(--sp-5);
  padding-block: var(--sp-2);
  min-height: 40px;
}

.top-bar-msg { margin: 0; color: var(--zinc-300); }

.top-bar-contact {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  margin: 0;
}

.top-bar-hours { color: var(--zinc-400); }

.top-bar-contact a {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  padding: var(--sp-1) 0;
}
.top-bar-contact a:hover { color: var(--copper-bright); }

@media (max-width: 640px) {
  .top-bar-msg { display: none; }
  .top-bar-hours { display: none; }
  .top-bar-inner { justify-content: center; }
}

/* ---------- 7. Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.2s var(--ease);
}

.site-header.is-scrolled { box-shadow: var(--shadow-md); }

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

.brand {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  text-decoration: none;
  flex-shrink: 0;
}

.brand-mark { flex-shrink: 0; }

.brand-text { display: flex; flex-direction: column; line-height: 1.1; }

.brand-name {
  font-family: var(--font-display);
  font-size: var(--step-1);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.brand-sub {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--copper);
}

.primary-nav { display: none; }

@media (min-width: 1024px) {
  .primary-nav { display: block; }
}

.primary-nav ul {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  list-style: none;
  margin: 0;
  padding: 0;
}
.primary-nav li { margin: 0; }

.primary-nav a {
  display: block;
  padding: var(--sp-3) var(--sp-3);
  font-family: var(--font-display);
  font-size: var(--step--1);
  font-weight: 600;
  color: var(--zinc-700);
  text-decoration: none;
  border-radius: var(--radius);
  position: relative;
}

.primary-nav a:hover { color: var(--ink); background: var(--bone); }

.primary-nav a.is-active { color: var(--copper); }
.primary-nav a.is-active::after {
  content: "";
  position: absolute;
  left: var(--sp-3); right: var(--sp-3); bottom: 4px;
  height: 2px;
  background: var(--copper);
  border-radius: 2px;
}

.header-actions { display: flex; align-items: center; gap: var(--sp-3); }

.header-call { display: none; }
@media (min-width: 560px) { .header-call { display: inline-flex; } }

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  cursor: pointer;
}
.menu-toggle:hover { background: var(--bone); }

@media (min-width: 1024px) { .menu-toggle { display: none; } }

.menu-toggle-bars { display: block; width: 20px; }
.menu-toggle-bars span {
  display: block;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.2s var(--ease), opacity 0.2s var(--ease);
}
.menu-toggle-bars span + span { margin-top: 4px; }

.menu-toggle[aria-expanded="true"] .menu-toggle-bars span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle-bars span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] .menu-toggle-bars span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- 8. Mobile menu ---------- */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: var(--surface);
  padding: var(--sp-5) var(--gutter) var(--sp-8);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.mobile-menu[hidden] { display: none; }

.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: var(--sp-4);
  border-bottom: 1px solid var(--line);
  margin-bottom: var(--sp-5);
}

.mobile-menu-title {
  font-family: var(--font-display);
  font-size: var(--step-1);
  font-weight: 800;
  color: var(--ink);
}

.mobile-menu-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  cursor: pointer;
}
.mobile-menu-close:hover { background: var(--bone); }

.mobile-nav-list { list-style: none; margin: 0 0 var(--sp-6); padding: 0; }
.mobile-nav-list li { margin: 0; }

.mobile-nav-list a {
  display: block;
  padding: var(--sp-4) var(--sp-2);
  font-family: var(--font-display);
  font-size: var(--step-2);
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--line-soft);
}
.mobile-nav-list a.is-active { color: var(--copper); }

.mobile-menu-label {
  font-family: var(--font-display);
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--zinc-500);
  margin-bottom: var(--sp-3);
}

.mobile-menu-services ul { list-style: none; margin: 0 0 var(--sp-6); padding: 0; }
.mobile-menu-services li { margin: 0; }
.mobile-menu-services a {
  display: block;
  padding: var(--sp-3) var(--sp-2);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--step-0);
  color: var(--zinc-700);
  text-decoration: none;
  min-height: 44px;
}
.mobile-menu-services a:hover { color: var(--copper); }

.mobile-menu-foot { padding-top: var(--sp-5); border-top: 1px solid var(--line); }

.mobile-menu-hours {
  margin-top: var(--sp-4);
  font-size: var(--step--1);
  color: var(--zinc-500);
  text-align: center;
}

/* ---------- 9. Mobile dock ---------- */
.mobile-dock {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--ink);
  border-top: 1px solid var(--zinc-700);
  padding-bottom: env(safe-area-inset-bottom, 0);
}

@media (min-width: 768px) { .mobile-dock { display: none; } }

body { padding-bottom: 68px; }
@media (min-width: 768px) { body { padding-bottom: 0; } }

.mobile-dock-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-height: 60px;
  padding: var(--sp-2);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--zinc-200);
  text-decoration: none;
  border-right: 1px solid var(--zinc-800);
}
.mobile-dock-item:last-child { border-right: 0; }
.mobile-dock-item--call { background: var(--copper); color: #fff; }
.mobile-dock-item--call:hover { background: var(--copper-dark); color: #fff; }

/* ---------- 10. Breadcrumbs ---------- */
.breadcrumbs {
  background: var(--bone);
  border-bottom: 1px solid var(--line-soft);
  font-size: var(--step--1);
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--sp-2);
  list-style: none;
  margin: 0;
  padding: var(--sp-3) 0;
}
.breadcrumbs li { margin: 0; display: flex; align-items: center; gap: var(--sp-2); }

.breadcrumbs li + li::before {
  content: "/";
  color: var(--zinc-300);
}

.breadcrumbs a { color: var(--zinc-600); text-decoration: none; }
.breadcrumbs a:hover { color: var(--copper); text-decoration: underline; }
.breadcrumbs [aria-current="page"] { color: var(--ink); font-weight: 600; }

/* ---------- 11. Page head ---------- */
.page-head {
  padding-block: var(--sp-7) var(--sp-6);
  border-bottom: 1px solid var(--line-soft);
}

.page-head h1 { max-width: 20ch; }
.page-head .lede { margin-top: var(--sp-4); }

.page-head--service, .page-head--area {
  background: linear-gradient(180deg, var(--bone) 0%, var(--surface) 100%);
}

.page-head--post { padding-bottom: var(--sp-5); }

.page-head-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-top: var(--sp-5);
}
.page-head-actions .btn + .btn { margin-top: 0; }
.page-head-actions .btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--zinc-300);
}
.page-head-actions .btn--ghost:hover { background: var(--bone-dark); border-color: var(--ink); color: var(--ink); }

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2) var(--sp-5);
  margin-top: var(--sp-4);
  font-family: var(--font-display);
  font-size: var(--step--1);
  color: var(--zinc-500);
}

.area-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: var(--sp-4);
  margin: var(--sp-5) 0 0;
  padding: var(--sp-5);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.area-facts > div { margin: 0; }
.area-facts dt {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--zinc-500);
  margin-bottom: var(--sp-1);
}
.area-facts dd {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
  font-size: var(--step-0);
}

/* ---------- 12. Hero ---------- */
.hero {
  position: relative;
  background: var(--ink);
  color: var(--zinc-200);
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
  padding-block: var(--sp-8);
  position: relative;
  z-index: 2;
}

@media (min-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1.05fr 0.95fr;
    gap: var(--sp-8);
    padding-block: var(--sp-9);
    align-items: center;
  }
}

.hero h1 { color: #fff; max-width: 16ch; }
.hero .eyebrow { color: var(--copper-bright); }

.hero-sub {
  font-size: var(--step-1);
  line-height: 1.55;
  color: var(--zinc-300);
  max-width: 54ch;
  margin-bottom: var(--sp-6);
}

.hero-actions { display: flex; flex-wrap: wrap; gap: var(--sp-3); }
.hero-actions .btn + .btn { margin-top: 0; }

.hero-points {
  list-style: none;
  margin: var(--sp-6) 0 0;
  padding: var(--sp-5) 0 0;
  border-top: 1px solid var(--zinc-700);
  display: grid;
  gap: var(--sp-3);
}

.hero-points li {
  margin: 0;
  padding-left: 1.75rem;
  position: relative;
  font-family: var(--font-display);
  font-size: var(--step--1);
  font-weight: 600;
  color: var(--zinc-200);
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.4em;
  width: 10px; height: 10px;
  background: var(--copper-bright);
  border-radius: 2px;
  transform: rotate(45deg);
}

.hero-media img, .hero-media .img-pending {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* ---------- 13. Prose ---------- */
.prose { max-width: 72ch; min-width: 0; }

.prose > h2 {
  margin-top: var(--sp-7);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--line-soft);
}
.prose > h2:first-child { margin-top: 0; padding-top: 0; border-top: 0; }

.prose > h3 { margin-top: var(--sp-6); }
.prose > h4 { margin-top: var(--sp-5); }

.prose li { line-height: 1.6; }

.prose-figure { margin: 0 0 var(--sp-6); }
.prose-figure img, .prose-img { border-radius: var(--radius-lg); width: 100%; }
.prose-figure figcaption {
  margin-top: var(--sp-3);
  font-family: var(--font-display);
  font-size: var(--step--1);
  color: var(--zinc-500);
}

.prose blockquote {
  margin: var(--sp-6) 0;
  padding: var(--sp-4) var(--sp-5);
  border-left: 4px solid var(--copper);
  background: var(--copper-wash);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.prose blockquote p:last-child { margin-bottom: 0; }

/* Key-fact callout — the "answer box" pattern for AEO/featured snippets */
.callout {
  margin: var(--sp-6) 0;
  padding: var(--sp-5);
  background: var(--bone);
  border: 1px solid var(--line);
  border-left: 4px solid var(--patina);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.callout > :first-child { margin-top: 0; }
.callout > :last-child { margin-bottom: 0; }
.callout-label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--patina);
  margin-bottom: var(--sp-2);
}
.callout--warn { border-left-color: var(--danger); background: var(--danger-wash); }
.callout--warn .callout-label { color: var(--danger); }

.related-block {
  margin-top: var(--sp-7);
  padding: var(--sp-5);
  background: var(--bone);
  border-radius: var(--radius-lg);
}
.related-block h2 { font-size: var(--step-1); margin-bottom: var(--sp-4); border: 0; padding: 0; }
.related-list { list-style: none; margin: 0 0 var(--sp-4); padding: 0; }
.related-list li { margin: 0 0 var(--sp-3); }
.related-list a { font-family: var(--font-display); font-weight: 700; display: block; }
.related-list span { display: block; font-size: var(--step--1); color: var(--zinc-600); }

/* ---------- 14. Cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
}

@media (min-width: 620px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .card-grid--4 { grid-template-columns: repeat(4, 1fr); } }

.card {
  display: flex;
  flex-direction: column;
  padding: var(--sp-5);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: border-color 0.15s var(--ease), box-shadow 0.15s var(--ease), transform 0.15s var(--ease);
}

.card:hover { border-color: var(--copper); box-shadow: var(--shadow-md); transform: translateY(-2px); }

.card h3 { font-size: var(--step-1); margin-bottom: var(--sp-2); }
.card h3 a { color: inherit; text-decoration: none; }
.card h3 a::after { content: ""; position: absolute; inset: 0; }
.card { position: relative; }

.card p { font-size: var(--step--1); color: var(--zinc-600); margin-bottom: var(--sp-4); }

.card-link {
  margin-top: auto;
  font-family: var(--font-display);
  font-size: var(--step--1);
  font-weight: 700;
  color: var(--copper);
}

/* ---------- 15. Process / steps ---------- */
.steps {
  list-style: none;
  counter-reset: step;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--sp-5);
}

@media (min-width: 768px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .steps--4 { grid-template-columns: repeat(4, 1fr); } }

.step { margin: 0; padding: 0; }
.step h3 { font-size: var(--step-1); margin-bottom: var(--sp-2); }
.step p { font-size: var(--step--1); color: var(--zinc-600); }

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  margin-bottom: var(--sp-3);
  font-family: var(--font-display);
  font-size: var(--step-0);
  font-weight: 800;
  color: #fff;
  background: var(--ink);
  border-radius: var(--radius);
}

/* ---------- 16. What to expect ---------- */
.expect { background: var(--bone); padding-block: var(--sp-8); }
.expect-head { max-width: 60ch; margin-bottom: var(--sp-6); }
.expect-head p { color: var(--zinc-600); font-size: var(--step-1); }

.expect-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--sp-5);
}

@media (min-width: 768px) { .expect-steps { grid-template-columns: repeat(2, 1fr); } }

.expect-step {
  margin: 0;
  padding: var(--sp-5);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.expect-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  margin-bottom: var(--sp-3);
  font-family: var(--font-display);
  font-size: var(--step--1);
  font-weight: 800;
  color: var(--copper);
  background: var(--copper-wash);
  border-radius: 50%;
}

.expect-step h3 { font-size: var(--step-1); margin-bottom: var(--sp-2); }
.expect-step p { font-size: var(--step--1); color: var(--zinc-600); margin: 0; }

.expect-foot {
  margin-top: var(--sp-6);
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--zinc-700);
}

/* ---------- 17. FAQ accordion ---------- */
.faq-section { padding-block: var(--sp-8); }
.faq-section h2 { margin-bottom: var(--sp-5); }

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item { border-bottom: 1px solid var(--line); }

.faq-h { margin: 0; font-size: inherit; }

.faq-q {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--sp-4);
  width: 100%;
  min-height: 56px;
  padding: var(--sp-4) 0;
  background: transparent;
  border: 0;
  font-family: var(--font-display);
  font-size: var(--step-1);
  font-weight: 700;
  line-height: 1.35;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.faq-q:hover { color: var(--copper); }

.faq-icon {
  flex-shrink: 0;
  margin-top: 0.25em;
  color: var(--copper);
  transition: transform 0.2s var(--ease);
}

.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(180deg); }

.faq-a { padding-bottom: var(--sp-5); }
.faq-a[hidden] { display: none; }
.faq-a-inner { max-width: 68ch; color: var(--zinc-700); }
.faq-a-inner > :last-child { margin-bottom: 0; }

/* With JS on, answers collapse. With JS off, they are simply all visible. */
.js .faq-a[data-collapsed] { display: none; }

/* ---------- 18. Forms ---------- */



.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
}

@media (min-width: 620px) {
  .form-grid { grid-template-columns: repeat(2, 1fr); }
  .field--full { grid-column: 1 / -1; }
}

.field { display: flex; flex-direction: column; }

.field label {
  margin-bottom: var(--sp-2);
  font-family: var(--font-display);
  font-size: var(--step--1);
  font-weight: 700;
  color: var(--ink);
}


.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: var(--sp-3) var(--sp-4);
  font-family: var(--font-body);
  font-size: var(--step-0);
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--zinc-300);
  border-radius: var(--radius);
  transition: border-color 0.15s var(--ease), box-shadow 0.15s var(--ease);
}

.field textarea { min-height: 120px; resize: vertical; padding-top: var(--sp-3); }

.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--zinc-500); }

.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  border-color: var(--copper);
  box-shadow: 0 0 0 3px var(--copper-wash);
  outline: 2px solid var(--copper);
  outline-offset: 0;
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"] { border-color: var(--danger); background: var(--danger-wash); }






/* ---------- 19. Sidebar ---------- */
.sidebar { display: grid; gap: var(--sp-4); min-width: 0; }

@media (min-width: 1024px) {
  .sidebar { position: sticky; top: calc(var(--header-h) + var(--sp-4)); }
}

.side-card {
  padding: var(--sp-5);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.side-card--cta { background: var(--ink); border-color: var(--ink); color: var(--zinc-200); }

.side-card-eyebrow {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--copper-bright);
  margin-bottom: var(--sp-2);
}

.side-card-phone { margin-bottom: var(--sp-2); }
.side-card-phone a {
  font-family: var(--font-display);
  font-size: var(--step-2);
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.02em;
}
.side-card-phone a:hover { color: var(--copper-bright); }

.side-card-hours {
  font-size: var(--step--1);
  color: var(--zinc-400);
  margin-bottom: var(--sp-4);
}


.side-card-trust {
  list-style: none;
  margin: var(--sp-4) 0 0;
  padding: var(--sp-4) 0 0;
  border-top: 1px solid var(--zinc-700);
  font-size: var(--step--1);
}
.side-card-trust li {
  margin: 0 0 var(--sp-2);
  padding-left: 1.4rem;
  position: relative;
  color: var(--zinc-300);
}
.side-card-trust li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.5em;
  width: 8px; height: 8px;
  background: var(--copper-bright);
  border-radius: 2px;
  transform: rotate(45deg);
}

.side-card-heading {
  font-size: var(--step-0);
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: var(--sp-4);
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid var(--line);
}

.side-nav { list-style: none; margin: 0; padding: 0; }
.side-nav li { margin: 0; }
.side-nav a {
  display: block;
  padding: var(--sp-3) 0;
  min-height: 44px;
  font-family: var(--font-display);
  font-size: var(--step--1);
  font-weight: 600;
  color: var(--zinc-700);
  text-decoration: none;
  border-bottom: 1px solid var(--line-soft);
}
.side-nav li:last-child a { border-bottom: 0; }
.side-nav a:hover { color: var(--copper); }
.side-nav a.is-active { color: var(--copper); }

.side-pills { list-style: none; display: flex; flex-wrap: wrap; gap: var(--sp-2); margin: 0; padding: 0; }
.side-pills li { margin: 0; }
.side-pills a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: var(--sp-2) var(--sp-4);
  background: var(--bone);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: var(--step--1);
  font-weight: 600;
  color: var(--zinc-700);
  text-decoration: none;
}
.side-pills a:hover { background: var(--copper-wash); border-color: var(--copper); color: var(--copper); }

.side-card-note { margin-top: var(--sp-3); font-size: var(--step--1); color: var(--zinc-500); }

.side-facts { margin: 0; font-size: var(--step--1); }
.side-facts dt {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--zinc-500);
}
.side-facts dd {
  margin: 0 0 var(--sp-3);
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid var(--line-soft);
  color: var(--zinc-800);
}
.side-facts dd:last-child { border-bottom: 0; margin-bottom: 0; padding-bottom: 0; }

.side-posts { list-style: none; margin: 0; padding: 0; }
.side-posts li { margin: 0 0 var(--sp-4); padding-bottom: var(--sp-4); border-bottom: 1px solid var(--line-soft); }
.side-posts li:last-child { border-bottom: 0; margin-bottom: 0; padding-bottom: 0; }
.side-posts a { font-family: var(--font-display); font-weight: 700; font-size: var(--step--1); text-decoration: none; }
.side-posts a:hover { text-decoration: underline; }
.side-post-meta { display: block; margin-top: var(--sp-1); font-size: 0.75rem; color: var(--zinc-500); }

/* ---------- 20. CTA block ---------- */
.cta-block { background: var(--ink); color: var(--zinc-200); padding-block: var(--sp-8); }

.cta-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
}

@media (min-width: 900px) {
  .cta-inner { grid-template-columns: 1.4fr 1fr; gap: var(--sp-8); align-items: center; }
}

.cta-copy h2 { color: #fff; }
.cta-copy p { color: var(--zinc-300); max-width: 56ch; }

.cta-points {
  list-style: none;
  margin: var(--sp-5) 0 0;
  padding: 0;
  display: grid;
  gap: var(--sp-2);
}
.cta-points li {
  margin: 0;
  padding-left: 1.6rem;
  position: relative;
  font-family: var(--font-display);
  font-size: var(--step--1);
  font-weight: 600;
  color: var(--zinc-200);
}
.cta-points li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.45em;
  width: 9px; height: 9px;
  background: var(--copper-bright);
  border-radius: 2px;
  transform: rotate(45deg);
}


.cta-hours {
  margin-top: var(--sp-4);
  font-size: var(--step--1);
  color: var(--zinc-400);
  text-align: center;
}

/* ---------- 21. Pricing ---------- */
.price-table-wrap { overflow-x: auto; margin-bottom: var(--sp-5); }

.price-table { min-width: 560px; }
.price-table td:nth-child(2), .price-table th:nth-child(2) { font-family: var(--font-display); font-weight: 700; color: var(--ink); white-space: nowrap; }

.price-card {
  padding: var(--sp-5);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.price-range {
  font-family: var(--font-display);
  font-size: var(--step-3);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-2);
}
.price-unit { font-size: var(--step--1); font-weight: 600; color: var(--zinc-500); }

.price-disclaimer {
  padding: var(--sp-5);
  background: var(--bone);
  border-left: 4px solid var(--zinc-500);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: var(--step--1);
  color: var(--zinc-700);
}

/* ---------- 22. Footer ---------- */
.site-footer {
  background: var(--ink);
  color: var(--zinc-300);
  padding-block: var(--sp-8) var(--sp-6);
  font-size: var(--step--1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
}

@media (min-width: 620px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: var(--sp-7); } }

.brand--footer .brand-name { color: #fff; }
.brand--footer .brand-sub { color: var(--copper-bright); }

.footer-tagline { margin: var(--sp-4) 0; color: var(--zinc-400); max-width: 36ch; }

.footer-nap { display: flex; flex-direction: column; gap: var(--sp-1); font-style: normal; margin-bottom: var(--sp-4); }
.footer-nap-name { font-family: var(--font-display); font-weight: 700; color: #fff; }
.footer-nap a { color: var(--copper-bright); text-decoration: none; font-weight: 600; }
.footer-nap a:hover { color: #fff; text-decoration: underline; }

.footer-hours { display: flex; flex-direction: column; gap: var(--sp-1); color: var(--zinc-400); margin-bottom: var(--sp-4); }

.footer-trust {
  list-style: none;
  margin: 0;
  padding: var(--sp-4) 0 0;
  border-top: 1px solid var(--zinc-700);
}
.footer-trust li { margin: 0 0 var(--sp-2); color: var(--zinc-400); }
.footer-trust a { color: var(--copper-bright); }

.footer-heading {
  font-family: var(--font-display);
  font-size: var(--step--1);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: var(--sp-4);
}
.footer-heading--spaced { margin-top: var(--sp-6); }

.footer-list { list-style: none; margin: 0; padding: 0; }
.footer-list li { margin: 0; }
.footer-list a {
  display: block;
  padding: var(--sp-2) 0;
  min-height: 40px;
  color: var(--zinc-300);
  text-decoration: none;
  line-height: 1.4;
}
.footer-list a:hover { color: var(--copper-bright); text-decoration: underline; }

.footer-county { margin-top: var(--sp-3); color: var(--zinc-500); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--sp-3);
  margin-top: var(--sp-7);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--zinc-700);
  color: var(--zinc-500);
}
.footer-bottom p { margin: 0; }

/* ---------- 24. Pending image placeholder ---------- */
/* Reserves 16:9 so swapping in the real photo causes zero layout shift. */
.img-pending {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16 / 9;
  width: 100%;
  padding: var(--sp-5);
  background: repeating-linear-gradient(
    45deg,
    var(--bone), var(--bone) 12px,
    var(--bone-dark) 12px, var(--bone-dark) 24px
  );
  border: 1px dashed var(--zinc-300);
  border-radius: var(--radius-lg);
  color: var(--zinc-500);
  font-family: var(--font-display);
  font-size: var(--step--1);
  font-weight: 600;
  text-align: center;
}

/* ---------- 25. Misc ---------- */
.brand-pills {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin: 0;
  padding: 0;
}
.brand-pills li {
  margin: 0;
  padding: var(--sp-2) var(--sp-4);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: var(--step--1);
  font-weight: 600;
  color: var(--zinc-700);
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4) var(--sp-6);
  padding-block: var(--sp-5);
  border-bottom: 1px solid var(--line-soft);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-display);
  font-size: var(--step--1);
  font-weight: 600;
  color: var(--zinc-700);
}
.trust-item svg { color: var(--copper); flex-shrink: 0; }

/* =========================================================================
   26. SPEC-SHEET LAYER
   The differentiator. Three ideas:
     1. A standing-seam motif — hairline verticals at panel intervals — so the
        page refers to the product instead of being palette-swapped boilerplate.
     2. Serif for long-form headings, Archivo kept for UI. The serif was
        previously used in 2 rules against Archivo's 47, so the one
        distinguishing type choice was invisible above the fold.
     3. The verified facts (50 psf, 3/8", 24", $12-16) set as data, not as bold
        text buried in a paragraph. The research advantage made visible.
   ========================================================================= */

/* ---- 26.1 Seam motif ---- */
/* Standing seam panels run ~16" wide; these hairlines echo that rhythm. */
.seam { position: relative; isolation: isolate; }

.seam > * { position: relative; z-index: 1; }

.seam::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: repeating-linear-gradient(
    to right,
    transparent 0,
    transparent 71px,
    rgba(255, 255, 255, 0.05) 71px,
    rgba(255, 255, 255, 0.05) 72px
  );
}

/* ---- 26.2 Serif for long-form headings ---- */
/* UI keeps Archivo: nav, buttons, labels, card titles, sidebar, footer. */
.prose h2,
.prose h3,
.prose h4,
.page-head--post h1,
.page-head--area h1 {
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: -0.012em;
}

.prose h2 { line-height: 1.2; }
.prose h3 { font-weight: 600; }

/* Section headings in marketing blocks stay Archivo for contrast. */
.section-head h2 { font-family: var(--font-display); font-weight: 800; letter-spacing: -0.02em; }

/* ---- 26.3 Spec figures ---- */
/* 1px grid gap over a line-coloured background = true hairline rules. */
.spec-grid {
  display: grid;
  /* Explicit rather than auto-fit: auto-fit leaves a phantom 0px track and an
     extra 1px gap line at the right edge when the item count divides evenly. */
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: var(--sp-6) 0;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

@media (min-width: 880px) {
  .spec-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.spec {
  background: var(--surface);
  padding: var(--sp-5) var(--sp-4);
}

.section--ink .spec,
.seam .spec { background: var(--zinc-900); }

.spec-value {
  display: block;
  font-family: var(--font-display);
  font-size: var(--step-4);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}

.section--ink .spec-value { color: #fff; }

.spec-label {
  display: block;
  margin-top: var(--sp-3);
  font-family: var(--font-display);
  font-size: 0.70rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--copper);
}

.spec-note {
  display: block;
  margin-top: var(--sp-2);
  font-size: var(--step--1);
  line-height: 1.45;
  color: var(--zinc-500);
}

.section--ink .spec-note { color: var(--zinc-400); }

/* ---- 26.4 Indexed spec list (services) ---- */
.spec-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.spec-item {
  position: relative;
  margin: 0;
  padding: var(--sp-5) var(--sp-4);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: var(--sp-2) var(--sp-4);
  transition: background-color 0.15s var(--ease);
}

@media (min-width: 880px) {
  .spec-item {
    grid-template-columns: 3rem minmax(0, 1fr) minmax(0, 1.25fr) auto;
    align-items: baseline;
    gap: var(--sp-5);
  }
}

.spec-item:hover { background: var(--bone); }

.spec-index {
  font-family: var(--font-display);
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--copper);
  font-variant-numeric: tabular-nums;
}

.spec-item h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--step-1);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.25;
}

.spec-item h3 a { color: inherit; text-decoration: none; }
.spec-item h3 a::after { content: ""; position: absolute; inset: 0; }
.spec-item:hover h3 a { color: var(--copper); }

.spec-item p {
  grid-column: 2 / -1;
  margin: 0;
  font-size: var(--step--1);
  line-height: 1.55;
  color: var(--zinc-600);
}

@media (min-width: 880px) {
  .spec-item p { grid-column: 3 / 4; }
}

.spec-arrow {
  display: none;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--copper);
}

@media (min-width: 880px) {
  .spec-arrow { display: block; }
}

/* ---- 26.5 Area data rows ---- */
.area-list {
  margin: var(--sp-6) 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.area-row {
  position: relative;
  margin: 0;
  padding: var(--sp-5) var(--sp-4);
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: var(--sp-3);
  transition: background-color 0.15s var(--ease);
}

@media (min-width: 880px) {
  .area-row {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr);
    gap: var(--sp-6);
    align-items: start;
  }
}

.area-row:hover { background: var(--bone); }

.area-row h3 {
  margin: 0 0 var(--sp-3);
  font-family: var(--font-display);
  font-size: var(--step-1);
  font-weight: 700;
  letter-spacing: -0.015em;
}

.area-row h3 a { color: inherit; text-decoration: none; }
.area-row h3 a::after { content: ""; position: absolute; inset: 0; }
.area-row:hover h3 a { color: var(--copper); }

.area-row p {
  margin: 0;
  font-size: var(--step--1);
  line-height: 1.55;
  color: var(--zinc-600);
}

/* Tabular key/value strip — the "data, not prose" treatment */
.area-data {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(96px, 1fr));
  gap: var(--sp-3) var(--sp-4);
  margin: 0;
}

.area-data > div { margin: 0; }

.area-data dt {
  font-family: var(--font-display);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--zinc-500);
  margin-bottom: 2px;
}

.area-data dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--step--1);
  font-weight: 700;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}

/* ---------- 26.6 Answer-first block (AEO) ---------- */
.key-answer {
  margin: 0 0 var(--sp-6);
  padding: var(--sp-5);
  background: var(--ink);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--copper-bright);
}

.key-answer dl { margin: 0; }

.key-answer dt {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--copper-bright);
  margin-bottom: var(--sp-3);
}

.key-answer dd {
  margin: 0;
  font-size: var(--step-1);
  line-height: 1.5;
  color: #fff;
  font-weight: 400;
}

.key-answer dd strong { color: #fff; font-weight: 700; }
.key-answer dd a { color: var(--copper-bright); }
.key-answer dd > :last-child { margin-bottom: 0; }

/* ---------- 26.7 Table of contents ---------- */
.toc {
  margin: 0 0 var(--sp-6);
  padding: var(--sp-4) var(--sp-5);
  background: var(--bone);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.toc:empty { display: none; }

.toc-label {
  margin: 0 0 var(--sp-3);
  font-family: var(--font-display);
  font-size: 0.70rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--zinc-500);
}

.toc-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: toc;
  display: grid;
  gap: var(--sp-1);
}

@media (min-width: 720px) {
  .toc-list { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--sp-1) var(--sp-5); }
}

.toc-list li {
  margin: 0;
  counter-increment: toc;
  display: flex;
  gap: var(--sp-3);
  align-items: baseline;
}

.toc-list li::before {
  content: counter(toc, decimal-leading-zero);
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 0.70rem;
  font-weight: 700;
  color: var(--copper);
  font-variant-numeric: tabular-nums;
}

.toc-list a {
  display: block;
  padding: var(--sp-2) 0;
  font-family: var(--font-display);
  font-size: var(--step--1);
  font-weight: 600;
  line-height: 1.35;
  color: var(--zinc-700);
  text-decoration: none;
}

.toc-list a:hover { color: var(--copper); text-decoration: underline; }

/* Anchored headings get clear of the sticky header when jumped to. */
.prose h2[id] { scroll-margin-top: calc(var(--header-h) + 1.5rem); }

/* =========================================================================
   26.8 TECHNICAL DIAGRAMS
   Inline SVG: no HTTP request, no layout shift, scales with the container
   and inherits the site palette. Every diagram carries <title> and <desc>
   and is exposed as role="img" to assistive tech.
   ========================================================================= */
.diagram {
  margin: var(--sp-6) 0;
  padding: var(--sp-5);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);

  /* Diagram palette, derived from the site tokens */
  --dg-line:         var(--zinc-600);
  --dg-faint:        var(--zinc-400);
  --dg-mark:         var(--zinc-700);
  --dg-solid:        var(--bone-dark);
  --dg-deck:         var(--zinc-100);
  --dg-accent:       var(--copper-bright);
  --dg-accent-solid: var(--copper);
  --dg-cool:         #CFE0E6;
  --dg-warm:         #F2D9C4;
  --dg-wrong:        var(--danger);
  --dg-wrong-fill:   var(--danger-wash);
  --dg-ok-fill:      var(--patina-wash);
  --dg-patina:       var(--patina);
}

.diagram-svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

/* Diagram typography — display face, tabular figures, legible at mobile */
.diagram-svg text {
  font-family: var(--font-display);
  fill: var(--zinc-700);
  font-variant-numeric: tabular-nums;
}

.diagram-svg .dg-head {
  font-size: 15px; font-weight: 800; fill: var(--ink);
  letter-spacing: 0.01em;
}
.diagram-svg .dg-head-warn { font-size: 15px; font-weight: 800; fill: var(--danger); }

.diagram-svg .dg-label   { font-size: 14px; font-weight: 700; fill: var(--ink); }
.diagram-svg .dg-key     { font-size: 14px; font-weight: 800; fill: var(--copper); }
.diagram-svg .dg-key-warn{ font-size: 14px; font-weight: 800; fill: var(--danger); }
.diagram-svg .dg-dim     { font-size: 12px; font-weight: 600; fill: var(--zinc-500); }
.diagram-svg .dg-note    { font-size: 12px; font-weight: 500; fill: var(--zinc-600); }
.diagram-svg .dg-wrong   { font-size: 12px; font-weight: 700; fill: var(--danger); }
.diagram-svg .dg-big     { font-size: 30px; font-weight: 800; fill: var(--ink); letter-spacing: -0.02em; }

.diagram-svg .dg-step    { font-size: 13px; font-weight: 800; fill: #fff; }
.diagram-svg .dg-band-t  { font-size: 12px; font-weight: 800; fill: var(--ink); }
.diagram-svg .dg-band-d  { font-size: 12px; font-weight: 500; fill: var(--zinc-700); }

/* Airflow arrows */
.diagram-svg .dg-flow-in path  { fill: none; stroke: var(--patina); stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.diagram-svg .dg-flow-bad path { fill: none; stroke: var(--danger); stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

.diagram figcaption {
  margin-top: var(--sp-4);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--line-soft);
  font-size: var(--step--1);
  line-height: 1.55;
  color: var(--zinc-600);
}

/* Small screens: SVG text does not reflow, so scale the whole drawing up
   slightly and allow a horizontal scroll rather than shrinking labels
   below legibility. */
@media (max-width: 640px) {
  .diagram { padding: var(--sp-4); overflow-x: auto; }
  .diagram-svg { min-width: 520px; }
}

/* =========================================================================
   26.9 CALL-ONLY CONVERSION
   This site converts on phone calls. The number is the button — not a label
   that hides it — so a desktop visitor can read and dial without clicking.
   ========================================================================= */

/* ---- Mid-page CTA phone button ---- */
.cta-phone {
  display: block;
  padding: var(--sp-4) var(--sp-5);
  background: var(--copper);
  border: 2px solid var(--copper);
  border-radius: var(--radius-lg);
  text-decoration: none;
  text-align: center;
  transition: background-color 0.15s var(--ease), transform 0.15s var(--ease);
}
.cta-phone:hover { background: var(--copper-dark); border-color: var(--copper-dark); transform: translateY(-2px); }
.cta-phone:active { transform: translateY(0); }

.cta-phone-label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--sp-2);
}

.cta-phone-number {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  font-family: var(--font-display);
  font-size: var(--step-2);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
.cta-phone-number svg { width: 1em; height: 1em; flex-shrink: 0; }

/* ---- End-of-page call block ---- */
.call-block {
  background: var(--ink);
  color: var(--zinc-200);
  padding-block: var(--sp-8);
  scroll-margin-top: calc(var(--header-h) + 1rem);
  text-align: center;
}

.call-block-eyebrow {
  font-family: var(--font-display);
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--copper-bright);
  margin-bottom: var(--sp-3);
}

.call-block h2 { color: #fff; margin-bottom: var(--sp-4); }

.call-block-sub {
  max-width: 56ch;
  margin: 0 auto var(--sp-6);
  color: var(--zinc-300);
  font-size: var(--step-1);
  line-height: 1.55;
}

/* The number itself is the primary target. Large enough to hit without aiming. */
.call-block-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  min-height: 72px;
  padding: var(--sp-4) var(--sp-7);
  background: var(--copper);
  border-radius: var(--radius-lg);
  font-family: var(--font-display);
  font-size: var(--step-3);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  text-decoration: none;
  font-variant-numeric: tabular-nums;
  box-shadow: 0 6px 20px rgba(176, 86, 31, 0.35);
  transition: background-color 0.15s var(--ease), transform 0.15s var(--ease), box-shadow 0.15s var(--ease);
}
.call-block-number svg { width: 0.85em; height: 0.85em; flex-shrink: 0; }
.call-block-number:hover {
  background: var(--copper-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(176, 86, 31, 0.45);
}
.call-block-number:active { transform: translateY(0); }

.call-block-hours {
  margin: var(--sp-4) 0 0;
  font-family: var(--font-display);
  font-size: var(--step--1);
  font-weight: 500;
  color: var(--zinc-300);
}
.call-block-hours strong { color: #fff; font-weight: 700; }

.call-block-points {
  list-style: none;
  margin: var(--sp-7) 0 0;
  padding: var(--sp-6) 0 0;
  border-top: 1px solid var(--zinc-700);
  display: grid;
  gap: var(--sp-5);
  text-align: left;
}

@media (min-width: 760px) {
  .call-block-points { grid-template-columns: repeat(3, 1fr); gap: var(--sp-6); }
}

.call-block-points li { margin: 0; }

.call-point-k {
  display: block;
  font-family: var(--font-display);
  font-size: var(--step--1);
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--copper-bright);
  margin-bottom: var(--sp-2);
}
.call-point-v {
  display: block;
  font-size: var(--step--1);
  line-height: 1.55;
  color: var(--zinc-300);
}

.call-block-alt {
  margin: var(--sp-6) 0 0;
  font-size: var(--step--1);
  color: var(--zinc-400);
}
.call-block-alt a { color: var(--copper-bright); }

.side-card-answers {
  margin: var(--sp-3) 0 0;
  font-size: var(--step--1);
  color: var(--zinc-400);
  text-align: center;
}

/* ---------- 27. Reduced 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;
    scroll-behavior: auto !important;
  }
  .btn:hover, .card:hover { transform: none; }
}

/* ---------- 28. Print ---------- */
@media print {
  .top-bar, .site-header, .mobile-menu, .mobile-dock,
  .cta-block, .form-section, .skip-link, .breadcrumbs { display: none !important; }

  body { padding-bottom: 0; color: #000; background: #fff; font-size: 11pt; }
  .layout-2col { display: block; }
  .sidebar { display: none; }
  .prose { max-width: none; }

  a { color: #000; text-decoration: underline; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 9pt; color: #444; }
  a[href^="tel:"]::after, a[href^="#"]::after { content: ""; }

  .faq-a { display: block !important; }
  .js .faq-a[data-collapsed] { display: block !important; }

  .site-footer { background: #fff; color: #000; border-top: 1px solid #000; }
  .site-footer a { color: #000; }

  h1, h2, h3 { break-after: avoid; color: #000; }
  .card, .expect-step, .faq-item { break-inside: avoid; }
}
