/* ============================================================
   Open Book Local — "Blue-Collar Ledger" design system
   Trades grit + open-ledger honesty. Built for Illinois HVAC.
   Palette: Asphalt · Concrete · Safety Orange · Denim · Gunmetal · Hazard Amber
   Type:    Archivo (headlines) · Inter (body) · IBM Plex Mono (numbers)
   ============================================================ */

:root {
  /* ---- Core palette (locked) ---- */
  --asphalt:   #16181C;  /* warm near-black — dark sections, header, footer */
  --asphalt-2: #1F2228;  /* raised dark surface */
  --concrete:  #ECE7DE;  /* warm off-white — the "page" of the open book */
  --concrete-2:#F4F1EA;  /* lighter surface */
  --paper:     #FBFAF6;  /* white-ish cards on concrete */
  --orange:    #E8511D;  /* Safety Orange — the ONE loud action color */
  --orange-hi: #F26534;  /* hover */
  --denim:     #35576E;  /* workwear blue — trust, secondary UI */
  --denim-deep:#294455;
  --gunmetal:  #565C64;  /* steel mid-gray — borders, muted text */
  --amber:     #F2B10A;  /* Hazard Amber — scalpel highlight, ledger ticks */

  /* ---- Semantic roles ---- */
  --bg:        var(--concrete);
  --surface:   var(--paper);
  --surface-2: var(--concrete-2);
  --ink:       #191B1F;        /* body text on light */
  --ink-muted: #55595F;        /* muted text on light */
  --ink-subtle:#7C8086;
  --on-dark:   #F1EDE4;        /* text on asphalt */
  --on-dark-muted: #A8ABB0;
  --border:    #D6CFC2;        /* hairline on light */
  --border-dark: #30343B;      /* hairline on dark */
  --action:    var(--orange);
  --on-action: #1A0E07;        /* dark ink on orange — 7.5:1, never invert to white */
  --success:   #2E7D46;
  --danger:    #B4432A;

  /* ---- Radius: sturdy, not pill ---- */
  --r-xs: 3px; --r-sm: 5px; --r-md: 8px; --r-lg: 12px;

  /* ---- Spacing ramp (4px base) ---- */
  --s1: 4px; --s2: 8px; --s3: 12px; --s4: 16px; --s5: 24px;
  --s6: 32px; --s7: 48px; --s8: 64px; --s9: 96px;
  --sect: clamp(56px, 7vw, 120px);
  --gutter: clamp(20px, 5vw, 56px);
  --container: 1180px;

  /* ---- Type ---- */
  --font-display: "Archivo", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  /* ---- Shadows: soft, low, denim-tinted ---- */
  --shadow-sm: 0 1px 2px rgba(22,24,28,0.06), 0 2px 6px rgba(22,24,28,0.05);
  --shadow-md: 0 6px 22px rgba(22,24,28,0.10);
  --shadow-lg: 0 18px 50px rgba(22,24,28,0.18);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* ---- Newsprint grain: the anti-"AI-slop" move. Fixed, very low opacity. ---- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

::selection { background: var(--orange); color: #fff; }

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

/* ============ TYPE SCALE ============ */

.display-xxl, .display-xl, .display-lg, .display-md {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 0.98;
  color: var(--ink);
}
.display-xxl { font-size: clamp(42px, 7.2vw, 92px); font-weight: 900; letter-spacing: -0.03em; line-height: 0.94; }
.display-xl  { font-size: clamp(34px, 5vw, 64px); }
.display-lg  { font-size: clamp(28px, 3.8vw, 48px); }
.display-md  { font-size: clamp(24px, 2.6vw, 34px); line-height: 1.05; }

.headline {
  font-family: var(--font-display);
  font-size: clamp(19px, 1.6vw, 23px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.subhead {
  font-size: clamp(17px, 1.5vw, 21px);
  font-weight: 400;
  line-height: 1.5;
  color: var(--ink-muted);
  max-width: 620px;
}

.body-lg   { font-size: 18px; line-height: 1.55; color: var(--ink-muted); }
.body-copy { font-size: 15.5px; line-height: 1.6; color: var(--ink-muted); }
.body-copy b, .body-lg b { color: var(--ink); font-weight: 700; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--denim);
  margin-bottom: var(--s4);
  display: flex;
  align-items: center;
  gap: var(--s3);
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--orange);
  flex: none;
}
.eyebrow-onbright { color: rgba(255,255,255,0.82); }
.eyebrow-onbright::before { background: rgba(255,255,255,0.7); }
.eyebrow-ondark { color: var(--amber); }

/* ============ BUTTONS ============ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s2);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
  padding: 13px 22px;
  border-radius: var(--r-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, background .15s ease, border-color .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--action);
  color: var(--on-action);
  box-shadow: 0 2px 0 #B23a10, var(--shadow-sm);
}
.btn-primary:hover { background: var(--orange-hi); }

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--gunmetal);
}
.btn-secondary:hover { border-color: var(--asphalt); background: rgba(22,24,28,0.04); }

/* secondary on dark backgrounds */
.on-asphalt .btn-secondary,
.btn-secondary.on-dark {
  color: var(--on-dark);
  border-color: rgba(255,255,255,0.28);
}
.on-asphalt .btn-secondary:hover,
.btn-secondary.on-dark:hover { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.06); }

.btn-lg { padding: 16px 28px; font-size: 16.5px; }
.btn-block { display: flex; width: 100%; }

/* ============ LAYOUT ============ */

.section {
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--sect) var(--gutter);
}
.section-narrow { max-width: 860px; }
.section-lede { max-width: 640px; margin-top: var(--s4); }

