/* =================================================================
   ATX MOUNTWORKS — DESIGN SYSTEM
   Signature: the "contour-signal" line — a mark that reads at once
   as a Hill Country topographic contour and an AV waveform/RF trace.
   Used sparingly as the one bold gesture; everything else is quiet,
   disciplined and built for speed (no images, system-friendly fonts).
   ================================================================= */

:root {
  /* ---- color tokens ---- */
  --ink:          #10201C; /* deep pine-black — dark sections */
  --ink-2:        #182A24; /* card bg on dark */
  --ink-3:        #21372F; /* border/hover on dark */
  --springs:      #17836F; /* brand teal — buttons, brand marks */
  --springs-deep: #0E5A4C; /* AA-safe teal for text links on light */
  --springs-bright:#2CB39A;/* bright teal for links/accents on dark */
  --stone:        #EDEAE1; /* warm stone — section bg */
  --paper:        #FAF8F2; /* lightest bg / cards */
  --white:        #FFFFFF;
  --signal:       #E8543E; /* bright signal red-orange — small accents */
  --signal-deep:  #B93E2C; /* AA-safe red for buttons/text */
  --ink-text:     #16211D; /* body copy on light */
  --ink-soft:     #4B5852; /* secondary copy on light */
  --line:         rgba(16,32,28,.14);
  --line-2:       rgba(16,32,28,.08);
  --line-dark:    rgba(255,255,255,.16);
  --line-dark-2:  rgba(255,255,255,.09);

  /* ---- type ---- */
  --font-display: 'Space Grotesk', 'Arial Narrow', Arial, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, 'SFMono-Regular', Menlo, Consolas, monospace;

  /* ---- scale ---- */
  --radius-s: 6px;
  --radius-m: 12px;
  --radius-l: 20px;
  --shadow-card: 0 1px 2px rgba(16,32,28,.06), 0 8px 24px -12px rgba(16,32,28,.18);
  --shadow-lift: 0 4px 8px rgba(16,32,28,.08), 0 20px 40px -16px rgba(16,32,28,.28);
  --container: 1180px;
  --nav-h: 76px;
}

/* ---- reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 16px); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.55;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1,h2,h3,h4,p { margin: 0; }
button { font: inherit; cursor: pointer; }
input, select, textarea { font: inherit; }

/* ---- focus visibility (a11y) ---- */
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: 3px solid var(--signal);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---- skip link ---- */
.skip-link {
  position: absolute;
  left: 12px; top: -60px;
  background: var(--ink);
  color: var(--white);
  padding: 12px 18px;
  border-radius: var(--radius-s);
  z-index: 200;
  font-family: var(--font-mono);
  font-size: 14px;
  transition: top .15s ease;
}
.skip-link:focus { top: 12px; }

