/* =========================================================
   Prime Drainage Solutions — site styles
   Concept: "the survey report". Light, ordered, calm.
   ========================================================= */

:root {
	/* Colour */
	--paper: #fbfaf7;
	--surface: #ffffff;
	--ink: #101826;
	--navy: #0f2a4a;
	--navy-deep: #0a1f38;
	--slate: #5b6b80;
	--line: #e3e1da;
	--line-strong: #cfcdc4;
	--signal: #1f6fe5;
	--signal-deep: #1a5fc6;
	--safety: #1f6fe5;      /* formerly amber; the accent is now blue on light, white on navy */
	--safety-deep: #1a5fc6;
	--tint: #eef3fb;
	--tint-deep: #dfe8f7;

	/* Type */
	--display: "Bricolage Grotesque", "Helvetica Neue", Arial, sans-serif;
	--body: "IBM Plex Sans", "Helvetica Neue", Arial, sans-serif;
	--mono: "IBM Plex Mono", "SFMono-Regular", Menlo, monospace;

	--fs-h1: clamp(2.6rem, 1.6rem + 2.9vw, 4.4rem);
	--fs-h2: clamp(2rem, 1.45rem + 1.7vw, 3.1rem);
	--fs-h3: clamp(1.25rem, 1.1rem + .4vw, 1.5rem);
	--fs-lead: clamp(1.1rem, 1rem + .35vw, 1.3rem);
	--fs-body: 1.0625rem;
	--fs-small: .9rem;
	--fs-label: .8rem;

	/* Shape & depth */
	--r-sm: 8px;
	--r-md: 12px;
	--r-lg: 18px;
	--shadow-sm: 0 1px 2px rgba(16, 24, 38, .05), 0 4px 14px rgba(16, 24, 38, .05);
	--shadow-md: 0 8px 30px rgba(16, 24, 38, .09), 0 2px 6px rgba(16, 24, 38, .05);
	--shadow-lg: 0 24px 60px rgba(16, 24, 38, .14), 0 6px 16px rgba(16, 24, 38, .06);

	/* Layout */
	--shell: 1200px;
	--gutter: clamp(20px, 4vw, 48px);
	--header-h: 76px;
	--topbar-h: 38px;

	--ease: cubic-bezier(.2, .7, .2, 1);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { overflow-x: clip; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
	margin: 0;
	overflow-x: clip;
	color: var(--ink);
	background: var(--paper);
	font-family: var(--body);
	font-size: var(--fs-body);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}
html.menu-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: .15em; }
button, input, textarea, select { font: inherit; color: inherit; }
:focus-visible { outline: 2px solid var(--signal); outline-offset: 3px; border-radius: 4px; }
[id] { scroll-margin-top: calc(var(--header-h) + 24px); }

