/* ---------- Self-hosted faces ----------
   Served from our own origin so a page render never waits on a third-party
   connection, and so the CSP can drop fonts.googleapis.com / fonts.gstatic.com
   entirely. Archivo is the variable file: one request covers 400 to 800. */
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('/fonts/archivo-var-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/plexmono-400-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/plexmono-500-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/plexmono-600-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ============================================================================
   HENDERSON TURF CLEANERS
   Industrial spec-sheet. Rules, not cards. Zero radius, zero shadow, zero
   gradient. Type does the hierarchy; hairlines do the structure.
   ========================================================================== */

:root {
  /* Warm paper rather than #fff: pure white reads as a default, not a choice */
  --paper: #fcfbf8;
  --paper-2: #f4f2ec;
  --paper-3: #eae7de;
  --ink: #121110;
  --ink-2: #3a3833;
  --ink-3: #6d6960;
  --rule: #ddd8cd;
  --rule-2: #bfb9ab;
  --accent: #d13e14;
  --accent-2: #a83210;
  --on-accent: #fffdf9;

  --gut: clamp(1.25rem, 4vw, 3rem);
  --max: 1360px;
  --hair: 1px solid var(--rule);
  --hair-2: 1px solid var(--ink);

  --f-sans: 'Archivo', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;
  --f-mono: 'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace;
}

*, *:before, *:after { box-sizing: border-box; }
* { margin: 0; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
[id] { scroll-margin-top: 90px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *:before, *:after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  background: var(--paper);
  color: var(--ink);
  font: 400 clamp(1rem, .96rem + .2vw, 1.0625rem)/1.65 var(--f-sans);
  font-synthesis-weight: none;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--ink); color: var(--paper); padding: .75rem 1.25rem;
  font: 600 .8125rem/1 var(--f-mono); text-transform: uppercase; letter-spacing: .08em;
}
.skip:focus { left: 0; }

/* ---------- Layout primitives ---------- */
.wrap { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--gut); }
.sec { padding-block: clamp(3.5rem, 7vw, 6.5rem); border-top: var(--hair); }
.sec--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.sec--fill { background: var(--paper-2); }
.sec--ink { background: var(--ink); color: var(--paper); border-top-color: var(--ink); }
.sec--ink a { color: var(--paper); }