.on-asphalt {
  background: var(--asphalt);
  color: var(--on-dark);
}
.on-asphalt .display-xxl,
.on-asphalt .display-xl,
.on-asphalt .display-lg,
.on-asphalt .display-md,
.on-asphalt .headline { color: #fff; }
.on-asphalt .subhead,
.on-asphalt .section-lede,
.on-asphalt .body-copy,
.on-asphalt .body-lg { color: var(--on-dark-muted); }
.on-asphalt .body-copy b { color: #fff; }
.band { width: 100%; }

/* ============ CARD BASE ============ */

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--s6);
  box-shadow: var(--shadow-sm);
}

/* ============ NAV ============ */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(22,24,28,0.96);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--border-dark);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  height: 66px;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s4);
}
.wordmark {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 21px;
  letter-spacing: -0.03em;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  text-transform: uppercase;
}
.wordmark .tab {
  background: var(--orange);
  color: var(--on-action);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  padding: 2px 6px;
  border-radius: var(--r-xs);
  transform: translateY(-1px);
}
.nav-links {
  display: flex;
  gap: var(--s5);
  margin-left: auto;
  margin-right: var(--s4);
}
.nav-links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--on-dark-muted);
  transition: color .15s ease;
}
.nav-links a:hover { color: #fff; }
.nav-ctas { display: flex; align-items: center; gap: var(--s3); }
.nav-phone {
  color: #fff !important;
  border-color: rgba(255,255,255,0.28) !important;
}
.nav-phone:hover { border-color: rgba(255,255,255,0.6) !important; background: rgba(255,255,255,0.06); }
.nav-phone-short { display: none; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  width: 24px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}

/* ============ HERO ============ */

.hero {
  position: relative;
  background: var(--asphalt);
  color: var(--on-dark);
  overflow: hidden;
  isolation: isolate;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 60% center;
}
.hero-media::after {
  /* Asphalt gradient: dark on the left where the headline sits, photo breathes right */
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18,20,24,0.94) 0%, rgba(18,20,24,0.86) 34%, rgba(18,20,24,0.42) 68%, rgba(18,20,24,0.30) 100%),
    linear-gradient(0deg, rgba(18,20,24,0.85) 0%, rgba(18,20,24,0) 40%);
}
.hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(72px, 11vw, 150px) var(--gutter) clamp(56px, 8vw, 104px);
}
.hero-content { max-width: 720px; }
.hero .display-xxl { color: #fff; }
.hero .display-xxl .hl { color: var(--orange); }
.hero .subhead { color: #D9D5CC; margin-top: var(--s5); max-width: 600px; }

.cta-row { display: flex; flex-wrap: wrap; gap: var(--s3); margin-top: var(--s6); }

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s3) var(--s4);
  margin-top: var(--s7);
  font-size: 14px;
  color: var(--on-dark-muted);
  font-family: var(--font-mono);
  letter-spacing: -0.01em;
}
.trust-strip b { color: #fff; font-weight: 600; }
.trust-strip .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gunmetal); }

