/* ADC — Industrial Precision · Light register */

:root {
  /* brand */
  --steel: #2B7CBC;
  --steel-deep: #14385C;
  --steel-electric: #2E8FCB;
  --amber: #2B7CBC;      /* legacy alias → steel; many call sites still reference --amber */
  --amber-hot: #14385C;  /* legacy alias → steel-deep for hover/intensify */
  --teal: #2A8F5A;

  /* neutrals — slightly warmed light tints, not pure white */
  --ink: #11161D;          /* near-black, used for type only */
  --ink-anchor: #0F2138;   /* deep navy — used as anchored dark surface (urg, footer) */
  --charcoal: #1A2230;     /* deep slate ink for type on light surfaces */
  --graphite: #2D3848;
  --iron: #46505C;
  --steel-line: #B9C2CD;
  --fog: #6E7886;

  /* light surfaces — cool tinted paper, not stark white */
  --paper: #F6F8FB;        /* primary canvas */
  --bone: #ECF0F5;         /* secondary banding */
  --cool: #E2E8EF;         /* dividers / subtle fills */
  --hair: #D6DCE4;         /* hairline borders */
  --canvas: #FFFFFF;       /* card / inset white */
  --tint-blue: #E8F0F9;    /* very pale blue tint for callouts/insurance pulls */

  /* type */
  --head: "Barlow Condensed", "Helvetica Neue", Arial, sans-serif;
  --body: "Source Sans 3", "Helvetica Neue", Arial, sans-serif;
  --label: "Barlow", "Helvetica Neue", Arial, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  --container: 1280px;
}

* { box-sizing: border-box; }

/* ——— FOCUS / SKIP LINK ——— */
:focus-visible {
  outline: 2px solid var(--steel);
  outline-offset: 3px;
}
.dark :focus-visible {
  outline-color: var(--steel-electric);
}
.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  outline: 2px solid var(--steel);
  outline-offset: 0;
  border-color: var(--steel);
}
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--steel);
  color: white;
  padding: 12px 24px;
  font-family: var(--label);
  font-weight: 600;
  font-size: 14px;
  z-index: 9999;
  text-decoration: none;
}
.skip-link:focus {
  top: 16px;
}

html, body { margin: 0; padding: 0; }
body {
  font-family: var(--body);
  color: var(--charcoal);
  background: var(--paper);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
::selection { background: rgba(43,124,188,0.20); color: var(--ink); }

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

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

/* ——— TYPE ——— */
.h-eyebrow {
  font-family: var(--label);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--steel);
}
.h-eyebrow .tick { color: var(--amber); margin-right: 8px; }

.h-title {
  font-family: var(--head);
  font-weight: 800;
  font-size: clamp(36px, 4.8vw, 68px);
  line-height: 0.96;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 0;
  text-wrap: balance;
}
.h-title .accent { color: var(--steel); }
.h-title .mark {
  position: relative;
  display: inline-block;
  color: white;
}
.dark .h-title { color: white; }

.h-sub {
  font-family: var(--body);
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.55;
  color: var(--iron);
  max-width: 62ch;
  text-wrap: pretty;
}
.dark .h-sub { color: #C4C9D0; }

.mono { font-family: var(--mono); font-size: 12px; letter-spacing: 0.04em; }

/* ——— BUTTONS ——— */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  font-family: var(--label);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 0;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, box-shadow .2s ease, color .2s ease;
  position: relative;
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}
.btn:hover { transform: translateY(-1px); }
.btn--amber {
  background: var(--steel);
  color: white;
  box-shadow: 0 10px 26px -14px rgba(20,56,92,0.55);
}
.btn--amber:hover { background: var(--steel-deep); box-shadow: 0 14px 30px -14px rgba(20,56,92,0.65); }
.btn--blue {
  background: var(--steel);
  color: white;
}
.btn--blue:hover { background: var(--steel-deep); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--steel-line);
  clip-path: none;
}
.btn--ghost:hover { border-color: var(--steel); color: var(--steel); background: rgba(43,124,188,0.06); }
.dark .btn--ghost { color: white; border-color: rgba(255,255,255,0.35); }
.dark .btn--ghost:hover { border-color: white; background: rgba(255,255,255,0.06); color: white; }
.btn--outline-blue {
  background: transparent;
  color: var(--steel);
  border: 1.5px solid var(--steel);
  clip-path: none;
}
.btn--outline-blue:hover { background: var(--steel); color: white; }
.btn .ar { font-size: 13px; }

/* ——— SECTIONS ——— */
section { position: relative; }

.sec-pad { padding: 96px 0; }
.sec-pad-lg { padding: 120px 0; }

.dark {
  background: var(--ink-anchor);
  color: #E6ECF3;
}
.dark-deep {
  background: var(--ink-anchor);
  color: #E6ECF3;
}
.light { background: var(--paper); color: var(--charcoal); }
.bone { background: var(--bone); color: var(--charcoal); }
.canvas { background: var(--canvas); color: var(--charcoal); }

.sec-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.sec-label .line {
  height: 1px;
  background: var(--steel);
  width: 48px;
  display: inline-block;
}
.sec-label .num {
  font-family: var(--mono);
  color: var(--steel);
  font-size: 12px;
  letter-spacing: 0.08em;
}

/* ——— DIAGONAL / A-MARK ACCENTS ——— */
.a-mark {
  display: inline-block;
  width: 1em;
  height: 1em;
  background: currentColor;
  clip-path: polygon(50% 0, 100% 100%, 65% 100%, 50% 55%, 35% 100%, 0 100%);
}
.diag-divider {
  height: 24px;
  background: repeating-linear-gradient(
    135deg,
    var(--bone) 0 12px,
    var(--cool) 12px 24px
  );
}
.hairline {
  height: 1px;
  background: var(--hair);
  border: 0;
  margin: 0;
}
.dark .hairline { background: rgba(255,255,255,0.16); }

/* ——— UTILITY BAR ——— */
.util-bar {
  background: var(--canvas);
  color: var(--iron);
  border-bottom: 1px solid var(--hair);
}
.util-bar .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 32px;
  font-family: var(--label);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.util-bar .left { display: flex; align-items: center; gap: 14px; }
.util-bar .pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--steel);
  box-shadow: 0 0 0 0 rgba(43,124,188,0.55);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(43,124,188,0.55); }
  70% { box-shadow: 0 0 0 10px rgba(43,124,188,0); }
  100% { box-shadow: 0 0 0 0 rgba(43,124,188,0); }
}
.util-bar .amber { color: var(--steel-deep); font-weight: 700; }
.util-bar a.call { color: var(--ink); font-weight: 800; letter-spacing: 0.02em; }
.util-bar a.call:hover { color: var(--steel); }
.util-bar .right { display: flex; gap: 22px; color: var(--iron); font-weight: 600; }
.util-bar .right .dot { color: var(--hair); }

/* ——— NAV ——— */
.nav {
  background: rgba(255,255,255,0.92);
  border-bottom: 1px solid var(--hair);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
}
.nav .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
}
.nav .logo {
  display: flex; align-items: center; gap: 12px;
  color: var(--ink);
}
.nav .logo img { height: 64px; width: auto; }
.nav .links {
  display: flex; gap: 30px;
  font-family: var(--label);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--iron);
}
.nav .links a { transition: color .15s ease; position: relative; padding: 4px 0; }
.nav .links a:hover { color: var(--steel); }
.nav .links a.active { color: var(--ink); }
.nav .links a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -4px;
  height: 2px; background: var(--steel);
}
.nav .cta {
  display: flex; align-items: center; gap: 12px;
}
.nav-call-compact, .nav-toggle { display: none; }
.nav-toggle {
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid var(--hair);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 18px; height: 2px;
  background: var(--ink);
  transition: transform .2s ease, opacity .2s ease;
}
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ——— RESPONSIVE ——— */
@media (max-width: 1180px) {
  .nav .links { gap: 22px; font-size: 13px; }
  .nav-call-full { font-size: 13px; padding: 13px 18px; }
}
@media (max-width: 1060px) {
  .util-bar .row { font-size: 12px; padding: 9px 24px; gap: 14px; flex-wrap: wrap; }
  .util-bar .right { display: none; }
  .nav .row { padding: 16px 24px; }
  .nav .links { display: none; }
  .nav-call-full { display: none; }
  .nav-call-compact { display: inline-flex; padding: 12px 16px; font-size: 13px; }
  .nav-toggle { display: flex; }
  .nav-open .links {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: var(--canvas);
    gap: 0;
    padding: 12px 24px 24px;
    border-bottom: 1px solid var(--hair);
    box-shadow: 0 20px 40px -16px rgba(20,40,72,0.18);
  }
  .nav-open .links a {
    padding: 14px 0;
    border-bottom: 1px solid var(--cool);
    font-size: 14px;
  }
  .nav-open .links a:last-child { border-bottom: 0; }
  .nav-open .links a.active::after { display: none; }
}
@media (max-width: 720px) {
  .wrap { padding: 0 20px; }
  .util-bar .row { padding: 8px 20px; }
  .util-bar .left { flex-wrap: wrap; font-size: 11px; gap: 10px; }
  .nav .row { padding: 14px 20px; }
  .nav .logo img { height: 44px; }
}

/* ——— HERO ——— */
.hero {
  background: var(--paper);
  color: var(--ink);
  position: relative;
  overflow: hidden;
  min-height: 720px;
  border-bottom: 1px solid var(--hair);
}
.hero .bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 78% 18%, rgba(43,124,188,0.16), transparent 58%),
    radial-gradient(ellipse at 8% 95%, rgba(20,56,92,0.10), transparent 50%),
    linear-gradient(180deg, #FFFFFF 0%, #F0F4F9 55%, #E6EDF5 100%);
}
.hero .photo {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(90deg, rgba(246,248,251,0.92) 0%, rgba(246,248,251,0.55) 50%, rgba(246,248,251,0.10) 100%),
    repeating-linear-gradient(135deg, #DCE3EC 0 4px, #E8EDF3 4px 8px);
  opacity: 1;
}
.hero .photo-tag {
  position: absolute;
  right: 32px; bottom: 32px;
  font-family: var(--mono);
  color: var(--fog);
  font-size: 11px;
  letter-spacing: 0.08em;
}
.hero .grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(20,56,92,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20,56,92,0.045) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(180deg, black 0%, black 55%, transparent 100%);
}
.hero .content {
  position: relative;
  z-index: 2;
  padding: 120px 32px 140px;
  max-width: var(--container);
  margin: 0 auto;
}
.hero .corner-tick {
  position: absolute;
  top: 32px; left: 32px;
  font-family: var(--mono);
  color: var(--fog);
  font-size: 11px;
  letter-spacing: 0.1em;
  display: flex; gap: 18px;
}
.hero .corner-tick span::before { content: "◆ "; color: var(--steel); }

.hero .eyebrow {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 28px;
}
.hero .eyebrow .badge {
  font-family: var(--label);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  padding: 6px 12px;
  background: var(--tint-blue);
  color: var(--steel-deep);
  border: 1px solid rgba(43,124,188,0.30);
  text-transform: uppercase;
}
.hero .eyebrow .mono-info {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--fog);
  letter-spacing: 0.08em;
}
.hero h1 {
  font-family: var(--head);
  font-weight: 800;
  font-size: clamp(56px, 7.2vw, 112px);
  line-height: 0.92;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  margin: 0;
  color: var(--ink);
}
.hero h1 .line { display: block; }
.hero h1 .restore {
  color: var(--steel);
  position: relative;
  display: inline-block;
}
.hero-eval-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  margin-bottom: 20px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--canvas);
  border: 1.5px solid var(--steel);
  font-family: var(--label);
  font-size: 15px;
  font-weight: 700;
  color: var(--steel-deep);
  letter-spacing: 0.01em;
  box-shadow: 0 2px 10px -2px rgba(20,56,92,0.10);
}
.hero-eval-badge__icon {
  display: inline-flex;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--steel);
}
.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
  margin-bottom: 20px;
}
.hero-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 13px;
  border-radius: 999px;
  background: var(--canvas);
  border: 1px solid var(--hair);
  font-family: var(--label);
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.hero-trust-pill__check {
  color: var(--steel);
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
}
.hero .sub {
  max-width: 620px;
  margin-top: 0;
  font-size: 19px;
  line-height: 1.55;
  color: var(--iron);
}
/* Replaces side-stripe pattern: now a tinted callout with leading icon — no border-left. */
.hero-ins-strip {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 16px;
  margin-bottom: 24px;
  padding: 14px 18px;
  border-radius: 4px;
  background: var(--tint-blue);
  border: 1px solid rgba(43,124,188,0.18);
  font-family: var(--body);
  font-size: 15px;
  color: var(--ink);
  line-height: 1.45;
  max-width: 640px;
}
.hero-ins-strip__icon {
  font-size: 17px;
  flex-shrink: 0;
  line-height: 1;
  color: var(--steel-deep);
}