/* ---- layout helpers ---- */
.wrap { max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
@media (min-width: 900px) { .wrap { padding-inline: 40px; } }
main { display: block; }
section { position: relative; }
.pad-l { padding-block: 88px; }
.pad-m { padding-block: 64px; }
.pad-s { padding-block: 40px; }
@media (max-width: 720px) {
  .pad-l { padding-block: 60px; }
  .pad-m { padding-block: 48px; }
}
.bg-ink   { background: var(--ink); color: var(--white); }
.bg-stone { background: var(--stone); }
.bg-paper { background: var(--paper); }
.bg-white { background: var(--white); }

/* ---- typography ---- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--springs-deep);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  margin-bottom: 14px;
}
.bg-ink .eyebrow, .bg-ink .eyebrow * { color: var(--springs-bright); }
.eyebrow::before {
  content: "";
  width: 20px; height: 1px;
  background: currentColor;
  display: inline-block;
}
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.01em; color: var(--ink); }
.bg-ink h1, .bg-ink h2, .bg-ink h3, .bg-ink h4 { color: var(--white); }
h1 { font-size: clamp(2.4rem, 4.6vw + 1rem, 4.4rem); line-height: 1.03; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.9rem, 2.6vw + 1rem, 2.9rem); line-height: 1.08; }
h3 { font-size: clamp(1.25rem, 1vw + 1rem, 1.55rem); line-height: 1.25; }
h4 { font-size: 1.05rem; line-height: 1.3; }
.lede { font-size: clamp(1.05rem, .5vw + 1rem, 1.25rem); color: var(--ink-soft); max-width: 58ch; }
.bg-ink .lede { color: rgba(255,255,255,.78); }
p.body-copy { color: var(--ink-soft); max-width: 62ch; }
.bg-ink p.body-copy { color: rgba(255,255,255,.72); }
.section-head { max-width: 720px; margin-bottom: 44px; }
.section-head.center { margin-inline: auto; text-align: center; }
.mono-tag {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* ---- buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15.5px;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  transition: transform .15s ease, background .15s ease, border-color .15s ease, color .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--signal-deep); color: var(--white); }
.btn-primary:hover { background: #a3341f; transform: translateY(-1px); box-shadow: var(--shadow-lift); }
.btn-teal { background: var(--springs); color: var(--white); }
.btn-teal:hover { background: var(--springs-deep); transform: translateY(-1px); box-shadow: var(--shadow-lift); }
.btn-outline { background: transparent; border-color: var(--line); color: var(--ink); }
.btn-outline:hover { border-color: var(--ink); }
.bg-ink .btn-outline { border-color: var(--line-dark); color: var(--white); }
.bg-ink .btn-outline:hover { border-color: var(--white); }
.btn-ghost { background: transparent; color: var(--springs-deep); padding-inline: 4px; }
.bg-ink .btn-ghost { color: var(--springs-bright); }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 18px; font-size: 14px; }
.btn[aria-disabled="true"] { opacity: .55; pointer-events: none; }

/* =================================================================
   HEADER / NAV
   ================================================================= */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,248,242,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-h);
  gap: 20px;
}
.brand {
  display: flex; align-items: center; gap: 11px;
  font-family: var(--font-display); font-weight: 700; font-size: 1.12rem;
  color: var(--ink);
  flex-shrink: 0;
}
.brand-mark { width: 34px; height: 34px; flex-shrink: 0; }
.brand small {
  display: block; font-family: var(--font-mono); font-weight: 500;
  font-size: 10.5px; letter-spacing: .08em; color: var(--springs-deep);
  text-transform: uppercase; margin-top: 1px;
}
.primary-nav { display: none; }
.primary-nav ul { display: flex; align-items: center; gap: 28px; }
.primary-nav a {
  font-size: 14.5px; font-weight: 500; color: var(--ink-soft);
  position: relative; padding: 6px 0;
}
.primary-nav a:hover { color: var(--ink); }
.primary-nav a[aria-current="page"] { color: var(--ink); font-weight: 700; }
.primary-nav a[aria-current="page"]::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -3px; height: 2px; background: var(--signal-deep);
}
.header-actions { display: flex; align-items: center; gap: 12px; }
.phone-link {
  display: none; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-weight: 600; font-size: 14.5px;
  color: var(--ink);
}
.phone-link svg { width: 18px; height: 18px; color: var(--signal-deep); }
.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: var(--radius-s);
  background: transparent; border: 1.5px solid var(--line); color: var(--ink);
}
@media (min-width: 1050px) {
  .primary-nav { display: block; }
  .phone-link { display: inline-flex; }
  .nav-toggle { display: none; }
}