/* ============ STATS (ledger band) ============ */

.stats {
  background: var(--asphalt-2);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}
.stats-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--s7) var(--gutter);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s5);
}
.stat { display: flex; flex-direction: column; gap: var(--s2); }
.stat-num {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1;
  color: var(--amber);
  letter-spacing: -0.02em;
}
.stat-label { font-size: 13.5px; line-height: 1.4; color: var(--on-dark-muted); }

/* ============ HOW IT WORKS ============ */

.approach-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: var(--s5);
  margin-top: var(--s7);
}
.spotlight {
  background: var(--denim);
  color: #fff;
  border-color: var(--denim-deep);
}
.spotlight .headline { color: #fff; }
.spotlight .body-copy { color: rgba(255,255,255,0.82); }
.spotlight .body-copy b { color: #fff; }
.work-metric-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: var(--s3);
}
.spotlight .headline { margin-bottom: var(--s4); }
.spotlight .body-copy + .body-copy { margin-top: var(--s3); }
.founder-photo {
  width: 76px; height: 76px;
  border-radius: var(--r-sm);
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.25);
  margin-bottom: var(--s4);
}

.step-list { display: flex; flex-direction: column; gap: var(--s4); }
.step-card {
  display: flex;
  gap: var(--s5);
  align-items: flex-start;
  padding: var(--s5) var(--s6);
}
.step-n {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 22px;
  color: var(--orange);
  flex: none;
  padding-top: 2px;
}
.step-card .headline { margin-bottom: var(--s2); }

/* ============ AI AUTOMATION — the main offer ============ */

.ai-hero { position: relative; overflow: hidden; }
.ai-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--on-action);
  background: var(--orange);
  padding: 5px 11px;
  border-radius: var(--r-xs);
  margin-bottom: var(--s5);
}
.ai-lead {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s8);
  align-items: center;
}
.ai-copy .display-xl { margin-bottom: var(--s5); }
.ai-copy .body-lg { color: rgba(255,255,255,0.78); }
.ai-copy .body-lg + .body-lg { margin-top: var(--s4); }
.ai-name { color: var(--orange); font-weight: 700; }

/* Phone / dispatch mock — the "Hermes at work" panel */
.ai-panel {
  background: var(--asphalt-2);
  border: 1px solid var(--border-dark);
  border-radius: var(--r-lg);
  padding: var(--s5);
  box-shadow: var(--shadow-lg);
}
.ai-panel-head {
  display: flex;
  align-items: center;
  gap: var(--s3);
  padding-bottom: var(--s4);
  margin-bottom: var(--s4);
  border-bottom: 1px solid var(--border-dark);
}
.ai-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 4px rgba(46,125,70,0.18); }
.ai-panel-head b { color: #fff; font-family: var(--font-display); font-size: 15px; }
.ai-panel-head span { font-family: var(--font-mono); font-size: 12px; color: var(--on-dark-muted); margin-left: auto; }
.ai-thread { display: flex; flex-direction: column; gap: var(--s3); }
.bubble {
  max-width: 82%;
  padding: 10px 14px;
  border-radius: var(--r-md);
  font-size: 14.5px;
  line-height: 1.4;
}
.bubble-them {
  align-self: flex-start;
  background: #2C3038;
  color: #E7E4DC;
  border-bottom-left-radius: 3px;
}
.bubble-us {
  align-self: flex-end;
  background: var(--orange);
  color: var(--on-action);
  border-bottom-right-radius: 3px;
  font-weight: 500;
}
.bubble-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--on-dark-muted);
  align-self: center;
  margin: var(--s1) 0;
  letter-spacing: 0.03em;
}
.ai-caps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s3);
  margin-top: var(--s7);
}
.ai-cap {
  display: flex;
  gap: var(--s3);
  align-items: flex-start;
  padding: var(--s4);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-dark);
  border-radius: var(--r-md);
}
.ai-cap .tick { color: var(--amber); font-weight: 800; flex: none; font-family: var(--font-mono); }
.ai-cap b { color: #fff; font-weight: 700; display: block; margin-bottom: 2px; font-family: var(--font-display); font-size: 15px; }
.ai-cap span { color: var(--on-dark-muted); font-size: 13.5px; line-height: 1.4; }

/* Guardrails callout — the honesty box on dark */
.guardrail {
  margin-top: var(--s6);
  display: flex;
  gap: var(--s4);
  align-items: flex-start;
  padding: var(--s5);
  background: rgba(242,177,10,0.06);
  border: 1px solid var(--border-dark);
  border-left: 3px solid var(--amber);
  border-radius: var(--r-sm);
}
.guardrail .g-label {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--amber);
  flex: none;
  padding-top: 2px;
}
.guardrail p { color: var(--on-dark-muted); font-size: 14.5px; line-height: 1.55; margin: 0; }
.guardrail p b { color: #fff; font-weight: 600; }

/* Pricing flow note + add-on emphasis */
.pricing-flow {
  margin-top: var(--s6);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--ink-subtle);
  text-align: center;
}
.pricing-card.addon { border-style: dashed; }
.pricing-card.addon .price { color: var(--denim); }

