/* ---------- 0. FONTS (self-hosted, latin subset) -------------------------- */
@font-face{font-family:"Bebas Neue";font-style:normal;font-weight:400;font-display:swap;
  src:url("../fonts/bebas-neue-latin-400-normal.woff2") format("woff2");}
@font-face{font-family:"DM Sans";font-style:normal;font-weight:400;font-display:swap;
  src:url("../fonts/dm-sans-latin-400-normal.woff2") format("woff2");}
@font-face{font-family:"DM Sans";font-style:normal;font-weight:500;font-display:swap;
  src:url("../fonts/dm-sans-latin-500-normal.woff2") format("woff2");}
@font-face{font-family:"DM Sans";font-style:normal;font-weight:700;font-display:swap;
  src:url("../fonts/dm-sans-latin-700-normal.woff2") format("woff2");}
@font-face{font-family:"DM Mono";font-style:normal;font-weight:400;font-display:swap;
  src:url("../fonts/dm-mono-latin-400-normal.woff2") format("woff2");}
@font-face{font-family:"DM Mono";font-style:normal;font-weight:500;font-display:swap;
  src:url("../fonts/dm-mono-latin-500-normal.woff2") format("woff2");}

/* ==========================================================================
   OUTLAW INDUSTRIAL — Design System
   v1.0  ·  Single stylesheet for the whole site.
   Token names map 1:1 to the brand guide at /brand.html
   ========================================================================== */

/* ---------- 1. TOKENS ---------------------------------------------------- */
:root {
  /* Core palette */
  --charcoal:    #1F1F1F;
  --charcoal-90: #2B2B2B;
  --charcoal-80: #3A3A3A;
  --graphite:    #4A4A4A;
  --steel:       #8C8C8C;
  --pale-stone:  #E8E4DE;
  --off-white:   #F4F1EC;
  --white:       #FFFFFF;
  --rust:        #B84C27;
  --rust-dark:   #9C3F20;
  --rust-tint:   rgba(184, 76, 39, 0.08);
  /* Accessible rust for SMALL TEXT. --rust stays the fill/rule colour. */
  --rust-text:   #9C3F20;   /* on off-white / pale stone  -> 5.9:1 */
  --rust-on-dark:#DE7346;   /* on charcoal                -> 5.2:1 */

  /* Semantic */
  --bg:            var(--off-white);
  --bg-alt:        var(--pale-stone);
  --bg-invert:     var(--charcoal);
  --text:          var(--charcoal);
  --text-muted:    var(--graphite);
  --text-quiet:    var(--graphite);
  --text-invert:   var(--off-white);
  --rule:          rgba(31, 31, 31, 0.14);
  --rule-strong:   rgba(31, 31, 31, 0.28);
  /* Control boundaries need 3:1 per WCAG 1.4.11 - .28 only reaches 1.8:1 */
  --rule-input:    rgba(31, 31, 31, 0.52);
  --rule-invert:   rgba(244, 241, 236, 0.18);

  /* Type */
  --font-display: "Bebas Neue", "Oswald", "Arial Narrow", sans-serif;
  --font-sans:    "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-mono:    "DM Mono", ui-monospace, "SF Mono", Menlo, Consolas, monospace;

  /* Spacing scale (8pt) */
  --s-1: 4px;   --s-2: 8px;   --s-3: 12px;  --s-4: 16px;
  --s-5: 24px;  --s-6: 32px;  --s-7: 48px;  --s-8: 64px;
  --s-9: 96px;  --s-10: 128px; --s-11: 160px;

  /* Layout */
  --container: 1240px;
  --container-narrow: 860px;
  --gutter: 24px;
  --radius: 2px;
  --radius-lg: 3px;

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

@media (max-width: 900px) {
  :root { --gutter: 20px; --header-h: 64px; }
}

/* ---------- 2. RESET ----------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 24px); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5, h6, p, figure { margin: 0; }
hr { border: 0; border-top: 1px solid var(--rule); margin: 0; }
::selection { background: var(--rust); color: var(--white); }

/* ---------- 3. TYPOGRAPHY ------------------------------------------------ */
.display-xl, .display-lg, .display-md, .display-sm {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: 0.005em;
  color: var(--text);
}
.display-xl { font-size: clamp(2.75rem, 6.2vw, 5.25rem); }
.display-lg { font-size: clamp(2.25rem, 4.8vw, 4rem); }
.display-md { font-size: clamp(1.85rem, 3.4vw, 2.75rem); }
.display-sm { font-size: clamp(1.5rem, 2.4vw, 2rem); }

.h2 { font-family: var(--font-sans); font-size: clamp(1.4rem, 2.2vw, 1.85rem); font-weight: 500; line-height: 1.25; letter-spacing: -0.015em; }
.h3 { font-family: var(--font-sans); font-size: 1.2rem; font-weight: 500; line-height: 1.35; letter-spacing: -0.01em; }
.h4 { font-family: var(--font-sans); font-size: 0.95rem; font-weight: 700; line-height: 1.4; letter-spacing: 0.06em; text-transform: uppercase; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rust-text);
  display: flex;
  align-items: center;
  gap: var(--s-3);
  margin-bottom: var(--s-5);
}
.eyebrow::after { content: ""; flex: 1; height: 1px; background: var(--rule); max-width: 120px; }
.eyebrow--plain::after { display: none; }
.eyebrow--quiet { color: var(--steel); }

