/* ============================================================
   Pacific Peak Mechanical — Industrial × PNW
   ============================================================ */

:root {
  /* Brand */
  --navy: #1A3A5C;
  --navy-deep: #102744;
  --navy-ink: #0A1A2E;
  --evergreen: #1F3A2E;
  --evergreen-deep: #122119;
  --evergreen-soft: #9DBA9F;
  --moss: #4A6B4F;

  /* Paper / Ink */
  --paper: #F2EEE5;
  --paper-2: #E8E2D4;
  --paper-3: #DDD5C2;
  --ink: #14110D;
  --ink-2: #2A2620;
  --ink-3: #6B6358;
  --ink-4: #9A9285;

  /* Signal */
  --signal: #C8551E;
  --signal-deep: #A64517;
  --warn: #C8A24A;

  /* Surfaces */
  --bg: var(--paper);
  --surface: #FBF8F0;
  --surface-2: var(--paper-2);
  --border: #C9C0AB;
  --border-2: #B5AA92;
  --text: var(--ink);
  --muted: var(--ink-3);

  /* Geometry */
  --max: 1320px;
  --gutter: clamp(20px, 4vw, 56px);

  /* Type */
  --sans: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --serif: "Fraunces", "Tiempos", Georgia, serif;
  --mono: "JetBrains Mono", "IBM Plex Mono", "SF Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01", "cv11";
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
section[id] { scroll-margin-top: 80px; }

/* Layout primitives */
.wrap { max-width: var(--max); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
.section { padding: clamp(80px, 10vw, 160px) 0; position: relative; }
.section-tight { padding: clamp(48px, 6vw, 80px) 0; }

/* ============================================================
   Type
   ============================================================ */
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: "";
  width: 18px; height: 1px; background: var(--border-2);
}
.eyebrow-light { color: var(--evergreen-soft); }
.eyebrow-light::before { background: rgba(157, 186, 159, 0.4); }
.eyebrow-signal { color: var(--signal); }

.h-display {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(44px, 7.2vw, 108px);
  line-height: 0.94;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.h-display em {
  font-style: italic;
  font-weight: 300;
  color: var(--evergreen);
}

.h-section {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 4.4vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.h-section em { font-style: italic; color: var(--evergreen); font-weight: 300; }

.h-section-light { color: var(--paper); }
.h-section-light em { color: var(--evergreen-soft); }
.h-display-light { color: var(--paper); }
.h-display-light em { color: var(--evergreen-soft); }

.h-card {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.lede {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.5;
  color: var(--ink-2);
  max-width: 60ch;
}

.mono {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--muted);
}
.mono-sm {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.mono-xs {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-4);
}
.mono-signal { color: var(--signal); }
.mono-moss { color: var(--evergreen-soft); }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.01em;
  border: 1px solid currentColor;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease, border-color 160ms ease;
  white-space: nowrap;
}
.btn .arrow { transition: transform 200ms ease; }
.btn:hover .arrow { transform: translateX(4px); }
.btn-sm { padding: 10px 16px; font-size: 13px; }

.btn-primary { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn-primary:hover { background: var(--signal); border-color: var(--signal); color: #fff; }
.btn-signal { background: var(--signal); color: #fff; border-color: var(--signal); }
.btn-signal:hover { background: var(--signal-deep); border-color: var(--signal-deep); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--border-2); }
.btn-ghost:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn-ghost-light { background: transparent; color: var(--paper); border-color: rgba(245, 238, 229, 0.35); }
.btn-ghost-light:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.btn-light { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.btn-light:hover { background: var(--signal); color: #fff; border-color: var(--signal); }

/* ============================================================
   Spec frame
   ============================================================ */
.spec-frame {
  position: relative;
  border: 1px solid var(--border);
  background: var(--surface);
}
.spec-frame .corner-tl,
.spec-frame .corner-tr,
.spec-frame .corner-bl,
.spec-frame .corner-br {
  position: absolute; width: 10px; height: 10px;
  pointer-events: none;
}
.spec-frame .corner-tl { top: -1px; left: -1px; border-top: 2px solid var(--ink); border-left: 2px solid var(--ink); }
.spec-frame .corner-tr { top: -1px; right: -1px; border-top: 2px solid var(--ink); border-right: 2px solid var(--ink); }
.spec-frame .corner-bl { bottom: -1px; left: -1px; border-bottom: 2px solid var(--ink); border-left: 2px solid var(--ink); }
.spec-frame .corner-br { bottom: -1px; right: -1px; border-bottom: 2px solid var(--ink); border-right: 2px solid var(--ink); }

.spec-row {
  display: flex; justify-content: space-between; gap: 12px;
  padding: 10px 0;
  border-top: 1px solid var(--border);
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.spec-row .k { color: var(--muted); }
.spec-row .v { color: var(--ink); font-weight: 500; text-align: right; }
.spec-row.last { border-bottom: 1px solid var(--border); }

.spec-row-dark { border-top-color: #2A2620; }
.spec-row-dark .k { color: var(--ink-4); }
.spec-row-dark .v { color: var(--paper); }
.spec-row-dark.last { border-bottom: 1px solid #2A2620; }

/* ============================================================
   Nav
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 220ms ease, border-color 220ms ease;
}
.nav.scrolled {
  background: rgba(242, 238, 229, 0.92);
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  border-bottom-color: var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0;
  gap: 24px;
}
.nav-logo img { height: 60px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  font-size: 13px; font-weight: 500; color: var(--ink-2);
  letter-spacing: -0.005em;
  transition: color 160ms ease;
}
.nav-links a:hover { color: var(--signal); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-phone {
  font-family: var(--mono); font-size: 12px; color: var(--ink);
  letter-spacing: 0.04em;
}
.nav-phone:hover { color: var(--signal); }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative; overflow: hidden;
  background: var(--paper);
  padding: 40px 0 0;
}
.topo-abs {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-inner {
  position: relative; z-index: 1;
  padding-top: clamp(40px, 6vw, 80px);
}
.hero-strip {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--border);
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted);
  flex-wrap: wrap; gap: 10px;
}
.hero-strip .strip-center { color: var(--ink); }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: clamp(28px, 4vw, 64px);
  align-items: end;
  padding-top: clamp(40px, 6vw, 80px);
}
.hero-headline { margin-top: 24px; }
.hero-lede { margin-top: 32px; max-width: 52ch; }
.hero-actions {
  display: flex; gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.hero-spec { padding: 24px; background: var(--surface); }
.hero-spec-top {
  display: flex; justify-content: space-between; align-items: center;
}
.hero-spec-title {
  margin-top: 18px;
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.15;
  color: var(--ink);
}
.hero-spec-list { margin-top: 20px; }

.mountain-footer {
  margin-top: clamp(60px, 8vw, 100px);
  position: relative;
}
.mountain-svg { width: 100%; display: block; }
.peak-labels {
  position: absolute; bottom: 16px; left: 0; right: 0;
  padding: 0 var(--gutter);
  display: flex; justify-content: space-between;
  font-family: var(--mono); font-size: 10px;
  color: var(--ink-4);
  letter-spacing: 0.1em; text-transform: uppercase;
}

/* ============================================================
   Trust strip
   ============================================================ */
.trust {
  background: var(--ink);
  color: var(--paper);
  padding: 28px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.trust-item {
  display: flex; flex-direction: column; gap: 4px;
  padding-left: 24px;
  border-left: 1px solid #2A2620;
}
.trust-item:first-child { padding-left: 0; border-left: none; }
.trust-item .k {
  font-family: var(--mono); font-size: 10px;
  color: var(--ink-4);
  letter-spacing: 0.12em; text-transform: uppercase;
}
.trust-item .v {
  font-size: 16px; font-weight: 500; color: var(--paper);
  letter-spacing: -0.01em;
}

/* ============================================================
   Estimator
   ============================================================ */
.estimator { background: var(--paper-2); position: relative; }
.estimator-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: start;
}
.estimator-intro { position: sticky; top: 100px; }
.estimator-intro .heading { margin-top: 20px; }
.estimator-intro .copy {
  margin-top: 20px; color: var(--ink-2); font-size: 16px; line-height: 1.55;
}
.estimator-intro .tag { margin-top: 28px; display: block; }
.estimator-panel {
  padding: clamp(24px, 3vw, 40px);
  background: var(--surface);
}
.estimator-cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
}
.est-group-head {
  display: flex; align-items: baseline; gap: 14px;
  margin-bottom: 16px;
}
.est-group-num {
  font-family: var(--mono); font-size: 11px;
  color: var(--signal);
  letter-spacing: 0.12em;
}
.est-group-label {
  font-family: var(--sans); font-size: 15px; font-weight: 600;
}
.est-options { display: grid; gap: 6px; }
.est-option {
  text-align: left;
  padding: 12px 14px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--ink);
  display: flex; justify-content: space-between; align-items: center;
  transition: all 140ms ease;
  cursor: pointer;
}
.est-option .label {
  display: flex; flex-direction: column; gap: 2px;
}
.est-option .label-top { font-size: 14px; font-weight: 500; }
.est-option .label-sub {
  font-size: 11px; opacity: 0.7;
  font-family: var(--mono); letter-spacing: 0.04em;
}
.est-option .dot {
  font-family: var(--mono); font-size: 11px; opacity: 0.4;
}
.est-option.active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}
.est-option.active .dot { opacity: 1; }
.est-option:hover:not(.active) { border-color: var(--ink); }

.estimator-result {
  margin-top: 36px;
  padding: 28px;
  background: var(--ink);
  color: var(--paper);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 20px;
}
.estimator-result .result-label {
  color: var(--ink-4);
  font-family: var(--mono); font-size: 12px;
  letter-spacing: 0.04em;
}
.estimator-result .result-range {
  font-family: var(--serif);
  font-size: 44px;
  margin-top: 8px;
  letter-spacing: -0.02em;
}
.estimator-result .result-note {
  font-size: 12px;
  color: var(--ink-4);
  margin-top: 6px;
  font-family: var(--mono);
}

/* ============================================================
   Projects (before/after)
   ============================================================ */
.projects-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: end;
  margin-bottom: 56px;
}
.projects-head .copy {
  color: var(--ink-2); font-size: 16px; line-height: 1.55;
  max-width: 44ch; margin-left: auto;
}
.projects-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(24px, 3vw, 40px);
  align-items: start;
}

.ba {
  position: relative; width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  border: 1px solid var(--ink);
  background: var(--ink);
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
  touch-action: none;
}
.ba img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.ba-before-wrap {
  position: absolute; inset: 0;
  pointer-events: none;
  clip-path: inset(0 50% 0 0);
  -webkit-clip-path: inset(0 50% 0 0);
  will-change: clip-path;
}
.ba-before-wrap img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.ba-label {
  position: absolute; top: 16px;
  padding: 6px 10px;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.12em; text-transform: uppercase;
  z-index: 2;
}
.ba-label-before {
  left: 16px;
  background: var(--ink);
  color: var(--paper);
  border: 1px solid var(--signal);
}
.ba-label-after {
  right: 16px;
  background: var(--signal);
  color: #fff;
}
.ba-handle {
  position: absolute; top: 0; bottom: 0;
  width: 2px;
  background: var(--paper);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.3);
  pointer-events: none;
  transform: translateX(-1px);
}
.ba-handle-knob {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 48px; height: 48px;
  background: var(--paper);
  border: 2px solid var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: 14px; color: var(--ink);
  letter-spacing: -0.05em;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}
.ba-strip {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 10px 16px;
  background: rgba(20, 17, 13, 0.85);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: var(--paper);
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.1em; text-transform: uppercase;
  z-index: 2;
}
.ba-strip .strip-hint { color: var(--evergreen-soft); }

.project-spec {
  padding: clamp(24px, 3vw, 36px);
  background: var(--surface);
}
.project-spec-head {
  display: flex; justify-content: space-between; align-items: center;
}
.project-spec-head .status { color: var(--signal); }
.project-spec h3 {
  font-family: var(--serif);
  font-size: 32px;
  line-height: 1.1;
  margin-top: 16px;
  letter-spacing: -0.02em;
}
.project-spec p {
  margin-top: 16px;
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.55;
}
.project-spec-list { margin-top: 24px; }
.project-spec-notes {
  margin-top: 24px;
  padding: 16px;
  background: var(--paper-2);
  border-left: 3px solid var(--signal);
}
.project-spec-notes p {
  margin-top: 8px;
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.55;
  font-style: italic;
}

.projects-footer {
  margin-top: 40px;
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  flex-wrap: wrap; gap: 12px;
}
.projects-footer a {
  font-family: var(--mono); font-size: 12px;
  letter-spacing: 0.06em; text-transform: uppercase;
  text-decoration: underline;
}

/* ============================================================
   Services
   ============================================================ */
.services-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: end;
  margin-bottom: 56px;
}
.services-head .copy {
  color: var(--ink-2); font-size: 16px; line-height: 1.55;
  max-width: 44ch; margin-left: auto;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--border);
}
.service-card {
  padding: 32px 28px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: 360px; position: relative;
  transition: background 200ms ease;
}
.service-card:hover { background: var(--paper-2); }
.service-card-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 36px;
}
.service-card h3 { margin-bottom: 14px; }
.service-card p {
  font-size: 14px; color: var(--ink-2); line-height: 1.55;
}
.service-card-foot {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
}

