/* ==========================================================================
   DrainGo Plumbing — WEB2, built to Hasnain's mockups
   (Desktop/pmg/Draingoms: hero.png, 1.png, 2.png, 3.png, 4.png)
   Every colour below is sampled from those PNGs — see tools/mock-palette.py.
   ========================================================================== */

/* --- fonts --------------------------------------------------------------- */
@font-face {
  font-family: "Anton";
  src: url("../fonts/anton-400.woff2") format("woff2");
  font-weight: 400; font-display: swap;
}
@font-face {
  font-family: "Source Sans";
  src: url("../fonts/sourcesans-400_700.woff2") format("woff2-variations");
  font-weight: 400 700; font-display: swap;
}

/* --- tokens -------------------------------------------------------------- */
:root {
  --navy-950: #001433;   /* footer, sampled 4.png */
  --navy-900: #00122b;   /* left panel, 1.png */
  --navy-850: #010d1b;   /* dark 24/7 band, 3.png */
  --navy-800: #081e3e;   /* trust bar, 4.png */
  --navy-700: #0f2a52;
  --card-blue: #032b68;  /* blue callout, 1.png */

  --blue: #0c51d0;       /* primary action, 2.png button */
  --blue-600: #0a44ae;
  --blue-400: #1a6aef;   /* bright accent, 4.png rule */
  --blue-300: #6e9bf0;   /* small text on navy (6.3:1) */
  --blue-200: #80a3da;
  --blue-tint: #e8effc;

  --ink: #011335;        /* display heading on light */
  --body: #3a4661;
  /* was #66718a — that measured 4.23:1 on the tinted cards and 4.47:1 on
     --paper, both under AA for body text. This clears 4.7:1 everywhere. */
  --muted: #5c6880;
  --paper: #f4f6fa;      /* page ground, 1.png / 3.png */
  --paper-2: #edeef3;    /* 2.png ground */
  --band: #e6e7ec;       /* light offer band, 3.png */
  --white: #fff;
  --gold: #ffc107;       /* stars only */

  --rule: rgba(1, 19, 53, .12);
  --rule-dark: rgba(255, 255, 255, .14);

  --f-display: "Anton", "Arial Narrow", system-ui, sans-serif;
  --f-body: "Source Sans", "Segoe UI", system-ui, sans-serif;

  --pad: clamp(18px, 4.4vw, 56px);
  --maxw: 1420px;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --shadow: 0 20px 50px -28px rgba(1, 19, 53, .45);
  --hd-h: 130px; /* topbar ~44px + nav ~86px — used to size the hero */
}