/* Section label: 01 / SERVICES */
.eyebrow {
  display: flex; align-items: baseline; gap: .75rem;
  font: 500 .75rem/1 var(--f-mono); text-transform: uppercase; letter-spacing: .14em;
  color: var(--ink-3); margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  padding-bottom: .75rem; border-bottom: var(--hair);
}
.eyebrow__n { color: var(--accent); font-weight: 600; }
.eyebrow__r { margin-left: auto; color: var(--ink-3); }
.sec--ink .eyebrow { color: #a49f95; border-bottom-color: #34322d; }
.sec--ink .eyebrow__r { color: #a49f95; }

/* ---------- Type ---------- */
h1, h2, h3, h4 { font-weight: 700; line-height: 1.05; letter-spacing: -.02em; text-wrap: balance; }

.display {
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: .94;
  letter-spacing: -.035em;
  text-transform: uppercase;
}
.display em { font-style: normal; color: var(--accent); }

h2 { font-size: clamp(1.75rem, 3.4vw, 2.75rem); }
h3 { font-size: clamp(1.1875rem, 1.9vw, 1.5rem); letter-spacing: -.015em; }
h4 { font-size: 1.0625rem; letter-spacing: -.01em; }

.lede { font-size: clamp(1.125rem, 1.55vw, 1.375rem); line-height: 1.5; color: var(--ink-2); max-width: 62ch; text-wrap: pretty; }
.prose p { max-width: 70ch; margin-block: 0 1.15em; text-wrap: pretty; }
.prose h2 { margin-block: 2.25em .6em; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-block: 1.9em .5em; }
.prose > *:last-child { margin-bottom: 0; }
.prose a { color: var(--accent-2); text-decoration: underline; text-underline-offset: .18em; text-decoration-thickness: 1px; }
.prose a:hover { background: var(--accent); color: var(--on-accent); text-decoration-color: transparent; }

.mono { font-family: var(--f-mono); font-size: .8125rem; text-transform: uppercase; letter-spacing: .1em; }
.num { font-family: var(--f-mono); font-variant-numeric: tabular-nums; }

/* ---------- Header ---------- */
.hdr {
  position: sticky; top: 0; z-index: 50;
  background: var(--paper);
  border-bottom: var(--hair-2);
}
.hdr__bar {
  width: 100%; max-width: var(--max); margin-inline: auto;
  padding: 0 var(--gut);
  display: flex; align-items: stretch; gap: clamp(1rem, 3vw, 2.5rem);
  min-height: 74px;
}
.brand { display: flex; align-items: center; text-decoration: none; padding-block: .5rem; flex-shrink: 0; }
/* Height-driven so the lockup scales with the bar; width follows its ratio. */
.brand img { height: 54px; width: auto; display: block; }
@media (max-width: 960px) { .brand img { height: 46px; } }

.nav { display: flex; align-items: stretch; margin-left: auto; }
.nav ul { display: flex; list-style: none; padding: 0; margin: 0; }
.nav a {
  display: flex; align-items: center; height: 100%;
  padding-inline: clamp(.6rem, 1.1vw, 1rem);
  font: 500 .8125rem/1 var(--f-mono); text-transform: uppercase; letter-spacing: .07em;
  text-decoration: none; color: var(--ink-2);
  border-bottom: 2px solid transparent;
}
.nav a:hover { color: var(--ink); border-bottom-color: var(--rule-2); }
.nav a[aria-current] { color: var(--ink); border-bottom-color: var(--accent); }

.hdr__cta { display: flex; align-items: center; gap: .875rem; flex-shrink: 0; }
.tel { font: 600 .875rem/1 var(--f-mono); text-decoration: none; white-space: nowrap; }
.tel__label { color: var(--ink-3); font-weight: 400; }
.tel:hover { color: var(--accent-2); }

.burger { display: none; background: none; border: 0; padding: .75rem 0 .75rem .75rem; cursor: pointer; }
.burger span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 4px 0; transition: transform .2s, opacity .2s; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mnav { border-top: var(--hair); padding: 1rem var(--gut) 1.5rem; }
.mnav ul { list-style: none; padding: 0; margin: 0 0 1rem; }
.mnav li { border-bottom: var(--hair); }
.mnav a { display: block; padding: .875rem 0; text-decoration: none; font: 500 .9375rem/1 var(--f-mono); text-transform: uppercase; letter-spacing: .06em; }

@media (max-width: 960px) {
  .nav, .hdr__cta .btn { display: none; }
  .burger { display: block; margin-left: auto; }
  .hdr__cta { margin-left: auto; }
}
@media (min-width: 961px) { .mnav { display: none !important; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .95rem 1.6rem; border: 2px solid var(--ink); background: var(--ink); color: var(--paper);
  font: 600 .8125rem/1 var(--f-mono); text-transform: uppercase; letter-spacing: .09em;
  text-decoration: none; cursor: pointer; transition: background .15s, border-color .15s, color .15s;
}
.btn:hover { background: var(--accent); border-color: var(--accent); color: var(--on-accent); }
.btn--accent { background: var(--accent); border-color: var(--accent); color: var(--on-accent); }
.btn--accent:hover { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn--sm { padding: .65rem 1.1rem; font-size: .75rem; }
.btn--block { display: flex; width: 100%; }
.sec--ink .btn--ghost { color: var(--paper); border-color: var(--paper); }
.sec--ink .btn--ghost:hover { background: var(--paper); color: var(--ink); }

.btnrow { display: flex; flex-wrap: wrap; gap: .75rem; align-items: center; }

/* ---------- Hero ---------- */
.hero { border-bottom: var(--hair-2); }
.hero__grid { display: grid; grid-template-columns: 1.15fr .85fr; }
.hero__copy { padding: clamp(2.25rem, 4vw, 3.5rem) clamp(1.25rem, 4vw, 3rem) clamp(2.25rem, 4vw, 3.25rem) var(--gut); border-right: var(--hair-2); display: flex; flex-direction: column; justify-content: center; }
.hero__media { position: relative; min-height: 340px; background: var(--paper-3); }
.hero__media img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.hero__stamp {
  position: absolute; left: 0; bottom: 0; z-index: 2;
  background: var(--ink); color: var(--paper); padding: .7rem 1rem;
  font: 500 .6875rem/1.5 var(--f-mono); text-transform: uppercase; letter-spacing: .1em;
}
.hero .display { font-size: clamp(2.25rem, 4.6vw, 4rem); }
.hero__rule { width: clamp(4rem, 14vw, 10rem); height: 4px; background: var(--accent); margin: 1.25rem 0; }
.hero .lede { margin-bottom: 2rem; }
.hero__meta { display: flex; flex-wrap: wrap; gap: 0 2rem; margin-top: 2.25rem; padding-top: 1.25rem; border-top: var(--hair); font: 500 .75rem/2 var(--f-mono); text-transform: uppercase; letter-spacing: .1em; color: var(--ink-3); }
.hero__meta b { color: var(--ink); font-weight: 600; }
@media (max-width: 860px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__copy { border-right: 0; border-bottom: var(--hair-2); padding-inline: var(--gut); }
  .hero__media { min-height: 260px; }
}

/* ---------- Spec tables ---------- */
.tablewrap { overflow-x: auto; border: var(--hair); background: var(--paper); -webkit-overflow-scrolling: touch; }
table.spec { width: 100%; border-collapse: collapse; min-width: 520px; }
table.spec th, table.spec td { text-align: left; padding: .8rem 1rem; border-bottom: var(--hair); vertical-align: top; font-size: .9375rem; }
table.spec thead th {
  background: var(--ink); color: var(--paper); border-bottom: 0;
  font: 600 .6875rem/1.4 var(--f-mono); text-transform: uppercase; letter-spacing: .1em; white-space: nowrap;
}
table.spec tbody th { font-weight: 600; }
table.spec td { color: var(--ink-2); font-variant-numeric: tabular-nums; }
table.spec tbody tr:last-child th, table.spec tbody tr:last-child td { border-bottom: 0; }
table.spec tbody tr:nth-child(even) { background: var(--paper-2); }

/* Definition-style spec block (label | value rows) */
.specs { border-top: var(--hair-2); }
.specs__row { display: grid; grid-template-columns: minmax(9rem, 30%) 1fr; gap: 1rem; padding: .8rem 0; border-bottom: var(--hair); }
.specs__k { font: 500 .6875rem/1.6 var(--f-mono); text-transform: uppercase; letter-spacing: .1em; color: var(--ink-3); }
.specs__v { font-size: .9375rem; color: var(--ink); }
@media (max-width: 560px) { .specs__row { grid-template-columns: 1fr; gap: .15rem; } }

/* ---------- Index rows (services, areas, guides) ---------- */
.rows { border-top: var(--hair-2); }
.row {
  display: grid; grid-template-columns: 4.5rem 1fr minmax(0, 24rem) 2.5rem;
  gap: clamp(1rem, 3vw, 2.5rem); align-items: start;
  padding: clamp(1.5rem, 3vw, 2.25rem) 0; border-bottom: var(--hair);
  text-decoration: none; position: relative;
}
.row:hover { background: var(--paper-2); }
.row:hover .row__t { color: var(--accent-2); }
.row__n { font: 600 .8125rem/1.9 var(--f-mono); color: var(--accent); letter-spacing: .08em; }
.row__t { display: block; font-size: clamp(1.25rem, 2.2vw, 1.75rem); font-weight: 700; letter-spacing: -.02em; line-height: 1.15; }
.row__sub { display: block; margin-top: .4rem; font: 500 .6875rem/1.6 var(--f-mono); text-transform: uppercase; letter-spacing: .1em; color: var(--ink-3); }
.row__d { color: var(--ink-2); font-size: .9375rem; line-height: 1.55; }
.row__arrow { justify-self: end; align-self: center; color: var(--ink-3); font-size: 1.25rem; }
.row:hover .row__arrow { color: var(--accent); transform: translateX(3px); }
.row__arrow { transition: transform .15s, color .15s; }
@media (max-width: 860px) {
  .row { grid-template-columns: 3rem 1fr; }
  .row__d { grid-column: 2; }
  .row__arrow { display: none; }
}

/* ---------- Grid of bordered panels (no cards, just rules) ---------- */
.panels { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr)); border-top: var(--hair-2); border-left: var(--hair); }
.panel { padding: clamp(1.5rem, 2.5vw, 2rem); border-right: var(--hair); border-bottom: var(--hair); }
.panel__n { font: 600 .6875rem/1 var(--f-mono); color: var(--accent); letter-spacing: .12em; display: block; margin-bottom: .9rem; }
.panel h3 { margin-bottom: .5rem; }
.panel p { color: var(--ink-2); font-size: .9375rem; line-height: 1.55; }
.sec--ink .panel { border-color: #34322d; }
.sec--ink .panel p { color: #b5b0a5; }

/* ---------- Two-column editorial split ---------- */
.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr); gap: clamp(1.75rem, 5vw, 5rem); align-items: start; }
.split--even { grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr)); }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }
.sticky { position: sticky; top: 100px; }
@media (max-width: 860px) { .sticky { position: static; } }