.hero .ctas {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-top: 40px;
}

.hero .dash {
  position: absolute;
  right: 32px;
  top: 120px;
  width: 280px;
  z-index: 2;
  background: var(--canvas);
  backdrop-filter: blur(12px);
  border: 1px solid var(--hair);
  box-shadow: 0 24px 48px -28px rgba(20,56,92,0.30);
  padding: 22px;
  font-family: var(--mono);
}
.hero .dash .hd {
  display: flex; justify-content: space-between;
  font-size: 10px;
  color: var(--fog);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--cool);
  margin-bottom: 14px;
}
.hero .dash .dot { color: var(--teal); }
.hero .dash .rowitem {
  display: flex; justify-content: space-between;
  font-size: 12px;
  padding: 8px 0;
  color: var(--iron);
}
.hero .dash .rowitem b { color: var(--ink); font-weight: 700; }
.hero .dash .rowitem .amber { color: var(--steel-deep); font-weight: 700; }

.hero .kpi-strip {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--hair);
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(10px);
  z-index: 2;
}
.hero .kpi-strip .kpi {
  padding: 22px 28px;
  border-right: 1px solid var(--cool);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero .kpi-strip .kpi:last-child { border-right: 0; }
.hero .kpi-strip .kpi .n {
  font-family: var(--head);
  font-weight: 800;
  font-size: 32px;
  color: var(--ink);
  line-height: 1;
}
.hero .kpi-strip .kpi .n .u { color: var(--steel); font-size: 18px; margin-left: 2px; }
.hero .kpi-strip .kpi .l {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--fog);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ——— TRUST STRIP ——— */
.trust {
  background: white;
  border-bottom: 1px solid var(--hair);
  border-top: 1px solid var(--hair);
}
.trust .row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: var(--container);
  margin: 0 auto;
}
.trust .item {
  padding: 28px 32px;
  border-right: 1px solid var(--hair);
  display: flex; align-items: center; gap: 16px;
}
.trust .item:last-child { border-right: 0; }
.trust .item .icon {
  width: 42px; height: 42px;
  background: var(--bone);
  color: var(--steel);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}
.trust .item .text .big {
  font-family: var(--head);
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1;
}
.trust .item .text .small {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--iron);
  letter-spacing: 0.06em;
  margin-top: 4px;
}

/* ——— SERVICES ——— */
.services { background: var(--paper); }
.services .head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 56px;
}
.services .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--hair);
  border-left: 1px solid var(--hair);
}
.service-card {
  border-right: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  background: var(--canvas);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: background .2s ease, box-shadow .25s ease, transform .25s ease;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.service-card:hover {
  background: var(--canvas);
  box-shadow: 0 18px 40px -22px rgba(20,56,92,0.30);
  transform: translateY(-2px);
  z-index: 1;
}
/* Replaces side-stripe pattern: top hairline that thickens on hover. */
.service-card::before {
  content: ""; position: absolute;
  left: 0; right: 0; top: 0; height: 1px;
  background: var(--hair);
  transition: background .25s ease, height .25s ease;
  z-index: 2;
}
.service-card:hover::before { background: var(--steel); height: 3px; }

/* Photo frame at top of each service card */
.service-card__photo {
  position: relative;
  height: 170px;
  overflow: hidden;
  flex-shrink: 0;
  background: #0E1014;
}
.service-card__photo-idx {
  position: absolute;
  bottom: 10px;
  left: 14px;
  font-family: var(--mono);
  font-size: 10px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.1em;
  z-index: 2;
}
.service-card__photo-icon {
  position: absolute;
  bottom: 8px;
  right: 14px;
  width: 32px;
  height: 32px;
  color: rgba(255,255,255,0.55);
  z-index: 2;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.6));
}

/* Card body (below photo) */
.service-card__body {
  padding: 22px 24px 0;
  flex: 1;
}

.service-card h3 {
  font-family: var(--head);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 0.01em;
  margin: 0 0 10px;
  line-height: 1.08;
  text-transform: uppercase;
  color: var(--ink);
}
.service-card p {
  font-size: 15.5px;
  color: var(--iron);
  margin: 0;
  line-height: 1.6;
}
.service-card .more {
  margin-top: 16px;
  padding: 0 24px 22px;
  font-family: var(--label);
  font-weight: 600;
  font-size: 12px;
  color: var(--steel);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: flex; align-items: center; gap: 8px;
}
.service-card .more .ar { transition: transform .2s ease; }
.service-card:hover .more .ar { transform: translateX(4px); }

/* ——— INSURANCE LOGOS ——— */
.insurance {
  background: white;
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  padding: 32px 0;
}
.insurance .row {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  flex-wrap: wrap;
}
.insurance .lbl {
  font-family: var(--label);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fog);
  border-right: 1px solid var(--hair);
  padding-right: 32px;
  flex-shrink: 0;
  max-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.insurance .lbl__title {
  font-family: var(--head);
  font-size: 19px;
  font-weight: 700;
  color: var(--charcoal);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.15;
}
.insurance .lbl__sub {
  font-family: var(--label);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--steel-electric);
  line-height: 1.3;
}
.insurance .lbl__note {
  font-family: var(--body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(0, 0, 0, 0.55);
  margin-top: 8px;
  max-width: 280px;
  line-height: 1.45;
}
.insurance .logos {
  display: flex;
  gap: 44px;
  flex-wrap: wrap;
  align-items: center;
  flex: 1;
}
.insurance .logo-pill {
  font-family: var(--head);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--fog);
  transition: color .2s ease;
}
.insurance .logo-pill:hover { color: var(--steel-deep); }

/* ——— WHY CHOOSE ——— */
.why {
  background: var(--bone);
  color: var(--ink);
  position: relative;
}
.why::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 85% -10%, rgba(43,124,188,0.10), transparent 55%);
  pointer-events: none;
}
.why .inner { position: relative; z-index: 1; }
.why .head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 72px;
}
.why .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--hair);
  border: 1px solid var(--hair);
}
.why-card {
  background: var(--canvas);
  padding: 46px 28px;
  border-top: 2px solid var(--steel);
  transition: background .25s ease, transform .25s ease;
  position: relative;
  overflow: hidden;
}
.why-card:hover { background: var(--paper); transform: translateY(-2px); }

/* Background SVG layer (kept as illustrative dark slab on light card) */
.why-card__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.10;
}
/* Subtle wash so card content stays readable */
.why-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.40) 0%, rgba(255,255,255,0.85) 65%);
  z-index: 1;
  pointer-events: none;
}
/* Content sits above bg + overlay */
.why-card__content {
  position: relative;
  z-index: 2;
}

.why-card .num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--steel);
  letter-spacing: 0.1em;
  font-weight: 600;
}
.why-card .icon {
  width: 52px; height: 52px;
  color: var(--steel);
  margin: 28px 0 36px;
}
.why-card h3 {
  font-family: var(--head);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.01em;
  margin: 0 0 14px;
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--ink);
}
.why-card p {
  font-size: 15px;
  color: var(--iron);
  margin: 0;
  line-height: 1.65;
}

/* ——— PROCESS ——— */
.process { background: var(--bone); }
.process .head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 72px;
}
.process .track {
  position: relative;
}
.process .steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  position: relative;
}

/* Step card */
.process .step {
  padding: 0 16px 32px 16px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Connector line: extends from right edge of this waypoint to left edge of next */
.process .step:not(:last-child)::after {
  content: "";
  position: absolute;
  /* vertically centered on the 52px waypoint disc (26px radius) */
  top: 26px;
  /* start just outside the disc on the right */
  left: calc(50% + 26px);
  right: calc(-50% + 26px);
  height: 1.5px;
  background: linear-gradient(
    90deg,
    rgba(58,159,217,0.35) 0%,
    rgba(58,159,217,0.35) calc(100% - 10px),
    transparent 100%
  );
  z-index: 0;
}

/* Chevron arrow at right end of each connector */
.process .step:not(:last-child)::before {
  content: "›";
  position: absolute;
  top: 26px;
  right: calc(-50% + 26px);
  transform: translate(50%, -50%);
  font-size: 18px;
  line-height: 1;
  color: rgba(58,159,217,0.55);
  z-index: 1;
  font-family: var(--label);
  font-weight: 400;
}

/* Waypoint disc */
.step__waypoint {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--ink);
  border: 2px solid var(--steel-electric);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: border-color .2s ease, background .2s ease;
  margin-bottom: 20px;
}
.process .step:hover .step__waypoint {
  background: var(--steel-deep);
  border-color: var(--steel-electric);
}

/* Number inside disc */
.step__num {
  font-family: var(--head);
  font-weight: 700;
  font-size: 22px;
  line-height: 1;
  color: white;
  letter-spacing: 0.01em;
  display: block;
}

/* Step heading */
.process .step h4 {
  font-family: var(--head);
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin: 0 0 0 0;
  line-height: 1.1;
}

/* Time badge pill */
.process .step .t {
  display: inline-block;
  padding: 4px 10px;
  border: 1px solid var(--steel-electric);
  border-radius: 999px;
  font-family: var(--label);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--steel-electric);
  background: rgba(58,159,217,0.08);
  margin: 12px 0 8px;
  text-transform: none;
}

.process .step p {
  font-size: 15px;
  color: var(--iron);
  line-height: 1.55;
  margin: 0;
}

/* ——— PROCESS RESPONSIVE ——— */
/* 3-col wrap at ~1100px */
@media (max-width: 1100px) {
  .process .steps {
    grid-template-columns: repeat(3, 1fr);
  }
  /* hide connectors when wrapped — connector on col 3 would point off-screen */
  .process .step::after,
  .process .step::before {
    display: none;
  }
}
/* 2-col at ~720px */
@media (max-width: 720px) {
  .process .steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .process .step {
    padding-bottom: 28px;
  }
  .process .head {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 40px;
  }
}
/* 1-col on small mobile */
@media (max-width: 480px) {
  .process .steps {
    grid-template-columns: 1fr;
  }
}

/* ——— BEFORE / AFTER ——— */
.ba { background: var(--paper); }
.ba .head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 56px;
}
.ba .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ba-card {
  background: white;
  border: 1px solid var(--hair);
  overflow: hidden;
}
.ba-slider {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  user-select: none;
  cursor: ew-resize;
}
.ba-slider .after, .ba-slider .before {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  display: flex; align-items: flex-end;
  padding: 16px;
}
.ba-slider .before { z-index: 2; }
.ba-slider .label {
  font-family: var(--label);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.2em;
  padding: 6px 10px;
  text-transform: uppercase;
  color: white;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(4px);
}
.ba-slider .before .label { background: var(--steel); color: white; }
.ba-slider .handle {
  position: absolute; top: 0; bottom: 0;
  width: 2px;
  background: white;
  z-index: 3;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.1);
}
.ba-slider .handle::after {
  content: "◀ ▶";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px;
  background: white;
  color: var(--charcoal);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px;
  letter-spacing: 2px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}
.ba-card .meta {
  padding: 20px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--hair);
}
.ba-card .meta .t {
  font-family: var(--head);
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.ba-card .meta .c {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--iron);
  letter-spacing: 0.08em;
}