/* The brand caps running text at 62 characters. In two-column layouts the grid
   already enforces that; in single-column ones — the About story, the legal
   pages, and any phone held in landscape — it has to be stated. A max-width
   only ever narrows, so this is inert wherever the column is already tight. */
.lede { font-size: clamp(1.05rem, 1.5vw, 1.25rem); line-height: 1.6; color: var(--text-muted); max-width: 62ch; }
.body-lg { font-size: 1.075rem; line-height: 1.7; color: var(--text-muted); max-width: 62ch; }
.container-narrow p, .container-narrow li { max-width: 62ch; }
p { color: var(--text-muted); }
p + p { margin-top: var(--s-4); }
strong, b { font-weight: 600; color: var(--text); }

.mono { font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-quiet); }
.num  { font-family: var(--font-mono); font-variant-numeric: tabular-nums; }

.measure    { max-width: 62ch; }
.measure-sm { max-width: 48ch; }

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

.section { padding-block: clamp(64px, 8vw, 128px); position: relative; }
.section--tight { padding-block: clamp(48px, 5.5vw, 88px); }
.section--alt    { background: var(--bg-alt); }
.section--invert { background: var(--bg-invert); color: var(--text-invert); --rust-text: var(--rust-on-dark); }
.section--invert p, .section--invert .lede, .section--invert .body-lg { color: rgba(244,241,236,.72); }
.section--invert .display-xl, .section--invert .display-lg,
.section--invert .display-md, .section--invert .display-sm { color: var(--off-white); }
.section--invert .eyebrow::after { background: var(--rule-invert); }
.section--invert .mono { color: rgba(244,241,236,.68); }
.section--invert hr { border-color: var(--rule-invert); }

.section-head { max-width: 760px; margin-bottom: var(--s-8); }
.section-head .display-lg,
.section-head .display-md { margin-bottom: var(--s-5); }

.grid { display: grid; gap: var(--s-6); }
.grid-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
.split  { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: clamp(32px, 5vw, 80px); align-items: start; }
.split--sticky > :first-child { position: sticky; top: calc(var(--header-h) + 48px); }

@media (max-width: 1000px) {
  .grid-4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .grid-3 { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 720px) {
  .grid-2, .grid-3, .grid-4, .split { grid-template-columns: minmax(0,1fr); }
  .split--sticky > :first-child { position: static; }
}

/* ---------- 5. BUTTONS --------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--s-3);
  font-family: var(--font-sans);
  font-size: 0.83rem; font-weight: 700;
  letter-spacing: 0.09em; text-transform: uppercase;
  padding: 16px 28px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background-color .18s var(--ease), color .18s var(--ease), border-color .18s var(--ease), transform .18s var(--ease);
  white-space: nowrap;
}
.btn:focus-visible { outline: 2px solid var(--rust); outline-offset: 3px; }
.btn .arw { transition: transform .18s var(--ease); }
.btn:hover .arw { transform: translateX(3px); }

.btn--primary  { background: var(--rust); color: var(--white); }
.btn--primary:hover { background: var(--rust-dark); }
.btn--dark     { background: var(--charcoal); color: var(--off-white); }
.btn--dark:hover { background: var(--charcoal-80); }
.btn--outline  { background: transparent; color: var(--charcoal); border-color: var(--rule-input); }
.btn--outline:hover { border-color: var(--charcoal); background: rgba(31,31,31,.04); }
.btn--ghost-invert { background: transparent; color: var(--off-white); border-color: rgba(244,241,236,.35); }
.btn--ghost-invert:hover { border-color: var(--off-white); background: rgba(244,241,236,.08); }
.btn--sm { padding: 11px 18px; font-size: 0.75rem; }
.btn--block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: var(--s-4); }

/* Text link with rust underline */
.link {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-sans);
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--charcoal);
  padding-bottom: 6px;
  border-bottom: 2px solid var(--rust);
  transition: color .18s var(--ease), gap .18s var(--ease);
}
.link:hover { color: var(--rust-text); gap: 14px; }
.section--invert .link { color: var(--off-white); }
.section--invert .link:hover { color: var(--rust-text); }