/* ============================================================
   Brand authority (dark)
   ============================================================ */
.brand-authority {
  background: var(--navy-ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.brand-authority .wrap { position: relative; z-index: 1; }
.brand-authority-head {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 56px;
  flex-wrap: wrap; gap: 16px;
}
.brand-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.brand-card {
  border: 1px solid var(--navy);
  padding: clamp(24px, 3vw, 40px);
  background: rgba(26, 58, 92, 0.18);
  position: relative;
}
.brand-card .brand-name {
  font-family: var(--serif);
  font-size: 36px;
  margin-top: 12px;
  letter-spacing: -0.02em;
  color: var(--paper);
}
.brand-card .brand-body {
  margin-top: 16px;
  color: #C9D5DF;
  font-size: 15px;
  line-height: 1.55;
}
.brand-card .brand-specs { margin-top: 28px; }
.brand-card .brand-specs .spec-row {
  border-top-color: var(--navy);
}
.brand-card .brand-specs .spec-row .k { color: #7A8FA6; }
.brand-card .brand-specs .spec-row .v { color: var(--paper); }
.brand-logo-inline {
  height: 42px; width: auto;
  margin-top: 24px;
  opacity: 0.95;
  filter: brightness(0) invert(1);
}

/* ============================================================
   Commercial
   ============================================================ */
.commercial {
  background: var(--evergreen-deep);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.commercial .wrap { position: relative; z-index: 1; }
.commercial-head {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: start;
  margin-bottom: 64px;
}
.commercial .copy {
  margin-top: 24px;
  color: #C5CFC0;
  font-size: 17px;
  line-height: 1.55;
  max-width: 52ch;
}
.commercial-actions {
  display: flex; gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.commercial-benefits {
  border: 1px solid #2A4537;
  padding: clamp(24px, 3vw, 36px);
  background: rgba(20, 40, 30, 0.5);
}
.commercial-benefits h3 {
  font-family: var(--serif);
  font-size: 24px;
  margin-top: 12px;
  color: var(--paper);
}
.commercial-benefit {
  padding: 16px 0;
  border-top: 1px solid #2A4537;
}
.commercial-benefit .k {
  font-family: var(--mono); font-size: 11px;
  color: var(--evergreen-soft);
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 4px;
  display: block;
}
.commercial-benefit .v {
  font-size: 14px; color: #D8DFD3; line-height: 1.5;
}
.commercial-services {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid #2A4537;
  border-left: 1px solid #2A4537;
}
.commercial-service {
  padding: 28px 22px;
  border-right: 1px solid #2A4537;
  border-bottom: 1px solid #2A4537;
  display: flex; flex-direction: column; gap: 14px;
  min-height: 220px;
}
.commercial-service h4 {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 600;
  color: var(--paper);
  letter-spacing: -0.01em;
}
.commercial-service p {
  font-size: 13px; color: #B7C0B0; line-height: 1.5;
}

/* ============================================================
   Peak Care
   ============================================================ */
.peakcare-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: end;
  margin-bottom: 56px;
}
.peakcare-head .copy {
  color: var(--ink-2); font-size: 16px; line-height: 1.55;
  max-width: 44ch; margin-left: auto;
}
.peakcare-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--ink);
}
.plan {
  background: var(--surface);
  color: var(--ink);
  padding: 32px 28px;
  display: flex; flex-direction: column;
  position: relative;
  border-right: 1px solid var(--border-2);
}
.plan:last-child { border-right: none; }
.plan.featured {
  background: var(--ink);
  color: var(--paper);
}
.plan-flag {
  position: absolute; top: -1px; right: -1px;
  background: var(--signal);
  color: #fff;
  padding: 6px 12px;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.12em; text-transform: uppercase;
}
.plan-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 20px;
}
.plan-num {
  font-family: var(--mono); font-size: 12px;
  color: var(--muted); letter-spacing: 0.04em;
}
.plan.featured .plan-num { color: var(--evergreen-soft); }
.plan-name {
  font-family: var(--serif);
  font-size: 38px;
  margin-top: 8px;
  letter-spacing: -0.02em;
}
.plan-price {
  display: flex; align-items: baseline; gap: 4px;
  margin-bottom: 6px;
}
.plan-price-num {
  font-family: var(--serif);
  font-size: 48px;
  letter-spacing: -0.03em;
}
.plan-price-unit {
  font-family: var(--mono); font-size: 14px; opacity: 0.7;
}
.plan-sub {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--muted);
}
.plan.featured .plan-sub { color: var(--evergreen-soft); }
.plan-divider {
  height: 1px;
  background: var(--border);
  margin: 24px 0;
}
.plan.featured .plan-divider { background: rgba(255, 255, 255, 0.15); }
.plan-features {
  list-style: none;
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 28px;
  flex: 1;
}
.plan-features li {
  font-size: 13px; line-height: 1.5;
  color: var(--ink-2);
  display: flex; gap: 10px;
}
.plan.featured .plan-features li { color: #D5DCD0; }
.plan-features li::before {
  content: "+";
  color: var(--signal);
  font-family: var(--mono);
  flex-shrink: 0;
}
.plan.featured .plan-features li::before { color: var(--evergreen-soft); }
.plan .btn { width: 100%; justify-content: space-between; }

.peakcare-footer {
  margin-top: 24px;
  padding: 20px 24px;
  background: var(--paper-2);
  border: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 14px;
}
.peakcare-footer .text { font-size: 14px; color: var(--ink-2); }
.peakcare-footer .badge {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--signal);
  margin-right: 12px;
}
.peakcare-footer a {
  font-size: 13px;
  font-family: var(--mono);
  letter-spacing: 0.05em;
  text-decoration: underline;
}