/* SVG scenes inside ba-slider panels must fill the panel */
.ba-slider .before svg,
.ba-slider .after svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
}

/* Striped placeholder for before/after */
.stripe-a { background: repeating-linear-gradient(135deg, #4A3A2A 0 10px, #3A2E22 10px 20px); }
.stripe-b { background: repeating-linear-gradient(135deg, #2B7CBC 0 10px, #1A4A7C 10px 20px); }
.stripe-c { background: repeating-linear-gradient(135deg, #2D3338 0 10px, #1F2428 10px 20px); }
.stripe-d { background: repeating-linear-gradient(135deg, #7A6A5A 0 10px, #5C5045 10px 20px); }
.stripe-e { background: repeating-linear-gradient(135deg, #3A2E22 0 10px, #2A2018 10px 20px); }
.stripe-f { background: repeating-linear-gradient(135deg, #6F7D80 0 10px, #525E60 10px 20px); }
.ph-caption {
  position: absolute;
  top: 12px; left: 12px;
  font-family: var(--mono);
  font-size: 10px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ——— TESTIMONIALS ——— */
.testi { background: var(--bone); color: var(--ink); }
.testi .head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  margin-bottom: 56px;
}
.testi .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: var(--canvas);
  border: 1px solid var(--hair);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  transition: box-shadow .25s ease;
}
.testi-card:hover { box-shadow: 0 18px 40px -24px rgba(20,56,92,0.25); }
.testi-card .stars {
  color: #E8B330;
  letter-spacing: 2px;
  font-size: 16px;
}
.testi-card .quote {
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--charcoal);
  font-family: var(--body);
  text-wrap: pretty;
}
.testi-card .meta {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--cool);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--iron);
}
.testi-card .meta b { color: var(--ink); font-weight: 700; }

/* ——— AREAS ——— */
.areas { background: var(--paper); }
.areas .inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.areas .map {
  aspect-ratio: 5/4;
  position: relative;
  background: var(--bone);
  border: 1px solid var(--hair);
  overflow: hidden;
}
.areas .map svg { width: 100%; height: 100%; display: block; }
.areas .city-list {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--hair);
  border-left: 1px solid var(--hair);
}
.areas .city-list .c {
  padding: 18px 22px;
  border-right: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: white;
  transition: background .15s ease;
}
.areas .city-list .c:hover { background: var(--bone); }
.areas .city-list .name {
  font-family: var(--head);
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
}
.areas .city-list .resp {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--steel);
  letter-spacing: 0.06em;
}

/* ——— URGENCY CTA BAND ——— */
/* Tactical dark anchor: deep navy, not pure black. Single tactical zone of dark on the site. */
.urg {
  background: var(--ink-anchor);
  color: #E6ECF3;
  position: relative;
  overflow: hidden;
  border-top: 4px solid var(--steel);
}
.urg::before {
  content: ""; position: absolute; inset: 0;
  background:
    repeating-linear-gradient(-45deg, transparent 0 60px, rgba(255,255,255,0.025) 60px 61px);
  pointer-events: none;
}
.urg .inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 72px 32px;
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.urg h2 {
  font-family: var(--head);
  font-weight: 800;
  font-size: clamp(36px, 4.2vw, 56px);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1;
  margin: 0 0 20px;
  color: white;
}
.urg h2 .em { color: var(--steel-electric); }
.urg p {
  color: rgba(255,255,255,0.78);
  font-size: 17px;
  max-width: 520px;
  margin: 0 0 32px;
}
.urg .cta-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-end;
}
.urg .phone {
  font-family: var(--head);
  font-weight: 800;
  font-size: 48px;
  letter-spacing: -0.01em;
  color: white;
  line-height: 1;
}
.urg .phone-lbl {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--steel-electric);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}
.urg .phone-secondary {
  font-family: var(--head);
  font-size: 22px;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.01em;
  margin-top: 4px;
  text-decoration: none;
}
.urg .phone-secondary:hover { color: white; }
.urg .ticker {
  display: flex;
  gap: 24px;
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(255,255,255,0.65);
  margin-top: 20px;
}
.urg .ticker b { color: var(--steel-electric); font-weight: 700; }
.urg__cta-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 18px 28px;
  text-align: center;
  line-height: 1.15;
}

/* ——— FOOTER ——— */
.footer {
  background: var(--ink-anchor);
  color: rgba(255,255,255,0.68);
  padding: 72px 0 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer .cols {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1.2fr;
  gap: 60px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.footer .brand img { height: 52px; }
.footer .tagline {
  margin-top: 18px;
  font-family: var(--head);
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: white;
  line-height: 1.1;
}
.footer .socials {
  display: flex; gap: 10px;
  margin-top: 24px;
}
.footer .socials a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.16);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--label);
  font-weight: 700;
  font-size: 11px;
  color: rgba(255,255,255,0.78);
  transition: all .2s ease;
}
.footer .socials a:hover { background: var(--steel); color: white; border-color: var(--steel); }
.footer h5 {
  font-family: var(--label);
  font-weight: 700;
  font-size: 12px;
  color: white;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 22px;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 10px; font-size: 14px; }
.footer ul li a:hover { color: white; }
.footer .contact-line {
  font-size: 14px; margin-bottom: 14px; line-height: 1.5;
}
.footer .contact-line b { color: var(--steel-electric); font-weight: 700; display: block; font-family: var(--label); letter-spacing: 0.04em; font-size: 11px; text-transform: uppercase; margin-bottom: 4px; }
.footer .bottom {
  display: flex; justify-content: space-between;
  padding-top: 28px;
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(255,255,255,0.50);
  letter-spacing: 0.04em;
  flex-wrap: wrap;
  gap: 20px;
}
.footer .bottom a:hover { color: white; }

/* ——— TWEAKS PANEL ——— */
.tweaks {
  position: fixed;
  bottom: 20px; right: 20px;
  width: 290px;
  background: white;
  border: 1px solid var(--hair);
  box-shadow: 0 20px 50px -20px rgba(0,0,0,0.3);
  font-family: var(--body);
  z-index: 200;
  display: none;
}
.tweaks.show { display: block; }
.tweaks .hd {
  padding: 14px 18px;
  background: var(--ink);
  color: white;
  font-family: var(--label);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: flex; justify-content: space-between; align-items: center;
}
.tweaks .hd .close { cursor: pointer; opacity: 0.6; font-size: 14px; }
.tweaks .body { padding: 18px; }
.tweaks .g { margin-bottom: 16px; }
.tweaks .g:last-child { margin-bottom: 0; }
.tweaks label {
  display: block;
  font-family: var(--label);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--iron);
  margin-bottom: 8px;
}
.tweaks .pills {
  display: flex; gap: 6px; flex-wrap: wrap;
}
.tweaks .pills button {
  padding: 6px 10px;
  font-family: var(--label);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid var(--hair);
  background: white;
  color: var(--iron);
  cursor: pointer;
}
.tweaks .pills button.on {
  background: var(--charcoal);
  color: white;
  border-color: var(--charcoal);
}
.tweaks .swatches { display: flex; gap: 6px; }
.tweaks .swatches button {
  width: 28px; height: 28px;
  border: 2px solid var(--hair);
  cursor: pointer;
}
.tweaks .swatches button.on { border-color: var(--ink); }

/* Hero variant: split */
.hero.variant-split .photo {
  clip-path: polygon(45% 0, 100% 0, 100% 100%, 35% 100%);
  background-image:
    linear-gradient(120deg, rgba(20,56,92,0.06) 0%, transparent 40%),
    repeating-linear-gradient(135deg, #DCE3EC 0 4px, #E8EDF3 4px 8px);
}
.hero.variant-split h1 { font-size: clamp(52px, 6vw, 92px); }
.hero.variant-split .sub { max-width: 520px; }

/* ============================================================
   SERVICES HUB PAGE
   ============================================================ */

/* — Page hero (shorter, page-title variant) — */
.page-hero {
  background: var(--paper);
  color: var(--ink);
  position: relative;
  overflow: hidden;
  padding: 140px 0 90px;
  border-bottom: 1px solid var(--hair);
}
.page-hero .bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 78% 28%, rgba(43,124,188,0.14), transparent 55%),
    linear-gradient(180deg, #FFFFFF 0%, #EEF3F8 100%);
}
.page-hero .grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(20,56,92,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20,56,92,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(180deg, black 0%, black 50%, transparent 100%);
}
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero .crumb {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--fog);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 36px;
}
.page-hero .crumb a { color: var(--steel-deep); font-weight: 600; }
.page-hero .crumb a:hover { color: var(--steel); }
.page-hero .crumb .sep { color: var(--hair); }
.page-hero .head-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: end;
}
.page-hero h1 {
  font-family: var(--head);
  font-weight: 800;
  font-size: clamp(48px, 6vw, 92px);
  line-height: 0.95;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  margin: 0;
  color: var(--ink);
}
.page-hero h1 .accent { color: var(--steel); }
.page-hero .lead {
  font-size: 18px;
  line-height: 1.55;
  color: var(--iron);
  max-width: 52ch;
}
.page-hero .eyebrow {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 20px;
}
.page-hero .eyebrow .num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--steel);
  font-weight: 600;
}
.page-hero .eyebrow .line {
  width: 36px; height: 1px; background: var(--steel);
}
.page-hero .actions {
  margin-top: 40px;
  display: flex; gap: 14px; flex-wrap: wrap;
}
.page-hero .side-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--hair);
  border: 1px solid var(--hair);
}
.page-hero .side-specs .s {
  background: var(--canvas);
  padding: 20px 22px;
}
.page-hero .side-specs .l {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--fog);
  text-transform: uppercase;
  font-weight: 600;
}
.page-hero .side-specs .v {
  font-family: var(--head);
  font-weight: 700;
  font-size: 22px;
  color: var(--ink);
  text-transform: uppercase;
  margin-top: 6px;
  letter-spacing: 0.01em;
}
.page-hero .side-specs .v .u {
  color: var(--steel);
  font-size: 14px;
  margin-left: 4px;
}

/* — Services 9-card grid (hub page variant) — */
.services-hub { background: var(--paper); }
.services-hub .hub-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 56px;
}
.services-hub .grid-9 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--hair);
  border-left: 1px solid var(--hair);
}
.svc-card-lg {
  border-right: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  padding: 36px;
  background: var(--canvas);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: background .2s ease, box-shadow .25s ease, transform .25s ease;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.svc-card-lg:hover {
  background: var(--canvas);
  box-shadow: 0 22px 50px -28px rgba(20,56,92,0.30);
  transform: translateY(-2px);
  z-index: 1;
}
/* Replaces side-stripe pattern: top rule that thickens on hover. */
.svc-card-lg::before {
  content: ""; position: absolute;
  left: 0; right: 0; top: 0; height: 1px;
  background: var(--hair);
  transition: background .25s ease, height .25s ease;
}
.svc-card-lg:hover::before { background: var(--steel); height: 4px; }
.svc-card-lg .top {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 32px;
}
.svc-card-lg .idx {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--fog);
  letter-spacing: 0.08em;
}
.svc-card-lg .icon {
  width: 52px; height: 52px;
  color: var(--steel);
}
.svc-card-lg h3 {
  font-family: var(--head);
  font-weight: 700;
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  margin: 0 0 14px;
  line-height: 1.02;
}
.svc-card-lg p {
  font-size: 14.5px;
  color: var(--iron);
  margin: 0;
  line-height: 1.55;
}
.svc-card-lg .more {
  margin-top: 28px;
  font-family: var(--label);
  font-weight: 600;
  font-size: 12px;
  color: var(--steel);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--hair);
  padding-top: 20px;
}
.svc-card-lg .more .ar { transition: transform .2s ease; }
.svc-card-lg:hover .more .ar { transform: translateX(4px); }

