:root {
	--ink: #0b2436;
	--ink-soft: #3e5868;
	--forest: #007b83;
	--forest-dark: #07566a;
	--forest-deep: #071f35;
	--sage: #dceff0;
	--lime: #ffb547;
	--cream: #edf4f5;
	--cream-light: #f8fbfb;
	--line: rgba(11, 36, 54, 0.13);
	--white: #fff;
	--shadow: 0 24px 70px rgba(11, 36, 54, 0.12);
	--radius-sm: 14px;
	--radius: 24px;
	--radius-lg: 34px;
	--container: 1240px;
	--header-height: 88px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--header-height) + 22px);
}

body {
	margin: 0;
	color: var(--ink);
	background: var(--cream-light);
	font-family: "Segoe UI Variable Text", Aptos, "Segoe UI", ui-sans-serif, sans-serif;
	font-size: 17px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}

body.nav-is-open {
	overflow: hidden;
}

img {
	display: block;
	max-width: 100%;
}

a {
	color: inherit;
	text-decoration: none;
}

button,
input,
select,
textarea {
	font: inherit;
}

button,
a {
	-webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
p {
	margin-top: 0;
}

h1,
h2,
h3 {
	font-family: "Trebuchet MS", "Segoe UI", sans-serif;
	font-weight: 800;
	letter-spacing: -0.045em;
	line-height: 1.05;
}

h1,
h2 {
	text-wrap: balance;
}

.container {
	width: min(calc(100% - 48px), var(--container));
	margin-inline: auto;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.skip-link {
	position: fixed;
	top: 12px;
	left: 12px;
	z-index: 9999;
	padding: 10px 16px;
	color: var(--white);
	background: var(--forest-dark);
	border-radius: 10px;
	transform: translateY(-160%);
}

.skip-link:focus {
	transform: translateY(0);
}

.service-bar {
	position: relative;
	z-index: 50;
	color: rgba(255, 255, 255, 0.86);
	background: var(--forest-deep);
	font-size: 13px;
}

.service-bar__inner,
.service-bar__facts {
	display: flex;
	align-items: center;
}

.service-bar__inner {
	justify-content: space-between;
	min-height: 38px;
}

.service-bar p {
	margin: 0;
}

.service-bar__facts {
	gap: 28px;
}

.service-bar__facts span,
.service-bar__facts a {
	position: relative;
}

.service-bar__facts span::before,
.service-bar__facts a::before {
	position: absolute;
	top: 50%;
	left: -16px;
	width: 3px;
	height: 3px;
	content: "";
	background: rgba(255, 255, 255, 0.42);
	border-radius: 50%;
}

.service-bar a:hover {
	color: var(--lime);
}

.status-dot {
	display: inline-block;
	width: 8px;
	height: 8px;
	margin-right: 8px;
	background: #42d3c8;
	border-radius: 50%;
	box-shadow: 0 0 0 5px rgba(66, 211, 200, 0.13);
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 40;
	background: rgba(248, 251, 251, 0.92);
	border-bottom: 1px solid transparent;
	backdrop-filter: blur(16px);
	transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
	border-color: var(--line);
	box-shadow: 0 12px 34px rgba(16, 41, 32, 0.08);
}

.site-header__inner {
	display: flex;
	align-items: center;
	min-height: var(--header-height);
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: var(--forest);
}

.brand__mark {
	width: 45px;
	height: 45px;
	flex: 0 0 auto;
}

.brand__logo {
	display: block;
	width: auto;
	max-width: 210px;
	height: 52px;
	object-fit: contain;
}

.brand--footer .brand__logo {
	max-width: 230px;
	height: 58px;
}

.brand__text {
	display: grid;
	line-height: 1;
}

.brand__text strong {
	font-size: 17px;
	letter-spacing: -0.03em;
}

.brand__text small {
	margin-top: 5px;
	color: var(--ink);
	font-size: 14px;
	font-weight: 800;
	letter-spacing: 0.17em;
	text-transform: uppercase;
}

.primary-nav {
	margin-left: auto;
	font-size: 14px;
	font-weight: 750;
}

.primary-nav__list {
	display: flex;
	align-items: center;
	gap: 34px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.primary-nav a {
	position: relative;
	display: block;
	padding: 32px 0;
}

.primary-nav a::after {
	position: absolute;
	bottom: 23px;
	left: 0;
	width: 100%;
	height: 2px;
	content: "";
	background: var(--forest);
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 180ms ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
	transform: scaleX(1);
	transform-origin: left;
}

.header-call {
	display: flex;
	align-items: center;
	gap: 11px;
	min-height: 52px;
	margin-left: 36px;
	padding: 8px 18px 8px 14px;
	color: var(--white);
	background: var(--forest);
	border-radius: 14px;
	box-shadow: 0 12px 24px rgba(15, 91, 61, 0.2);
	transition: transform 180ms ease, background 180ms ease;
}

.header-call:hover {
	background: var(--forest-dark);
	transform: translateY(-2px);
}

.header-call svg {
	width: 24px;
	height: 24px;
}

.header-call span {
	display: grid;
	line-height: 1.15;
}

.header-call small {
	margin-bottom: 4px;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	opacity: 0.78;
}

.header-call strong {
	font-size: 14px;
	letter-spacing: -0.015em;
}

.nav-toggle {
	display: none;
	width: 46px;
	height: 46px;
	padding: 12px;
	background: transparent;
	border: 1px solid var(--line);
	border-radius: 12px;
}

.nav-toggle > span:not(.screen-reader-text) {
	display: block;
	width: 20px;
	height: 2px;
	margin: 4px auto;
	background: var(--ink);
	border-radius: 2px;
	transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] > span:nth-child(1) {
	transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] > span:nth-child(2) {
	opacity: 0;
}

.nav-toggle[aria-expanded="true"] > span:nth-child(3) {
	transform: translateY(-6px) rotate(-45deg);
}

.hero {
	position: relative;
	padding: 72px 0 0;
	overflow: hidden;
	background:
		linear-gradient(120deg, rgba(237, 244, 245, 0.98) 0%, rgba(248, 251, 251, 0.96) 47%, rgba(196, 231, 233, 0.78) 100%);
}

.hero::before {
	position: absolute;
	top: 0;
	left: 49%;
	width: 1px;
	height: 100%;
	content: "";
	background: linear-gradient(transparent, rgba(0, 123, 131, 0.12), transparent);
}

.hero__glow {
	position: absolute;
	top: -180px;
	right: -100px;
	width: 540px;
	height: 540px;
	background: rgba(255, 181, 71, 0.28);
	border-radius: 50%;
	filter: blur(70px);
}

.hero__grid {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
	gap: clamp(46px, 6vw, 92px);
	align-items: center;
}

.hero__content {
	position: relative;
	z-index: 2;
	padding: 26px 0 110px;
}

.eyebrow,
.section-kicker {
	margin-bottom: 22px;
	color: var(--forest);
	font-size: 12px;
	font-weight: 850;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	padding: 9px 13px;
	background: rgba(0, 123, 131, 0.08);
	border: 1px solid rgba(0, 123, 131, 0.12);
	border-radius: 999px;
}

.eyebrow__icon {
	color: var(--forest);
	font-size: 14px;
}

.hero h1 {
	max-width: 760px;
	margin-bottom: 28px;
	font-size: clamp(52px, 6.2vw, 91px);
	font-weight: 760;
	letter-spacing: -0.067em;
}

.hero h1 span {
	display: block;
	color: var(--forest);
	font-family: "Trebuchet MS", "Segoe UI", sans-serif;
	font-style: italic;
	font-size: 0.96em;
	font-style: italic;
	font-weight: 500;
	letter-spacing: -0.06em;
}

.hero__lead {
	max-width: 620px;
	margin-bottom: 32px;
	color: var(--ink-soft);
	font-size: clamp(18px, 1.5vw, 21px);
	line-height: 1.6;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 35px;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 58px;
	padding: 15px 24px;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.1;
	border: 1px solid transparent;
	border-radius: var(--radius-sm);
	cursor: pointer;
	transition: transform 180ms ease, color 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
	transform: translateY(-2px);
}

.button svg {
	width: 22px;
	height: 22px;
}

.button--primary {
	color: var(--white);
	background: var(--forest);
	box-shadow: 0 16px 30px rgba(15, 91, 61, 0.22);
}

.button--primary:hover {
	background: var(--forest-dark);
	box-shadow: 0 20px 35px rgba(15, 91, 61, 0.28);
}

.button--ghost {
	color: var(--ink);
	background: rgba(255, 255, 255, 0.42);
	border-color: rgba(16, 41, 32, 0.2);
}

.button--ghost:hover {
	background: var(--white);
	border-color: var(--forest);
}

.hero__trust {
	display: flex;
	flex-wrap: wrap;
	gap: 13px 23px;
	padding: 0;
	margin: 0;
	font-size: 13px;
	font-weight: 720;
	list-style: none;
}

.hero__trust li {
	display: flex;
	align-items: center;
	gap: 7px;
}

.hero__trust span {
	display: grid;
	width: 19px;
	height: 19px;
	place-items: center;
	color: var(--white);
	background: var(--forest);
	border-radius: 50%;
	font-size: 10px;
}

.hero__visual {
	position: relative;
	align-self: stretch;
	min-height: 650px;
}

.hero__image-wrap {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	overflow: hidden;
	border-radius: var(--radius-lg) var(--radius-lg) 0 0;
	box-shadow: var(--shadow);
}

.hero__image-wrap::after {
	position: absolute;
	inset: 0;
	content: "";
	background: linear-gradient(180deg, transparent 52%, rgba(7, 31, 24, 0.25));
}

.hero__image-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 64% center;
}

.hero__note {
	position: absolute;
	right: -20px;
	bottom: 45px;
	z-index: 2;
	display: flex;
	align-items: center;
	gap: 13px;
	min-width: 285px;
	padding: 17px 20px;
	background: rgba(255, 255, 255, 0.94);
	border: 1px solid rgba(255, 255, 255, 0.86);
	border-radius: 18px;
	box-shadow: 0 18px 45px rgba(7, 31, 24, 0.18);
	backdrop-filter: blur(12px);
}

.hero__note-icon {
	display: grid;
	width: 38px;
	height: 38px;
	flex: 0 0 auto;
	place-items: center;
	color: var(--white);
	background: var(--forest);
	border-radius: 50%;
	font-weight: 850;
}

.hero__note div {
	display: grid;
	line-height: 1.3;
}

.hero__note strong {
	font-size: 14px;
}

.hero__note small {
	margin-top: 4px;
	color: var(--ink-soft);
	font-size: 12px;
}

.hero__seal {
	position: absolute;
	top: 28px;
	left: -38px;
	z-index: 2;
	display: grid;
	width: 106px;
	height: 106px;
	place-content: center;
	color: var(--forest-deep);
	text-align: center;
	background: var(--lime);
	border: 8px solid rgba(255, 255, 255, 0.55);
	border-radius: 50%;
	box-shadow: 0 15px 34px rgba(7, 31, 24, 0.16);
	transform: rotate(-8deg);
}

.hero__seal strong {
	font-size: 26px;
	line-height: 1;
}

.hero__seal span {
	font-size: 11px;
	font-weight: 850;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.stats-wrap {
	position: relative;
	z-index: 3;
	margin-top: -56px;
	margin-bottom: 0;
}

.stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	padding: 9px;
	background: var(--white);
	border: 1px solid rgba(16, 41, 32, 0.08);
	border-radius: 20px;
	box-shadow: 0 20px 55px rgba(16, 41, 32, 0.13);
}

.stats div {
	position: relative;
	display: grid;
	padding: 20px 28px;
}

.stats div:not(:last-child)::after {
	position: absolute;
	top: 19px;
	right: 0;
	bottom: 19px;
	width: 1px;
	content: "";
	background: var(--line);
}

.stats strong {
	font-size: 21px;
	letter-spacing: -0.04em;
}

.stats span {
	color: var(--ink-soft);
	font-size: 12px;
	font-weight: 650;
}

.section {
	padding: 135px 0;
}

.services {
	padding-top: 120px;
	background: var(--cream-light);
}

.section-heading--split {
	display: grid;
	grid-template-columns: 1fr minmax(320px, 0.65fr);
	gap: 60px;
	align-items: end;
	margin-bottom: 62px;
}

.section-heading .section-kicker {
	margin-bottom: 15px;
}

.section-heading h2,
.process h2,
.locations h2,
.contact h2 {
	margin-bottom: 0;
	font-size: clamp(45px, 5vw, 72px);
	font-weight: 750;
}

.section-heading h2 em,
.process h2 em,
.locations h2 em,
.contact h2 em {
	color: var(--forest);
	font-family: "Trebuchet MS", "Segoe UI", sans-serif;
	font-style: italic;
	font-weight: 500;
}

.section-heading--split > p {
	max-width: 520px;
	margin: 0 0 5px;
	color: var(--ink-soft);
	font-size: 18px;
}

.service-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.service-card {
	overflow: hidden;
	background: var(--white);
	border: 1px solid rgba(16, 41, 32, 0.09);
	border-radius: var(--radius);
	box-shadow: 0 12px 38px rgba(16, 41, 32, 0.065);
	transition: transform 220ms ease, box-shadow 220ms ease;
	transition-delay: var(--delay, 0ms);
}

.service-card:hover {
	box-shadow: 0 26px 60px rgba(16, 41, 32, 0.13);
	transform: translateY(-7px);
}

.service-card__media {
	position: relative;
	height: 255px;
	overflow: hidden;
	background: var(--sage);
}

.service-card__media::after {
	position: absolute;
	inset: 0;
	content: "";
	background: linear-gradient(180deg, transparent 60%, rgba(7, 31, 24, 0.22));
}

.service-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 600ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.service-card:hover .service-card__media img {
	transform: scale(1.045);
}

.service-card__media > span {
	position: absolute;
	right: 17px;
	bottom: 14px;
	z-index: 1;
	color: rgba(255, 255, 255, 0.95);
	font-size: 13px;
	font-weight: 850;
	letter-spacing: 0.1em;
}

.service-card__body {
	padding: 28px 28px 27px;
}

.service-tag {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 14px;
	color: var(--forest);
	font-size: 10px;
	font-weight: 850;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.service-tag span {
	width: 17px;
	height: 2px;
	background: var(--forest);
}

.service-card h3 {
	margin-bottom: 14px;
	font-size: 26px;
	font-weight: 760;
}

.service-card__body > p:not(.service-tag) {
	min-height: 112px;
	margin-bottom: 20px;
	color: var(--ink-soft);
	font-size: 14px;
	line-height: 1.7;
}

.service-card__body > a,
.text-link {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: var(--forest);
	font-size: 13px;
	font-weight: 850;
}

.service-card__body > a span,
.text-link span {
	transition: transform 180ms ease;
}

.service-card__body > a:hover span,
.text-link:hover span {
	transform: translate(3px, -3px);
}

.process {
	background: var(--cream);
}

.process__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
	gap: clamp(70px, 9vw, 130px);
	align-items: start;
}

.process__intro {
	position: sticky;
	top: 140px;
}

.process__intro > p:not(.section-kicker) {
	max-width: 470px;
	margin: 28px 0 25px;
	color: var(--ink-soft);
}

.process__steps {
	display: grid;
}

.process-step {
	display: grid;
	grid-template-columns: 85px 1fr;
	gap: 30px;
	padding: 35px 0;
	border-bottom: 1px solid rgba(16, 41, 32, 0.16);
}

.process-step:first-child {
	padding-top: 5px;
}

.process-step > span {
	display: grid;
	width: 70px;
	height: 70px;
	place-items: center;
	color: var(--forest);
	background: rgba(255, 255, 255, 0.55);
	border: 1px solid rgba(15, 91, 61, 0.17);
	border-radius: 50%;
	font-size: 13px;
	font-weight: 850;
	letter-spacing: 0.1em;
}

.process-step h3 {
	margin: 5px 0 12px;
	font-size: 28px;
}

.process-step p {
	max-width: 550px;
	margin: 0;
	color: var(--ink-soft);
}

.emergency {
	padding: 38px 0;
	color: var(--white);
	background: var(--forest);
}

.emergency__inner {
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 28px;
	align-items: center;
}

.emergency__icon {
	display: grid;
	width: 88px;
	height: 88px;
	place-items: center;
	color: var(--forest-deep);
	background: var(--lime);
	border-radius: 50%;
	font-size: 30px;
	font-weight: 850;
	box-shadow: 0 0 0 9px rgba(200, 239, 136, 0.12);
}

.emergency .section-kicker {
	margin-bottom: 4px;
	color: var(--lime);
}

.emergency h2 {
	margin-bottom: 3px;
	font-size: clamp(27px, 3vw, 39px);
}

.emergency p:last-child {
	margin: 0;
	color: rgba(255, 255, 255, 0.72);
	font-size: 14px;
}

.button--light {
	color: var(--forest-deep);
	background: var(--white);
}

.button--light:hover {
	background: var(--lime);
}

.locations {
	position: relative;
	overflow: hidden;
	color: var(--white);
	background: var(--forest-deep);
}

.locations__grid {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, 0.68fr) minmax(0, 1.32fr);
	gap: clamp(65px, 9vw, 130px);
	align-items: center;
}

.locations .section-kicker {
	color: var(--lime);
}

.locations h2 em {
	color: var(--lime);
}

.locations__copy > p:not(.section-kicker) {
	max-width: 470px;
	margin: 28px 0 34px;
	color: rgba(255, 255, 255, 0.68);
}

.locations__call,
.locations__call > div {
	display: flex;
	align-items: center;
}

.locations__call {
	gap: 13px;
}

.locations__call > span {
	display: grid;
	width: 48px;
	height: 48px;
	place-items: center;
	color: var(--forest-deep);
	background: var(--lime);
	border-radius: 50%;
	font-size: 22px;
}

.locations__call > div {
	display: grid;
	line-height: 1.3;
}

.locations__call small {
	color: rgba(255, 255, 255, 0.58);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.locations__call a {
	margin-top: 3px;
	font-size: 18px;
	font-weight: 800;
}

.city-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
}

.city-grid a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 62px;
	padding: 12px 17px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.11);
	border-radius: 13px;
	font-size: 13px;
	font-weight: 750;
	transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.city-grid a:hover {
	color: var(--forest-deep);
	background: var(--lime);
	border-color: var(--lime);
	transform: translateY(-2px);
}