/* ---------- Lists ---------- */
.list { margin: 0 0 1.15em; padding-left: 1.15rem; }
.list li { margin-bottom: .5em; max-width: 68ch; }
.list--num { padding-left: 1.4rem; }
.list--num li:marker { font-family: var(--f-mono); font-size: .875em; color: var(--accent); font-weight: 600; }

.checks { list-style: none; padding: 0; margin: 0; border-top: var(--hair); }
.checks li { padding: .95rem 0 .95rem 1.9rem; border-bottom: var(--hair); position: relative; font-size: .9375rem; color: var(--ink-2); }
.checks li:before { content: ''; position: absolute; left: 0; top: 1.35rem; width: .7rem; height: .7rem; background: var(--accent); }
.checks b { display: block; color: var(--ink); font-weight: 600; margin-bottom: .15rem; font-size: 1rem; }

/* ---------- Note / callout ---------- */
.note { border-left: 4px solid var(--accent); background: var(--paper-2); padding: 1.15rem 1.35rem; margin: 1.75em 0; }
.note__tag { font: 600 .6875rem/1 var(--f-mono); text-transform: uppercase; letter-spacing: .12em; color: var(--accent-2); display: block; margin-bottom: .5rem; }
.note p { margin: 0; max-width: 66ch; }

/* ---------- FAQ ---------- */
.faq { border-top: var(--hair-2); }
.faq details { border-bottom: var(--hair); }
.faq summary {
  display: flex; gap: 1rem; align-items: baseline; justify-content: space-between;
  padding: 1.2rem 0; cursor: pointer; list-style: none;
  font-weight: 600; font-size: clamp(1rem, 1.5vw, 1.125rem); letter-spacing: -.01em;
}
.faq summary:-webkit-details-marker { display: none; }
.faq summary:after { content: '+'; font-family: var(--f-mono); font-size: 1.4rem; line-height: 1; color: var(--accent); flex-shrink: 0; }
.faq details[open] summary:after { content: '\2212'; }
.faq summary:hover { color: var(--accent-2); }
.faq__a { padding: 0 0 1.35rem; }
.faq__a p { max-width: 72ch; color: var(--ink-2); margin: 0; }

