*,
*::before,
*::after {
	box-sizing: border-box;
}

:root {
	--north-white: #ffffff;
	--north-bg: #f7f8f9;
	--north-bg-soft: #eef3f7;
	--north-text: #142235;
	--north-muted: #5f6873;
	--north-blue: #0867a8;
	--north-blue-dark: #064b7b;
	--north-border: #dfe4e8;
	--north-star: #f5a623;

	--north-container: 1400px;
	--north-radius-sm: 4px;
	--north-radius-md: 8px;
	--north-radius-lg: 12px;

	--north-header-utility: 64px;
	--north-header-nav: 48px;
	--north-header-height: calc(var(--north-header-utility) + var(--north-header-nav));
	--north-preview-bar-h: 2.15rem;
	--north-header-offset: calc(var(--north-preview-bar-h) + var(--north-header-height));

	--north-transition: 250ms ease;
	--north-font: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	--north-shadow-soft: 0 8px 24px rgba(20, 34, 53, 0.08);
}

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
	scroll-padding-top: calc(var(--north-header-offset) + 8px);
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}

body {
	margin: 0;
	min-width: 0;
	font-family: var(--north-font);
	background: var(--north-white);
	color: var(--north-text);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body.menu-open {
	overflow: hidden;
}

img,
picture,
svg,
video,
canvas {
	display: block;
	max-width: 100%;
	height: auto;
}

img {
	max-width: 100%;
	height: auto;
}

button,
input,
select,
textarea {
	font: inherit;
}

a {
	color: inherit;
	text-decoration: none;
}

ul,
ol {
	margin: 0;
	padding: 0;
	list-style: none;
}

h1,
h2,
h3,
h4 {
	margin: 0;
	color: var(--north-text);
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -0.02em;
}

p {
	margin: 0;
}

:focus-visible {
	outline: 2px solid var(--north-blue);
	outline-offset: 2px;
}

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	background-color: var(--north-white);
	clip: auto !important;
	clip-path: none;
	color: var(--north-blue);
	display: block;
	font-size: 1em;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}

.north-container {
	width: min(calc(100% - 64px), var(--north-container));
	margin-inline: auto;
}

.north-eyebrow {
	margin: 0 0 0.75rem;
	color: var(--north-blue);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.north-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	min-height: 46px;
	padding: 0.7rem 1.25rem;
	border: 1.5px solid transparent;
	border-radius: var(--north-radius-sm);
	font-size: 0.95rem;
	font-weight: 600;
	line-height: 1;
	cursor: pointer;
	transition: background-color var(--north-transition), color var(--north-transition), border-color var(--north-transition), transform var(--north-transition);
}

.north-btn__arrow {
	display: inline-block;
	transition: transform var(--north-transition);
}

.north-btn:hover .north-btn__arrow {
	transform: translateX(3px);
}

.north-btn--primary {
	background: var(--north-blue);
	color: var(--north-white);
}

.north-btn--primary:hover {
	background: var(--north-blue-dark);
}

.north-btn--outline {
	background: var(--north-white);
	border-color: var(--north-text);
	color: var(--north-text);
}

.north-btn--outline:hover {
	border-color: var(--north-blue);
	color: var(--north-blue);
}

.north-btn--sm {
	min-height: 40px;
	padding: 0.55rem 0.9rem;
	font-size: 0.875rem;
}

.north-text-link {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	color: var(--north-blue);
	font-weight: 600;
	transition: color var(--north-transition);
}

.north-text-link:hover {
	color: var(--north-blue-dark);
}

.north-text-link span {
	display: inline-block;
	transition: transform var(--north-transition);
}

.north-text-link:hover span {
	transform: translateX(3px);
}

.north-checklist {
	display: grid;
	gap: 0.65rem;
	margin: 1.25rem 0 0;
}

.north-checklist li {
	position: relative;
	padding-left: 1.7rem;
	color: var(--north-text);
	font-weight: 500;
}

.north-checklist li::before {
	content: "✓";
	position: absolute;
	left: 0;
	top: 0;
	width: 1.15rem;
	height: 1.15rem;
	border-radius: 50%;
	background: rgba(8, 103, 168, 0.12);
	color: var(--north-blue);
	font-size: 0.75rem;
	font-weight: 700;
	line-height: 1.15rem;
	text-align: center;
}