/* ---------- 6. HEADER ---------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(244,241,236,.94);
  backdrop-filter: saturate(150%) blur(10px);
  -webkit-backdrop-filter: saturate(150%) blur(10px);
  border-bottom: 1px solid var(--rule);
}
.header-inner {
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between; gap: var(--s-6);
}
.brand { display: flex; align-items: center; flex: 0 0 auto; }
.brand img { height: 30px; width: auto; }
@media (max-width: 480px) { .brand img { height: 26px; } }

.nav { display: flex; align-items: center; gap: var(--s-6); margin-left: auto; margin-right: var(--s-6); }
.nav a {
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--graphite); padding: 6px 0; position: relative;
  transition: color .18s var(--ease);
}
.nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px;
  background: var(--rust); transform: scaleX(0); transform-origin: left; transition: transform .2s var(--ease);
}
.nav a:hover { color: var(--charcoal); }
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); }
.nav a[aria-current="page"] { color: var(--charcoal); }

.nav > .btn { display: none; }
.header-actions { display: flex; align-items: center; gap: var(--s-5); flex: 0 0 auto; }
.header-phone {
  font-family: var(--font-mono); font-size: 0.85rem; letter-spacing: 0.04em;
  color: var(--charcoal); font-weight: 500; white-space: nowrap;
}
.header-phone:hover { color: var(--rust-text); }

.nav-toggle { display: none; background: none; border: 1px solid var(--rule-strong); border-radius: var(--radius); padding: 9px 11px; cursor: pointer; }
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--charcoal); transition: transform .2s var(--ease), opacity .2s var(--ease); }
.nav-toggle span + span { margin-top: 5px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1040px) {
  .nav-toggle { display: block; order: 3; }
  .nav {
    /* The panel must cover the screen below the header — sized to its own
       content it stopped partway down and the page showed through, which read
       as a rendering glitch rather than a menu.
       It cannot do that with bottom:0: .site-header sets backdrop-filter, which
       makes the header the containing block for fixed descendants, so bottom
       would resolve against a 64px box. Viewport units are unaffected by that,
       so the height is set explicitly instead. */
    position: fixed; inset: var(--header-h) 0 auto 0;
    margin-left: 0; margin-right: 0;
    background: var(--off-white);
    flex-direction: column; align-items: stretch; gap: 0;
    padding: var(--s-4) var(--gutter) var(--s-6);
    transform: translateY(-8px); opacity: 0; pointer-events: none;
    transition: opacity .18s var(--ease), transform .18s var(--ease);
    height: calc(100vh - var(--header-h));
    height: calc(100dvh - var(--header-h));  /* accounts for mobile browser chrome */
    overflow-y: auto; overscroll-behavior: contain;
  }
  .nav[data-open="true"] { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav a { padding: 14px 0; border-bottom: 1px solid var(--rule); font-size: 0.95rem; }
  .nav a::after { display: none; }
  .nav > .btn { display: inline-flex; margin-top: var(--s-5); color: var(--white); }
  .nav > .btn:hover { color: var(--white); }
  .nav > .btn::after { display: none; }
  .header-actions .btn { display: none; }
}
@media (max-width: 620px) {
  .header-actions { gap: var(--s-4); }
  .header-phone { font-size: 0.8rem; letter-spacing: 0; }
}
@media (max-width: 360px) { .header-phone { display: none; } }

/* ---------- 7. HERO ------------------------------------------------------ */
.hero {
  --rust-text: var(--rust-on-dark);
  background: var(--charcoal);
  color: var(--off-white);
  position: relative;
  overflow: hidden;
  padding-block: clamp(72px, 10vw, 140px);
}
.hero__ring {
  position: absolute; right: -14%; top: 46%; transform: translateY(-50%);
  width: min(680px, 58vw); opacity: .04; pointer-events: none;
}
.hero__inner { position: relative; z-index: 1; }
.hero .eyebrow { color: var(--rust-text); }
.hero .eyebrow::after { background: var(--rule-invert); }
.hero h1 { color: var(--off-white); max-width: 16ch; margin-bottom: var(--s-6); }
.hero .lede { color: rgba(244,241,236,.75); max-width: 56ch; margin-bottom: var(--s-7); }
.hero .btn-row { margin-bottom: var(--s-9); }