/* — Insurance help block (split — light surface, navy accent panel) — */
.ins-help { background: var(--bone); color: var(--ink); position: relative; overflow: hidden; }
.ins-help::before {
  content: ""; position: absolute; inset: 0;
  background:
    repeating-linear-gradient(-45deg, transparent 0 80px, rgba(43,124,188,0.05) 80px 81px);
  pointer-events: none;
}
.ins-help .inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.ins-help h2 {
  font-family: var(--head);
  font-weight: 800;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 0.98;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 0 0 24px;
  color: var(--ink);
}
.ins-help h2 .accent { color: var(--steel); }
.ins-help .body {
  color: var(--iron);
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 54ch;
}
.ins-help ul {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--hair);
}
.ins-help ul li {
  padding: 18px 0 18px 36px;
  border-bottom: 1px solid var(--hair);
  font-size: 15px;
  color: var(--charcoal);
  position: relative;
}
.ins-help ul li::before {
  content: "→";
  position: absolute;
  left: 8px;
  top: 18px;
  color: var(--steel);
  font-family: var(--mono);
  font-weight: 700;
}
/* Single navy accent panel — the one tactical-dark element of this section. */
.ins-help .panel {
  background: var(--ink-anchor);
  border: 1px solid var(--ink-anchor);
  padding: 40px 36px;
  position: relative;
  color: white;
  box-shadow: 0 30px 60px -36px rgba(20,56,92,0.45);
}
.ins-help .panel .corner {
  position: absolute;
  top: -1px; right: -1px;
  width: 56px; height: 56px;
  background:
    linear-gradient(225deg, var(--steel-electric) 0 14px, transparent 14px);
}
.ins-help .panel .label {
  font-family: var(--label);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--steel-electric);
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 700;
}
.ins-help .panel h3 {
  font-family: var(--head);
  font-weight: 700;
  font-size: 28px;
  text-transform: uppercase;
  margin: 0 0 14px;
  line-height: 1.05;
  color: white;
}
.ins-help .panel p {
  color: rgba(255,255,255,0.78);
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 28px;
}
.ins-help .carrier-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.10);
  margin-bottom: 28px;
}
.ins-help .carrier-grid .c {
  background: rgba(255,255,255,0.05);
  padding: 14px 16px;
  font-family: var(--label);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.85);
}

/* — FAQ accordion — */
.faq-prev { background: var(--bone); }
.faq-prev .head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 48px;
}
.faq-list {
  border-top: 1px solid var(--hair);
}
.faq-item {
  border-bottom: 1px solid var(--hair);
  background: white;
}
.faq-item.open { background: var(--paper); }
.faq-q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 26px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  font-family: var(--head);
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--charcoal);
  transition: color .15s ease;
}
.faq-q:hover { color: var(--steel); }
.faq-q .qidx {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--steel);
  letter-spacing: 0.08em;
  font-weight: 500;
  min-width: 40px;
  display: inline-block;
}
.faq-q .txt { flex: 1; text-wrap: balance; }
.faq-q .icon {
  width: 24px; height: 24px;
  flex-shrink: 0;
  color: var(--steel);
  transition: transform .25s ease;
}
.faq-item.open .faq-q .icon { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.faq-item.open .faq-a { max-height: 400px; }
.faq-a .inner {
  padding: 0 32px 30px 100px;
  font-size: 16px;
  color: var(--iron);
  line-height: 1.6;
  max-width: 70ch;
}

/* — Compact process strip (for services hub) — */
.proc-strip { background: var(--paper); }
.proc-strip .head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 48px;
}
.proc-strip .steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid var(--hair);
  border-left: 1px solid var(--hair);
}
.proc-strip .step {
  background: white;
  border-right: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  padding: 28px 24px;
  position: relative;
}
.proc-strip .step .n {
  font-family: var(--head);
  font-weight: 800;
  font-size: 44px;
  line-height: 1;
  color: var(--steel);
  opacity: 0.15;
}
.proc-strip .step h4 {
  font-family: var(--head);
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin: 14px 0 10px;
}
.proc-strip .step p {
  font-size: 14px;
  color: var(--iron);
  line-height: 1.55;
  margin: 0;
}
.proc-strip .step .tick {
  position: absolute;
  top: 24px; right: 24px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--amber);
}

/* — Bottom CTA band (simpler) — */
.cta-band {
  background: linear-gradient(135deg, var(--steel-deep) 0%, var(--steel) 100%);
  color: white;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(-45deg, transparent 0 60px, rgba(255,255,255,0.04) 60px 61px);
  pointer-events: none;
}
.cta-band .inner {
  padding: 64px 32px;
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.cta-band h2 {
  font-family: var(--head);
  font-weight: 800;
  font-size: clamp(36px, 4.2vw, 56px);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1;
  margin: 0 0 16px;
  color: white;
}
.cta-band p {
  color: rgba(255,255,255,0.85);
  font-size: 17px;
  max-width: 480px;
  margin: 0;
}
.cta-band .right {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}
.cta-band .phone {
  font-family: var(--head);
  font-weight: 800;
  font-size: 48px;
  letter-spacing: -0.01em;
  color: white;
  line-height: 1;
}
.cta-band .lbl {
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Hero variant: stat */
.hero.variant-stat .photo { display: none; }
.hero.variant-stat .bg {
  background:
    radial-gradient(ellipse at 20% 80%, rgba(43,124,188,0.14), transparent 50%),
    linear-gradient(180deg, #FFFFFF 0%, #EEF3F8 100%);
}
.hero.variant-stat .content { padding-right: 380px; }

/* ——— SERVICES GRID RESPONSIVE ——— */
/* Tablet: 2-column */
@media (max-width: 1060px) {
  .services .grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-card__photo {
    height: 150px;
  }
}
/* Mobile: 1-column, shorter photo frame */
@media (max-width: 600px) {
  .services .grid {
    grid-template-columns: 1fr;
  }
  .service-card__photo {
    height: 120px;
  }
  .service-card {
    min-height: auto;
  }
}

/* ============================================================
   AI photo overlays — service cards, differentiator (why) cards,
   and case-work before/after panes. Per docs/ADC_Cleanup_UX_Report.md
   ------------------------------------------------------------ */
.service-card__photo .adc-photo,
.why-card__photo .adc-photo,
.ba-card .before .adc-photo,
.ba-card .after .adc-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 1;
}
.service-card__photo > svg {
  z-index: 0;
}
.service-card__photo .service-card__photo-idx,
.service-card__photo .service-card__photo-icon,
.why-card__overlay,
.why-card__content,
.ba-card .before .ph-caption,
.ba-card .before .label,
.ba-card .after .ph-caption,
.ba-card .after .label,
.ba-card .handle {
  z-index: 2;
}

/* Differentiator (why) cards — photo sits as its own subtle layer
   between the very faint SVG bg and the white wash overlay so the
   card stays light/readable but reads as photographic. */
.why-card__photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.55;
  pointer-events: none;
  overflow: hidden;
}
.why-card__photo .adc-photo {
  filter: saturate(0.85);
}

/* ============================================================
   BLOG SECTION
   ============================================================ */
.blog { background: var(--bone); }
.blog__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 48px;
}
.blog__more {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}
.blog__more-link {
  font-family: var(--label);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--steel);
  text-decoration: none;
  transition: color .15s ease;
}
.blog__more-link:hover { color: var(--steel-deep); }
.blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.blog-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  background: white;
  border: 1px solid var(--hair);
  padding: 24px;
  transition: box-shadow .2s ease, transform .2s ease;
  color: inherit;
}
.blog-card:hover {
  box-shadow: 0 12px 32px -16px rgba(20,56,92,0.20);
  transform: translateY(-2px);
}
.blog-card__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.blog-card__cat {
  font-family: var(--label);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  color: white;
}
.blog-card__time {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fog);
}
.blog-card__title {
  font-family: var(--head);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--charcoal);
  margin: 0 0 10px;
  flex: 1;
}
.blog-card__excerpt {
  font-size: 13.5px;
  color: var(--iron);
  line-height: 1.55;
  margin: 0 0 16px;
}
.blog-card__cta {
  font-family: var(--label);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--steel);
}

/* ============================================================
   FULL RESPONSIVE SYSTEM
   ============================================================ */

/* — Section padding — */
@media (max-width: 768px) { .sec-pad { padding: 64px 0; } }
@media (max-width: 480px) { .sec-pad { padding: 48px 0; } }

/* — Section heads (1fr 1fr → 1fr) — */
@media (max-width: 860px) {
  .services .head,
  .why .head,
  .ba .head,
  .faq-prev .head,
  .proc-strip .head {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .process .head {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 40px;
  }
}

/* — Hero — */
@media (max-width: 1060px) {
  .hero .corner-tick { display: none; }
  .hero .photo-tag { display: none; }
}
@media (max-width: 860px) {
  .hero .kpi-strip { grid-template-columns: repeat(2, 1fr); }
  .hero .content { padding: 80px 24px 120px; }
}
@media (max-width: 600px) {
  .hero { min-height: auto; }
  .hero .content { padding: 56px 20px 100px; }
  .hero .ctas { flex-direction: column; align-items: stretch; }
  .hero .ctas .btn { text-align: center; justify-content: center; }
  .hero .sub { font-size: 16px; }
  .hero-eval-badge { font-size: 13px; padding: 7px 13px; }
  .hero .eyebrow { flex-wrap: wrap; gap: 8px; }
}
@media (max-width: 480px) {
  .hero .kpi-strip { grid-template-columns: repeat(2, 1fr); }
  .hero .kpi-strip .kpi { padding: 16px 18px; }
  .hero .kpi-strip .kpi .n { font-size: 26px; }
  .hero .kpi-strip .kpi .l { font-size: 11px; }
}

/* — Insurance bar — */
@media (max-width: 600px) {
  .insurance .row { flex-direction: column; align-items: flex-start; gap: 16px; }
  .insurance .lbl {
    border-right: none;
    padding-right: 0;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--hair);
    max-width: 100%;
    flex-direction: row;
    align-items: center;
    gap: 16px;
  }
  .insurance .logos { gap: 20px; }
}

/* — Why cards: 4 → 2 → 1 — */
@media (max-width: 960px) {
  .why .grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .why .grid { grid-template-columns: 1fr; }
  .why-card { padding: 32px 24px; }
}

/* — Before/after: 3 → 2 → 1 — */
@media (max-width: 900px) {
  .ba .grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .ba .grid { grid-template-columns: 1fr; }
}

/* — Areas — */
@media (max-width: 860px) {
  .areas .inner { grid-template-columns: 1fr !important; gap: 40px; }
  .areas .map { max-width: 540px; }
}
@media (max-width: 480px) {
  .areas .city-list { grid-template-columns: 1fr; }
}

/* — Urgency CTA — */
@media (max-width: 860px) {
  .urg .inner { grid-template-columns: 1fr; gap: 40px; padding: 56px 32px; }
  .urg .cta-right { align-items: flex-start; }
}
@media (max-width: 600px) {
  .urg .inner { padding: 48px 20px; }
  .urg .phone { font-size: 38px; }
  .urg .ticker { flex-wrap: wrap; gap: 12px; }
}

/* — Footer — */
@media (max-width: 960px) {
  .footer .cols { grid-template-columns: repeat(2, 1fr); gap: 40px; }
}
@media (max-width: 600px) {
  .footer .cols { grid-template-columns: 1fr; gap: 32px; }
  .footer { padding: 48px 0 24px; }
  .footer .bottom { flex-direction: column; gap: 8px; }
}

/* — Blog section — */
@media (max-width: 860px) {
  .blog__head { grid-template-columns: 1fr; gap: 16px; margin-bottom: 32px; }
  .blog__more { justify-content: flex-start; }
  .blog__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .blog__grid { grid-template-columns: 1fr; }
}

/* — Services hub (other pages) — */
@media (max-width: 860px) {
  .services-hub .hub-head { grid-template-columns: 1fr; gap: 16px; margin-bottom: 40px; }
  .services-hub .grid-9 { grid-template-columns: repeat(2, 1fr); }
  .page-hero .head-row { grid-template-columns: 1fr; gap: 24px; }
  .ins-help .inner { grid-template-columns: 1fr; gap: 48px; }
  .cta-band .inner { grid-template-columns: 1fr; gap: 32px; }
  .cta-band .right { align-items: flex-start; }
}
@media (max-width: 600px) {
  .services-hub .grid-9 { grid-template-columns: 1fr; }
  .proc-strip .steps { grid-template-columns: repeat(2, 1fr); }
  .cta-band .phone { font-size: 36px; }
}
@media (max-width: 480px) {
  .proc-strip .steps { grid-template-columns: 1fr; }
}