.north-icon {
	flex-shrink: 0;
	color: var(--north-blue);
}

.north-img-placeholder {
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
	min-height: 180px;
	background: linear-gradient(135deg, #e8eef3, #f7f8f9);
	border: 1px dashed var(--north-border);
	color: var(--north-muted);
	font-size: 0.875rem;
	font-weight: 500;
	text-align: center;
	padding: 1rem;
}

.section {
	padding: 80px 0;
}

.section-header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 2rem;
	margin-bottom: 2.5rem;
}

.section-header__copy {
	max-width: 640px;
}

.section-header__copy h2 {
	font-size: clamp(1.75rem, 2.4vw, 2.35rem);
}

.section-header__aside {
	max-width: 320px;
	color: var(--north-muted);
}

.section-header__aside p {
	margin-bottom: 0.75rem;
}

.section-header__aside--end {
	align-self: flex-end;
	text-align: right;
}

/* ---------- Header ---------- */

.north-header-stack {
	position: sticky;
	top: 0;
	z-index: 1000;
}

@media screen and (min-width: 601px) {
	body.admin-bar {
		--north-header-offset: calc(var(--wp-admin--admin-bar--height, 32px) + var(--north-preview-bar-h) + var(--north-header-height));
	}

	body.admin-bar .north-header-stack {
		top: var(--wp-admin--admin-bar--height, 32px);
	}
}

.preview-bar {
	background: #e9674f;
	color: #fff;
	font-family: var(--north-font);
	font-size: 0.72rem;
	letter-spacing: 0.04em;
	line-height: 1.2;
	margin: 0;
}

.preview-bar__inner {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 0.75rem;
	min-height: var(--north-preview-bar-h);
}

.preview-bar a {
	color: #fff;
	text-decoration: none;
	transition: opacity 0.2s ease, color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.preview-bar a:hover {
	color: #fff;
	opacity: 0.82;
}

.preview-bar a:focus-visible {
	color: #fff;
	opacity: 1;
	outline: 2px solid #fff;
	outline-offset: 2px;
}

.preview-bar a.preview-bar__cta:hover,
.preview-bar a.preview-bar__cta:focus-visible {
	background: #fff;
	border-color: #fff;
	color: #e9674f;
	opacity: 1;
}

.preview-bar a.preview-bar__cta:hover *,
.preview-bar a.preview-bar__cta:focus-visible * {
	color: inherit;
}

.preview-bar__back {
	justify-self: start;
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	opacity: 0.88;
}

.preview-bar__arrow {
	font-size: 0.85em;
	line-height: 1;
}

.preview-bar__credit {
	justify-self: center;
	text-align: center;
	white-space: nowrap;
	opacity: 0.92;
}

.preview-bar__brand {
	font-weight: 600;
	letter-spacing: 0.06em;
}

.preview-bar__cta {
	justify-self: end;
	display: inline-flex;
	align-items: center;
	min-height: 1.55rem;
	padding: 0.2rem 0.7rem;
	border: 1px solid rgba(255, 255, 255, 0.35);
	font-weight: 500;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	font-size: 0.64rem;
	white-space: nowrap;
}

.preview-bar__back-short,
.preview-bar__credit-short,
.preview-bar__cta-short {
	display: none;
}

@media (max-width: 1023px) {
	.preview-bar__back-full,
	.preview-bar__credit-full,
	.preview-bar__cta-full {
		display: none;
	}

	.preview-bar__back-short,
	.preview-bar__credit-short,
	.preview-bar__cta-short {
		display: inline;
	}

	.preview-bar {
		font-size: 0.68rem;
	}

	.preview-bar__cta {
		padding: 0.18rem 0.55rem;
		font-size: 0.6rem;
	}
}

@media (max-width: 640px) {
	.preview-bar__inner {
		gap: 0.4rem;
	}

	.preview-bar__back-short {
		display: none;
	}
}

.site-header {
	position: relative;
	z-index: 1;
	background: rgba(255, 255, 255, 0.97);
	border-bottom: 1px solid transparent;
	backdrop-filter: blur(8px);
	transition: box-shadow var(--north-transition), border-color var(--north-transition);
}

.site-header.is-scrolled {
	border-bottom-color: var(--north-border);
	box-shadow: 0 4px 18px rgba(20, 34, 53, 0.06);
}

.site-logo {
	display: inline-flex;
	align-items: center;
	line-height: 0;
	flex-shrink: 0;
}

.site-logo__image {
	display: block;
	width: auto;
	height: 44px;
	max-width: 180px;
	object-fit: contain;
}

.site-footer .site-logo__image {
	height: 48px;
	max-width: 200px;
}

.header-utility {
	border-bottom: 1px solid var(--north-border);
}

.header-utility__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.25rem;
	min-height: var(--north-header-utility);
}