/* ============ SERVICES ============ */

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s5);
  margin-top: var(--s7);
}
.service-card { display: flex; flex-direction: column; gap: var(--s3); }
.service-card.featured {
  border-color: var(--orange);
  box-shadow: 0 0 0 1px var(--orange), var(--shadow-md);
}
.service-icon {
  width: 46px; height: 46px;
  display: grid;
  place-items: center;
  background: var(--asphalt);
  color: var(--amber);
  border-radius: var(--r-sm);
  font-size: 22px;
  margin-bottom: var(--s2);
}
.service-card.featured .service-icon { background: var(--orange); color: var(--on-action); }
.service-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange);
  margin-top: auto;
}

/* ============ PORTFOLIO / PROOF ============ */

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s5);
  margin-top: var(--s7);
}
.work-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .16s ease, box-shadow .16s ease;
}
.work-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.work-shot {
  position: relative;
  aspect-ratio: 1280 / 860;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background: var(--concrete-2);
}
.work-shot img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.work-live {
  position: absolute;
  top: var(--s3); right: var(--s3);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--on-action);
  background: var(--amber);
  padding: 3px 8px;
  border-radius: var(--r-xs);
}
.work-body { padding: var(--s5); }
.work-body .headline { margin-bottom: 4px; }
.work-meta { font-family: var(--font-mono); font-size: 12.5px; color: var(--ink-subtle); letter-spacing: 0.02em; }
.work-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: var(--s3);
  font-weight: 600; font-size: 14px;
  color: var(--denim);
}
.work-link:hover { color: var(--orange); }
.work-note { margin-top: var(--s6); text-align: center; }

/* ============ COMPARE (rent vs own) ============ */

.compare-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s5);
  margin-top: var(--s7);
}
.compare-card { padding: var(--s6); }
.compare-tag {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--s3);
}
.compare-tag-bad { color: var(--danger); }
.compare-tag-good { color: var(--success); }
.compare-card .headline { margin-bottom: var(--s4); }
.compare-list { list-style: none; display: flex; flex-direction: column; gap: var(--s3); }
.compare-list li { position: relative; padding-left: 28px; font-size: 15px; line-height: 1.45; color: var(--ink-muted); }
.compare-list li::before {
  position: absolute; left: 0; top: 0;
  font-family: var(--font-mono); font-weight: 700;
}
.compare-list-bad li::before { content: "✕"; color: var(--danger); }
.compare-list-good li::before { content: "✓"; color: var(--success); }
.compare-card.good { border-color: var(--denim); box-shadow: 0 0 0 1px var(--denim), var(--shadow-sm); }

/* ============ OWNERSHIP ============ */

.ownership-list {
  list-style: none;
  margin-top: var(--s7);
  display: grid;
  gap: var(--s4);
  max-width: 820px;
}
.ownership-list li {
  display: flex;
  gap: var(--s4);
  align-items: flex-start;
  padding: var(--s5);
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--orange);
  border-radius: var(--r-sm);
}
.ownership-list .check {
  color: var(--success);
  font-weight: 800;
  font-family: var(--font-mono);
  flex: none;
  font-size: 18px;
}
.ownership-list b { color: var(--ink); }
.ownership-list div { font-size: 15.5px; line-height: 1.5; color: var(--ink-muted); }