/* ============================================================
   PROJECTS PAGE
   ============================================================ */

/* Two-column section heading (ba-showcase variant) */
.sec-head2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 56px;
}
@media (max-width: 860px) {
  .sec-head2 { grid-template-columns: 1fr; gap: 28px; margin-bottom: 36px; }
}

/* — Project stats strip — */
.proj-stats {
  background: white;
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
}
.proj-stats .row {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid var(--hair);
}
.proj-stats .item {
  padding: 32px 28px;
  border-right: 1px solid var(--hair);
}
.proj-stats .n {
  font-family: var(--head);
  font-weight: 800;
  font-size: 42px;
  line-height: 1;
  color: var(--steel-deep);
}
.proj-stats .n .u { color: var(--steel); font-size: 22px; margin-left: 2px; }
.proj-stats .l {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--iron);
  text-transform: uppercase;
  margin-top: 6px;
}
@media (max-width: 720px) {
  .proj-stats .row { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   BLOG HUB PAGE
   ============================================================ */

/* Hero */
.blog-page-hero {
  position: relative;
  overflow: hidden;
  background: var(--ink-anchor);
  color: white;
  padding: 80px 0 96px;
}
.blog-page-hero .grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 100px 75px;
}

/* Featured card */
.blog-featured-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  text-decoration: none;
  background: white;
  border: 1px solid var(--hair);
  overflow: hidden;
  transition: box-shadow .25s ease;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  color: inherit;
}
.blog-featured-card:hover {
  box-shadow: 0 16px 48px -16px rgba(20,56,92,0.22);
}
.blog-featured-banner {
  position: relative;
  min-height: 320px;
  background: var(--ink-anchor);
  display: flex;
  align-items: flex-end;
  padding: 28px 32px;
}
.blog-featured-content {
  padding: 40px 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Category tag pill */
.blog-cat-tag {
  font-family: var(--label);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  color: white;
  display: inline-block;
}

/* Article grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* Topics row */
.blog-topics-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.blog-topic-btn {
  font-family: var(--label);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 16px;
  border: 1px solid var(--hair);
  background: var(--bone);
  color: var(--iron);
  text-decoration: none;
  transition: all .15s ease;
}
.blog-topic-btn:hover {
  border-color: var(--steel);
  color: var(--steel);
  background: rgba(43,124,188,0.06);
}

/* ============================================================
   BLOG POST PAGE
   ============================================================ */

/* Article hero */
.blog-article-hero {
  position: relative;
  overflow: hidden;
  background: var(--ink-anchor);
  color: white;
  padding: 80px 0 72px;
}

/* Breadcrumb */
.blog-breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 32px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.40);
}
.blog-breadcrumb a {
  color: var(--steel-electric);
  text-decoration: none;
}
.blog-breadcrumb a:hover { color: white; }
.blog-breadcrumb .sep { color: rgba(255,255,255,0.25); }

/* Article meta row */
.blog-article-meta {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}
.blog-meta-item {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.50);
}
.blog-meta-dim { color: rgba(255,255,255,0.38); }

/* Article layout: 2-col body + sidebar */
.blog-layout { background: white; }
.blog-layout-inner {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 64px;
  align-items: start;
}

/* Article prose styles */
.blog-article-prose {
  font-size: 16px;
  line-height: 1.72;
  color: var(--iron);
}
.blog-article-prose h2 {
  font-family: var(--head);
  font-weight: 800;
  font-size: clamp(20px, 2.2vw, 26px);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 48px 0 16px;
  line-height: 1.1;
}
.blog-article-prose h3 {
  font-family: var(--head);
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 28px 0 10px;
}
.blog-article-prose p {
  margin: 0 0 18px;
}
.blog-article-prose ul,
.blog-article-prose ol {
  padding-left: 22px;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.blog-article-prose li { line-height: 1.6; }
.blog-article-prose strong { color: var(--ink); font-weight: 700; }
.blog-article-prose a { color: var(--steel); }
.blog-article-prose a:hover { color: var(--steel-deep); }
.blog-article-prose blockquote {
  margin: 24px 0;
  padding: 18px 22px;
  border-left: 3px solid var(--steel);
  background: var(--bone);
  font-size: 15px;
  color: var(--charcoal);
  border-radius: 0 2px 2px 0;
}
.blog-article-prose blockquote p { margin: 0; }
.blog-article-prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  font-size: 14.5px;
}
.blog-article-prose th {
  background: var(--ink-anchor);
  color: rgba(255,255,255,0.70);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 16px;
  text-align: left;
}
.blog-article-prose td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--hair);
  color: var(--iron);
}
.blog-article-prose tr:nth-child(even) td { background: var(--bone); }

/* End-of-article CTA */
.blog-article-cta {
  border-top: 3px solid var(--steel);
  background: var(--ink-anchor);
  color: white;
  padding: 48px 40px;
  margin: 48px 0 0;
}
.blog-cta-eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel-electric);
  margin-bottom: 12px;
}
.blog-article-cta h3 {
  font-family: var(--head);
  font-weight: 800;
  font-size: 28px;
  text-transform: uppercase;
  color: white;
  margin: 0 0 10px;
}
.blog-article-cta p {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin: 0 0 22px;
  max-width: 520px;
}

/* Sidebar */
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: -webkit-sticky;
  position: sticky;
  top: 24px;
}
.blog-sidebar-cta {
  background: var(--ink-anchor);
  color: white;
  padding: 28px 24px;
  border-top: 3px solid var(--steel);
}
.blog-sidebar-eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel-electric);
  margin-bottom: 8px;
}
.blog-sidebar-cta h3 {
  font-family: var(--head);
  font-weight: 800;
  font-size: 20px;
  text-transform: uppercase;
  color: white;
  margin: 0 0 10px;
  line-height: 1.1;
}
.blog-sidebar-cta p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin: 0 0 18px;
}
.blog-sidebar-note {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-top: 12px;
  text-align: center;
}

/* Sidebar TOC */
.blog-sidebar-toc {
  background: var(--bone);
  padding: 20px 20px;
  border: 1px solid var(--hair);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.blog-toc-link {
  font-family: var(--label);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--iron);
  text-decoration: none;
  padding: 5px 0;
  border-bottom: 1px solid var(--hair);
  transition: color .15s ease;
  line-height: 1.4;
}
.blog-toc-link:last-child { border-bottom: none; }
.blog-toc-link:hover { color: var(--steel); }

/* Sidebar related / services */
.blog-sidebar-related,
.blog-sidebar-services {
  padding: 20px;
  border: 1px solid var(--hair);
  background: white;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.blog-sidebar-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fog);
  margin-bottom: 14px;
}
.blog-related-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--hair);
  font-size: 13px;
  font-weight: 600;
  color: var(--iron);
  text-decoration: none;
  gap: 8px;
  transition: color .15s ease;
  line-height: 1.4;
}
.blog-related-link:last-child { border-bottom: none; }
.blog-related-link:hover { color: var(--steel); }
.blog-related-link .ar { flex-shrink: 0; font-size: 12px; color: var(--steel); }

/* Related posts grid */
.blog-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

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

/* Featured card: side-by-side → stacked */
@media (max-width: 860px) {
  .blog-featured-card { grid-template-columns: 1fr; }
  .blog-featured-banner { min-height: 200px; }
  .blog-featured-content { padding: 28px 28px 24px; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-featured-content { padding: 24px 20px 20px; }
}

/* Article layout: 2-col → 1-col */
@media (max-width: 960px) {
  .blog-layout-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .blog-sidebar {
    position: static;
  }
  .blog-sidebar-toc { display: none; } /* TOC less useful on mobile; sidebar still shows CTA */
  .blog-related-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .blog-related-grid { grid-template-columns: 1fr; }
  .blog-article-cta { padding: 32px 24px; }
  .blog-article-hero { padding: 56px 0 48px; }
  .blog-page-hero { padding: 56px 0 64px; }
  .blog-topics-row { gap: 12px; }
}

/* — Sticky filter bar — */
.proj-filter {
  background: white;
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  position: sticky;
  top: 80px;
  z-index: 20;
}
.proj-filter .row {
  display: flex;
  gap: 0;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  overflow-x: auto;
  scrollbar-width: none;
}
.proj-filter .row::-webkit-scrollbar { display: none; }
.proj-filter button {
  background: transparent;
  border: 0;
  padding: 20px 24px;
  font-family: var(--label);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--iron);
  cursor: pointer;
  position: relative;
  white-space: nowrap;
  transition: color .15s ease;
}
.proj-filter button::after {
  content: "";
  position: absolute;
  left: 24px; right: 24px;
  bottom: -1px; height: 2px;
  background: var(--steel);
  transform: scaleX(0);
  transition: transform .2s ease;
}
.proj-filter button:hover { color: var(--steel); }
.proj-filter button.on { color: var(--steel); }
.proj-filter button.on::after { transform: scaleX(1); }
.proj-filter .count {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--fog);
  margin-left: 6px;
}
@media (max-width: 880px) {
  .proj-filter { top: 0; }
}

/* — Project grid — */
.proj-grid { background: var(--bone); }
.proj-grid .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
@media (max-width: 880px) {
  .proj-grid .grid { grid-template-columns: 1fr; gap: 20px; }
}

/* — Project cards — */
.proj-card {
  background: white;
  border: 1px solid var(--hair);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.proj-card:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -20px rgba(0,0,0,0.18); }
.proj-card .img {
  aspect-ratio: 16/10;
  position: relative;
  overflow: hidden;
}
.proj-card .img .ba-mini {
  position: absolute; inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.proj-card .img .ba-mini > div {
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 12px 14px;
}
.proj-card .img .ba-mini .tag {
  font-family: var(--label);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.2em;
  padding: 4px 8px;
  text-transform: uppercase;
  background: rgba(0,0,0,0.55);
  color: white;
  backdrop-filter: blur(4px);
}
.proj-card .img .ba-mini .b .tag { background: var(--steel); color: white; }
.proj-card .img .divider {
  position: absolute;
  top: 0; bottom: 0; left: 50%;
  width: 2px;
  background: white;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.12);
}
.proj-card .img .divider::after {
  content: "◀ ▶";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 38px; height: 38px;
  background: white;
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.proj-card .body {
  padding: 26px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.proj-card .meta-row {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--steel);
}
.proj-card .meta-row .loc { color: var(--iron); }
.proj-card h3 {
  font-family: var(--head);
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  line-height: 1.05;
  margin: 0;
  color: var(--ink);
}
.proj-card .summary {
  font-size: 15px;
  color: var(--iron);
  line-height: 1.6;
  margin: 0;
}
.proj-card .more {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--cool);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--iron);
}
.proj-card .more:last-child { color: var(--steel); }
.proj-empty {
  grid-column: 1 / -1;
  padding: 64px 32px;
  text-align: center;
  font-family: var(--label);
  font-size: 15px;
  color: var(--fog);
  letter-spacing: 0.04em;
}

/* — Before/after showcase slider — */
.ba-showcase { background: var(--bone); color: var(--ink); }
.ba-showcase .wrap-inner { display: grid; grid-template-columns: 1fr; gap: 28px; }

/* Showcase slides — only one visible at a time */
.showcase-slide { display: none; }
.showcase-slide.active { display: block; }