/* ---------- Before / after ---------- */
.ba { display: grid; grid-template-columns: 1fr 1fr; border: var(--hair); }
.ba figure { position: relative; margin: 0; }
.ba figure + figure { border-left: var(--hair); }
.ba img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.ba figcaption { position: absolute; top: 0; left: 0; background: var(--ink); color: var(--paper); padding: .5rem .8rem; font: 600 .6875rem/1 var(--f-mono); text-transform: uppercase; letter-spacing: .12em; }
.ba figure:last-child figcaption { background: var(--accent); color: var(--on-accent); }
@media (max-width: 640px) { .ba { grid-template-columns: 1fr; } .ba figure + figure { border-left: 0; border-top: var(--hair); } }

/* ---------- Gallery ---------- */
.gal { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr)); border-top: var(--hair); border-left: var(--hair); }
.gal figure { margin: 0; border-right: var(--hair); border-bottom: var(--hair); }
.gal img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.gal figcaption { padding: .7rem 1rem; font: 500 .6875rem/1.5 var(--f-mono); text-transform: uppercase; letter-spacing: .1em; color: var(--ink-3); }

/* ---------- Reviews ---------- */
.revs { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr)); border-top: var(--hair-2); border-left: var(--hair); }
.rev { padding: clamp(1.5rem, 2.5vw, 2rem); border-right: var(--hair); border-bottom: var(--hair); display: flex; flex-direction: column; }
.rev__stars { color: var(--accent); font-size: .875rem; letter-spacing: .18em; margin-bottom: .9rem; }
.rev__txt { color: var(--ink-2); font-size: .9375rem; line-height: 1.6; margin-bottom: 1.25rem; flex: 1; }
.rev__who { font: 600 .75rem/1.5 var(--f-mono); text-transform: uppercase; letter-spacing: .09em; padding-top: .9rem; border-top: var(--hair); }
.rev__where { display: block; color: var(--ink-3); font-weight: 400; }