/* --- reset --------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important; animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
body {
  margin: 0; background: var(--white); color: var(--body);
  font: 400 17px/1.62 var(--f-body); -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--blue); }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; }
:focus-visible { outline: 3px solid var(--blue-400); outline-offset: 3px; }
h1, h2, h3, h4 {
  margin: 0; font-family: var(--f-display); font-weight: 400;
  text-transform: uppercase; line-height: .96; letter-spacing: .005em;
  color: var(--ink);
}
.sr {
  position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip {
  position: absolute; left: -9999px; z-index: 300; background: var(--blue);
  color: #fff; padding: 12px 18px; font-weight: 700;
}
.skip:focus { left: 8px; top: 8px; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }

/* --- buttons ------------------------------------------------------------- */
.btn {
  --bg: var(--blue); --fg: #fff; --bd: var(--blue);
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 26px; border: 2px solid var(--bd); border-radius: 6px;
  background: var(--bg); color: var(--fg);
  font: 700 15px/1 var(--f-body); letter-spacing: .04em; text-transform: uppercase;
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: background .18s var(--ease), border-color .18s var(--ease),
              color .18s var(--ease), transform .18s var(--ease);
}
.btn:hover { --bg: var(--blue-600); --bd: var(--blue-600); transform: translateY(-2px); }
.btn svg { width: 18px; height: 18px; flex: none; }
.btn--outline { --bg: transparent; --fg: #fff; --bd: rgba(255, 255, 255, .55); }
.btn--outline:hover { --bg: rgba(255, 255, 255, .12); --bd: #fff; --fg: #fff; }
.btn--outline-blue { --bg: transparent; --fg: var(--blue); --bd: var(--blue); }
.btn--outline-blue:hover { --bg: var(--blue); --fg: #fff; }
.btn--outline-dark { --bg: rgba(0,0,0,.28); --fg: #fff; --bd: rgba(255,255,255,.42); }
.btn--outline-dark:hover { --bg: rgba(255,255,255,.12); --bd: rgba(255,255,255,.8); }
.btn--sm { padding: 13px 18px; font-size: 13px; border-width: 1.5px; }

/* --- topbar -------------------------------------------------------------- */
.topbar { background: var(--navy-800); color: #fff; font-size: 14px; }
.topbar__in {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; min-height: 52px; padding-top: 8px; padding-bottom: 8px;
  flex-wrap: wrap;
}
.topbar__rev { display: flex; align-items: center; gap: 10px; }
.stars { display: inline-flex; gap: 2px; color: var(--gold); }
.stars svg { width: 16px; height: 16px; }
.topbar__right { display: flex; align-items: center; gap: 18px; }
.topbar__tel {
  display: inline-flex; align-items: center; gap: 9px; color: #fff;
  text-decoration: none; font-size: 21px; font-weight: 700; letter-spacing: -.01em;
}
.topbar__tel svg { width: 19px; height: 19px; }
.topbar__tel:hover { color: var(--blue-300); }
.topbar__div { width: 1px; height: 26px; background: rgba(255, 255, 255, .25); }
.topbar__em {
  /* --blue-400 measures 4.05:1 on the topbar's near-black — under AA for 15px */
  color: var(--blue-300); font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; font-size: 15px; text-decoration: none;
  display: inline-flex; align-items: center; min-height: 40px;
}
.topbar__em:hover { color: #fff; }
.topbar__tel { min-height: 40px; }
@media (max-width: 860px) { .topbar__rev span { display: none; } }
@media (max-width: 620px) { .topbar__div, .topbar__em { display: none; } }
@media (max-width: 760px) { .topbar { display: none; } }

/* --- header -------------------------------------------------------------- */
.hd {
  position: sticky; top: 0; z-index: 100;
  background: linear-gradient(100deg, #fff 0%, #fff 42%, #eceef2 100%);
  border-bottom: 1px solid rgba(1, 19, 53, .08);
}
.hd.is-stuck { box-shadow: 0 12px 34px -26px rgba(1, 19, 53, .6); }
.hd__in { display: flex; align-items: center; gap: 20px; min-height: 84px; }
.hd__logo img { width: 168px; height: 59px; }
.hd__nav { display: flex; align-items: center; gap: 2px; margin: 0 auto; }
@media (max-width: 1180px) { .hd__nav { display: none; } }
.hd__nav a {
  display: flex; align-items: center; gap: 5px; padding: 12px 13px;
  color: var(--ink); text-decoration: none; border-radius: 4px;
  font: 700 14px/1 var(--f-body); letter-spacing: .03em; text-transform: uppercase;
  transition: color .16s var(--ease), background .16s var(--ease);
}
.hd__nav a:hover { color: var(--blue); background: rgba(12, 81, 208, .07); }
.hd__nav a[aria-current="page"] { color: var(--blue); }
.hd__nav .caret { width: 9px; height: 9px; opacity: .55; }
.hd__long { display: inline; }
.hd__short { display: none; }
.hd__cta { display: flex; align-items: center; gap: 10px; margin-left: auto; }
@media (max-width: 1180px) { .hd__cta { margin-left: auto; } }
@media (max-width: 760px) {
  :root { --hd-h: 58px; }
  .hd__in { min-height: 58px; gap: 8px; }
  .hd__logo img { width: 122px; height: 43px; }
  .hd__cta { gap: 6px; }
  .hd__cta .btn { display: flex; padding: 9px 12px; font-size: 12px; letter-spacing: .04em; gap: 5px; }
  .hd__cta .btn svg { width: 14px; height: 14px; }
  .hd__long { display: none; }
  .hd__short { display: inline; }
}

.burger {
  display: none; width: 46px; height: 46px; border: 1.5px solid var(--rule);
  border-radius: 6px; background: #fff; cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 4px;
}
@media (max-width: 1180px) { .burger { display: flex; } }
.burger i { width: 19px; height: 2px; background: var(--ink); transition: transform .22s var(--ease), opacity .22s var(--ease); }
.burger[aria-expanded="true"] i:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] i:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] i:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; left: auto;
  height: 100dvh; height: var(--dvh, 100dvh); width: min(88vw, 370px); z-index: 1200;
  background: var(--navy-950); color: #fff;
  padding: max(20px, env(safe-area-inset-top)) var(--pad) max(32px, env(safe-area-inset-bottom));
  overflow-y: auto; -webkit-overflow-scrolling: touch; overscroll-behavior: contain;
  transform: translateX(100%); transition: transform .3s var(--ease);
}
.drawer.is-open { transform: none; }
.drawer__top { display: flex; justify-content: space-between; align-items: center; min-height: 70px; padding-bottom: 18px; border-bottom: 1px solid var(--rule-dark); margin-bottom: 6px; }
.drawer__logo { width: 190px; height: auto; display: block; }
.drawer__x {
  width: 44px; height: 44px; border: 1px solid var(--rule-dark); background: none;
  color: #fff; border-radius: 6px; font-size: 22px; line-height: 1; cursor: pointer;
}
.drawer a { color: #fff; text-decoration: none; }
.drawer__ico { width: 22px; height: 22px; color: var(--blue); flex: none; }
.acc__lbl { display: flex; align-items: center; gap: 14px; }
.drawer__nav a {
  display: flex; align-items: center; gap: 14px;
  padding: 13px 0; border-bottom: 1px solid var(--rule-dark);
  font: 700 17px/1.2 var(--f-body); text-transform: uppercase; letter-spacing: .03em;
}
.drawer__nav a:hover { color: var(--blue-300); }
.drawer__tel {
  display: flex; align-items: center; gap: 16px; margin: 28px 0 10px;
  font-family: var(--f-display); font-size: 30px; letter-spacing: .01em;
}
.drawer__tel-ico {
  width: 44px; height: 44px; border-radius: 50%; background: var(--blue);
  display: flex; align-items: center; justify-content: center; flex: none; color: #fff;
}
.drawer .btn { width: 100%; padding-top: 14px; padding-bottom: 14px; }
.drawer__sub { color: rgba(255,255,255,.70); font-size: 15px; margin: 0 0 8px; line-height: 1.5; }
.drawer__addr {
  display: flex; align-items: center; gap: 7px;
  color: rgba(255,255,255,.50); font-size: 14px; margin: 0 0 22px; line-height: 1.4;
}
.drawer__addr svg { color: var(--blue-300); flex: none; }
.scrim {
  position: fixed; inset: 0; z-index: 1100; background: rgba(0, 10, 26, .6);
  opacity: 0; pointer-events: none; transition: opacity .3s var(--ease);
}
.scrim.is-on { opacity: 1; pointer-events: auto; }

/* ==========================================================================
   HERO  (hero.png)
   ========================================================================== */
.hero {
  position: relative; background: var(--navy-800); overflow: hidden; isolation: isolate;
  display: flex; flex-direction: column;
  height: calc(100vh - var(--hd-h));
  min-height: 580px;
  max-height: 800px;
}
/* The photo gets its own right-anchored column so the plumber lands clear of
   the headline. The scrim stays fully opaque past the photo's left edge, which
   is what hides the seam. */
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 57% 44%; }
.hero__scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(95deg, #010a16 0%, #010a16 27%, rgba(1,11,24,.90) 35%,
                    rgba(1,12,26,.38) 46%, rgba(1,12,26,.14) 54%, rgba(1,12,26,.04) 63%, transparent 72%),
    linear-gradient(180deg, rgba(1,10,22,.42) 0%, rgba(1,10,22,0) 24%,
                    transparent 80%, rgba(8,30,62,.88) 97%, rgba(8,30,62,.95) 100%);
}
@media (max-width: 900px) {
  .hero__media img { object-position: 62% 36%; }
  .hero__scrim {
    background: linear-gradient(180deg, rgba(1,10,22,.7) 0%, rgba(1,12,26,.86) 46%,
                                rgba(1,12,26,.95) 100%);
  }
}
.hero__in {
  position: relative; padding-top: clamp(32px, 4.5vw, 72px); padding-bottom: clamp(20px, 3vw, 48px);
  /* flex:1 rather than height:100% — this is a flex child sitting next to the
     130px promises bar, so 100% + 130px overflowed the hero and dropped the
     buttons on top of the bar. */
  flex: 1 1 auto; min-height: 0;
  display: flex; align-items: center;
}
.hero__box { max-width: 640px; }
.hero__kicker {
  margin: 0 0 6px; color: var(--blue-400); font-family: var(--f-display);
  font-size: clamp(22px, 2.6vw, 34px); text-transform: uppercase; letter-spacing: .01em;
}
.hero h1 {
  color: #fff; font-size: clamp(46px, 7.2vw, 96px); line-height: .96; margin: 0 0 24px;
}
/* "YOU CAN TRUST" is the payoff line and must not break across two lines;
   the 560px box would otherwise wrap it at 96px. */
.hero__h1-blue {
  color: var(--blue-400); display: block; font-size: 1.06em; white-space: nowrap;
}
.hero__rule { display: block; width: 92px; height: 5px; background: var(--blue-400); margin: 26px 0 24px; }
.hero__sub { color: rgba(255, 255, 255, .84); font-size: clamp(16px, 1.5vw, 19px); max-width: 50ch; }
.hero__btns { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

/* Compact layout for short screens (laptops / 1366×768) — hero + promises
   bar must both fit above the fold. Only fires on wide viewports (desktop). */
@media (max-height: 780px) and (min-width: 901px) {
  .hero__in {
    padding-top: 24px;
    padding-bottom: 16px;
    min-height: unset;
  }
  .hero h1 { font-size: min(5.5vw, 68px); }
  .hero__rule { margin: 10px 0 8px; }
  .hero__sub { font-size: 15px; }
  .hero__btns { margin-top: 12px; }
}

/* floating 24/7 card, top right */
.hero__card {
  position: absolute; top: clamp(40px, 5vw, 74px); right: var(--pad);
  display: flex; align-items: center; gap: 18px; width: min(390px, 34vw);
  padding: 20px 24px; border-radius: 10px;
  background: rgba(6, 20, 40, .62); border: 1px solid rgba(255, 255, 255, .16);
  backdrop-filter: blur(8px);
}
@media (max-width: 1100px) { .hero__card { display: none; } }
.hero__card svg { width: 58px; height: 58px; flex: none; color: #fff; }
.hero__card b {
  display: block; font-family: var(--f-display); font-size: 22px;
  text-transform: uppercase; color: var(--blue-400); line-height: 1.05;
}
.hero__card span { display: block; margin-top: 6px; font-size: 15px; color: rgba(255, 255, 255, .8); line-height: 1.42; }

/* dark band — locked to 120px so hero + bar = viewport height */
.herobar {
  background: var(--navy-800);
  flex: 0 0 130px;
  height: 130px;
  padding: 0;
}

/* four promises — full-width columns with dividers */
.promises {
  height: 100%;
  display: grid; grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1000px) { .promises { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 1000px) { .herobar { height: auto; flex: none; } .promises { height: auto; } .promise { padding: 14px clamp(8px, 2vw, 20px); } }
.promise {
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  gap: 16px; padding: 12px clamp(12px, 1.5vw, 24px) 0;
  border-right: 1px solid rgba(255, 255, 255, .14);
}
.promise:last-child { border-right: 0; }
@media (max-width: 1000px) {
  .promise:nth-child(2n) { border-right: 0; }
  .promise:nth-child(-n+2) { border-bottom: 1px solid rgba(255, 255, 255, .14); }
}
@media (max-width: 560px) {
  .promise { padding: 13px 8px; gap: 8px; }
  .ico { width: 40px; height: 40px; }
  .ico svg { width: 20px; height: 20px; }
  .promise:first-child .ico svg { width: 24px; height: 24px; }
  .promise__t b { font-size: 13px; }
  .promise__t > span { font-size: 12px; margin-top: 3px; }
}
.ico {
  width: 53px; height: 53px; border-radius: 50%; flex: none;
  border: 2px solid var(--blue-400); color: var(--blue-400);
  display: grid; place-items: center;
}
.ico svg { width: 25px; height: 25px; }
/* 24/7 icon is a thin arc + small text — bump render size so it reads equally weighted */
.promise:first-child .ico svg { width: 31px; height: 31px; }
/* Text rules are scoped to a class, never a bare `span`: a bare `span` also
   matches the sibling <span class="ico"> and, at (0,1,1), outranks `.ico`
   (0,1,0) — which silently kills the icon's colour and its display:grid. */
.promise__t b {
  display: block; font: 700 15px/1.25 var(--f-body); letter-spacing: .05em;
  text-transform: uppercase; color: #fff;
}
.promise__t > span { display: block; margin-top: 7px; font-size: 14px; color: rgba(255, 255, 255, .65); line-height: 1.45; }

/* trust / proof bar */
.trust-bar {
  background: #fff;
  border-bottom: 1px solid var(--rule);
  padding: clamp(24px, 3vw, 40px) 0;
}
.trust-bar__in {
  display: flex; align-items: center;
}
.trust-div {
  width: 1px; align-self: stretch; min-height: 64px;
  background: var(--rule); flex: none;
}
.trust-item {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 0 clamp(14px, 2vw, 32px);
  flex: 1; gap: 4px;
}
.trust-item__num {
  display: block; font-family: var(--f-display); font-size: clamp(28px, 3.5vw, 40px);
  color: var(--ink); line-height: 1;
}
.trust-item__stars {
  display: flex; gap: 2px; justify-content: center; color: var(--gold);
}
.trust-item__stars svg { width: 16px; height: 16px; }
.trust-item__label {
  display: block; font: 700 13px/1.2 var(--f-body);
  text-transform: uppercase; letter-spacing: .04em; color: var(--ink);
}
.trust-item__sub {
  display: block; font-size: 13px; color: var(--muted);
  line-height: 1.35; max-width: 18ch;
}
.trust-item__ico {
  border-color: var(--blue); color: var(--blue);
  width: 44px; height: 44px; margin-bottom: 6px;
}
@media (max-width: 900px) {
  .trust-bar__in { flex-wrap: wrap; }
  .trust-div { display: none; }
  .trust-item { flex: 0 0 50%; padding: 16px 12px;
    border-right: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
  .trust-item:nth-child(even) { border-right: 0; }
  .trust-item:nth-last-child(-n+2):not(:nth-child(even)),
  .trust-item:last-child { border-bottom: 0; }
}
@media (max-width: 480px) {
  .trust-item { flex: 0 0 100%; border-right: 0 !important;
    border-bottom: 1px solid var(--rule) !important; }
  .trust-item:last-child { border-bottom: 0 !important; }
}

/* ==========================================================================
   SERVICES GRID
   ========================================================================== */
.svcs-grid {
  background: var(--paper);
  padding: clamp(48px, 6vw, 84px) 0;
}
.svcs-grid__head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 20px; margin-bottom: clamp(28px, 3.5vw, 44px); flex-wrap: wrap;
}
.svcs-grid__h2 { font-size: clamp(30px, 4vw, 52px); margin: 0; }
.svcs-grid__loc {
  display: flex; align-items: center; gap: 7px; margin: 0;
  font: 700 13px/1 var(--f-body); letter-spacing: .06em; text-transform: uppercase;
  color: var(--blue); white-space: nowrap; flex-shrink: 0;
}
.svcs-grid__loc svg { width: 15px; height: 15px; flex: none; }
.svcs-cards {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
}
@media (max-width: 900px) { .svcs-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .svcs-cards { grid-template-columns: 1fr; } }
.svcs-card {
  display: flex; align-items: flex-start; gap: 14px; padding: 20px 18px;
  background: #fff; border-radius: 8px; border: 1px solid var(--rule);
  text-decoration: none; color: var(--ink);
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease), transform .18s var(--ease);
}
.svcs-card:hover { border-color: rgba(12,81,208,.28); box-shadow: var(--shadow); transform: translateY(-2px); }
.svcs-card .ico { width: 44px; height: 44px; flex: none; }
.svcs-card__t b { display: block; font: 700 15px/1.25 var(--f-body); color: var(--ink); }
.svcs-card__t span { display: block; margin-top: 4px; font-size: 14px; color: var(--muted); line-height: 1.4; }
.svcs-grid__cta { text-align: center; margin-top: clamp(28px, 3.5vw, 44px); }

/* ==========================================================================
   SCREEN 1 — 24/7 emergency  (1.png)
   ========================================================================== */
.s1 { position: relative; background: var(--paper); overflow: hidden; }
.s1__navy {
  position: absolute; inset: 0 auto 0 0; width: 41%; background: var(--navy-900);
}
@media (max-width: 980px) { .s1__navy { display: none; } }
.s1__dots {
  position: absolute; top: 26px; left: 26px; width: 120px; height: 74px;
  background-image: radial-gradient(var(--blue-400) 1.6px, transparent 1.7px);
  background-size: 15px 15px; opacity: .55;
}
@media (max-width: 980px) { .s1__dots { display: none; } }
.s1__in {
  position: relative; display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 66px); align-items: center;
  padding-top: clamp(48px, 6vw, 92px); padding-bottom: clamp(48px, 6vw, 92px);
}
@media (max-width: 980px) { .s1__in { grid-template-columns: 1fr; } }
.s1__media { position: relative; }
.s1__media img { width: 100%; height: auto; border-radius: 8px; box-shadow: var(--shadow); }
.s1__media::before {
  content: ""; position: absolute; right: -16px; top: 40px; bottom: 40px; width: 60%;
  background: var(--blue); border-radius: 8px; z-index: -1;
}
.s1__eyebrow {
  font: 700 20px/1 var(--f-body); letter-spacing: .02em; text-transform: uppercase;
  color: var(--ink); margin: 0 0 14px;
}
.s1__eyebrow em { font-style: normal; color: var(--blue); }
.s1 h2 { font-size: clamp(34px, 4.4vw, 60px); }
.s1 h2 em { font-style: normal; color: var(--blue); }
.s1__rule { width: 96px; height: 4px; background: var(--blue); margin: 22px 0 24px; }
.s1__copy p { color: var(--body); }
.s1__callout {
  display: flex; align-items: center; gap: 22px; margin-top: 30px;
  padding: 26px 28px; border-radius: 8px; background: var(--card-blue); color: #fff;
}
.s1__callout .ico { width: 74px; height: 74px; border-color: rgba(255, 255, 255, .5); color: #fff; }
.s1__callout .ico svg { width: 36px; height: 36px; }
/* `.s1__copy p` sets the body colour and outranks inheritance from the card —
   without this the white-on-navy callout renders as dark grey on navy (1.4:1). */
.s1__callout p { margin: 0; font: 700 19px/1.45 var(--f-body); color: #fff; }
.s1__callout b { color: var(--blue-300); font-weight: 700; }

/* dark 4-up card under the collage */
.s1__stats {
  position: relative; margin-top: 26px; display: grid; grid-template-columns: repeat(4, 1fr);
  background: var(--navy-950); border-radius: 8px; overflow: hidden;
}
@media (max-width: 620px) { .s1__stats { grid-template-columns: repeat(2, 1fr); } }
.s1__stat {
  padding: 26px 14px; text-align: center; border-right: 1px solid rgba(255, 255, 255, .12);
}
.s1__stat:last-child { border-right: 0; }
@media (max-width: 620px) {
  .s1__stat:nth-child(2n) { border-right: 0; }
  .s1__stat:nth-child(-n+2) { border-bottom: 1px solid rgba(255, 255, 255, .12); }
}
.s1__stat .ico { margin: 0 auto 14px; width: 46px; height: 46px; }
.s1__stat b {
  display: block; font: 700 14px/1.25 var(--f-body); letter-spacing: .05em;
  text-transform: uppercase; color: #fff;
}
.s1__stat-t { display: block; margin-top: 7px; font-size: 14px; color: rgba(255, 255, 255, .66); line-height: 1.45; }

/* ==========================================================================
   SCREEN 2 — our services  (2.png)
   ========================================================================== */
.s2 { background: var(--paper-2); padding: clamp(52px, 6.5vw, 100px) 0; position: relative; overflow: hidden; }
.s2__dots {
  position: absolute; top: 24px; left: 30px; width: 110px; height: 66px;
  background-image: radial-gradient(rgba(1, 19, 53, .22) 1.6px, transparent 1.7px);
  background-size: 15px 15px;
}
.s2__in { position: relative; display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 2fr); gap: clamp(28px, 4vw, 60px); align-items: start; }
@media (max-width: 1080px) { .s2__in { grid-template-columns: 1fr; } }
.eyebrow {
  display: flex; align-items: center; gap: 12px; margin: 0 0 16px;
  font: 700 14px/1 var(--f-body); letter-spacing: .14em; text-transform: uppercase;
  color: var(--blue);
}
.eyebrow::before { content: ""; width: 34px; height: 3px; background: var(--blue); }
.s2 h2 { font-size: clamp(40px, 5.4vw, 74px); }
.s2__lede { margin: 20px 0 26px; color: var(--body); }
.checks li {
  display: flex; align-items: center; gap: 14px; padding: 9px 0;
  font-size: 16px; color: var(--ink);
}
.checks li::after { content: ""; }
.checks svg { width: 24px; height: 24px; color: var(--blue); flex: none; }
.checks i { display: block; width: 1px; height: 22px; background: var(--rule); flex: none; }
.s2__btn { margin-top: 26px; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px) { .cards { grid-template-columns: 1fr; max-width: 460px; } }
.card {
  background: #fff; border-radius: 8px; overflow: hidden; box-shadow: var(--shadow);
  border-bottom: 5px solid var(--blue); display: flex; flex-direction: column;
  text-decoration: none;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease);
}
.card:hover { transform: translateY(-5px); box-shadow: 0 26px 54px -26px rgba(1, 19, 53, .55); }
.card__media { position: relative; aspect-ratio: 4 / 3; }
.card__media img { width: 100%; height: 100%; object-fit: cover; }
.card__ico {
  position: absolute; left: 24px; bottom: -30px; width: 62px; height: 62px;
  border-radius: 50%; background: #fff; border: 2px solid var(--blue-tint);
  display: grid; place-items: center; color: var(--blue);
  box-shadow: 0 8px 22px -12px rgba(1, 19, 53, .5);
}
.card__ico svg { width: 28px; height: 28px; }
.card__body { padding: 46px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.card h3 { font-size: 26px; }
.card__rule { width: 42px; height: 3px; background: var(--blue); margin: 12px 0 14px; }
.card p { color: var(--body); font-size: 16px; flex: 1; }
.card__more {
  display: inline-flex; align-items: center; gap: 12px; margin-top: 8px;
  font: 700 14px/1 var(--f-body); letter-spacing: .06em; text-transform: uppercase;
  color: var(--blue);
}
.card__more svg { width: 20px; height: 20px; transition: transform .2s var(--ease); }
.card:hover .card__more svg { transform: translateX(6px); }

.stats {
  margin-top: clamp(30px, 3.6vw, 48px); background: #fff; border-radius: 10px;
  display: grid; grid-template-columns: repeat(4, 1fr); box-shadow: var(--shadow);
}
@media (max-width: 900px) { .stats { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .stats { grid-template-columns: 1fr; } }
.stat {
  display: flex; align-items: center; gap: 16px; padding: 26px 24px;
  border-right: 1px solid var(--rule);
}
.stat:last-child { border-right: 0; }
@media (max-width: 900px) {
  .stat:nth-child(2n) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--rule); }
}
.stat__ico {
  width: 56px; height: 56px; border-radius: 50%; background: var(--blue-tint);
  color: var(--blue); display: grid; place-items: center; flex: none;
}
.stat__ico svg { width: 27px; height: 27px; }
.stat__t b { display: block; font-family: var(--f-display); font-size: 32px; color: var(--ink); line-height: 1; }
.stat__t u {
  display: block; text-decoration: none; margin-top: 5px;
  font: 700 13px/1.2 var(--f-body); letter-spacing: .05em; text-transform: uppercase; color: var(--ink);
}
.stat__t > span { display: block; margin-top: 4px; font-size: 14px; color: var(--muted); }

/* ==========================================================================
   SCREEN 3 — testimonials + bands  (3.png)
   ========================================================================== */
.s3 { background: var(--paper); padding: clamp(52px, 6.5vw, 96px) 0 0; position: relative; overflow: hidden; }
.s3__head { text-align: center; margin-bottom: 40px; }
.s3__title { display: flex; align-items: center; justify-content: center; gap: 22px; }
.s3__title::before, .s3__title::after { content: ""; width: clamp(40px, 8vw, 104px); height: 3px; background: var(--blue); }
.s3 h2 { font-size: clamp(34px, 4.6vw, 58px); }
.s3__sub {
  margin: 12px 0 0; font: 700 18px/1.3 var(--f-body); letter-spacing: .04em;
  text-transform: uppercase; color: var(--blue);
}
.quote {
  position: relative; max-width: 1060px; margin: 0 auto;
  background: #fff; border-radius: 10px; padding: 54px clamp(26px, 5vw, 76px) 40px;
  box-shadow: var(--shadow); text-align: center;
}
.quote__mark {
  position: absolute; top: -26px; left: 50%; transform: translateX(-50%);
  width: 54px; height: 54px; border-radius: 50%; background: #fff;
  border: 1.5px solid var(--blue-tint); display: grid; place-items: center; color: var(--blue);
}
.quote__mark svg { width: 22px; height: 22px; }
.quote blockquote {
  margin: 0; font-size: clamp(17px, 1.7vw, 21px); line-height: 1.62;
  font-style: italic; color: var(--body);
}
.quote__by { text-align: center; margin-top: 26px; }
.quote__avatar {
  width: 52px; height: 52px; border-radius: 50%; background: var(--blue);
  color: #fff; display: grid; place-items: center; margin: 0 auto 12px;
}
.quote__avatar svg { width: 26px; height: 26px; }
.quote__by b {
  display: block; font: 700 17px/1 var(--f-body); letter-spacing: .06em;
  text-transform: uppercase; color: var(--ink); margin-bottom: 8px;
}
.quote__by .stars { justify-content: center; }
.quote__note { max-width: 1060px; margin: 22px auto 0; text-align: center; font-size: 14px; color: var(--muted); }

.bands {
  display: grid; grid-template-columns: 1fr 1fr; margin-top: clamp(38px, 4.5vw, 62px);
  border-radius: 10px 10px 0 0; overflow: hidden;
}
@media (max-width: 900px) { .bands { grid-template-columns: 1fr; } }
.band--dark {
  position: relative; display: flex; align-items: center; gap: 26px;
  padding: clamp(34px, 4vw, 54px) clamp(24px, 3vw, 44px);
  background: var(--navy-850); color: #fff; overflow: hidden; isolation: isolate;
}
.band--dark img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  z-index: -2; opacity: .32;
}
.band--dark::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(90deg, rgba(1,13,27,.94), rgba(1,13,27,.72));
}
.band--dark .ico { width: 96px; height: 96px; border-width: 3px; }
.band--dark .ico svg { width: 52px; height: 52px; }
.band--dark h3 { font-size: clamp(24px, 2.6vw, 34px); color: #fff; }
.band--dark h3 em { display: block; font-style: normal; color: var(--blue-400); }
.band--dark p { margin: 12px 0 0; color: rgba(255, 255, 255, .78); font-size: 16px; }
.band--light {
  display: flex; align-items: center; gap: 26px;
  padding: clamp(34px, 4vw, 54px) clamp(24px, 3vw, 44px); background: var(--band);
}
.band--light .ico {
  width: 100px; height: 100px; border-style: dashed; border-color: rgba(12, 81, 208, .5);
  color: var(--blue);
}
.band--light .ico svg { width: 46px; height: 46px; }
.band--light h3 { font-size: clamp(24px, 2.6vw, 34px); }
.band--light p { margin: 12px 0 18px; font-size: 16px; color: var(--body); }

/* ==========================================================================
   REVIEWS — 3-card Google review grid
   ========================================================================== */
.s-rev { background: var(--white); padding: clamp(52px, 6.5vw, 96px) 0 clamp(40px, 5vw, 72px); }
.s-rev__head { text-align: center; margin-bottom: 40px; }
.s-rev__head .eyebrow { justify-content: center; }
.s-rev__head h2 { font-size: clamp(34px, 4.6vw, 56px); }
.s-rev__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
@media (max-width: 900px) { .s-rev__grid { grid-template-columns: 1fr; max-width: 540px; margin: 0 auto; } }
.rv-card {
  background: var(--paper); border: 1px solid var(--rule); border-radius: 10px;
  padding: 28px 28px 24px; display: flex; flex-direction: column; gap: 16px;
}
.rv-card .stars svg { width: 18px; height: 18px; }
.rv-card blockquote {
  margin: 0; font-size: 16px; line-height: 1.65; color: var(--body); flex: 1;
}
.rv-card__by {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; border-top: 1px solid var(--rule); padding-top: 16px; margin-top: auto;
}
.rv-card__by cite { font-style: normal; font-weight: 700; font-size: 15px; color: var(--ink); }
.rv-card__badge {
  display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--muted);
}
.s-rev__foot { text-align: right; margin-top: 28px; }
.s-rev__more {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--blue); font: 700 14px/1 var(--f-body); letter-spacing: .08em;
  text-transform: uppercase; text-decoration: none;
}
.s-rev__more svg { width: 14px; height: 14px; transition: transform .15s var(--ease); }
.s-rev__more:hover svg { transform: translateX(4px); }

/* ==========================================================================
   SERVICE AREA + FINANCING
   ========================================================================== */
.s-af { background: var(--paper); padding: clamp(52px, 6.5vw, 96px) 0; }
.s-af__grid {
  display: grid; grid-template-columns: 1.85fr 1fr; gap: 24px;
  align-items: stretch;
}
@media (max-width: 960px) { .s-af__grid { grid-template-columns: 1fr; } }

/* Service Area card — internal left/right split */
.s-af__area {
  display: grid; grid-template-columns: 45% 55%;
  background: var(--white); border-radius: 12px; box-shadow: var(--shadow);
  overflow: hidden;
}
@media (max-width: 960px) { .s-af__area { grid-template-columns: 1fr; } }
.s-af__area-text {
  padding: clamp(28px, 3vw, 40px);
  display: flex; flex-direction: column; gap: 16px;
}
/* Headline fix — force two-line break, prevent orphan words */
.s-af__area-text h2 {
  font-size: clamp(22px, 2.1vw, 30px); margin: 0; line-height: 1.18;
}
/* Map container — fills grid cell height */
.s-af__area-map {
  position: relative; background: #e8edf5; min-height: 320px;
}
@media (max-width: 960px) { .s-af__area-map { min-height: 280px; } }
#service-map {
  position: absolute; inset: 0; width: 100%; height: 100%;
}
/* Subtle tile desaturation so map doesn't overpower the card */
#service-map .leaflet-tile { filter: saturate(0.75) brightness(1.04); }
/* Map city labels — transparent, no box */
.leaflet-tooltip.map-tip {
  background: transparent; border: none; box-shadow: none;
  padding: 2px 5px;
  font: 600 12px/1.15 system-ui, -apple-system, sans-serif;
  color: #0d1c3d;
  text-shadow: 0 1px 3px rgba(255,255,255,.92), 0 0 8px rgba(255,255,255,.6);
  white-space: nowrap; pointer-events: none;
}
.leaflet-tooltip.map-tip.map-tip--main {
  font-size: 14px; font-weight: 700;
}
.leaflet-tooltip.map-tip::before { display: none !important; }
/* Leaflet attribution — smaller on mobile */
#service-map .leaflet-control-attribution { font-size: 10px; }
/* Jackson sonar ping — two CSS rings pulsing outward, GPU-composited */
.map-ping {
  position: absolute;
  width: 20px; height: 20px; left: -10px; top: -10px;
  border-radius: 50%;
  border: 2.5px solid #1458D4;
  pointer-events: none;
  transform-origin: center;
  animation: map-ping 2.4s cubic-bezier(0.2, 0.8, 0.3, 1) infinite;
}
.map-ping-b { animation-delay: 1.2s; }
@keyframes map-ping {
  0%   { transform: scale(0.5); opacity: 0.8; }
  100% { transform: scale(6.5); opacity: 0; }
}
/* Mobile: map sits below the text column */
@media (max-width: 960px) {
  .s-af__area { display: flex; flex-direction: column; }
  .s-af__area-map { flex: none; min-height: 300px; }
}