/* ============================================================
   Why
   ============================================================ */
.why { background: var(--paper-2); }
.why-head { max-width: 880px; margin-bottom: 56px; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 2px solid var(--ink);
}
.why-item {
  padding: 36px 32px 36px 0;
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 16px;
}
.why-item:last-child { border-right: none; }
.why-item + .why-item { padding-left: 32px; }
.why-item-head {
  display: flex; align-items: center; justify-content: space-between;
}
.why-item h3 {
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: -0.015em;
}
.why-item p {
  font-size: 15px; color: var(--ink-2); line-height: 1.55;
}

/* ============================================================
   Process
   ============================================================ */
.process-head { margin-bottom: 56px; max-width: 800px; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.process-step {
  padding: 28px 24px 28px 0;
  border-top: 2px solid var(--ink);
  border-right: 1px dashed var(--border);
  position: relative;
}
.process-step:last-child { border-right: none; }
.process-step + .process-step { padding-left: 24px; }
.process-step h3 {
  font-family: var(--serif);
  font-size: 24px;
  margin-top: 14px;
  line-height: 1.15;
  letter-spacing: -0.015em;
}
.process-step p {
  margin-top: 12px;
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.55;
}

/* ============================================================
   Service area
   ============================================================ */
.area { background: var(--paper-2); }
.area-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: stretch;
}
.area .copy {
  margin-top: 20px;
  color: var(--ink-2); font-size: 16px; line-height: 1.55;
  max-width: 44ch;
}
.cities {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border);
}
.city {
  padding: 12px 14px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px;
  background: var(--surface);
}
.city:nth-child(2n) { border-right: none; }
.city:nth-last-child(-n+2) { border-bottom: none; }
.city .name { font-weight: 500; }
.city .dist {
  font-family: var(--mono); font-size: 11px; color: var(--muted);
}

.map-frame {
  position: relative;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  padding: 16px;
  min-height: 520px;
  display: flex; flex-direction: column;
}
.map-frame-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 4px 8px 12px;
}
.map-canvas {
  flex: 1; min-height: 440px;
  border: 1px solid #2A2620;
  filter: saturate(0.85) contrast(1.02);
}
.map-frame-foot {
  display: flex; justify-content: space-between;
  border-top: 1px solid #2A2620;
  margin-top: 12px;
  padding: 10px 8px 0;
}