.ba-showcase .feature-slider {
  position: relative;
  aspect-ratio: 21/9;
  background: var(--graphite);
  overflow: hidden;
  user-select: none;
  cursor: ew-resize;
  border: 1px solid var(--hair);
}
@media (max-width: 720px) {
  .ba-showcase .feature-slider { aspect-ratio: 4/3; }
}
.ba-showcase .feature-slider .side {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 24px 28px;
}
.ba-showcase .feature-slider .before { z-index: 2; }
.ba-showcase .feature-slider .label {
  font-family: var(--label);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  padding: 8px 12px;
  text-transform: uppercase;
  color: white;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
}
.ba-showcase .feature-slider .before .label { background: var(--steel); color: white; }
.ba-showcase .feature-slider .handle {
  position: absolute; top: 0; bottom: 0;
  width: 3px;
  background: white;
  z-index: 3;
  left: 50%;
}
.ba-showcase .feature-slider .handle::after {
  content: "◀ ▶";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 54px; height: 54px;
  background: white;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  letter-spacing: 3px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.4);
}
.ba-showcase .slider-nav {
  display: flex;
  gap: 14px;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--hair);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--iron);
  flex-wrap: wrap;
}
.ba-showcase .caption {
  font-family: var(--head);
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--ink);
}
.ba-showcase .dots {
  display: flex;
  gap: 8px;
}
.ba-showcase .dots button {
  width: 32px; height: 6px;
  background: var(--hair);
  border: 0;
  cursor: pointer;
  transition: background .2s ease;
  padding: 0;
}
.ba-showcase .dots button.on { background: var(--steel); }
.ba-showcase .arrows {
  display: flex;
  gap: 8px;
}
.ba-showcase .arrows button {
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid var(--hair);
  color: var(--charcoal);
  cursor: pointer;
  font-family: var(--mono);
  font-size: 14px;
  transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.ba-showcase .arrows button:hover {
  background: var(--canvas);
  border-color: var(--steel);
  color: var(--steel);
}

/* ——— SERVICES PAGE RESPONSIVE ——— */
@media (max-width: 860px) {
  .process .head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 40px; }
}

/* ═══════════════════════════════════════════════════════════
   SERVICE DETAIL PAGES  (service-detail.html.twig)
   ═══════════════════════════════════════════════════════════ */

/* ——— HERO ——— */
.svc-detail-hero {
  position: relative;
  overflow: hidden;
  background: var(--ink-anchor);
  color: #E6ECF3;
  padding: 0 0 80px;
  border-bottom: 4px solid var(--steel);
}
.svc-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 72% 30%, rgba(43,124,188,0.18), transparent 55%),
    linear-gradient(160deg, #0F2138 0%, #071523 100%);
}
.svc-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(58,159,217,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(58,159,217,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(180deg, black 0%, transparent 100%);
}
.svc-hero-wrap { position: relative; z-index: 2; padding-top: 32px; }

/* Breadcrumb */
.svc-hero-crumb {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.svc-hero-crumb a { color: var(--steel-electric); text-decoration: none; font-weight: 600; }
.svc-hero-crumb a:hover { color: white; }
.svc-hero-crumb .sep { color: rgba(255,255,255,0.2); }

/* Layout: left content + right specs */
.svc-hero-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: start;
}
.svc-hero-eyebrow {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 20px;
}
.svc-hero-eyebrow .line {
  display: block; width: 32px; height: 1px;
  background: var(--steel-electric);
}
.svc-hero-eyebrow .num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel-electric);
}
.svc-hero-h1 {
  font-family: var(--head);
  font-weight: 800;
  font-size: clamp(44px, 5.5vw, 84px);
  line-height: 0.95;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  margin: 0 0 28px;
  color: white;
}
.svc-hero-accent { color: var(--steel-electric); }
.svc-hero-lead {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255,255,255,0.72);
  max-width: 56ch;
  margin: 0 0 36px;
}
.svc-hero-ctas {
  display: flex; gap: 16px; flex-wrap: wrap;
}

/* Specs panel */
.svc-hero-specs {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 28px 32px;
  min-width: 200px;
}
.svc-specs-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel-electric);
  margin-bottom: 20px;
  font-weight: 600;
}
.svc-spec-item {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 16px 0;
}
.svc-spec-item:last-child { border-bottom: 1px solid rgba(255,255,255,0.08); }
.svc-spec-l {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 4px;
}
.svc-spec-v {
  font-family: var(--head);
  font-weight: 800;
  font-size: 36px;
  line-height: 1;
  color: white;
}
.svc-spec-u {
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--steel-electric);
  margin-left: 4px;
  vertical-align: middle;
}

/* ——— SHARED 2-COL LAYOUT ——— */
.svc-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

/* ——— INCLUDED GRID ——— */
.svc-included-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.svc-included-item {
  background: var(--canvas);
  padding: 18px 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  color: var(--iron);
  line-height: 1.5;
}
.svc-included-icon {
  color: var(--steel);
  font-size: 12px;
  margin-top: 3px;
  flex-shrink: 0;
}

/* ——— PROCESS STEPS ——— */
.svc-process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0;
}
.svc-process-step {
  padding: 28px 24px;
  border-left: 1px solid var(--hair);
  position: relative;
}
.svc-step-timing {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel-electric);
  margin-bottom: 8px;
}
.svc-step-num {
  font-family: var(--head);
  font-weight: 800;
  font-size: 40px;
  line-height: 1;
  color: var(--fog);
  margin-bottom: 12px;
}
.svc-step-title {
  font-family: var(--head);
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--ink);
  margin: 0 0 10px;
}
.svc-step-desc {
  font-size: 13.5px;
  color: var(--iron);
  line-height: 1.6;
  margin: 0;
}
.svc-step-arrow {
  position: absolute;
  top: 36px;
  right: -12px;
  z-index: 2;
  color: var(--steel-electric);
  font-size: 18px;
  font-weight: 700;
  font-family: var(--mono);
}

/* ——— SIGNS LIST ——— */
.svc-signs-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--hair);
}
.svc-sign-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid var(--hair);
  font-size: 15px;
  color: var(--charcoal);
  line-height: 1.45;
}
.svc-sign-icon {
  color: var(--steel);
  font-size: 12px;
  margin-top: 3px;
  flex-shrink: 0;
}

/* ——— RELATED SERVICES GRID ——— */
.svc-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.svc-related-card {
  background: var(--canvas);
  padding: 28px 28px 24px;
  border: 1px solid var(--hair);
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  transition: box-shadow .2s ease, transform .2s ease;
}
.svc-related-card:hover {
  box-shadow: 0 16px 40px -20px rgba(20,56,92,0.25);
  transform: translateY(-2px);
}
.svc-related-icon {
  width: 36px; height: 36px;
  color: var(--steel);
}
.svc-related-title {
  font-family: var(--head);
  font-weight: 700;
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--ink);
  margin: 0;
}
.svc-related-desc {
  font-size: 14px;
  color: var(--iron);
  line-height: 1.55;
  margin: 0;
  flex: 1;
}
.svc-related-arrow {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--steel);
  font-weight: 700;
  margin-top: 4px;
}

/* ——— URGENCY INNER LAYOUT ——— */
.urg-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  padding-top: 72px;
  padding-bottom: 72px;
}
.urg-left h2 {
  font-family: var(--head);
  font-weight: 800;
  font-size: clamp(36px, 4.2vw, 56px);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1;
  margin: 0 0 20px;
  color: white;
}
.urg-left p {
  color: rgba(255,255,255,0.72);
  font-size: 17px;
  max-width: 520px;
  margin: 0 0 24px;
}
.urg-trust {
  display: flex; gap: 24px; flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--steel-electric);
  text-transform: uppercase;
}

/* ——— FAQ open-state: hide vertical stroke of + icon ——— */
.faq-item.open .faq-plus-v { display: none; }

/* ——— SERVICE DETAIL RESPONSIVE ——— */
@media (max-width: 1024px) {
  .svc-2col { grid-template-columns: 1fr; gap: 40px; }
  .svc-hero-layout { grid-template-columns: 1fr; }
  .svc-hero-specs { min-width: 0; }
  .svc-related-grid { grid-template-columns: repeat(2, 1fr); }
  .urg-inner { grid-template-columns: 1fr; gap: 40px; }
  .urg-inner .cta-right { align-items: flex-start; }
}
@media (max-width: 640px) {
  .svc-detail-hero { padding-bottom: 56px; }
  .svc-hero-h1 { font-size: clamp(36px, 10vw, 56px); }
  .svc-hero-ctas { flex-direction: column; }
  .svc-hero-ctas .btn { width: 100%; text-align: center; }
  .svc-included-grid { grid-template-columns: 1fr; }
  .svc-process-steps { grid-template-columns: 1fr; }
  .svc-step-arrow { display: none; }
  .svc-related-grid { grid-template-columns: 1fr; }
  .urg-trust { flex-direction: column; gap: 8px; }
  .faq-q { font-size: 16px; padding: 20px 20px; }
  .faq-a .inner { padding: 0 20px 24px 20px; }
}

/* ============================================================
   AREAS HUB + LOCATION PAGES
   ============================================================ */

/* — Dark page-hero variant (areas / location) — */
.page-hero.dark {
  background: var(--ink-anchor);
  color: #E6ECF3;
  border-bottom: none;
}
.page-hero.dark .bg { display: none; }
.page-hero.dark h1 { color: white; }
.page-hero.dark .lead { color: #C4C9D0; }
.page-hero.dark .eyebrow .num { color: rgba(255,255,255,0.55); }
.page-hero.dark .eyebrow .line { background: rgba(255,255,255,0.3); }

/* — Map section — */
.areas-map-wrap {
  position: relative;
  border: 1px solid var(--hair);
  background: var(--canvas);
  border-radius: 2px;
  overflow: hidden;
  max-width: 860px;
  margin: 0 auto;
}
.areas-map-wrap svg {
  width: 100%;
  height: auto;
  display: block;
}
.areas-map-legend {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--hair);
  padding: 14px 18px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--iron);
  backdrop-filter: blur(6px);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.areas-map-legend .legend-title {
  font-weight: 600;
  color: var(--steel-deep);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.areas-map-legend .legend-item { display: flex; align-items: center; gap: 8px; }
.legend-pin {
  display: inline-block;
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.legend-pin--hq { background: var(--steel-deep); }
.legend-pin--office { background: var(--steel); }
.legend-zone {
  display: inline-block;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(43,124,188,0.2);
  border: 1.5px solid var(--steel);
  flex-shrink: 0;
}
.areas-map-note {
  text-align: center;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--fog);
  letter-spacing: 0.06em;
  margin-top: 16px;
}

/* — Area cards grid — */
.area-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.area-card {
  display: flex;
  flex-direction: column;
  background: var(--canvas);
  border: 1px solid var(--hair);
  padding: 28px 26px;
  text-decoration: none;
  color: var(--charcoal);
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.22s ease, transform 0.22s ease, border-color 0.2s ease;
}
.area-card::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 1px;
  background: var(--hair);
  transition: background 0.22s ease, height 0.22s ease;
}
.area-card:hover {
  box-shadow: 0 18px 40px -22px rgba(20,56,92,0.28);
  transform: translateY(-2px);
  border-color: var(--steel-line);
}
.area-card:hover::before { background: var(--steel); height: 3px; }
.area-card__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.area-card__idx {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--fog);
  letter-spacing: 0.08em;
}
.area-card__resp {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--steel);
  letter-spacing: 0.06em;
  font-weight: 600;
}
.area-card h3 {
  font-family: var(--head);
  font-weight: 700;
  font-size: 26px;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  margin: 0 0 6px;
  line-height: 1.05;
  color: var(--ink);
}
.area-card__county {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--steel);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.area-card p {
  font-size: 14px;
  color: var(--iron);
  line-height: 1.55;
  flex: 1;
  margin: 0 0 20px;
}
.area-card__more {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--label);
  font-weight: 600;
  font-size: 12px;
  color: var(--steel);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-top: 1px solid var(--hair);
  padding-top: 16px;
  margin-top: auto;
}
.area-card__more .ar { transition: transform 0.18s ease; }
.area-card:hover .area-card__more .ar { transform: translateX(4px); }

/* — More communities inner layout — */
.more-communities-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