.s-af__list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 10px; flex: 1;
}
.s-af__list li {
  display: flex; align-items: center; gap: 10px;
  font: 700 15px/1.2 var(--f-body); color: var(--ink);
}
.s-af__list li svg { width: 19px; height: 19px; color: var(--blue); flex: none; }
.s-af__link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--blue); font: 700 13px/1 var(--f-body); letter-spacing: .08em;
  text-transform: uppercase; text-decoration: none; margin-top: auto;
}
.s-af__link svg { width: 13px; height: 13px; transition: transform .15s var(--ease); }
.s-af__link:hover svg { transform: translateX(4px); }

/* Financing card — matches area card height */
.s-af__fin {
  background: var(--white); border-radius: 12px;
  padding: clamp(28px, 3vw, 44px); box-shadow: var(--shadow);
  display: flex; flex-direction: column;
}
.s-af__fin .eyebrow { margin-bottom: 4px; }
.s-af__fin h2 { font-size: clamp(26px, 2.8vw, 40px); margin: 0 0 14px; line-height: 1.15; }
.s-af__fin > p { margin: 0; color: var(--body); font-size: 16px; line-height: 1.6; }
.s-fin__ico {
  flex: 1; display: flex; align-items: center; justify-content: center; padding: 16px 0;
}
.s-fin__ico svg { display: block; }
.s-fin__btn {
  display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%;
  padding: 16px; font-size: 15px;
}