.leaflet-container { background: #1F2937 !important; font-family: var(--sans) !important; }
.leaflet-control-zoom a { background: var(--ink) !important; color: var(--paper) !important; border: 1px solid #2A2620 !important; }
.leaflet-control-zoom a:hover { background: var(--signal) !important; }
.leaflet-control-attribution { background: rgba(20,17,13,0.85) !important; color: var(--ink-4) !important; font-family: var(--mono) !important; font-size: 9px !important; }
.leaflet-control-attribution a { color: var(--evergreen-soft) !important; }
.leaflet-tooltip { background: var(--ink) !important; color: var(--paper) !important; border: 1px solid var(--signal) !important; border-radius: 0 !important; box-shadow: none !important; padding: 6px 10px !important; }
.leaflet-tooltip-top:before { border-top-color: var(--signal) !important; }
.ppm-marker { background: transparent !important; border: none !important; }

/* ============================================================
   Reviews
   ============================================================ */
.reviews-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: end;
  margin-bottom: 56px;
}
.reviews-agg {
  margin-left: auto; text-align: right;
}
.reviews-agg-num {
  font-family: var(--serif);
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.03em;
}
.reviews-agg-num span {
  font-size: 24px; color: var(--muted);
}
.reviews-agg-label { margin-top: 6px; display: block; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--border);
}
.review-card {
  padding: 32px 28px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  display: flex; flex-direction: column; gap: 20px;
}
.review-card:nth-child(2n) { border-right: none; }
.review-card:nth-last-child(-n+2) { border-bottom: none; }
.review-stars {
  display: flex; gap: 2px;
  color: var(--signal);
  font-size: 14px;
}
.review-body {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.4;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.review-author {
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid var(--border);
  padding-top: 14px;
  margin-top: auto;
}
.review-name { font-weight: 600; font-size: 14px; }

/* ============================================================
   Insights
   ============================================================ */
.insights-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: end;
  margin-bottom: 56px;
}
.insights-head .copy {
  color: var(--ink-2); font-size: 16px; line-height: 1.55;
  max-width: 44ch; margin-left: auto;
}
.insights-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  border-top: 2px solid var(--ink);
  border-left: 1px solid var(--border);
}
.insight-featured {
  padding: 40px 36px;
  grid-row: span 3;
  min-height: 520px;
  background: var(--paper-2);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 14px;
  transition: background 200ms ease;
  color: inherit;
}
.insight-featured:hover { background: var(--surface); }
.insight-featured .top-row {
  display: flex; justify-content: space-between; align-items: flex-start;
}
.insight-glyph {
  width: 52px; height: 52px;
  border: 1.5px solid var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 26px; font-style: italic;
  flex-shrink: 0;
}
.insight-glyph-sm {
  width: 32px; height: 32px;
  border: 1px solid var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 16px;
  flex-shrink: 0;
}
.insight-featured .meta {
  text-align: right; display: flex; flex-direction: column; gap: 6px;
  white-space: nowrap;
}
.insight-featured .category { color: var(--signal); margin-top: 24px; }
.insight-featured h3 {
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-top: -4px;
}
.insight-featured p {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.6;
  flex: 1;
  max-width: 52ch;
}
.insight-featured .foot {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
}
.insight-compact {
  padding: 28px 26px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  display: flex; flex-direction: column; gap: 14px;
  transition: background 200ms ease;
  color: inherit;
  min-height: 173px;
}
.insight-compact:hover { background: var(--paper-2); }
.insight-compact .top-row {
  display: flex; justify-content: space-between; align-items: center;
}
.insight-compact .top-row .left {
  display: flex; align-items: center; gap: 12px;
}
.insight-compact .category { color: var(--signal); }
.insight-compact h3 {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.22;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.insight-compact p {
  font-size: 13.5px;
  color: var(--ink-2);
  line-height: 1.5;
  flex: 1;
}
.insight-compact .foot {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 10px;
  border-top: 1px solid var(--border);
  color: var(--ink);
  font-size: 13px;
  font-weight: 500;
}
.insights-all {
  margin-top: 32px;
  text-align: center;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--paper-2); }