.city-grid a span:last-child {
	font-size: 14px;
	opacity: 0.6;
}

.locations__orb {
	position: absolute;
	border: 1px solid rgba(200, 239, 136, 0.1);
	border-radius: 50%;
}

.locations__orb--one {
	top: -220px;
	right: -180px;
	width: 650px;
	height: 650px;
}

.locations__orb--two {
	right: 120px;
	bottom: -430px;
	width: 680px;
	height: 680px;
}

.contact {
	background: var(--cream-light);
}

.contact__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
	gap: clamp(65px, 9vw, 125px);
	align-items: center;
}

.contact__copy {
	position: sticky;
	top: 140px;
}

.contact__copy > p:not(.section-kicker) {
	max-width: 480px;
	margin: 28px 0 34px;
	color: var(--ink-soft);
}

.contact__direct {
	display: grid;
	gap: 11px;
	margin-bottom: 28px;
}

.contact__direct > a {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 14px;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 15px;
	transition: border-color 180ms ease, transform 180ms ease;
}

.contact__direct > a:hover {
	border-color: var(--forest);
	transform: translateX(4px);
}

.contact__direct-icon {
	display: grid;
	width: 43px;
	height: 43px;
	flex: 0 0 auto;
	place-items: center;
	color: var(--white);
	background: var(--forest);
	border-radius: 12px;
	font-weight: 800;
}