.header-services {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.55rem;
	color: var(--north-muted);
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.header-services__sep {
	color: var(--north-border);
}

.header-utility__right {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.header-phone {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 0.1rem;
}

.header-phone__link {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	color: var(--north-text);
	font-weight: 700;
	font-size: 0.95rem;
}

.header-phone__link .north-icon {
	color: var(--north-blue);
}

.header-phone__hours {
	color: var(--north-muted);
	font-size: 0.72rem;
}

.header-mobile-actions {
	display: none;
	align-items: center;
	gap: 0.55rem;
}

.menu-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	padding: 0;
	border: 1px solid var(--north-border);
	border-radius: var(--north-radius-sm);
	background: var(--north-white);
	cursor: pointer;
}

.menu-toggle__bars,
.menu-toggle__bars::before,
.menu-toggle__bars::after {
	display: block;
	width: 18px;
	height: 2px;
	background: var(--north-text);
	border-radius: 2px;
}

.menu-toggle__bars {
	position: relative;
}

.menu-toggle__bars::before,
.menu-toggle__bars::after {
	content: "";
	position: absolute;
	left: 0;
}

.menu-toggle__bars::before {
	top: -6px;
}

.menu-toggle__bars::after {
	top: 6px;
}

.header-nav__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: var(--north-header-nav);
}

.primary-nav__list {
	display: flex;
	align-items: center;
	gap: 1.5rem;
}

.primary-nav__list a {
	color: var(--north-text);
	font-size: 0.95rem;
	font-weight: 500;
	transition: color var(--north-transition);
}

.primary-nav__list a:hover {
	color: var(--north-blue);
}

.header-badges {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	color: var(--north-muted);
	font-size: 0.85rem;
	font-weight: 500;
}

.header-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
}

.header-badges__sep {
	color: var(--north-border);
}

/* ---------- Mobile nav ---------- */

.mobile-nav {
	position: fixed;
	inset: 0;
	z-index: 2000;
	height: 100dvh;
	background: var(--north-white);
	overflow-y: auto;
}

.mobile-nav[hidden] {
	display: none;
}

.mobile-nav__panel {
	display: flex;
	flex-direction: column;
	min-height: 100%;
	padding: 1.25rem 1.25rem 2rem;
}

.mobile-nav__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 2rem;
}

.mobile-nav__close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border: 1px solid var(--north-border);
	border-radius: var(--north-radius-sm);
	background: var(--north-white);
	color: var(--north-text);
	cursor: pointer;
}

.mobile-nav__list {
	display: grid;
	gap: 0.25rem;
}

.mobile-nav__list a {
	display: block;
	padding: 0.9rem 0;
	border-bottom: 1px solid var(--north-border);
	font-size: 1.25rem;
	font-weight: 600;
}

.mobile-nav__footer {
	margin-top: auto;
	padding-top: 2rem;
	display: grid;
	gap: 1rem;
}

.mobile-nav__phone {
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--north-blue);
}

/* ---------- Hero ---------- */

.hero {
	position: relative;
	isolation: isolate;
	display: flex;
	align-items: center;
	width: 100%;
	max-width: none;
	min-height: clamp(580px, 68vh, 700px);
	margin: 0;
	padding: 56px 0;
	overflow: hidden;
	background-color: var(--north-white);
	background-image: var(--north-hero-image);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 55% center;
}