/* mobile menu panel */
.mobile-nav {
  position: fixed; inset: 0; z-index: 150;
  background: var(--ink);
  color: var(--white);
  transform: translateX(100%);
  transition: transform .28s ease;
  overflow-y: auto;
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav-top { display: flex; align-items: center; justify-content: space-between; height: var(--nav-h); padding-inline: 24px; border-bottom: 1px solid var(--line-dark-2); }
.mobile-nav-close { width: 42px; height: 42px; border-radius: var(--radius-s); border: 1.5px solid var(--line-dark); background: transparent; color: var(--white); display: inline-flex; align-items: center; justify-content: center; }
.mobile-nav ul { padding: 20px 24px 32px; display: flex; flex-direction: column; }
.mobile-nav li { border-bottom: 1px solid var(--line-dark-2); }
.mobile-nav a { display: block; padding: 16px 2px; font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; }
.mobile-nav-cta { padding: 8px 24px 32px; display: flex; flex-direction: column; gap: 12px; }
.mobile-nav-phone { font-family: var(--font-mono); font-size: 1.1rem; color: var(--springs-bright); font-weight: 600; padding: 0 24px 16px; display: block; }

/* =================================================================
   CONTOUR / SIGNAL SVG MOTIF
   ================================================================= */
.contour-divider { display: block; width: 100%; height: auto; }
.contour-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.contour-bg svg { position: absolute; opacity: .5; }

/* =================================================================
   TRUST BAR
   ================================================================= */
.trust-bar { border-top: 1px solid var(--line-dark-2); border-bottom: 1px solid var(--line-dark-2); }
.trust-bar .wrap { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px 18px; padding-block: 26px; }
.trust-item { display: flex; align-items: flex-start; gap: 12px; }
.trust-item svg { width: 22px; height: 22px; flex-shrink: 0; color: var(--springs-bright); margin-top: 2px; }
.trust-item strong { display: block; font-size: 14px; font-weight: 700; }
.trust-item span { font-size: 12.5px; color: rgba(255,255,255,.62); }
@media (min-width: 720px) { .trust-bar .wrap { grid-template-columns: repeat(4,1fr); } }

/* =================================================================
   CARDS — services / blueprint gallery / testimonials / areas / team
   ================================================================= */
.card-grid { display: grid; gap: 22px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .card-grid.cols-2 { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 900px) {
  .card-grid.cols-3 { grid-template-columns: repeat(3,1fr); }
  .card-grid.cols-4 { grid-template-columns: repeat(4,1fr); }
}

.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: 30px 26px;
  display: flex; flex-direction: column; gap: 14px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); border-color: transparent; }
.service-card .icon-tile {
  width: 50px; height: 50px; border-radius: 13px;
  background: var(--stone);
  display: flex; align-items: center; justify-content: center;
  color: var(--springs-deep);
}
.service-card .icon-tile svg { width: 26px; height: 26px; }
.service-card h3 { font-size: 1.15rem; }
.service-card p { color: var(--ink-soft); font-size: 14.5px; }
.service-card .card-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; padding-top: 8px; border-top: 1px dashed var(--line); }
.card-price { font-family: var(--font-mono); font-weight: 600; font-size: 13.5px; color: var(--ink); }
.card-link { font-family: var(--font-mono); font-size: 12.5px; font-weight: 600; color: var(--springs-deep); display: inline-flex; align-items: center; gap: 5px; }
.card-link svg { width: 13px; height: 13px; }

/* blueprint gallery card */
.blueprint-card {
  border-radius: var(--radius-l);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  display: flex; flex-direction: column;
}
.blueprint-figure {
  aspect-ratio: 4/3;
  background:
    linear-gradient(var(--line-2) 1px, transparent 1px) 0 0/24px 24px,
    linear-gradient(90deg, var(--line-2) 1px, transparent 1px) 0 0/24px 24px,
    var(--stone);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  padding: 18px;
}
.blueprint-figure svg { width: 74%; height: 74%; color: var(--ink); }
.blueprint-figure .fig-tag {
  position: absolute; top: 12px; left: 12px;
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .06em;
  background: var(--ink); color: var(--white);
  padding: 4px 9px; border-radius: 4px;
}
.blueprint-body { padding: 18px 20px 22px; }
.blueprint-body h3 { font-size: 1.02rem; margin-bottom: 5px; }
.blueprint-body p { font-size: 13.5px; color: var(--ink-soft); }
.blueprint-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 12px; }
.blueprint-tags span { font-family: var(--font-mono); font-size: 10.5px; text-transform: uppercase; letter-spacing: .05em; background: var(--stone); color: var(--ink-soft); padding: 4px 9px; border-radius: 999px; }