.contact__direct a > span:last-child {
	display: grid;
	line-height: 1.35;
}

.contact__direct small {
	color: var(--ink-soft);
	font-size: 11px;
	font-weight: 750;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.contact__direct strong {
	font-size: 16px;
	letter-spacing: -0.02em;
}

.contact__assurance {
	display: flex;
	gap: 12px;
	padding: 17px;
	background: var(--sage);
	border-radius: 15px;
}

.contact__assurance > span {
	display: grid;
	width: 25px;
	height: 25px;
	flex: 0 0 auto;
	place-items: center;
	color: var(--white);
	background: var(--forest);
	border-radius: 50%;
	font-size: 12px;
	font-weight: 800;
}

.contact__assurance p {
	margin: 0;
	font-size: 12px;
	line-height: 1.5;
}

.call-card {
	position: relative;
	overflow: hidden;
	padding: clamp(32px, 4.6vw, 56px);
	color: var(--white);
	background:
		radial-gradient(circle at 100% 0, rgba(200, 239, 136, 0.17), transparent 38%),
		linear-gradient(145deg, var(--forest-dark), var(--forest-deep));
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--radius-lg);
	box-shadow: 0 30px 80px rgba(7, 31, 24, 0.2);
}

.call-card::after {
	position: absolute;
	right: -90px;
	bottom: -120px;
	width: 280px;
	height: 280px;
	border: 1px solid rgba(200, 239, 136, 0.15);
	border-radius: 50%;
	content: "";
}