/* — City chip grid — */
.city-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-content: flex-start;
  padding-top: 8px;
}
.chip {
  font-family: var(--label);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 8px 16px;
  background: var(--canvas);
  border: 1px solid var(--hair);
  color: var(--charcoal);
  transition: border-color 0.18s ease, color 0.18s ease, background 0.18s ease;
  cursor: default;
}
.chip:hover {
  border-color: var(--steel);
  color: var(--steel);
  background: rgba(43,124,188,0.04);
}

/* — Why local grid (areas hub) — */
.why-local-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.1);
}
.why-local-card {
  background: rgba(255,255,255,0.04);
  padding: 32px 28px;
}
.why-local-card__num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--steel);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.why-local-card h4 {
  font-family: var(--head);
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: white;
  margin: 0 0 12px;
  line-height: 1.1;
}
.why-local-card p {
  font-size: 14px;
  color: rgba(196,201,208,0.85);
  line-height: 1.55;
  margin: 0;
}

/* — Location hero trust row — */
.loc-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 16px;
}
.loc-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--label);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 6px 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.85);
}
.loc-trust-check {
  color: var(--steel);
  font-weight: 700;
}
.loc-eval-badge {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--steel);
  margin-bottom: 24px;
}

/* — Response promise section — */
.response-promise {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 72px;
  align-items: start;
}
.response-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--hair);
  border: 1px solid var(--hair);
  margin-top: 36px;
}
.response-stat {
  background: var(--canvas);
  padding: 20px 18px;
}
.response-stat__val {
  font-family: var(--head);
  font-weight: 800;
  font-size: 32px;
  color: var(--steel-deep);
  line-height: 1;
  text-transform: uppercase;
}
.response-stat__val span {
  font-size: 16px;
  color: var(--steel);
  margin-left: 2px;
}
.response-stat__label {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--iron);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 6px;
}
.response-promise-panel {
  background: var(--bone);
  border: 1px solid var(--hair);
  padding: 32px 28px;
  align-self: stretch;
}
.rp-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--steel);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 12px;
}
.rp-detail {
  font-size: 14.5px;
  color: var(--iron);
  line-height: 1.6;
  margin-bottom: 0;
}

/* — Local services grid — */
.loc-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--hair);
  border-left: 1px solid var(--hair);
}
.loc-service-card {
  border-right: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  background: var(--canvas);
  padding: 28px 26px;
  text-decoration: none;
  color: var(--charcoal);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  min-height: 200px;
}
.loc-service-card::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 1px;
  background: var(--hair);
  transition: background 0.2s ease, height 0.2s ease;
}
.loc-service-card:hover {
  box-shadow: 0 14px 30px -18px rgba(20,56,92,0.25);
  transform: translateY(-1px);
  z-index: 1;
}
.loc-service-card:hover::before { background: var(--steel); height: 3px; }
.loc-service-card__num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--fog);
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.loc-service-card h4 {
  font-family: var(--head);
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  color: var(--ink);
  margin: 0 0 10px;
  line-height: 1.05;
}
.loc-service-card p {
  font-size: 13.5px;
  color: var(--iron);
  line-height: 1.55;
  flex: 1;
  margin: 0;
}
.loc-service-card__more {
  font-family: var(--label);
  font-weight: 600;
  font-size: 11px;
  color: var(--steel);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.loc-service-card__more .ar { transition: transform 0.18s ease; }
.loc-service-card:hover .loc-service-card__more .ar { transform: translateX(3px); }

/* — Why ADC grid (location pages) — */
.why-adv-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.1);
}
.why-adv-card {
  background: rgba(255,255,255,0.04);
  padding: 32px 28px;
}
.why-adv-card__num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--steel);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.why-adv-card h4 {
  font-family: var(--head);
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: white;
  margin: 0 0 12px;
  line-height: 1.1;
}
.why-adv-card p {
  font-size: 14px;
  color: rgba(196,201,208,0.85);
  line-height: 1.55;
  margin: 0;
}

/* — Testimonials grid — */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: var(--canvas);
  border: 1px solid var(--hair);
  padding: 32px 30px;
  position: relative;
}
.testimonial-card__stars {
  font-size: 14px;
  color: var(--amber);
  letter-spacing: 2px;
  margin-bottom: 18px;
}
.testimonial-card__quote {
  font-size: 15.5px;
  color: var(--charcoal);
  line-height: 1.65;
  margin: 0 0 24px;
  font-style: italic;
}
.testimonial-card__who {
  border-top: 1px solid var(--hair);
  padding-top: 18px;
}
.testimonial-card__name {
  font-family: var(--label);
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
}
.testimonial-card__loc {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--fog);
  letter-spacing: 0.06em;
  margin-top: 3px;
}

/* ============================================================
   AREAS / LOCATION — RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .area-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .why-local-grid { grid-template-columns: repeat(2, 1fr); }
  .why-adv-grid { grid-template-columns: repeat(2, 1fr); }
  .loc-services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .more-communities-inner { grid-template-columns: 1fr; gap: 40px; }
  .response-promise { grid-template-columns: 1fr; gap: 40px; }
  .response-stats { grid-template-columns: repeat(3, 1fr); }
  .areas-map-legend { position: static; margin: 0; border-top: 1px solid var(--hair); border-left: none; border-right: none; border-bottom: none; flex-direction: row; flex-wrap: wrap; gap: 12px 20px; }
}
@media (max-width: 640px) {
  .area-cards-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .why-local-grid { grid-template-columns: 1fr; }
  .why-adv-grid { grid-template-columns: 1fr; }
  .loc-services-grid { grid-template-columns: 1fr; }
  .response-stats { grid-template-columns: 1fr; }
  .loc-trust-row { gap: 8px; }
  .loc-trust-pill { font-size: 11px; padding: 5px 10px; }
}


/* ============================================================
   ABOUT PAGE
   ============================================================ */

.about-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 56px;
}

.story { background: var(--paper); }
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.story-stats {
  display: flex;
  gap: 32px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--hair);
}
.story-stats .n {
  font-family: var(--head);
  font-weight: 800;
  font-size: 40px;
  line-height: 1;
  color: var(--ink);
  text-transform: uppercase;
}
.story-stats .n .u { font-size: 18px; color: var(--steel); margin-left: 2px; }
.story-stats .l {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--fog);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
}
.story-body .drop {
  font-size: 19px;
  line-height: 1.5;
  color: var(--charcoal);
  font-weight: 600;
  margin-bottom: 20px;
}
.story-body p { color: var(--iron); margin-bottom: 16px; }
.story-body em { font-style: italic; color: var(--steel-deep); }
.signed {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--hair);
  font-family: var(--label);
  font-size: 14px;
  font-weight: 600;
  color: var(--iron);
}

.values-sec { background: var(--ink-anchor); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
}
.value-card {
  background: var(--ink-anchor);
  padding: 36px 28px;
  border-top: 2px solid var(--steel);
  transition: background .2s ease;
}
.value-card:hover { background: rgba(255,255,255,0.04); }
.vk { font-family: var(--mono); font-size: 11px; color: var(--steel-electric); letter-spacing: 0.1em; margin-bottom: 20px; }
.vicon { width: 44px; height: 44px; color: var(--steel-electric); margin-bottom: 20px; }
.vicon svg { width: 100%; height: 100%; }
.value-card h3 {
  font-family: var(--head);
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: white;
  margin: 0 0 12px;
}
.value-card p { font-size: 15px; color: #C4C9D0; margin: 0; line-height: 1.65; }

.team-sec { background: var(--paper); }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.member { display: flex; flex-direction: column; }
.portrait {
  position: relative;
  height: 220px;
  overflow: hidden;
  border-top: 3px solid var(--steel);
}
.corner-tl {
  position: absolute; top: 12px; left: 12px;
  width: 20px; height: 20px;
  border-top: 2px solid rgba(255,255,255,0.3);
  border-left: 2px solid rgba(255,255,255,0.3);
}
.corner-br {
  position: absolute; bottom: 12px; right: 12px;
  width: 20px; height: 20px;
  border-bottom: 2px solid rgba(255,255,255,0.3);
  border-right: 2px solid rgba(255,255,255,0.3);
}
.info {
  padding: 24px;
  background: var(--canvas);
  border: 1px solid var(--hair);
  border-top: 0;
  flex: 1;
}
.midx { font-family: var(--mono); font-size: 11px; color: var(--steel); letter-spacing: 0.1em; margin-bottom: 8px; }
.info h3 {
  font-family: var(--head);
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--ink);
  margin: 0 0 4px;
}
.role {
  font-family: var(--label);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 12px;
}
.info p { font-size: 15px; color: var(--iron); line-height: 1.6; margin: 0; }
.crew-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 36px;
  padding: 18px 24px;
  background: var(--tint-blue);
  border: 1px solid rgba(43,124,188,0.18);
  font-size: 14px;
  color: var(--iron);
}
.crew-note .ic { color: var(--steel); flex-shrink: 0; margin-top: 2px; }

.certs-sec { background: var(--bone); }
.cert-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--hair);
  border: 1px solid var(--hair);
  margin-bottom: 48px;
}
.cert {
  background: var(--canvas);
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.cert .badge {
  width: 52px; height: 52px;
  background: var(--ink-anchor);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cert .code {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--steel-electric);
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
}
.cmeta h4 { font-family: var(--label); font-weight: 700; font-size: 14px; color: var(--ink); margin: 0 0 4px; line-height: 1.2; }
.cmeta p { font-size: 12px; color: var(--fog); margin: 0; line-height: 1.45; }
.specialties { padding: 28px; background: var(--canvas); border: 1px solid var(--hair); }
.sp-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--steel);
  letter-spacing: 0.08em;
}
.sp-head .line { height: 1px; background: var(--steel); width: 36px; display: inline-block; }
.sp-grid { display: flex; gap: 16px; flex-wrap: wrap; }
.sp {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: var(--bone);
  border: 1px solid var(--hair);
}
.sp .abbr { font-family: var(--mono); font-size: 12px; font-weight: 700; color: var(--steel); letter-spacing: 0.06em; }
.sp .sfull { font-family: var(--label); font-size: 13px; font-weight: 600; color: var(--iron); }

.facts-sec { background: var(--paper); }
.facts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--hair);
  border: 1px solid var(--hair);
}
.fact { background: var(--canvas); padding: 36px 28px; }
.flbl {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--fog);
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.flbl .no { color: var(--steel); }
.fval {
  font-family: var(--head);
  font-weight: 800;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  color: var(--ink);
  text-transform: uppercase;
}
.fval .u { font-size: clamp(18px, 2vw, 24px); color: var(--steel); margin-left: 4px; }
.ts { display: flex; align-items: flex-end; }

.fp-sec { background: var(--bone); }
.cities-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 40px; }
.city {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: var(--canvas);
  border: 1px solid var(--hair);
  font-family: var(--label);
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal);
}
.city .tick { color: var(--steel); font-size: 9px; }
.city.more { border-style: dashed; color: var(--fog); }

/* ============================================================
   REVIEWS PAGE
   ============================================================ */

.rev-summary { background: var(--bone); border-bottom: 1px solid var(--hair); padding: 56px 0; }
.rev-summary .inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}
.score { display: flex; align-items: center; gap: 32px; }
.big-n { font-family: var(--head); font-weight: 800; font-size: 96px; line-height: 1; color: var(--ink); }
.score-meta .stars { font-size: 28px; color: var(--steel); letter-spacing: 2px; margin-bottom: 8px; }
.score-meta .basis { font-size: 14px; color: var(--iron); }
.rev-badges { display: flex; gap: 20px; flex-wrap: wrap; }
.rev-badge {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 22px;
  background: var(--canvas);
  border: 1px solid var(--hair);
  min-width: 160px;
}
.rsrc { font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; color: var(--fog); text-transform: uppercase; }
.rval { font-family: var(--head); font-size: 18px; font-weight: 700; color: var(--ink); }