/* testimonial card */
.testimonial-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-l);
  padding: 26px; display: flex; flex-direction: column; gap: 14px; height: 100%;
}
.stars { display: flex; gap: 3px; color: var(--signal-deep); }
.stars svg { width: 16px; height: 16px; }
.testimonial-card p.quote { font-size: 15px; color: var(--ink-text); }
.testimonial-meta { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 10px; }
.avatar-mono {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--ink); color: var(--white);
  font-family: var(--font-mono); font-weight: 600; font-size: 13px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.testimonial-meta strong { display: block; font-size: 13.5px; }
.testimonial-meta span { display: block; font-size: 12px; color: var(--ink-soft); }

/* area card */
.area-card {
  border: 1px solid var(--line); border-radius: var(--radius-m);
  padding: 18px 20px; background: var(--white);
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
}
.area-card span.tag { font-family: var(--font-mono); font-size: 11px; color: var(--springs-deep); }

/* team card */
.team-card { text-align: left; }
.team-photo {
  aspect-ratio: 1; border-radius: var(--radius-l);
  background: linear-gradient(155deg, var(--ink) 0%, var(--springs-deep) 130%);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; position: relative; overflow: hidden;
}
.team-photo .initials { font-family: var(--font-display); font-size: 2.6rem; color: rgba(255,255,255,.92); font-weight: 700; z-index: 1; }
.team-photo svg { position: absolute; inset: 0; opacity: .35; }
.team-card h3 { font-size: 1.05rem; margin-bottom: 2px; }
.team-role { font-family: var(--font-mono); font-size: 11.5px; text-transform: uppercase; letter-spacing: .05em; color: var(--springs-deep); margin-bottom: 10px; display: block; }
.team-card p { font-size: 13.5px; color: var(--ink-soft); }

/* =================================================================
   PROCESS STEPS
   ================================================================= */
.process-list { display: grid; gap: 0; }
.process-item {
  display: grid; grid-template-columns: 56px 1fr; gap: 20px;
  padding-block: 26px; border-top: 1px solid var(--line);
}
.bg-ink .process-item { border-color: var(--line-dark-2); }
.process-item:last-child { border-bottom: 1px solid var(--line); }
.bg-ink .process-item:last-child { border-color: var(--line-dark-2); }
.process-num { font-family: var(--font-mono); font-size: 13px; color: var(--springs-deep); padding-top: 3px; }
.bg-ink .process-num { color: var(--springs-bright); }
.process-item h3 { font-size: 1.1rem; margin-bottom: 6px; }
.process-item p { color: var(--ink-soft); font-size: 14.5px; max-width: 56ch; }
.bg-ink .process-item p { color: rgba(255,255,255,.68); }

/* =================================================================
   FORMS
   ================================================================= */
.form-grid { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .form-grid.two { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-size: 13px; font-weight: 600; font-family: var(--font-mono); text-transform: uppercase; letter-spacing: .04em; color: var(--ink-soft); }
.bg-ink .field label { color: rgba(255,255,255,.68); }
.field .req { color: var(--signal-deep); }
.field input, .field select, .field textarea {
  border: 1.5px solid var(--line); background: var(--white);
  border-radius: var(--radius-s); padding: 13px 14px; font-size: 15px; color: var(--ink-text);
  width: 100%;
}
.bg-ink .field input, .bg-ink .field select, .bg-ink .field textarea {
  background: var(--ink-2); border-color: var(--line-dark); color: var(--white);
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--springs); }
.field textarea { resize: vertical; min-height: 110px; }
.field-hint { font-size: 12px; color: var(--ink-soft); }
.checkbox-row { display: flex; align-items: flex-start; gap: 10px; }
.checkbox-row input { width: 18px; height: 18px; margin-top: 2px; flex-shrink: 0; }
.checkbox-row label { font-size: 13px; color: var(--ink-soft); font-family: var(--font-body); font-weight: 400; text-transform: none; letter-spacing: 0; }
.bg-ink .checkbox-row label { color: rgba(255,255,255,.68); }
.form-note { font-size: 12.5px; color: var(--ink-soft); display: flex; gap: 8px; align-items: flex-start; }
.form-note svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 1px; }

