/* TMM Mobile Vehicle Repairs. Mako Digital, 2026.
   Brand: navy #0f2d52 + blue #1e88e5 (from their existing identity).
   Shapes: buttons are full pills, cards and photos 14-18px, inputs 10px.
   Superwide: the container and the root font size step up at 1600/2100/2600px,
   so a 3440px screen gets a bigger page, not a narrow column in a sea of white. */

@font-face { font-family: 'Barlow'; font-style: normal; font-weight: 400; font-display: swap; src: url(../fonts/barlow-400.woff2) format('woff2'); }
@font-face { font-family: 'Barlow'; font-style: normal; font-weight: 500; font-display: swap; src: url(../fonts/barlow-500.woff2) format('woff2'); }
@font-face { font-family: 'Barlow'; font-style: normal; font-weight: 600; font-display: swap; src: url(../fonts/barlow-600.woff2) format('woff2'); }
@font-face { font-family: 'Barlow'; font-style: normal; font-weight: 700; font-display: swap; src: url(../fonts/barlow-700.woff2) format('woff2'); }
@font-face { font-family: 'Barlow Semi Condensed'; font-style: normal; font-weight: 600; font-display: swap; src: url(../fonts/barlow-semi-condensed-600.woff2) format('woff2'); }
@font-face { font-family: 'Barlow Semi Condensed'; font-style: normal; font-weight: 700; font-display: swap; src: url(../fonts/barlow-semi-condensed-700.woff2) format('woff2'); }

:root {
	--navy: #0f2d52;
	--navy-deep: #0b2342;
	--blue: #1e88e5;        /* brand blue: large text and decoration only (3.4:1 on white) */
	--blue-ink: #1669c1;    /* text, links and buttons (5.5:1 on white) */
	--blue-ink-hover: #0f579f;
	--blue-soft: #e9f3fd;
	--blue-line: #cfe2f7;
	--blue-on-navy: #7cc0f7;
	--ink: #16202c;
	--body: #3a4553;
	--muted: #5b6674;
	--line: #e1e6ec;
	--field-line: #8795a5;  /* 3:1 against white, as form borders must be */
	--tint: #f4f6f8;
	--paper: #ffffff;
	--ok: #146b43;
	--ok-bg: #e6f4ec;
	--err: #b3261e;
	--err-bg: #fdecea;
	--radius: 14px;
	--radius-lg: 18px;
	--radius-sm: 10px;
	--shadow: 0 1px 2px rgba(15, 45, 82, .06), 0 10px 30px rgba(15, 45, 82, .08);
	--font-head: 'Barlow Semi Condensed', 'Barlow', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
	--font-body: 'Barlow', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
	--wrap: 1200px;
	--gutter: clamp(1rem, 4vw, 2.5rem);
	--head-h: 4rem;
	--section: clamp(3.25rem, 2rem + 5vw, 6.5rem);
	--ease: cubic-bezier(.16, 1, .3, 1);
}
@media (min-width: 1080px) { :root { --head-h: 4.75rem; } }
@media (min-width: 1600px) { :root { --wrap: 1360px; } html { font-size: 106.25%; } }
@media (min-width: 2100px) { :root { --wrap: 1560px; } html { font-size: 115%; } }
@media (min-width: 2600px) { :root { --wrap: 1780px; } html { font-size: 128%; } }

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--head-h) + 12px); }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
	margin: 0;
	background: var(--paper);
	color: var(--body);
	font-family: var(--font-body);
	font-size: clamp(1rem, .96rem + .2vw, 1.0625rem);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}