.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background: linear-gradient(
		90deg,
		rgba(255, 255, 255, 1) 0%,
		rgba(255, 255, 255, 0.98) 24%,
		rgba(255, 255, 255, 0.92) 36%,
		rgba(255, 255, 255, 0.55) 48%,
		rgba(255, 255, 255, 0.12) 60%,
		rgba(255, 255, 255, 0) 70%
	);
}

.hero__inner {
	position: relative;
	z-index: 1;
	display: block;
}

.hero__content {
	position: relative;
	z-index: 1;
	max-width: min(52%, 720px);
}

.hero__content h1 {
	font-size: clamp(2rem, 3.4vw, 3.15rem);
	max-width: none;
}

.hero__intro {
	margin-top: 1.1rem;
	max-width: 42rem;
	color: var(--north-muted);
	font-size: 1.05rem;
}

.north-hero__mobile-break {
	display: none;
}

.north-hero__no-job {
	display: inline;
	white-space: normal;
}

.hero__checklist {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	column-gap: 32px;
	row-gap: 12px;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 1.75rem;
}

.hero-review-card {
	position: absolute;
	right: max(32px, calc((100% - min(100% - 64px, var(--north-container))) / 2));
	bottom: 1.5rem;
	z-index: 2;
	width: min(210px, calc(100% - 64px));
	padding: 0.85rem 1rem;
	background: rgba(255, 255, 255, 0.96);
	border: 1px solid var(--north-border);
	border-radius: var(--north-radius-md);
	box-shadow: var(--north-shadow-soft);
}

.hero-review-card__stars {
	color: var(--north-star);
	letter-spacing: 0.08em;
	font-size: 0.95rem;
	line-height: 1;
}

.hero-review-card__score {
	margin-top: 0.35rem;
	font-size: 0.9rem;
	font-weight: 700;
}

.hero-review-card__note {
	margin-top: 0.15rem;
	color: var(--north-muted);
	font-size: 0.8rem;
}

/* ---------- Trust strip ---------- */

.trust-strip {
	padding: 1.35rem 0;
	margin-top: 0;
	background: var(--north-bg);
	border-top: 1px solid var(--north-border);
	border-bottom: 1px solid var(--north-border);
}

.trust-strip__list {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1rem;
}

.trust-strip__list li {
	display: flex;
	align-items: center;
	gap: 0.7rem;
	font-size: 0.92rem;
	font-weight: 600;
}

/* ---------- Services ---------- */

.services {
	background: var(--north-white);
}

.services__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.25rem;
}

.service-card {
	display: flex;
	flex-direction: column;
	min-width: 0;
	padding: 0.85rem;
	background: var(--north-white);
	border: 1px solid var(--north-border);
	border-radius: var(--north-radius-md);
	cursor: pointer;
}

.service-card__media {
	overflow: hidden;
	border-radius: var(--north-radius-sm);
	aspect-ratio: 4 / 3;
	background: var(--north-bg);
}

.service-card__image,
.service-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 350ms ease;
}

.service-card:hover .service-card__image,
.service-card:hover .service-card__media img {
	transform: scale(1.025);
}

.service-card h3 {
	margin-top: 0.95rem;
	font-size: 1.05rem;
}

.service-card p {
	margin: 0.45rem 0 0.85rem;
	color: var(--north-muted);
	font-size: 0.95rem;
	flex-grow: 1;
}

/* ---------- About ---------- */

.about {
	background: var(--north-bg);
}

.about__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 3rem;
	align-items: center;
}

.about__media {
	overflow: hidden;
	border-radius: var(--north-radius-lg);
	aspect-ratio: 4 / 3;
	background: var(--north-white);
}

.about__image,
.about__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.about__content h2 {
	font-size: clamp(1.75rem, 2.5vw, 2.4rem);
	max-width: 14ch;
}

.about__content > p {
	margin-top: 1rem;
	color: var(--north-muted);
	max-width: 46ch;
}

.about__content .north-btn {
	margin-top: 1.5rem;
}

.about-trust {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem 1.25rem;
	margin-top: 2rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--north-border);
}

.about-trust li {
	display: flex;
	align-items: flex-start;
	gap: 0.65rem;
	font-size: 0.92rem;
	font-weight: 600;
}

/* ---------- Projects ---------- */

.projects {
	background: var(--north-white);
}