/* ============ PRICING ============ */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s5);
  margin-top: var(--s7);
  align-items: start;
}
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--s6);
  display: flex;
  flex-direction: column;
  gap: var(--s3);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.pricing-card.featured {
  border-color: var(--orange);
  box-shadow: 0 0 0 2px var(--orange), var(--shadow-md);
  background: var(--paper);
}
.pricing-card .tag {
  position: absolute;
  top: -12px; left: var(--s6);
  background: var(--orange);
  color: var(--on-action);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--r-xs);
}
.price {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 40px;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
}
.price span { font-size: 15px; font-weight: 500; color: var(--ink-subtle); letter-spacing: 0; }
.price-note { font-size: 13.5px; color: var(--ink-subtle); margin-top: -2px; }
.feature-list { list-style: none; display: flex; flex-direction: column; gap: var(--s3); margin: var(--s4) 0; }
.feature-list li { position: relative; padding-left: 26px; font-size: 14.5px; line-height: 1.45; color: var(--ink-muted); }
.feature-list li::before { content: "✓"; position: absolute; left: 0; color: var(--orange); font-family: var(--font-mono); font-weight: 700; }
.price-foot { font-size: 12.5px; line-height: 1.45; color: var(--ink-subtle); margin-top: var(--s2); }
.pricing-card .btn { margin-top: auto; }
.pricing-footnote { margin-top: var(--s5); font-size: 14px; color: var(--ink-subtle); text-align: center; }

.objection {
  margin-top: var(--s7);
  background: var(--asphalt);
  color: var(--on-dark);
  border-radius: var(--r-md);
  padding: var(--s7);
  border: 1px solid var(--border-dark);
}
.objection .headline { color: #fff; margin-bottom: var(--s4); font-size: clamp(20px,2vw,26px); }
.objection .body-copy { color: rgba(255,255,255,0.78); }
.objection .body-copy + .body-copy { margin-top: var(--s3); }

/* ============ GUARANTEES ============ */

.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s5);
  margin-top: var(--s7);
}
.guarantee-card { display: flex; flex-direction: column; gap: var(--s3); }
.guarantee-n {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  background: var(--asphalt);
  color: var(--amber);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 18px;
  border-radius: var(--r-sm);
  margin-bottom: var(--s2);
}

/* ============ AUDIT FORM ============ */

.audit-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s8);
  background: var(--asphalt);
  color: var(--on-dark);
  border-radius: var(--r-lg);
  padding: clamp(28px, 4vw, 56px);
  border: 1px solid var(--border-dark);
  align-items: start;
}
.audit-panel .display-lg { color: #fff; margin: var(--s3) 0 var(--s4); }
.audit-panel .body-lg { color: rgba(255,255,255,0.8); }
.audit-points { list-style: none; margin-top: var(--s5); display: flex; flex-direction: column; gap: var(--s3); }
.audit-points li { position: relative; padding-left: 28px; font-size: 15px; color: rgba(255,255,255,0.85); line-height: 1.45; }
.audit-points li::before { content: "→"; position: absolute; left: 0; color: var(--orange); font-weight: 700; }

.audit-form {
  background: var(--surface);
  border-radius: var(--r-md);
  padding: var(--s6);
  display: flex;
  flex-direction: column;
  gap: var(--s4);
  box-shadow: var(--shadow-lg);
}
.audit-form label { display: flex; flex-direction: column; gap: 6px; }
.audit-form label > span {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.audit-form em { font-style: normal; font-family: var(--font-mono); font-size: 11px; color: var(--ink-subtle); text-transform: uppercase; letter-spacing: 0.04em; }
.audit-form .req { color: var(--orange); }
.audit-form input,
.audit-form select,
.audit-form textarea {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  background: var(--concrete-2);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 11px 13px;
  width: 100%;
}
.audit-form input:focus,
.audit-form select:focus,
.audit-form textarea:focus {
  outline: none;
  border-color: var(--denim);
  box-shadow: 0 0 0 3px rgba(53,87,110,0.18);
  background: #fff;
}
.audit-form textarea { resize: vertical; }
.field-hint { color: var(--ink-subtle); text-transform: none !important; letter-spacing: 0 !important; font-family: var(--font-body) !important; font-size: 12.5px !important; }
.form-micro { font-size: 12.5px; color: var(--ink-subtle); text-align: center; }
.form-alt { font-size: 13.5px; color: var(--ink-muted); text-align: center; }
.form-alt a { color: var(--denim); font-weight: 600; }
.form-success { color: var(--success); font-weight: 600; font-size: 15px; text-align: center; }
.form-error { color: var(--danger); font-weight: 600; font-size: 14px; text-align: center; }

/* honeypot */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ============ FAQ ============ */

.faq-list { margin-top: var(--s6); border-top: 1px solid var(--border); }
.faq-row { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--ink);
  padding: var(--s5) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s4);
}
.faq-icon {
  font-family: var(--font-mono);
  font-weight: 400;
  color: var(--orange);
  font-size: 24px;
  flex: none;
  transition: transform .2s ease;
}
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .28s ease; }
.faq-a p { padding: 0 0 var(--s5); color: var(--ink-muted); font-size: 15.5px; line-height: 1.6; max-width: 720px; }