.call-card__status {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	padding: 8px 12px;
	margin-bottom: 28px;
	color: var(--lime);
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 999px;
	font-size: 11px;
	font-weight: 850;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.call-card__status .status-dot {
	background: var(--lime);
	box-shadow: 0 0 0 5px rgba(200, 239, 136, 0.12);
}

.call-card__eyebrow {
	margin: 0 0 8px;
	color: rgba(255, 255, 255, 0.62);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.call-card__number {
	display: inline-block;
	margin-bottom: 18px;
	color: var(--white);
	font-size: clamp(38px, 5vw, 61px);
	font-weight: 780;
	line-height: 1;
	letter-spacing: -0.055em;
}

.call-card__number:hover {
	color: var(--lime);
}

.call-card__text {
	max-width: 580px;
	margin: 0 0 27px;
	color: rgba(255, 255, 255, 0.72);
	font-size: 14px;
	line-height: 1.7;
}

.call-card__button {
	position: relative;
	z-index: 1;
	width: 100%;
	color: var(--forest-deep);
	background: var(--lime);
	box-shadow: 0 14px 35px rgba(0, 0, 0, 0.2);
}

.call-card__button:hover {
	color: var(--forest-deep);
	background: #ffd18a;
	box-shadow: 0 17px 42px rgba(0, 0, 0, 0.25);
}

.call-card__facts {
	position: relative;
	z-index: 1;
	display: grid;
	gap: 0;
	margin-top: 34px;
	border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.call-card__fact {
	display: grid;
	grid-template-columns: 42px 1fr;
	gap: 15px;
	align-items: start;
	padding: 19px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.call-card__fact > span {
	display: grid;
	width: 36px;
	height: 36px;
	place-items: center;
	color: var(--lime);
	background: rgba(200, 239, 136, 0.08);
	border: 1px solid rgba(200, 239, 136, 0.22);
	border-radius: 10px;
	font-size: 10px;
	font-weight: 850;
	letter-spacing: 0.08em;
}

.call-card__fact strong {
	display: block;
	margin-bottom: 4px;
	font-size: 15px;
}

.call-card__fact p {
	margin: 0;
	color: rgba(255, 255, 255, 0.62);
	font-size: 12px;
	line-height: 1.55;
}

.call-card__note {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin: 20px 0 0;
	color: rgba(255, 255, 255, 0.62);
	text-align: center;
	font-size: 11px;
}

.call-card__note span {
	display: grid;
	width: 20px;
	height: 20px;
	place-items: center;
	color: var(--forest-deep);
	background: var(--lime);
	border-radius: 50%;
	font-size: 10px;
	font-weight: 900;
}

.site-footer {
	color: rgba(255, 255, 255, 0.74);
	background: #061927;
}

.site-footer__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(230px, 0.7fr) minmax(170px, 0.4fr);
	gap: clamp(50px, 8vw, 110px);
	padding-top: 80px;
	padding-bottom: 70px;
}

.brand--footer {
	margin-bottom: 24px;
	color: var(--lime);
}

.brand--footer .brand__text small {
	color: var(--white);
}

.footer-brand > p {
	max-width: 440px;
	margin: 0;
	font-size: 14px;
}

.footer-heading {
	margin-bottom: 17px;
	color: var(--white);
	font-size: 12px;
	font-weight: 850;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.footer-phone {
	display: block;
}

.footer-phone {
	color: var(--white);
	font-size: clamp(23px, 2.2vw, 31px);
	font-weight: 750;
	letter-spacing: -0.04em;
}

.footer-phone:hover,
.footer-nav a:hover {
	color: var(--lime);
}

.footer-availability {
	margin: 24px 0 0;
	font-size: 12px;
}

.footer-nav {
	font-size: 13px;
}

.footer-nav__list {
	display: grid;
	gap: 10px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.site-footer__bottom {
	display: flex;
	justify-content: space-between;
	gap: 30px;
	padding-top: 22px;
	padding-bottom: 22px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	font-size: 11px;
}

.site-footer__bottom p {
	margin: 0;
}

.mobile-actions {
	display: none;
}

.legal-page {
	min-height: 70vh;
	padding: 110px 0 130px;
	background: var(--cream-light);
}

.legal-page__inner {
	max-width: 860px;
}

.legal-page h1 {
	margin-bottom: 45px;
	font-size: clamp(48px, 7vw, 86px);
}

.legal-page__content {
	padding: clamp(27px, 5vw, 55px);
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: 0 20px 60px rgba(16, 41, 32, 0.08);
}

.legal-page__content h2 {
	margin: 35px 0 14px;
	font-size: 28px;
}

.legal-page__content h2:first-child {
	margin-top: 0;
}

.legal-page__content p,
.legal-page__content li {
	color: var(--ink-soft);
}

.reveal {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 650ms ease, transform 650ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.reveal--delay {
	transition-delay: 130ms;
}

.reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

@media (max-width: 1120px) {
	:root {
		--header-height: 78px;
	}

	.primary-nav__list {
		gap: 22px;
	}

	.header-call {
		margin-left: 22px;
		padding-right: 14px;
	}

	.header-call small {
		display: none;
	}

	.hero__grid {
		gap: 45px;
	}

	.hero__visual {
		min-height: 600px;
	}

	.hero__seal {
		left: -24px;
	}

	.hero__note {
		right: 18px;
	}

	.service-card__body {
		padding: 24px;
	}

	.service-card__body > p:not(.service-tag) {
		min-height: 135px;
	}
}

@media (max-width: 960px) {
	.service-bar__facts span {
		display: none;
	}

	.nav-toggle {
		display: block;
		order: 2;
		margin-left: auto;
	}

	.primary-nav {
		position: absolute;
		top: 100%;
		right: 0;
		left: 0;
		z-index: 10;
		padding: 14px 24px 26px;
		margin: 0;
		background: var(--cream-light);
		border-bottom: 1px solid var(--line);
		box-shadow: 0 24px 40px rgba(16, 41, 32, 0.14);
		opacity: 0;
		visibility: hidden;
		transform: translateY(-12px);
		transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
	}

	.primary-nav__list {
		display: grid;
		gap: 0;
	}

	.primary-nav.is-open {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}

	.primary-nav a {
		padding: 14px 2px;
		border-bottom: 1px solid var(--line);
		font-size: 16px;
	}

	.primary-nav a::after {
		display: none;
	}

	.header-call {
		order: 1;
		margin-left: auto;
		margin-right: 10px;
	}

	.hero {
		padding-top: 48px;
	}

	.hero::before {
		display: none;
	}

	.hero__grid {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.hero__content {
		padding: 20px 0 52px;
	}

	.hero h1 {
		max-width: 740px;
		font-size: clamp(58px, 10vw, 84px);
	}

	.hero__lead {
		max-width: 690px;
	}

	.hero__visual {
		min-height: 540px;
	}

	.hero__image-wrap {
		border-radius: var(--radius-lg) var(--radius-lg) 0 0;
	}

	.hero__seal {
		top: 28px;
		left: 24px;
	}

	.hero__note {
		right: 24px;
		bottom: 34px;
	}

	.stats-wrap {
		margin-top: -45px;
		margin-bottom: 0;
	}

	.stats {
		grid-template-columns: repeat(2, 1fr);
	}

	.stats div:nth-child(2)::after {
		display: none;
	}

	.stats div:nth-child(-n+2) {
		border-bottom: 1px solid var(--line);
	}

	.section,
	.services {
		padding: 115px 0;
	}

	.services {
		padding-top: 100px;
	}

	.section-heading--split {
		grid-template-columns: 1fr;
		gap: 24px;
		margin-bottom: 45px;
	}

	.service-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.service-card__body > p:not(.service-tag) {
		min-height: 110px;
	}

	.process__grid,
	.locations__grid,
	.contact__grid {
		grid-template-columns: 1fr;
		gap: 60px;
	}

	.process__intro,
	.contact__copy {
		position: static;
	}

	.process__intro > p:not(.section-kicker),
	.contact__copy > p:not(.section-kicker) {
		max-width: 650px;
	}

	.emergency__inner {
		grid-template-columns: auto 1fr;
	}

	.emergency .button {
		grid-column: 2;
		justify-self: start;
	}

	.locations__copy {
		max-width: 650px;
	}

	.city-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.contact__direct {
		max-width: 650px;
	}

	.contact__assurance {
		max-width: 650px;
	}

	.call-card {
		max-width: 760px;
	}

	.site-footer__grid {
		grid-template-columns: 1fr 1fr;
	}

	.footer-brand {
		grid-column: 1 / -1;
	}
}

@media (max-width: 680px) {
	:root {
		--header-height: 70px;
	}

	body {
		padding-bottom: 66px;
		font-size: 16px;
	}

	.container {
		width: min(calc(100% - 30px), var(--container));
	}

	.service-bar__inner {
		justify-content: center;
		min-height: 34px;
	}

	.service-bar__muted,
	.service-bar__facts {
		display: none;
	}

	.brand__mark {
		width: 39px;
		height: 39px;
	}

	.brand__logo {
		max-width: 145px;
		height: 42px;
	}

	.brand__text strong {
		font-size: 15px;
	}

	.brand__text small {
		font-size: 11px;
	}

	.header-call {
		min-height: 44px;
		padding: 8px 10px;
		border-radius: 12px;
	}

	.header-call svg {
		display: none;
	}

	.header-call span {
		display: grid;
	}

	.header-call strong {
		font-size: 10px;
		white-space: nowrap;
	}

	.nav-toggle {
		width: 44px;
		height: 44px;
	}

	.hero {
		padding-top: 30px;
	}

	.hero__content {
		padding-top: 8px;
		padding-bottom: 42px;
	}

	.eyebrow,
	.section-kicker {
		font-size: 10px;
		letter-spacing: 0.13em;
	}

	.hero h1 {
		margin-bottom: 20px;
		font-size: clamp(45px, 14vw, 64px);
		letter-spacing: -0.06em;
	}

	.hero__lead {
		margin-bottom: 25px;
		font-size: 17px;
		line-height: 1.55;
	}

	.hero__actions {
		display: grid;
		grid-template-columns: 1fr;
	}

	.button {
		min-height: 55px;
		padding-inline: 18px;
	}

	.hero__trust {
		display: grid;
		gap: 10px;
	}

	.hero__visual {
		min-height: 430px;
	}

	.hero__image-wrap img {
		object-position: 63% center;
	}

	.hero__seal {
		top: 17px;
		left: 15px;
		width: 82px;
		height: 82px;
		border-width: 5px;
	}

	.hero__seal strong {
		font-size: 21px;
	}

	.hero__seal span {
		font-size: 9px;
	}

	.hero__note {
		right: 14px;
		bottom: 18px;
		left: 14px;
		min-width: 0;
		padding: 13px 15px;
	}

	.hero__note-icon {
		width: 34px;
		height: 34px;
	}

	.stats-wrap {
		width: 100%;
		margin-top: 0;
		margin-bottom: 0;
		transform: none;
	}

	.stats {
		border-radius: 0;
		box-shadow: none;
	}

	.stats div {
		padding: 16px;
	}

	.stats strong {
		font-size: 18px;
	}

	.section,
	.services {
		padding: 82px 0;
	}

	.section-heading h2,
	.process h2,
	.locations h2,
	.contact h2 {
		font-size: clamp(41px, 12vw, 55px);
	}

	.section-heading--split {
		margin-bottom: 32px;
	}

	.section-heading--split > p {
		font-size: 16px;
	}

	.service-grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.service-card__media {
		height: 230px;
	}

	.service-card__body {
		padding: 24px 22px 23px;
	}

	.service-card h3 {
		font-size: 25px;
	}

	.service-card__body > p:not(.service-tag) {
		min-height: 0;
		font-size: 14px;
	}

	.process__grid,
	.locations__grid,
	.contact__grid {
		gap: 44px;
	}

	.process-step {
		grid-template-columns: 54px 1fr;
		gap: 15px;
		padding: 27px 0;
	}

	.process-step > span {
		width: 50px;
		height: 50px;
		font-size: 11px;
	}

	.process-step h3 {
		margin-top: 0;
		font-size: 23px;
	}

	.process-step p {
		font-size: 14px;
	}

	.emergency {
		padding: 34px 0;
	}

	.emergency__inner {
		grid-template-columns: 1fr;
		gap: 19px;
	}

	.emergency__icon {
		width: 70px;
		height: 70px;
	}

	.emergency .button {
		grid-column: auto;
		width: 100%;
	}

	.city-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 8px;
	}

	.city-grid a {
		min-height: 54px;
		padding: 10px 13px;
	}

	.contact__direct {
		grid-template-columns: 1fr;
	}

	.call-card {
		padding: 30px 20px;
		border-radius: 23px;
	}

	.call-card__number {
		font-size: clamp(34px, 10.5vw, 46px);
	}

	.call-card__fact {
		grid-template-columns: 38px 1fr;
		gap: 12px;
	}

	.site-footer__grid {
		grid-template-columns: 1fr;
		gap: 42px;
		padding-top: 62px;
		padding-bottom: 48px;
	}

	.footer-brand {
		grid-column: auto;
	}

	.site-footer__bottom {
		display: grid;
		gap: 7px;
		padding-bottom: 25px;
	}

	.mobile-actions {
		position: fixed;
		right: 0;
		bottom: 0;
		left: 0;
		z-index: 100;
		display: grid;
		grid-template-columns: 1fr 1fr;
		min-height: 66px;
		padding: 8px;
		background: rgba(7, 31, 53, 0.97);
		box-shadow: 0 -12px 30px rgba(7, 31, 53, 0.18);
		backdrop-filter: blur(12px);
	}

	.mobile-actions a {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 8px;
		color: var(--white);
		font-size: 13px;
		font-weight: 800;
		border-radius: 10px;
	}

	.mobile-actions a:last-child {
		color: var(--forest-deep);
		background: var(--lime);
	}

	.legal-page {
		padding: 70px 0 85px;
	}

	.legal-page h1 {
		margin-bottom: 30px;
		font-size: 47px;
	}

	.reveal,
	.reveal--delay {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}

	.reveal {
		opacity: 1;
		transform: none;
	}
}