.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: start;
}
.faq-intro { position: sticky; top: 100px; }
.faq-intro .heading { margin-top: 20px; }
.faq-intro .copy { margin-top: 20px; color: var(--ink-2); font-size: 15px; }
.faq-list { border-top: 1px solid var(--ink); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  text-align: left;
  padding: 22px 0;
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 16px;
  cursor: pointer;
  color: var(--ink);
}
.faq-q-left {
  display: flex; gap: 16px; align-items: flex-start;
}
.faq-num { min-width: 28px; padding-top: 4px; }
.faq-q-text {
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.faq-plus {
  font-family: var(--mono);
  font-size: 18px;
  color: var(--signal);
  padding-top: 4px;
}
.faq-a {
  padding: 0 32px 24px 44px;
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.6;
  display: none;
}
.faq-item.open .faq-a { display: block; }

/* ============================================================
   Final CTA
   ============================================================ */
.final-cta {
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.final-cta .wrap {
  position: relative; z-index: 1;
  text-align: center;
}
.final-cta .eyebrow {
  justify-content: center; display: inline-flex;
}
.final-cta .heading { margin-top: 24px; }
.final-cta p {
  margin: 32px auto 0;
  max-width: 56ch;
  font-size: 17px;
  line-height: 1.55;
  color: #C9D5DF;
}
.final-cta .actions {
  display: flex; gap: 14px;
  margin-top: 40px;
  justify-content: center;
  flex-wrap: wrap;
}
.final-cta-foot {
  margin-top: 80px;
  padding-top: 24px;
  border-top: 1px solid #2A2620;
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 20px;
  font-family: var(--mono); font-size: 11px;
  color: var(--ink-4);
  letter-spacing: 0.1em; text-transform: uppercase;
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: var(--navy-ink);
  color: var(--paper);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) repeat(3, minmax(0, 1fr));
  gap: 40px;
}
.footer-brand img {
  height: 60px; width: auto;
}
.footer-brand p {
  margin-top: 20px;
  font-size: 14px;
  color: var(--evergreen-soft);
  line-height: 1.55;
  max-width: 44ch;
}
.footer-creds {
  margin-top: 24px;
  display: flex; flex-direction: column; gap: 8px;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: #7A8FA6;
}
.footer-col h4 {
  font-family: var(--mono); font-size: 12px;
  color: var(--evergreen-soft);
  margin-bottom: 14px;
  letter-spacing: 0.04em;
  font-weight: 400;
  text-transform: uppercase;
}
.footer-col ul {
  list-style: none;
  display: flex; flex-direction: column; gap: 10px;
}
.footer-col a {
  font-size: 13px; color: #C9D5DF;
  transition: color 160ms ease;
}
.footer-col a:hover { color: var(--paper); }
.footer-foot {
  margin-top: 56px;
  padding-top: 20px;
  border-top: 1px solid var(--navy);
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 14px;
  font-family: var(--mono); font-size: 10px;
  color: #7A8FA6;
  letter-spacing: 0.12em; text-transform: uppercase;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .estimator-grid { grid-template-columns: 1fr; }
  .estimator-intro { position: static; }
  .estimator-cols { grid-template-columns: 1fr; }
  .projects-head { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .services-head { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-grid { grid-template-columns: 1fr; }
  .commercial-head { grid-template-columns: 1fr; }
  .commercial-services { grid-template-columns: repeat(2, 1fr); }
  .peakcare-head { grid-template-columns: 1fr; }
  .peakcare-grid { grid-template-columns: 1fr; }
  .plan { border-right: none; border-bottom: 1px solid var(--border-2); }
  .plan:last-child { border-bottom: none; }
  .why-grid { grid-template-columns: 1fr; }
  .why-item { padding: 32px 0 !important; border-right: none; border-bottom: 1px solid var(--border); }
  .why-item:last-child { border-bottom: none; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .area-grid { grid-template-columns: 1fr; }
  .reviews-head { grid-template-columns: 1fr; }
  .reviews-agg { margin-left: 0; text-align: left; }
  .insights-head { grid-template-columns: 1fr; }
  .insights-grid { grid-template-columns: 1fr; }
  .insight-featured { grid-row: auto; min-height: 360px; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-intro { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 880px) {
  .nav-links { display: none; }
  .hero-strip { font-size: 10px; }
}

@media (max-width: 720px) {
  .services-grid { grid-template-columns: 1fr; }
  .commercial-services { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .review-card { border-right: none; }
  .cities { grid-template-columns: 1fr; }
  .city { border-right: none !important; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-spec { padding: 20px; }
  .hero-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Subpage compatibility — keeps pre-redesign markup rendering
   cleanly in the new Industrial × PNW design system.
   ============================================================ */

/* --- Layout aliases --- */
.container { max-width: var(--max); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
.container.nav-inner { padding-top: 16px; padding-bottom: 16px; }

/* --- Page header (used on subpage hero areas) --- */
.page-header {
  padding: clamp(60px, 8vw, 120px) 0 clamp(40px, 5vw, 64px);
  background: var(--paper);
  position: relative;
  border-bottom: 1px solid var(--border);
}
.page-header .crumbs {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 24px;
}
.page-header .crumbs a {
  color: var(--muted);
  text-decoration: none;
  transition: color 160ms ease;
}
.page-header .crumbs a:hover { color: var(--signal); }
.page-header .crumbs .sep { color: var(--border-2); }
.page-header h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 20px;
}
.page-header h1 em { font-style: italic; color: var(--evergreen); font-weight: 300; }
.page-header .lead,
.page-header .lede {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.5;
  color: var(--ink-2);
  max-width: 60ch;
}

/* --- Article hero & body (insights) --- */
.article-header {
  padding: clamp(60px, 8vw, 120px) 0 clamp(32px, 4vw, 56px);
  background: var(--paper);
  border-bottom: 1px solid var(--border);
}
.article-header .crumbs {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex; gap: 10px; align-items: center;
  margin-bottom: 24px;
}
.article-header .crumbs a { color: var(--muted); }
.article-header .crumbs a:hover { color: var(--signal); }
.article-header .crumbs .sep { color: var(--border-2); }
.article-header h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 20px;
  max-width: 24ch;
}
.article-header .lede,
.article-header .lead {
  font-size: clamp(17px, 1.3vw, 19px);
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 60ch;
  margin-bottom: 24px;
}
.article-meta {
  display: flex; gap: 14px; align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.article-meta .dot { color: var(--border-2); }
.article-date { color: var(--ink-2); }

/* Article body prose */
.article-body {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(48px, 6vw, 88px) 0;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-2);
}
.article-body > * + * { margin-top: 1.2em; }
.article-body h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-top: 2.4em;
  margin-bottom: 0.4em;
}
.article-body h2 em { font-style: italic; color: var(--evergreen); }
.article-body h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-top: 1.8em;
  margin-bottom: 0.3em;
}
.article-body h4 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 17px;
  color: var(--ink);
  margin-top: 1.6em;
  margin-bottom: 0.3em;
}
.article-body p { color: var(--ink-2); }
.article-body ul,
.article-body ol {
  padding-left: 24px;
  margin: 1.2em 0;
}
.article-body li {
  margin: 0.5em 0;
  line-height: 1.65;
}
.article-body strong { color: var(--ink); font-weight: 600; }
.article-body a {
  color: var(--signal);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 160ms ease;
}
.article-body a:hover { color: var(--signal-deep); }
.article-body blockquote {
  border-left: 3px solid var(--signal);
  padding: 14px 20px;
  margin: 1.6em 0;
  background: var(--paper-2);
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.5;
  color: var(--ink);
  font-style: italic;
}
.article-body hr {
  border: none;
  height: 1px;
  background: var(--border);
  margin: 2em 0;
}

/* TL;DR callout at article top */
.tldr {
  background: var(--paper-2);
  border-left: 3px solid var(--signal);
  padding: 20px 24px;
  margin: 2em 0;
}
.tldr-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--signal);
  display: block;
  margin-bottom: 6px;
}

/* Callout / aside boxes */
.callout {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 22px 26px;
  margin: 1.8em 0;
}
.callout strong { color: var(--ink); display: block; margin-bottom: 6px; }

/* Related articles at end of an article */
.article-related {
  background: var(--paper-2);
  padding: clamp(48px, 6vw, 80px) 0;
  border-top: 1px solid var(--border);
}
.article-related h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 36px;
}
.article-related h2 em { font-style: italic; color: var(--evergreen); }

/* --- Insight card (used on /insights/ index + at bottom of articles) --- */
.insights-grid,
.all-insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 2px solid var(--ink);
  border-left: 1px solid var(--border);
  margin-top: 24px;
}
.insight-card {
  padding: 28px 26px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background 200ms ease;
  color: inherit;
  text-decoration: none;
}
.insight-card:hover { background: var(--paper-2); }
.insight-hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}
.insight-hero-glyph {
  width: 40px; height: 40px;
  border: 1px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  color: var(--ink);
  flex-shrink: 0;
}
.insight-meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--signal);
  text-align: right;
  display: flex; flex-direction: column; gap: 4px;
}
.insight-date { color: var(--muted); }
.insight-card h3,
.insight-card h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 19px;
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.insight-body {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.55;
  flex: 1;
}
.insight-link {
  padding-top: 10px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
}

/* Insights index page: category chips + empty state */
.insights-index-body {
  padding: clamp(40px, 5vw, 72px) 0 clamp(60px, 7vw, 100px);
}
.insights-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.insights-cat {
  padding: 8px 14px;
  border: 1px solid var(--border);
  background: var(--surface);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-2);
  transition: all 160ms ease;
  cursor: pointer;
}
.insights-cat:hover { border-color: var(--ink); color: var(--ink); }
.insights-cat.active {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.insights-empty {
  padding: 60px 24px;
  text-align: center;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--muted);
  border: 1px dashed var(--border-2);
}

/* --- Care plan detail pages (/care/*/) --- */
.care-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 80px);
  padding: clamp(48px, 6vw, 80px) 0;
  align-items: start;
}
.care-content {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-2);
}
.care-content > * + * { margin-top: 1.2em; }
.care-content h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-top: 2em;
}
.care-content h2 em { font-style: italic; color: var(--evergreen); }
.care-content h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 20px;
  color: var(--ink);
  margin-top: 1.6em;
  margin-bottom: 0.3em;
}
.care-content ul,
.care-content ol {
  padding-left: 24px;
}
.care-content li {
  margin: 0.5em 0;
  line-height: 1.65;
}
.care-content strong { color: var(--ink); font-weight: 600; }
.care-detail {
  margin-top: 16px;
}
.care-detail dt {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 14px;
}
.care-detail dd {
  font-size: 15px;
  color: var(--ink);
  margin-top: 4px;
}