img, picture, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: var(--blue-ink); text-underline-offset: .18em; }
a:hover { color: var(--blue-ink-hover); }
h1, h2, h3 { font-family: var(--font-head); color: var(--navy); margin: 0 0 .5em; font-weight: 700; letter-spacing: -.005em; text-wrap: balance; }
h1 { font-size: clamp(2.35rem, 1.5rem + 3.4vw, 4.1rem); line-height: 1.02; }
h2 { font-size: clamp(1.85rem, 1.35rem + 1.9vw, 2.85rem); line-height: 1.06; }
h3 { font-size: clamp(1.2rem, 1.1rem + .35vw, 1.4rem); line-height: 1.2; color: var(--ink); font-weight: 600; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
strong { color: var(--ink); font-weight: 600; }
.small { font-size: .95rem; color: var(--muted); }
.lede { font-size: clamp(1.1rem, 1.02rem + .35vw, 1.3rem); line-height: 1.5; color: var(--body); max-width: 38rem; }
.wrap { width: min(100% - 2 * var(--gutter), var(--wrap)); margin-inline: auto; }
.narrow { max-width: 46rem; }
.sr { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip { position: absolute; left: 1rem; top: -4rem; z-index: 100; background: var(--navy); color: #fff; padding: .7rem 1rem; border-radius: var(--radius-sm); font-weight: 600; }
.skip:focus { top: 1rem; color: #fff; }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; border-radius: 4px; }
.ico { width: 1.25em; height: 1.25em; flex: none; }

/* ---------------------------------------------------------------- buttons */
.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: .55em;
	min-height: 52px; padding: .85em 1.45em;
	border-radius: 999px; border: 2px solid transparent;
	font-family: var(--font-head); font-weight: 600; font-size: 1.12rem; letter-spacing: .01em; line-height: 1.1;
	text-decoration: none; white-space: nowrap; cursor: pointer;
	transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .15s var(--ease);
}
.btn:active { transform: scale(.98); }
.btn-primary { background: var(--blue-ink); color: #fff; }
.btn-primary:hover { background: var(--blue-ink-hover); color: #fff; }
.btn-ghost { background: transparent; color: var(--navy); border-color: #b9c6d4; }
.btn-ghost:hover { border-color: var(--navy); color: var(--navy); }
.btn-ghost .ico { transition: transform .2s var(--ease); }
.btn-ghost:hover .ico { transform: translateX(3px); }
.ctas { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.75rem; }
.link-arrow { display: inline-flex; align-items: center; gap: .4em; font-family: var(--font-head); font-weight: 600; font-size: 1.1rem; color: var(--blue-ink); text-decoration: none; }
.link-arrow .ico { transition: transform .2s var(--ease); }
.link-arrow:hover .ico, a:hover > .link-arrow .ico, a:hover .link-arrow .ico { transform: translateX(4px); }

/* ----------------------------------------------------------------- header */
.scroll-sentinel { position: absolute; top: 0; left: 0; width: 1px; height: 8px; pointer-events: none; }
.site-head {
	position: sticky; top: 0; z-index: 50;
	background: rgba(255, 255, 255, .97);
	border-bottom: 1px solid transparent;
	transition: border-color .2s ease, box-shadow .2s ease;
}
.is-scrolled .site-head { border-bottom-color: var(--line); box-shadow: 0 6px 20px rgba(15, 45, 82, .06); }
.head-in { display: flex; align-items: center; gap: 1.5rem; height: var(--head-h); }
.brand { flex: none; display: block; }
.brand img { height: 2.625rem; width: auto; }
@media (min-width: 1080px) { .brand img { height: 3rem; } }
.nav { margin-left: auto; }
.nav ul { display: flex; gap: clamp(1rem, 1.8vw, 1.9rem); }
.nav a { color: var(--ink); text-decoration: none; font-weight: 600; font-size: 1.02rem; padding: .4rem 0; position: relative; }
.nav a:hover { color: var(--blue-ink); }
.nav a[aria-current="page"] { color: var(--navy); }
.nav a[aria-current="page"]::after { content: ''; position: absolute; left: 0; right: 0; bottom: -2px; height: 3px; border-radius: 3px; background: var(--blue); }
.nav-call { display: none; }
.head-call {
	flex: none; display: inline-flex; align-items: center; gap: .5em;
	background: var(--blue-ink); color: #fff; text-decoration: none;
	font-family: var(--font-head); font-weight: 600; font-size: 1.08rem;
	padding: .6em 1.15em; border-radius: 999px; min-height: 46px;
	transition: background-color .2s ease;
}
.head-call:hover { background: var(--blue-ink-hover); color: #fff; }
.nav-toggle { display: none; }

@media (max-width: 1079.98px) {
	.head-in { gap: .75rem; }
	.head-call { margin-left: auto; width: 46px; height: 46px; padding: 0; justify-content: center; }
	.head-call span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
	.nav-toggle {
		display: inline-flex; align-items: center; justify-content: center;
		width: 46px; height: 46px; border-radius: 999px; border: 2px solid #b9c6d4;
		background: #fff; color: var(--navy); cursor: pointer; padding: 0;
	}
	.nav-toggle .ico { width: 24px; height: 24px; }
	.nav-toggle .i-close, .nav-open .nav-toggle .i-open { display: none; }
	.nav-open .nav-toggle .i-close { display: block; }
	.nav {
		position: fixed; inset: var(--head-h) 0 0 0; z-index: 49;
		background: #fff; padding: 1.5rem var(--gutter) 2rem;
		display: none; overflow-y: auto; border-top: 1px solid var(--line);
	}
	.nav-open .nav { display: block; }
	.nav-open { overflow: hidden; }
	.nav ul { flex-direction: column; gap: 0; }
	.nav li { border-bottom: 1px solid var(--line); }
	.nav a { display: block; padding: 1rem 0; font-family: var(--font-head); font-size: 1.45rem; }
	.nav a[aria-current="page"]::after { display: none; }
	.nav a[aria-current="page"] { color: var(--blue-ink); }
	.nav-call {
		display: flex; align-items: center; justify-content: center; gap: .6rem; margin-top: 1.5rem;
		background: var(--blue-ink); color: #fff; text-decoration: none; border-radius: 999px;
		font-family: var(--font-head); font-weight: 600; font-size: 1.3rem; padding: 1rem;
	}
	.nav-call:hover { color: #fff; }
}

/* ------------------------------------------------------------------- hero */
.hero, .page-hero {
	position: relative; overflow: hidden;
	background:
		radial-gradient(circle at 1.5px 1.5px, rgba(30, 136, 229, .16) 1.5px, transparent 2px) 0 0 / 22px 22px,
		linear-gradient(180deg, #f3f7fc 0%, #ffffff 100%);
}
.hero::before, .page-hero::before {
	/* fade the dot pattern out towards the right so it never fights the photo */
	content: ''; position: absolute; inset: 0; pointer-events: none;
	background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .6) 45%, #fff 75%);
}
.hero-grid { position: relative; display: grid; gap: 2rem; padding-block: 2rem 3rem; align-items: center; }
.hero h1 span, .page-hero h1 span { display: block; color: var(--blue); }
.hero-media picture { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.hero-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: 50% 62%; }
@media (min-width: 900px) {
	.hero-grid { grid-template-columns: 1.05fr .95fr; gap: clamp(2.5rem, 5vw, 5rem); padding-block: clamp(2.75rem, 5vw, 5rem) clamp(3.5rem, 6vw, 6rem); }
	.hero-media img { aspect-ratio: 4 / 4.6; max-height: calc(100vh - var(--head-h) - 7rem); min-height: 420px; }
}

/* ------------------------------------------------------------ trust strip */
.trust { border-bottom: 1px solid var(--line); background: #fff; }
.trust-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem 1.5rem; padding-block: 1.4rem; }
.trust-list li { display: flex; align-items: center; gap: .75rem; font-size: 1rem; line-height: 1.3; color: var(--body); }
.trust-list .ico { width: 1.9rem; height: 1.9rem; color: var(--blue-ink); }
.trust-list strong { display: block; font-family: var(--font-head); font-size: 1.15rem; color: var(--navy); }
@media (min-width: 900px) { .trust-list { grid-template-columns: repeat(4, 1fr); padding-block: 1.75rem; } }

/* ---------------------------------------------------------------- sections */
section { scroll-margin-top: calc(var(--head-h) + 12px); }
.services, .steps, .split-sec, .fleet, .areas, .faq, .quote, .values, .faults, .prose-sec, .base-note { padding-block: var(--section); }
.is-tint { background: var(--tint); }
.sec-head { max-width: 44rem; margin-bottom: clamp(1.75rem, 1.2rem + 1.5vw, 2.75rem); }
.sec-head p { font-size: 1.12rem; color: var(--body); }

/* services */
.svc-feature { display: grid; gap: 1.25rem; }
@media (min-width: 800px) { .svc-feature { grid-template-columns: 1fr 1fr; gap: 1.5rem; } }
.svc-big {
	position: relative; display: flex; flex-direction: column; justify-content: flex-end;
	min-height: clamp(320px, 30vw, 460px); border-radius: var(--radius-lg); overflow: hidden;
	background: var(--navy); color: #fff; text-decoration: none; isolation: isolate;
}
.svc-big picture { position: absolute; inset: 0; z-index: -2; }
.svc-big img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.svc-big::before {
	content: ''; position: absolute; inset: 0; z-index: -1;
	background: linear-gradient(180deg, rgba(11, 35, 66, 0) 20%, rgba(11, 35, 66, .55) 55%, rgba(11, 35, 66, .94) 100%);
}
.svc-big:hover img { transform: scale(1.04); }
.svc-big-copy { padding: clamp(1.25rem, 1rem + 1.2vw, 2rem); max-width: 34rem; }
.svc-big h3 { color: #fff; font-size: clamp(1.55rem, 1.3rem + .9vw, 2.1rem); font-weight: 700; margin-bottom: .35rem; }
.svc-big .p { display: block; color: rgba(255, 255, 255, .9); margin-bottom: .9rem; line-height: 1.5; }
.svc-big .link-arrow { color: var(--blue-on-navy); }
.svc-big:hover .link-arrow, .svc-big:hover { color: #fff; }
.svc-list { display: grid; gap: 1.75rem 2rem; margin-top: clamp(2rem, 1.5rem + 2vw, 3.25rem); }
@media (min-width: 640px) { .svc-list { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .svc-list { grid-template-columns: repeat(3, 1fr); } }
.svc-list li { display: flex; gap: 1rem; align-items: flex-start; padding-top: 1.35rem; border-top: 1px solid var(--line); }
.svc-list .ico { width: 2.6rem; height: 2.6rem; padding: .55rem; border-radius: 12px; background: var(--blue-soft); color: var(--blue-ink); }
.svc-list h3 { margin-bottom: .25rem; }
.svc-list p { color: var(--muted); font-size: 1rem; line-height: 1.5; }

/* steps */
.steps h2 { margin-bottom: clamp(1.75rem, 1.2rem + 1.5vw, 2.75rem); }
.step-list { display: grid; gap: 2rem; counter-reset: step; }
@media (min-width: 640px) { .step-list { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .step-list { grid-template-columns: repeat(4, 1fr); gap: 2.25rem; } }
.step-list li { position: relative; }
.step-list .ico { width: 3.2rem; height: 3.2rem; padding: .7rem; border-radius: 50%; background: var(--navy); color: #fff; margin-bottom: 1.1rem; position: relative; z-index: 1; }
@media (min-width: 1024px) {
	.step-list li:not(:last-child)::after {
		content: ''; position: absolute; top: 1.6rem; left: 3.9rem; right: -1.6rem; height: 2px;
		background: repeating-linear-gradient(90deg, #b9c6d4 0 8px, transparent 8px 14px);
	}
}
.step-list h3 { margin-bottom: .35rem; }
.step-list p { color: var(--muted); font-size: 1rem; line-height: 1.5; }

/* split image + text */
.split { display: grid; gap: clamp(2rem, 1.5rem + 3vw, 5rem); align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; } }
.split-media picture { border-radius: var(--radius-lg); overflow: hidden; }
.split-media img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.split-copy { max-width: 36rem; }
.split-copy .link-arrow { margin-top: .5rem; }
@media (max-width: 899.98px) { .split.is-flip .split-media { order: -1; } }

/* fleet band */
.fleet { background: var(--navy); color: #d6e2ef; }
.fleet h2 { color: #fff; }
.fleet p { color: #d6e2ef; font-size: 1.12rem; }
.fleet-grid { display: grid; gap: 2rem; align-items: center; }
@media (min-width: 900px) { .fleet-grid { grid-template-columns: 1.05fr .95fr; gap: 4rem; } }
.fleet-copy { max-width: 36rem; }
.ticks { display: grid; gap: 1rem; }
.ticks li { display: flex; gap: .8rem; align-items: flex-start; color: #fff; font-size: 1.08rem; line-height: 1.45; }
.ticks .ico { width: 1.7rem; height: 1.7rem; padding: .3rem; border-radius: 50%; background: rgba(124, 192, 247, .18); color: var(--blue-on-navy); margin-top: -.05rem; }

/* areas */
.areas-grid { display: grid; gap: 2rem; align-items: center; }
@media (min-width: 900px) { .areas-grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.areas-copy { max-width: 36rem; }
.towns { display: grid; grid-template-columns: repeat(2, 1fr); gap: .75rem; }
.towns li { display: flex; align-items: center; gap: .6rem; padding: .95rem 1.1rem; background: #fff; border: 1px solid var(--line); border-radius: 12px; font-family: var(--font-head); font-weight: 600; font-size: 1.18rem; color: var(--navy); line-height: 1.15; }
.towns .ico { color: var(--blue-ink); width: 1.35rem; height: 1.35rem; }
.areas.is-tint .towns li { border-color: #dde4eb; }

/* FAQs */
.faq-grid { display: grid; gap: 1.5rem 4rem; }
@media (min-width: 1024px) { .faq-grid { grid-template-columns: minmax(16rem, 1fr) 2fr; align-items: start; } .faq-head { position: sticky; top: calc(var(--head-h) + 2rem); } }
.faq-head h2 { margin-bottom: .75rem; }
.faq-list { border-top: 1px solid var(--line); }
.qa { border-bottom: 1px solid var(--line); }
.qa summary { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.2rem 0; cursor: pointer; list-style: none; }
.qa summary::-webkit-details-marker { display: none; }
.qa summary h3 { margin: 0; font-size: clamp(1.12rem, 1.05rem + .3vw, 1.3rem); }
.qa summary .ico { color: var(--blue-ink); width: 1.4rem; height: 1.4rem; transition: transform .25s var(--ease); }
.qa[open] summary .ico { transform: rotate(180deg); }
.qa summary:hover h3 { color: var(--blue-ink); }
.qa-a { padding: 0 0 1.35rem; max-width: 44rem; }
.qa-a p { color: var(--body); }

/* quote */
.quote { background: var(--tint); }
.quote-grid { display: grid; gap: 2.25rem; align-items: start; }
@media (min-width: 1024px) { .quote-grid { grid-template-columns: .85fr 1.15fr; gap: clamp(2.5rem, 5vw, 5rem); } }
.quote-side .lede { margin-bottom: 1.75rem; }
.reach { display: grid; gap: .75rem; }
.reach a, .reach-row { display: flex; align-items: center; gap: .9rem; padding: .95rem 1.1rem; background: #fff; border: 1px solid var(--line); border-radius: 14px; color: var(--body); text-decoration: none; transition: border-color .2s ease; }
.reach a:hover { border-color: var(--blue-ink); color: var(--body); }
.reach .ico { width: 2.5rem; height: 2.5rem; padding: .55rem; border-radius: 50%; background: var(--blue-soft); color: var(--blue-ink); }
.reach strong { display: block; font-family: var(--font-head); font-size: 1.2rem; color: var(--navy); line-height: 1.2; }
.reach span span, .reach-row > span { font-size: .98rem; line-height: 1.35; }
.reach-row a { padding: 0; border: 0; background: none; display: inline; color: var(--blue-ink); word-break: break-word; }
.quote-note { display: flex; gap: .6rem; align-items: flex-start; margin-top: 1.25rem; font-size: .98rem; color: var(--muted); }
.quote-note .ico { color: var(--blue-ink); margin-top: .15rem; }
.quote-card { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: clamp(1.25rem, .9rem + 2vw, 2.4rem); }

/* form */
.fields { display: grid; gap: 1.15rem 1.25rem; }
@media (min-width: 640px) { .fields { grid-template-columns: 1fr 1fr; } .fld-wide { grid-column: 1 / -1; } }
.fld { display: flex; flex-direction: column; gap: .4rem; min-width: 0; }
.fld label { font-weight: 600; color: var(--ink); font-size: 1rem; }
.opt { font-weight: 400; color: var(--muted); }
.fld input, .fld select, .fld textarea {
	width: 100%; min-height: 50px; padding: .7rem .9rem;
	font: inherit; font-size: 1.02rem; color: var(--ink);
	background: #fff; border: 1.5px solid var(--field-line); border-radius: var(--radius-sm);
	transition: border-color .15s ease, box-shadow .15s ease;
}
.fld textarea { min-height: 120px; resize: vertical; line-height: 1.5; }
.fld select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--navy) 50%), linear-gradient(135deg, var(--navy) 50%, transparent 50%); background-position: calc(100% - 20px) 55%, calc(100% - 14px) 55%; background-size: 6px 6px; background-repeat: no-repeat; padding-right: 2.5rem; }
.fld input:focus, .fld select:focus, .fld textarea:focus { outline: none; border-color: var(--blue-ink); box-shadow: 0 0 0 4px rgba(22, 105, 193, .18); }
.fld [aria-invalid="true"] { border-color: var(--err); }
.fld input.reg { font-family: var(--font-head); font-weight: 700; font-size: 1.2rem; letter-spacing: .12em; text-transform: uppercase; }
.fld-file input { padding: .6rem; min-height: auto; font-size: .95rem; }
.fld-file input::file-selector-button { font: inherit; font-weight: 600; margin-right: .8rem; padding: .5rem .9rem; border-radius: 999px; border: 1.5px solid var(--field-line); background: var(--tint); color: var(--navy); cursor: pointer; }
.hint { font-size: .92rem; color: var(--muted); line-height: 1.4; }
.fld-err { font-size: .92rem; color: var(--err); font-weight: 600; }
.hp { position: absolute !important; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.cf-turnstile { margin-top: 1.25rem; }
.form-foot { display: flex; flex-wrap: wrap; align-items: center; gap: .75rem 1.25rem; margin-top: 1.5rem; }
.btn-send { min-width: 13rem; }
.btn-send[disabled] { opacity: .7; cursor: progress; }
.form-status { margin: 0; font-size: .98rem; color: var(--muted); }
.form-status.is-err { color: var(--err); font-weight: 600; }
.form-small { margin-top: 1rem; font-size: .92rem; color: var(--muted); }
.form-note { display: flex; gap: .75rem; align-items: flex-start; padding: 1rem 1.1rem; border-radius: 12px; margin-bottom: 1.5rem; }
.form-note .ico { width: 1.5rem; height: 1.5rem; margin-top: .1rem; }
.form-note.is-ok { background: var(--ok-bg); color: var(--ok); }
.form-note.is-ok strong { color: var(--ok); }
.form-note.is-err { background: var(--err-bg); color: var(--err); }
.form-note:focus { outline: none; }

/* ---------------------------------------------------------- inner pages */
.page-hero-grid { position: relative; display: grid; gap: 2rem; padding-block: 1.75rem clamp(2.75rem, 5vw, 4.5rem); align-items: center; }
@media (min-width: 900px) { .page-hero:not(.is-text) .page-hero-grid { grid-template-columns: 1.1fr .9fr; gap: clamp(2.5rem, 5vw, 5rem); padding-top: clamp(2.25rem, 4vw, 3.5rem); } }
.page-hero.is-text .page-hero-copy { max-width: 52rem; }
.page-hero h1 { font-size: clamp(2.1rem, 1.45rem + 2.7vw, 3.6rem); }
.page-hero-media picture { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.page-hero-media img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.crumbs { display: flex; align-items: center; gap: .45rem; flex-wrap: wrap; font-size: .95rem; color: var(--muted); margin-bottom: 1rem; }
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: var(--blue-ink); text-decoration: underline; }
.crumb-sep { width: .85em; height: .85em; transform: rotate(-90deg); color: #9aa6b3; }

.prose-sec p { max-width: 70ch; }
.prose-sec h2 { margin-top: 2.25rem; font-size: clamp(1.6rem, 1.3rem + 1.2vw, 2.25rem); }
.prose-sec h2:first-child { margin-top: 0; }
.prose-sec .big { font-size: clamp(1.18rem, 1.08rem + .5vw, 1.45rem); line-height: 1.5; color: var(--ink); }
.prose-sec.is-tight { padding-block: clamp(2.5rem, 1.5rem + 3vw, 4rem); }
.prose-sec + .quote, .prose-sec.is-tint + .faq { margin-top: 0; }
.legal h2 { font-size: clamp(1.35rem, 1.2rem + .6vw, 1.7rem); }
.details { display: grid; grid-template-columns: minmax(8rem, auto) 1fr; gap: .6rem 1.5rem; margin: 1.5rem 0 2rem; padding: 1.25rem 1.4rem; background: var(--tint); border-radius: var(--radius); }
.details dt { font-weight: 600; color: var(--ink); }
.details dd { margin: 0; }
.callout { display: flex; gap: 1.1rem; align-items: flex-start; padding: clamp(1.25rem, 1rem + 1vw, 1.75rem); background: var(--blue-soft); border: 1px solid var(--blue-line); border-radius: var(--radius); }
.callout > .ico { width: 2.4rem; height: 2.4rem; color: var(--blue-ink); }
.callout h2 { font-size: clamp(1.3rem, 1.15rem + .6vw, 1.6rem); margin: 0 0 .4rem; }
.base-note { padding-block: 0 var(--section); background: var(--tint); }

/* values */
.values h2 { margin-bottom: clamp(1.5rem, 1.1rem + 1.4vw, 2.5rem); }
.value-grid { display: grid; gap: 1.1rem; }
@media (min-width: 640px) { .value-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .value-grid { grid-template-columns: repeat(4, 1fr); gap: 1.4rem; } }
.value-grid li { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem 1.4rem; }
.value-grid .ico { width: 2.3rem; height: 2.3rem; color: var(--blue-ink); margin-bottom: .9rem; }
.value-grid h3 { margin-bottom: .35rem; }
.value-grid p { color: var(--muted); font-size: 1rem; line-height: 1.5; }

/* faults */
.chip-grid { display: flex; flex-wrap: wrap; gap: .65rem; margin-bottom: 1.5rem; }
.chip-grid li { display: inline-flex; align-items: center; gap: .5rem; padding: .7rem 1.05rem; background: #fff; border: 1px solid var(--line); border-radius: 999px; font-weight: 600; color: var(--ink); line-height: 1.2; }
.chip-grid .ico { color: var(--blue-ink); width: 1.15rem; height: 1.15rem; }

/* entry content (fallback pages) */
.entry > * + * { margin-top: 1em; }

/* ---------------------------------------------------------------- footer */
.site-foot { background: var(--navy-deep); color: #c9d6e5; padding-top: clamp(3rem, 2rem + 4vw, 5rem); }
.site-foot a { color: #c9d6e5; text-decoration: none; }
.site-foot a:hover { color: #fff; text-decoration: underline; }
.foot-grid { display: grid; gap: 2.5rem; padding-bottom: 3rem; }
@media (min-width: 640px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .foot-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 3rem; } }
.foot-brand img { height: 3.1rem; width: auto; margin-bottom: 1.1rem; }
.foot-brand p { max-width: 24rem; }
.foot-h { font-family: var(--font-head); font-size: 1.15rem; color: #fff; margin: 0 0 .9rem; letter-spacing: .01em; }
.foot-links { display: grid; gap: .5rem; }
.foot-contact { display: grid; gap: .6rem; margin-top: 1.25rem; }
.foot-contact li { display: flex; align-items: center; gap: .55rem; }
.foot-contact li > a { display: inline-flex; align-items: center; gap: .55rem; }
.foot-contact .ico { color: var(--blue-on-navy); }
.foot-base { display: flex; flex-wrap: wrap; justify-content: space-between; gap: .5rem 1.5rem; padding-block: 1.4rem; border-top: 1px solid rgba(255, 255, 255, .12); font-size: .95rem; color: #9fb1c6; }
.foot-base p { margin: 0; }

/* ------------------------------------------------- mobile quick-contact bar */
.action-bar { display: none; }
@media (max-width: 899.98px) {
	body { padding-bottom: calc(66px + env(safe-area-inset-bottom)); }
	.action-bar {
		position: fixed; left: 0; right: 0; bottom: 0; z-index: 45;
		display: grid; grid-template-columns: 1fr 1fr 1.2fr;
		background: #fff; border-top: 1px solid var(--line);
		box-shadow: 0 -6px 20px rgba(15, 45, 82, .08);
		padding-bottom: env(safe-area-inset-bottom);
	}
	.action-bar a { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .15rem; min-height: 64px; color: var(--navy); text-decoration: none; font-weight: 600; font-size: .9rem; }
	.action-bar .ico { width: 1.45rem; height: 1.45rem; }
	.action-bar a + a { border-left: 1px solid var(--line); }
	.action-bar .is-primary { background: var(--blue-ink); color: #fff; border-left: 0; }
	.nav-open .action-bar { display: none; }
}

/* ---------------------------------------------------------------- motion */
/* Content is visible without JavaScript; only animate when JS is running and
   the visitor has not asked for reduced motion. */
@media (prefers-reduced-motion: no-preference) {
	.js .reveal { opacity: 0; transform: translateY(16px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
	.js .reveal.is-in { opacity: 1; transform: none; }
	.js .step-list li:nth-child(2), .js .svc-list li:nth-child(2), .js .value-grid li:nth-child(2) { transition-delay: .06s; }
	.js .step-list li:nth-child(3), .js .svc-list li:nth-child(3), .js .value-grid li:nth-child(3) { transition-delay: .12s; }
	.js .step-list li:nth-child(4), .js .svc-list li:nth-child(4), .js .value-grid li:nth-child(4) { transition-delay: .18s; }
	.hero-copy > * { animation: rise .8s var(--ease) both; }
	.hero-copy > :nth-child(2) { animation-delay: .06s; }
	.hero-copy > :nth-child(3) { animation-delay: .12s; }
	@keyframes rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
}
@media (prefers-reduced-motion: reduce) {
	.svc-big img, .svc-big:hover img { transition: none; transform: none; }
}