.hero-stats {
  display: grid; grid-template-columns: repeat(3, minmax(0,1fr));
  border-top: 1px solid var(--rule-invert);
}
.hero-stat { padding-top: var(--s-5); padding-right: var(--s-5); }
.hero-stat + .hero-stat { border-left: 1px solid var(--rule-invert); padding-left: var(--s-5); }
.hero-stat dt {
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--rust-text); margin-bottom: var(--s-2);
}
.hero-stat dd { margin: 0; font-size: 0.95rem; line-height: 1.5; color: rgba(244,241,236,.68); }
@media (max-width: 720px) {
  .hero-stats { grid-template-columns: 1fr; }
  .hero-stat + .hero-stat { border-left: 0; border-top: 1px solid var(--rule-invert); padding-left: 0; margin-top: var(--s-5); }
}

/* Interior page hero */
.pagehead { --rust-text: var(--rust-on-dark); background: var(--charcoal); color: var(--off-white); padding-block: clamp(56px, 7vw, 104px); position: relative; overflow: hidden; }
.pagehead__ring { position: absolute; right: -8%; top: 50%; transform: translateY(-50%); width: min(460px, 42vw); opacity: .03; pointer-events: none; }
.pagehead__inner { position: relative; z-index: 1; }
.pagehead h1 { color: var(--off-white); max-width: 18ch; margin-bottom: var(--s-5); }
.pagehead .lede { color: rgba(244,241,236,.75); max-width: 60ch; }

.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-bottom: var(--s-5);
  font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(244,241,236,.68); }
.breadcrumb a { color: rgba(244,241,236,.78); }
.breadcrumb a:hover { color: var(--rust-text); }
.breadcrumb span[aria-hidden] { color: rgba(244,241,236,.5); }

/* ---------- 8. CARDS & BLOCKS ------------------------------------------- */
.card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: var(--s-6);
  display: flex; flex-direction: column;
  transition: border-color .2s var(--ease), transform .2s var(--ease);
}
.card--link:hover { border-color: var(--rust); transform: translateY(-2px); }
.card__num {
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.16em;
  color: var(--rust-text); margin-bottom: var(--s-4);
}
.card h3 { margin-bottom: var(--s-3); }
.card p { font-size: 0.97rem; }
.card .link { margin-top: auto; padding-top: var(--s-5); align-self: flex-start; }
.section--alt .card { background: var(--off-white); }
.section--invert .card { background: var(--charcoal-90); border-color: var(--rule-invert); }
.section--invert .card h3 { color: var(--off-white); }

/* Bordered feature list — no card chrome, just rules */
.feature-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 0; border-top: 1px solid var(--rule); }
.feature {
  padding: var(--s-6) var(--s-5) var(--s-6) 0;
  border-right: 1px solid var(--rule);
}
.feature:last-child { border-right: 0; }
.feature:not(:first-child) { padding-left: var(--s-5); }
.feature h3 {
  font-size: 0.85rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: var(--s-3);
}
.feature h3::before { content: ""; display: block; width: 22px; height: 2px; background: var(--rust); margin-bottom: var(--s-4); }
.feature p { font-size: 0.95rem; }
.section--invert .feature { border-color: var(--rule-invert); }
.section--invert .feature h3 { color: var(--off-white); }
.section--invert .feature-grid { border-top-color: var(--rule-invert); }
@media (max-width: 1000px) {
  .feature-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .feature:nth-child(2n) { border-right: 0; }
  .feature:nth-child(n+3) { border-top: 1px solid var(--rule); }
  .section--invert .feature:nth-child(n+3) { border-top-color: var(--rule-invert); }
}
@media (max-width: 620px) {
  .feature-grid { grid-template-columns: 1fr; }
  .feature { border-right: 0; padding-left: 0 !important; }
  .feature:not(:first-child) { border-top: 1px solid var(--rule); }
  .section--invert .feature:not(:first-child) { border-top-color: var(--rule-invert); }
}

/* ---------- 9. SERVICE BLOCKS ------------------------------------------- */
.service-block { border-top: 1px solid var(--rule-strong); padding-top: var(--s-7); }
.service-block + .service-block { margin-top: var(--s-9); }
.service-block__head { display: flex; align-items: baseline; gap: var(--s-4); margin-bottom: var(--s-6); flex-wrap: wrap; }
.service-block__num { font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.16em; color: var(--rust-text); }
.service-block__title { font-family: var(--font-display); text-transform: uppercase; font-size: clamp(1.6rem, 2.8vw, 2.35rem); line-height: 1; }

.checklist { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 0 var(--s-6); }
.checklist li {
  position: relative; padding: 12px 0 12px 26px;
  border-bottom: 1px solid var(--rule);
  font-size: 0.97rem; color: var(--text-muted);
}
.checklist li::before {
  content: ""; position: absolute; left: 0; top: 21px;
  width: 9px; height: 9px; border: 2px solid var(--rust); border-radius: 50%;
}
@media (max-width: 620px) { .checklist { grid-template-columns: 1fr; } }