/* Care sidebar (price / CTA card) */
.care-sidebar {
  background: var(--ink);
  color: var(--paper);
  padding: 32px 28px;
  position: sticky;
  top: 100px;
}
.care-sidebar .plan-name {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--evergreen-soft);
  display: block;
  margin-bottom: 8px;
}
.care-sidebar .plan-price {
  font-family: var(--serif);
  font-size: 48px;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--paper);
  margin-bottom: 6px;
}
.care-sidebar .plan-sub {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ink-4);
  display: block;
  margin-bottom: 20px;
}
.care-sidebar .btn {
  width: 100%;
  justify-content: space-between;
  margin-top: 14px;
}
.care-sidebar .btn-primary {
  background: var(--signal);
  border-color: var(--signal);
  color: #fff;
}
.care-sidebar .btn-primary:hover {
  background: var(--signal-deep);
  border-color: var(--signal-deep);
}

/* "Other care plans" grid at bottom of each care page */
.care-other {
  background: var(--paper-2);
  padding: clamp(48px, 6vw, 80px) 0;
  border-top: 1px solid var(--border);
}
.care-other h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 32px;
}
.care-other h2 em { font-style: italic; color: var(--evergreen); }
.care-other-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--border);
}
.care-other-card {
  padding: 28px 26px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: background 200ms ease;
  color: inherit;
  text-decoration: none;
}
.care-other-card:hover { background: var(--paper-2); }
.care-other-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--signal);
  display: block;
  margin-bottom: 8px;
}
.card-name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 4px;
}
.card-sub {
  font-size: 13px;
  color: var(--ink-3);
}
.card-arr {
  flex-shrink: 0;
  color: var(--ink);
}

/* --- Service area / city page aliases --- */
.arr { flex-shrink: 0; }
.addr { font-style: normal; }

/* --- Footer aliases (old class names from builder template) --- */
.foot-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) repeat(3, minmax(0, 1fr));
  gap: 40px;
}
.foot-brand img { height: 60px; width: auto; }
.foot-brand p {
  margin-top: 20px;
  font-size: 14px;
  color: var(--evergreen-soft);
  line-height: 1.55;
  max-width: 44ch;
}
.foot-col h4 {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--evergreen-soft);
  margin-bottom: 14px;
  letter-spacing: 0.04em;
  font-weight: 400;
  text-transform: uppercase;
}
.foot-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.foot-col a {
  font-size: 13px;
  color: #C9D5DF;
  transition: color 160ms ease;
}
.foot-col a:hover { color: var(--paper); }
.foot-bottom {
  margin-top: 56px;
  padding-top: 20px;
  border-top: 1px solid var(--navy);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-family: var(--mono);
  font-size: 10px;
  color: #7A8FA6;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.credentials {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}
.credentials span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7A8FA6;
}
.credentials strong {
  color: var(--paper);
  font-weight: 500;
}

/* Wrap old-style footer contents so they sit on dark navy-ink bg
   The existing <footer> in subpages just has the classes, no bg */
footer {
  background: var(--navy-ink);
  color: var(--paper);
  padding: 64px 0 32px;
}

/* Responsive overrides for compatibility layer */
@media (max-width: 980px) {
  .insights-grid,
  .all-insights-grid { grid-template-columns: repeat(2, 1fr); }
  .care-grid { grid-template-columns: 1fr; }
  .care-sidebar { position: static; }
  .care-other-grid { grid-template-columns: 1fr; }
  .care-other-card { border-right: none; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .insights-grid,
  .all-insights-grid { grid-template-columns: 1fr; }
  .insight-card { border-right: none; }
  .foot-grid { grid-template-columns: 1fr; }
}

/* Sidebar features list inside care-sidebar */
.sidebar-features {
  list-style: none;
  padding: 0;
  margin: 16px 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sidebar-features li {
  font-size: 13px;
  line-height: 1.5;
  color: #D5DCD0;
  padding-left: 16px;
  position: relative;
}
.sidebar-features li::before {
  content: "+";
  position: absolute;
  left: 0;
  color: var(--evergreen-soft);
  font-family: var(--mono);
}
.sidebar-note {
  margin-top: 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--ink-4);
  text-align: center;
}

/* h4 heading inside care-sidebar */
.care-sidebar h4 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 18px;
  color: var(--paper);
  margin-top: 8px;
}

/* ============================================================
   Estimator page — pricing tables, lead form, success state
   ============================================================ */

/* Pricing block: each service section with table */
.pricing-block {
  margin-bottom: clamp(48px, 6vw, 80px);
  background: var(--surface);
  border: 1px solid var(--border);
}
.pricing-head {
  padding: clamp(24px, 3vw, 36px);
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px 40px;
  align-items: start;
}
.pricing-head .mono { grid-column: 1 / -1; }
.pricing-head h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(24px, 2.8vw, 32px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-top: 8px;
  grid-column: 1;
}
.pricing-head p {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.55;
  grid-column: 1;
  margin: 0;
  max-width: 60ch;
}
.pricing-range {
  grid-column: 2;
  grid-row: 2 / 4;
  font-family: var(--serif);
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--signal);
  white-space: nowrap;
  text-align: right;
  align-self: start;
  padding-top: 8px;
}

.pricing-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.pricing-table thead th {
  background: var(--paper-2);
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-2);
  font-weight: 500;
}
.pricing-table thead th:first-child {
  background: var(--ink);
  color: var(--paper);
}
.pricing-table tbody th {
  padding: 14px 16px;
  background: var(--ink);
  color: var(--paper);
  text-align: left;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  border-bottom: 1px solid #2A2620;
  vertical-align: top;
  white-space: nowrap;
}
.pricing-table tbody th .row-sub {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-4);
  margin-top: 2px;
  font-weight: 400;
}
.pricing-table tbody td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  font-family: var(--mono);
  font-size: 13px;
  color: var(--ink);
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.pricing-table tbody tr:last-child td,
.pricing-table tbody tr:last-child th { border-bottom: none; }
.pricing-table tbody tr:hover td { background: var(--paper-2); }

/* What's included / price changes */
.pricing-fine-print {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: clamp(40px, 5vw, 64px);
  padding: clamp(32px, 4vw, 48px);
  background: var(--surface);
  border: 1px solid var(--border);
}
.fine-print-col .mono {
  display: block;
  margin-bottom: 16px;
}
.fine-print-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fine-print-col li {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.5;
  padding-left: 18px;
  position: relative;
}
.fine-print-col li::before {
  content: "+";
  position: absolute;
  left: 0;
  color: var(--signal);
  font-family: var(--mono);
}