.projects__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1.25rem;
}

.project-card {
	min-width: 0;
	cursor: pointer;
}

.project-card__media {
	overflow: hidden;
	border-radius: var(--north-radius-md);
	aspect-ratio: 4 / 3;
	background: var(--north-bg);
}

.project-card__image,
.project-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 350ms ease;
}

.project-card:hover .project-card__image,
.project-card:hover .project-card__media img {
	transform: scale(1.025);
}

.project-card h3 {
	margin-top: 0.85rem;
	font-size: 1rem;
}

.project-card p {
	margin-top: 0.2rem;
	color: var(--north-muted);
	font-size: 0.9rem;
}

/* ---------- Reviews ---------- */

.reviews {
	background: var(--north-bg);
}

.reviews__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.25rem;
}

.review-card {
	display: flex;
	flex-direction: column;
	min-width: 0;
	padding: 1.5rem;
	background: var(--north-white);
	border: 1px solid var(--north-border);
	border-radius: var(--north-radius-md);
}

.review-card__stars {
	color: var(--north-star);
	letter-spacing: 0.08em;
	font-size: 1rem;
	line-height: 1;
}

.review-card__quote {
	margin: 1rem 0 1.25rem;
	color: var(--north-text);
	font-size: 0.98rem;
	flex-grow: 1;
}

.review-card cite {
	display: block;
	font-style: normal;
}

.review-card__name {
	display: block;
	font-weight: 700;
}

.review-card__location {
	color: var(--north-muted);
	font-size: 0.9rem;
}

/* ---------- Coverage ---------- */

.coverage {
	background: var(--north-bg-soft);
}

.coverage__inner {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	gap: 2.5rem;
	align-items: center;
}

.coverage__content h2 {
	font-size: clamp(1.75rem, 2.5vw, 2.4rem);
	max-width: 14ch;
}

.coverage__content > p {
	margin-top: 1rem;
	color: var(--north-muted);
	max-width: 48ch;
}

.coverage__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1rem;
	margin-top: 1.5rem;
}

.coverage__media {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 1.25rem;
	align-items: center;
	min-width: 0;
}

.coverage__image-wrap {
	overflow: hidden;
	border-radius: var(--north-radius-lg);
	aspect-ratio: 16 / 11;
	background: var(--north-white);
}

.coverage__image,
.coverage__image-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.coverage-checklist {
	display: grid;
	gap: 0.7rem;
	padding: 1rem 0;
}

.coverage-checklist li {
	position: relative;
	padding-left: 1.6rem;
	font-weight: 600;
	white-space: nowrap;
}

.coverage-checklist li::before {
	content: "✓";
	position: absolute;
	left: 0;
	top: 0;
	color: var(--north-blue);
	font-weight: 700;
}

/* ---------- Contact ---------- */

.contact {
	background: var(--north-white);
}

.contact__inner {
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.25fr) auto;
	gap: 2.5rem;
	align-items: start;
}

.contact__intro h2 {
	font-size: clamp(1.75rem, 2.5vw, 2.4rem);
	max-width: 12ch;
}

.contact__intro > p {
	margin-top: 1rem;
	color: var(--north-muted);
	max-width: 36ch;
}

.contact-details {
	display: grid;
	gap: 0.9rem;
	margin-top: 1.75rem;
}

.contact-details li {
	display: flex;
	align-items: center;
	gap: 0.7rem;
	font-weight: 600;
}

.contact-details a:hover {
	color: var(--north-blue);
}

.contact-form {
	display: grid;
	gap: 1rem;
}

.contact-form__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

.form-field {
	display: grid;
	gap: 0.4rem;
}

.form-field label {
	font-size: 0.9rem;
	font-weight: 600;
}

.form-field input,
.form-field textarea {
	width: 100%;
	padding: 0.8rem 0.9rem;
	border: 1px solid var(--north-border);
	border-radius: var(--north-radius-sm);
	background: var(--north-white);
	color: var(--north-text);
	transition: border-color var(--north-transition);
}

.form-field input:focus,
.form-field textarea:focus {
	outline: none;
	border-color: var(--north-blue);
	box-shadow: 0 0 0 3px rgba(8, 103, 168, 0.12);
}

