/* src/css/00-tokens.css */
/* Design tokens. OWNED BY THE LEAD — components must use these variables, never hard-code brand colors. */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  src: url(/fonts/montserrat-var-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  /* color roles (reference site role -> ours) */
  --primary: #1c4b8c;        /* top bar, trust bar, phone number, outlines   (ref #002d72) */
  --primary-dark: #12315c;   /* locations band, nav text, footer links       (ref #152e54) */
  --accent: #e0568f;         /* decorative only: card top borders, icons, stars accents (ref #00a0df) */
  --btn-bg: #c23f78;         /* FILLED button background: white text = 4.9:1 (AA). Never put white text on --accent */
  --btn-bg-hover: #a83566;
  --accent-text: #a83566;    /* pink used as small TEXT on white/light bands (6.6:1) */
  --accent-soft: #f5a8c4;    /* pink used as small TEXT on navy bands */
  --band-blue: #e6eef8;      /* breadcrumb bar, FAQ panel, light blue bands   (ref #d8e8ee) */
  --band-blue-2: #f2f6fb;
  --band-grey: #efefef;      /* process band, career box, borders             (ref #efefef) */
  --text: #313131;
  --text-navy: #12315c;      /* card body copy, headings on white              (ref #152e54) */
  --muted: #636569;
  --link: #1c4b8c;
  --star: #f6c44a;
  --white: #fff;
  --line: #dfe3e9;

  /* typography — Montserrat is the free, self-hosted substitute for Gotham */
  --font: 'Montserrat', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --fs-base: 16px;
  --lh-base: 1.5;
  --track-head: .03em;
  --fs-h1: 48px;      /* home hero H1 (mobile 32px) */
  --fs-h1-inner: 43px; /* inner-page banner H1 (mobile 32px) */
  --fs-h2: 37px;      /* section headings, weight 300 (mobile 21px→ use 26px for legibility) */
  --fs-h3: 32px;      /* card titles / sub-sections, weight 700 (mobile 21px) */
  --fs-sub: 21px;     /* section subtitle, weight 300 */
  --fs-card: 18.7px;

  /* layout */
  --container: 1280px;   /* inner content width */
  --gutter: 20px;
  --sec-pad: 48px;       /* vertical padding of a content section */
  --gap-cards: 40px;     /* overlap-card grid gap */
  --gap-tight: 16px;
  --header-h: 84px;      /* desktop sticky header */
  --header-h-m: 75px;    /* mobile header */
  --mobilebar-h: 75px;   /* fixed bottom Call / Free Estimate bar (< 1120px) */
  --topbar-h: 40px;      /* navy announcement bar above the home hero */

  /* shape / elevation */
  --r-btn: 8px;
  --r-card: 4px;
  --r-lg: 16px;
  --shadow-card: 0 2px 20px rgba(23, 47, 83, .18);
  --shadow-panel: 0 0 40px rgba(0, 0, 0, .15);
  --shadow-header: 0 2px 10px rgba(0, 0, 0, .12);

  /* breakpoints (use as literals in @media): 1120px desktop nav | 1023px | 767px | 480px */
}