/* Lead capture form layout */
.lead-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
.lead-form {
  background: rgba(26, 58, 92, 0.12);
  padding: clamp(28px, 3.5vw, 44px);
  position: relative;
}
.lead-form .corner-tl,
.lead-form .corner-tr,
.lead-form .corner-bl,
.lead-form .corner-br {
  border-color: var(--evergreen-soft) !important;
}
.form-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-field-full { grid-column: 1 / -1; }
.form-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--evergreen-soft);
}
.form-optional {
  color: var(--ink-4);
  text-transform: none;
  letter-spacing: 0.04em;
}
.form-field input,
.form-field select,
.form-field textarea {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid #2A4A5E;
  color: var(--paper);
  padding: 12px 14px;
  font-family: var(--sans);
  font-size: 14px;
  border-radius: 0;
  width: 100%;
  transition: border-color 160ms ease, background 160ms ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--signal);
  background: rgba(0, 0, 0, 0.4);
}
.form-field textarea {
  resize: vertical;
  min-height: 80px;
  font-family: var(--sans);
}
.form-field select option {
  background: var(--ink);
  color: var(--paper);
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(245, 238, 229, 0.35);
}
.form-submit {
  width: 100%;
  justify-content: space-between;
  margin-top: 24px;
}
.form-privacy {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--ink-4);
  text-align: center;
  margin-top: 14px;
}
.hidden-field {
  position: absolute;
  left: -9999px;
  visibility: hidden;
}

/* Lead success state */
.lead-success {
  max-width: 640px;
  margin: 40px auto 0;
  padding: 40px 32px;
  background: rgba(31, 58, 46, 0.4);
  border: 1px solid var(--evergreen-soft);
  text-align: center;
}
.lead-success .mono { display: block; margin-bottom: 20px; }
.lead-success h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--paper);
  margin-bottom: 16px;
}
.lead-success p {
  font-size: 16px;
  color: #C9D5DF;
  line-height: 1.55;
}
.lead-success a {
  color: var(--signal);
  text-decoration: underline;
}

/* Responsive for estimator page */
@media (max-width: 980px) {
  .lead-grid { grid-template-columns: 1fr; }
  .pricing-head { grid-template-columns: 1fr; }
  .pricing-range { grid-column: 1; grid-row: auto; text-align: left; padding-top: 0; }
  .pricing-fine-print { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 720px) {
  .form-grid { grid-template-columns: 1fr; }
  .pricing-table { font-size: 12px; }
  .pricing-table thead th,
  .pricing-table tbody th,
  .pricing-table tbody td { padding: 10px 12px; }
}

/* ============================================================
   Equipment catalog & model recommendation cards
   ============================================================ */

/* Model recommendation strip inside a pricing block */
.models-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}
.model-tier {
  padding: 24px 22px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}
.model-tier-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--signal);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.model-tier-label .spec-badge {
  color: var(--ink-4);
  font-weight: 400;
  letter-spacing: 0.08em;
}
.model-image {
  width: 100%;
  aspect-ratio: 4/3;
  background: #fff;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  margin-top: 4px;
  position: relative;
  overflow: hidden;
}
.model-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
}
/* Placeholder-only styling — when the model-image contains a placeholder
   div (fallback for cards without photos yet), restore the dashed look. */
.model-image:has(.model-image-placeholder) {
  background: var(--paper-2);
  border: 1px dashed var(--border-2);
}
.model-image-placeholder {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-4);
  text-align: center;
  padding: 0 12px;
  line-height: 1.4;
}
.model-image-placeholder .plus-mark {
  font-family: var(--serif);
  font-size: 26px;
  color: var(--border-2);
  display: block;
  margin-bottom: 4px;
  line-height: 1;
}
.model-brand {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.model-name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.model-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--ink-2);
  background: var(--paper-2);
  padding: 4px 8px;
  display: inline-block;
  align-self: flex-start;
  border: 1px solid var(--border);
}
.model-specs {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0;
  margin-top: 4px;
}
.model-specs li {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-2);
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
  border-top: 1px solid var(--border);
}
.model-specs li:first-child { border-top: none; }
.model-specs li .sk { color: var(--ink-4); }
.model-specs li .sv { color: var(--ink); font-weight: 500; }
.model-blurb {
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--ink-2);
  margin-top: 2px;
}

/* Equipment catalog page */
.equipment-hero {
  padding: clamp(60px, 8vw, 120px) 0 clamp(32px, 4vw, 64px);
  background: var(--paper);
  border-bottom: 1px solid var(--border);
}

.equipment-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: clamp(40px, 5vw, 72px);
}
.equipment-nav a {
  padding: 8px 14px;
  border: 1px solid var(--border);
  background: var(--surface);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-2);
  transition: all 160ms ease;
}
.equipment-nav a:hover {
  border-color: var(--ink);
  color: var(--ink);
  background: var(--paper-2);
}

.equipment-category {
  margin-bottom: clamp(56px, 7vw, 96px);
  scroll-margin-top: 100px;
}
.equipment-category-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: end;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--ink);
}
.equipment-category-head h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.equipment-category-head h2 em {
  font-style: italic;
  color: var(--evergreen);
}
.equipment-category-head .copy {
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.55;
  max-width: 52ch;
  margin-left: auto;
}

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-left: 1px solid var(--border);
  border-top: 1px solid var(--border);
}
.equipment-card {
  padding: 28px 26px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background 200ms ease;
  position: relative;
}
.equipment-card:hover { background: var(--paper-2); }
.equipment-card.featured {
  background: var(--paper-2);
}
.equipment-card.featured::before {
  content: "Most popular";
  position: absolute;
  top: -1px; right: -1px;
  padding: 4px 10px;
  background: var(--signal);
  color: #fff;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.equipment-card .tier-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--signal);
}
.equipment-card .model-image {
  margin: 8px 0 4px;
}
.equipment-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.equipment-card .model-num {
  font-size: 12px;
}
.equipment-card .blurb {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-2);
  flex: 1;
}
.equipment-card .foot-row {
  margin-top: 8px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.equipment-card .price-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-4);
}
.equipment-card .price-range {
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: -0.015em;
  color: var(--signal);
}

/* Responsive */
@media (max-width: 980px) {
  .models-row { grid-template-columns: 1fr; }
  .equipment-category-head { grid-template-columns: 1fr; }
  .equipment-category-head .copy { margin-left: 0; }
  .equipment-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .equipment-nav { font-size: 10px; }
  .equipment-nav a { padding: 6px 10px; }
}

/* ============================================================
   Featured system band — homepage hero-style product showcase
   ============================================================ */
.featured-system {
  padding: clamp(40px, 4vw, 64px) 0;
  background: var(--paper-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.featured-system::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--signal) 30%, var(--signal) 70%, transparent);
  opacity: 0.4;
}
.featured-system-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: clamp(32px, 4vw, 64px);
  align-items: center;
}
.featured-system-media {
  position: relative;
  max-width: 420px;
  justify-self: end;
  width: 100%;
  order: 2;
}
.featured-system-content {
  order: 1;
}
.featured-system-frame {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--ink);
  padding: 8px;
}
.featured-system-frame .corner-tl,
.featured-system-frame .corner-tr,
.featured-system-frame .corner-bl,
.featured-system-frame .corner-br {
  border-color: var(--signal) !important;
}
.featured-system-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #fff;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.featured-system-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Placeholder-only styling if no img present */
.featured-system-image:has(.featured-system-placeholder) {
  background: var(--paper);
  border: 1px dashed var(--border-2);
}
.featured-system-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  padding: 40px 24px;
}
.featured-system-placeholder .plus-mark {
  font-family: var(--serif);
  font-size: 72px;
  font-weight: 300;
  color: var(--border-2);
  line-height: 0.8;
  margin-bottom: 8px;
}
.featured-system-placeholder .placeholder-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.featured-system-placeholder .placeholder-sub {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-4);
  margin-top: 4px;
}
.featured-system-stamp {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  margin-top: 8px;
  border-top: 1px solid var(--border);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.featured-system-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.featured-system-headline {
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.05;
  margin: 0;
}
.featured-system-lede {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 56ch;
  margin: 0;
}
.featured-system-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 8px;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}
.featured-system-specs .spec-row {
  padding: 10px 14px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
}
.featured-system-specs .spec-row .k {
  color: var(--ink-4);
  text-transform: uppercase;
}
.featured-system-specs .spec-row .v {
  color: var(--ink);
  font-weight: 500;
  text-align: right;
}
.featured-system-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}