.form-status {
  display: none; align-items: flex-start; gap: 12px;
  padding: 16px 18px; border-radius: var(--radius-m); margin-top: 18px;
  font-size: 14.5px; border: 1.5px solid;
}
.form-status.is-visible { display: flex; }
.form-status.success { background: rgba(23,131,111,.08); border-color: var(--springs); color: var(--springs-deep); }
.form-status svg { width: 20px; height: 20px; flex-shrink: 0; }

/* =================================================================
   ACCORDION (FAQ)
   ================================================================= */
.accordion-item { border-bottom: 1px solid var(--line); }
.accordion-item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 4px; font-family: var(--font-display); font-weight: 700; font-size: 1.02rem;
}
.accordion-item summary::-webkit-details-marker { display: none; }
.accordion-item .plus { width: 26px; height: 26px; border-radius: 50%; border: 1.5px solid var(--line); flex-shrink: 0; position: relative; }
.accordion-item .plus::before, .accordion-item .plus::after { content: ""; position: absolute; background: var(--ink); }
.accordion-item .plus::before { left: 7px; right: 7px; top: 50%; height: 1.5px; transform: translateY(-50%); }
.accordion-item .plus::after { top: 7px; bottom: 7px; left: 50%; width: 1.5px; transform: translateX(-50%); transition: opacity .15s ease; }
.accordion-item[open] .plus::after { opacity: 0; }
.accordion-item .accordion-body { padding: 0 4px 24px; color: var(--ink-soft); font-size: 14.5px; max-width: 68ch; }

/* =================================================================
   STICKY MOBILE CALL BAR
   ================================================================= */
.mobile-cta-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  background: var(--ink); border-top: 1px solid var(--line-dark);
  display: flex; padding: 10px 12px; gap: 10px;
  padding-bottom: max(10px, env(safe-area-inset-bottom));
}
.mobile-cta-bar a { flex: 1; text-align: center; padding: 13px 10px; border-radius: 999px; font-weight: 700; font-size: 14.5px; }
.mobile-cta-bar .call { background: var(--white); color: var(--ink); display: flex; align-items: center; justify-content: center; gap: 7px; }
.mobile-cta-bar .call svg { width: 16px; height: 16px; }
.mobile-cta-bar .quote { background: var(--signal-deep); color: var(--white); }
@media (min-width: 1050px) { .mobile-cta-bar { display: none; } }
body.has-mobile-bar { padding-bottom: 78px; }
@media (min-width: 1050px) { body.has-mobile-bar { padding-bottom: 0; } }

/* =================================================================
   FOOTER
   ================================================================= */
.site-footer { padding-block: 64px 28px; }
.footer-grid { display: grid; gap: 40px; grid-template-columns: 1fr; margin-bottom: 48px; }
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.footer-brand p { color: rgba(255,255,255,.62); font-size: 14px; max-width: 32ch; margin-top: 14px; }
.footer-col h4 { font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.5); margin-bottom: 16px; font-weight: 600; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 14.5px; color: rgba(255,255,255,.82); }
.footer-col a:hover { color: var(--springs-bright); }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; border: 1.5px solid var(--line-dark); display: flex; align-items: center; justify-content: center; }
.footer-social svg { width: 16px; height: 16px; }
.footer-social a:hover { border-color: var(--springs-bright); color: var(--springs-bright); }
.footer-bottom { border-top: 1px solid var(--line-dark-2); padding-top: 24px; display: flex; flex-wrap: wrap; gap: 12px 24px; align-items: center; justify-content: space-between; font-size: 12.5px; color: rgba(255,255,255,.5); }
.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: var(--white); }
.footer-legal-links { display: flex; gap: 18px; flex-wrap: wrap; }