/* src/css/01-base.css */
/* Base styles: reset, typography, container, buttons, utilities. OWNED BY THE LEAD. */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); -webkit-text-size-adjust: 100%; }
body { margin: 0; font-family: var(--font); font-size: var(--fs-base); line-height: var(--lh-base); color: var(--text); background: var(--white); font-weight: 400; }
img, svg, video { max-width: 100%; }
img { display: block; height: auto; }
a { color: var(--link); text-decoration: none; }
a:hover { text-decoration: underline; }
p { margin: 0 0 1em; }
ul, ol { margin: 0 0 1em; padding-left: 1.25em; }
h1, h2, h3, h4 { font-family: var(--font); color: var(--text-navy); margin: 0 0 .5em; text-wrap: balance; letter-spacing: var(--track-head); }
h1 { font-size: var(--fs-h1); font-weight: 700; line-height: 1.2; }
h2 { font-size: var(--fs-h2); font-weight: 600; line-height: 1.2; letter-spacing: 1.4px; }
h3 { font-size: var(--fs-h3); font-weight: 700; line-height: 1.25; }
h4 { font-size: 24px; font-weight: 700; line-height: 1.3; }
:focus-visible { outline: 3px solid var(--primary); outline-offset: 2px; }
::selection { background: var(--primary); color: #fff; }

.container { width: min(calc(var(--container) + 2 * var(--gutter)), 100%); padding-inline: var(--gutter); margin-inline: auto; }
.section { padding-block: var(--sec-pad); }
.section--band-blue { background: var(--band-blue); }
.section--band-grey { background: var(--band-grey); }
.section--navy { background: var(--primary-dark); color: #fff; }
.section--navy h2, .section--navy h3 { color: #fff; }
.center { text-align: center; }
.lead { font-size: var(--fs-sub); font-weight: 300; line-height: 1.5; }
.sr-only { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; left: -9999px; top: 0; z-index: 1000; background: #fff; color: var(--primary); padding: 12px 16px; font-weight: 700; }
.skip-link:focus { left: 8px; top: 8px; }
.h2-center { text-align: center; }
.hr-short { width: 100px; height: 1px; border: 0; background: #bfc5cc; margin: 32px auto; }

/* Buttons. Filled = --btn-bg + white text (AA). Outline = white bg + navy border. */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 46px; padding: 12px 28px; border: 2px solid var(--btn-bg); border-radius: var(--r-btn); background: var(--btn-bg); color: #fff; font: 700 14px/1.2 var(--font); letter-spacing: .02em; text-decoration: none; cursor: pointer; text-align: center; transition: background-color .25s ease-in, border-color .25s ease-in, color .25s ease-in; }
.btn:hover { background: var(--btn-bg-hover); border-color: var(--btn-bg-hover); text-decoration: none; color: #fff; }
.btn--outline { background: #fff; color: var(--primary); border-color: var(--primary); font-weight: 800; }
.btn--outline:hover { background: var(--primary); border-color: var(--primary); color: #fff; }
.btn--light { background: #fff; color: var(--primary-dark); border-color: #fff; }
.btn--light:hover { background: var(--band-blue); border-color: var(--band-blue); color: var(--primary-dark); }
.btn--pill { min-height: 43px; padding: 10px 18px; background: transparent; border: 1px solid #fff; color: #fff; font-weight: 800; }
.btn--pill:hover, .btn--pill.is-current { background: var(--primary-dark); border-color: var(--primary-dark); color: #fff; }
.btn--lg { min-height: 58px; padding: 14px 32px; font-size: 16px; }
.btn--block { display: flex; width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.btn-row--center { justify-content: center; }

/* Icons */
.ic { flex: none; }

/* 404 */
.not-found { padding-block: 80px; }

/* Room for the fixed bottom Call / Free Estimate bar below the desktop-nav breakpoint */
@media (max-width: 1119px) { body { padding-bottom: var(--mobilebar-h); } }

@media (max-width: 1023px) { h1 { font-size: 35px; } }
@media (max-width: 767px) {
  :root { --fs-h1: 32px; --fs-h1-inner: 32px; --fs-h2: 26px; --fs-h3: 21px; --fs-sub: 16px; --fs-card: 16px; --sec-pad: 36px; }
  h2 { letter-spacing: .6px; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { transition: none !important; animation: none !important; } }
@media print { .site-header, .site-footer, .mobile-bar { display: none !important; } }

/* src/css/components/art.css */
/* Illustration system (art.mjs). Every fill/stroke is a class here so the page CSP never sees an inline style.
   Colour is driven by custom properties on .art so the same markup themes light (default) or on navy (.art--dark).
   Root defaults: fill none, navy stroke 3.5, round caps/joins -> shapes only add a fill class (art-white, art-soft ...). */
.art {
  --a-line: var(--primary, #1c4b8c);
  --a-solid: var(--primary, #1c4b8c);
  --a-pink: var(--accent, #e0568f);
  --a-pink-soft: #f9d3e2;
  --a-bg: var(--band-blue, #e6eef8);
  --a-blob: var(--band-blue-2, #f2f6fb);
  --a-deep: #d2e1f3;
  --a-paper: #fff;
  --a-soft: var(--band-blue-2, #f2f6fb);
  --a-water: #b9d2ef;
  --a-star: var(--star, #f6c44a);
  --a-glow: rgba(246, 196, 74, .32);
  display: block;
  width: 100%;
  height: auto;
  overflow: hidden;
  fill: none;
  stroke: var(--a-line);
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* light-on-navy (hero + banner) */
.art--dark {
  --a-line: rgba(255, 255, 255, .8);
  --a-solid: rgba(255, 255, 255, .78);
  --a-pink: var(--accent-soft, #f5a8c4);
  --a-pink-soft: rgba(245, 168, 196, .3);
  --a-bg: transparent;
  --a-blob: rgba(255, 255, 255, .055);
  --a-deep: rgba(255, 255, 255, .09);
  --a-paper: rgba(255, 255, 255, .1);
  --a-soft: rgba(255, 255, 255, .05);
  --a-water: rgba(160, 200, 255, .3);
  --a-glow: rgba(246, 196, 74, .2);
}

/* ---- strokes (colour only, width comes from .art or the modifiers below) ---- */
.art-navy { stroke: var(--a-line); }
.art-pink { stroke: var(--a-pink); }
.art-wline { stroke: var(--a-paper); }
.art-goldline { stroke: var(--a-star); }
.art-sleeve { stroke: var(--a-solid); }
.art-softpink { stroke: var(--a-pink-soft); }
.art-deepline { stroke: var(--a-deep); }
.art-thin { stroke-width: 2.5; }
.art-hair { stroke-width: 2; }
.art-dot { stroke-dasharray: .1 9; }
.art-dash { stroke-dasharray: 7 8; }
.art-fade { opacity: .5; }

/* ---- fills (keep the inherited outline unless .art-ns) ---- */
.art-bg { fill: var(--a-bg); stroke: none; }
.art-blob { fill: var(--a-blob); stroke: none; }
.art-deep { fill: var(--a-deep); stroke: none; }
.art-white { fill: var(--a-paper); }
.art-soft { fill: var(--a-soft); }
.art-water { fill: var(--a-water); }
.art-solid { fill: var(--a-solid); }
.art-pinkfill { fill: var(--a-pink-soft); stroke: var(--a-pink); }
.art-pinksolid { fill: var(--a-pink); stroke: var(--a-pink); }
.art-gold { fill: var(--a-star); }
.art-star { fill: var(--a-star); stroke: none; }
.art-glow { fill: var(--a-glow); stroke: none; }
.art-mold { fill: var(--a-solid); stroke: none; opacity: .86; }
.art-dotfill { fill: var(--a-line); stroke: none; }
.art .art-ns { stroke: none; }

/* ---- helpers for the callers ---- */
.art--flip { transform: scaleX(-1); }
.art--fill { width: 100%; height: 100%; }
.art--faint { opacity: .55; }


/* src/css/components/footer.css */
/* Footer + locations band. Prefix ft-. Owned by the footer agent. */

/* ============ Locations band ============ */
.ft-band {
  --ft-h: 483px;
  --ft-slant: 52px;       /* horizontal offset of the diagonal stripes across the band's height */
  --ft-stripe: 33px;      /* width of each stripe */
  --ft-stripe-dark: #262b33;
  --ft-stripe-grey: #6d737c;
  --ft-title-weight: 600; /* reference H4 is 32px/300 */
  position: relative;
  display: grid;
  grid-template-columns: 31.6% minmax(0, 1fr);
  min-height: var(--ft-h);
  background: var(--primary-dark);
  color: #fff;
  overflow: hidden;
}
.ft-band :focus-visible { outline-color: #fff; }
.ft-band__map { position: relative; min-height: var(--ft-h); z-index: 1; }
.ft-map { position: absolute; top: 0; bottom: 0; left: 0; width: calc(100% + var(--ft-slant)); }
.ft-map__art,
.ft-map__stripe { position: absolute; inset: 0; }
.ft-map__art {
  overflow: hidden;
  background: #e9f0f9;
  clip-path: polygon(0 0, calc(100% - 2 * var(--ft-stripe)) 0, calc(100% - 2 * var(--ft-stripe) - var(--ft-slant)) 100%, 0 100%);
}
.ft-map__stripe--dark {
  background: var(--ft-stripe-dark);
  clip-path: polygon(calc(100% - 2 * var(--ft-stripe)) 0, calc(100% - var(--ft-stripe)) 0, calc(100% - var(--ft-stripe) - var(--ft-slant)) 100%, calc(100% - 2 * var(--ft-stripe) - var(--ft-slant)) 100%);
}
.ft-map__stripe--grey {
  background: var(--ft-stripe-grey);
  clip-path: polygon(calc(100% - var(--ft-stripe)) 0, 100% 0, calc(100% - var(--ft-slant)) 100%, calc(100% - var(--ft-stripe) - var(--ft-slant)) 100%);
}

/* the illustrated map (inline SVG, drawn in a 600x480 box; art bleeds past the box so any crop works) */
.ft-mapsvg { position: absolute; inset: 0; display: block; width: 100%; height: 100%; max-width: none; overflow: visible; }
.ft-m-land { fill: #e9f0f9; }
.ft-m-neighbors path { fill: #eef3fa; stroke: #fff; stroke-width: 2; stroke-linejoin: round; }
.ft-m-county { fill: #cfdff2; stroke: #fff; stroke-width: 2.5; stroke-linejoin: round; }
.ft-m-minor { fill: none; stroke: #fff; stroke-width: 3; stroke-linecap: round; }
.ft-m-case, .ft-m-hwy { fill: none; stroke-linecap: round; stroke-linejoin: round; }
.ft-m-case { stroke: #a9c1e0; stroke-width: 9; }
.ft-m-hwy { stroke: #fff; stroke-width: 6; }
.ft-m-shield { fill: var(--primary); stroke: #fff; stroke-width: 2; }
.ft-m-shield--us { fill: #fff; stroke: var(--primary); stroke-width: 1.8; }
.ft-m-shield__t { fill: #fff; font: 800 13px/1 var(--font); }
.ft-m-shield__t--us { fill: var(--primary-dark); }
.ft-m-counties-text text { fill: #6f8db6; font: 800 12px/1 var(--font); letter-spacing: .22em; }
.ft-m-compass path { fill: var(--primary); }
.ft-m-compass text { fill: var(--primary); font: 800 13px/1 var(--font); }
.ft-m-caption { fill: #6f8db6; font: 800 11px/1 var(--font); letter-spacing: .2em; }
.ft-m-pin__halo { fill: #fff; opacity: .8; }
.ft-m-pin__dot { fill: var(--btn-bg); stroke: #fff; stroke-width: 2; }
.ft-m-pin__core { fill: #fff; }
.ft-m-pin--hub .ft-m-pin__dot { fill: var(--primary); }
.ft-m-label { fill: var(--primary-dark); font: 800 18px/1 var(--font); stroke: #fff; stroke-width: 5; stroke-linejoin: round; paint-order: stroke; }
.ft-m-label--hub { font-size: 21px; }

/* content column */
.ft-band__content {
  display: flex; flex-direction: column; justify-content: center;
  min-width: 0;
  padding: 36px 55px 36px clamp(72px, 8.34vw, 132px);
}
.ft-band .ft-band__title {
  margin: 0 0 34px;
  color: #fff;
  font-size: 32px; font-weight: var(--ft-title-weight); line-height: 1.2; letter-spacing: .02em;
  text-align: left;
}
.ft-band__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 240px));
  column-gap: 30px; row-gap: 26px;
  align-items: start;
}
.ft-city { min-width: 0; }
.ft-city__link {
  display: inline-block; position: relative;
  color: #fff; font: 800 18.7px/1.2 var(--font); letter-spacing: .01em;
  text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 3px;
  overflow-wrap: anywhere;
}
.ft-city__link:hover { color: var(--band-blue); text-decoration: underline; }
/* 44px hit area without changing layout */
.ft-city__link::after { content: ""; position: absolute; inset: -11px -6px; }
.ft-city__county { margin: 8px 0 0; color: #e6eef8; font-size: 15px; line-height: 1.35; font-weight: 400; }

.ft-city--contact .ft-city__link { display: inline-block; }
.ft-contact { display: block; margin: 0; font-style: normal; color: #e6eef8; font-size: 15px; line-height: 1.35; }
.ft-contact__email { position: relative; display: block; margin-top: 8px; color: #fff; text-decoration: underline; text-underline-offset: 3px; overflow-wrap: anywhere; }
.ft-contact__email:hover { color: var(--band-blue); }
.ft-contact__email::after { content: ""; position: absolute; inset: -10px -6px; }
.ft-contact__hours { display: block; margin-top: 8px; }
.ft-contact__row { display: block; }
.ft-contact__row b { display: inline-block; min-width: 4.6em; font-weight: 700; color: #fff; }
.ft-band__btn { margin-top: 14px; min-height: 44px; padding: 10px 24px; font-size: 15px; }

/* ============ Footer ============ */
.ft {
  position: relative; z-index: 1;
  background: #fff; color: var(--primary-dark);
  border-top: 1px solid var(--line);
  box-shadow: 0 -6px 24px rgba(0, 0, 0, .08);
}
.ft-top { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px 30px; padding-block: 32px; }
.ft-nav__list {
  display: grid; grid-template-columns: repeat(4, max-content); grid-auto-rows: 44px;
  column-gap: clamp(28px, 4.4vw, 64px);
  margin: 0; padding: 0; list-style: none;
}
.ft-nav__list a, .ft-legal a { color: var(--primary-dark); text-decoration: none; }
.ft-nav__list a {
  display: flex; align-items: center; height: 44px;
  font: 800 14px/1.2 var(--font); letter-spacing: .01em;
}
.ft-nav__list a:hover, .ft-legal a:hover { color: var(--primary); text-decoration: underline; text-underline-offset: 3px; }
.ft-nav__list a[aria-current="page"], .ft-legal a[aria-current="page"] { text-decoration: underline; text-underline-offset: 3px; }

.ft .ft-phone {
  flex: none; gap: 10px; min-height: 49px; padding: 6px 18px;
  font-size: 29px; line-height: 1.1; font-weight: 800; letter-spacing: 0; white-space: nowrap;
}
.ft .ft-phone .ic { width: 22px; height: 22px; }

.ft-social { display: flex; flex: none; align-items: center; gap: 16px; }
.ft-social__label { margin: 0; color: var(--text); font-size: 16px; font-weight: 700; }
.ft-social__list { display: flex; gap: 8px; margin: 0; padding: 0; list-style: none; }
.ft-social__link { position: relative; display: grid; place-items: center; width: 32px; height: 32px; border-radius: 50%; background: var(--primary); color: #fff; transition: background-color .25s ease-in; }
.ft-social__link:hover { background: var(--btn-bg); color: #fff; }
.ft-social__link::after { content: ""; position: absolute; inset: -6px; }

.ft-bottom {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding-block: 32px; border-top: 1px solid var(--line);
}
.ft-logo { display: inline-flex; align-items: center; gap: 9px; color: var(--primary); text-decoration: none; }
.ft-logo:hover { text-decoration: none; }
.ft-mark { flex: none; width: 30px; height: 30px; }
.ft-mark__bg { fill: var(--primary); }
.ft-mark__roof { fill: none; stroke: #fff; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.ft-mark__wave { fill: none; stroke: var(--accent-soft); stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; }
.ft-mark__wave--2 { opacity: .7; }
.ft-logo__word { display: inline-flex; align-items: center; gap: 7px; }
.ft-logo__name { font: 800 24px/1 var(--font); letter-spacing: -.03em; color: var(--primary); }
.ft-logo__tag { font: 800 10px/1 var(--font); letter-spacing: .16em; text-transform: uppercase; padding: 5px 3px 5px 7px; border-radius: 4px; background: var(--btn-bg); color: #fff; }
.ft-tagline { margin: 5px 0 0; color: var(--text); font-size: 13px; line-height: 1.4; }

.ft-meta { text-align: right; }
.ft-copy { margin: 0 0 4px; color: var(--text); font-size: 13px; line-height: 1.4; }
.ft-legal ul { display: flex; justify-content: flex-end; flex-wrap: wrap; margin: 0; padding: 0; list-style: none; }
.ft-legal li + li::before { content: "|"; margin-inline: 10px; color: var(--muted); }
.ft-legal a { position: relative; font-size: 12px; line-height: 1.4; }
.ft-legal a::after { content: ""; position: absolute; inset: -14px -6px; }

/* ============ 1120-1279: tighter proportions so the contact cell still fits on one line ============ */
@media (min-width: 1120px) and (max-width: 1279px) {
  .ft-band { grid-template-columns: 29% minmax(0, 1fr); }
  .ft-band__content { padding-inline: clamp(40px, 6vw, 93px) 32px; }
  .ft-band__grid { column-gap: 20px; }
  .ft-band__btn { padding-inline: 16px; white-space: nowrap; }
  .ft-contact__email { font-size: 14px; overflow-wrap: normal; }
  .ft .ft-phone { font-size: 24px; }
  .ft-nav__list { column-gap: 32px; }
}

/* ============ <=1119: map on top, full width ============ */
@media (max-width: 1119px) {
  .ft-band { grid-template-columns: 1fr; }
  .ft-band__map { min-height: 0; height: clamp(300px, 44vw, 400px); }
  .ft-map { width: 100%; }
  .ft-map__art { clip-path: none; }
  .ft-map__stripe { display: none; }
  .ft-band__content { padding: 48px 32px 56px; }
  .ft-band__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); column-gap: 24px; }
  /* contact cell becomes a full-width strip under the city grid */
  .ft-city--contact { grid-column: 1 / -1; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px 32px; margin-top: 6px; padding-top: 26px; border-top: 1px solid rgba(255, 255, 255, .2); }
  .ft-band__btn { margin-top: 0; }
}

/* ============ <=1023: footer stacks ============ */
@media (max-width: 1023px) {
  .ft-top { flex-direction: column; gap: 24px; padding-block: 40px 32px; }
  .ft-nav__list { justify-content: center; }
  .ft-bottom { flex-direction: column; align-items: center; gap: 24px; text-align: center; }
  .ft-brand { display: flex; flex-direction: column; align-items: center; }
  .ft-meta { text-align: center; }
  .ft-legal ul { justify-content: center; }
}

/* ============ <=767: single centered column ============ */
@media (max-width: 767px) {
  .ft-band__map { height: min(82vw, 340px); }
  .ft-band__content { align-items: center; padding: 40px 20px 48px; text-align: center; }
  .ft-band .ft-band__title { margin-bottom: 32px; font-size: 32px; text-align: center; }
  .ft-band__grid { grid-template-columns: 1fr; row-gap: 28px; justify-items: center; width: 100%; }
  .ft-city__link { font-size: 17px; }
  .ft-city--contact { flex-direction: column; align-items: center; justify-content: center; width: 100%; gap: 20px; }
  .ft-contact__row { text-align: center; }
  .ft-contact__row b { min-width: 0; }
  .ft-contact__row b::after { content: ":"; }

  .ft-nav__list { grid-template-columns: 1fr; justify-items: center; }
  .ft-nav__list a { justify-content: center; }
  .ft .ft-phone { min-height: 44px; padding: 4px 16px; font-size: 21px; }
  .ft .ft-phone .ic { width: 19px; height: 19px; }
  .ft-social { justify-content: center; }
}

@media print { .ft-band { display: none; } }

/* src/css/components/header.css */
/* Header + mobile bottom bar (prefix hd-).  Owner: header agent.
   >=1120px : 84px sticky bar, full-width mega panels on :hover / :focus-within (pure CSS, no delay).
   <1120px  : 75px bar, full-screen slide-in drawer (0.25s), accordions, fixed bottom Call / Estimate bar. */

/* ---------- shared ---------- */
.site-header { position: sticky; top: 0; z-index: 990; background: #fff; box-shadow: var(--shadow-header); }
.hd-state { position: absolute; left: 0; top: 0; width: 1px; height: 1px; margin: 0; opacity: 0; pointer-events: none; }
.hd-bar { display: flex; align-items: center; justify-content: space-between; height: var(--header-h-m); }

/* logo */
.hd-logo { display: inline-flex; align-items: center; gap: 10px; flex: none; color: var(--primary); text-decoration: none; }
.hd-logo:hover { text-decoration: none; }
.hd-logo:focus-visible { outline-offset: 4px; border-radius: 6px; }
.hd-mark { flex: none; width: 38px; height: 38px; }
.hd-mark__bg { fill: var(--primary); }
.hd-mark__roof { fill: none; stroke: #fff; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.hd-mark__wave { fill: none; stroke: var(--accent-soft); stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; }
.hd-mark__wave--2 { opacity: .7; }
.hd-logo__word { display: inline-flex; align-items: center; gap: 7px; }
.hd-logo__name { font: 800 29px/1 var(--font); letter-spacing: -.03em; color: var(--primary); }
.hd-logo__tag { font: 800 11px/1 var(--font); letter-spacing: .16em; text-transform: uppercase; padding: 5px 4px 5px 8px; border-radius: 4px; background: var(--btn-bg); color: #fff; transform: translateY(1px); }

/* icon buttons (hamburger / close) — real <button> with JS, <label> for the checkbox fallback */
.hd-burger, .hd-close { display: none; align-items: center; justify-content: center; width: 48px; height: 48px; margin: 0; padding: 0; border: 0; border-radius: 8px; background: transparent; color: var(--text-navy); cursor: pointer; }
.hd-burger:hover, .hd-close:hover { background: var(--band-blue-2); }
.hd-x, .hd-bars { stroke-width: 2.2; }
.hd-header:not(.hd-js) .hd-js-only { display: none !important; }
.hd-header.hd-js .hd-nojs-only { display: none !important; }

/* top-level + accordion labels */
.hd-list { list-style: none; margin: 0; padding: 0; }
.hd-top, .hd-acc { font-family: var(--font); color: var(--primary-dark); text-decoration: none; }
.hd-top:hover { text-decoration: none; }
.hd-acc { display: none; }
.hd-chev { flex: none; stroke-width: 3; transition: transform .2s ease, color .2s ease; }

/* panel content */
.hd-h { margin: 0; font: 700 13px/1.3 var(--font); letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.hd-blurb { margin: 14px 0 18px; font-size: 17px; line-height: 1.5; color: var(--text); }
.hd-links, .hd-guides { list-style: none; margin: 10px 0 0; padding: 0; }
.hd-link { display: block; padding: 12px 0; border-bottom: 1px solid var(--line); color: var(--text-navy); text-decoration: none; transition: color .2s ease; }
.hd-link:hover { color: var(--primary); text-decoration: none; }
.hd-link:hover .hd-link__t { text-decoration: underline; text-underline-offset: 3px; }
.hd-link__t { display: block; font: 600 15px/1.35 var(--font); }
.hd-link__d { display: block; margin-top: 2px; font: 400 13px/1.45 var(--font); color: var(--muted); }
.hd-link.is-current .hd-link__t { color: var(--accent-text); }
.hd-link--go .hd-link__t::after { content: "\2192"; margin-left: 8px; color: var(--accent-text); display: inline-block; transition: transform .2s ease; }
.hd-link--go:hover .hd-link__t::after { transform: translateX(4px); }
.hd-note { margin: 12px 0 16px; font-size: 14px; line-height: 1.55; color: var(--text); }
.hd-note a { font-weight: 800; }
.hd-all { display: inline-flex; align-items: center; gap: 8px; padding-block: 13px; font: 800 14px/1.3 var(--font); color: var(--primary); text-decoration: none; }
.hd-all:hover { color: var(--btn-bg-hover); text-decoration: underline; text-underline-offset: 3px; }
.hd-all__ic { transition: transform .2s ease; }
.hd-all:hover .hd-all__ic { transform: translateX(3px); }
.hd-guide { display: block; padding: 11px 0; border-bottom: 1px solid var(--line); text-decoration: none; }
.hd-guide__t { display: block; font: 700 15px/1.35 var(--font); color: var(--text-navy); }
.hd-guide__go { display: inline-flex; align-items: center; gap: 6px; margin-top: 4px; font: 700 13px/1.3 var(--font); color: var(--accent-text); }
.hd-guide:hover { text-decoration: none; }
.hd-guide:hover .hd-guide__t { text-decoration: underline; text-underline-offset: 3px; color: var(--primary); }

/* focus states */
.hd-top:focus-visible, .hd-acc:focus-visible { outline-offset: -4px; }
.hd-link:focus-visible, .hd-guide:focus-visible, .hd-all:focus-visible { outline-offset: 3px; border-radius: 3px; }
.hd-state:focus-visible ~ .hd-bar .hd-burger { outline: 3px solid var(--primary); outline-offset: 2px; }

/* ---------- mobile bottom bar ---------- */
.hd-mbar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 980; display: none; grid-template-columns: 1fr 1fr; height: calc(var(--mobilebar-h) + env(safe-area-inset-bottom, 0px)); padding-bottom: env(safe-area-inset-bottom, 0px); background: var(--primary); box-shadow: 0 -2px 12px rgba(0, 0, 0, .18); }
.hd-mbar a { display: flex; align-items: center; justify-content: center; gap: 9px; min-height: var(--mobilebar-h); padding: 0 8px; font: 700 16px/1.2 var(--font); letter-spacing: .02em; color: #fff; text-decoration: none; text-align: center; transition: background-color .25s ease-in; }
.hd-mbar a:hover { text-decoration: none; color: #fff; }
.hd-mbar a:focus-visible { outline: 3px solid #fff; outline-offset: -6px; }
.hd-mbar__call { background: var(--primary); }
.hd-mbar__call:hover { background: var(--primary-dark); }
.hd-mbar__est { background: var(--btn-bg); }
.hd-mbar__est:hover { background: var(--btn-bg-hover); }

/* ---------- desktop >= 1120px ---------- */
@media (min-width: 1120px) {
  .hd-bar { height: var(--header-h); }
  .hd-state { display: none; }
  .hd-drawer { display: contents; }
  .hd-drawer__top, .hd-drawer__cta, .hd-m-only, .hd-acc { display: none; }
  .hd-nav { margin-left: 26px; }
  .hd-list { display: flex; height: var(--header-h); }
  .hd-item { display: block; }

  .hd-top { display: flex; align-items: center; gap: 6px; height: var(--header-h); padding: 0 clamp(9px, 1.05vw, 14px); font-size: 14px; font-weight: 800; line-height: 1; letter-spacing: .01em; white-space: nowrap; transition: color .2s ease; }
  .hd-top.is-current { box-shadow: inset 0 -3px 0 var(--accent); }
  .hd-item:hover > .hd-top, .hd-item:focus-within > .hd-top { color: var(--primary); text-decoration: underline; text-decoration-thickness: 2px; text-decoration-color: var(--accent); text-underline-offset: 9px; }
  .hd-item:hover .hd-chev, .hd-item:focus-within .hd-chev { transform: rotate(180deg); color: var(--accent-text); }

  /* full-width mega panel, top:99% of the header; no open delay */
  .hd-panel { position: absolute; left: 0; right: 0; top: 99%; background: #fff; border-top: 1px solid var(--line); box-shadow: 0 18px 28px -10px rgba(0, 0, 0, .22); visibility: hidden; opacity: 0; }
  .hd-item:hover > .hd-panel, .hd-item:focus-within > .hd-panel { visibility: visible; opacity: 1; transition: opacity .12s ease-out; }
  .hd-list .hd-item.hd-dismissed > .hd-panel { visibility: hidden; opacity: 0; transition: none; }
  .hd-panel__in { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); column-gap: 40px; align-items: start; padding-block: 26px 34px; }
  .hd-col--wide { grid-column: span 2; }
  .hd-intro__cta { min-height: 44px; padding: 10px 22px; }
  .hd-links, .hd-guides { margin-top: 12px; }

  .hd-actions { display: flex; align-items: center; gap: 16px; margin-left: auto; }
  .hd-est { min-height: 44px; padding: 10px 24px; font-size: 14px; white-space: nowrap; }
  .hd-phone { gap: 9px; min-height: 48px; padding: 6px 18px; font-size: clamp(17px, 1.6vw, 21px); line-height: 1; white-space: nowrap; }
  .hd-phone .ic { width: 1.05em; height: 1.05em; }
}

/* tight desktop widths (1120-1279): shrink the logo lock-up and actions so nothing wraps */
@media (min-width: 1120px) and (max-width: 1279px) {
  .hd-mark { width: 34px; height: 34px; }
  .hd-logo { gap: 8px; }
  .hd-logo__name { font-size: 25px; }
  .hd-logo__tag { font-size: 10px; padding: 4px 3px 4px 6px; }
  .hd-nav { margin-left: 12px; }
  .hd-actions { gap: 12px; }
  .hd-est { padding: 10px 18px; }
  .hd-phone { padding: 6px 14px; gap: 7px; font-size: 17px; }
}

/* ---------- mobile / tablet < 1120px ---------- */
@media (max-width: 1119px) {
  .hd-d-only, .hd-col--more { display: none; }
  .hd-actions { display: none; }
  .hd-burger { display: inline-flex; margin-right: -8px; }
  .hd-logo__name { font-size: 26px; }
  .hd-mbar { display: grid; }
  body { padding-bottom: calc(var(--mobilebar-h) + env(safe-area-inset-bottom, 0px)); }
  body.hd-nav-open, body:has(.hd-state:checked) { overflow: hidden; }

  /* full-screen drawer, slides in from the left */
  .hd-drawer { position: fixed; inset: 0; z-index: 2; display: flex; flex-direction: column; background: #fff; overflow-y: auto; overscroll-behavior: contain; transform: translateX(-100%); visibility: hidden; transition: transform .25s ease, visibility 0s linear .25s; }
  .hd-state:checked ~ .hd-bar .hd-drawer { transform: none; visibility: visible; transition-delay: 0s; }
  .hd-drawer__top { display: flex; align-items: center; justify-content: space-between; flex: none; height: var(--header-h-m); padding: 0 calc(var(--gutter) - 8px) 0 var(--gutter); }
  .hd-close { display: inline-flex; }
  .hd-nav { flex: none; }
  .hd-list { border-bottom: 1px solid var(--line); }
  .hd-item { border-top: 1px solid var(--line); }
  .hd-top, .hd-acc { position: relative; align-items: center; justify-content: center; width: 100%; min-height: 58px; padding: 12px 56px; border: 0; background: transparent; font-size: 19px; font-weight: 700; line-height: 1.25; text-align: center; cursor: pointer; }
  .hd-top { display: flex; }
  .hd-top .hd-chev { display: none; }
  .hd-acc .hd-chev { position: absolute; right: 22px; top: 50%; width: 18px; height: 18px; margin-top: -9px; }
  .hd-acc[aria-expanded="true"] .hd-chev { transform: rotate(180deg); color: var(--accent-text); }
  .hd-top.is-current, .hd-acc.is-current { box-shadow: inset 4px 0 0 var(--accent); }
  .hd-header.hd-js .hd-item--panel > .hd-top { display: none; }
  .hd-header.hd-js .hd-acc { display: flex; }
  .hd-header.hd-js .hd-item:not(.is-open) > .hd-panel { display: none; }

  .hd-panel { background: #f6f6f6; border-top: 1px solid var(--line); padding: 4px 0 22px; }
  .hd-panel__in { display: block; width: 100%; max-width: 680px; padding-block: 0; }
  .hd-col { margin-top: 20px; text-align: center; }
  .hd-col--intro { margin-top: 18px; }
  .hd-h { text-align: center; font-size: 12.5px; }
  .hd-blurb { margin: 10px 0 12px; font-size: 16px; }
  .hd-all { justify-content: center; padding: 13px 12px; font-size: 15px; }
  .hd-links, .hd-guides { margin-top: 4px; }
  .hd-link, .hd-guide { padding: 13px 8px; border-bottom: 0; }
  .hd-link__t { font-size: 18px; font-weight: 400; }
  .hd-link__d { display: none; }
  .hd-link.is-current .hd-link__t { font-weight: 700; }
  .hd-guide__t { font-size: 16px; font-weight: 500; }
  .hd-guide__go { display: none; }

  .hd-drawer__cta { display: grid; gap: 14px; flex: none; width: 100%; max-width: 560px; margin: auto auto 0; padding: 30px 32px calc(30px + env(safe-area-inset-bottom, 0px)); }
  .hd-drawer__cta .btn { min-height: 56px; font-size: 17px; }
  .hd-drawer__call { gap: 10px; }
}

@media (max-width: 480px) {
  .hd-logo { gap: 8px; }
  .hd-mark { width: 34px; height: 34px; }
  .hd-logo__name { font-size: 23px; }
  .hd-logo__tag { font-size: 10px; padding: 4px 3px 4px 6px; }
}
@media (max-width: 360px) {
  .hd-drawer__cta { padding-inline: 20px; }
  .hd-drawer__call { white-space: nowrap; font-size: 16px; }
}
@media (max-width: 299px) {
  .hd-logo__tag { display: none; }
}

/* src/css/components/hero-home.css */
/* Home hero: tagline bar (40px) + illustrated hero (480px) + trust bar (96px). Prefix hh-. */

/* ---- 1. tagline bar ---- */
.hh-tagline { background: var(--primary); color: #fff; }
.hh-tagline__text { margin: 0; display: flex; align-items: center; justify-content: center; min-height: var(--topbar-h); padding: 8px var(--gutter); text-align: center; font-size: 16px; line-height: 21px; font-weight: 400; text-wrap: balance; }

/* ---- 2. hero ---- */
.hh-hero {
  position: relative; isolation: isolate; overflow: hidden;
  min-height: 480px; display: flex; flex-direction: column; justify-content: flex-end;
  color: #fff;
  background:
    radial-gradient(rgba(255, 255, 255, .09) 1.5px, transparent 1.7px) 0 0 / 28px 28px,
    radial-gradient(ellipse 46% 70% at 50% 26%, color-mix(in srgb, var(--primary) 80%, transparent), transparent 78%),
    linear-gradient(180deg, color-mix(in srgb, var(--primary-dark) 74%, #000) 0%, var(--primary-dark) 100%);
}
/* readability scrim: clear over the illustration, navy behind the copy */
.hh-hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(ellipse 44% 78% at 50% 94%, color-mix(in srgb, var(--primary-dark) 86%, transparent) 0%, color-mix(in srgb, var(--primary-dark) 78%, transparent) 42%, color-mix(in srgb, var(--primary-dark) 40%, transparent) 72%, transparent 100%),
    linear-gradient(180deg, transparent 0%, transparent 74%, color-mix(in srgb, var(--primary-dark) 55%, transparent) 100%);
}
.hh-hero__art { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hh-art { position: absolute; top: 0; left: 50%; margin-left: -720px; width: 1440px; height: 480px; max-width: none; }
.hh-ln { fill: none; stroke: #fff; stroke-linecap: round; stroke-linejoin: round; }
.hh-pkl { fill: none; stroke: var(--accent); stroke-linecap: round; stroke-linejoin: round; }
.hh-sl { fill: none; stroke: var(--accent-soft); stroke-linecap: round; stroke-linejoin: round; }
.hh-pk { fill: var(--accent); }
.hh-wf { fill: #fff; }
.hh-art .hh-pk, .hh-art .hh-pkl { stroke-linecap: round; }

/* photo variant: images/hero.jpg under a navy overlay */
.hh-hero__photo { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; max-width: none; object-fit: cover; }
.hh-hero--photo::before { content: ""; position: absolute; inset: 0; z-index: 1; background: color-mix(in srgb, var(--primary-dark) 64%, transparent); }

.hh-hero__inner { position: relative; z-index: 2; padding-block: 28px 16px; text-align: center; }
.hh-hero .hh-h1 {
  margin: 0 auto 12px; max-width: 1120px; color: #fff; font-size: 48px; font-weight: 700; line-height: 1.2;
  text-shadow: 0 2px 14px rgba(0, 0, 0, .4);
}
.hh-lead { margin: 0 auto 20px; max-width: 760px; font-size: 20px; line-height: 1.4; font-weight: 500; color: #fff; text-shadow: 0 1px 10px rgba(0, 0, 0, .45); text-wrap: balance; }

/* quote form */
.hh-form { display: flex; align-items: stretch; gap: 10px; max-width: 760px; margin: 0 auto; padding: 8px; background: rgba(0, 0, 0, .3); text-align: left; }
.hh-field { position: relative; flex: 1 1 300px; min-width: 0; }
.hh-field--zip { flex: 0 1 170px; }
.hh-select, .hh-input {
  display: block; width: 100%; height: 58px; margin: 0; padding: 0 16px; border: 2px solid #fff; border-radius: 2px;
  background: #fff; box-shadow: inset 0 0 0 1px var(--line); color: var(--text-navy);
  font: 500 16px/1.2 var(--font); letter-spacing: .01em; transition: border-color .25s ease-in, box-shadow .25s ease-in;
}
.hh-select { appearance: none; -webkit-appearance: none; padding-right: 48px; cursor: pointer; text-overflow: ellipsis; }
.hh-input::placeholder { color: var(--muted); opacity: 1; }
.hh-select:hover, .hh-input:hover { border-color: var(--accent-soft); }
.hh-select:focus-visible, .hh-input:focus-visible { outline: 3px solid var(--accent-soft); outline-offset: 2px; border-color: #fff; }
.hh-input:user-invalid { border-color: var(--accent-soft); }
/* CSS chevron (no image, no hard-coded color) */
.hh-field--select::after {
  content: ""; position: absolute; top: 50%; right: 20px; width: 11px; height: 11px; margin-top: -8px; pointer-events: none;
  border: solid var(--text-navy); border-width: 0 2.5px 2.5px 0; transform: rotate(45deg);
}
.hh-form .hh-submit { flex: 0 0 auto; min-width: 210px; height: 58px; padding: 0 22px; font-size: 16px; }
.hh-form .hh-submit:focus-visible { outline-color: #fff; }

/* ---- 3. trust bar ---- */
.hh-trust { background: var(--primary); color: #fff; }
.hh-trust__list { list-style: none; margin: 0 auto; padding-block: 0; display: grid; grid-template-columns: repeat(5, 1fr); min-height: 96px; }
.hh-trust__item { display: flex; align-items: center; justify-content: center; gap: 16px; padding: 12px 8px; min-width: 0; }
.hh-trust__icon { flex: none; width: 64px; height: 64px; color: #fff; }
.hh-trust__label { display: block; max-width: 132px; font-size: 16px; font-weight: 700; line-height: 1.1; letter-spacing: .01em; text-wrap: balance; }
.hh-trust__sub { display: block; margin-top: 3px; font-size: 13px; font-weight: 500; letter-spacing: .02em; }

/* tablet + phone landscape: icon above label, 48px icons */
@media (max-width: 1119px) {
  .hh-trust__item { flex-direction: column; gap: 10px; padding: 22px 6px 20px; text-align: center; }
  .hh-trust__icon { width: 48px; height: 48px; }
  .hh-trust__label { max-width: 150px; }
}
@media (max-width: 1023px) {
  .hh-hero .hh-h1 { font-size: 35px; }
  .hh-lead { font-size: 19px; }
}

/* phone */
@media (max-width: 767px) {
  .hh-tagline__text { line-height: 21px; }
  .hh-hero { min-height: 480px; }
  .hh-art { transform: scale(.62); transform-origin: 50% 0; opacity: .8; }
  .hh-hero::after { background: linear-gradient(180deg, transparent 0%, color-mix(in srgb, var(--primary-dark) 42%, transparent) 26%, color-mix(in srgb, var(--primary-dark) 78%, transparent) 60%, color-mix(in srgb, var(--primary-dark) 88%, transparent) 100%); }
  .hh-hero__inner { padding-block: 24px 16px; }
  .hh-hero .hh-h1 { font-size: var(--fs-h1); margin-bottom: 10px; }
  .hh-lead { font-size: 16px; margin-bottom: 16px; }
  .hh-form { flex-direction: column; gap: 10px; padding: 10px; }
  .hh-field, .hh-field--zip { flex: none; }
  .hh-select, .hh-input { height: 54px; }
  .hh-form .hh-submit { width: 100%; min-width: 0; height: 58px; }
  .hh-trust__list { grid-template-columns: repeat(4, 1fr); min-height: 0; position: relative; padding-inline: 8px; }
  .hh-trust__item { gap: 8px; padding: 18px 2px 16px; }
  .hh-trust__icon { width: 32px; height: 32px; }
  .hh-trust__label { max-width: 96px; font-size: 12px; line-height: 1.15; }
  .hh-trust__sub { margin-top: 1px; font-size: 11px; }
  /* 5th item ("serving the Triad") is dropped visually (the tagline bar already says it) but stays in the DOM for assistive tech */
  .hh-trust__item:nth-child(n+5) { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
}

/* the two callout illustrations need room; below 1360px only the central house shows */
@media (max-width: 1359px) { .hh-side { display: none; } }
.hh-nb { white-space: nowrap; }
@media (max-width: 380px) { .hh-hero .hh-h1 { font-size: 28px; } }
@media (max-width: 340px) { .hh-hero .hh-h1 { font-size: 26px; } .hh-lead { font-size: 15px; } }

/* src/css/components/inner-hero.css */
/* inner-hero.css — inner-page banner family. Prefix: ih-  (owner: inner-hero agent) */

/* ======================================================================
   Hero B — full-bleed 480px banner
   ====================================================================== */
.ih-hero { position: relative; --ih-h1-weight: 600; /* spec: 300. The reference renders visibly heavier (~500-600); raise here if you want the closer visual match */ }
.ih-hero__banner {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: flex-start;
  color: #fff;
  background:
    radial-gradient(60% 110% at 84% 24%, color-mix(in srgb, var(--primary) 72%, #9cc0f2) 0%, transparent 72%),
    linear-gradient(172deg, var(--primary) 0%, var(--primary-dark) 100%);
}
.ih-hero__bg { position: absolute; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }
.ih-hero__photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .38; }
/* legibility scrim over a real photo: deepest behind the text column */
.ih-hero--photo .ih-hero__bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, color-mix(in srgb, var(--primary-dark) 88%, transparent) 0%, color-mix(in srgb, var(--primary-dark) 62%, transparent) 55%, transparent 100%); }
.ih-hero__art {
  position: absolute; top: 0; right: 0; bottom: 0; width: 66%;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 42%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 42%);
}
.ih-art { display: block; width: 100%; height: 100%; }
.ih-al { stroke: #fff; stroke-opacity: .16; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.ih-ac { stroke: var(--accent); stroke-opacity: .38; stroke-width: 3.5; stroke-linecap: round; stroke-linejoin: round; }
.ih-af { fill: #fff; fill-opacity: .045; stroke: none; }
.ih-aw { stroke-width: 7; }

.ih-hero__inner { position: relative; z-index: 1; padding-block: 64px; }
.ih-hero__text { max-width: 768px; }

/* pill row */
.ih-pills { margin: 0 0 32px; }
.ih-pills__list { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; margin: 0; padding: 0; }
.ih-hero .btn--pill { min-height: 44px; padding: 10px 18px; font-size: 15px; font-weight: 700; letter-spacing: .01em; border-color: #fff; }
.ih-hero .btn--pill:hover { background: rgba(255, 255, 255, .16); border-color: #fff; text-decoration: none; }
.ih-hero .btn--pill.is-current, .ih-hero .btn--pill.is-current:hover { background: var(--primary-dark); border-color: #fff; }

/* "Go to…" dropdown — mobile only (desktop uses the pill row) */
.ih-goto { display: none; position: relative; z-index: 6; }
.ih-goto__sum {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  min-height: 46px; padding: 0 14px 0 16px;
  border: 1px solid #fff; border-radius: var(--r-btn);
  color: #fff; font: 400 17px/1.2 var(--font);
  list-style: none; cursor: pointer; user-select: none;
}
.ih-goto__sum::-webkit-details-marker { display: none; }
.ih-goto__sum::marker { content: ''; }
.ih-goto__sum svg { flex: none; }
.ih-goto[open] .ih-goto__sum { background: var(--primary-dark); }
.ih-goto__list {
  position: absolute; left: 0; right: 0; top: calc(100% + 6px);
  margin: 0; padding: 6px 0; list-style: none;
  background: #fff; border-radius: var(--r-btn); box-shadow: var(--shadow-panel);
}
.ih-goto__list a { display: flex; align-items: center; min-height: 46px; padding: 8px 16px; color: var(--text-navy); font-weight: 700; font-size: 16px; text-decoration: none; }
.ih-goto__list a:hover, .ih-goto__list a:focus-visible { background: var(--band-blue); text-decoration: none; }
.ih-goto__list a.is-current { color: var(--primary); background: var(--band-blue-2); }
.ih-goto__sum:focus-visible, .ih-goto__list a:focus-visible { outline: 3px solid #fff; outline-offset: 2px; }
.ih-goto__list a:focus-visible { outline-color: var(--primary); outline-offset: -3px; }

/* copy */
.ih-hero .ih-hero__title {
  margin: 0 0 8px; max-width: 742px;
  color: #fff; font-size: var(--fs-h1-inner); font-weight: var(--ih-h1-weight); line-height: 1.1; letter-spacing: .03em;
  text-shadow: 0 1px 12px rgba(0, 0, 0, .18);
}
.ih-hero__lead { margin: 0 0 40px; max-width: 600px; color: #fff; font-size: 19px; font-weight: 400; line-height: 28px; }
.ih-hero__title:last-child, .ih-hero__lead:last-child { margin-bottom: 0; }
.ih-hero .ih-hero__cta { min-height: 43px; padding: 10px 24px; font-size: 14px; }
.ih-hero .ih-hero__cta:focus-visible, .ih-pills a:focus-visible { outline: 3px solid #fff; outline-offset: 3px; }

/* ---------------------------------------------------------- card slot (contact page) */
.ih-hero__card {
  position: relative; z-index: 4;
  background: #fff; color: var(--text);
  border-top: 3px solid var(--accent);
  box-shadow: var(--shadow-panel);
  padding: 20px;
}
@media (min-width: 1024px) {
  /* grid trick: the card spans banner + breadcrumb + a flexible third row; that row absorbs whatever the card
     hangs below the banner, so the page below always clears the card (no fixed heights, no JS). */
  .ih-hero--card { display: grid; grid-template-columns: minmax(0, 1fr); grid-template-rows: auto auto 1fr; }
  .ih-hero--card .ih-hero__banner { grid-column: 1; grid-row: 1; }
  .ih-hero--card > .ih-crumbs { grid-column: 1; grid-row: 2; }
  .ih-hero--card .ih-hero__card {
    grid-column: 1; grid-row: 1 / -1;
    align-self: start; justify-self: end;
    width: min(489px, calc(100% - 2 * var(--gutter)));
    margin: 64px max(var(--gutter), calc((100% - var(--container)) / 2)) 0 0;
  }
  .ih-hero--card .ih-hero__text { max-width: min(768px, calc(100% - 521px)); }
  .ih-after-card { margin-top: 48px; }
}
@media (max-width: 1023px) {
  .ih-hero__card { width: calc(100% - 2 * var(--gutter)); max-width: 720px; margin: 32px auto 0; }
  .ih-hero--card { padding-bottom: 32px; }
}

/* ---------------------------------------------------------- tablet / mobile */
@media (max-width: 1023px) {
  .ih-hero__banner { min-height: 420px; }
  .ih-hero__inner { padding-block: 56px; }
  .ih-hero .ih-hero__title { font-size: 35px; }
  .ih-hero__art { width: 80%; }
}
@media (max-width: 767px) {
  .ih-hero__banner { min-height: 0; }
  .ih-hero__inner { padding-block: 40px 44px; }
  .ih-pills { margin-bottom: 26px; }
  .ih-pills__list { display: none; }
  .ih-goto { display: block; }
  .ih-hero .ih-hero__title { font-size: var(--fs-h1-inner); line-height: 1.15; letter-spacing: .02em; }
  .ih-hero__lead { max-width: none; font-size: 18px; line-height: 26px; margin-bottom: 28px; }
  .ih-hero__art { width: 100%; opacity: .8; -webkit-mask-image: linear-gradient(90deg, transparent 25%, #000 100%); mask-image: linear-gradient(90deg, transparent 25%, #000 100%); }
  .ih-hero__card { padding: 16px; }
}

/* ======================================================================
   Breadcrumb bar — 35px, --band-blue
   ====================================================================== */
.ih-crumbs { background: var(--band-blue); color: var(--text-navy); }
.ih-crumbs .container { display: flex; align-items: center; min-height: 35px; }
.ih-crumbs__list { display: flex; flex-wrap: wrap; align-items: center; margin: 0; padding: 4px 0; list-style: none; font-size: 13px; line-height: 1.35; }
.ih-crumbs__item + .ih-crumbs__item::before { content: '/'; margin: 0 11px; color: var(--muted); font-weight: 400; }
.ih-crumbs__item a { color: var(--text-navy); font-weight: 500; text-decoration: none; }
.ih-crumbs__item a:hover { text-decoration: underline; }
.ih-crumbs__cur { font-weight: 700; color: var(--text-navy); }
.ih-crumbs--solo { border-bottom: 1px solid rgba(18, 49, 92, .06); }
@media (max-width: 767px) {
  .ih-crumbs__list { font-size: 12.5px; }
  .ih-crumbs__item + .ih-crumbs__item::before { margin: 0 7px; }
}

/* ======================================================================
   Process steps — very light band with a curved --band-grey "hill" inside it (reference: 3 bordered cards)
   ====================================================================== */
.ih-steps {
  position: relative; isolation: isolate; overflow: hidden;
  background: color-mix(in srgb, var(--band-grey) 38%, #fff);
  padding: 56px 0 56px;
}
.ih-steps__wave { position: absolute; left: 0; bottom: 0; z-index: -1; display: block; width: 100%; height: 330px; }
.ih-steps__wave path { fill: var(--band-grey); }
.ih-steps__h { margin: 0 0 12px; text-align: center; }
.ih-steps__lead { max-width: 760px; margin: 0 auto 8px; text-align: center; font-size: var(--fs-sub); font-weight: 300; line-height: 1.5; }
.ih-steps__list {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 48px;
  margin: 40px 0 0; padding: 0; list-style: none;
}
.ih-step {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 32px 30px 34px;
  background: #fff; border: 1px solid #d9dde3; border-radius: var(--r-lg);
}
.ih-step__icon { display: block; margin-bottom: 20px; color: var(--primary); line-height: 0; }
.ih-step__svg { display: block; width: 56px; height: 56px; }
.ih-ic-acc { stroke: var(--accent); }
.ih-step .ih-step__title { margin: 0 0 12px; font-size: 18px; font-weight: 700; line-height: 1.3; letter-spacing: .02em; }
.ih-step__text { margin: 0; font-size: 16px; line-height: 1.55; color: var(--text); }
.ih-steps__cta { display: flex; justify-content: center; margin-top: 32px; }
@media (max-width: 1023px) {
  .ih-steps__list { gap: 20px; }
  .ih-step { padding: 28px 20px 28px; }
}
@media (max-width: 767px) {
  .ih-steps { padding-block: 44px 44px; }
  .ih-steps__wave { height: 200px; }
  .ih-steps__list { grid-template-columns: 1fr; margin-top: 28px; gap: 20px; }
  .ih-step { padding: 28px 22px 26px; }
  .ih-steps__cta { margin-top: 28px; }
}

/* ======================================================================
   Grey CTA band — rounded bar, copy left / button right
   ====================================================================== */
.ih-cta { padding-block: var(--sec-pad); }
.ih-cta__box {
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  padding: 40px 48px;
  background: var(--band-grey); border-radius: var(--r-lg);
}
.ih-cta__copy { min-width: 0; max-width: 820px; }
.ih-cta__h { margin: 0 0 8px; font-size: 32px; line-height: 1.2; }
.ih-cta__p { margin: 0; font-size: 18px; line-height: 1.5; }
.ih-cta__big { margin: 0; color: var(--text-navy); font-size: 26px; font-weight: 300; line-height: 1.35; letter-spacing: .02em; }
.ih-cta__btn { flex: none; white-space: nowrap; }
@media (max-width: 767px) {
  .ih-cta__box { flex-direction: column; align-items: stretch; text-align: center; gap: 24px; padding: 32px 22px; }
  .ih-cta__h { font-size: 26px; }
  .ih-cta__big { font-size: 22px; }
  .ih-cta__btn { align-self: center; white-space: normal; }
}

/* touch devices: breadcrumb links meet the 44px target */
@media (max-width: 1023px) {
  .ih-crumbs .container { min-height: 44px; }
  .ih-crumbs__list { padding: 0; }
  .ih-crumbs__item a { display: inline-flex; align-items: center; min-height: 44px; }
}

/* src/css/components/layout-kit.css */
/* Layout kit (lk-). See lib/components/layout-kit.mjs for the API. Uses tokens only; no inline styles anywhere. */

/* ---------- shared: circle-check bullet (navy disc, pink check drawn in CSS) ---------- */
.lk-tick-list { list-style: none; margin: 0; padding: 0; }
.lk-tick-list > li { --tk: 24px; --tk-top: 10px; position: relative; min-height: 44px; padding: 10px 0 10px calc(var(--tk) + 12px); font-size: 16px; line-height: 24px; color: var(--text); }
.lk-tick-list > li::before { content: ""; position: absolute; left: 0; top: var(--tk-top); width: var(--tk); height: var(--tk); border-radius: 50%; background: var(--primary); }
.lk-tick-list > li::after { content: ""; position: absolute; left: calc(var(--tk) * .375); top: calc(var(--tk-top) + var(--tk) * .215); width: calc(var(--tk) * .25); height: calc(var(--tk) * .46); border: solid var(--accent-soft); border-width: 0 max(2px, calc(var(--tk) * .1)) max(2px, calc(var(--tk) * .1)) 0; transform: rotate(45deg); }
.lk-tick-list strong { font-weight: 700; color: var(--text-navy); }

/* ---------- sectionHead ---------- */
.lk-head { margin: 0 0 48px; }
.lk-head--center { text-align: center; }
.lk-head--left { text-align: left; }
.lk-head__title { margin: 0; font-size: var(--fs-h2); font-weight: 600; line-height: 1.2; letter-spacing: 1.4px; color: var(--text-navy); }
.lk-head__lead { margin: 20px auto 0; max-width: 900px; font-size: var(--fs-sub); font-weight: 300; line-height: 1.5; color: var(--text); text-wrap: balance; }
.lk-head--left .lk-head__lead { margin-left: 0; margin-right: 0; }

/* ---------- ctaCenter ---------- */
.lk-cta { margin: 40px 0 0; text-align: center; }
.lk-cta:first-child { margin-top: 0; }
.lk-cta__note { margin: 12px 0 0; font-size: 14px; color: var(--muted); }

/* ---------- overlapGrid (THE signature component) ----------
   Reference: 1280px container, two 620px cells, 40px gaps. Cell = 500px visual + 400px card overlapping by 280px.
   Both are centred vertically in the cell (grid stacking), so rows stagger from differing text heights. */
.lk-og-wrap { width: 100%; }
.lk-og { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 40px; }
.lk-og__cell { container-type: inline-size; display: grid; align-items: center; position: relative; min-width: 0; }
.lk-og__art, .lk-og__card { grid-area: 1 / 1; }
.lk-og__art { width: 100%; max-width: 500px; height: 320px; overflow: hidden; background: var(--band-blue); }
.lk-og__art > svg { display: block; width: 100%; height: 100%; }
.lk-og__card { position: relative; z-index: 1; width: 64.5%; max-width: 400px; padding: 28px; background: #fff; box-shadow: var(--shadow-panel); transition: box-shadow .25s ease-in; }
@supports (width: 1cqw) {
  .lk-og__art { width: min(500px, 100cqw); max-width: none; }
  .lk-og__card { width: clamp(240px, 108cqw - 270px, 400px); max-width: none; }
}
/* left column: card left / visual right.  right column: mirrored */
.lk-og__cell:nth-child(odd) .lk-og__art { justify-self: end; }
.lk-og__cell:nth-child(odd) .lk-og__card { justify-self: start; }
.lk-og__cell:nth-child(even) .lk-og__art { justify-self: start; }
.lk-og__cell:nth-child(even) .lk-og__card { justify-self: end; }

.lk-og__title { display: flex; align-items: baseline; gap: 8px; margin: 0 0 12px; font-size: 22px; font-weight: 700; line-height: 1.25; letter-spacing: .03em; color: var(--text-navy); }
.lk-og__label { min-width: 0; overflow-wrap: anywhere; }
.lk-og__title .lk-chev { flex: none; align-self: flex-start; margin-top: .42em; width: 13px; height: 13px; color: var(--primary); transition: transform .25s ease-in; }
.lk-og__link { color: inherit; text-decoration: none; }
.lk-og__link:hover { text-decoration: none; }
.lk-og__link::after { content: ""; position: absolute; inset: 0; z-index: 2; }
.lk-og__link:focus-visible { outline-offset: 4px; }
.lk-og__card.is-link:hover { box-shadow: 0 4px 46px rgba(0, 0, 0, .22); }
.lk-og__card.is-link:hover .lk-og__label { text-decoration: underline; text-underline-offset: 4px; text-decoration-thickness: 1px; }
.lk-og__card.is-link:hover .lk-chev { transform: translateX(3px); }
.lk-og__card:has(.lk-og__link:focus-visible) { outline: 3px solid var(--primary); outline-offset: 3px; }
.lk-og__text { margin: 0; font-size: 18.7px; font-weight: 400; line-height: 1.5; letter-spacing: .01em; color: var(--text-navy); }
.lk-og__bullets { margin: 16px 0 0; }
.lk-og__bullets > li { --tk: 18px; --tk-top: 3px; min-height: 0; padding: 0 0 0 30px; margin: 0 0 8px; font-size: 15px; line-height: 24px; color: var(--text-navy); }
.lk-og__bullets > li:last-child { margin-bottom: 0; }

/* medium cells (narrow desktop / tablet): smaller card type, tighter padding, like the reference at 1024 */
@container (max-width: 560px) {
  .lk-og__card { padding: 20px; }
  .lk-og__title { font-size: 16.5px; margin-bottom: 8px; }
  .lk-og__text { font-size: 14.5px; line-height: 1.45; }
  .lk-og__bullets > li { font-size: 13.5px; line-height: 22px; padding-left: 28px; }
  .lk-og__bullets > li { --tk: 16px; --tk-top: 3px; }
}

/* <=899px: two columns of stacked cells (visual on top, card below); <=767px: one column */
@media (max-width: 899px) {
  .lk-og { gap: 40px 24px; }
  .lk-og__cell { display: flex; flex-direction: column; align-items: stretch; }
  .lk-og__art { position: relative; z-index: 2; width: 100%; max-width: none; height: auto; aspect-ratio: 500 / 320; }
  .lk-og__card { width: 100%; max-width: none; flex: 1 1 auto; }
}
@media (max-width: 767px) {
  .lk-og { grid-template-columns: minmax(0, 1fr); gap: 40px; }
  .lk-og__card { padding: 20px; }
  .lk-og__title { font-size: 16px; margin-bottom: 8px; }
  .lk-og__text { font-size: 15px; line-height: 1.5; }
  .lk-og__bullets > li { font-size: 14.5px; line-height: 22px; }
}

/* ---------- splitRow ---------- */
.lk-split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 32px; align-items: center; }
.lk-split--33.lk-split--left { grid-template-columns: minmax(0, 416px) minmax(0, 1fr); }
.lk-split--33.lk-split--right { grid-template-columns: minmax(0, 1fr) minmax(0, 416px); }
.lk-split--25.lk-split--left { grid-template-columns: minmax(0, 312px) minmax(0, 1fr); }
.lk-split--25.lk-split--right { grid-template-columns: minmax(0, 1fr) minmax(0, 312px); }
.lk-split--left .lk-split__art { order: -1; }
.lk-split__art { width: 100%; aspect-ratio: 500 / 320; overflow: hidden; background: var(--band-blue); }
.lk-split__art > svg { display: block; width: 100%; height: 100%; }
.lk-split__text { min-width: 0; }
.lk-split__text > :last-child { margin-bottom: 0; }
.lk-split__kicker { margin: 0 0 8px; font-size: 13px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--accent-text); }
.lk-split__title { margin: 0 0 24px; color: var(--text-navy); }
.lk-split__title--h2 { font-size: var(--fs-h2); font-weight: 600; line-height: 1.2; letter-spacing: 1.4px; }
.lk-split__title--h3, .lk-split__title--h4 { font-size: calc(var(--fs-h3) + 2px); font-weight: 700; line-height: 1.2; letter-spacing: .03em; margin-bottom: 20px; }
.lk-split__text p { font-size: 16px; line-height: 1.5; margin: 0 0 16px; }
.lk-split__text .lk-check { margin: 0 0 16px; }
.lk-split__text .lk-split__cta { margin-top: 24px; }
@media (max-width: 767px) {
  .lk-split, .lk-split--33.lk-split--left, .lk-split--33.lk-split--right, .lk-split--25.lk-split--left, .lk-split--25.lk-split--right { grid-template-columns: minmax(0, 1fr); gap: 20px; }
  .lk-split__art { order: -1; max-width: 520px; margin-inline: auto; }
  .lk-split__title--h3, .lk-split__title--h4 { margin-bottom: 12px; }
}

/* ---------- checkList ---------- */
.lk-check { margin: 0; }
.lk-check--2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 40px; }
@media (max-width: 767px) { .lk-check--2 { grid-template-columns: minmax(0, 1fr); } }

/* ---------- badgeRow ---------- */
.lk-badges { --lk-bg: 20px; list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 28px var(--lk-bg); }
.lk-badge { flex: 0 0 calc((100% - 5 * var(--lk-bg)) / 6); min-width: 0; display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center; }
.lk-badge__ic { width: 84px; height: 84px; border-radius: 50%; border: 2px solid var(--primary); background: #fff; color: var(--primary); display: grid; place-items: center; }
.lk-badge__ic svg { display: block; }
.lk-badge__label { max-width: 180px; font-size: 15px; font-weight: 700; line-height: 1.3; letter-spacing: .01em; color: var(--text-navy); }
@media (max-width: 1023px) { .lk-badge { flex-basis: calc((100% - 2 * var(--lk-bg)) / 3); } }
@media (max-width: 479px) { .lk-badges { --lk-bg: 12px; } .lk-badge { flex-basis: calc((100% - var(--lk-bg)) / 2); } .lk-badge__ic { width: 72px; height: 72px; } .lk-badge__label { font-size: 14px; } }

/* ---------- highlightCard ---------- */
.lk-hl { padding: 32px; background: #fff; border: 1px solid var(--band-grey); border-top: 5px solid var(--accent); border-radius: var(--r-card); box-shadow: var(--shadow-card); }
.lk-hl__title { margin: 0 0 12px; font-size: 24px; font-weight: 700; line-height: 1.25; letter-spacing: .02em; color: var(--text-navy); }
.lk-hl__list > li { padding-right: 4px; }
@media (max-width: 767px) { .lk-hl { padding: 24px 20px; } .lk-hl__title { font-size: 21px; } }

/* ---------- notchedBand: soft two-tone band, lighter "hill" hanging from the top edge ---------- */
.lk-band { --lk-band: var(--band-grey); --lk-hill: #f8f8f8; position: relative; isolation: isolate; overflow: hidden; padding-block: 48px; background: var(--lk-band); }
.lk-band--blue { --lk-band: var(--band-blue); --lk-hill: var(--band-blue-2); }
.lk-band::before { content: ""; position: absolute; z-index: -1; top: 0; left: -12%; right: -12%; height: 72%; background: var(--lk-hill); border-radius: 0 0 50% 50% / 0 0 100% 100%; }
.lk-band__in > :first-child { margin-top: 0; }
.lk-band__in > :last-child { margin-bottom: 0; }
@media (max-width: 767px) { .lk-band { padding-block: 36px; } .lk-band::before { height: 62%; left: -30%; right: -30%; } }

/* ---------- imageCard / cardGrid ---------- */
.lk-cg { list-style: none; margin: 0; padding: 0; display: grid; gap: 32px; grid-template-columns: repeat(var(--lk-cols, 3), minmax(0, 1fr)); }
.lk-cg--2 { --lk-cols: 2; }
.lk-cg--3 { --lk-cols: 3; }
.lk-cg--4 { --lk-cols: 4; gap: 40px; }
.lk-cg__item { min-width: 0; display: flex; }
.lk-ic { position: relative; display: flex; flex-direction: column; width: 100%; background: #fff; border: 1px solid var(--band-grey); box-shadow: 0 0 28px rgba(0, 0, 0, .15); transition: box-shadow .25s ease-in, transform .25s ease-in; }
.lk-ic__media { aspect-ratio: 1.22 / 1; overflow: hidden; background: var(--band-blue); }
.lk-ic--r15 .lk-ic__media { aspect-ratio: 1.5 / 1; }
.lk-ic--r16 .lk-ic__media { aspect-ratio: 1.6 / 1; }
.lk-ic__media > svg { display: block; width: 100%; height: 100%; }
.lk-ic__body { flex: 1 1 auto; display: flex; flex-direction: column; padding: 20px; }
.lk-ic__eyebrow { margin: 0 0 6px; font-size: 12px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; color: var(--primary); }
.lk-ic__title { margin: 0 0 10px; font-size: 19px; font-weight: 700; line-height: 1.3; letter-spacing: .02em; color: var(--text-navy); }
.lk-ic__link { color: inherit; text-decoration: none; }
.lk-ic__link:hover { text-decoration: none; }
.lk-ic__link::after { content: ""; position: absolute; inset: 0; z-index: 1; }
.lk-ic__text { margin: 0; font-size: 16px; line-height: 1.5; color: var(--text); display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 3; line-clamp: 3; overflow: hidden; }
.lk-ic__more { margin-top: auto; padding-top: 14px; display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--primary); }
.lk-ic__more .lk-chev { width: 12px; height: 12px; transition: transform .25s ease-in; }
.lk-ic.is-link:hover { box-shadow: 0 0 34px rgba(0, 0, 0, .24); }
.lk-ic.is-link:hover .lk-ic__title { text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.lk-ic.is-link:hover .lk-chev { transform: translateX(3px); }
.lk-ic:has(.lk-ic__link:focus-visible) { outline: 3px solid var(--primary); outline-offset: 3px; }
@media (max-width: 1199px) { .lk-cg--4 { --lk-cols: 2; gap: 32px; } }
@media (max-width: 1023px) { .lk-cg--3 { --lk-cols: 2; } }
@media (max-width: 599px) { .lk-cg--3, .lk-cg--4 { --lk-cols: 1; } }
@media (max-width: 479px) { .lk-cg--2 { --lk-cols: 1; } }

/* ---------- cityList ---------- */
.lk-cities { list-style: none; margin: 0; padding: 0; column-gap: 32px; }
.lk-cities--1 { column-count: 1; }
.lk-cities--2 { column-count: 2; }
.lk-cities--3 { column-count: 3; }
.lk-cities li { break-inside: avoid; }
.lk-cities a { display: block; padding: 10px 0; font-size: 18px; font-weight: 400; line-height: 24px; color: var(--link); text-decoration: none; }
.lk-cities a:hover { text-decoration: underline; text-underline-offset: 3px; }
.lk-cities a[aria-current] { font-weight: 800; }
@media (max-width: 767px) { .lk-cities--3 { column-count: 2; } }
@media (max-width: 359px) { .lk-cities--2, .lk-cities--3 { column-count: 1; } }

/* ---------- mapEmbed ---------- */
.lk-map { position: relative; width: 100%; aspect-ratio: 16 / 9; overflow: hidden; background: var(--band-blue); }
.lk-map--16x5 { aspect-ratio: 16 / 5; }
.lk-map--2x1 { aspect-ratio: 2 / 1; }
.lk-map--16x9 { aspect-ratio: 16 / 9; }
.lk-map--3x2 { aspect-ratio: 3 / 2; }
.lk-map--4x3 { aspect-ratio: 4 / 3; }
.lk-map--1x1 { aspect-ratio: 1 / 1; }
.lk-map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }
@media (max-width: 767px) { .lk-map--16x5, .lk-map--2x1 { aspect-ratio: 4 / 3; } }

@media (prefers-reduced-motion: reduce) { .lk-og__card, .lk-ic, .lk-chev { transition: none !important; } }


/* src/css/components/social-proof.css */
/* Social proof, accordions, resource cards.  Prefix sp-.  Owner: social-proof agent.
   Sections: 1 stars/G  2 review card  3 carousel  4 dialog  5 rating+empty  6 review grid
             7 accordion  8 FAQ panel  9 causes card  10 resource cards */

:root {
  --sp-h2-weight: 600;   /* reference headings look heavier than 300 in screenshots; flip here if the lead re-tunes h2 */
}

/* ── 1. stars + Google mark ───────────────────────────────────────────────────────────────── */
.sp-stars { display: inline-flex; gap: 8px; color: var(--star); line-height: 0; vertical-align: middle; }
.sp-star { width: 24px; height: 24px; fill: currentColor; flex: none; }
.sp-star--off { color: var(--line); }
.sp-stars--sm { gap: 4px; }
.sp-stars--sm .sp-star { width: 18px; height: 18px; }
.sp-stars--lg { gap: 6px; }
.sp-stars--lg .sp-star { width: 30px; height: 30px; }
.sp-g { display: inline-flex; flex: none; line-height: 0; }

/* ── 2. review card ───────────────────────────────────────────────────────────────────────── */
.sp-rcard {
  display: flex; flex-direction: column;
  min-height: 380px; padding: 28px;
  background: #fff; border-top: 5px solid var(--accent); border-radius: var(--r-card);
  box-shadow: var(--shadow-card);
  list-style: none; min-width: 0; position: relative;
}
.sp-rcard__stars { padding-inline: 3px; }
.sp-rcard__quote { flex: 1 1 auto; margin: 0; padding: 28px 12px 20px; font-size: 17px; line-height: 1.55; color: var(--text); }
.sp-rcard__quote p { margin: 0; white-space: pre-line; overflow-wrap: anywhere; }
.sp-js .sp-rcard__quote p { display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 6; line-clamp: 6; overflow: hidden; }
.sp-rcard__name { margin: 0; padding-inline: 12px; font-size: 16px; font-style: italic; color: var(--muted); }
.sp-rcard__tag { margin: 2px 0 0; padding-inline: 12px; font-size: 13px; font-weight: 600; letter-spacing: .02em; color: var(--muted); }
.sp-rcard__tag span { display: block; }
.sp-rcard__foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 10px; }
.sp-rcard__foot .sp-g { margin-left: auto; margin-right: 4px; }
.sp-rcard__more {
  display: none; align-items: center; gap: 10px;
  min-height: 44px; margin: 0; padding: 0 0 0 1px;
  border: 0; background: none; cursor: pointer;
  font: 500 16px/1.2 var(--font); color: var(--primary-dark);
}
.sp-js .sp-rcard__more { display: inline-flex; }
.sp-rcard__more:hover { text-decoration: underline; text-underline-offset: 3px; }
.sp-more__dot { display: inline-grid; place-items: center; width: 20px; height: 20px; border-radius: 50%; background: var(--primary); color: #fff; transition: transform .25s ease-in; }
.sp-rcard__more:hover .sp-more__dot { transform: translateX(3px); }
.sp-more__ico { width: 12px; height: 12px; }

/* ── 3. reviews strip + carousel ──────────────────────────────────────────────────────────── */
.sp-strip__title { margin: 0 0 48px; font-weight: var(--sp-h2-weight); }
.sp-strip--center .sp-strip__title { text-align: center; }
.sp-reviews { position: relative; }
.sp-carousel { --sp-gap: 16px; position: relative; max-width: 1264px; }
.sp-track {
  display: flex; gap: var(--sp-gap); list-style: none;
  position: relative;   /* contains the absolutely-positioned .sr-only spans of off-screen cards (else they widen the page) */
  /* padding gives the card shadow room inside the scroller; negative margin keeps cards flush with the container */
  margin: -12px -16px -28px; padding: 12px 16px 28px;   /* side padding = gap, so a neighbouring card never peeks in */
  overflow-x: auto; overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory; scroll-padding-inline: 16px;
}
.sp-js .sp-track { scrollbar-width: none; }
.sp-js .sp-track::-webkit-scrollbar { display: none; }
.sp-track > .sp-rcard { flex: 0 0 calc((100% - 3 * var(--sp-gap)) / 4); scroll-snap-align: start; box-shadow: 0 2px 12px rgba(23, 47, 83, .2); }   /* tighter than --shadow-card so the scroller never clips it */
.sp-nav { display: flex; justify-content: center; gap: 16px; margin-top: 16px; }
.sp-nav[hidden] { display: none; }
.sp-nav__btn {
  position: relative; display: grid; place-items: center;
  width: 40px; height: 40px; padding: 0;
  border: 2px solid var(--primary); border-radius: 50%; background: #fff; color: var(--primary);
  cursor: pointer; transition: background-color .25s ease-in, color .25s ease-in, opacity .25s ease-in;
}
.sp-nav__btn::after { content: ""; position: absolute; inset: -4px; }   /* 48px hit area */
.sp-nav__btn:hover:not(:disabled) { background: var(--primary); color: #fff; }
.sp-nav__btn:disabled { opacity: .35; cursor: default; }
.sp-nav__ico { width: 20px; height: 20px; }
.sp-strip__more { display: flex; justify-content: center; margin-top: 40px; }

@media (max-width: 1024px) {
  .sp-track > .sp-rcard { flex-basis: calc((100% - var(--sp-gap)) / 2); }
}
@media (max-width: 768px) {
  .sp-strip__title { margin-bottom: 32px; }
  .sp-track > .sp-rcard { flex-basis: 100%; min-height: 340px; }
  .sp-strip__more { margin-top: 32px; }
}

/* ── 4. review dialog ─────────────────────────────────────────────────────────────────────── */
.sp-dialog {
  width: min(680px, calc(100vw - 32px)); max-height: calc(100dvh - 48px);
  padding: 0; border: 0; border-top: 5px solid var(--accent); border-radius: var(--r-card);
  background: #fff; color: var(--text); box-shadow: 0 20px 60px rgba(0, 0, 0, .35);
  overflow: auto;
}
.sp-dialog::backdrop { background: rgba(18, 49, 92, .6); }
.sp-dialog[open] { animation: sp-pop .2s ease-out; }
@keyframes sp-pop { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.sp-dialog__box { padding: 24px 32px 28px; }
.sp-dialog__top { display: flex; align-items: center; gap: 12px; }
.sp-dialog__sep { width: 1px; height: 22px; background: var(--primary); }
.sp-dialog__text { margin: 20px 0 24px; font-size: 17px; line-height: 1.65; white-space: pre-line; overflow-wrap: anywhere; }
.sp-dialog__name { margin: 0; font-weight: 700; color: var(--text-navy); }
.sp-dialog__meta { margin: 2px 0 0; font-size: 14px; color: var(--muted); }
.sp-dialog__meta:empty { display: none; }
.sp-dialog__actions { margin: 24px 0 0; text-align: center; }
@media (max-width: 480px) { .sp-dialog__box { padding: 20px 20px 24px; } }

/* ── 5. aggregate rating card + honest empty state ────────────────────────────────────────── */
.sp-rating {
  padding: 32px 28px 30px; text-align: center;
  background: #fff; border-top: 5px solid var(--accent); border-radius: var(--r-card); box-shadow: var(--shadow-card);
}
.sp-rating .sp-stars { justify-content: center; }
.sp-rating__score { margin: 0 0 12px; font-size: 64px; font-weight: 700; line-height: 1; color: var(--text-navy); letter-spacing: 0; }
.sp-rating__note { display: flex; align-items: center; justify-content: center; gap: 8px; margin: 16px 0 0; font-size: 16px; font-weight: 600; line-height: 1.3; color: var(--text-navy); }
.sp-empty { display: grid; grid-template-columns: minmax(0, 340px) minmax(0, 1fr); gap: 56px; align-items: center; }
.sp-empty--solo { grid-template-columns: minmax(0, 1fr); }
.sp-empty__title { margin: 0 0 16px; font-size: clamp(22px, 2.4vw, 28px); font-weight: 700; line-height: 1.25; letter-spacing: .02em; }
.sp-empty__copy p { max-width: 62ch; font-size: 17px; line-height: 1.6; }
.sp-empty__copy .btn-row { margin-top: 24px; }
@media (max-width: 860px) {
  .sp-empty { grid-template-columns: minmax(0, 1fr); gap: 32px; }
  .sp-rating { max-width: 420px; }
}
@media (max-width: 480px) { .sp-empty__copy .btn-row .btn { flex: 1 1 100%; } }
.sp-strip--center .sp-empty { justify-items: center; text-align: center; }
.sp-strip--center .sp-empty .btn-row { justify-content: center; }

/* ── 6. review grid (reviews page) ────────────────────────────────────────────────────────── */
.sp-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 32px 24px; list-style: none; margin: 0; padding: 0; }
.sp-grid .sp-rcard { min-height: 320px; }
@media (max-width: 1023px) { .sp-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) { .sp-grid { grid-template-columns: minmax(0, 1fr); } }

/* ── 7. accordion (native <details name>) ─────────────────────────────────────────────────── */
.sp-acc { background: #fff; border: 1px solid var(--line); border-radius: var(--r-card); }
.sp-acc__item + .sp-acc__item { border-top: 1px solid #e6e8ec; }
.sp-acc__sum {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  min-height: 61px; padding: 12px 20px;
  list-style: none; cursor: pointer;
  font-size: 19px; line-height: 1.3; color: var(--text);
  transition: background-color .2s ease;
  -webkit-tap-highlight-color: transparent;
}
.sp-acc__sum::marker { content: ""; }
.sp-acc__sum::-webkit-details-marker { display: none; }
.sp-acc__sum:hover { background: var(--band-blue-2); }
.sp-acc__sum:focus-visible { outline: 3px solid var(--primary); outline-offset: -3px; }
.sp-acc__q { min-width: 0; text-wrap: pretty; }
.sp-acc__chev { flex: none; width: 22px; height: 22px; color: #6b7c93; transition: transform .25s ease; }
.sp-acc__item[open] > .sp-acc__sum .sp-acc__chev { transform: rotate(180deg); }
.sp-acc__item[open] > .sp-acc__sum { color: var(--text-navy); font-weight: 600; }
.sp-acc__body { padding: 2px 20px 22px; font-size: 16px; line-height: 1.65; }
.sp-acc__item[open] > .sp-acc__body { animation: sp-fade .3s ease-out; }
@keyframes sp-fade { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: none; } }
.sp-acc__body p { margin: 0 0 1em; }
.sp-acc__body p:last-child { margin-bottom: 0; }
.sp-acc__more { text-align: center; margin-top: 16px !important; }
.sp-acc__more a { display: inline-flex; align-items: center; gap: 4px; min-height: 44px; font-weight: 700; letter-spacing: .03em; text-transform: uppercase; color: var(--primary); text-decoration: underline; text-underline-offset: 3px; }
.sp-acc__more-ico { width: 14px; height: 14px; }
@media (max-width: 767px) {
  .sp-acc__sum { font-size: 17px; padding: 12px 16px; }
  .sp-acc__body { padding: 2px 16px 20px; }
}

/* ── 8. FAQ panel (light-blue, slanted right edge, white rows) ────────────────────────────── */
.sp-faq {
  padding: 56px 70px 64px;
  background: var(--band-blue);
  border-radius: 12px 0 0 12px;
  clip-path: polygon(0 0, 100% 0, calc(100% - 46px) 100%, 0 100%);
}
.sp-faq__title { margin: 0 0 32px; font-size: clamp(28px, 2.6vw, 37px); font-weight: var(--sp-h2-weight); line-height: 1.2; }
.sp-acc--faq { border: 0; border-radius: 2px; box-shadow: 0 1px 3px rgba(18, 49, 92, .1); }
.sp-acc--faq .sp-acc__sum { font-size: 16px; font-weight: 500; padding: 12px 14px 12px 18px; }
.sp-acc--faq .sp-acc__item[open] > .sp-acc__sum { font-weight: 600; }
.sp-acc--faq .sp-acc__body { padding: 2px 18px 20px; font-size: 15.5px; }
@media (max-width: 1023px) {
  .sp-faq { clip-path: none; border-radius: 12px; padding: 44px 40px 48px; }
}
@media (max-width: 767px) {
  .sp-faq { padding: 32px 16px 36px; border-radius: 8px; }
  .sp-faq__title { margin-bottom: 20px; }
}

/* ── 9. causes card on a tinted band with two navy skewed shapes ──────────────────────────── */
.sp-causes { position: relative; overflow: hidden; padding: 48px 20px; background: var(--band-blue); }
.sp-causes__stage { position: relative; width: min(920px, 100%); margin-inline: auto; }
.sp-causes__shape { position: absolute; z-index: 0; width: 262px; height: 318px; background: var(--primary-dark); }
.sp-causes__shape--l { left: -182px; top: 178px; clip-path: polygon(0 0, 100% 0, 100% 100%, 107px 100%); }
.sp-causes__shape--r { right: -182px; top: 100px; clip-path: polygon(0 0, 100% 0, calc(100% - 107px) 100%, 0 100%); }
.sp-causes__card { position: relative; z-index: 1; padding: 60px; background: #fff; box-shadow: var(--shadow-panel); }
.sp-causes__title { margin: 0 0 20px; font-size: clamp(26px, 2.6vw, 37px); font-weight: var(--sp-h2-weight); text-transform: uppercase; letter-spacing: .06em; text-align: center; line-height: 1.2; }
.sp-causes__lead { max-width: 740px; margin: 0 auto 28px; font-size: var(--fs-sub); font-weight: 300; line-height: 1.5; text-align: center; text-wrap: balance; }
.sp-acc--causes { max-width: 700px; margin-inline: auto; }
.sp-causes__callout { max-width: 520px; margin: 40px auto 0; padding: 22px 28px 12px; background: #f5f5f5; border-radius: 12px; text-align: center; }
.sp-causes__callout p { margin: 0 0 4px; font-size: 20px; font-weight: 500; line-height: 1.2; color: var(--text); text-wrap: balance; }
.sp-causes__callout a { display: inline-flex; align-items: center; gap: 4px; min-height: 44px; font-size: 14px; font-weight: 800; letter-spacing: .02em; color: var(--primary-dark); }
.sp-causes__ico { width: 16px; height: 16px; transition: transform .25s ease-in; }
.sp-causes__callout a:hover .sp-causes__ico { transform: translateX(3px); }
@media (max-width: 1179px) { .sp-causes__shape { display: none; } }   /* not enough side room for the slant to read */
@media (max-width: 767px) {
  .sp-causes { padding: 32px 0; }
  .sp-causes__stage { width: 100%; }
  .sp-causes__card { padding: 32px 18px 30px; box-shadow: none; }
  .sp-causes__callout { margin-top: 28px; padding: 18px 16px 8px; }
  .sp-causes__callout p { font-size: 18px; }
}

/* ── 10. resource cards ───────────────────────────────────────────────────────────────────── */
.sp-res-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 32px; list-style: none; margin: 0; padding: 0; }
.sp-res-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 34px; }
.sp-res { display: flex; min-width: 0; }
.sp-res__card {
  position: relative; display: flex; flex-direction: column; width: 100%;
  background: #fff; border: 1px solid var(--band-grey); border-radius: 0;
  box-shadow: 0 0 28px rgba(0, 0, 0, .15);
}
.sp-res__img { position: relative; overflow: hidden; aspect-ratio: 1.22; background: var(--band-blue); }
.sp-res__img svg { position: absolute; left: 50%; top: 0; height: 100%; width: auto; max-width: none; transform: translateX(-50%); }
.sp-res__body { display: flex; flex: 1 1 auto; flex-direction: column; padding: 20px 20px 22px; }
.sp-res__cat { margin: 0 0 8px; font-size: 14px; font-weight: 700; line-height: 1.3; letter-spacing: .03em; color: var(--text-navy); }
.sp-res__title { margin: 0 0 12px; font-size: 19px; font-weight: 700; line-height: 1.35; letter-spacing: .03em; }
.sp-res__title a { color: var(--text-navy); text-decoration: none; transition: opacity .25s ease-in; }
.sp-res__title a::after { content: ""; position: absolute; inset: 0; z-index: 1; }   /* whole card is the link */
.sp-res__card:hover .sp-res__title a { opacity: .65; }
.sp-res__title a:focus-visible { outline: none; }
.sp-res__card:has(.sp-res__title a:focus-visible) { outline: 3px solid var(--primary); outline-offset: 2px; }
.sp-res__excerpt { display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 3; line-clamp: 3; overflow: hidden; margin: 0 0 20px; font-size: 15px; line-height: 1.55; color: var(--text); }
.sp-res__more { margin-top: auto; font-size: 13px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--text-navy); }
@media (max-width: 899px) { .sp-res-grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 480px) {
  .sp-res-grid, .sp-res-grid--2 { grid-template-columns: minmax(0, 1fr); gap: 24px; }
}


/* src/css/pages/about.css */
/* About / Payment Options / Privacy pages. Prefix: pg-about-  (owner: page-about). Tokens only, no inline styles. */

/* ---------- About: story rows ---------- */
.pg-about-story__stack { display: grid; gap: 72px; }
@media (max-width: 767px) { .pg-about-story__stack { gap: 44px; } }

/* ---------- About: "Proudly Serving" — city links (cityList markup): grid on phones/tablets, one dotted line on desktop ---------- */
.pg-about-areas { margin: -8px 0 32px; }
.pg-about-areas .lk-cities { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); column-count: auto; column-gap: 16px; text-align: center; }
.pg-about-areas .lk-cities a { padding: 10px 0; font-size: 18px; font-weight: 700; color: var(--primary); }
.pg-about-map { margin: 0; }
@media (min-width: 1200px) {
  .pg-about-areas .lk-cities { display: flex; flex-wrap: wrap; justify-content: center; column-gap: 0; }
  .pg-about-areas .lk-cities li { display: flex; align-items: center; }
  .pg-about-areas .lk-cities li + li::before { content: ""; width: 5px; height: 5px; margin-inline: 16px; border-radius: 50%; background: var(--accent); }
}
@media (max-width: 767px) {
  .pg-about-areas { margin-bottom: 24px; }
  .pg-about-areas .lk-cities { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 12px; }
  .pg-about-areas .lk-cities a { font-size: 16px; }
}

/* ---------- Payment Options ---------- */
.pg-about-pay-estimate .lk-split { gap: 48px; }
@media (max-width: 767px) { .pg-about-pay-estimate .lk-split { gap: 24px; } }
.pg-about-pay-note-wrap { padding-block: 40px 56px; }
.pg-about-pay-note { max-width: 880px; margin: 0 auto; text-align: center; font-size: 14px; line-height: 1.6; color: var(--muted); }
.pg-about-pay-note + .pg-about-pay-note { margin-top: 10px; }
.pg-about-pay-note a { color: var(--primary); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.pg-about-pay-note a:hover { text-decoration-thickness: 2px; }

/* ---------- Privacy (prose page: centred H1, 832px text column like the article template) ---------- */
.pg-about-privacy { padding-block: 40px 72px; }
.pg-about-privacy__doc { max-width: 832px; margin-inline: auto; }
.pg-about-privacy__title { margin: 0 0 28px; text-align: center; font-size: var(--fs-h1-inner); font-weight: 700; line-height: 1.15; letter-spacing: .03em; }
.pg-about-privacy__prose { color: var(--text); font-size: 16px; line-height: 1.65; }
.pg-about-privacy__prose > :first-child { margin-top: 0; }
.pg-about-privacy__prose > :last-child { margin-bottom: 0; }
.pg-about-privacy__prose p { margin: 0 0 16px; }
.pg-about-privacy__prose .pg-about-privacy__meta { padding-bottom: 16px; border-bottom: 1px solid var(--band-grey); color: var(--muted); }
.pg-about-privacy__prose h2 { margin: 40px 0 14px; font-size: 28px; font-weight: 600; line-height: 1.25; letter-spacing: 1px; }
.pg-about-privacy__prose h3 { margin: 24px 0 8px; font-size: 19px; font-weight: 700; line-height: 1.3; letter-spacing: .02em; }
.pg-about-privacy__prose ul { margin: 0 0 16px; padding-left: 1.35em; }
.pg-about-privacy__prose li { margin: 0 0 8px; padding-left: 4px; }
.pg-about-privacy__prose li::marker { color: var(--accent); }
.pg-about-privacy__prose strong { color: var(--text-navy); }
.pg-about-privacy__prose a { color: var(--primary); text-decoration: underline; text-underline-offset: 3px; }
.pg-about-privacy__prose a:hover { text-decoration-thickness: 2px; }
@media (max-width: 1023px) { .pg-about-privacy__title { font-size: 35px; } }
@media (max-width: 767px) {
  .pg-about-privacy { padding-block: 28px 52px; }
  .pg-about-privacy__title { font-size: var(--fs-h1-inner); margin-bottom: 20px; }
  .pg-about-privacy__prose h2 { font-size: 23px; margin-top: 32px; }
  .pg-about-privacy__prose h3 { font-size: 17px; }
}

/* src/css/pages/areas.css */
/* SERVICE AREAS hub + city pages (pg-areas-). Components carry their own CSS (ih-, lk-, sp-); this only adds page-level layout.
   Uses tokens only. Breakpoints: 1023 / 767 / 479 (SPEC section 2). */

/* ---------- section tones ---------- */
.pg-areas-sec--tint { background: var(--band-blue-2); }

/* links inside running copy read as links (underlined), never inside buttons/cards */
.pg-areas-prose a:not(.btn),
.pg-areas .lk-split__text p a:not(.btn),
.pg-areas .lk-head__lead a,
.pg-areas .lk-check a,
.pg-areas-near__rest a,
.pg-areas-locate__list a { text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.pg-areas-prose a:not(.btn),
.pg-areas .lk-split__text p a:not(.btn),
.pg-areas .lk-head__lead a,
.pg-areas .lk-check a { font-weight: 600; }
.pg-areas-prose a:hover,
.pg-areas .lk-split__text p a:hover,
.pg-areas .lk-head__lead a:hover,
.pg-areas .lk-check a:hover,
.pg-areas-near__rest a:hover,
.pg-areas-locate__list a:hover { text-decoration-thickness: 2px; }

/* ---------- intro: centered H2 + centered copy ---------- */
.pg-areas-intro .lk-head { margin-bottom: 28px; }
.pg-areas-prose { max-width: 940px; margin-inline: auto; text-align: center; }
.pg-areas-prose p { margin: 0 0 16px; font-size: 17px; line-height: 1.65; }
.pg-areas-prose p:last-child { margin-bottom: 0; }
.pg-areas-prose .pg-areas-prose__btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin: 28px 0 0; }
.pg-areas-prose--left { max-width: none; margin: 0 0 24px; text-align: left; }
.pg-areas-phone { gap: 10px; }
.pg-areas-phone .ic { display: block; }

/* ---------- services grid ---------- */
#services .lk-head { margin-bottom: 40px; }

/* ---------- local sections (alternating split rows) ---------- */
.pg-areas-local .lk-split { gap: 48px; }
.pg-areas-local .lk-split__title--h2 { margin-bottom: 20px; }
.pg-areas-local .lk-split__text p { line-height: 1.65; }
/* text + (art over "What to Look For" card) */
.pg-areas-side { min-width: 0; display: grid; gap: 24px; }
.pg-areas-cardsplit.lk-split--left .pg-areas-side { order: -1; }
.pg-areas-cardsplit .lk-split__art { max-width: 100%; }
.pg-areas-cardsplit .lk-hl__list > li { font-size: 15.5px; }
.pg-areas-tel { white-space: nowrap; font-weight: 700; text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; color: inherit; }
.pg-areas-fit .lk-head { margin-bottom: 24px; }
.pg-areas-fit .lk-head__lead { font-size: 18px; font-weight: 400; line-height: 1.6; max-width: 940px; text-wrap: pretty; }
.pg-areas-fit .lk-check { margin-top: 8px; column-gap: 48px; }
.pg-areas-fit .lk-check > li { padding-block: 10px; }

/* ---------- nearby towns ---------- */
.pg-areas-nearby .lk-head { margin-bottom: 36px; }
.pg-areas-near { list-style: none; margin: 0 auto; padding: 0; display: grid; gap: 24px; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.pg-areas-near--n2 { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 860px; }
.pg-areas-near--n4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.pg-areas-near__item { display: flex; min-width: 0; }
.pg-areas-near__card { position: relative; display: flex; align-items: flex-start; gap: 16px; width: 100%; padding: 24px; background: #fff; border: 1px solid var(--band-grey); box-shadow: 0 0 28px rgba(0, 0, 0, .15); transition: box-shadow .25s ease-in; }
.pg-areas-near__card:hover { box-shadow: 0 0 34px rgba(0, 0, 0, .24); }
.pg-areas-near__card:has(.pg-areas-near__link:focus-visible) { outline: 3px solid var(--primary); outline-offset: 3px; }
.pg-areas-near__pin { flex: none; display: grid; place-items: center; width: 52px; height: 52px; border-radius: 50%; background: var(--primary); color: #fff; }
.pg-areas-near__pin .ic { display: block; }
.pg-areas-near__body { min-width: 0; }
.pg-areas-near__name { margin: 2px 0 2px; font-size: 21px; font-weight: 700; line-height: 1.25; letter-spacing: .02em; color: var(--text-navy); }
.pg-areas-near__county { margin: 0 0 10px; font-size: 14px; line-height: 1.4; color: var(--muted); }
.pg-areas-near__link { display: inline; font-size: 15px; font-weight: 700; line-height: 1.45; color: var(--primary); text-decoration: none; }
.pg-areas-near__link::after { content: ""; position: absolute; inset: 0; z-index: 1; }
.pg-areas-near__link:focus-visible { outline: none; }
.pg-areas-near__card:hover .pg-areas-near__link { text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.pg-areas-near__go { display: inline-block; margin-left: 6px; transition: transform .25s ease-in; }
.pg-areas-near__card:hover .pg-areas-near__go { transform: translateX(3px); }
.pg-areas-near__rest { max-width: 860px; margin: 32px auto 0; text-align: center; font-size: 16px; line-height: 1.65; }

/* ---------- FAQ (left) + guides 2x2 (right) ---------- */
.pg-areas-faqres { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 40px; align-items: start; }
.pg-areas-faqres__faq, .pg-areas-faqres__guides { min-width: 0; }
.pg-areas-faqres__guides { padding-top: 56px; }   /* lines the heading up with the FAQ panel's own top padding */
.pg-areas-faqres__title { margin: 0 0 32px; font-size: clamp(28px, 2.6vw, 37px); line-height: 1.2;   /* weight + tracking come from the base h2 */ }
.pg-areas-faqres--solo { grid-template-columns: minmax(0, 920px); justify-content: center; }

/* ---------- 50/50 map + list (hub) ---------- */
.pg-areas-mapgrid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 48px; align-items: center; }
.pg-areas-mapgrid__text { grid-column: 2; grid-row: 1; min-width: 0; }
.pg-areas-mapgrid__map { grid-column: 1; grid-row: 1; min-width: 0; }
.pg-areas-mapgrid__title { margin: 0; font-size: var(--fs-h2); line-height: 1.2;   /* weight + tracking come from the base h2 */ }
.pg-areas-rule { margin: 24px 0; }
.pg-areas-mapgrid__lead { margin: 0 0 8px; font-size: 18px; line-height: 1.55; }
.pg-areas-mapgrid .lk-cities { margin: 0 0 8px; }
.pg-areas-mapgrid .lk-cities a { white-space: nowrap; }
@media (min-width: 900px) and (max-width: 1199px) { .pg-areas-mapgrid .lk-cities--3 { column-count: 2; } }
.pg-areas-mapgrid__note { margin: 16px 0 20px; font-size: 16px; line-height: 1.6; color: var(--muted); }
.pg-areas-mapgrid__text > p:last-child { margin-bottom: 0; }

/* ---------- map + contact card (city pages) ---------- */
.pg-areas-locate { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 48px; align-items: center; }
.pg-areas-locate__map { min-width: 0; }
.pg-areas-locate__card { min-width: 0; padding: 36px; background: #fff; border-top: 5px solid var(--accent); box-shadow: var(--shadow-panel); }
.pg-areas-locate__title { margin: 0 0 16px; font-size: clamp(26px, 2.4vw, 32px); line-height: 1.2;   /* weight + tracking come from the base h2 */ }
.pg-areas-locate__card > p { margin: 0 0 8px; font-size: 16px; line-height: 1.65; }
.pg-areas-locate__sub { margin: 24px 0 8px; font-size: 13px; font-weight: 800; line-height: 1.3; letter-spacing: .09em; text-transform: uppercase; color: var(--text-navy); }
.pg-areas-locate__list { list-style: none; margin: 0; padding: 0; }
.pg-areas-locate__list li { display: flex; align-items: center; gap: 12px; min-height: 36px; font-size: 16px; overflow-wrap: anywhere; }
.pg-areas-locate__list .ic { flex: none; color: var(--primary); }
.pg-areas-locate__list a { color: var(--primary); font-weight: 700; }
.pg-areas-hours { margin: 0; }
.pg-areas-hours > div { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 4px 16px; padding: 6px 0; border-bottom: 1px solid var(--line); font-size: 15px; line-height: 1.4; }
.pg-areas-hours > div:last-child { border-bottom: 0; }
.pg-areas-hours dt { font-weight: 700; color: var(--text-navy); }
.pg-areas-hours dd { margin: 0; color: var(--text); }
.pg-areas-locate__card > .pg-areas-locate__btn { margin: 28px 0 0; }

/* ---------- responsive ---------- */
.pg-areas-local .lk-split__title--h2 { font-size: clamp(26px, 3vw, var(--fs-h2)); }
@media (max-width: 1199px) {
  .pg-areas-near--n4 { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 860px; }
}
@media (max-width: 1119px) {
  /* FAQ over guides: the slanted panel goes full width, so drop its slant */
  .pg-areas-faqres { grid-template-columns: minmax(0, 1fr); gap: 36px; }
  .pg-areas-faqres--solo { grid-template-columns: minmax(0, 1fr); }
  .pg-areas-faqres__guides { padding-top: 0; }
  .pg-areas-faqres .sp-faq { clip-path: none; border-radius: 12px; }
}
@media (max-width: 1023px) {
  .pg-areas-near, .pg-areas-near--n3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pg-areas-mapgrid, .pg-areas-locate { gap: 32px; }
}
@media (max-width: 899px) {
  .pg-areas-mapgrid, .pg-areas-locate { grid-template-columns: minmax(0, 1fr); }
  .pg-areas-mapgrid__text, .pg-areas-mapgrid__map { grid-column: 1; grid-row: auto; }
  .pg-areas-mapgrid .lk-map, .pg-areas-locate .lk-map { aspect-ratio: 16 / 9; }
  /* local rows stack early (visual first, then copy, then the card), like the kit does at 767 */
  .pg-areas-local .lk-split { grid-template-columns: minmax(0, 1fr); gap: 24px; }
  .pg-areas-local .lk-split__art { order: -1; max-width: 560px; margin-inline: auto; }
  .pg-areas-side { display: contents; }
}
@media (max-width: 767px) {
  .pg-areas-intro .lk-head { margin-bottom: 20px; }
  .pg-areas-prose { text-align: left; }
  .pg-areas-prose p { font-size: 16px; line-height: 1.6; }
  .pg-areas-local .lk-split { gap: 20px; }
  .pg-areas-mapgrid .lk-map, .pg-areas-locate .lk-map { aspect-ratio: 4 / 3; }
  .pg-areas-fit .lk-head__lead { font-size: 16px; }
  .pg-areas-fit .lk-check { column-gap: 0; }
  .pg-areas-nearby .lk-head { margin-bottom: 24px; }
  .pg-areas-near, .pg-areas-near--n2, .pg-areas-near--n3, .pg-areas-near--n4 { grid-template-columns: minmax(0, 1fr); gap: 16px; }
  .pg-areas-near__card { padding: 20px; }
  .pg-areas-faqres__title { margin-bottom: 20px; }
  .pg-areas-locate__card { padding: 24px 20px; }
  .pg-areas-rule { margin: 16px 0; }
  .pg-areas-prose .pg-areas-prose__btns .btn { flex: 1 1 100%; }
}
@media (max-width: 479px) {
  .pg-areas-hours > div { flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) { .pg-areas-near__card, .pg-areas-near__go { transition: none !important; } }

/* src/css/pages/blog.css */
/* Blog / resources / FAQ pages. Prefix pg-blog-. Owner: page-blog.
   Sections: 1 shared  2 resources index  3 article  4 related services / FAQ band / more  5 FAQs page
   Uses tokens only and the kit's card look (.lk-ic, .sp-res, .sp-faq, .sp-acc). No inline styles anywhere. */

/* ── 1. shared ───────────────────────────────────────────────────────────────────────────── */
.pg-blog-h2 { margin: 0 0 24px; font-size: var(--fs-h2); font-weight: 600; line-height: 1.2; letter-spacing: 1.4px; text-align: left; color: var(--text-navy); }

/* ── 2. resources index ──────────────────────────────────────────────────────────────────── */
.pg-blog-index { padding-block: 56px 72px; }
.pg-blog-filter { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin: 0 0 12px; }
.pg-blog-filter[hidden] { display: none; }
.pg-blog-filter__label { margin-right: 4px; font-size: 16px; font-weight: 700; letter-spacing: .02em; color: var(--text-navy); }
.pg-blog-filter__field { display: block; flex: 0 1 320px; min-width: min(100%, 240px); }
.pg-blog-filter__select {
  display: block; width: 100%; height: 46px; padding: 0 44px 0 14px;
  border: 2px solid var(--primary); border-radius: 4px; background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231c4b8c' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; background-size: 16px;
  color: var(--text-navy); font: 600 15px/1.2 var(--font); text-overflow: ellipsis;
  -webkit-appearance: none; appearance: none; cursor: pointer;
}
.pg-blog-filter__select:hover { border-color: var(--primary-dark); }
.pg-blog-filter__btn { min-height: 46px; padding-inline: 24px; }
.pg-blog-status { margin: 0 0 8px; font-size: 14px; line-height: 1.4; color: var(--muted); }
.pg-blog-status:empty { display: none; }
.pg-blog-filter:not([hidden]) ~ .pg-blog-grid { margin-top: 44px; }
.pg-blog-empty { margin: 32px 0 0; padding: 24px; text-align: center; background: var(--band-blue-2); border-radius: var(--r-card); font-size: 17px; }
.pg-blog-empty[hidden] { display: none; }

/* 4-col grid: 290px cards + 40px gaps in the 1280px container (like the reference), 3 / 2 / 1 columns below */
.pg-blog-grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 40px; }
.pg-blog-item { display: flex; min-width: 0; }
.pg-blog-item[hidden] { display: none; }
.pg-blog-grid .lk-ic__body { padding: 22px 24px 26px; }
.pg-blog-grid .lk-ic__eyebrow { margin: 0 0 8px; font-size: 15px; font-weight: 700; letter-spacing: .02em; text-transform: none; color: var(--text-navy); }
.pg-blog-grid .lk-ic__title { margin: 0 0 12px; font-size: 19px; line-height: 1.35; letter-spacing: .03em; }
.pg-blog-grid .lk-ic__text { font-size: 15px; line-height: 1.55; -webkit-line-clamp: 6; line-clamp: 6; }
.pg-blog-grid .lk-ic__more { padding-top: 18px; color: var(--text-navy); }
@media (max-width: 1199px) { .pg-blog-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 32px; } }
@media (max-width: 899px) {
  .pg-blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
  .pg-blog-grid .lk-ic__media { aspect-ratio: 500 / 320; } /* show the whole illustration once cards get wide */
}
@media (max-width: 480px) {
  .pg-blog-grid { grid-template-columns: minmax(0, 1fr); gap: 28px; }
  .pg-blog-index { padding-block: 40px 56px; }
  .pg-blog-filter { flex-direction: column; align-items: stretch; gap: 8px; }
  .pg-blog-filter__field { flex-basis: auto; }
  .pg-blog-filter__label { margin: 0; }
}

/* ── 3. article ──────────────────────────────────────────────────────────────────────────── */
.pg-blog-head { padding-top: 40px; }
.pg-blog-title { max-width: 1100px; margin: 0 auto 28px; font-size: var(--fs-h1-inner); font-weight: 700; line-height: 1.2; letter-spacing: .04em; text-align: center; text-wrap: balance; }
.pg-blog-byline { display: flex; flex-wrap: wrap; align-items: center; gap: 6px 14px; margin: 0 0 32px; font-size: 16px; line-height: 1.5; color: var(--text); }
.pg-blog-byline strong { font-weight: 700; color: var(--text-navy); }
.pg-blog-byline__sep { color: var(--muted); }
.pg-blog-intro .lk-split__text p { font-size: 17px; line-height: 1.6; }
.pg-blog-cta1 { padding-block: 8px 24px; }
.pg-blog-cta1 .lk-cta { margin-top: 32px; }

.pg-blog-sec { padding-block: 36px; }
.pg-blog-sec__grid { display: grid; grid-template-columns: minmax(0, 832px) minmax(0, 400px); justify-content: space-between; align-items: center; gap: 48px; }
.pg-blog-sec--left .pg-blog-sec__grid { grid-template-columns: minmax(0, 400px) minmax(0, 832px); }
.pg-blog-sec--left .pg-blog-sec__art { order: -1; }
.pg-blog-sec__text { min-width: 0; }
.pg-blog-sec__text > p { margin: 0 0 16px; font-size: 16px; line-height: 1.65; }
.pg-blog-sec__text > .lk-check { margin: 0 0 20px; }
.pg-blog-sec__text > :last-child { margin-bottom: 0; }
.pg-blog-sec__art { width: 100%; aspect-ratio: 500 / 320; overflow: hidden; background: var(--band-blue); }
.pg-blog-art { display: block; width: 100%; height: 100%; }
.pg-blog-h3blk { margin-top: 28px; }
.pg-blog-h3blk p { margin: 0 0 14px; font-size: 16px; line-height: 1.65; }
.pg-blog-h3blk > :last-child { margin-bottom: 0; }
.pg-blog-h3 { margin: 0 0 12px; font-size: 28px; font-weight: 700; line-height: 1.25; letter-spacing: .03em; text-wrap: pretty; }
@media (max-width: 1023px) {
  .pg-blog-sec__grid, .pg-blog-sec--left .pg-blog-sec__grid { grid-template-columns: minmax(0, 1fr); gap: 28px; }
  .pg-blog-sec__art, .pg-blog-sec--left .pg-blog-sec__art { order: -1; }
  .pg-blog-sec__art { max-width: 440px; margin-inline: auto; }
  .pg-blog-h3 { font-size: 24px; }
}
/* tablet: the kit's 2-column split is too cramped for the intro / CTA rows, so stack them earlier */
@media (max-width: 1023px) {
  .pg-blog-intro .lk-split, .pg-blog-cta2 .lk-split { grid-template-columns: minmax(0, 1fr); gap: 20px; }
  .pg-blog-intro .lk-split__art, .pg-blog-cta2 .lk-split__art { order: -1; max-width: 520px; margin-inline: auto; }
}
@media (max-width: 899px) {
  .pg-blog-byline { flex-direction: column; align-items: flex-start; gap: 2px; }
  .pg-blog-byline__sep { display: none; }
}
@media (max-width: 767px) {
  .pg-blog-head { padding-top: 28px; }
  .pg-blog-title { margin-bottom: 20px; letter-spacing: .02em; }
  .pg-blog-byline { margin-bottom: 24px; font-size: 14px; }
  .pg-blog-intro .lk-split__text p { font-size: 16px; }
  .pg-blog-sec { padding-block: 24px; }
  .pg-blog-h3 { font-size: 21px; }
  .pg-blog-h3blk { margin-top: 22px; }
}
.pg-blog-cta2 { padding-block: 40px 56px; }
.pg-blog-cta2 .lk-split { margin-bottom: 8px; }
.pg-blog-cta2 .lk-cta { margin-top: 32px; }
.pg-blog-cta2 .lk-cta__note a { font-weight: 700; }

/* ── 4. related services · FAQ band · more resources ─────────────────────────────────────── */
.pg-blog-svc { background: var(--band-blue-2); }
.pg-blog-svc__grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(var(--pgb-n, 3), minmax(0, 1fr)); gap: 32px; }
.pg-blog-svc__grid--2 { --pgb-n: 2; }
.pg-blog-svc__grid--3 { --pgb-n: 3; }
.pg-blog-svc__grid--4 { --pgb-n: 4; gap: 40px; }
.pg-blog-svc__item { display: flex; min-width: 0; }
.pg-blog-svc__card { position: relative; display: flex; flex-direction: column; width: 100%; padding: 28px 24px 24px; background: #fff; border: 1px solid var(--band-grey); box-shadow: 0 0 28px rgba(0, 0, 0, .12); transition: box-shadow .25s ease-in; }
.pg-blog-svc__card:hover { box-shadow: 0 0 34px rgba(0, 0, 0, .22); }
.pg-blog-svc__ic { display: grid; place-items: center; width: 56px; height: 56px; margin-bottom: 16px; border-radius: 50%; background: var(--primary); color: #fff; }
.pg-blog-svc__title { margin: 0 0 10px; font-size: 19px; font-weight: 700; line-height: 1.3; letter-spacing: .03em; }
.pg-blog-svc__title a { color: var(--text-navy); text-decoration: none; }
.pg-blog-svc__title a::after { content: ""; position: absolute; inset: 0; z-index: 1; }
.pg-blog-svc__card:hover .pg-blog-svc__title a { text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.pg-blog-svc__card:has(.pg-blog-svc__title a:focus-visible) { outline: 3px solid var(--primary); outline-offset: 3px; }
.pg-blog-svc__title a:focus-visible { outline: none; }
.pg-blog-svc__text { margin: 0 0 18px; font-size: 15px; line-height: 1.55; }
.pg-blog-svc__more { margin-top: auto; font-size: 13px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--text-navy); }
@media (max-width: 1023px) {
  .pg-blog-svc__grid--3, .pg-blog-svc__grid--4 { --pgb-n: 2; gap: 28px; }
}
@media (max-width: 640px) {
  .pg-blog-svc__grid, .pg-blog-svc__grid--2, .pg-blog-svc__grid--3, .pg-blog-svc__grid--4 { --pgb-n: 1; gap: 20px; }
}

.pg-blog-faq { padding-block: 56px 24px; }
/* the reference FAQ band is a plain rectangle: flatten the service-page slant of .sp-faq here */
.pg-blog-faq .sp-faq { clip-path: none; border-radius: 0; }
.pg-blog-more { padding-block: 48px 72px; }
.pg-blog-more__all { margin: 40px 0 0; text-align: center; }
@media (max-width: 767px) { .pg-blog-faq { padding-block: 40px 16px; } .pg-blog-more { padding-block: 40px 56px; } }

/* ── 5. FAQs page ────────────────────────────────────────────────────────────────────────── */
.pg-blog-jump { padding-block: 44px 8px; text-align: center; }
.pg-blog-jump__label { margin: 0 0 16px; font-size: 13px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--accent-text); }
.pg-blog-jump__list { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 12px; }
.pg-blog-jump__list a { display: inline-flex; align-items: center; min-height: 44px; padding: 8px 18px; border: 2px solid var(--primary); border-radius: var(--r-btn); background: #fff; font-size: 14px; font-weight: 700; line-height: 1.2; color: var(--primary); transition: background-color .25s ease-in, color .25s ease-in; }
.pg-blog-jump__list a:hover { background: var(--primary); color: #fff; text-decoration: none; }

.pg-blog-group { padding-block: 56px; }
.pg-blog-group--alt { background: var(--band-blue-2); }
.pg-blog-group__grid { display: grid; grid-template-columns: minmax(0, 340px) minmax(0, 1fr); gap: 56px; align-items: start; }
.pg-blog-group__head { position: sticky; top: calc(var(--header-h) + 24px); }
.pg-blog-group__head .pg-blog-h2 { margin-bottom: 12px; font-size: 32px; }
.pg-blog-group__count { margin: 0; font-size: 14px; font-weight: 600; letter-spacing: .04em; color: var(--muted); }
.pg-blog-group__body { min-width: 0; }
@media (max-width: 1023px) {
  .pg-blog-group { padding-block: 44px; }
  .pg-blog-group__grid { grid-template-columns: minmax(0, 1fr); gap: 20px; }
  .pg-blog-group__head { position: static; }
  .pg-blog-group__head .pg-blog-h2 { font-size: 30px; }
}
@media (max-width: 767px) {
  .pg-blog-jump { padding-block: 32px 4px; }
  .pg-blog-group { padding-block: 36px; }
  .pg-blog-group__head .pg-blog-h2 { font-size: var(--fs-h2); }
}

/* src/css/pages/contact.css */
/* CONTACT (/contact/) + REVIEWS (/reviews/) pages. Prefix pg-contact-. Owner: page-contact agent.
   Sections: 1 booking card  2 fields + red validation  3 JS-off fallback  4 contact body  5 reviews page  6 review form  7 dialogs */

.pg-contact-card, .pg-contact-reviewcard { --pgc-red: #cc1b00; --pgc-line: #d4d4d4; }
.pg-contact-card [hidden], .pg-contact-reviewcard [hidden] { display: none !important; }

/* ============================================================ 1. booking card (inside .ih-hero__card) */
.pg-contact-card { color: var(--text); }
.pg-contact-steps { position: relative; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); margin: 4px 0 22px; padding: 0; list-style: none; }
.pg-contact-steps::before { content: ""; position: absolute; top: 9px; left: calc(100% / 6); right: calc(100% / 6); border-top: 2px dashed #cdd3db; }
.pg-contact-step { position: relative; display: flex; flex-direction: column; align-items: center; gap: 7px; text-align: center; font-size: 13px; line-height: 1.2; font-weight: 500; color: var(--muted); }
.pg-contact-step__dot { position: relative; z-index: 1; display: block; width: 20px; height: 20px; border-radius: 50%; background: #6b6f76; transition: background-color .25s ease-in, box-shadow .25s ease-in; }
.pg-contact-step.is-current .pg-contact-step__dot { background: var(--accent); box-shadow: 0 0 0 4px rgba(224, 86, 143, .22); }
.pg-contact-step.is-current .pg-contact-step__label { color: var(--text-navy); font-weight: 700; }
.pg-contact-step.is-done .pg-contact-step__dot { background: var(--primary); box-shadow: none; }
.pg-contact-step.is-done .pg-contact-step__dot::after { content: ""; position: absolute; left: 7px; top: 3.5px; width: 5px; height: 9px; border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg); }
.pg-contact-step.is-done .pg-contact-step__label { color: var(--text-navy); }

.pg-contact-title { margin: 0 0 18px; text-align: center; font-size: 32px; font-weight: 700; line-height: 1.2; letter-spacing: .04em; color: var(--text-navy); }
.pg-contact-h { margin: 0 0 18px; text-align: center; font-size: 21px; font-weight: 600; line-height: 1.3; letter-spacing: .02em; color: var(--text-navy); }
.pg-contact-h:focus { outline: none; }
.pg-contact-hint { margin: -6px 0 16px; text-align: center; font-size: 14px; line-height: 1.4; color: var(--muted); }

.pg-contact-next, .pg-contact-submit { min-height: 54px; font-size: 17px; }
.pg-contact-form .btn[aria-disabled="true"] { opacity: .7; pointer-events: none; }
.pg-contact-submit:disabled { opacity: .6; cursor: not-allowed; }
.pg-contact-actions { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 12px; margin-top: 4px; }
.pg-contact-back { min-height: 54px; padding-inline: 22px; font-size: 15px; }

.pg-contact-consent { margin: 4px 0 16px; font-size: 12.5px; line-height: 1.5; color: var(--muted); }
.pg-contact-consent a { text-decoration: underline; text-underline-offset: 2px; }

.pg-contact-status { margin: 0; padding: 0; font-size: 15px; line-height: 1.5; scroll-margin-bottom: 110px; }
.pg-contact-status:not(:empty) { margin-top: 14px; padding: 10px 12px; border-radius: 4px; border-left: 4px solid var(--line); background: var(--band-blue-2); color: var(--text-navy); }
.pg-contact-status.is-err { border-left-color: var(--pgc-red); background: #fdeeec; color: #7d1200; }
.pg-contact-status.is-ok { border-left-color: #2e7d4f; background: #eaf6ee; color: #14532d; }
.pg-contact-status a[href^="tel:"] { white-space: nowrap; }
.pg-contact-status a { color: inherit; font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
/* step 3 shows the thank-you inside the panel; the live region still announces it, just not twice on screen */
.pg-contact-form[data-pgc-step="3"] .pg-contact-status { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

.pg-contact-done { text-align: center; padding: 6px 0 2px; }
.pg-contact-done__ic { display: block; margin: 0 auto 8px; line-height: 0; color: var(--primary); }
.pg-contact-done .pg-contact-h { margin-bottom: 12px; }
.pg-contact-done__p { margin: 0 0 12px; font-size: 17px; line-height: 1.5; }

.pg-contact-rush { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 10px 12px; margin: 26px 0 0; }
.pg-contact-rush__t { margin: 0; font-size: 18px; font-weight: 500; line-height: 1.25; color: var(--text-navy); }
.pg-contact-call { flex: 1 1 200px; max-width: 250px; min-height: 52px; font-size: 18px; }
.pg-contact-textus { margin-top: 14px; min-height: 52px; font-size: 15px; }

/* ============================================================ 2. fields + red validation bar */
.pg-contact-field { margin: 0 0 16px; min-width: 0; }
.pg-contact-label { display: block; margin: 0 0 6px; padding: 0; font-size: 16px; font-weight: 500; line-height: 1.3; color: var(--text-navy); }
.pg-contact-opt { font-weight: 400; color: var(--muted); font-size: 14px; }
.pg-contact-input { display: block; width: 100%; height: 54px; padding: 0 14px; border: 1px solid var(--pgc-line); border-radius: 4px; background: #fff; color: var(--text); font: 400 16px/1.3 var(--font); }
.pg-contact-input::placeholder { color: #6f7379; opacity: 1; }
.pg-contact-input:focus-visible { outline: 3px solid var(--primary); outline-offset: 0; border-color: var(--primary); }
.pg-contact-textarea { height: auto; min-height: 96px; padding: 12px 14px; resize: vertical; }
.pg-contact-select { position: relative; }
.pg-contact-select select { appearance: none; -webkit-appearance: none; padding-right: 40px; text-overflow: ellipsis; cursor: pointer; }
.pg-contact-select .ic { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); pointer-events: none; color: var(--text-navy); }
.pg-contact-row { display: grid; grid-template-columns: minmax(0, 1fr) 152px; column-gap: 12px; }
.pg-contact-row--even { grid-template-columns: repeat(2, minmax(0, 1fr)); }
/* the red bar is attached to the bottom edge of the bad field, like the reference */
.pg-contact-err { margin: 0; padding: 4px 10px 5px; border-radius: 0 0 4px 4px; background: var(--pgc-red); color: #fff; font-size: 13px; font-weight: 500; line-height: 1.35; }
.pg-contact-field.has-err .pg-contact-input { border-color: var(--pgc-red); border-bottom-left-radius: 0; border-bottom-right-radius: 0; }
.pg-contact-field.has-err .pg-contact-input:focus-visible { outline-color: var(--pgc-red); }
.pg-contact-hp { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }

/* ============================================================ 3. JS-off fallback (see contact-card.mjs) */
.pg-contact-fallback { display: grid; grid-template-columns: minmax(0, 1fr); gap: 12px; text-align: center; }
.pg-contact-fallback p { margin: 0 0 4px; font-size: 16px; line-height: 1.5; }
.pg-contact-fallback .btn { justify-content: center; padding-inline: 14px; overflow-wrap: anywhere; }
.pg-contact-card:has(.pg-contact-fallback) > .pg-contact-steps,
.pg-contact-card:has(.pg-contact-fallback) > .pg-contact-form,
.pg-contact-card:has(.pg-contact-fallback) > .pg-contact-rush,
.pg-contact-card:has(.pg-contact-fallback) > .pg-contact-textus,
.pg-contact-reviewcard:has(.pg-contact-fallback) > .pg-contact-form { display: none; }

/* ============================================================ 4. contact body (below the banner) */
.pg-contact-grid { display: grid; grid-template-columns: minmax(0, 1fr) 400px; gap: 48px; align-items: start; }
.pg-contact-col { min-width: 0; max-width: 800px; }
.pg-contact-h2 { margin: 48px 0 16px; font-size: clamp(26px, 2.6vw, 34px); line-height: 1.2; }
.pg-contact-col > .lk-badges + .pg-contact-h2 { margin-top: 56px; }
.pg-contact-intro { max-width: 720px; margin: 0 0 20px; font-size: 17px; line-height: 1.6; }
.pg-contact-col .lk-check { margin-top: 8px; }

.pg-contact-aside { padding: 28px 28px 24px; background: #fff; border-top: 5px solid var(--accent); border-radius: var(--r-card); box-shadow: var(--shadow-card); }
.pg-contact-aside__h { margin: 0 0 22px; font-size: 24px; font-weight: 700; line-height: 1.25; letter-spacing: .02em; }
.pg-contact-info { list-style: none; margin: 0; padding: 0; display: grid; gap: 22px; }
.pg-contact-info__item { display: grid; grid-template-columns: 44px minmax(0, 1fr); gap: 14px; align-items: start; }
.pg-contact-info__ic { display: grid; place-items: center; width: 44px; height: 44px; border: 2px solid var(--primary); border-radius: 50%; color: var(--primary); }
.pg-contact-info__k { margin: 0 0 2px; font-size: 12.5px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--muted); }
.pg-contact-info__big { display: inline-flex; align-items: center; min-height: 44px; font-size: 24px; font-weight: 800; line-height: 1.3; letter-spacing: .01em; color: var(--primary); white-space: nowrap; }
.pg-contact-info__sub { margin: 0; font-size: 15px; }
.pg-contact-info__sub a, .pg-contact-info__mail { display: inline-flex; align-items: center; min-height: 44px; }
.pg-contact-info__mail { font-size: 16px; font-weight: 600; overflow-wrap: anywhere; word-break: break-word; }
.pg-contact-info__txt { margin: 0; font-size: 16px; line-height: 1.5; }
.pg-contact-hours { margin: 0; }
.pg-contact-hours > div { display: flex; justify-content: space-between; gap: 12px; padding: 3px 0; font-size: 15px; line-height: 1.4; }
.pg-contact-hours dt { font-weight: 600; color: var(--text-navy); }
.pg-contact-hours dd { margin: 0; text-align: right; white-space: nowrap; }

.pg-contact-band { background: var(--band-blue-2); }
.pg-contact-band__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 64px; align-items: start; }
.pg-contact-band .pg-contact-h2 { margin-top: 0; }
.pg-contact-proof { display: grid; grid-template-columns: minmax(0, 240px) minmax(0, 1fr); gap: 28px; align-items: center; }
.pg-contact-proof__copy p { font-size: 17px; line-height: 1.6; }
.pg-contact-proof__copy .btn-row { margin-top: 18px; }
.pg-contact-band .lk-cities { column-gap: 40px; }

/* ============================================================ 5. reviews page: "Leave us a Review!" */
.pg-contact-leave { text-align: center; }
.pg-contact-leave__h { margin: 0 0 12px; font-size: clamp(28px, 3vw, 37px); font-weight: 700; line-height: 1.2; letter-spacing: .03em; }
.pg-contact-leave__lead { max-width: 700px; margin: 0 auto 36px; font-size: 18px; line-height: 1.55; }
.pg-contact-tiles { display: flex; flex-wrap: wrap; justify-content: center; gap: 32px; margin: 0 0 56px; padding: 0; list-style: none; }
.pg-contact-tile { flex: 0 1 405px; min-width: 0; }
.pg-contact-tile__link { position: relative; display: block; padding-bottom: 24px; color: inherit; text-decoration: none; }
.pg-contact-tile__link:hover { text-decoration: none; }
.pg-contact-tile__art { display: block; overflow: hidden; background: var(--band-blue); box-shadow: var(--shadow-card); aspect-ratio: 500 / 320; }
.pg-contact-tile__svg { display: block; width: 100%; height: 100%; }
.pg-contact-tile__label { position: absolute; left: 50%; bottom: 0; transform: translateX(-50%); display: inline-flex; align-items: center; justify-content: center; gap: 10px; width: max-content; min-height: 48px; max-width: calc(100% - 24px); padding: 10px 22px; border: 1px solid var(--text-navy); border-radius: 4px; background: #fff; color: var(--text-navy); font-size: 16px; font-weight: 800; line-height: 1.25; text-align: center; box-shadow: 0 2px 10px rgba(0, 0, 0, .12); transition: background-color .25s ease-in, color .25s ease-in, border-color .25s ease-in; }
.pg-contact-tile__link:hover .pg-contact-tile__label { background: var(--primary); border-color: var(--primary); color: #fff; }
.pg-contact-tile__link:focus-visible { outline: none; }
.pg-contact-tile__link:focus-visible .pg-contact-tile__label { outline: 3px solid var(--primary); outline-offset: 3px; }

/* ============================================================ 6. on-site review form */
.pg-contact-reviewcard { max-width: 720px; margin: 0 auto; padding: 32px; text-align: left; background: #fff; border-top: 5px solid var(--accent); border-radius: var(--r-card); box-shadow: var(--shadow-card); scroll-margin-top: calc(var(--header-h) + 16px); }
.pg-contact-reviewcard__h { margin: 0 0 8px; font-size: 28px; line-height: 1.25; text-align: center; }
.pg-contact-reviewcard__lead { margin: 0 0 24px; font-size: 16px; line-height: 1.55; text-align: center; }
.pg-contact-rating { min-width: 0; margin: 0; padding: 0; border: 0; }
.pg-contact-rating .pg-contact-label { padding: 0; }
.pg-contact-rating__row { display: flex; flex-wrap: wrap; align-items: center; gap: 4px 16px; }
.pg-contact-rating__stars { position: relative; display: flex; flex-direction: row-reverse; justify-content: flex-end; }
.pg-contact-rating__stars label { display: block; padding: 4px 3px; line-height: 0; cursor: pointer; }
.pg-contact-rating__stars svg { display: block; width: 40px; height: 40px; }
.pg-contact-rating__stars path { fill: #fff; stroke: var(--primary); stroke-width: 1.5; stroke-linejoin: round; transition: fill .15s ease-in; }
.pg-contact-rating__stars input:checked ~ label path,
.pg-contact-rating__stars label:hover path,
.pg-contact-rating__stars label:hover ~ label path { fill: var(--star); }
.pg-contact-rating__stars input:focus-visible + label { outline: 3px solid var(--primary); outline-offset: 2px; border-radius: 4px; }
.pg-contact-rating__hint { min-height: 1.4em; font-size: 15px; font-weight: 600; color: var(--text-navy); }
.pg-contact-form--review .pg-contact-submit { width: 100%; }

/* ============================================================ 7. Terms / Guidelines dialogs */
.pg-contact-dlg { position: fixed; width: min(680px, calc(100vw - 32px)); max-height: calc(100dvh - 48px); padding: 28px 32px 24px; border: 0; border-top: 5px solid var(--accent); border-radius: var(--r-card); background: #fff; color: var(--text); box-shadow: 0 20px 60px rgba(0, 0, 0, .35); overflow: auto; }
.pg-contact-dlg::backdrop { background: rgba(18, 49, 92, .6); }
.pg-contact-dlg h2 { margin: 0 44px 14px 0; font-size: 26px; font-weight: 700; line-height: 1.25; letter-spacing: .02em; }
.pg-contact-dlg p, .pg-contact-dlg li { font-size: 16px; line-height: 1.6; }
.pg-contact-dlg ol { margin: 0 0 8px; padding-left: 1.3em; }
.pg-contact-dlg li { margin-bottom: 10px; }
.pg-contact-dlg li strong { color: var(--text-navy); }
.pg-contact-dlg__x { position: absolute; top: 12px; right: 12px; display: grid; place-items: center; width: 44px; height: 44px; padding: 0; border: 0; border-radius: 50%; background: transparent; color: var(--text-navy); cursor: pointer; }
.pg-contact-dlg__x:hover { background: var(--band-blue); }
.pg-contact-dlg__foot { margin: 18px 0 0; text-align: center; }
html.pg-contact-dlg-open { overflow: hidden; }
@media (max-width: 480px) { .pg-contact-dlg { padding: 22px 20px 20px; } }

/* ============================================================ responsive */
/* below 1280px the 800 + 400 columns no longer fit: stack them, and lay the contact details out as a 2 x 2 grid */
@media (max-width: 1279px) {
  .pg-contact-grid { grid-template-columns: minmax(0, 1fr); gap: 40px; }
  .pg-contact-col { max-width: none; }
  .pg-contact-info { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px 32px; }
}
@media (max-width: 1199px) {
  .pg-contact-band__grid { grid-template-columns: minmax(0, 1fr); gap: 48px; }
}
@media (max-width: 639px) {
  .pg-contact-info { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 767px) {
  .pg-contact-aside { padding: 22px 18px 18px; }
  .pg-contact-info__item { grid-template-columns: 40px minmax(0, 1fr); gap: 12px; }
  .pg-contact-info__ic { width: 40px; height: 40px; }
  .pg-contact-info__mail { font-size: 15px; }
  .pg-contact-h2 { margin-top: 36px; }
  .pg-contact-col > .lk-badges + .pg-contact-h2 { margin-top: 40px; }
  .pg-contact-tiles { gap: 28px; margin-bottom: 40px; }
  .pg-contact-reviewcard { padding: 24px 18px; }
  .pg-contact-row--even { grid-template-columns: minmax(0, 1fr); }
  .pg-contact-info__big { font-size: 22px; }
}
@media (max-width: 560px) {
  .pg-contact-call { max-width: none; flex-basis: 100%; }
  .pg-contact-proof { grid-template-columns: minmax(0, 1fr); }
  .pg-contact-proof__card { max-width: 320px; }
  .pg-contact-band .lk-cities--2 { column-count: 2; column-gap: 20px; }
}
@media (max-width: 400px) {
  .pg-contact-row:not(.pg-contact-row--even) { grid-template-columns: minmax(0, 1fr) 118px; column-gap: 8px; }
  .pg-contact-title { font-size: 26px; }
  .pg-contact-h { font-size: 19px; }
  .pg-contact-rating__stars svg { width: 36px; height: 36px; }
}

/* src/css/pages/home.css */
/* HOME page composition (pg-home-). Components carry their own CSS (hh-, sp-, lk-); this only adds page-level spacing. */

/* services: head + grid + centered CTA sit in one section with the standard 48px padding */
.pg-home-services .lk-og-wrap { max-width: 1280px; margin-inline: auto; }

/* proudly serving: 50/50, map left / copy right (DOM order = text first so the heading leads on mobile) */
.pg-home-serve__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 40px; align-items: center; }
.pg-home-serve__text { grid-column: 2; grid-row: 1; min-width: 0; }
.pg-home-serve__map { grid-column: 1; grid-row: 1; min-width: 0; }
.pg-home-nb { white-space: nowrap; }
.pg-home-serve__title { margin: 0 0 24px; font-size: var(--fs-h2); font-weight: 600; line-height: 1.2; letter-spacing: 1.4px; }
.pg-home-serve__text > p { margin: 0 0 16px; font-size: 16px; line-height: 1.5; }
.pg-home-serve__text .lk-cities { margin: 8px 0 20px; }
.pg-home-serve__more { margin: 0; }
.pg-home-serve__more a { font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.pg-home-serve__more a:hover { text-decoration-thickness: 2px; }

/* why choose us: two full-width paragraphs, then the centered badge row and one CTA */
.pg-home-why__copy p { margin: 0 0 16px; font-size: 16px; line-height: 1.5; }
.pg-home-why__copy .lk-head { margin-bottom: 24px; }
.pg-home-why__copy a { font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.pg-home-why__badges { margin-top: 48px; }
.pg-home-why .lk-cta { margin-top: 48px; }

/* resources: left head, 3 cards, centered button */
.pg-home-resources__more { display: flex; justify-content: center; margin: 48px 0 0; }

@media (max-width: 899px) {
  .pg-home-serve__grid { grid-template-columns: minmax(0, 1fr); gap: 28px; }
  .pg-home-serve__text, .pg-home-serve__map { grid-column: 1; grid-row: auto; }
}
@media (min-width: 600px) and (max-width: 899px) {
  .pg-home-serve__map .lk-map { aspect-ratio: 2 / 1; }
}
/* only 3 cards: never leave an orphan on tablets (3-up, then 1-up centered) */
@media (min-width: 700px) and (max-width: 899px) {
  .pg-home-resources .sp-res-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
  .pg-home-resources .sp-res__body { padding: 16px 16px 18px; }
  .pg-home-resources .sp-res__title { font-size: 17px; }
}
@media (min-width: 481px) and (max-width: 699px) {
  .pg-home-resources .sp-res-grid { grid-template-columns: minmax(0, 1fr); gap: 24px; max-width: 520px; margin-inline: auto; }
}
@media (max-width: 767px) {
  .pg-home-serve__title { margin-bottom: 16px; }
  .pg-home-why__badges { margin-top: 36px; }
  .pg-home-why .lk-cta, .pg-home-resources__more { margin-top: 36px; }
}

/* src/css/pages/services.css */
/* Services hub + service pages. Prefix: pg-services-  (owner: page-services agent). Tokens only, no inline styles. */

/* ---------- inline links inside body copy need an underline (links are not colour-only) ---------- */
.pg-services .section p a:not(.btn):not(.pg-services-more__link) { text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.pg-services .section p a:not(.btn):not(.pg-services-more__link):hover { text-decoration-thickness: 2px; }

/* ---------- centred "heading + link" that follows an overlap grid ---------- */
.pg-services-more { max-width: 640px; margin: 56px auto 0; text-align: center; }
.pg-services-more__title { margin: 0 0 4px; font-size: 26px; font-weight: 600; line-height: 1.25; letter-spacing: .03em; text-wrap: balance; }
.pg-services-more__p { margin: 0; }
.pg-services-more__link { display: inline-flex; align-items: center; gap: 6px; min-height: 44px; font-size: 17px; font-weight: 500; line-height: 1.3; color: var(--link); }
.pg-services-more__link:hover { text-decoration: underline; text-underline-offset: 4px; text-decoration-thickness: 1px; }
.pg-services-chev { flex: none; transition: transform .25s ease-in; }
.pg-services-more__link:hover .pg-services-chev { transform: translateX(3px); }

/* ---------- solutions: cards carry bullets, so keep the visual and the type in proportion with them (full-size cells only) ---------- */
@media (min-width: 1200px) {
  .pg-services-solutions .lk-og__art { height: 400px; }
  .pg-services-solutions .lk-og__text { font-size: 16.5px; line-height: 1.5; }
  .pg-services-solutions .lk-og__bullets > li { font-size: 14.5px; line-height: 22px; }
}

/* ---------- overview: short rule, full-width paragraphs, short rule, CTA ---------- */
.pg-services-overview .hr-short { margin-block: 8px 32px; }
.pg-services-overview p { margin: 0 0 16px; font-size: 16px; line-height: 1.5; }
.pg-services-overview .hr-short:last-of-type { margin-block: 16px 0; }
.pg-services-overview .lk-cta { margin-top: 40px; }

/* ---------- trust block ---------- */
.pg-services-trust .lk-head { margin-bottom: 40px; }

/* ---------- why it matters: text | art with a highlight card overlapping its lower edge ---------- */
.pg-services-why__grid { gap: 56px; align-items: center; }
.pg-services-why__side { display: flex; flex-direction: column; min-width: 0; }
.pg-services-why__art { width: 88%; align-self: flex-end; }
.pg-services-why__side .lk-hl { position: relative; z-index: 1; align-self: flex-start; width: 84%; margin: -64px 0 0; }
.pg-services-why .lk-cta { margin-top: 48px; }

/* ---------- FAQ (blue panel) | resources (2x2) ---------- */
.pg-services-faqres__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px; align-items: start; }
.pg-services-faqres__faq, .pg-services-faqres__res { min-width: 0; }
.pg-services-faqres__res { padding-top: 56px; }   /* lines the heading up with the FAQ panel's own title */
.pg-services-faqres__res .lk-head { margin-bottom: 32px; }
.pg-services-faqres__res .lk-head__title { font-size: clamp(28px, 2.6vw, 37px); }

/* ---------- reasons ---------- */
.pg-services-reasons .lk-head { margin-bottom: 20px; }
.pg-services-reasons__intro { margin: 0 0 40px; font-size: 16px; line-height: 1.5; }
.pg-services-reasons__rows { display: grid; gap: 56px; }
.pg-services-reasons .lk-cta { margin-top: 56px; }

/* ---------- tips: the do's | the don'ts ---------- */
.pg-services-tips .lk-head { margin-bottom: 32px; }
.pg-services-tips__cols { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px 64px; }
.pg-services-tips__col { min-width: 0; }
.pg-services-tips__h { margin: 0 0 16px; font-size: 28px; font-weight: 700; line-height: 1.2; letter-spacing: .03em; }
.pg-services-tips__col .lk-tick-list > li { margin-bottom: 10px; padding-block: 8px; }
/* "avoid" items get a cross instead of a check (same navy disc, drawn from two gradients so there is no image) */
.pg-services-tips__col--bad .lk-tick-list > li::after {
  left: 0; top: var(--tk-top); width: var(--tk); height: var(--tk); border: 0; transform: none;
  background:
    linear-gradient(to top right, transparent calc(50% - 1px), var(--accent-soft) calc(50% - 1px) calc(50% + 1px), transparent calc(50% + 1px)) center / 46% 46% no-repeat,
    linear-gradient(to bottom right, transparent calc(50% - 1px), var(--accent-soft) calc(50% - 1px) calc(50% + 1px), transparent calc(50% + 1px)) center / 46% 46% no-repeat;
}

/* ---------- service area: map | heading + rule + cities ---------- */
.pg-services-area__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 48px; align-items: center; }
.pg-services-area__map, .pg-services-area__text { min-width: 0; }
.pg-services-area__title { margin: 0 0 20px; }
.pg-services-area__text p { font-size: 16px; line-height: 1.5; }
.pg-services-phone { white-space: nowrap; }
.pg-services-area__sub { margin: 28px 0 0; font-size: 26px; font-weight: 700; line-height: 1.2; letter-spacing: .03em; }
.pg-services-area .pg-services-area__rule { margin: 14px 0 10px; }

/* ---------- related services ---------- */
.pg-services-related__grid--2 { max-width: 900px; margin-inline: auto; }

/* ---------- hub ---------- */
.pg-services--hub .ih-hero__text { max-width: 900px; }   /* six service pills fit on one row; the h1 and lead keep their own max-widths */
.pg-services-hub-intro { padding-bottom: 16px; }
.pg-services-hub-intro .lk-head { margin-bottom: 28px; }
.pg-services-hub-intro__copy { max-width: 900px; margin: 0 auto; }
.pg-services-hub-intro__copy p { margin: 0 0 18px; font-size: 18px; line-height: 1.6; }
.pg-services-hub-intro__copy p:last-child { margin-bottom: 0; }

/* ---------- responsive ---------- */
@media (max-width: 1099px) {
  /* two 470px columns are too tight for the FAQ panel + 2x2 cards: stack them, panel becomes a plain rounded box */
  .pg-services-faqres__grid { grid-template-columns: minmax(0, 1fr); gap: 40px; }
  .pg-services-faqres__res { padding-top: 0; }
  .pg-services-faqres .sp-faq { clip-path: none; border-radius: 12px; padding: 44px 40px 48px; }
}
@media (max-width: 1023px) {
  .pg-services-why__grid { gap: 40px; }
  .pg-services-area__grid { gap: 32px; }
}
@media (max-width: 899px) {
  .pg-services-tips__cols { grid-template-columns: minmax(0, 1fr); gap: 32px; }
}
@media (max-width: 767px) {
  .pg-services-more { margin-top: 40px; }
  .pg-services-more__title { font-size: 21px; }
  .pg-services-more__link { font-size: 16px; }
  .pg-services-faqres .sp-faq { padding: 32px 16px 36px; border-radius: 8px; }
  .pg-services-why__grid { gap: 28px; }
  .pg-services-why__art { width: 100%; max-width: none; margin-inline: 0; }
  .pg-services-why__side .lk-hl { width: calc(100% - 24px); margin: -28px 0 0 12px; }
  .pg-services-reasons__rows { gap: 40px; }
  .pg-services-tips__h { font-size: 21px; }
  .pg-services-area__grid { grid-template-columns: minmax(0, 1fr); }
  .pg-services-area__sub { font-size: 21px; }
  .pg-services-hub-intro__copy p { font-size: 16px; }
}