.form-field textarea {
	resize: vertical;
	min-height: 140px;
}

.hp-field {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.contact-form__submit {
	justify-self: start;
	min-width: 180px;
}

.form-status {
	margin-bottom: 1rem;
	padding: 0.9rem 1rem;
	border-radius: var(--north-radius-sm);
	font-weight: 600;
}

.form-status[hidden] {
	display: none;
}

.form-status.is-success {
	background: #e8f6ee;
	color: #146c43;
	border: 1px solid #b7e0c5;
}

.form-status.is-error {
	background: #fdecee;
	color: #a11a2c;
	border: 1px solid #f1b4bc;
}

.contact-benefits {
	display: grid;
	gap: 1.25rem;
	padding-top: 0.5rem;
}

.contact-benefits li {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.55rem;
	font-weight: 600;
	font-size: 0.95rem;
}

/* ---------- Footer ---------- */

.site-footer {
	padding: 2.5rem 0 1.5rem;
	background: var(--north-white);
	border-top: 1px solid var(--north-border);
}

.site-footer__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	padding-bottom: 1.5rem;
	border-bottom: 1px solid var(--north-border);
}

.footer-nav__list {
	display: flex;
	flex-wrap: wrap;
	gap: 1.25rem;
}

.footer-nav__list a {
	font-weight: 500;
	transition: color var(--north-transition);
}

.footer-nav__list a:hover {
	color: var(--north-blue);
}

.footer-social {
	display: flex;
	gap: 0.6rem;
}

.footer-social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border: 1px solid var(--north-border);
	border-radius: 50%;
	color: var(--north-text);
	transition: color var(--north-transition), border-color var(--north-transition);
}

.footer-social a:hover {
	color: var(--north-blue);
	border-color: var(--north-blue);
}

.site-footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding-top: 1.25rem;
	color: var(--north-muted);
	font-size: 0.875rem;
}

.site-footer__bottom a {
	font-weight: 600;
	color: var(--north-muted);
	text-decoration: underline;
	text-underline-offset: 2px;
}

.site-footer__bottom a:hover {
	color: var(--north-blue);
}

/* ---------- Responsive ---------- */