.callout {
  border-left: 3px solid var(--rust);
  background: var(--white);
  padding: var(--s-5) var(--s-6);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.callout .h4 { color: var(--charcoal); margin-bottom: var(--s-2); }
.callout p { font-size: 0.97rem; }
.section--alt .callout { background: var(--off-white); }
.section--invert .callout { background: var(--charcoal-90); }
.section--invert .callout .h4 { color: var(--off-white); }

/* ---------- 10. NUMBERED PROCESS ---------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 0; border-top: 1px solid var(--rule); counter-reset: step; }
.step { padding: var(--s-6) var(--s-5) 0 0; border-right: 1px solid var(--rule); position: relative; }
.step:last-child { border-right: 0; }
.step:not(:first-child) { padding-left: var(--s-5); }
.step__n { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.16em; color: var(--rust-text); display: block; margin-bottom: var(--s-4); }
.step h3 { font-size: 0.9rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; margin-bottom: var(--s-3); }
.step p { font-size: 0.95rem; }
@media (max-width: 1000px) {
  .steps { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .step:nth-child(2n) { border-right: 0; }
  .step:nth-child(n+3) { border-top: 1px solid var(--rule); }
}
@media (max-width: 620px) {
  .steps { grid-template-columns: 1fr; }
  .step { border-right: 0; padding-left: 0 !important; padding-bottom: var(--s-5); }
  .step:not(:first-child) { border-top: 1px solid var(--rule); padding-top: var(--s-5); }
}

/* ---------- 11. STAT STRIP ---------------------------------------------- */
.stat-strip { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); border-top: 1px solid var(--rule); }
.stat { padding: var(--s-6) var(--s-5) 0 0; border-right: 1px solid var(--rule); }
.stat:last-child { border-right: 0; }
.stat:not(:first-child) { padding-left: var(--s-5); }
.stat__value { font-family: var(--font-display); font-size: clamp(2rem, 3.4vw, 2.9rem); line-height: 1; margin-bottom: var(--s-3); }
.stat__label { font-size: 0.93rem; color: var(--text-muted); }
.section--invert .stat { border-color: var(--rule-invert); }
.section--invert .stat-strip { border-top-color: var(--rule-invert); }
.section--invert .stat__value { color: var(--off-white); }
@media (max-width: 1000px) {
  .stat-strip { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .stat:nth-child(2n) { border-right: 0; }
  .stat:nth-child(n+3) { border-top: 1px solid var(--rule); }
  .section--invert .stat:nth-child(n+3) { border-top-color: var(--rule-invert); }
}
@media (max-width: 560px) {
  .stat-strip { grid-template-columns: 1fr; }
  .stat { border-right: 0; padding-left: 0 !important; padding-bottom: var(--s-5); }
  .stat:not(:first-child) { border-top: 1px solid var(--rule); }
}

/* ---------- 12. INDUSTRY LIST ------------------------------------------- */
.industry-list { border-top: 1px solid var(--rule-strong); }
.industry-row {
  display: grid; grid-template-columns: 64px minmax(0,1.05fr) minmax(0,1.35fr) auto;
  gap: var(--s-6); align-items: center;
  padding: var(--s-6) 0;
  border-bottom: 1px solid var(--rule);
  transition: background-color .2s var(--ease), padding-left .2s var(--ease);
}
.industry-row:hover { background: rgba(184,76,39,.045); padding-left: var(--s-4); }
.industry-row__n { font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.14em; color: var(--rust-text); }
.industry-row__title { font-family: var(--font-display); text-transform: uppercase; font-size: clamp(1.25rem, 2vw, 1.7rem); line-height: 1.05; }
.industry-row__desc { font-size: 0.97rem; color: var(--text-muted); }
.industry-row__go {
  font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--rust-text); white-space: nowrap;
}
@media (max-width: 900px) {
  .industry-row { grid-template-columns: 44px minmax(0,1fr); gap: var(--s-3) var(--s-4); }
  .industry-row__desc { grid-column: 2; }
  .industry-row__go { grid-column: 2; }
}

/* ---------- 13. MEDIA SLOTS --------------------------------------------- */
/* Swap the inner <div class="media__ph"> for <img src="..." alt="..."> when
   real photography is available. Ratio + treatment stay identical. */