.rev-grid { background: var(--paper); }
.rev-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.rev-card {
  background: var(--canvas);
  border: 1px solid var(--hair);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow .2s ease, transform .2s ease;
}
.rev-card:hover { box-shadow: 0 16px 36px -20px rgba(20,56,92,0.20); transform: translateY(-2px); }
.rev-top-row { display: flex; justify-content: space-between; align-items: center; }
.rev-stars { font-size: 18px; color: var(--steel); letter-spacing: 2px; }
.rev-src { font-family: var(--mono); font-size: 11px; color: var(--fog); letter-spacing: 0.06em; }
.rev-card .quote { font-size: 15.5px; line-height: 1.65; color: var(--charcoal); flex: 1; margin: 0; font-style: italic; }
.rev-meta { display: flex; flex-direction: column; gap: 4px; padding-top: 16px; border-top: 1px solid var(--hair); }
.who { font-family: var(--label); font-weight: 700; font-size: 14px; color: var(--ink); }
.rloc { font-family: var(--mono); font-size: 11px; color: var(--fog); letter-spacing: 0.06em; }
.rev-inline-cta {
  background: var(--ink-anchor);
  color: white;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  grid-column: span 2;
}
.rev-inline-cta h3 { font-family: var(--head); font-weight: 700; font-size: 24px; text-transform: uppercase; color: white; margin: 0 0 8px; }
.rev-inline-cta p { color: #C4C9D0; font-size: 15px; margin: 0; }

.rev-sources { background: var(--bone); }
.src-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--hair);
  border: 1px solid var(--hair);
  margin-top: 48px;
}
.src-card {
  background: var(--canvas);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: background .2s ease;
  text-decoration: none;
  color: inherit;
}
.src-card:hover { background: var(--tint-blue); }
.sidx { font-family: var(--mono); font-size: 10px; color: var(--fog); letter-spacing: 0.1em; }
.sname { font-family: var(--head); font-weight: 700; font-size: 24px; color: var(--ink); text-transform: uppercase; letter-spacing: 0.01em; margin-top: 8px; }
.sval { font-size: 15px; color: var(--iron); }
.sgo { margin-top: auto; font-family: var(--label); font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--steel); }

.leave-rev { background: var(--ink-anchor); color: white; padding: 72px 0; }
.leave-rev .inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.leave-rev h2 { font-family: var(--head); font-weight: 800; font-size: clamp(28px, 3.5vw, 48px); text-transform: uppercase; line-height: 0.96; margin: 16px 0; color: white; }
.leave-rev p { color: #C4C9D0; max-width: 52ch; }

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

.faq-main { background: var(--paper); }
.faq-layout { display: grid; grid-template-columns: 240px 1fr; gap: 64px; align-items: start; }
.faq-toc { position: sticky; top: 80px; background: var(--canvas); border: 1px solid var(--hair); padding: 24px; }
.toc-label { font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--fog); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--hair); }
.faq-toc ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 2px; }
.faq-toc ul li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  font-family: var(--label);
  font-size: 13px;
  font-weight: 600;
  color: var(--iron);
  transition: color .15s ease, background .15s ease;
  text-decoration: none;
}
.faq-toc ul li a:hover { color: var(--steel); background: var(--bone); }
.faq-toc ul li a .tn { font-family: var(--mono); font-size: 10px; color: var(--steel); letter-spacing: 0.06em; }

.faq-section { margin-bottom: 56px; }
.faq-section-head { display: flex; align-items: center; gap: 16px; margin-bottom: 28px; padding-bottom: 16px; border-bottom: 2px solid var(--steel); }
.snum { font-family: var(--mono); font-size: 11px; color: var(--steel); letter-spacing: 0.1em; font-weight: 700; }
.faq-section-head h2 { font-family: var(--head); font-weight: 700; font-size: 22px; text-transform: uppercase; letter-spacing: 0.02em; color: var(--ink); margin: 0; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */

.contact-hero {
  background: var(--ink-anchor);
  color: white;
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.contact-hero .bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 78% 18%, rgba(43,124,188,0.25), transparent 55%),
    radial-gradient(ellipse at 8% 95%, rgba(20,56,92,0.30), transparent 50%);
}
.contact-hero .grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
}
.contact-hero .wrap { position: relative; z-index: 2; }
.contact-hero .crumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 40px;
}
.contact-hero .crumb a { color: rgba(255,255,255,0.55); }
.contact-hero .crumb .sep { color: rgba(255,255,255,0.2); }
.ch-row { display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: center; }
.contact-hero h1 {
  font-family: var(--head);
  font-weight: 800;
  font-size: clamp(56px, 8vw, 112px);
  line-height: 0.92;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  margin: 16px 0 24px;
  color: white;
}
.contact-hero .accent { color: var(--steel-electric); }
.contact-hero .lead { font-size: 18px; line-height: 1.55; color: rgba(255,255,255,0.75); max-width: 52ch; margin-bottom: 28px; }
.phone-col { display: flex; flex-direction: column; gap: 8px; align-items: flex-end; }
.phone-label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; color: var(--steel-electric); text-transform: uppercase; }
.phone-huge { font-family: var(--head); font-weight: 800; font-size: clamp(28px, 3.5vw, 48px); color: white; letter-spacing: 0.01em; line-height: 1; }
.phone-note { font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; color: rgba(255,255,255,0.4); }

.contact-main { background: var(--paper); }
.contact-layout { display: grid; grid-template-columns: 1fr 360px; gap: 48px; align-items: start; }
.contact-form { background: var(--canvas); border: 1px solid var(--hair); padding: 40px; position: relative; }
.contact-form .corner {
  position: absolute; top: 0; right: 0;
  width: 0; height: 0;
  border-style: solid;
  border-width: 0 28px 28px 0;
  border-color: transparent var(--bone) transparent transparent;
}
.contact-form h2 { font-family: var(--head); font-weight: 800; font-size: clamp(28px, 3.5vw, 44px); line-height: 0.96; text-transform: uppercase; letter-spacing: -0.01em; color: var(--ink); margin: 0 0 12px; }
.form-sub { font-size: 15px; color: var(--iron); margin-bottom: 28px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 28px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: span 2; }
.field label { font-family: var(--label); font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--charcoal); }
.field .req { color: var(--steel); }
.field input,
.field select,
.field textarea {
  font-family: var(--body);
  font-size: 15px;
  color: var(--charcoal);
  background: var(--paper);
  border: 1.5px solid var(--hair);
  padding: 12px 16px;
  outline: 2px solid transparent;
  transition: border-color .15s ease;
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
}
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--steel); background: white; }
.field textarea { resize: vertical; min-height: 120px; }
.submit-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.fine { font-family: var(--mono); font-size: 11px; color: var(--fog); letter-spacing: 0.06em; }
.success-msg {
  padding: 18px 20px;
  background: #EEF7F1;
  border: 1px solid #8EC9A5;
  border-left: 4px solid var(--teal);
  margin-bottom: 24px;
  font-size: 15px;
  line-height: 1.5;
  color: #1F5C33;
}

.contact-side { display: flex; flex-direction: column; gap: 24px; }
.emergency-banner { background: var(--ink-anchor); color: white; padding: 28px; border-top: 3px solid var(--steel); }
.eb-label { display: flex; align-items: center; gap: 10px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; color: var(--steel-electric); margin-bottom: 12px; }
.pulse-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--steel-electric);
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(58,159,217,0.55);
  animation: pulse 2s infinite;
}
.eb-phone { font-family: var(--head); font-weight: 800; font-size: 32px; color: white; margin-bottom: 12px; line-height: 1; }
.emergency-banner p { font-size: 14px; color: rgba(255,255,255,0.65); margin: 0; line-height: 1.55; }
.next-steps { background: var(--canvas); border: 1px solid var(--hair); padding: 28px; }
.next-steps h3 { font-family: var(--head); font-weight: 700; font-size: 18px; text-transform: uppercase; letter-spacing: 0.02em; color: var(--ink); margin: 0 0 24px; padding-bottom: 16px; border-bottom: 1px solid var(--hair); }
.nstep { display: flex; gap: 16px; margin-bottom: 20px; }
.nstep:last-child { margin-bottom: 0; }
.nnum { font-family: var(--mono); font-size: 11px; font-weight: 700; color: white; background: var(--steel); width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; letter-spacing: 0.04em; }
.nstep h4 { font-family: var(--label); font-weight: 700; font-size: 14px; color: var(--ink); margin: 0 0 4px; }
.nstep p { font-size: 13px; color: var(--iron); margin: 0; line-height: 1.5; }

.offices-sec { background: var(--bone); }
.office-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 48px; }
.office-card { background: var(--canvas); border: 1px solid var(--hair); padding: 32px; }
.oidx { font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; color: var(--fog); margin-bottom: 12px; }
.office-card h3 { font-family: var(--head); font-weight: 700; font-size: 22px; text-transform: uppercase; letter-spacing: 0.01em; color: var(--ink); margin: 0 0 20px; padding-bottom: 16px; border-bottom: 1px solid var(--hair); }
.orow { display: flex; gap: 14px; margin-bottom: 16px; align-items: flex-start; }
.orow:last-child { margin-bottom: 0; }
.oicon { color: var(--steel); flex-shrink: 0; margin-top: 2px; }
.olabel { font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fog); margin-bottom: 4px; }
.oval { font-size: 14px; color: var(--charcoal); line-height: 1.5; }
.oval a { color: var(--steel); font-weight: 600; }

.reassure-sec { background: var(--paper); }
.reassure-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--hair); border: 1px solid var(--hair); margin-top: 48px; }
.reassure-card { background: var(--canvas); padding: 36px 28px; transition: background .2s ease, transform .2s ease; }
.reassure-card:hover { background: var(--bone); transform: translateY(-2px); }
.ricon { font-size: 28px; color: var(--steel); margin-bottom: 16px; line-height: 1; }
.reassure-card h4 { font-family: var(--head); font-weight: 700; font-size: 18px; text-transform: uppercase; letter-spacing: 0.01em; color: var(--ink); margin: 0 0 10px; }
.reassure-card p { font-size: 15px; color: var(--iron); margin: 0; line-height: 1.6; }

/* ============================================================
   RESPONSIVE — ABOUT / REVIEWS / FAQ / CONTACT
   ============================================================ */

@media (max-width: 1100px) {
  .cert-grid { grid-template-columns: repeat(3, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; }
  .phone-col { align-items: flex-start; }
  .ch-row { grid-template-columns: 1fr; }
  .faq-layout { grid-template-columns: 1fr; }
  .faq-toc { position: static; }
}

@media (max-width: 900px) {
  .about-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 40px; }
  .story-grid { grid-template-columns: 1fr; gap: 40px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .facts-grid { grid-template-columns: repeat(2, 1fr); }
  .rev-inline-cta { grid-column: span 1; }
  .src-grid { grid-template-columns: repeat(2, 1fr); }
  .office-grid { grid-template-columns: 1fr; }
  .reassure-grid { grid-template-columns: repeat(2, 1fr); }
  .score { flex-direction: column; align-items: flex-start; gap: 16px; }
}

@media (max-width: 640px) {
  .team-grid { grid-template-columns: 1fr; }
  .cert-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; }
  .rev-cards-grid { grid-template-columns: 1fr; }
  .rev-inline-cta { grid-column: span 1; }
  .src-grid { grid-template-columns: repeat(2, 1fr); }
  .facts-grid { grid-template-columns: 1fr; }
  .reassure-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: span 1; }
  .contact-form { padding: 24px; }
  .rev-badges { flex-direction: column; }
  .rev-summary .inner { flex-direction: column; align-items: flex-start; gap: 32px; }
  .sp-grid { flex-direction: column; }
  .leave-rev .inner { flex-direction: column; }
  .submit-row { flex-direction: column; align-items: flex-start; }
}

/* ——— BLOG CATEGORY TAGS ——— */
.blog-cat-tag { display: inline-block; padding: 3px 10px; font-family: var(--mono); font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: white; }
.blog-cat--water-damage { background: var(--steel); }
.blog-cat--fire-smoke, .blog-cat--fire-damage { background: #9A3020; }
.blog-cat--mold { background: #2A6B3A; }
.blog-cat--insurance { background: #4A6080; }
.blog-cat--prevention, .blog-cat--seasonal { background: #3A5A7C; }

/* ——— REDUCED MOTION ——— */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .btn:hover { transform: none; }
}