.shell { width: min(var(--shell), calc(100% - 2 * var(--gutter))); margin-inline: auto; }
.section { padding-block: clamp(64px, 8vw, 112px); }
.section--tight { padding-block: clamp(48px, 6vw, 80px); }
.section--tint { background: var(--tint); }
.section--paper { background: var(--paper); }
.section--surface { background: var(--surface); }
.section--navy { background: var(--navy); color: #fff; }

.screen-reader-text, .skip-link:not(:focus) {
	position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden;
	clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link:focus {
	position: fixed; top: 12px; left: 12px; z-index: 9999;
	background: var(--ink); color: #fff; padding: 10px 14px; border-radius: var(--r-sm); font-weight: 600;
}

/* Grid-paper texture, used sparingly */
.grid-paper {
	background-image:
		linear-gradient(to right, rgba(16, 24, 38, .045) 1px, transparent 1px),
		linear-gradient(to bottom, rgba(16, 24, 38, .045) 1px, transparent 1px);
	background-size: 32px 32px;
	background-position: center top;
}
.grid-paper--fade { position: relative; }
.grid-paper--fade::after {
	position: absolute; inset: 0; content: "";
	background: linear-gradient(180deg, transparent 40%, var(--paper) 100%);
	pointer-events: none;
}
.grid-paper--fade > * { position: relative; z-index: 1; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, p, ul, ol { margin-top: 0; }
h1, h2, h3, h4 {
	font-family: var(--display);
	font-weight: 600;
	line-height: 1.08;
	letter-spacing: -.022em;
	text-wrap: balance;
	font-variation-settings: "opsz" 96;
}
h1 { font-size: var(--fs-h1); margin-bottom: .5em; }
h2 { font-size: var(--fs-h2); margin-bottom: .5em; }
h3 { font-size: var(--fs-h3); line-height: 1.2; letter-spacing: -.012em; margin-bottom: .45em; }
h4 { font-size: 1.05rem; letter-spacing: 0; font-family: var(--body); font-weight: 600; }
p { margin-bottom: 1.1em; }
p:last-child { margin-bottom: 0; }
.lead { font-size: var(--fs-lead); line-height: 1.55; color: var(--slate); max-width: 34em; }
.muted { color: var(--slate); }
.small { font-size: var(--fs-small); }
.mono { font-family: var(--mono); font-weight: 500; font-feature-settings: "tnum"; letter-spacing: .01em; }
.text-light { color: #fff; }
.text-light .lead, .text-light .muted { color: rgba(255, 255, 255, .78); }

.eyebrow {
	display: inline-flex; align-items: center; gap: 10px;
	margin-bottom: 18px;
	font-family: var(--mono); font-size: var(--fs-label); font-weight: 500;
	letter-spacing: .06em; text-transform: uppercase; color: var(--signal);
}
.eyebrow::before { width: 18px; height: 2px; border-radius: 2px; background: currentColor; content: ""; }
.eyebrow--light { color: #9ec1f5; }
.eyebrow--safety { color: var(--safety-deep); }
.eyebrow--plain::before { display: none; }

.section-heading { margin-bottom: clamp(36px, 4vw, 56px); max-width: 720px; }
.section-heading h2 { margin-bottom: 0; }
.section-heading p { margin-top: 18px; color: var(--slate); max-width: 34em; }
.section-heading--split {
	display: grid; max-width: none;
	grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
	gap: clamp(28px, 5vw, 80px); align-items: end;
}
.section-heading--split p { margin-top: 0; }
.section-heading--split .heading-aside { display: grid; gap: 18px; justify-items: start; }
.section-heading--center { margin-inline: auto; text-align: center; }
.section-heading--center p { margin-inline: auto; }
.section-heading--center .eyebrow { justify-content: center; }

.flow-rule {
	position: relative; height: 2px; margin: 26px 0 0; width: 72px; border-radius: 2px;
	background: var(--signal);
}
.flow-rule::after {
	position: absolute; right: -4px; top: -3px; width: 8px; height: 8px; border-radius: 50%;
	background: var(--signal); box-shadow: 0 0 0 3px var(--paper); content: "";
}

/* ---------- Buttons & links ---------- */
.button {
	display: inline-flex; align-items: center; justify-content: center; gap: 10px;
	min-height: 50px; padding: 12px 22px;
	border: 1px solid transparent; border-radius: var(--r-sm);
	font-family: var(--body); font-size: .96rem; font-weight: 600; line-height: 1.2;
	text-decoration: none; cursor: pointer; white-space: nowrap;
	transition: transform .18s var(--ease), background .18s var(--ease), color .18s var(--ease), border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.button svg { width: 18px; height: 18px; flex: none; }
.button:hover { transform: translateY(-1px); }
.button:active { transform: translateY(0); }
.button--primary { background: var(--signal); color: #fff; box-shadow: 0 1px 0 rgba(255, 255, 255, .15) inset; }
.button--primary:hover { background: var(--signal-deep); }
.button--safety { background: var(--safety); color: var(--ink); }
.button--safety:hover { background: var(--safety-deep); }
.button--ink { background: var(--ink); color: #fff; }
.button--ink:hover { background: var(--navy); }
.button--ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.button--ghost:hover { border-color: var(--ink); background: var(--surface); }
.button--ghost-light { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .35); }
.button--ghost-light:hover { background: rgba(255, 255, 255, .08); border-color: rgba(255, 255, 255, .7); }
.button--full { width: 100%; }
.button--lg { min-height: 56px; padding: 14px 26px; font-size: 1.02rem; }
.button--sm { min-height: 42px; padding: 8px 16px; font-size: .9rem; }

.text-link {
	display: inline-flex; align-items: center; gap: 8px;
	color: var(--signal); font-weight: 600; text-decoration: none; font-size: .96rem;
}
.text-link svg { width: 16px; height: 16px; transition: transform .18s var(--ease); }
.text-link:hover { text-decoration: underline; }
.text-link:hover svg { transform: translateX(3px); }
.text-link--light { color: #fff; }
.text-link--ink { color: var(--ink); }

.actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* ---------- Status dot ---------- */
.status-dot {
	display: inline-block; width: 8px; height: 8px; border-radius: 50%; flex: none;
	background: var(--safety); box-shadow: 0 0 0 0 rgba(242, 140, 40, .55);
	animation: pulse 2s infinite;
}
@keyframes pulse { 70% { box-shadow: 0 0 0 8px rgba(242, 140, 40, 0); } 100% { box-shadow: 0 0 0 0 rgba(242, 140, 40, 0); } }

/* ---------- Top bar ---------- */
.topbar { position: relative; z-index: 102; background: var(--navy); color: #fff; font-size: .84rem; }
.topbar__inner { display: flex; min-height: var(--topbar-h); align-items: center; justify-content: space-between; gap: 20px; }
.topbar p { margin: 0; display: inline-flex; align-items: center; gap: 10px; white-space: nowrap; }
.topbar__coverage { color: rgba(255, 255, 255, .72); }
.topbar__phone { color: #fff; text-decoration: none; font-weight: 600; font-family: var(--mono); letter-spacing: .01em; white-space: nowrap; }
.topbar__phone:hover { text-decoration: underline; }

/* ---------- Header ---------- */
.site-header {
	position: sticky; top: 0; z-index: 100;
	background: var(--paper);
	border-bottom: 1px solid var(--line);
	transition: box-shadow .25s var(--ease);
}
.site-header.is-scrolled { box-shadow: 0 8px 30px rgba(16, 24, 38, .06); }
.site-header__inner {
	display: grid; min-height: var(--header-h);
	grid-template-columns: auto 1fr auto; gap: 32px; align-items: center;
	transition: min-height .25s var(--ease);
}
.site-header.is-scrolled .site-header__inner { min-height: 64px; }

.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--navy); text-decoration: none; }
.brand__mark { width: 40px; height: 40px; flex: none; }
.brand__mark .mark-body { fill: currentColor; }
.brand__mark .mark-bowl { fill: var(--signal); }
.brand__mark .mark-drop { fill: var(--paper); }
.brand__type { display: flex; flex-direction: column; line-height: 1; }
.brand__type strong { font-family: var(--display); font-weight: 700; font-size: 1.35rem; letter-spacing: -.02em; }
.brand__type span { margin-top: 4px; font-family: var(--mono); font-size: .72rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--slate); }
.brand--light { color: #fff; }
.brand--light .brand__mark .mark-drop { fill: var(--navy); }
.brand--light .brand__type span { color: rgba(255, 255, 255, .7); }

.site-nav { display: flex; gap: clamp(18px, 2.4vw, 34px); justify-self: center; align-items: center; }
.site-nav a {
	position: relative; padding: 8px 2px; color: var(--ink); text-decoration: none;
	font-size: .96rem; font-weight: 500;
}
.site-nav a::after {
	position: absolute; left: 0; right: 0; bottom: 2px; height: 2px; border-radius: 2px;
	background: var(--signal); transform: scaleX(0); transform-origin: left;
	transition: transform .22s var(--ease); content: "";
}
.site-nav a:hover::after, .site-nav a[aria-current="page"]::after { transform: scaleX(1); }
.site-nav__mobile-only { display: none; }

.site-header__actions { display: flex; align-items: center; gap: 10px; }
.header-call { min-height: 46px; padding-inline: 18px; }
.header-call__number { font-family: var(--mono); font-weight: 600; letter-spacing: .01em; }
.menu-toggle {
	display: none; width: 46px; height: 46px; border: 1px solid var(--line-strong); border-radius: var(--r-sm);
	background: var(--surface); padding: 12px 11px; cursor: pointer;
}
.menu-toggle > span:not(.screen-reader-text) { display: block; height: 2px; margin: 5px 0; border-radius: 2px; background: var(--ink); transition: transform .22s var(--ease), opacity .22s var(--ease); }

/* ---------- Home hero (full-bleed photo) ---------- */
.hero { position: relative; overflow: hidden; background: var(--navy); color: #fff; }
.hero__media { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 68% 50%; }
.hero__media::after {
	position: absolute; inset: 0; content: "";
	background:
		linear-gradient(90deg, rgba(15, 42, 74, .97) 0%, rgba(15, 42, 74, .9) 34%, rgba(15, 42, 74, .42) 62%, rgba(15, 42, 74, .3) 100%),
		linear-gradient(0deg, rgba(15, 42, 74, .55), transparent 45%);
}
.hero__grid {
	position: static;
	display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(360px, 460px);
	gap: clamp(32px, 6vw, 96px); align-items: center;
	padding-block: clamp(56px, 7vw, 104px);
	min-height: min(720px, calc(100vh - var(--header-h) - var(--topbar-h)));
}
.hero__copy { position: relative; z-index: 2; max-width: 600px; }
.hero h1 { margin-bottom: 22px; }
.hero .eyebrow { color: #9ec1f5; }
.hero .lead { margin-bottom: 30px; color: rgba(255, 255, 255, .84); }
.hero .button--ghost { color: #fff; border-color: rgba(255, 255, 255, .45); }
.hero .button--ghost:hover { background: rgba(255, 255, 255, .1); border-color: #fff; }
.hero__proof {
	display: flex; flex-wrap: wrap; gap: 10px 26px; margin-top: 36px; padding-top: 24px;
	border-top: 1px solid rgba(255, 255, 255, .2);
	font-size: var(--fs-small); color: rgba(255, 255, 255, .78);
}
.hero__proof li { display: inline-flex; align-items: center; gap: 8px; list-style: none; }
.hero__proof ul { display: contents; }
.hero__proof svg { width: 16px; height: 16px; color: #9ec1f5; flex: none; }
.hero__proof strong { color: #fff; font-weight: 600; }
.hero__card { position: relative; z-index: 2; }
.hero .callback-card { color: var(--ink); box-shadow: 0 30px 80px rgba(0, 0, 0, .35), 0 6px 16px rgba(0, 0, 0, .12); }
.hero .callback-card h2 { color: var(--ink); }

/* Staggered load */
.js .hero [data-stagger] { opacity: 0; transform: translateY(14px); animation: rise .7s var(--ease) forwards; }
.js .hero [data-stagger="1"] { animation-delay: .05s; }
.js .hero [data-stagger="2"] { animation-delay: .13s; }
.js .hero [data-stagger="3"] { animation-delay: .21s; }
.js .hero [data-stagger="4"] { animation-delay: .29s; }
.js .hero [data-stagger="5"] { animation-delay: .37s; }
.js .hero [data-stagger="6"] { animation-delay: .45s; }
@keyframes rise { to { opacity: 1; transform: none; } }

/* ---------- Trust row ---------- */
.trust-row { border-block: 1px solid var(--line); background: var(--surface); }
.trust-row__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item {
	display: grid; grid-template-columns: 44px 1fr; gap: 14px; align-items: center;
	padding: 22px 24px 22px 0; border-right: 1px solid var(--line);
}
.trust-item:not(:first-child) { padding-left: 24px; }
.trust-item:last-child { border-right: 0; }
.trust-item__icon {
	display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%;
	background: var(--tint); color: var(--signal);
}
.trust-item__icon svg { width: 22px; height: 22px; }
.trust-item strong { display: block; font-weight: 600; font-size: .98rem; line-height: 1.25; }
.trust-item div > span { display: block; margin-top: 3px; color: var(--slate); font-size: var(--fs-small); line-height: 1.4; }

/* ---------- Card primitives ---------- */
.card {
	position: relative; display: flex; flex-direction: column;
	background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md);
	padding: 26px; text-decoration: none; color: inherit;
	transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
}
a.card:hover, .card--hover:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--tint-deep); }
.card__index { font-family: var(--mono); font-size: var(--fs-label); font-weight: 500; color: var(--slate); letter-spacing: .04em; }
.card__icon {
	display: grid; place-items: center; width: 48px; height: 48px; border-radius: 12px;
	background: var(--tint); color: var(--signal); margin-bottom: 20px;
}
.card__icon svg { width: 24px; height: 24px; }
.card__top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 18px; }
.card__top .card__icon { margin-bottom: 0; }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--slate); font-size: var(--fs-small); line-height: 1.55; margin-bottom: 0; }
.card__more { margin-top: auto; padding-top: 18px; font-size: var(--fs-small); }
.card__arrow {
	position: absolute; top: 22px; right: 22px; width: 32px; height: 32px; border-radius: 50%;
	display: grid; place-items: center; color: var(--slate); border: 1px solid var(--line);
	transition: background .22s var(--ease), color .22s var(--ease), border-color .22s var(--ease);
}
.card__arrow svg { width: 15px; height: 15px; }
a.card:hover .card__arrow { background: var(--signal); border-color: var(--signal); color: #fff; }

/* ---------- Symptom grid ---------- */
.symptom-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.symptom-card { min-height: 230px; }
.symptom-card h3 { margin-top: auto; padding-top: 28px; }

/* ---------- Services grid ---------- */
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.service-card { min-height: 300px; }
.service-card h3 { font-size: 1.28rem; }
.service-card .card__more { color: var(--signal); font-weight: 600; display: inline-flex; gap: 6px; align-items: center; }
.service-card .card__more svg { width: 15px; height: 15px; transition: transform .18s var(--ease); }
.service-card:hover .card__more svg { transform: translateX(3px); }

/* ---------- Evidence split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 96px); align-items: center; }
.split--wide-media { grid-template-columns: 1.1fr .9fr; }
.media { position: relative; }
.media img { width: 100%; height: auto; object-fit: cover; border-radius: var(--r-lg); box-shadow: var(--shadow-md); }
.media--portrait img { aspect-ratio: 4 / 5; }
.media--landscape img { aspect-ratio: 4 / 3; }
.media__tag {
	position: absolute; left: 20px; bottom: 20px; max-width: calc(100% - 40px);
	display: inline-flex; flex-direction: column; gap: 2px;
	background: var(--navy); color: #fff; padding: 14px 18px; border-radius: var(--r-sm);
	box-shadow: var(--shadow-sm);
}
.media__tag span { font-family: var(--mono); font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: #9ec1f5; }
.media__tag strong { font-family: var(--display); font-weight: 600; font-size: 1.05rem; }
.split__copy h2 { margin-bottom: 20px; }
.split__copy .lead { margin-bottom: 26px; }

.check-list { margin: 0 0 30px; padding: 0; list-style: none; display: grid; gap: 10px; }
.check-list li { display: grid; grid-template-columns: 26px 1fr; gap: 12px; align-items: start; font-weight: 500; }
.check-list li svg { width: 22px; height: 22px; color: var(--signal); margin-top: 2px; }

/* ---------- Process (flow line) ---------- */
.process { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: clamp(36px, 6vw, 96px); align-items: start; }
.process__intro { position: sticky; top: calc(var(--header-h) + 40px); }
.process__intro .section-heading { margin-bottom: 0; }
.process-list { position: relative; margin: 0; padding: 0; list-style: none; display: grid; gap: 0; }
.process-list::before {
	position: absolute; top: 24px; bottom: 24px; left: 23px; width: 2px; border-radius: 2px;
	background: linear-gradient(180deg, var(--signal), var(--tint-deep)); content: "";
}
.process-list li { position: relative; display: grid; grid-template-columns: 48px 1fr; gap: 24px; padding: 8px 0 34px; }
.process-list li:last-child { padding-bottom: 0; }
.process-list__node {
	position: relative; z-index: 1; display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%;
	background: var(--surface); border: 2px solid var(--signal); color: var(--signal);
	font-family: var(--mono); font-weight: 600; font-size: .9rem;
}
.process-list h3 { margin-bottom: 6px; }
.process-list p { color: var(--slate); margin: 0; max-width: 46ch; }

/* ---------- Stats band (the single navy section) ---------- */
.stats-band { position: relative; overflow: hidden; background: var(--navy); color: #fff; }
.stats-band::before {
	position: absolute; inset: 0; content: ""; opacity: .5;
	background-image:
		linear-gradient(to right, rgba(255, 255, 255, .05) 1px, transparent 1px),
		linear-gradient(to bottom, rgba(255, 255, 255, .05) 1px, transparent 1px);
	background-size: 32px 32px;
	-webkit-mask-image: radial-gradient(ellipse at 20% 0%, #000 0%, transparent 70%);
	mask-image: radial-gradient(ellipse at 20% 0%, #000 0%, transparent 70%);
}
.stats-band .shell { position: relative; }
.stats-band__grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(36px, 6vw, 96px); align-items: center; }
.stats-band h2 { margin-bottom: 18px; }
.stats-band .lead { color: rgba(255, 255, 255, .78); }
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin: 0; padding: 0; list-style: none; }
.stat {
	background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .12); border-radius: var(--r-md);
	padding: 24px 24px 22px;
}
.stat strong { display: block; font-family: var(--display); font-weight: 600; font-size: clamp(2rem, 1.6rem + 1.2vw, 2.8rem); line-height: 1; letter-spacing: -.02em; }
.stat strong small { font-size: .5em; font-weight: 500; letter-spacing: 0; color: #9ec1f5; margin-left: 4px; }
.stat span { display: block; margin-top: 10px; color: rgba(255, 255, 255, .75); font-size: var(--fs-small); line-height: 1.45; }

/* ---------- Coverage ---------- */
.coverage { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(36px, 6vw, 96px); align-items: center; }
.county-list { display: flex; flex-wrap: wrap; gap: 10px; margin: 0; padding: 0; list-style: none; }
.county-list li {
	display: inline-flex; align-items: center; gap: 8px;
	background: var(--surface); border: 1px solid var(--line); border-radius: 999px;
	padding: 9px 16px 9px 12px; font-weight: 500; font-size: var(--fs-small);
}
.county-list li::before { width: 8px; height: 8px; border-radius: 50%; background: var(--signal); content: ""; }
.county-list li.is-base { border-color: var(--signal); background: var(--tint); }
.coverage__note { margin-top: 22px; color: var(--slate); font-size: var(--fs-small); }

/* ---------- CTA strip (shared) ---------- */
.cta-strip { padding-block: clamp(40px, 5vw, 72px); }
.cta-strip__panel {
	display: grid; grid-template-columns: minmax(0, 1.3fr) auto; gap: clamp(24px, 4vw, 64px); align-items: center;
	background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
	padding: clamp(28px, 4vw, 48px);
	box-shadow: var(--shadow-sm);
}
.cta-strip__panel h2 { margin-bottom: 8px; font-size: clamp(1.6rem, 1.3rem + 1vw, 2.3rem); }
.cta-strip__panel p { color: var(--slate); margin: 0; max-width: 46ch; }
.cta-strip__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: flex-end; }

/* ---------- Footer (merged CTA + footer) ---------- */
.site-footer { background: var(--navy); color: #fff; }
.site-footer a { text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.site-footer__cta {
	display: grid; grid-template-columns: minmax(0, 1.2fr) auto; gap: clamp(28px, 5vw, 80px); align-items: center;
	padding-block: clamp(56px, 7vw, 96px);
	border-bottom: 1px solid rgba(255, 255, 255, .12);
}
.site-footer__cta h2 { margin-bottom: 12px; }
.site-footer__cta p { color: rgba(255, 255, 255, .75); margin: 0; max-width: 44ch; }
.site-footer__cta-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: flex-end; }
.site-footer__grid {
	display: grid; grid-template-columns: 1.4fr .8fr 1fr 1.1fr; gap: clamp(28px, 4vw, 56px);
	padding-block: clamp(44px, 5vw, 64px);
}
.site-footer__brand p { margin-top: 20px; max-width: 32ch; color: rgba(255, 255, 255, .72); font-size: var(--fs-small); }
.site-footer h3 { margin-bottom: 16px; font-family: var(--mono); font-weight: 500; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: #9ec1f5; }
.site-footer ul { margin: 0; padding: 0; list-style: none; }
.site-footer li { margin: 0 0 10px; font-size: var(--fs-small); color: rgba(255, 255, 255, .86); }
.site-footer__urgent {
	display: flex; gap: 12px; align-items: flex-start; margin-top: 22px;
	background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .14); border-radius: var(--r-md); padding: 16px 18px;
}
.site-footer__urgent .status-dot { margin-top: 7px; }
.site-footer__urgent p { margin: 0; font-size: var(--fs-small); color: rgba(255, 255, 255, .78); }
.site-footer__urgent strong { color: #fff; }
.site-footer__bottom {
	display: flex; flex-wrap: wrap; gap: 10px 28px; align-items: center; justify-content: space-between;
	padding-block: 22px; border-top: 1px solid rgba(255, 255, 255, .12);
	color: rgba(255, 255, 255, .6); font-size: .84rem;
}
.site-footer__bottom p { margin: 0; }
.site-footer__bottom div { display: flex; gap: 22px; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { position: relative; overflow: hidden; background: var(--paper); border-bottom: 1px solid var(--line); }
.page-hero__grid {
	position: relative; z-index: 1;
	display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
	gap: clamp(28px, 5vw, 80px); align-items: end;
	padding-block: clamp(56px, 7vw, 96px);
}
.page-hero h1 { margin-bottom: 0; max-width: 16ch; }
.page-hero__aside { display: grid; gap: 22px; justify-items: start; }
.page-hero__aside .lead { margin: 0; }
.page-hero--media .page-hero__grid { grid-template-columns: minmax(0, 1fr) minmax(320px, .9fr); align-items: center; }
.page-hero--media .lead { margin-top: 20px; }
.page-hero__media { position: relative; }
.page-hero__media img { width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--r-lg); box-shadow: var(--shadow-md); }
.page-hero__index { font-family: var(--mono); font-size: var(--fs-label); color: var(--slate); letter-spacing: .06em; margin-bottom: 14px; display: block; }

.illustration {
	position: relative; overflow: hidden; display: grid; place-items: center;
	aspect-ratio: 4 / 3; border-radius: var(--r-lg);
	background: var(--tint); border: 1px solid var(--tint-deep);
	box-shadow: var(--shadow-sm);
}
.illustration::before {
	position: absolute; inset: 0; content: "";
	background-image:
		linear-gradient(to right, rgba(31, 111, 229, .1) 1px, transparent 1px),
		linear-gradient(to bottom, rgba(31, 111, 229, .1) 1px, transparent 1px);
	background-size: 32px 32px;
}
.illustration svg { position: relative; width: 38%; height: auto; color: var(--signal); stroke-width: 1.2; }
.illustration__index { position: absolute; top: 18px; left: 20px; font-family: var(--mono); font-size: var(--fs-label); color: var(--navy); letter-spacing: .06em; }
.illustration__label { position: absolute; bottom: 18px; left: 20px; right: 20px; font-family: var(--mono); font-size: .8rem; color: var(--slate); letter-spacing: .04em; text-transform: uppercase; }

/* ---------- Service detail ---------- */
.service-detail__grid { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: clamp(36px, 6vw, 96px); align-items: start; }
.service-detail__intro { position: sticky; top: calc(var(--header-h) + 40px); }
.service-detail__intro h2 { margin-bottom: 18px; }
.detail-panels { display: grid; gap: 16px; }
.panel { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(24px, 3vw, 36px); }
.panel h3 { margin-bottom: 18px; }
.panel ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 0; }
.panel li { display: grid; grid-template-columns: 22px 1fr; gap: 12px; align-items: start; padding: 12px 0; border-top: 1px solid var(--line); }
.panel li:first-child { border-top: 0; padding-top: 0; }
.panel li:last-child { padding-bottom: 0; }
.panel li svg { width: 20px; height: 20px; color: var(--signal); margin-top: 3px; }
.panel--navy { background: var(--navy); color: #fff; border-color: var(--navy); }
.panel--navy li { border-color: rgba(255, 255, 255, .14); color: rgba(255, 255, 255, .9); }
.panel--navy li svg { color: #9ec1f5; }
.panel--steps ol { margin: 0; padding: 0; list-style: none; display: grid; gap: 14px; }
.panel--steps li { display: grid; grid-template-columns: 34px 1fr; gap: 14px; align-items: start; border: 0; padding: 0; }
.panel--steps li span:first-child {
	display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%;
	background: var(--tint); color: var(--signal); font-family: var(--mono); font-weight: 600; font-size: .82rem;
}
.panel--steps li strong { display: block; font-weight: 600; }
.panel--steps li p { margin: 2px 0 0; color: var(--slate); font-size: var(--fs-small); }

/* ---------- About ---------- */
.principle-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.principle-card { min-height: 240px; }
.principle-card h3 { margin-top: auto; padding-top: 28px; }
.audience { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: clamp(36px, 6vw, 96px); align-items: start; }
.audience__items { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.audience__items li { display: grid; grid-template-columns: 200px 1fr; gap: 24px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.audience__items strong { font-family: var(--display); font-weight: 600; font-size: 1.3rem; letter-spacing: -.01em; }
.audience__items span { color: var(--slate); }

/* ---------- Areas ---------- */
.area-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.area-card { display: grid; grid-template-columns: 56px 1fr; gap: 18px; align-items: start; padding: 22px 24px; }
.area-card .card__index { padding-top: 5px; }
.area-card h3 { margin-bottom: 4px; }
.area-card p { margin: 0; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(36px, 6vw, 96px); align-items: start; }
.contact-methods { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.contact-method {
	display: grid; grid-template-columns: 44px 1fr auto; gap: 16px; align-items: center;
	padding: 18px 0; border-bottom: 1px solid var(--line); text-decoration: none; color: inherit;
}
.contact-method__icon { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: var(--tint); color: var(--signal); }
.contact-method__icon svg { width: 20px; height: 20px; }
.contact-method div > span { display: block; font-family: var(--mono); font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: var(--slate); }
.contact-method strong { display: block; margin-top: 2px; font-weight: 600; font-size: 1.05rem; line-height: 1.3; }
a.contact-method:hover strong { color: var(--signal); }
.contact-method__arrow { width: 18px; height: 18px; color: var(--slate); }
.contact-note { display: inline-flex; align-items: center; gap: 10px; margin-top: 22px; color: var(--slate); font-size: var(--fs-small); }

/* ---------- Callback form ---------- */
.callback-card {
	background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
	padding: clamp(24px, 3vw, 36px); box-shadow: var(--shadow-lg);
}
.callback-card__head { margin-bottom: 22px; }
.callback-card__head h2 { font-size: clamp(1.45rem, 1.2rem + .8vw, 1.9rem); margin-bottom: 6px; }
.callback-card__head p { color: var(--slate); font-size: var(--fs-small); margin: 0; }
.callback-card__meta { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 18px; }
.callback-card__meta .eyebrow { margin: 0; }
.callback-card__response { display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: .8rem; color: var(--slate); letter-spacing: .04em; text-transform: uppercase; }

.prime-form { display: grid; gap: 16px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 6px; }
.field--full { grid-column: 1 / -1; }
.field label, .field > span.label { font-size: var(--fs-small); font-weight: 500; color: var(--ink); }
.field label .req { color: var(--safety-deep); font-weight: 600; }
.field input, .field textarea, .field select, .field .select-wrap select {
	width: 100%; min-height: 48px; padding: 11px 14px;
	border: 1px solid var(--line-strong); border-radius: var(--r-sm);
	background: var(--surface); color: var(--ink); font-size: 1rem; line-height: 1.4;
	transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.field textarea { min-height: 104px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #9aa5b5; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--signal); box-shadow: 0 0 0 3px rgba(31, 111, 229, .18); }
.select-wrap { position: relative; }
.select-wrap select { appearance: none; -webkit-appearance: none; padding-right: 42px; cursor: pointer; }
.select-wrap::after {
	position: absolute; right: 16px; top: 50%; width: 10px; height: 10px; margin-top: -7px;
	border-right: 2px solid var(--slate); border-bottom: 2px solid var(--slate); transform: rotate(45deg);
	content: ""; pointer-events: none;
}
.form-consent { display: grid; grid-template-columns: 20px 1fr; gap: 10px; align-items: start; font-size: var(--fs-small); color: var(--slate); line-height: 1.45; }
.form-consent input { width: 20px; height: 20px; margin: 1px 0 0; accent-color: var(--signal); }
.form-trap { position: absolute; left: -9999px; }
.callback-card__direct { margin: 4px 0 0; text-align: center; color: var(--slate); font-size: var(--fs-small); }
.callback-card__direct a { font-weight: 600; color: var(--ink); }
.form-notice { border: 1px solid var(--tint-deep); border-left: 4px solid var(--signal); background: var(--tint); border-radius: var(--r-sm); padding: 12px 14px; font-size: var(--fs-small); margin-bottom: 16px; }
.form-notice--error { border-color: #f3d2b8; border-left-color: var(--safety-deep); background: #fdf3ea; }

/* ---------- Legal / prose / 404 ---------- */
.legal-hero { background: var(--paper); border-bottom: 1px solid var(--line); padding-block: clamp(48px, 6vw, 80px); }
.legal-hero h1 { margin-bottom: 12px; }
.legal-hero .lead { margin: 0; }
.prose { max-width: 68ch; }
.prose h2 { margin-top: 2.2em; margin-bottom: .6em; font-size: 1.6rem; }
.prose h3 { margin-top: 1.6em; }
.prose p, .prose li { color: #2c3a4f; }
.prose a { color: var(--signal); font-weight: 500; }
.not-found { display: grid; place-items: center; min-height: 60vh; padding-block: clamp(64px, 8vw, 120px); text-align: center; }
.not-found .shell { max-width: 640px; }
.not-found__code { display: block; font-family: var(--mono); color: var(--slate); letter-spacing: .1em; margin-bottom: 16px; }
.not-found .actions { justify-content: center; margin-top: 28px; }

/* ---------- Reveal on scroll ---------- */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: none; }
.js .reveal--d1 { transition-delay: .08s; }
.js .reveal--d2 { transition-delay: .16s; }
.js .reveal--d3 { transition-delay: .24s; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
	.site-header__inner { gap: 20px; }
	.symptom-grid, .service-grid, .principle-grid { grid-template-columns: repeat(2, 1fr); }
	.trust-row__grid { grid-template-columns: repeat(2, 1fr); }
	.trust-item:nth-child(2) { border-right: 0; }
	.trust-item:nth-child(n + 3) { border-top: 1px solid var(--line); }
	.trust-item:nth-child(3) { padding-left: 0; }
	.site-footer__grid { grid-template-columns: 1.2fr 1fr 1fr; }
	.site-footer__brand { grid-column: 1 / -1; }
	.hero__grid { grid-template-columns: minmax(0, 1fr) minmax(320px, 400px); }
}

@media (max-width: 900px) {
	:root { --header-h: 68px; }
	.topbar .topbar__coverage, .topbar .topbar__phone { display: none; }
	.topbar__inner { justify-content: center; }
	.site-header__inner { grid-template-columns: auto auto; justify-content: space-between; }
	.header-call .header-call__label { display: none; }
	.menu-toggle { display: block; }
	.site-nav {
		position: fixed; inset: calc(var(--header-h)) 0 0 0; z-index: 99; width: 100%; justify-self: stretch; align-self: stretch;
		display: flex; flex-direction: column; align-items: stretch; gap: 0;
		padding: 18px var(--gutter) 40px; background: var(--paper);
		transform: translateX(100%); transition: transform .3s var(--ease); overflow: auto;
	}
	.site-nav:not(.is-open) { visibility: hidden; }
	.site-nav.is-open { visibility: visible; transform: none; }
	.site-nav a { padding: 18px 0; border-bottom: 1px solid var(--line); font-family: var(--display); font-size: 1.6rem; font-weight: 600; }
	.site-nav a::after { display: none; }
	.site-nav__mobile-only { display: flex; margin-top: 24px; }
	.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
	.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
	.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

	.hero__grid { grid-template-columns: 1fr; min-height: 0; padding-block: 48px 56px; gap: 36px; }
	.hero__media img { object-position: 72% 50%; }
	.hero__media::after {
		background:
			linear-gradient(180deg, rgba(15, 42, 74, .92) 0%, rgba(15, 42, 74, .8) 45%, rgba(15, 42, 74, .9) 100%);
	}

	.split, .split--wide-media, .process, .stats-band__grid, .coverage, .service-detail__grid, .audience, .contact-grid,
	.section-heading--split, .page-hero__grid, .page-hero--media .page-hero__grid, .cta-strip__panel, .site-footer__cta { grid-template-columns: 1fr; }
	.section-heading--split { align-items: start; gap: 18px; }
	.process__intro, .service-detail__intro { position: static; }
	.page-hero__grid { align-items: start; }
	.page-hero h1 { max-width: none; }
	.cta-strip__actions, .site-footer__cta-actions { justify-content: flex-start; }
	.audience__items li { grid-template-columns: 1fr; gap: 6px; }
	.area-grid { grid-template-columns: 1fr; }
	.site-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
	:root { --fs-body: 1rem; }
	.section { padding-block: 48px; }
	.cta-strip { padding-block: 32px; }
	.topbar { font-size: .82rem; }
	.hero__proof { gap: 10px 18px; }
	.symptom-grid { gap: 10px; }
	.symptom-card, .principle-card { min-height: 0; padding: 20px 18px; }
	.symptom-card h3, .principle-card h3 { padding-top: 16px; font-size: 1.1rem; }
	.symptom-card .card__arrow { top: 16px; right: 16px; width: 28px; height: 28px; }
	.principle-grid { grid-template-columns: 1fr; }
	.stats { gap: 10px; }
	.stat { padding: 18px 18px 16px; }
	.trust-item { padding: 14px 0 14px 16px; }
	.trust-item:nth-child(odd) { padding-left: 0; }
	.trust-item strong { font-size: .9rem; }
	.trust-item div > span { font-size: .84rem; }
	/* Services become a compact list on small screens */
	.service-grid { grid-template-columns: 1fr; gap: 10px; }
	.service-card { display: grid; grid-template-columns: 44px 1fr auto; align-items: center; gap: 14px; padding: 14px 16px; min-height: 0; }
	.service-card .card__top { display: contents; }
	.service-card .card__icon { width: 44px; height: 44px; margin: 0; }
	.service-card .card__index, .service-card p { display: none; }
	.service-card h3 { margin: 0; font-size: 1.02rem; }
	.service-card .card__more { margin: 0; padding: 0; }
	.service-card .card__more-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; }
	.service-card .card__more svg { width: 18px; height: 18px; }
	.form-grid { grid-template-columns: 1fr; }
	.callback-card { padding: 22px 18px; }
	.callback-card__meta { flex-direction: column; align-items: flex-start; gap: 8px; }
	.site-footer__grid { grid-template-columns: 1fr 1fr; gap: 28px 20px; }
	.site-footer__brand { grid-column: 1 / -1; }
	.site-footer__bottom { flex-direction: column; align-items: flex-start; }
	.area-card { grid-template-columns: 1fr; gap: 8px; }
	.media__tag { left: 14px; bottom: 14px; }
	.header-call { width: 46px; min-height: 46px; padding: 0; justify-content: center; }
	.header-call .header-call__number { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; }
	.brand__type strong { font-size: 1.2rem; }
	.brand__type span { font-size: .66rem; }
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
	.js .reveal, .js .hero [data-stagger] { opacity: 1; transform: none; }
}

/* =========================================================
   Refinements approved 5 September 2026
   (inner heroes, service CTA, symptom/service cards, process, numerals)
   ========================================================= */

/* Tabular numerals for phone numbers in the chrome */
.topbar__phone, .header-call__number { font-family: var(--body); font-feature-settings: "tnum"; letter-spacing: 0; font-weight: 600; }

/* Inner page heroes: navy band */
.page-hero { background: var(--navy); color: #fff; border-bottom: 0; }
.page-hero.grid-paper {
	background-image:
		linear-gradient(to right, rgba(255, 255, 255, .05) 1px, transparent 1px),
		linear-gradient(to bottom, rgba(255, 255, 255, .05) 1px, transparent 1px);
}
.page-hero.grid-paper--fade::after { background: linear-gradient(180deg, transparent 20%, var(--navy) 100%); }
.page-hero::before {
	position: absolute; right: -10%; top: -40%; width: 55%; height: 180%; content: ""; pointer-events: none;
	background: radial-gradient(closest-side, rgba(31, 111, 229, .32), transparent 70%);
}
.page-hero h1 { font-size: clamp(2.8rem, 1.7rem + 3.1vw, 4.8rem); }
.page-hero__grid { padding-block: clamp(64px, 8vw, 112px); }
.page-hero .eyebrow { color: #9ec1f5; }
.page-hero .lead { color: rgba(255, 255, 255, .82); }
.page-hero .page-hero__index { color: rgba(255, 255, 255, .62); }
.page-hero .button--ghost { color: #fff; border-color: rgba(255, 255, 255, .45); }
.page-hero .button--ghost:hover { background: rgba(255, 255, 255, .1); border-color: #fff; }
.page-hero .button--primary { background: #fff; color: var(--navy); }
.page-hero .button--primary:hover { background: var(--tint); }
.page-hero .illustration { background: rgba(255, 255, 255, .06); border-color: rgba(255, 255, 255, .14); box-shadow: none; }
.page-hero .illustration::before {
	background-image:
		linear-gradient(to right, rgba(255, 255, 255, .08) 1px, transparent 1px),
		linear-gradient(to bottom, rgba(255, 255, 255, .08) 1px, transparent 1px);
}
.page-hero .illustration svg { color: #9ec1f5; }
.page-hero .illustration__index { color: #fff; }
.page-hero .illustration__label { color: rgba(255, 255, 255, .7); }
.page-hero__media img { box-shadow: 0 24px 60px rgba(0, 0, 0, .35); }

/* Service pages: the navy footer CTA is enough */
body.single-pds_service .cta-strip { display: none; }

/* Symptom cards: compact numbered rows */
.symptom-grid { gap: 14px; }
.symptom-card {
	min-height: 0; padding: 20px 22px 20px 20px;
	display: grid; grid-template-columns: auto 1fr; column-gap: 16px; align-items: start;
	border-left: 3px solid var(--signal);
}
.symptom-card .card__index { grid-row: 1 / span 2; font-size: 1.35rem; font-weight: 600; color: var(--signal); line-height: 1.1; padding-top: 2px; }
.symptom-card h3 { padding-top: 0; margin: 0 0 4px; font-size: 1.15rem; padding-right: 34px; }
.symptom-card p { margin: 0; }
.symptom-card .card__arrow { top: 16px; right: 16px; width: 28px; height: 28px; }

/* Process: 2×2 steps beside the intro */
.process { grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); align-items: start; }
.process-list { display: grid; grid-template-columns: 1fr 1fr; gap: 26px 36px; }
.process-list::before { display: none; }
.process-list li { padding: 0; }
.process-list__node { box-shadow: 0 0 0 6px var(--tint); }

@media (max-width: 900px) {
	.process { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
	.process-list { grid-template-columns: 1fr; gap: 22px; }
	.symptom-card { padding: 16px 16px 16px 16px; }
	.symptom-card h3 { padding-top: 0; font-size: 1.05rem; }
	.symptom-card .card__arrow { display: none; }
}


/* =========================================================
   Accent change (5 September 2026): no orange. Blue on light surfaces, white on navy.
   ========================================================= */
.button--safety { background: var(--signal); color: #fff; }
.button--safety:hover { background: var(--signal-deep); }
.hero .button--safety, .page-hero .button--safety, .site-footer .button--safety, .stats-band .button--safety, .panel--navy .button--safety {
	background: #fff; color: var(--navy);
}
.hero .button--safety:hover, .page-hero .button--safety:hover, .site-footer .button--safety:hover, .stats-band .button--safety:hover { background: var(--tint); color: var(--navy); }
.site-nav__mobile-only.button--safety { background: var(--signal); color: #fff; }

.status-dot { background: var(--signal); box-shadow: 0 0 0 0 rgba(31, 111, 229, .5); animation: pulse-blue 2s infinite; }
.topbar .status-dot, .site-footer .status-dot { background: #9ec1f5; box-shadow: 0 0 0 0 rgba(158, 193, 245, .5); }
@keyframes pulse-blue { 70% { box-shadow: 0 0 0 8px rgba(31, 111, 229, 0); } 100% { box-shadow: 0 0 0 0 rgba(31, 111, 229, 0); } }

.field label .req { color: var(--signal); }
.eyebrow--safety { color: var(--signal); }
.form-notice--error { border-color: var(--tint-deep); border-left-color: var(--navy); background: var(--tint); }

/* =========================================================
   Brand artwork (5 September 2026): client logo replaces the drawn P mark.
   Header/footer markup is stored content, so the artwork is applied via CSS.
   ========================================================= */
.brand svg.brand__mark { display: none; }
.brand::before {
	content: ""; flex: none; width: 56px; height: 38px;
	background: url("../images/logo-mark.png") center / contain no-repeat;
}
.brand__type strong { text-transform: uppercase; font-weight: 700; letter-spacing: .04em; font-size: 1.25rem; color: var(--navy); }
.brand__type span { color: var(--signal); letter-spacing: .16em; }
.site-header.is-scrolled .brand::before { width: 50px; height: 34px; }

/* Footer: the full stacked logo in its light version, wordmark text hidden */
.site-footer .brand--light::before { width: 200px; height: 157px; background-image: url("../images/logo-prime-drainage-light.png"); }
.site-footer .brand--light .brand__type { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; }
.site-footer .brand--light { position: relative; }

@media (max-width: 560px) {
	.brand::before { width: 46px; height: 31px; }
	.brand__type strong { font-size: 1.1rem; }
	.brand__type span { font-size: .62rem; }
	.site-footer .brand--light::before { width: 170px; height: 133px; }
}

/* Icon circles on tinted sections use a white fill so the circle stays visible */
.section--tint .contact-method__icon { background: var(--surface); border: 1px solid var(--tint-deep); }