.media { position: relative; overflow: hidden; border-radius: var(--radius); background: var(--charcoal); }
.media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.media--4x3 { aspect-ratio: 4 / 3; }
.media--3x2 { aspect-ratio: 3 / 2; }
.media--1x1 { aspect-ratio: 1 / 1; }
.media--16x9 { aspect-ratio: 16 / 9; }
.media { --rust-text: var(--rust-on-dark); }
.media__ph {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 120% at 78% 18%, rgba(184,76,39,.16) 0%, rgba(184,76,39,0) 58%),
    var(--charcoal);
  display: grid; place-items: center;
}
.media__ph::after {
  content: ""; width: 46%; aspect-ratio: 1;
  background: center / contain no-repeat var(--ph-mark, url("../logos/outlaw-mark-offwhite.svg"));
  opacity: .07;
}
.media__cap {
  position: absolute; left: 0; bottom: 0; right: 0;
  padding: var(--s-4) var(--s-5);
  font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(244,241,236,.72);
  background: linear-gradient(to top, rgba(31,31,31,.85), rgba(31,31,31,0));
}

/* ---------- 14. QUOTE ---------------------------------------------------- */
.quote { border-left: 3px solid var(--rust); padding-left: var(--s-6); }
.quote blockquote {
  margin: 0 0 var(--s-5);
  font-size: clamp(1.15rem, 2vw, 1.5rem); line-height: 1.45; font-weight: 400;
  color: var(--text);
}
.section--invert .quote blockquote { color: var(--off-white); }
.quote figcaption { font-family: var(--font-mono); font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-quiet); }

/* Placeholder marker so unfilled content is obvious in staging */
.pending {
  display: inline-block;
  font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--rust-text); background: var(--rust-tint);
  border: 1px dashed rgba(184,76,39,.45); border-radius: var(--radius);
  padding: 3px 8px;
}

/* ---------- 15. CODE OF THE WEST ---------------------------------------- */
.code-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 0; }
.code-item { padding: var(--s-6) var(--s-7) var(--s-6) 0; border-top: 1px solid var(--rule-invert); }
.code-item:nth-child(2n) { padding-left: var(--s-7); border-left: 1px solid var(--rule-invert); }
.code-item__title { font-family: var(--font-display); text-transform: uppercase; font-size: clamp(1.3rem, 2vw, 1.75rem); line-height: 1.05; color: var(--off-white); margin-bottom: var(--s-3); }
@media (max-width: 720px) {
  .code-grid { grid-template-columns: 1fr; }
  .code-item, .code-item:nth-child(2n) { padding-left: 0; padding-right: 0; border-left: 0; }
}

/* ---------- 16. FORM ----------------------------------------------------- */
.form-wrap { background: var(--white); border: 1px solid var(--rule); border-radius: var(--radius); padding: clamp(24px, 3.5vw, 44px); }
.section--invert .form-wrap { background: var(--charcoal-90); border-color: var(--rule-invert); }
.field { margin-bottom: var(--s-5); }
.field label {
  display: block; margin-bottom: var(--s-2);
  font-family: var(--font-sans); font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--graphite);
}
.section--invert .field label { color: rgba(244,241,236,.7); }
.field .req { color: var(--rust-text); }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-sans); font-size: 1rem; color: var(--charcoal);
  background: var(--off-white);
  border: 1px solid var(--rule-input); border-radius: var(--radius);
  padding: 13px 14px;
  transition: border-color .16s var(--ease), box-shadow .16s var(--ease);
}
.section--invert .field input, .section--invert .field select, .section--invert .field textarea {
  background: var(--charcoal); color: var(--off-white); border-color: var(--rule-invert);
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--rust); box-shadow: 0 0 0 3px var(--rust-tint);
}
.field-row { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 0 var(--s-5); }
@media (max-width: 620px) { .field-row { grid-template-columns: 1fr; } }
/* ---------- FAQ ----------------------------------------------------------- */
.faq { border-top: 1px solid var(--rule); }
.faq__item { border-bottom: 1px solid var(--rule); }
.faq__item summary {
  list-style: none; cursor: pointer; position: relative;
  padding: var(--s-5) 44px var(--s-5) 0;
  font-family: var(--font-sans); font-weight: 700; font-size: 1.05rem;
  color: var(--text); transition: color .16s var(--ease);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--rust-text); }
.faq__item summary:focus-visible { outline: 2px solid var(--rust); outline-offset: 2px; }
/* Plus sign built from two rules — no icon font, no SVG request. */
.faq__item summary::before,
.faq__item summary::after {
  content: ""; position: absolute; right: 6px; top: 50%;
  background: var(--rust); transition: transform .2s var(--ease), opacity .2s var(--ease);
}
.faq__item summary::before { width: 14px; height: 2px; margin-top: -1px; }
.faq__item summary::after  { width: 2px; height: 14px; margin-top: -7px; right: 12px; }
.faq__item[open] summary::after { transform: rotate(90deg); opacity: 0; }
.faq__a { padding: 0 0 var(--s-5); max-width: 68ch; }
.faq__a p { margin: 0; color: var(--text-muted); }
@media (prefers-reduced-motion: reduce) {
  .faq__item summary::before, .faq__item summary::after { transition: none; }
}