/* ============ FINAL CTA ============ */

.final-cta {
  background: var(--asphalt);
  color: #fff;
  text-align: center;
  padding: var(--sect) var(--gutter);
  position: relative;
  overflow: hidden;
}
.final-cta .display-xl { color: #fff; max-width: 760px; margin: 0 auto; }
.final-cta .cta-row { justify-content: center; }
.final-cta .sub { color: var(--on-dark-muted); margin-top: var(--s4); font-size: 17px; }

/* ============ FOOTER ============ */

.footer {
  background: #101216;
  color: var(--on-dark-muted);
  padding: var(--s8) var(--gutter) var(--s6);
  border-top: 1px solid var(--border-dark);
}
.footer-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: var(--s6);
}
.footer-brand .wordmark { margin-bottom: var(--s3); }
.footer-brand p { font-size: 14px; line-height: 1.6; margin-top: var(--s2); }
.footer-brand a { color: var(--on-dark-muted); }
.footer-brand a:hover { color: var(--orange); }
.footer h4 {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: var(--s4);
}
.footer > .footer-grid a {
  display: block;
  font-size: 14px;
  color: var(--on-dark-muted);
  padding: 4px 0;
}
.footer > .footer-grid a:hover { color: #fff; }
.footer-bottom {
  max-width: var(--container);
  margin: var(--s7) auto 0;
  padding-top: var(--s5);
  border-top: 1px solid var(--border-dark);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--s3);
  font-size: 13px;
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
}

/* ============ SCROLL REVEAL ============ */

.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.js .reveal.in { opacity: 1; transform: none; }
.js .reveal.d-1 { transition-delay: .08s; }
.js .reveal.d-2 { transition-delay: .16s; }
.js .reveal.d-3 { transition-delay: .24s; }
.js .reveal.d-4 { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
}

/* ============ RESPONSIVE ============ */

@media (max-width: 980px) {
  .ai-lead { grid-template-columns: 1fr; gap: var(--s6); }
  .ai-caps { margin-top: var(--s6); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: var(--s6) var(--s5); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .guarantee-grid { grid-template-columns: 1fr; }
  .approach-grid { grid-template-columns: 1fr; }
  .audit-panel { grid-template-columns: 1fr; gap: var(--s6); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--s6); }
}

/* Collapse the primary nav to a hamburger before the links crowd the wordmark */
@media (max-width: 900px) {
  .nav-links {
    position: absolute;
    top: 66px; left: 0; right: 0;
    background: var(--asphalt);
    border-bottom: 1px solid var(--border-dark);
    flex-direction: column;
    gap: 0;
    padding: var(--s3) var(--gutter) var(--s5);
    margin: 0;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 0; border-bottom: 1px solid var(--border-dark); font-size: 16px; }
  .hamburger { display: flex; }
  .nav-hide-sm { display: none; }
}

@media (max-width: 760px) {
  .services-grid,
  .work-grid,
  .compare-grid { grid-template-columns: 1fr; }
  .hero-media img { object-position: 68% center; }
  .hero-content { max-width: 100%; }
  .cta-row .btn { flex: 1 1 auto; }
  .nav-phone-full { display: none; }
  .nav-phone-short { display: inline; }
}

@media (max-width: 560px) {
  /* Smallest screens: keep only Free audit + menu in the bar so nothing clips */
  .nav-phone { display: none; }
  .nav-inner { gap: var(--s2); }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .ai-caps { grid-template-columns: 1fr; }
  .section { padding-left: var(--s5); padding-right: var(--s5); }
}