/* ---------- Stat strip ---------- */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(50%, 11rem), 1fr)); border-left: var(--hair); }
.sec--ink .stats { border-left-color: #34322d; }
.stat { padding: clamp(1.25rem, 2.5vw, 2rem); border-right: var(--hair); }
.sec--ink .stat { border-right-color: #34322d; }
.stat__v { font: 800 clamp(2rem, 4.5vw, 3.25rem)/1 var(--f-sans); letter-spacing: -.04em; font-variant-numeric: tabular-nums; }
.stat__v em { font-style: normal; color: var(--accent); }
.stat__k { margin-top: .6rem; font: 500 .6875rem/1.5 var(--f-mono); text-transform: uppercase; letter-spacing: .1em; color: var(--ink-3); }
.sec--ink .stat__k { color: #a49f95; }

/* ---------- Breadcrumbs ---------- */
.crumbs { padding-block: .9rem; border-bottom: var(--hair); }
.crumbs ol { display: flex; flex-wrap: wrap; gap: .4rem; list-style: none; padding: 0; margin: 0; font: 500 .6875rem/1.6 var(--f-mono); text-transform: uppercase; letter-spacing: .09em; color: var(--ink-3); }
.crumbs li + li:before { content: '/'; margin-right: .4rem; color: var(--rule-2); }
.crumbs a { text-decoration: none; }
.crumbs a:hover { color: var(--accent-2); text-decoration: underline; }

/* ---------- Page head ---------- */
.phead { padding-block: clamp(2.5rem, 5vw, 4.5rem); border-bottom: var(--hair-2); }
.phead__n { font: 600 .75rem/1 var(--f-mono); color: var(--accent); letter-spacing: .14em; text-transform: uppercase; margin-bottom: 1.1rem; display: block; }
.phead h1 { font-size: clamp(2.125rem, 5.5vw, 4rem); letter-spacing: -.035em; line-height: .98; text-transform: uppercase; font-weight: 800; }
.phead .lede { margin-top: 1.4rem; }

/* ---------- Article ---------- */
.art { padding-block: clamp(2.5rem, 5vw, 4rem); }
/* Fixed-width sidebar so the article column keeps a real measure and wide
   spec tables are not squeezed into three-line cells. */
@media (min-width: 861px) { .art .split { grid-template-columns: minmax(0, 16rem) minmax(0, 1fr); } }
.art__meta { display: flex; flex-wrap: wrap; gap: 0 1.5rem; font: 500 .6875rem/2 var(--f-mono); text-transform: uppercase; letter-spacing: .1em; color: var(--ink-3); margin-bottom: 1.5rem; }
.art__hero { margin-block: 2rem; border: var(--hair); }
.art__hero img { width: 100%; aspect-ratio: 21/9; object-fit: cover; }
.toc { border: var(--hair); padding: 1.25rem 1.35rem; background: var(--paper-2); }
.toc p { font: 600 .6875rem/1 var(--f-mono); text-transform: uppercase; letter-spacing: .12em; color: var(--ink-3); margin-bottom: .9rem; }
.toc ol { list-style: none; padding: 0; margin: 0; counter-reset: toc; }
.toc li { counter-increment: toc; border-top: var(--hair); }
.toc li:first-child { border-top: 0; }
.toc a { display: block; padding: .55rem 0; text-decoration: none; font-size: .875rem; line-height: 1.4; }
.toc a:before { content: counter(toc, decimal-leading-zero) ' '; font-family: var(--f-mono); font-size: .75rem; color: var(--accent); }
.toc a:hover { color: var(--accent-2); }

/* ---------- Quote form ---------- */
.form { display: grid; gap: 1.1rem; }
.field { display: grid; gap: .4rem; }
.field label { font: 600 .6875rem/1 var(--f-mono); text-transform: uppercase; letter-spacing: .1em; color: var(--ink-2); }
.field .req { color: var(--accent); }
.field input, .field select, .field textarea {
  font: 400 1rem/1.4 var(--f-sans); color: var(--ink);
  padding: .8rem .9rem; border: var(--hair-2); background: var(--paper); border-radius: 0; width: 100%;
  appearance: none;
}
.field textarea { min-height: 7rem; resize: vertical; }
.field select { background-image: linear-gradient(45deg, transparent 50%, var(--ink) 50%), linear-gradient(135deg, var(--ink) 50%, transparent 50%); background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; padding-right: 2.5rem; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 3px solid var(--accent); outline-offset: 1px; }
.field__hint { font-size: .8125rem; color: var(--ink-3); }
.field--err input, .field--err select, .field--err textarea { border-color: var(--accent); }
.field__err { font: 500 .75rem/1.4 var(--f-mono); color: var(--accent-2); }
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
@media (max-width: 560px) { .row2 { grid-template-columns: 1fr; } }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.formnote { font-size: .8125rem; color: var(--ink-3); line-height: 1.5; }
.formnote a { color: var(--accent-2); }
.formstatus { padding: 1rem 1.15rem; border-left: 4px solid var(--accent); background: var(--paper-2); font-size: .9375rem; }
.formstatus[data-ok="1"] { border-left-color: var(--ink); }

/* ---------- CTA band ---------- */
.ctaband { display: grid; grid-template-columns: 1fr auto; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; }
@media (max-width: 760px) { .ctaband { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.ftr { background: var(--ink); color: #b5b0a5; border-top: 4px solid var(--accent); padding-bottom: 5rem; }
.ftr a { text-decoration: none; }
.ftr a:hover { color: var(--paper); text-decoration: underline; text-underline-offset: .2em; }
.ftr__top { width: 100%; max-width: var(--max); margin-inline: auto; padding: clamp(2.5rem, 5vw, 4rem) var(--gut); display: grid; grid-template-columns: 1.5fr repeat(4, 1fr); gap: clamp(1.5rem, 3vw, 2.5rem); }
@media (max-width: 1080px) { .ftr__top { grid-template-columns: 1fr 1fr 1fr; } }
@media (max-width: 680px) { .ftr__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px) { .ftr__top { grid-template-columns: 1fr; } }
.ftr__name { color: var(--paper); font: 700 1.0625rem/1.2 var(--f-sans); text-transform: uppercase; letter-spacing: -.01em; }
.ftr__tag { margin-top: .5rem; font-size: .875rem; line-height: 1.55; max-width: 34ch; }
.nap { margin-top: 1.5rem; display: grid; grid-template-columns: auto 1fr; gap: .3rem 1rem; font-size: .875rem; }
.nap dt { font: 500 .6875rem/1.7 var(--f-mono); text-transform: uppercase; letter-spacing: .1em; color: #827c73; }
.nap dd { margin: 0; color: var(--paper); }
.ftr__h { color: var(--paper); font: 600 .6875rem/1 var(--f-mono); text-transform: uppercase; letter-spacing: .12em; margin-bottom: 1rem; padding-bottom: .75rem; border-bottom: 1px solid #34322d; }
.ftr__col ul { list-style: none; padding: 0; margin: 0; }
.ftr__col li { margin-bottom: .55rem; font-size: .875rem; line-height: 1.4; }
.ftr__legal { border-top: 1px solid #34322d; }
.ftr__legal > * { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--gut); }
.ftr__legal p { padding-block: 1rem; font-size: .8125rem; line-height: 1.6; }
.ftr__disc { border-top: 1px solid #26241f; max-width: none; }
.ftr__legal .ftr__disc { color: #827c73; }
.ftr__legal a { color: var(--paper); text-decoration: underline; text-underline-offset: .2em; }

/* ---------- Sticky mobile CTA ---------- */
.stickycta { display: none; }
@media (max-width: 760px) {
  .stickycta {
    display: grid; grid-template-columns: 1fr 1fr;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
    border-top: 2px solid var(--ink);
  }
  .stickycta a { display: flex; align-items: center; justify-content: center; padding: .95rem .5rem; text-decoration: none; font: 600 .75rem/1 var(--f-mono); text-transform: uppercase; letter-spacing: .07em; }
  .stickycta__tel { background: var(--paper); color: var(--ink); border-right: 1px solid var(--ink); }
  .stickycta__btn { background: var(--accent); color: var(--on-accent); }
  body { padding-bottom: 3rem; }
  .ftr { padding-bottom: 1rem; }
}

/* ---------- Utilities ---------- */
.hr { border: 0; border-top: var(--hair-2); margin-block: clamp(2rem, 4vw, 3rem); }
.muted { color: var(--ink-3); }
.tagrow { display: flex; flex-wrap: wrap; gap: .4rem; }
.tag { border: var(--hair); padding: .4rem .7rem; font: 500 .6875rem/1 var(--f-mono); text-transform: uppercase; letter-spacing: .08em; color: var(--ink-2); text-decoration: none; }
.tag:hover { border-color: var(--ink); color: var(--ink); }
.sr { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

/* ---------- Print ---------- */
@media print {
  .hdr, .ftr, .stickycta, .btn, .crumbs { display: none !important; }
  body { background: #fff; color: #000; font-size: 11pt; }
  .sec { padding-block: 1rem; }
  a[href^="http"]:after { content: ' (' attr(href) ')'; font-size: 9pt; }
}