/* =================================================================
   MISC — badges, breadcrumb, stat blocks, hero patterns
   ================================================================= */
.badge-row { display: flex; flex-wrap: wrap; gap: 10px; }
.badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .02em;
  border: 1px solid var(--line); border-radius: 999px; padding: 7px 13px;
  color: var(--ink-soft);
}
.bg-ink .badge { border-color: var(--line-dark); color: rgba(255,255,255,.75); }
.badge svg { width: 13px; height: 13px; color: var(--springs-deep); }
.bg-ink .badge svg { color: var(--springs-bright); }

.stat-row { display: grid; grid-template-columns: repeat(2,1fr); gap: 26px; }
@media (min-width: 640px) { .stat-row.cols-4 { grid-template-columns: repeat(4,1fr); } }
.stat-block .num { font-family: var(--font-display); font-size: clamp(2rem, 2.4vw + 1rem, 2.9rem); font-weight: 700; color: var(--ink); }
.bg-ink .stat-block .num { color: var(--white); }
.stat-block .label { font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; letter-spacing: .04em; color: var(--ink-soft); margin-top: 4px; }
.bg-ink .stat-block .label { color: rgba(255,255,255,.6); }

.breadcrumb { font-family: var(--font-mono); font-size: 12.5px; color: rgba(255,255,255,.6); display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb .sep { opacity: .5; }

.page-hero { padding-top: 56px; padding-bottom: 56px; }
.page-hero h1 { margin-top: 14px; }

.two-col { display: grid; gap: 44px; grid-template-columns: 1fr; align-items: start; }
@media (min-width: 940px) { .two-col { grid-template-columns: 1.1fr .9fr; gap: 60px; } }
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

.pill-list { display: flex; flex-wrap: wrap; gap: 10px; }
.pill-list li {
  font-size: 13.5px; font-weight: 500; color: var(--ink-text);
  background: var(--white); border: 1px solid var(--line);
  padding: 8px 14px; border-radius: 999px;
}

.check-list { display: flex; flex-direction: column; gap: 12px; }
.check-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; color: var(--ink-soft); }
.check-list svg { width: 18px; height: 18px; color: var(--springs-deep); flex-shrink: 0; margin-top: 2px; }
.bg-ink .check-list li { color: rgba(255,255,255,.75); }
.bg-ink .check-list svg { color: var(--springs-bright); }

.divider-line { height: 1px; background: var(--line); border: 0; }
.bg-ink .divider-line { background: var(--line-dark-2); }

/* quote form panel (home + contact) */
.quote-panel {
  background: var(--white); border-radius: var(--radius-l);
  padding: 28px; box-shadow: var(--shadow-lift); border: 1px solid var(--line);
}
.quote-panel h3 { font-size: 1.25rem; margin-bottom: 4px; }
.quote-panel .lede { font-size: 14px; margin-bottom: 20px; }

/* scroll reveal */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .5s ease, transform .5s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* map placeholder */
.map-frame {
  aspect-ratio: 16/10; border-radius: var(--radius-l); overflow: hidden;
  border: 1px solid var(--line); position: relative;
  background: var(--stone);
}
.map-frame .map-pin { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-100%); text-align:center; }
.map-frame .map-pin svg { width: 34px; height: 34px; color: var(--signal-deep); }
.map-frame .map-caption { position: absolute; bottom: 14px; left: 14px; right: 14px; background: var(--white); border-radius: var(--radius-s); padding: 10px 14px; font-family: var(--font-mono); font-size: 12px; box-shadow: var(--shadow-card); }

/* 404 */
.error-page { min-height: 60vh; display: flex; align-items: center; }