.form-note { font-size: 0.85rem; color: var(--text-quiet); margin-top: var(--s-4); }
.form-note--busy { color: var(--text-muted); }
.form-note--error {
  color: var(--rust-text); background: var(--rust-tint);
  border-left: 3px solid var(--rust); border-radius: 0 var(--radius) var(--radius) 0;
  padding: 12px 14px; line-height: 1.5;
}
.form-note--error a { color: var(--rust-text); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.btn[disabled], .btn[aria-busy="true"] { opacity: .55; cursor: not-allowed; pointer-events: none; }
.radio-set { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: var(--s-2) var(--s-4); }
.radio-set label {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-sans); font-size: 0.95rem; font-weight: 400;
  letter-spacing: 0; text-transform: none; color: var(--text-muted);
  padding: 10px 12px; border: 1px solid var(--rule-input); border-radius: var(--radius);
  cursor: pointer; transition: border-color .16s var(--ease), background-color .16s var(--ease);
  margin-bottom: 0;
}
.radio-set label:hover { border-color: var(--rule-strong); }
.radio-set input { width: auto; accent-color: var(--rust); }
.radio-set input:checked + span { color: var(--charcoal); font-weight: 600; }
@media (max-width: 620px) { .radio-set { grid-template-columns: 1fr; } }

fieldset { border: 0; margin: 0; padding: 0; }
legend { padding: 0; margin-bottom: var(--s-2); font-family: var(--font-sans); font-size: 0.74rem;
  font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--graphite); }

.consent { display: flex; gap: 12px; align-items: flex-start; margin-top: var(--s-5);
  padding: var(--s-4); border: 1px solid var(--rule); border-radius: var(--radius);
  font-size: 0.88rem; line-height: 1.5; color: var(--text-muted); cursor: pointer; }
.consent input { margin-top: 3px; accent-color: var(--rust); flex: 0 0 auto; width: 16px; height: 16px; }
.consent a { color: var(--rust-text); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }

/* ---------- 17. CONTACT PANELS ------------------------------------------ */
.contact-item { padding: var(--s-5) 0; border-bottom: 1px solid var(--rule); }
.contact-item .h4 { color: var(--text-quiet); margin-bottom: var(--s-2); }
.contact-item a { color: var(--charcoal); font-weight: 500; }
.contact-item a:hover { color: var(--rust-text); }
.contact-big {
  font-family: var(--font-display); font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  line-height: 1; letter-spacing: 0.01em; color: var(--charcoal);
}
.contact-big:hover { color: var(--rust-text); }
.section--invert .contact-item { border-color: var(--rule-invert); }
.section--invert .contact-item a, .section--invert .contact-big { color: var(--off-white); }
.section--invert .contact-item a:hover, .section--invert .contact-big:hover { color: var(--rust-text); }

/* ---------- 18. TOWN CHIPS ---------------------------------------------- */
.chips { display: flex; flex-wrap: wrap; gap: var(--s-2); }
.chip {
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 8px 14px; border: 1px solid var(--rule-strong); border-radius: var(--radius);
  color: var(--graphite);
}
.section--invert .chip { border-color: var(--rule-invert); color: rgba(244,241,236,.72); }

/* ---------- 19. CTA BAND ------------------------------------------------- */
.cta-band { --rust-text: var(--rust-on-dark); background: var(--charcoal); color: var(--off-white); position: relative; overflow: hidden; border-top: 1px solid var(--rule-invert); }
.cta-band__ring { position: absolute; left: -10%; top: 50%; transform: translateY(-50%); width: min(420px, 40vw); opacity: .035; pointer-events: none; }
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 { color: var(--off-white); margin-bottom: var(--s-5); }
.cta-band p { color: rgba(244,241,236,.72); }

/* ---------- 20. FOOTER --------------------------------------------------- */
.site-footer { --rust-text: var(--rust-on-dark); background: var(--charcoal); color: rgba(244,241,236,.72); padding-top: var(--s-9); border-top: 1px solid var(--rule-invert); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: var(--s-7); padding-bottom: var(--s-8); }
.footer-brand img { height: 34px; width: auto; margin-bottom: var(--s-5); }
.footer-brand p { color: rgba(244,241,236,.72); font-size: 0.95rem; max-width: 40ch; }
.footer-phone {
  display: inline-block; margin-top: var(--s-5);
  font-family: var(--font-display); font-size: 1.75rem; letter-spacing: 0.02em; color: var(--off-white);
}
.footer-phone:hover { color: var(--rust-text); }
.footer-col h3 {
  font-family: var(--font-sans); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--off-white); margin-bottom: var(--s-4);
}
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 0.93rem; color: rgba(244,241,236,.72); }
.footer-col a:hover { color: var(--rust-text); }
.footer-area { font-size: 0.88rem; color: rgba(244,241,236,.68); margin-top: var(--s-5); }
.footer-bottom {
  border-top: 1px solid var(--rule-invert);
  padding-block: var(--s-5) var(--s-6);
  display: flex; flex-wrap: wrap; gap: var(--s-4) var(--s-6); align-items: center; justify-content: space-between;
  font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(244,241,236,.62);
}
.footer-bottom a:hover { color: var(--rust-text); }
.footer-legal { display: flex; gap: var(--s-5); flex-wrap: wrap; }
@media (max-width: 1000px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .footer-grid { grid-template-columns: 1fr; gap: var(--s-6); } }