/* ==========================================================================
   PLUMBING PROBLEM CTA
   ========================================================================== */
.s-pb { background: var(--navy-800); padding: clamp(48px, 6vw, 80px) 0; }
.s-pb__in { display: flex; align-items: center; gap: clamp(28px, 4vw, 60px); }
@media (max-width: 900px) {
  .s-pb__in { flex-direction: column; text-align: center; }
  .s-pb__btns { flex-direction: column; width: 100%; max-width: 340px; }
}
.s-pb__ico { flex: none; }
.s-pb__ico svg { display: block; }
.s-pb__copy { flex: 1; }
.s-pb__copy h2 { font-size: clamp(32px, 4vw, 54px); color: #fff; margin: 0 0 12px; line-height: 1.1; }
.s-pb__copy p { margin: 0; color: rgba(255,255,255,.72); font-size: 17px; }
.s-pb__btns { flex: none; display: flex; flex-direction: column; gap: 14px; min-width: 240px; }
.s-pb__tel {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  border: 2px solid rgba(255,255,255,.6); border-radius: 6px; padding: 14px 24px;
  color: #fff; font: 700 18px/1 var(--f-body); letter-spacing: .04em; text-decoration: none;
  transition: border-color .18s var(--ease), background .18s var(--ease);
}
.s-pb__tel:hover { border-color: #fff; background: rgba(255,255,255,.06); }
.s-pb__tel svg { width: 20px; height: 20px; }
.s-pb .btn { font-size: 16px; padding: 16px 28px; display: flex; align-items: center; justify-content: center; gap: 8px; }
.s-pb .btn svg { width: 18px; height: 18px; }

/* ==========================================================================
   SCREEN 4 — footer  (4.png)
   ========================================================================== */
.ft { background: var(--navy-950); color: rgba(255, 255, 255, .74); font-size: 16px; }
.ft__top {
  display: grid; grid-template-columns: 1.35fr 1fr 1fr 1.3fr;
  gap: clamp(26px, 3.4vw, 56px); padding-top: clamp(48px, 6vw, 84px); padding-bottom: clamp(38px, 4vw, 58px);
}
@media (max-width: 1000px) { .ft__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .ft__top { grid-template-columns: 1fr; } }
.ft__logo img { width: 190px; height: 67px; margin-bottom: 20px; }
.ft h4 { color: #fff; font-size: 24px; margin-bottom: 10px; }
.ft__hr { width: 46px; height: 3px; background: var(--blue-400); margin-bottom: 20px; }
.ft a { color: rgba(255, 255, 255, .74); text-decoration: none; }
.ft a:hover { color: #fff; }
.ft__badges { margin: 22px 0 24px; }
.ft__badges li { display: flex; align-items: center; gap: 14px; padding: 8px 0; }
.ft__badges b { font: 700 14px/1.3 var(--f-body); letter-spacing: .05em; text-transform: uppercase; color: #fff; }
.badge-ico {
  width: 42px; height: 42px; border-radius: 50%; background: var(--blue);
  color: #fff; display: grid; place-items: center; flex: none;
}
.badge-ico svg { width: 20px; height: 20px; }
.ft__pay { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.ft__pay img { height: 34px; width: auto; background: #fff; border-radius: 4px; padding: 5px 8px; }
.ft__links li { border-bottom: 1px solid rgba(255, 255, 255, .08); }
.ft__links a { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 0; }
.ft__links svg { width: 8px; height: 13px; opacity: .5; flex: none; }
.ft__links a:hover svg { opacity: 1; }
.ft__links-more { border-bottom: none !important; }
.ft__links-more a { color: var(--blue-300); font: 700 13px/1 var(--f-body); letter-spacing: .06em; padding-top: 14px; }
.ft__links-more svg { width: 13px; height: 13px; opacity: 1; color: var(--blue-300); }
.ft__contact li { display: flex; align-items: flex-start; gap: 14px; padding: 10px 0; }
.ft__contact a { display: inline-flex; align-items: center; min-height: 40px; }
.ft__contact-t b { display: block; font-size: 20px; font-weight: 700; color: #fff; letter-spacing: -.01em; }
.ft__contact a b:hover { color: var(--blue-300); }
.ft__contact-t > span { display: block; font-size: 15px; color: rgba(255, 255, 255, .66); line-height: 1.45; }
.ft__contact .btn { margin-top: 16px; }

.ft__trust {
  background: var(--navy-800); border-top: 1px solid rgba(255, 255, 255, .07);
}
.ft__trust-in {
  display: flex; align-items: center; justify-content: space-between; gap: 22px;
  padding: 22px 0; flex-wrap: wrap;
}
.ft__trust-i { display: flex; align-items: center; gap: 14px; }
.ft__trust-i b { font: 700 15px/1.2 var(--f-body); letter-spacing: .05em; text-transform: uppercase; color: #fff; }
.ft__rating { display: flex; align-items: center; gap: 12px; }
/* `> span:last-child`, not a bare `span`: that also matched `.stars` and
   outranked its gold, painting the star row plain white. */
.ft__rating > span:last-child { font-size: 15px; color: rgba(255, 255, 255, .8); }
.ft__bot {
  background: var(--navy-950); border-top: 1px solid rgba(255, 255, 255, .07);
}
.ft__bot-in {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding-top: 22px; padding-bottom: 22px; flex-wrap: wrap; font-size: 15px; color: rgba(255, 255, 255, .6);
}
.ft__bot-l { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.ft__bot-l a { display: inline-flex; align-items: center; min-height: 40px; }
.ft__social { display: flex; gap: 12px; }
.ft__social a {
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, .28);
  display: grid; place-items: center; color: #fff;
  transition: background .18s var(--ease), border-color .18s var(--ease);
}
.ft__social a:hover { background: var(--blue); border-color: var(--blue); }
.ft__social svg { width: 18px; height: 18px; }

/* --- mobile call bar ----------------------------------------------------- */
.callbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 140; display: none;
  background: var(--navy-950); border-top: 2px solid var(--blue-400);
  transform: translateY(110%); transition: transform .3s var(--ease);
  padding-bottom: env(safe-area-inset-bottom);
}
.callbar.is-up { transform: none; }
@media (max-width: 760px) { .callbar { display: block; } }
.callbar__in { display: grid; grid-template-columns: 1fr 1fr; }
.callbar a {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  padding: 15px 8px; color: #fff; text-decoration: none;
  font: 700 14px/1 var(--f-body); letter-spacing: .05em; text-transform: uppercase;
}
.callbar a + a { background: var(--blue); }
.callbar svg { width: 16px; height: 16px; }

/* ==========================================================================
   HERO SLIDER
   ========================================================================== */
/* Grid stacking, not absolute positioning: the grid sizes itself to the
   TALLEST slide, so a slide with more copy can never be clipped. */
.hero__slides { display: grid; flex: 1 1 auto; min-height: 0; position: relative; }
.hero__slide {
  grid-area: 1 / 1; position: relative; height: 100%;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .7s var(--ease), visibility 0s linear .7s;
}
.hero__slide.is-on {
  opacity: 1; visibility: visible; pointer-events: auto;
  transition: opacity .7s var(--ease), visibility 0s;
}
.no-js .hero__slide { opacity: 1; visibility: visible; }
.no-js .hero__slide ~ .hero__slide { display: none; }

/* team photo: solid navy behind headline, sharp drop into the team zone so
   crew faces show at natural exposure — combined with object-position shift
   that moves the team ~35px right in the container */
.hero__slide--team .hero__scrim {
  background:
    linear-gradient(90deg,
      rgba(8,30,62,.97) 0%,
      rgba(8,30,62,.94) 22%,
      rgba(8,30,62,.65) 30%,
      rgba(8,30,62,.12) 38%,
      rgba(8,30,62,.01) 44%,
      transparent 50%),
    linear-gradient(180deg,
      rgba(1,10,22,.20) 0%, rgba(1,10,22,0) 14%,
      transparent 82%, rgba(8,30,62,.86) 97%, rgba(8,30,62,.95) 100%);
}
.hero__slide--team .hero__media img { object-position: 15% 32%; }
@media (max-width: 900px) {
  .hero__slide--team .hero__scrim {
    background: linear-gradient(180deg, rgba(1,10,22,.66) 0%, rgba(1,12,26,.84) 46%,
                                rgba(1,12,26,.94) 100%);
  }
}

/* slide 2's headline is a <p>, not an h1 — the page keeps exactly one h1 */
.hero__h {
  margin: 0; color: #fff; font-family: var(--f-display); font-weight: 400;
  text-transform: uppercase; letter-spacing: .005em; line-height: .96;
  font-size: clamp(38px, 5.4vw, 74px);
}

.hero__ui {
  position: absolute; left: 0; right: 0; bottom: 18px; z-index: 3;
  display: flex; align-items: center; justify-content: center; gap: 16px;
}
@media (max-width: 900px) { .hero__ui { bottom: 10px; gap: 10px; } }
.hero__arrow {
  width: 42px; height: 42px; border-radius: 50%; cursor: pointer;
  background: rgba(6, 20, 40, .5); border: 1.5px solid rgba(255, 255, 255, .34);
  color: #fff; display: grid; place-items: center;
  transition: background .18s var(--ease), border-color .18s var(--ease);
}
.hero__arrow:hover { background: var(--blue); border-color: var(--blue); }
.hero__arrow svg { width: 15px; height: 15px; }
.hero__arrow[data-hero="prev"] svg { transform: rotate(180deg); }
.hero__dots { display: flex; gap: 9px; }
/* the visible dot is a 5px bar; the button itself stays 42x28 so it is a real
   tap target rather than a 5px sliver */
.hero__dots button {
  width: 48px; height: 36px; border: 0; background: none; padding: 0;
  cursor: pointer; display: grid; place-items: center;
}
.hero__dots button::after {
  content: ""; display: block; width: 34px; height: 5px; border-radius: 3px;
  background: rgba(255, 255, 255, .38);
  transition: background .2s var(--ease), width .2s var(--ease);
}
.hero__dots button:hover::after { background: rgba(255, 255, 255, .62); }
.hero__dots button[aria-pressed="true"]::after { background: var(--blue-400); width: 48px; }

/* ==========================================================================
   MEGA MENU
   ========================================================================== */
.hd { position: sticky; }
.hd__has-mega { position: static; }   /* so the panel resolves against .hd */
.hd__has-mega > a { display: flex; align-items: center; gap: 6px; }
.hd__has-mega > a[aria-expanded="true"] { color: var(--blue); background: rgba(12, 81, 208, .07); }
.hd__has-mega > a[aria-expanded="true"] .caret { transform: rotate(180deg); }
.caret { width: 10px; height: 10px; opacity: .6; transition: transform .2s var(--ease); }

.mega {
  position: absolute; left: 0; right: 0; top: 100%; z-index: 90;
  background: #fff; border-top: 1px solid var(--rule);
  box-shadow: 0 30px 60px -34px rgba(1, 19, 53, .55);
  animation: megaIn .18s var(--ease);
}
.mega[hidden] { display: none; }
@keyframes megaIn { from { opacity: 0; transform: translateY(-6px); } }
@media (max-width: 1180px) { .mega { display: none !important; } }
.mega__in {
  display: grid; grid-template-columns: minmax(0, 1fr) 360px;
  gap: 34px; padding-top: 26px; padding-bottom: 26px; align-items: start;
}
.mega__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px 18px; }
.mega__grid--areas { grid-template-columns: repeat(2, 1fr); }
.mega__row {
  display: flex; align-items: center; gap: 12px; padding: 11px 12px;
  border-radius: 6px; text-decoration: none; color: var(--ink);
  transition: background .15s var(--ease);
}
.mega__row:hover, .mega__row:focus-visible { background: var(--paper); }
.mega__row--area { align-items: flex-start; padding: 14px 12px; }
.mega__ico {
  width: 38px; height: 38px; border-radius: 50%; flex: none;
  background: var(--blue-tint); color: var(--blue); display: grid; place-items: center;
}
.mega__ico svg { width: 19px; height: 19px; }
.mega__name { font: 700 15px/1.3 var(--f-body); }
.mega__blurb { display: block; margin-top: 4px; font-size: 13px; line-height: 1.5; color: var(--muted); }
.mega__go { width: 9px; height: 9px; margin-left: auto; color: var(--blue); opacity: 0; transition: opacity .15s var(--ease); }
.mega__row:hover .mega__go, .mega__row:focus-visible .mega__go { opacity: 1; }

.mega__feature { border-radius: 8px; overflow: hidden; background: var(--paper); }
.mega__feature--plain { padding: 26px; }
.mega__img { width: 100%; height: 190px; object-fit: cover; transition: opacity .2s var(--ease); }
.mega__img.is-swapping { opacity: 0; }
.mega__fbody { padding: 20px 22px 22px; }
.mega__eyebrow {
  margin: 0 0 8px; font: 700 11px/1 var(--f-body); letter-spacing: .16em;
  text-transform: uppercase; color: var(--blue);
}
.mega__ftitle { font-size: 24px; margin-bottom: 8px; }
.mega__fnote { font-size: 14px; color: var(--muted); margin-bottom: 16px; }
/* 3-column services mega — compact (no circle icons, text-only rows) */
.mega__in--svc { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; padding: 14px 0; }
.mega__in--svc .mega__ico { display: none; }
.mega__in--svc .mega__row { padding: 7px 10px; }
.mega__col { padding: 6px 20px 10px; border-right: 1px solid var(--rule); }
.mega__col:last-child { border-right: 0; }
.mega__col-hd {
  margin: 0 0 6px 10px; font: 700 11px/1 var(--f-body); letter-spacing: .14em;
  text-transform: uppercase; color: var(--blue);
}

/* Services mega footer strip */
.mega__footer { background: var(--blue); }
.mega__footer-in { padding: 10px 0; }
.mega__cta-link {
  display: inline-flex; align-items: center; gap: 10px;
  color: #fff; font: 700 13px/1 var(--f-body); letter-spacing: .1em;
  text-transform: uppercase; text-decoration: none;
}
.mega__cta-link svg { width: 14px; height: 14px; transition: transform .15s var(--ease); }
.mega__cta-link:hover svg { transform: translateX(5px); }

/* Horizontal areas dropdown — 4 locations side by side with dividers */
.mega__areas-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad);
  display: flex; align-items: stretch;
}
.mega--areas .mega__row--area {
  flex: 1; flex-direction: column; align-items: flex-start;
  padding: 22px 18px; gap: 3px; border-radius: 0;
  border-left: 1px solid var(--rule);
}
.mega--areas .mega__row--area:first-child { border-left: none; }
.mega--areas .mega__ico { width: 24px; height: 24px; margin-bottom: 7px; }
.mega--areas .mega__ico svg { width: 12px; height: 12px; }
.mega--areas .mega__name { font-size: 14px; }
.mega--areas .mega__blurb { font-size: 12px; margin-top: 0; line-height: 1.4; }
.mega--areas .mega__go { display: none; }
.mega__areas-cta {
  display: flex; flex: 0 0 auto; flex-direction: column;
  align-items: center; justify-content: center;
  min-width: 110px; padding: 22px 16px; gap: 6px;
  border-left: 1px solid var(--rule); border-top: none; margin-top: 0;
  background: var(--paper);
  color: var(--blue); font: 700 11px/1.3 var(--f-body); letter-spacing: .1em;
  text-transform: uppercase; text-decoration: none; text-align: center;
}
.mega__areas-cta:hover { color: var(--blue-600); }
.mega__areas-cta svg { width: 13px; height: 13px; transition: transform .15s var(--ease); }
.mega__areas-cta:hover svg { transform: translateX(4px); }

/* drawer accordions (the mega's mobile equivalent) */
.acc__btn {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
  padding: 13px 0; border: 0; border-bottom: 1px solid var(--rule-dark);
  background: none; color: #fff; cursor: pointer; text-align: left;
  font: 700 17px/1.2 var(--f-body); text-transform: uppercase; letter-spacing: .03em;
}
.acc__btn .caret { color: var(--blue-300); opacity: 1; }
.acc__btn[aria-expanded="true"] .caret { transform: rotate(180deg); }
.acc__panel { max-height: 0; overflow: hidden; transition: max-height .3s var(--ease); }
.acc__panel a {
  display: block; padding: 10px 0 10px 16px; border-bottom: 1px solid rgba(255, 255, 255, .08);
  font: 400 15px/1.3 var(--f-body); text-transform: none; letter-spacing: 0;
  color: rgba(255, 255, 255, .78);
}
.acc__panel a:hover { color: #fff; }
.acc__panel a.acc__panel-all { color: #fff; font-weight: 600; }
.acc__panel a.acc__more {
  color: var(--blue-300); border-bottom: 0; padding-bottom: 6px;
  font-size: 14px; letter-spacing: .02em;
}

/* ==========================================================================
   INNER PAGES
   ========================================================================== */
.phead { position: relative; background: var(--navy-950); overflow: hidden; isolation: isolate; }
.phead__media { position: absolute; inset: 0; z-index: -2; }
.phead__media img { width: 100%; height: 100%; object-fit: cover; opacity: .34; }
.phead::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(92deg, rgba(0,20,51,.96) 0%, rgba(0,20,51,.86) 46%, rgba(0,20,51,.5) 100%);
}
.phead__in { padding-top: clamp(38px, 5vw, 68px); padding-bottom: clamp(34px, 4.4vw, 58px); max-width: 860px; }
.phead h1 { color: #fff; font-size: clamp(30px, 4.2vw, 54px); }
.phead__crumb {
  display: flex; align-items: center; flex-wrap: wrap; gap: 8px; margin-bottom: 18px;
  font: 700 12px/1 var(--f-body); letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255, 255, 255, .62);
}
.phead__crumb a, .phead__crumb span {
  display: inline-flex; align-items: center; min-height: 38px;
}
.phead__crumb a { color: rgba(255, 255, 255, .62); text-decoration: none; }
.phead__crumb a:hover { color: #fff; text-decoration: underline; }
.phead__crumb svg { width: 7px; height: 7px; opacity: .5; }
.phead__lede { margin: 18px 0 0; color: rgba(255, 255, 255, .84); font-size: clamp(16px, 1.5vw, 19px); }

.sec { padding: clamp(46px, 5.5vw, 84px) 0; }
.layout { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: clamp(28px, 4vw, 60px); align-items: start; }
@media (max-width: 1020px) { .layout { grid-template-columns: 1fr; } }

.prose h2 { font-size: clamp(24px, 2.8vw, 34px); margin: 42px 0 16px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: clamp(19px, 2vw, 24px); margin: 32px 0 12px; }
.prose p { color: var(--body); }
.prose > ul { margin: 0 0 26px; border-top: 1px solid var(--rule); }
.prose > ul li {
  display: grid; grid-template-columns: 22px 1fr; gap: 12px; padding: 13px 0;
  border-bottom: 1px solid var(--rule); color: var(--body);
}
.prose > ul li::before { content: "→"; color: var(--blue); font-weight: 700; }
.prose strong { color: var(--ink); }

.why { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 8px 0 10px; }
@media (max-width: 820px) { .why { grid-template-columns: 1fr; } }
.why__i { background: var(--paper); border-radius: 8px; padding: 24px 22px; border-bottom: 4px solid var(--blue); }
.why__ico {
  width: 46px; height: 46px; border-radius: 50%; background: #fff; color: var(--blue);
  display: grid; place-items: center; margin-bottom: 14px;
}
.why__ico svg { width: 23px; height: 23px; }
.why__i b { display: block; font: 700 17px/1.25 var(--f-body); color: var(--ink); margin-bottom: 7px; }
.why__t { font-size: 15px; color: var(--muted); line-height: 1.6; }

.aside { position: sticky; top: 104px; display: grid; gap: 16px; }
@media (max-width: 1020px) { .aside { position: static; } }
.acard { border: 1px solid var(--rule); border-radius: 8px; padding: 24px; background: #fff; }
.acard h3 { font-size: 21px; margin-bottom: 12px; }
.acard p { font-size: 15px; color: var(--muted); }
.acard--navy { background: var(--navy-950); border-color: var(--navy-950); }
.acard--navy h3 { color: #fff; }
.acard--navy p { color: rgba(255, 255, 255, .76); }
.acard__tel {
  display: flex; align-items: center; gap: 10px; margin: 4px 0 14px;
  font-family: var(--f-display); font-size: 30px; color: #fff; text-decoration: none;
}
.acard__tel svg { width: 22px; height: 22px; color: var(--blue-300); }
.acard__tel:hover { color: var(--blue-300); }
.acard--navy .btn { margin-top: 16px; }
.acard__list li { border-bottom: 1px solid var(--rule); }
.acard__list li:last-child { border-bottom: 0; }
.acard__list a {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 12px 0; font-size: 15px; color: var(--ink); text-decoration: none;
}
.acard__list a:hover { color: var(--blue); }
.acard__list svg { width: 8px; height: 8px; opacity: .45; flex: none; }
.acard--offer { display: flex; align-items: center; gap: 16px; background: var(--blue-tint); border-color: transparent; }
.acard__pct { display: flex; align-items: baseline; gap: 3px; color: var(--blue); flex: none; }
.acard__pct b { font-family: var(--f-display); font-size: 42px; line-height: .84; }
.acard__pct i { font-style: normal; font: 700 13px/1 var(--f-body); text-transform: uppercase; }
/* Scoped to .acard__offertxt, NOT a bare `span`: `.acard--offer span` (0,1,1)
   outranks `.acard__pct` (0,1,0) and painted the blue 10% mark muted grey. */
.acard__offertxt b { display: block; font: 700 16px/1.25 var(--f-body); color: var(--ink); }
.acard__offertxt span { font-size: 14px; color: var(--body); line-height: 1.5; }

/* service index + area cards */
.sidx__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
@media (max-width: 1100px) { .sidx__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .sidx__grid { grid-template-columns: 1fr; } }
.sidx {
  display: flex; align-items: center; gap: 14px; padding: 16px 18px;
  background: #fff; border: 1px solid var(--rule); border-radius: 8px;
  text-decoration: none; color: var(--ink);
  transition: border-color .18s var(--ease), transform .18s var(--ease), box-shadow .18s var(--ease);
}
.sidx:hover { border-color: var(--blue); transform: translateY(-3px); box-shadow: var(--shadow); }
.sidx__ico {
  width: 42px; height: 42px; border-radius: 50%; flex: none;
  background: var(--blue-tint); color: var(--blue); display: grid; place-items: center;
}
.sidx__ico svg { width: 21px; height: 21px; }
.sidx__name { font: 700 15px/1.35 var(--f-body); }
.sidx__go { width: 9px; height: 9px; margin-left: auto; color: var(--blue); flex: none; }

.acov__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (max-width: 820px) { .acov__grid { grid-template-columns: 1fr; } }
.acov {
  display: flex; align-items: flex-start; gap: 16px; padding: 24px;
  background: #fff; border: 1px solid var(--rule); border-radius: 8px;
  border-bottom: 4px solid var(--blue); text-decoration: none; color: var(--ink);
  transition: transform .18s var(--ease), box-shadow .18s var(--ease);
}
.acov:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.acov__ico {
  width: 48px; height: 48px; border-radius: 50%; flex: none;
  background: var(--blue-tint); color: var(--blue); display: grid; place-items: center;
}
.acov__ico svg { width: 24px; height: 24px; }
.acov b { display: block; font-family: var(--f-display); font-size: 24px; text-transform: uppercase; margin-bottom: 6px; }
.acov span span, .acov > span > span:last-child { font-size: 15px; color: var(--muted); line-height: 1.6; }
.acov__go { width: 10px; height: 10px; margin-left: auto; color: var(--blue); flex: none; margin-top: 16px; }

/* contact */
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 62px); align-items: start; }
@media (max-width: 900px) { .contact { grid-template-columns: 1fr; } }
.contact__tel {
  display: flex; align-items: center; gap: 14px; margin: 0 0 18px;
  font-family: var(--f-display); font-size: clamp(32px, 4.4vw, 52px);
  color: var(--ink); text-decoration: none;
}
.contact__tel svg { width: 34px; height: 34px; color: var(--blue); }
.contact__tel:hover { color: var(--blue); }
.contact__list { border-top: 1px solid var(--rule); margin-top: 24px; }
.contact__list li { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--rule); font-size: 16px; }
.contact__list .badge-ico { flex: none; }
.contact__form { background: var(--paper); border-radius: 8px; padding: clamp(22px, 3vw, 34px); }

/* CTA band */
.ctaband { background: var(--navy-950); color: rgba(255, 255, 255, .8); position: relative; }
.ctaband::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 4px; background: var(--blue); }
.ctaband__in {
  padding-top: clamp(44px, 5.5vw, 78px); padding-bottom: clamp(44px, 5.5vw, 78px); display: grid;
  grid-template-columns: 1.15fr 1fr; gap: clamp(28px, 4vw, 62px); align-items: center;
}
@media (max-width: 900px) { .ctaband__in { grid-template-columns: 1fr; } }
.ctaband h2 { color: #fff; font-size: clamp(30px, 4vw, 50px); }
.ctaband__offer {
  display: inline-flex; align-items: center; gap: 10px; margin: 0 0 16px;
  font: 700 13px/1 var(--f-body); letter-spacing: .12em; text-transform: uppercase;
  color: var(--blue-300);
}
.ctaband__offer svg { width: 20px; height: 20px; }
.ctaband__tel {
  display: inline-block; margin: 14px 0 6px; font-family: var(--f-display);
  font-size: clamp(34px, 4.6vw, 56px); color: #fff; text-decoration: none;
}
.ctaband__tel:hover { color: var(--blue-300); }
.ctaband__meta { font-size: 14px; letter-spacing: .04em; text-transform: uppercase; color: rgba(255, 255, 255, .58); }

/* forms */
.form { display: grid; gap: 14px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 600px) { .form__row { grid-template-columns: 1fr; } }
.field label {
  display: block; margin-bottom: 7px; font: 700 12px/1 var(--f-body);
  letter-spacing: .12em; text-transform: uppercase; color: var(--muted);
}
.ctaband .field label { color: rgba(255, 255, 255, .68); }
.field input, .field textarea {
  width: 100%; padding: 14px 15px; border: 1px solid var(--rule); border-radius: 6px;
  background: #fff; color: var(--ink); font: 400 16px/1.4 var(--f-body);
}
.ctaband .field input, .ctaband .field textarea {
  background: rgba(255, 255, 255, .08); border-color: rgba(255, 255, 255, .26); color: #fff;
}
.field textarea { resize: vertical; min-height: 104px; }
.form__note { font-size: 14px; color: var(--muted); margin: 0; }
.ctaband .form__note { color: rgba(255, 255, 255, .6); }
.hp { position: absolute; left: -9999px; }
.form__msg { display: none; margin: 0; padding: 12px 14px; border-radius: 6px; font-size: 15px; font-weight: 700; }
.form__msg.is-ok, .form__msg.is-err { display: block; }
.form__msg.is-ok { background: var(--blue-tint); color: var(--blue-600); }
.ctaband .form__msg.is-ok { background: rgba(255, 255, 255, .14); color: #fff; }
.form__msg.is-err { background: #fdecec; color: #a11722; }

/* --- reveal -------------------------------------------------------------- */
.rv { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.rv.is-in { opacity: 1; transform: none; }
.no-js .rv { opacity: 1; transform: none; }

/* ==========================================================================
   MOBILE OVERRIDES — homepage  (≤760px unless noted)
   ========================================================================== */

/* --- hero: taller photo area on mobile, content vertically centered ----- */
@media (max-width: 760px) {
  .hero { height: auto; min-height: 0; max-height: none; }
  .hero__slides { min-height: 430px; }
  .hero__slide--team .hero__scrim {
    background: linear-gradient(180deg,
      rgba(1,10,22,.38) 0%, rgba(1,12,26,.52) 38%,
      rgba(1,12,26,.76) 66%, rgba(1,12,26,.90) 100%);
  }
  .hero__slide--team .hero__media img { object-position: 65% 26%; }
  /* padding-top:0 pushed the headline hard against the sticky header on a
     phone. Give it room to breathe below the bar. */
  .hero__in { align-items: center; padding-top: 34px; padding-bottom: 30px; }
  .hero__box { max-width: 100%; }
  .hero h1 { font-size: clamp(38px, 9vw, 64px); }
  .hero__btns { gap: 10px; margin-top: 20px; }
  .hero__btns .btn { flex: 1; justify-content: center; font-size: 14px; padding: 12px 14px; }
}

/* --- s2: show 4 mobile service tiles, hide generic cards + stats -------- */
.s2__mob-svcs { display: none; }
.s2__mob-all { display: none; }
.s2__msvc {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; padding: 18px 12px; background: #fff;
  border-radius: 8px; border: 1px solid var(--rule); border-bottom: 3px solid var(--blue);
  text-decoration: none; color: var(--ink); text-align: center;
  font: 700 14px/1.3 var(--f-body);
  transition: box-shadow .18s var(--ease), transform .18s var(--ease);
}
.s2__msvc:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.s2__msvc svg { width: 26px; height: 26px; color: var(--blue); }
@media (max-width: 760px) {
  .s2 { padding: 32px 0 28px; }
  .s2__dots { display: none; }
  .s2__in { display: none; }
  .stats { display: none; }
  .s2__mob-svcs {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 12px; padding: 0 var(--pad);
  }
  .s2__mob-all { display: flex; padding: 0 var(--pad); margin-top: 14px; }
  .s2__mob-all .btn { flex: 1; justify-content: center; }
}

/* --- s1: show h2 + stats, hide long copy -------------------------------- */
@media (max-width: 760px) {
  .s1__in { padding-top: 22px; padding-bottom: 18px; gap: 14px; }
  .s1__copy { order: -1; }
  .s1__eyebrow { display: none; }
  .s1__copy > p:not(.s1__eyebrow) { display: none; }
  .s1__callout { display: none; }
  .s1 h2 { font-size: clamp(26px, 6vw, 40px); margin: 0 0 12px; }
  .s1__rule { margin: 10px 0 0; }
  .s1__media img { display: none; }
  .s1__media::before { display: none; }
  .s1__stats { margin-top: 0; grid-template-columns: repeat(2, 1fr); }
  .s1__stat { padding: 12px 10px; }
  .s1__stat b { font-size: 12px; }
  .s1__stat-t { font-size: 13px; }
}

/* --- reviews: swipe carousel on mobile ---------------------------------- */
@media (max-width: 760px) {
  .s-rev { padding: 22px 0 16px; }
  .s-rev__head { margin-bottom: 24px; }
  .s-rev__head h2 { font-size: clamp(26px, 6vw, 38px); }
  .s-rev__grid { display: block; max-width: none; margin: 0; }
  .rv-card { display: none; }
  .rv-card.is-on { display: flex; opacity: 1; transform: none; }
  .s-rev__dots { display: flex; justify-content: center; gap: 10px; margin-top: 18px; }
  .s-rev__dots button {
    width: 9px; height: 9px; border-radius: 50%; border: 0;
    background: var(--rule); cursor: pointer; padding: 0;
    transition: background .2s var(--ease), transform .2s var(--ease);
  }
  .s-rev__dots button.is-on { background: var(--blue); transform: scale(1.4); }
  .s-rev__foot { text-align: center; margin-top: 16px; }
}
@media (min-width: 761px) { .s-rev__dots { display: none; } }

/* --- service area: map full-width, hide city checklist ------------------ */
@media (max-width: 760px) {
  .s-af { padding: 20px 0; }
  .s-af__area-text { padding: 18px 18px 6px; gap: 8px; }
  .s-af__area-text h2 { font-size: 22px; }
  .s-af__list { display: none; }
  .s-af__link { margin-top: 4px; }
  .s-af__area-map { min-height: 290px; }
}

/* Map tap-to-activate overlay (mobile only) */
.map-touch {
  position: absolute; inset: 0; z-index: 450; display: flex;
  align-items: center; justify-content: center; gap: 7px;
  background: rgba(0,14,36,.22); cursor: pointer;
  font: 700 12px/1 var(--f-body); letter-spacing: .1em; text-transform: uppercase;
  color: #fff;
  transition: opacity .2s var(--ease);
}
.map-touch svg { width: 15px; height: 15px; }
.map-touch.is-off { opacity: 0; pointer-events: none; }
@media (min-width: 761px) { .map-touch { display: none; } }

/* --- financing: compact on mobile --------------------------------------- */
@media (max-width: 760px) {
  .s-af__fin { padding: 20px 18px; }
  .s-af__fin h2 { font-size: clamp(22px, 5vw, 32px); }
  .s-fin__ico { display: none; }
}

/* --- 24/7 CTA: full-width stacked buttons ------------------------------- */
@media (max-width: 760px) {
  .s-pb { padding: 32px 0; }
  .s-pb__ico { display: none; }
  .s-pb__in { gap: 20px; }
  .s-pb__btns { width: 100%; max-width: none; }
  .s-pb__tel { font-size: 16px; padding: 14px 18px; }
  .s-pb .btn { font-size: 15px; padding: 15px 18px; }
}

/* --- footer: accordion collapse on mobile ------------------------------- */
@media (max-width: 620px) {
  .ft__top > div:not(:first-child) { border-bottom: 1px solid rgba(255,255,255,.1); padding-bottom: 4px; }
  .ft__top > div:not(:first-child) h4 {
    cursor: pointer; display: flex; align-items: center;
    justify-content: space-between; margin: 0; padding: 14px 0;
    font-size: 18px;
  }
  .ft__top > div:not(:first-child) h4::after {
    content: "+"; font-size: 22px; font-weight: 300; line-height: 1;
    color: var(--blue-300); flex: none; font-family: var(--f-body);
  }
  .ft__top > div:not(:first-child).is-open h4::after { content: "−"; }
  .ft__top > div:not(:first-child) .ft__hr { display: none; }
  .ft__top > div:not(:first-child) > *:not(h4) {
    max-height: 0; overflow: hidden;
    transition: max-height .32s var(--ease);
  }
  .ft__top > div:not(:first-child).is-open > *:not(h4) { max-height: 900px; }
  /* keep first column (brand) always open */
  .ft__top > div:first-child { padding-bottom: 0; }
}

/* ==========================================================================
   SCROLL TO TOP
   ========================================================================== */
.sto {
  position: fixed;
  right: 16px;
  bottom: 24px;
  z-index: 141;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(1,19,53,.30), 0 1px 4px rgba(1,19,53,.18);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .25s var(--ease), transform .25s var(--ease), background .15s var(--ease);
  pointer-events: none;
}
.sto.is-on { opacity: 1; transform: translateY(0); pointer-events: auto; }
.sto:hover { background: var(--blue-600); }
.sto:active { transform: scale(.94); }
.sto svg { width: 18px; height: 18px; }

/* on mobile sit above the callbar (46px) + safe-area + 14px gap */
@media (max-width: 760px) {
  .sto { bottom: calc(46px + env(safe-area-inset-bottom) + 14px); }
}

/* --- mobile: disable reveal animation (opacity-0 dead zones on scroll-past) */
@media (max-width: 760px) {
  .rv { opacity: 1; transform: none; transition: none; }
}

/* --- mobile: keep only top 2 promises as a single horizontal row ----------- */
@media (max-width: 760px) {
  .promise:nth-child(n+3) { display: none; }
  .promise:nth-child(-n+2) { border-bottom: 0; }
}

/* --- hero location line ---------------------------------------------------- */
.hero__loc {
  display: flex; align-items: center; gap: 5px;
  font: 600 13px/1.4 var(--f-body);
  color: rgba(255,255,255,.70);
  margin: 8px 0 0;
  letter-spacing: .01em;
}
.hero__loc svg { width: 12px; height: 12px; fill: var(--blue-300); flex: none; }