@media (max-width: 1366px) {
	.services__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 1200px) {
	.hero__content {
		max-width: min(54%, 680px);
	}

	.hero::before {
		background: linear-gradient(
			90deg,
			rgba(255, 255, 255, 1) 0%,
			rgba(255, 255, 255, 0.98) 28%,
			rgba(255, 255, 255, 0.9) 42%,
			rgba(255, 255, 255, 0.5) 54%,
			rgba(255, 255, 255, 0.1) 64%,
			rgba(255, 255, 255, 0) 74%
		);
	}

	.coverage__inner {
		gap: 2rem;
	}

	.contact__inner {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
	}

	.contact-benefits {
		grid-column: 1 / -1;
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 1100px) {
	.header-services {
		display: none;
	}

	.projects__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 1024px) {
	.north-container {
		width: min(calc(100% - 48px), var(--north-container));
	}

	.section {
		padding: 70px 0;
	}

	.hero {
		min-height: clamp(560px, 64vh, 680px);
		background-position: 60% center;
	}

	.hero__content {
		max-width: min(58%, 640px);
	}

	.hero::before {
		background: linear-gradient(
			90deg,
			rgba(255, 255, 255, 1) 0%,
			rgba(255, 255, 255, 0.98) 34%,
			rgba(255, 255, 255, 0.88) 48%,
			rgba(255, 255, 255, 0.4) 60%,
			rgba(255, 255, 255, 0) 72%
		);
	}

	.hero-review-card {
		right: max(1.25rem, calc((100% - min(calc(100% - 48px), var(--north-container))) / 2));
	}

	.about__inner,
	.coverage__inner {
		grid-template-columns: 1fr 1fr;
		gap: 1.75rem;
	}

	.services__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.reviews__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.reviews__grid .review-card:last-child {
		grid-column: 1 / -1;
		max-width: 100%;
	}

	.coverage__media {
		grid-template-columns: 1fr;
	}

	.coverage-checklist {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.coverage-checklist li {
		white-space: normal;
	}
}

@media (max-width: 900px) {
	.header-nav {
		display: none;
	}

	.header-utility__right {
		display: none;
	}

	.header-mobile-actions {
		display: flex;
	}

	:root {
		--north-header-height: var(--north-header-utility);
	}
}

@media (max-width: 768px) {
	.north-container {
		width: min(calc(100% - 40px), var(--north-container));
	}

	.section {
		padding: 55px 0;
	}

	.section-header {
		flex-direction: column;
		align-items: flex-start;
	}

	.section-header__aside,
	.section-header__aside--end {
		max-width: none;
		text-align: left;
	}

	.hero {
		flex-direction: column;
		align-items: center;
		justify-content: flex-start;
		min-height: auto;
		padding: 28px 0 36px;
		background-position: 72% 18%;
	}

	.hero::before {
		background: linear-gradient(
			180deg,
			rgba(255, 255, 255, 0.88) 0%,
			rgba(255, 255, 255, 0.90) 35%,
			rgba(255, 255, 255, 0.92) 70%,
			rgba(255, 255, 255, 0.96) 100%
		);
	}

	.hero__inner {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: flex-start;
		text-align: center;
	}

	.hero__content {
		max-width: 34rem;
		width: 100%;
		margin-inline: auto;
		padding-top: 0;
		text-align: center;
	}

	.hero__content h1 {
		max-width: none;
	}

	.hero__intro {
		margin-inline: auto;
		text-align: center;
	}

	.hero__intro .north-desktop-break,
	.hero__intro br,
	.north-hero__mobile-break {
		display: none;
	}

	.north-hero__no-job {
		display: block;
		white-space: nowrap;
	}

	.hero__checklist {
		justify-items: center;
	}

	.hero__checklist li {
		display: flex;
		align-items: center;
		justify-content: center;
		padding-left: 0;
		gap: 0.55rem;
		text-align: left;
	}

	.hero__checklist li::before {
		position: static;
		flex-shrink: 0;
	}

	.hero__actions {
		width: 100%;
		justify-content: center;
	}

	.hero-review-card {
		position: relative;
		inset: auto;
		right: auto;
		bottom: auto;
		left: auto;
		display: block;
		flex-shrink: 0;
		align-self: center;
		width: fit-content;
		max-width: min(100%, 240px);
		margin: 24px auto 0;
		text-align: center;
	}

	.about__inner,
	.coverage__inner,
	.contact__inner {
		grid-template-columns: 1fr;
	}

	.trust-strip {
		margin-top: 0;
	}

	.trust-strip__list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 1rem 0.75rem;
	}

	.about__media {
		order: -1;
	}

	.reviews__grid,
	.contact-benefits {
		grid-template-columns: 1fr;
	}

	.reviews__grid .review-card:last-child {
		grid-column: auto;
	}

	.contact-form__row {
		grid-template-columns: 1fr;
	}

	.contact-benefits {
		justify-items: center;
		justify-content: center;
		align-items: center;
		gap: 0.75rem;
		padding-top: 1rem;
		text-align: center;
	}

	.contact-benefits li {
		flex-direction: row;
		align-items: center;
		justify-content: center;
		gap: 0.5rem;
		width: fit-content;
		max-width: 100%;
		text-align: left;
	}

	.site-footer {
		text-align: center;
	}

	.site-footer__top,
	.site-footer__bottom {
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 1.5rem;
		text-align: center;
	}

	.site-footer .site-logo {
		display: flex;
		justify-content: center;
	}

	.site-footer .site-logo__image {
		display: block;
		margin-inline: auto;
		height: 42px;
		max-width: 170px;
	}

	.footer-nav {
		width: 100%;
	}

	.footer-nav__list {
		justify-content: center;
		gap: 0.85rem 1.1rem;
	}

	.footer-social {
		justify-content: center;
	}

	.site-footer__bottom {
		gap: 0.65rem;
	}

	.site-footer__bottom p {
		margin: 0;
	}
}

@media (max-width: 600px) {
	.services__grid {
		display: flex;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		gap: 0.9rem;
		padding-bottom: 0.35rem;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
	}

	.services__grid::-webkit-scrollbar {
		display: none;
	}

	.service-card {
		flex: 0 0 min(82vw, 300px);
		scroll-snap-align: start;
	}

	.projects__grid {
		grid-template-columns: 1fr 1fr;
		gap: 0.9rem;
	}

	.hero__actions {
		flex-direction: column;
		align-items: center;
	}

	.hero__actions .north-btn {
		width: min(100%, 280px);
	}

	.hero__checklist {
		grid-template-columns: 1fr;
		row-gap: 0.65rem;
	}

	.coverage-checklist {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 480px) {
	.north-container {
		width: min(calc(100% - 36px), var(--north-container));
	}

	.header-mobile-actions .north-btn--sm {
		padding-inline: 0.7rem;
		font-size: 0.8rem;
	}

	.hero {
		min-height: auto;
		background-position: 78% 12%;
	}

	.hero__content {
		padding-top: 0;
	}

	.hero-review-card {
		width: min(100%, 240px);
		margin-inline: auto;
		padding: 0.7rem 0.85rem;
	}

	.trust-strip__list {
		grid-template-columns: 1fr;
	}

	.projects__grid {
		grid-template-columns: 1fr;
	}

	.about-trust {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 375px) {
	.north-container {
		width: min(calc(100% - 32px), var(--north-container));
	}

	.section {
		padding: 48px 0;
	}

	.header-mobile-actions .north-btn--sm span {
		display: none;
	}
}

@media (min-width: 1440px) {
	.services__grid {
		grid-template-columns: repeat(6, minmax(0, 1fr));
	}

	.service-card h3 {
		font-size: 0.98rem;
	}

	.service-card p {
		font-size: 0.88rem;
	}
}

/* ---------- Demo modal ---------- */

.north-demo-modal {
	position: fixed;
	inset: 0;
	z-index: 10000;
	display: grid;
	place-items: center;
	padding: 16px;
	min-height: 100dvh;
}

.north-demo-modal[hidden] {
	display: none !important;
}

.north-demo-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(20, 34, 53, 0.55);
}

.north-demo-modal__dialog {
	position: relative;
	z-index: 1;
	width: min(100%, 580px);
	max-height: calc(100dvh - 32px);
	overflow-x: hidden;
	overflow-y: auto;
	padding: 2rem 2rem 1.75rem;
	background: var(--north-white);
	color: var(--north-text);
	border: 1px solid var(--north-border);
	border-radius: var(--north-radius-lg);
	box-shadow: var(--north-shadow-soft);
}

.north-demo-modal__close {
	position: absolute;
	top: 0.65rem;
	right: 0.65rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.25rem;
	height: 2.25rem;
	padding: 0;
	border: 0;
	border-radius: var(--north-radius-sm);
	background: transparent;
	color: var(--north-muted);
	font-size: 1.6rem;
	line-height: 1;
	cursor: pointer;
	transition: color var(--north-transition), background-color var(--north-transition);
}

.north-demo-modal__close:hover,
.north-demo-modal__close:focus-visible {
	color: var(--north-text);
	background: var(--north-bg);
}

.north-demo-modal__eyebrow {
	margin: 0 0 0.55rem;
	color: var(--north-blue);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.north-demo-modal__heading {
	margin: 0 0 0.85rem;
	font-size: 1.55rem;
	line-height: 1.25;
	color: var(--north-text);
}

.north-demo-modal__body {
	margin: 0 0 0.85rem;
	color: var(--north-muted);
	font-size: 0.98rem;
	line-height: 1.55;
}

.north-demo-modal__body:last-of-type {
	margin-bottom: 1.35rem;
}

.north-demo-modal__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	align-items: center;
}

body.demo-modal-open {
	overflow: hidden;
}

@media (max-width: 768px) {
	.north-demo-modal {
		padding: 16px;
	}

	.north-demo-modal__dialog {
		width: calc(100% - 32px);
		max-width: 560px;
		padding: 1.5rem 1.35rem 1.35rem;
	}

	.north-demo-modal__heading {
		font-size: 1.3rem;
		padding-right: 1.75rem;
	}

	.north-demo-modal__actions {
		flex-direction: column;
		align-items: stretch;
	}

	.north-demo-modal__actions .north-btn {
		justify-content: center;
		width: 100%;
	}
}