@media (max-width: 900px) {
  .featured-system-grid { grid-template-columns: 1fr; }
  .featured-system-specs { grid-template-columns: 1fr; }
  .featured-system-media {
    max-width: 340px;
    justify-self: center;
  }
}
@media (max-width: 560px) {
  .featured-system-actions .btn { width: 100%; }
}

/* ============================================================
   Recommended flag on estimator option buttons
   ============================================================ */
.est-option-recommended {
  position: relative;
  border-color: var(--signal) !important;
}
.est-recommended-flag {
  position: absolute;
  top: -1px; right: -1px;
  padding: 3px 10px;
  background: var(--signal);
  color: #fff;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1.2;
  z-index: 2;
}
.est-option.est-option-recommended.active {
  background: var(--ink);
  border-color: var(--signal) !important;
}

/* ============================================================
   Side-discharge alt-option (equipment page)
   ============================================================ */
.alt-option {
  margin-top: 24px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--ink);
  border-top: 3px solid var(--signal);
  scroll-margin-top: 100px;
}
.alt-option-media {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  border-right: 1px solid var(--border);
}
.alt-option-media img {
  max-width: 100%;
  max-height: 320px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.alt-option-content {
  padding: clamp(24px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.alt-option-flag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--signal);
  font-weight: 500;
}
.alt-option-content h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.alt-option-content p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 58ch;
}
.alt-option-specs {
  list-style: none;
  padding: 0;
  margin: 4px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}
.alt-option-specs li {
  padding: 8px 12px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  background: var(--paper-2);
}
.alt-option-specs li .sk { color: var(--ink-4); }
.alt-option-specs li .sv { color: var(--ink); font-weight: 500; }
.alt-option-actions {
  margin-top: 6px;
}

/* ============================================================
   Compact side-discharge banner (estimator page)
   ============================================================ */
.side-discharge-banner {
  margin: 0;
  padding: 20px 24px;
  background: var(--paper-2);
  border-top: 1px solid var(--border);
  border-left: 3px solid var(--signal);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.sd-banner-content {
  flex: 1;
  min-width: 260px;
}
.sd-banner-flag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--signal);
  font-weight: 500;
  display: inline-block;
  margin-bottom: 6px;
}
.side-discharge-banner h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 4px;
}
.side-discharge-banner p {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ink-2);
  max-width: 64ch;
  margin: 0;
}

/* btn-sm helper */
.btn-sm {
  padding: 10px 16px;
  font-size: 12px;
}

/* Responsive */
@media (max-width: 900px) {
  .alt-option { grid-template-columns: 1fr; }
  .alt-option-media { border-right: none; border-bottom: 1px solid var(--border); }
  .alt-option-specs { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .alt-option-specs { grid-template-columns: 1fr; }
}

/* ============================================================
   Better (middle) tier highlighting on estimator model rows
   ============================================================ */
.model-tier-featured {
  background: var(--paper-2);
  position: relative;
}
.model-tier-featured::before {
  content: "Recommended";
  position: absolute;
  top: -1px; right: -1px;
  padding: 3px 10px;
  background: var(--signal);
  color: #fff;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1.4;
  z-index: 2;
}
.model-tier-featured .model-tier-label span:first-child {
  color: var(--signal);
  font-weight: 500;
}

/* ============================================================
   Alt-banner variants (Ameristar budget + Mitsubishi ducted premium)
   ============================================================ */
.alt-banner {
  margin: 0;
  padding: 20px 24px;
  background: var(--paper-2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  border-top: 1px solid var(--border);
}
.alt-banner-budget {
  border-left: 3px solid var(--ink-3);
}
.alt-banner-premium {
  border-left: 3px solid var(--evergreen);
  background: rgba(31, 58, 46, 0.05);
}
.alt-banner-content {
  flex: 1;
  min-width: 260px;
}
.alt-banner-flag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
  display: inline-block;
  margin-bottom: 6px;
}
.alt-banner-flag-premium {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--evergreen);
  font-weight: 500;
  display: inline-block;
  margin-bottom: 6px;
}
.alt-banner h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 4px;
}
.alt-banner p {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ink-2);
  max-width: 64ch;
  margin: 0;
}

/* ============================================================
   Progressive CTA on homepage ballpark estimator
   — hidden until all 3 questions answered, then soft fade-in
   ============================================================ */
.estimator-next-cta {
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity 240ms ease, transform 240ms ease, visibility 0s linear 240ms;
  pointer-events: none;
}
.estimator-next-cta.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 240ms ease, transform 240ms ease, visibility 0s linear 0s;
  pointer-events: auto;
}

/* ============================================================
   Quote bridge — transition band between pricing and lead form
   ============================================================ */
.quote-bridge {
  padding: clamp(56px, 7vw, 96px) 0;
  background: var(--paper-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
}
.quote-bridge::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--signal);
}
.quote-bridge-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.quote-bridge-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.quote-bridge-heading {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 6px 0 0;
}
.quote-bridge-heading em {
  font-style: italic;
  color: var(--signal);
  font-weight: 300;
}
.quote-bridge-copy {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 56ch;
}
.quote-bridge-checklist {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}
.bridge-check {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 14.5px;
  color: var(--ink);
  line-height: 1.4;
}
.bridge-check .check-mark {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--signal);
  color: #fff;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}
.quote-bridge-action {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
  padding: clamp(24px, 3vw, 36px);
  background: #fff;
  border: 1px solid var(--ink);
  position: relative;
}
.quote-bridge-action::before {
  content: "";
  position: absolute;
  top: -1px; left: -1px; right: -1px;
  height: 3px;
  background: var(--signal);
}
.btn-lg {
  padding: 16px 24px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  justify-content: center;
  text-align: center;
}
.quote-bridge-or {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-4);
  text-align: center;
  position: relative;
}
.quote-bridge-or::before,
.quote-bridge-or::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 30%;
  height: 1px;
  background: var(--border);
}
.quote-bridge-or::before { left: 0; }
.quote-bridge-or::after { right: 0; }

/* Responsive: stack on narrow screens */
@media (max-width: 900px) {
  .quote-bridge-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ============================================================
   2-column variant for equipment-grid (used in Resolute section)
   ============================================================ */
.equipment-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 760px) {
  .equipment-grid-2 {
    grid-template-columns: 1fr;
  }
}