/* ---------- 21. UTILITIES ------------------------------------------------ */
.mb-0{margin-bottom:0}.mb-2{margin-bottom:var(--s-2)}.mb-3{margin-bottom:var(--s-3)}
.mb-4{margin-bottom:var(--s-4)}.mb-5{margin-bottom:var(--s-5)}.mb-6{margin-bottom:var(--s-6)}
.mb-7{margin-bottom:var(--s-7)}.mb-8{margin-bottom:var(--s-8)}
.mt-5{margin-top:var(--s-5)}.mt-6{margin-top:var(--s-6)}.mt-7{margin-top:var(--s-7)}.mt-8{margin-top:var(--s-8)}
.text-rust{color:var(--rust-text)}
.rule{height:1px;background:var(--rule);border:0}
.rule-accent{width:56px;height:3px;background:var(--rust);border:0;margin-bottom:var(--s-5)}
/* ==========================================================================
   TOUCH & SMALL SCREENS
   Interactive things need a finger-sized hit area, not just a readable one.
   WCAG 2.5.8 asks for 24x24 minimum; 44x44 is the comfortable target and what
   Apple and Google both recommend. These rules grow the hit area without
   changing how anything looks.
   ========================================================================== */

/* Header controls. The phone number is a primary action on a phone — it was a
   21px-tall tap target, which is genuinely hard to hit while walking a site. */
.brand { min-height: 44px; }
.header-phone { display: inline-flex; align-items: center; min-height: 44px; padding: 4px 0; }
.nav-toggle { min-width: 44px; min-height: 44px; align-items: center; justify-content: center; }
.nav-toggle span + span { margin-top: 5px; }

/* Arrow links ("Explore Janitorial Services") sat at 30px. */
.link { padding-top: 7px; padding-bottom: 7px; border-bottom-width: 2px; }

/* Footer and breadcrumb link lists — clear the 24px minimum with room to spare. */
.footer-col a,
.footer-brand a:not(.footer-phone),
.footer-legal a { display: inline-block; padding: 5px 0; }
.footer-col li { margin-bottom: 4px; }
.breadcrumb a { display: inline-block; padding: 4px 0; }

/* Radio and checkbox targets are the surrounding label, which is already large.
   Give the control itself a little more substance anyway. */
.radio-set label { min-height: 44px; }
.consent input { width: 18px; height: 18px; }

@media (max-width: 420px) {
  /* At 320px a button reading "Explore Janitorial Services" measured 319px wide
     inside a 280px column and pushed the page sideways. Stack the row, let the
     label wrap, and trim the side padding. */
  .btn-row { flex-direction: column; align-items: stretch; }
  .btn {
    width: 100%;
    padding-left: 18px; padding-right: 18px;
    white-space: normal; text-align: center;
  }
}

/* The header is brand + phone + menu button on one row. Below ~400px that row
   runs out of width, so tighten the gaps and the phone rather than dropping the
   phone number — on a phone it is the single most useful thing in the header. */
@media (max-width: 400px) {
  .header-inner { gap: 12px; }
  .header-actions { gap: 8px; }
  .header-phone { font-size: 0.78rem; letter-spacing: 0.02em; }
  .brand img { height: 24px; }
}

/* Nothing should ever be able to push the page sideways. */
.btn, .chip, .link { max-width: 100%; }

.skip-link{position:absolute;left:-9999px;top:0;background:var(--rust);color:#fff;padding:12px 20px;z-index:200}
.skip-link:focus{left:0}
.visually-hidden{position:absolute!important;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0 0 0 0);white-space:nowrap;border:0}

/* Reveal on scroll */
.js .reveal { opacity: 0; transform: translateY(14px); transition: opacity .55s var(--ease), transform .55s var(--ease); }
.js .reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1; transform: none; } }

/* Print */
@media print {
  .site-header, .cta-band, .nav-toggle { display: none; }
  body { background: #fff; color: #000; }
  .hero, .pagehead, .site-footer, .section--invert { background: #fff !important; color: #000 !important; }
}
