.site-header {
	position: relative;
	z-index: 20;
	background: #ffffff;
}

html,
body {
	margin: 0;
	padding: 0;
}

body {
	background: #000000;
}

.site {
	margin: 0;
	padding: 0;
}

.site-main {
	margin-bottom: 0;
	padding-bottom: 0;
}

.site-header__top {
	background: #090909;
	color: #ffffff;
}

.site-header__top-inner {
	width: min(
		100% - (var(--site-gutter) * 2),
		var(--site-width)
	);
	margin-inline: auto;

	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 112px;
	gap: 40px;
}

.site-brand {
	display: flex;
	align-items: center;
	flex-shrink: 0;
}

.site-brand .custom-logo-link {
	display: inline-flex;
	align-items: center;
}

.site-brand .custom-logo {
	display: block;
	width: auto;
	max-width: 260px;
	max-height: 70px;
	height: auto;
}

.site-brand__fallback {
	color: #f29a18;
	font-size: 1.5rem;
	font-weight: 900;
	font-style: italic;
	text-transform: uppercase;
	text-decoration: none;
}

.site-header__trust {
	display: flex;
	align-items: center;
	gap: clamp(30px, 5vw, 70px);
}

.header-trust-item {
	display: flex;
	align-items: center;
	gap: 13px;
}

.header-trust-item__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #f5b52e;
}

.header-trust-item__text {
	display: flex;
	flex-direction: column;
	line-height: 1.2;
}

.header-trust-item__text strong {
	font-size: 1rem;
	font-weight: 700;
}

.header-trust-item__text small {
	margin-top: 3px;
	font-size: 0.85rem;
	color: #a6a6a6;
}

.site-header__nav {
	background: #ffffff;
	border-bottom: 1px solid #ededed;
}

.site-header__nav-inner {
	width: min(
		100% - (var(--site-gutter) * 2),
		var(--site-width)
	);
	margin-inline: auto;

	display: flex;
	align-items: stretch;
	justify-content: space-between;
	min-height: 66px;
}

.site-navigation {
	display: flex;
	align-items: center;
}

.site-navigation__menu {
	display: flex;
	align-items: center;
	gap: clamp(24px, 3vw, 42px);
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-navigation__menu a {
	position: relative;
	display: inline-flex;
	align-items: center;
	min-height: 66px;
	font-size: 0.95rem;
	font-weight: 600;
	color: #555555;
	text-decoration: none;
	transition: color 0.2s ease;
}

.site-navigation__menu a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 3px;
	background: #f29a18;
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 0.2s ease;
}

.site-navigation__menu a:hover,
.site-navigation__menu a:focus-visible {
	color: #111111;
}

.site-navigation__menu a:hover::after,
.site-navigation__menu a:focus-visible::after,
.site-navigation__menu .current-menu-item > a::after {
	transform: scaleX(1);
}

.site-header__actions {
	display: flex;
	align-items: stretch;
	margin-left: 30px;
}

.site-search-button {
	display: grid;
	place-items: center;
	width: 64px;
	padding: 0;
	border: 0;
	background: transparent;
	color: #111111;
	cursor: pointer;
}

.site-search-button:hover,
.site-search-button:focus-visible {
	background: #f6f6f6;
}

.header-quote-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 170px;
	padding-inline: 28px;
	background: #f5b52e;
	color: #111111;
	font-size: 0.95rem;
	font-weight: 800;
	text-decoration: none;
	transition:
		background-color 0.2s ease,
		color 0.2s ease;
}

.header-quote-button:hover,
.header-quote-button:focus-visible {
	background: #111111;
	color: #ffffff;
}


/* Mobile menu button */

.site-menu-toggle {
	display: none;
	width: 52px;
	height: 52px;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.site-menu-toggle__line {
	display: block;
	width: 24px;
	height: 2px;
	margin: 5px auto;
	background: #111111;
	transition:
		transform 0.2s ease,
		opacity 0.2s ease;
}


/* Mobile navigation */

.site-mobile-navigation {
	background: #111111;
	border-bottom: 0;
}

.site-mobile-navigation[hidden] {
	display: none;
}

.site-mobile-navigation__inner {
	width: min(
		100% - 40px,
		var(--site-width)
	);
	margin-inline: auto;
	padding-block: 10px 24px;
}

.site-mobile-navigation__menu {
	display: flex;
	flex-direction: column;
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-mobile-navigation__menu li {
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.site-mobile-navigation__menu a {
	display: block;
	padding: 15px 2px;
	color: #ffffff;
	font-size: 1rem;
	font-weight: 700;
	text-decoration: none;
}

.site-mobile-navigation__menu a:hover,
.site-mobile-navigation__menu a:focus-visible {
	color: #f5b52e;
}

.site-mobile-navigation__quote,
.site-mobile-navigation__phone {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding-inline: 20px;
	font-weight: 800;
	text-align: center;
	text-decoration: none;
}

.site-mobile-navigation__quote {
	margin-top: 20px;
	background: #f5b52e;
	color: #111111;
}

.site-mobile-navigation__phone {
	margin-top: 10px;
	border: 1px solid #f5b52e;
	background: transparent;
	color: #ffffff;
}

.site-mobile-navigation__quote:hover,
.site-mobile-navigation__quote:focus-visible {
	background: #ffffff;
	color: #111111;
}

.site-mobile-navigation__phone:hover,
.site-mobile-navigation__phone:focus-visible {
	background: #f5b52e;
	color: #111111;
}


/* Mobile navigation */

.site-mobile-navigation {
	background: #ffffff;
	border-bottom: 1px solid #e8e8e8;
}

.site-mobile-navigation[hidden] {
	display: none;
}

.site-mobile-navigation__inner {
	width: min(
		100% - 40px,
		var(--site-width)
	);
	margin-inline: auto;
	padding-block: 10px 24px;
}

.site-mobile-navigation__menu {
	display: flex;
	flex-direction: column;
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-mobile-navigation__menu li {
	border-bottom: 1px solid #ededed;
}

.site-mobile-navigation__menu a {
	display: block;
	padding: 15px 2px;
	color: #111111;
	font-size: 1rem;
	font-weight: 700;
	text-decoration: none;
}

.site-mobile-navigation__menu a:hover,
.site-mobile-navigation__menu a:focus-visible {
	color: #f29a18;
}

.site-mobile-navigation__quote,
.site-mobile-navigation__phone {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding-inline: 20px;
	font-weight: 800;
	text-align: center;
	text-decoration: none;
}

.site-mobile-navigation__quote {
	margin-top: 20px;
	background: #f5b52e;
	color: #111111;
}

.site-mobile-navigation__phone {
	margin-top: 10px;
	border: 1px solid #111111;
	background: #ffffff;
	color: #111111;
}

.site-mobile-navigation__quote:hover,
.site-mobile-navigation__quote:focus-visible {
	background: #111111;
	color: #ffffff;
}

.site-mobile-navigation__phone:hover,
.site-mobile-navigation__phone:focus-visible {
	background: #111111;
	color: #ffffff;
}


/* Buttons */

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 0 22px;
	border: 1px solid transparent;
	text-decoration: none;
	font-weight: 700;
	transition:
		background-color 0.2s ease,
		color 0.2s ease,
		border-color 0.2s ease;
}

.button--primary {
	background: #111111;
	color: #ffffff;
}

.button--primary:hover,
.button--primary:focus-visible {
	background: #333333;
}

.button--secondary {
	border-color: #111111;
	background: transparent;
	color: #111111;
}

.button--secondary:hover,
.button--secondary:focus-visible {
	background: #111111;
	color: #ffffff;
}


/* Homepage hero */

.site-main--home {
	padding-block: 0;
}

.home-hero {
	position: relative;
	display: flex;
	align-items: center;
	height: 390px;
	min-height: 390px;
	overflow: hidden;
	background: #111111;
	color: #ffffff;
}

.home-hero__media {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.home-hero__image,
.home-hero__video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.home-hero__placeholder {
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
	background:
		linear-gradient(
			135deg,
			#353535,
			#111111
		);
	color: #777777;
}

.home-hero__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		linear-gradient(
			90deg,
			rgba(0, 0, 0, 0.78) 0%,
			rgba(0, 0, 0, 0.55) 45%,
			rgba(0, 0, 0, 0.18) 78%,
			rgba(0, 0, 0, 0.08) 100%
		);
}

.home-hero__inner {
	position: relative;
	z-index: 2;
	width: 100%;
	padding-inline: clamp(32px, 5vw, 80px);
	box-sizing: border-box;
}

.home-hero__content {
	max-width: 700px;
	padding-block: 48px;
}

.home-hero__eyebrow {
	margin: 0 0 12px;
	color: #f5b52e;
	font-size: 0.78rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.home-hero__title {
	max-width: 720px;
	margin: 0;
	color: #ffffff;
	font-size: clamp(2.2rem, 4vw, 3.8rem);
	font-weight: 800;
	line-height: 0.95;
	letter-spacing: -0.045em;
	text-wrap: balance;
}

.home-hero__text {
	max-width: 640px;
	margin: 18px 0 0;
	color: rgba(255, 255, 255, 0.88);
	font-size: 0.98rem;
	line-height: 1.45;
}

.home-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 22px;
}

.button--orange {
	background: #f5b52e;
	color: #111111;
}

.button--orange:hover,
.button--orange:focus-visible {
	background: #ffffff;
	color: #111111;
}

.button--hero-secondary {
	border-color: rgba(255, 255, 255, 0.72);
	background: rgba(0, 0, 0, 0.18);
	color: #ffffff;
	backdrop-filter: blur(4px);
}

.button--hero-secondary:hover,
.button--hero-secondary:focus-visible {
	border-color: #ffffff;
	background: #ffffff;
	color: #111111;
}


/* Homepage services */

.home-services {
	padding:
		clamp(60px, 6vw, 85px)
		clamp(28px, 5vw, 80px);
	background: #ffffff;
}

.home-services__intro {
	max-width: 760px;
	margin: 0 auto 38px;
	text-align: center;
}

.home-services__eyebrow {
	margin: 0 0 12px;
	color: #f29a18;
	font-size: 0.8rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.11em;
}

.home-services__title {
	margin: 0;
	color: #111111;
	font-size: clamp(2rem, 4vw, 3.5rem);
	line-height: 1.05;
	letter-spacing: -0.04em;
	text-wrap: balance;
}

.home-services__text {
	max-width: 680px;
	margin: 18px auto 0;
	color: #666666;
	font-size: 1rem;
	line-height: 1.7;
}

.home-services__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
	max-width: 1400px;
	margin-inline: auto;
}

.service-card {
	min-width: 0;
	background: #ffffff;
	border: 1px solid #ececec;
	overflow: hidden;
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease,
		border-color 0.25s ease;
}

.service-card:hover {
	transform: translateY(-5px);
	border-color: #e4e4e4;
	box-shadow:
		0 18px 40px
		rgba(0, 0, 0, 0.08);
}

.service-card__link {
	display: flex;
	flex-direction: column;
	height: 100%;
	color: inherit;
	text-decoration: none;
}

.service-card__media {
	position: relative;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: #111111;
}

.service-card__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.45s ease;
}

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

.service-card__fallback {
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
	background:
		linear-gradient(
			135deg,
			#111111,
			#2a2a2a
		);
	color: #f5b52e;
	font-size: 1.25rem;
	font-weight: 900;
	letter-spacing: 0.12em;
}

.service-card__content {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 24px;
}

.service-card__title {
	margin: 0;
	color: #111111;
	font-size: 1.3rem;
	line-height: 1.15;
	letter-spacing: -0.02em;
}

.service-card__text {
	margin: 14px 0 0;
	color: #666666;
	font-size: 0.94rem;
	line-height: 1.6;
}

.service-card__cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: auto;
	padding-top: 22px;
	color: #111111;
	font-size: 0.9rem;
	font-weight: 800;
}

.service-card__cta span {
	color: #f29a18;
	transition: transform 0.2s ease;
}

.service-card:hover .service-card__cta span {
	transform: translateX(4px);
}

.home-services__footer {
	display: flex;
	justify-content: center;
	margin-top: 32px;
}


/* Drone inspections */

.drone-section {
	padding-block: clamp(70px, 8vw, 110px);
	background: #111111;
	color: #ffffff;
}

.drone-section__inner {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	align-items: center;
	gap: clamp(50px, 7vw, 100px);
}

.drone-section__content {
	max-width: 620px;
}

.drone-section .section-eyebrow {
	margin: 0 0 14px;
	color: #f5b52e;
	font-size: 0.82rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.drone-section__title {
	margin: 0;
	color: #ffffff;
	font-size: clamp(2.4rem, 4vw, 4rem);
	font-weight: 800;
	line-height: 1;
	letter-spacing: -0.045em;
}

.drone-section__intro {
	margin: 24px 0 0;
	color: #ffffff;
	font-size: clamp(1.05rem, 1.4vw, 1.2rem);
	font-weight: 600;
	line-height: 1.6;
}

.drone-section__text {
	margin: 16px 0 0;
	color: rgba(255, 255, 255, 0.7);
	font-size: 1rem;
	line-height: 1.7;
}

.drone-section__benefits {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px 24px;
	margin: 30px 0 32px;
	padding: 0;
	list-style: none;
}

.drone-section__benefits li {
	position: relative;
	padding-left: 27px;
	color: rgba(255, 255, 255, 0.9);
	font-size: 0.95rem;
	font-weight: 600;
	line-height: 1.45;
}

.drone-section__benefits li::before {
	content: "✓";
	position: absolute;
	top: 0;
	left: 0;
	color: #f5b52e;
	font-weight: 900;
}

.drone-section__media {
	position: relative;
	min-width: 0;
}

.drone-section__image-placeholder {
	display: grid;
	place-items: center;
	width: 100%;
	min-height: 430px;
	background:
		linear-gradient(
			135deg,
			#292929,
			#181818
		);
	color: rgba(255, 255, 255, 0.35);
}

.drone-section__image {
	display: block;
	width: 100%;
	height: 430px;
	object-fit: cover;
}

.drone-section__stat {
	position: absolute;
	right: -24px;
	bottom: -24px;
	display: flex;
	flex-direction: column;
	min-width: 190px;
	padding: 24px 28px;
	background: #f5b52e;
	color: #111111;
}

.drone-section__stat strong {
	font-size: 1.4rem;
	font-weight: 900;
	line-height: 1;
}

.drone-section__stat span {
	margin-top: 7px;
	font-size: 0.85rem;
	font-weight: 700;
}


/* Homepage - Why Choose Us */

.home-why {
	padding-block: clamp(80px, 8vw, 120px);
	background: #ffffff;
	color: #111111;
}

.home-why__inner {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	gap: clamp(60px, 8vw, 120px);
	align-items: start;
}

.home-why__intro {
	max-width: 580px;
}

.home-why__eyebrow {
	margin: 0 0 18px;
	color: #f29a18;
	font-size: 0.85rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.home-why__title {
	margin: 0;
	max-width: 560px;
	font-size: clamp(2.5rem, 4vw, 4rem);
	font-weight: 800;
	line-height: 1;
	letter-spacing: -0.045em;
}

.home-why__text {
	margin: 24px 0 0;
	color: #666666;
	font-size: 1.05rem;
	line-height: 1.7;
}

.home-why__intro .button {
	margin-top: 32px;
}

.home-why__points {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.home-why__point {
	display: flex;
	flex-direction: column;
	min-height: 220px;
	padding: 28px;
	background: #f6f6f6;
	border-top: 3px solid transparent;
	transition:
		transform 0.22s ease,
		border-color 0.22s ease,
		background-color 0.22s ease;
}

.home-why__point:hover {
	transform: translateY(-4px);
	border-top-color: #f29a18;
	background: #f2f2f2;
}

.home-why__number {
	display: inline-flex;
	margin-bottom: 28px;
	color: #f29a18;
	font-size: 0.8rem;
	font-weight: 900;
	letter-spacing: 0.1em;
}

.home-why__point h3 {
	margin: 0;
	font-size: clamp(1.2rem, 1.7vw, 1.5rem);
	font-weight: 800;
	line-height: 1.15;
	letter-spacing: -0.02em;
}

.home-why__point p {
	margin: 12px 0 0;
	color: #666666;
	font-size: 0.94rem;
	line-height: 1.6;
}


/* Homepage - Helpful Guides */

.home-guides {
	padding-block: clamp(80px, 8vw, 120px);
	background: #f6f6f6;
}

.home-guides__intro {
	max-width: 720px;
	margin: 0 auto 44px;
	text-align: center;
}

.home-guides__eyebrow {
	margin: 0 0 14px;
	color: #f29a18;
	font-size: 0.82rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.home-guides__title {
	margin: 0;
	font-size: clamp(2.4rem, 4vw, 3.7rem);
	line-height: 1.05;
	letter-spacing: -0.04em;
}

.home-guides__text {
	max-width: 640px;
	margin: 18px auto 0;
	color: #666666;
	font-size: 1rem;
	line-height: 1.7;
}

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

.guide-card {
	background: #ffffff;
	border: 1px solid #e6e6e6;
	overflow: hidden;
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease;
}

.guide-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.guide-card__link {
	display: flex;
	flex-direction: column;
	height: 100%;
	color: inherit;
	text-decoration: none;
}

.guide-card__media {
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: #111111;
}

.guide-card__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.guide-card:hover .guide-card__image {
	transform: scale(1.04);
}

.guide-card__fallback {
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
	background: #111111;
	color: #f5b52e;
	font-weight: 800;
}

.guide-card__content {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 26px;
}

.guide-card__title {
	margin: 0;
	font-size: 1.35rem;
	line-height: 1.2;
}

.guide-card__excerpt {
	margin: 14px 0 0;
	color: #666666;
	font-size: 0.95rem;
	line-height: 1.6;
}

.guide-card__cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: auto;
	padding-top: 22px;
	font-size: 0.9rem;
	font-weight: 800;
}

.guide-card__cta span {
	color: #f29a18;
	transition: transform 0.2s ease;
}

.guide-card:hover .guide-card__cta span {
	transform: translateX(4px);
}

.home-guides__footer {
	display: flex;
	justify-content: center;
	margin-top: 36px;
}


/* Homepage areas */

.home-areas {
	margin-bottom: 0 !important;
	padding-block: 90px;
	border-bottom: 0 !important;
	background: #111111;
	color: #ffffff;
}

.home-areas__inner {
	width: min(
		100% - (var(--site-gutter) * 2),
		var(--site-width)
	);
	margin-inline: auto;

	display: grid;
	grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
	gap: clamp(60px, 8vw, 120px);
	align-items: center;
}

.home-areas__intro {
	max-width: 520px;
}

.home-areas__eyebrow {
	margin: 0 0 18px;
	color: #f5b52e;
	font-size: 0.85rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.12em;
}

.home-areas__title {
	margin: 0;
	color: #ffffff;
	font-size: clamp(2.4rem, 4vw, 4rem);
	font-weight: 800;
	line-height: 1;
	letter-spacing: -0.045em;
}

.home-areas__text {
	margin: 26px 0 32px;
	color: rgba(255, 255, 255, 0.72);
	font-size: 1.05rem;
	line-height: 1.7;
}

.home-areas__locations {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.home-area-link {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 16px;
	min-height: 94px;
	padding: 20px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.14);
	color: #ffffff;
	text-decoration: none;
	transition:
		background-color 0.2s ease,
		color 0.2s ease;
}

.home-area-link:nth-child(odd) {
	border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.home-area-link:hover,
.home-area-link:focus-visible {
	background: #f5b52e;
	color: #111111;
}

.home-area-link__marker {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #f5b52e;
}

.home-area-link:hover .home-area-link__marker,
.home-area-link:focus-visible .home-area-link__marker {
	color: #111111;
}

.home-area-link__content {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.home-area-link__content strong {
	font-size: 1rem;
	font-weight: 750;
	line-height: 1.3;
}

.home-area-link__content small {
	margin-top: 5px;
	color: rgba(255, 255, 255, 0.52);
	font-size: 0.78rem;
}

.home-area-link:hover .home-area-link__content small,
.home-area-link:focus-visible .home-area-link__content small {
	color: rgba(17, 17, 17, 0.68);
}

.home-area-link__arrow {
	color: #f5b52e;
	font-size: 1.25rem;
	transition: transform 0.2s ease;
}

.home-area-link:hover .home-area-link__arrow,
.home-area-link:focus-visible .home-area-link__arrow {
	color: #111111;
	transform: translateX(4px);
}


/* Homepage final CTA */

.home-cta {
	background: #f5b52e;
	color: #111111;
}

.home-cta__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	min-height: 160px;
	padding-block: 28px;
}

.home-cta__eyebrow {
	margin: 0 0 8px;
	font-size: 0.8rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.home-cta__title {
	margin: 0;
	font-size: clamp(2rem, 3vw, 3rem);
	line-height: 1;
	letter-spacing: -0.04em;
}

.home-cta__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	flex-shrink: 0;
}

.home-cta__button {
	min-height: 52px;
}

.home-cta__button--primary {
	background: #111111;
	color: #ffffff;
}

.home-cta__button--primary:hover,
.home-cta__button--primary:focus-visible {
	background: #ffffff;
	color: #111111;
}

.home-cta__button--secondary {
	border: 1px solid #111111;
	background: transparent;
	color: #111111;
}

.home-cta__button--secondary:hover,
.home-cta__button--secondary:focus-visible {
	background: #111111;
	color: #ffffff;
}


/* Footer */

.site-footer {
	margin: 0 !important;
	padding: 0;
	border: 0 !important;
	background: #090909;
	color: #ffffff;
}

.site-footer__main {
	padding-block: 60px;
	border-top: 0 !important;
}

.site-footer__inner {
	width: min(
		100% - (var(--site-gutter) * 2),
		var(--site-width)
	);
	margin-inline: auto;

	display: grid;
	grid-template-columns:
		minmax(340px, 1.5fr)
		minmax(180px, 0.65fr)
		minmax(280px, 0.85fr);

	gap: clamp(60px, 8vw, 120px);
	align-items: start;
}

.site-footer__brand {
	max-width: 390px;
}

.site-footer__logo {
	margin-bottom: 22px;
}

.site-footer__logo .custom-logo {
	display: block;
	width: auto;
	max-width: 230px;
	max-height: 68px;
	height: auto;
}

.site-footer__brand-name {
	color: #f5b52e;
	font-size: 1.4rem;
	font-weight: 900;
	text-decoration: none;
}

.site-footer__description {
	max-width: 360px;
	margin: 0;
	color: rgba(255, 255, 255, 0.62);
	font-size: 0.95rem;
	line-height: 1.7;
}

.site-footer__contact-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: 26px;
}

.site-footer__contact-link {
	display: flex;
	align-items: center;
	gap: 10px;
	max-width: 100%;
	color: rgba(255, 255, 255, 0.68);
	font-size: 0.95rem;
	line-height: 1.5;
	text-decoration: none;
	overflow-wrap: anywhere;
	transition: color 0.2s ease;
}

.site-footer__contact-link span {
	color: #f5b52e;
}

.site-footer__column {
	min-width: 0;
}

.site-footer__heading {
	margin: 0 0 22px;
	color: #ffffff;
	font-size: 0.85rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.site-footer__menu {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-footer__menu a {
	color: rgba(255, 255, 255, 0.68);
	text-decoration: none;
	transition: color 0.2s ease;
}

.site-footer__menu a:hover,
.site-footer__menu a:focus-visible,
.site-footer__contact-link:hover,
.site-footer__contact-link:focus-visible {
	color: #f5b52e;
}

.site-footer__info {
	margin: 0 0 14px;
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.9rem;
	line-height: 1.65;
}

.site-footer__info strong {
	color: #ffffff;
	font-size: 0.82rem;
	font-weight: 800;
}

.site-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__bottom-inner {
	width: min(
		100% - (var(--site-gutter) * 2),
		var(--site-width)
	);
	margin-inline: auto;

	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	min-height: 64px;
}

.site-footer__copyright {
	margin: 0;
	color: rgba(255, 255, 255, 0.45);
	font-size: 0.82rem;
}

.site-footer__legal {
	display: flex;
	align-items: center;
	gap: 20px;
}

.site-footer__legal a {
	color: rgba(255, 255, 255, 0.45);
	font-size: 0.82rem;
	text-decoration: none;
}

.site-footer__legal a:hover,
.site-footer__legal a:focus-visible {
	color: #f5b52e;
}


/* Tablet header */

@media (max-width: 1000px) {

	.site-header__trust {
		display: none;
	}

	.site-header__top-inner {
		min-height: 86px;
	}

	.site-navigation {
		display: none;
	}

	.site-search-button {
		display: none;
	}

	.site-menu-toggle {
		display: block;
	}

	.site-header__nav-inner {
		align-items: center;
		justify-content: flex-end;
		min-height: 58px;
	}

	.site-header__actions {
		width: 100%;
		margin-left: 0;
		align-items: center;
		justify-content: flex-end;
		gap: 10px;
	}

	.header-quote-button {
		min-width: auto;
		min-height: 44px;
		padding-inline: 18px;
		font-size: 0.85rem;
	}

	.drone-section__inner,
	.home-why__inner,
	.home-areas__inner {
		grid-template-columns: 1fr;
	}

	.drone-section__content,
	.home-why__intro,
	.home-areas__intro {
		max-width: 680px;
	}

	.drone-section__media {
		margin-right: 24px;
	}

	.site-footer__inner {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 45px 60px;
	}
}


/* Tablet content */

@media (max-width: 900px) {

	.home-guides__grid {
		grid-template-columns: 1fr;
	}

	.home-why__inner {
		gap: 55px;
	}

	.home-areas__inner {
		gap: 50px;
	}
}


/* Hero tablet */

@media (max-width: 800px) {

	.home-hero {
		height: auto;
		min-height: 360px;
	}

	.home-hero__overlay {
		background:
			linear-gradient(
				90deg,
				rgba(0, 0, 0, 0.8),
				rgba(0, 0, 0, 0.45)
			);
	}

	.home-hero__content {
		max-width: 620px;
		padding-block: 48px;
	}

	.home-hero__title {
		font-size: clamp(2.4rem, 10vw, 4rem);
	}

	.home-hero__text {
		font-size: 1rem;
	}

	.home-cta__inner {
		flex-direction: column;
		align-items: flex-start;
		padding-block: 38px;
	}

	.home-cta__actions {
		width: 100%;
	}

	.home-cta__actions .button {
		flex: 1 1 220px;
	}
}


/* Mobile */

@media (max-width: 640px) {

	.site-header__top-inner {
		min-height: 74px;
	}

	.site-brand .custom-logo {
		max-width: 190px;
		max-height: 54px;
	}

	.site-header__nav {
		background: #f5b52e;
		border-bottom: 0;
	}

	.site-menu-toggle__line {
		background: #111111;
	}

	.site-header__nav-inner {
		width: 100%;
		min-height: 58px;
		padding-inline: 16px;
		box-sizing: border-box;
	}

	.site-header__actions {
		width: 100%;
		margin: 0;
		justify-content: flex-end;
	}

	.header-quote-button {
		display: none;
	}

	.site-menu-toggle {
		display: none;
		align-items: center;
		justify-content: center;
		gap: 10px;
		width: auto;
		min-height: 52px;
		padding: 0 18px;
		border: 0;
		background: transparent;
		color: #111111;
		cursor: pointer;
	}

	.site-menu-toggle__label {
		font-size: 0.78rem;
		font-weight: 800;
		text-transform: uppercase;
		letter-spacing: 0.08em;
	}

	.site-menu-toggle__icon {
		display: flex;
		flex-direction: column;
		justify-content: center;
		gap: 4px;
		width: 22px;
	}

	.site-menu-toggle__line {
		display: block;
		width: 22px;
		height: 2px;
		margin: 0;
		background: #111111;
	}

	.site-mobile-navigation__inner {
		width: auto;
		margin: 0;
		padding:
			8px
			20px
			24px;
	}

	.home-services {
		padding-inline: 20px;
	}

	.home-services__grid {
		grid-template-columns: 1fr;
	}

	.service-card__content {
		padding: 22px;
	}

	.drone-section {
		padding-block: 65px;
	}

	.drone-section__benefits {
		grid-template-columns: 1fr;
	}

	.drone-section__image,
	.drone-section__image-placeholder {
		height: 320px;
		min-height: 320px;
	}

	.drone-section__stat {
		right: -12px;
		bottom: -20px;
	}

	.home-areas {
		padding-block: 70px;
	}

	.home-areas__locations {
		grid-template-columns: 1fr;
	}

	.home-area-link:nth-child(odd) {
		border-right: 0;
	}

	.home-area-link {
		min-height: 82px;
		padding-inline: 10px;
	}

	.site-footer__main {
		padding-block: 50px;
	}

	.site-footer__inner {
		grid-template-columns: 1fr;
		gap: 38px;
	}

	.site-footer__bottom-inner {
		align-items: flex-start;
		flex-direction: column;
		justify-content: center;
		padding-block: 20px;
	}
}


/* Small mobile */

@media (max-width: 560px) {

	.home-hero {
		min-height: 390px;
	}

	.home-hero__inner {
		padding-inline: 22px;
	}

	.home-hero__content {
		padding-block: 42px;
	}

	.home-hero__title {
		font-size: clamp(2.3rem, 12vw, 3.6rem);
	}

	.home-hero__actions {
		flex-direction: column;
		align-items: stretch;
	}

	.home-hero__actions .button {
		width: 100%;
	}

	.home-why {
		padding-block: 70px;
	}

	.home-why__title {
		font-size: clamp(2.4rem, 11vw, 3.3rem);
	}

	.home-why__points {
		grid-template-columns: 1fr;
	}

	.home-why__point {
		min-height: auto;
	}
}


/* Services tablet */

@media (max-width: 1100px) {

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


/* Final mobile menu override */

@media (max-width: 1000px) {

	.site-menu-toggle {
		display: inline-flex !important;
		align-items: center;
		justify-content: center;
		gap: 10px;
		width: auto;
		height: 52px;
		min-height: 52px;
		margin-left: auto;
		padding: 0 18px;
		border: 0;
		background: transparent;
		color: #111111;
		cursor: pointer;
	}

	.site-menu-toggle__label {
		display: inline-block;
		color: #111111;
		font-size: 0.78rem;
		font-weight: 800;
		line-height: 1;
		text-transform: uppercase;
		letter-spacing: 0.08em;
	}

	.site-menu-toggle__icon {
		display: flex;
		flex-direction: column;
		justify-content: center;
		gap: 4px;
		width: 22px;
	}

	.site-menu-toggle__line {
		display: block;
		width: 22px;
		height: 2px;
		margin: 0;
		background: #111111;
	}
}

@media (max-width: 640px) {

	.site-header__nav {
		background: #f5b52e;
	}

	.site-header__nav-inner {
		display: flex;
		align-items: center;
		justify-content: flex-end;
		width: 100%;
		min-height: 54px;
		padding-inline: 10px;
		box-sizing: border-box;
	}

	.site-header__actions {
		display: flex;
		align-items: center;
		justify-content: flex-end;
		width: 100%;
		margin: 0;
	}

	.header-quote-button,
	.site-search-button {
		display: none;
	}
}


/* About page */

.site-main--about {
	background: #ffffff;
}


/* About hero */

.about-hero {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 390px;
	overflow: hidden;
	background-color: #111111;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	color: #ffffff;
}

.about-hero__overlay {
	position: absolute;
	inset: 0;
	z-index: 0;
	background:
		linear-gradient(
			90deg,
			rgba(0, 0, 0, 0.86) 0%,
			rgba(0, 0, 0, 0.68) 48%,
			rgba(0, 0, 0, 0.28) 100%
		);
}

.about-intro__image {
	display: block;
	width: 100%;
	height: 420px;
	object-fit: cover;
	object-position: center;
}

.about-hero__inner {
	position: relative;
	z-index: 1;
	width: 100%;
	padding-inline: clamp(32px, 5vw, 80px);
	box-sizing: border-box;
}

.about-hero__content {
	max-width: 760px;
	padding-block: 62px;
}

.about-hero__eyebrow {
	margin: 0 0 16px;
	color: #f5b52e;
	font-size: 0.82rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.about-hero__title {
	margin: 0;
	max-width: 760px;
	color: #ffffff;
	font-size: clamp(2.7rem, 5vw, 4.8rem);
	font-weight: 800;
	line-height: 0.98;
	letter-spacing: -0.045em;
	text-wrap: balance;
}

.about-hero__text {
	max-width: 660px;
	margin: 22px 0 0;
	color: rgba(255, 255, 255, 0.84);
	font-size: 1.05rem;
	line-height: 1.65;
}

.about-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 30px;
}


/* About intro */

.about-intro {
	padding:
		55px
		0
		clamp(80px, 8vw, 120px);
	background: #ffffff;
	color: #111111;
}

.about-intro__inner {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
	align-items: center;
	gap: clamp(50px, 7vw, 100px);
}

.about-intro__content {
	max-width: 620px;
}

.about-intro .section-eyebrow {
	margin: 0 0 16px;
	color: #f29a18;
	font-size: 0.82rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.about-intro__content h2 {
	margin: 0;
	color: #111111;
	font-size: clamp(2.3rem, 4vw, 3.8rem);
	font-weight: 800;
	line-height: 1.03;
	letter-spacing: -0.04em;
}

.about-intro__content p {
	margin: 20px 0 0;
	color: #666666;
	font-size: 1rem;
	line-height: 1.75;
}

.about-intro__media {
	min-width: 0;
}

.about-intro__placeholder {
	display: grid;
	place-items: center;
	width: 100%;
	min-height: 420px;
	background:
		linear-gradient(
			135deg,
			#eeeeee,
			#d8d8d8
		);
	color: #666666;
	font-weight: 700;
	text-align: center;
}


/* About responsive */

@media (max-width: 900px) {

	.about-intro__inner {
		grid-template-columns: 1fr;
	}

	.about-intro__content {
		max-width: 700px;
	}
}

@media (max-width: 640px) {

	.about-hero {
		min-height: 360px;
	}

	.about-hero__inner {
		padding-inline: 22px;
	}

	.about-hero__content {
		padding-block: 48px;
	}

	.about-hero__title {
		font-size: clamp(2.5rem, 12vw, 3.8rem);
	}

	.about-hero__actions {
		flex-direction: column;
		align-items: stretch;
	}

	.about-hero__actions .button {
		width: 100%;
	}

	.about-intro {
		padding:
			45px
			0
			70px;
	}

	.about-intro__placeholder {
		min-height: 300px;
	}
}

.about-intro__image {
	height: 300px;
}


/* =========================================================
   REMOVE LEGACY PAGE / WPBAKERY SPACING
   ========================================================= */

body {
	margin: 0 !important;
	padding: 0 !important;
}

.site {
	margin: 0 !important;
	padding: 0 !important;
}

.site-header {
	margin-top: 0 !important;
	margin-bottom: 0 !important;
}

.site-header__top,
.site-header__nav {
	margin: 0 !important;
}

.site-main--about {
	margin: 0 !important;
	padding: 0 !important;
}

.about-hero {
	margin: 0 !important;
}


/* Remove empty WPBakery/page content spacing on custom About template */

body.page-template-page-about-us .entry-content,
body.page-template-page-about-us .page-content,
body.page-template-page-about-us .vc_row:empty,
body.page-template-page-about-us .wpb-content-wrapper:empty {
	display: none !important;
	margin: 0 !important;
	padding: 0 !important;
}


/* WordPress admin bar should not create additional theme spacing */

body.admin-bar {
	margin-top: 0 !important;
}


/* About trust strip */

.about-trust {
	background: #111111;
	color: #ffffff;
}

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

.about-trust__item {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 150px;
	padding: 28px 32px;
	border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.about-trust__item:last-child {
	border-right: 0;
}

.about-trust__item::before {
	content: "";
	position: absolute;
	top: 0;
	left: 32px;
	width: 38px;
	height: 3px;
	background: #f5b52e;
}

.about-trust__item strong {
	color: #f5b52e;
	font-size: clamp(1.8rem, 3vw, 2.6rem);
	font-weight: 900;
	line-height: 1;
	letter-spacing: -0.035em;
}

.about-trust__item span {
	margin-top: 10px;
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.9rem;
	font-weight: 600;
	line-height: 1.4;
}


/* About trust - tablet */

@media (max-width: 800px) {

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

	.about-trust__item:nth-child(2) {
		border-right: 0;
	}

	.about-trust__item:nth-child(-n+2) {
		border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	}
}


/* About trust - mobile */

@media (max-width: 500px) {

	.about-trust__inner {
		grid-template-columns: 1fr;
	}

	.about-trust__item {
		min-height: 120px;
		padding: 25px 22px;
		border-right: 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	}

	.about-trust__item:last-child {
		border-bottom: 0;
	}

	.about-trust__item::before {
		left: 22px;
	}
}


/* About - approach */

.about-approach {
	padding-block: clamp(75px, 8vw, 115px);
	background: #ffffff;
	color: #111111;
}

.about-approach__inner {
	display: grid;
	grid-template-columns:
		minmax(0, 0.85fr)
		minmax(0, 1.15fr);
	gap: clamp(50px, 6vw, 90px);
	align-items: start;
}

.about-approach__intro {
	max-width: 540px;
}

.about-approach__eyebrow {
	margin: 0 0 16px;
	color: #f29a18;
	font-size: 0.82rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.about-approach__intro h2 {
	margin: 0;
	font-size: clamp(2.4rem, 4vw, 3.8rem);
	font-weight: 800;
	line-height: 1;
	letter-spacing: -0.04em;
}

.about-approach__intro > p:not(.about-approach__eyebrow) {
	margin: 22px 0 0;
	color: #666666;
	font-size: 1rem;
	line-height: 1.7;
}


/* Approach cards */

.about-approach__points {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 2px;
	background: #e8e8e8;
	border: 1px solid #e8e8e8;
}

.about-approach__point {
	min-height: 200px;
	padding: 26px;
	background: #f7f7f7;
	transition:
		background-color 0.2s ease,
		transform 0.2s ease;
}

.about-approach__point:hover {
	position: relative;
	z-index: 1;
	background: #ffffff;
}

.about-approach__number {
	display: block;
	margin-bottom: 22px;
	color: #f29a18;
	font-size: 0.8rem;
	font-weight: 900;
	letter-spacing: 0.1em;
}

.about-approach__point h3 {
	margin: 0;
	color: #111111;
	font-size: 1.25rem;
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: -0.02em;
}

.about-approach__point p {
	margin: 14px 0 0;
	color: #666666;
	font-size: 0.92rem;
	line-height: 1.65;
}


/* About approach responsive */

@media (max-width: 900px) {

	.about-approach__inner {
		grid-template-columns: 1fr;
		gap: 45px;
	}

	.about-approach__intro {
		max-width: 680px;
	}
}

@media (max-width: 600px) {

	.about-approach {
		padding-block: 65px;
	}

	.about-approach__points {
		grid-template-columns: 1fr;
	}

	.about-approach__point {
		min-height: auto;
		padding: 26px 22px;
	}
}
/* About - services */

.about-services {
	padding-block: clamp(75px, 8vw, 110px);
	background: #f5f5f5;
	color: #111111;
}

.about-services__intro {
	max-width: 760px;
	margin-bottom: 42px;
}

.about-services__eyebrow {
	margin: 0 0 14px;
	color: #f29a18;
	font-size: 0.82rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.about-services__intro h2 {
	margin: 0;
	font-size: clamp(2.3rem, 4vw, 3.6rem);
	font-weight: 800;
	line-height: 1.03;
	letter-spacing: -0.04em;
}

.about-services__intro p {
	max-width: 700px;
	margin: 20px 0 0;
	color: #666666;
	font-size: 1rem;
	line-height: 1.7;
}

.about-services__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	border-top: 1px solid #dddddd;
	border-left: 1px solid #dddddd;
}

.about-services__grid a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	min-height: 84px;
	padding: 20px 24px;
	border-right: 1px solid #dddddd;
	border-bottom: 1px solid #dddddd;
	background: #ffffff;
	color: #111111;
	text-decoration: none;
	transition:
		background-color 0.2s ease,
		color 0.2s ease;
}

.about-services__grid a:hover,
.about-services__grid a:focus-visible {
	background: #111111;
	color: #ffffff;
}

.about-services__grid span {
	font-size: 1rem;
	font-weight: 800;
}

.about-services__grid strong {
	color: #f29a18;
	font-size: 1.2rem;
	transition: transform 0.2s ease;
}

.about-services__grid a:hover strong,
.about-services__grid a:focus-visible strong {
	transform: translateX(4px);
}

@media (max-width: 640px) {

	.about-services {
		padding-block: 65px;
	}

	.about-services__grid {
		grid-template-columns: 1fr;
	}
}
/* About - why choose us */

.about-why {
	padding-block: clamp(75px, 8vw, 110px);
	background: #111111;
	color: #ffffff;
}

.about-why__inner {
	display: grid;
	grid-template-columns:
		minmax(0, 0.8fr)
		minmax(0, 1.2fr);
	gap: clamp(50px, 7vw, 100px);
	align-items: start;
}

.about-why__intro {
	max-width: 540px;
}

.about-why__eyebrow {
	margin: 0 0 16px;
	color: #f5b52e;
	font-size: 0.82rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.about-why__intro h2 {
	margin: 0;
	color: #ffffff;
	font-size: clamp(2.4rem, 4vw, 3.8rem);
	font-weight: 800;
	line-height: 1;
	letter-spacing: -0.04em;
}

.about-why__intro p {
	margin: 22px 0 0;
	color: rgba(255, 255, 255, 0.7);
	font-size: 1rem;
	line-height: 1.7;
}

.about-why__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.about-why__item {
	min-height: 210px;
	padding: 28px;
	border-right: 1px solid rgba(255, 255, 255, 0.12);
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	background: #171717;
	transition:
		background-color 0.2s ease,
		transform 0.2s ease;
}

.about-why__item:hover {
	background: #1f1f1f;
}

.about-why__number {
	display: block;
	margin-bottom: 24px;
	color: #f5b52e;
	font-size: 0.8rem;
	font-weight: 900;
	letter-spacing: 0.1em;
}

.about-why__item h3 {
	margin: 0;
	color: #ffffff;
	font-size: 1.25rem;
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: -0.02em;
}

.about-why__item p {
	margin: 14px 0 0;
	color: rgba(255, 255, 255, 0.65);
	font-size: 0.92rem;
	line-height: 1.65;
}

@media (max-width: 900px) {

	.about-why__inner {
		grid-template-columns: 1fr;
		gap: 45px;
	}

	.about-why__intro {
		max-width: 680px;
	}
}

@media (max-width: 600px) {

	.about-why {
		padding-block: 65px;
	}

	.about-why__grid {
		grid-template-columns: 1fr;
	}

	.about-why__item {
		min-height: auto;
		padding: 26px 22px;
	}
}
/* Global CTA above footer */

.global-cta {
	background: #f5b52e;
	color: #111111;
}

.global-cta__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	min-height: 160px;
	padding-block: 28px;
}

.global-cta__eyebrow {
	margin: 0 0 8px;
	font-size: 0.8rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.global-cta__title {
	margin: 0;
	font-size: clamp(2rem, 3vw, 3rem);
	line-height: 1;
	letter-spacing: -0.04em;
}

.global-cta__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	flex-shrink: 0;
}

.global-cta__button {
	min-height: 52px;
}

.global-cta__button--primary {
	background: #111111;
	color: #ffffff;
}

.global-cta__button--primary:hover,
.global-cta__button--primary:focus-visible {
	background: #ffffff;
	color: #111111;
}

.global-cta__button--secondary {
	border: 1px solid #111111;
	background: transparent;
	color: #111111;
}

.global-cta__button--secondary:hover,
.global-cta__button--secondary:focus-visible {
	background: #111111;
	color: #ffffff;
}

@media (max-width: 800px) {

	.global-cta__inner {
		flex-direction: column;
		align-items: flex-start;
		padding-block: 38px;
	}

	.global-cta__actions {
		width: 100%;
	}

	.global-cta__actions .button {
		flex: 1 1 220px;
	}
}
/* =========================================================
   OUR SERVICES PAGE
   ========================================================= */

.site-main--services {
	margin: 0 !important;
	padding: 0 !important;
	background: #ffffff;
}


/* Services hero */

.services-hero {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 390px;
	overflow: hidden;
	background:
		linear-gradient(
			90deg,
			rgba(0, 0, 0, 0.86) 0%,
			rgba(0, 0, 0, 0.68) 48%,
			rgba(0, 0, 0, 0.28) 100%
		),
		#111111;
	color: #ffffff;
}

.services-hero__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.58);
	z-index: 1;
}

.services-hero__inner {
	position: relative;
	z-index: 1;
	width: 100%;
	padding-inline: clamp(32px, 5vw, 80px);
	box-sizing: border-box;
}

.services-hero__content {
	max-width: 780px;
	padding-block: 62px;
}

.services-hero__eyebrow {
	margin: 0 0 16px;
	color: #f5b52e;
	font-size: 0.82rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.services-hero__title {
	margin: 0;
	max-width: 780px;
	color: #ffffff;
	font-size: clamp(2.7rem, 5vw, 4.8rem);
	font-weight: 800;
	line-height: 0.98;
	letter-spacing: -0.045em;
	text-wrap: balance;
}

.services-hero__text {
	max-width: 680px;
	margin: 22px 0 0;
	color: rgba(255, 255, 255, 0.84);
	font-size: 1.05rem;
	line-height: 1.65;
}

.services-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 30px;
}


/* Services intro */

.services-intro {
	padding-block: clamp(70px, 7vw, 100px);
	background: #ffffff;
	color: #111111;
}

.services-intro__inner {
	max-width: 900px;
}

.services-intro__eyebrow {
	margin: 0 0 16px;
	color: #f29a18;
	font-size: 0.82rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.services-intro h2 {
	margin: 0;
	max-width: 820px;
	font-size: clamp(2.4rem, 4vw, 3.8rem);
	font-weight: 800;
	line-height: 1.02;
	letter-spacing: -0.04em;
}

.services-intro p {
	max-width: 820px;
	margin: 20px 0 0;
	color: #666666;
	font-size: 1rem;
	line-height: 1.75;
}


/* Main services grid */

.services-grid-section {
	padding-block: clamp(75px, 8vw, 115px);
	background: #f5f5f5;
}

.services-grid-section__intro {
	max-width: 760px;
	margin-bottom: 42px;
}

.services-grid-section__eyebrow {
	margin: 0 0 14px;
	color: #f29a18;
	font-size: 0.82rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.services-grid-section__intro h2 {
	margin: 0;
	color: #111111;
	font-size: clamp(2.4rem, 4vw, 3.7rem);
	font-weight: 800;
	line-height: 1.03;
	letter-spacing: -0.04em;
}

.services-grid-section__intro p {
	margin: 18px 0 0;
	color: #666666;
	font-size: 1rem;
	line-height: 1.7;
}

.services-page-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 22px;
}

.services-page-card {
	display: flex;
	flex-direction: column;
	min-width: 0;
	overflow: hidden;
	border: 1px solid #e6e6e6;
	background: #ffffff;
	color: inherit;
	text-decoration: none;
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease,
		border-color 0.25s ease;
}

.services-page-card:hover,
.services-page-card:focus-visible {
	transform: translateY(-5px);
	border-color: #dedede;
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.services-page-card__media {
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: #111111;
}

.services-page-card__placeholder {
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
	background:
		linear-gradient(
			135deg,
			#1f1f1f,
			#0e0e0e
		);
	color: rgba(255, 255, 255, 0.38);
	font-size: 0.9rem;
	font-weight: 700;
}

.services-page-card__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.services-page-card:hover .services-page-card__image,
.services-page-card:focus-visible .services-page-card__image {
	transform: scale(1.04);
}

.services-page-card__content {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 24px;
}

.services-page-card__content h3 {
	margin: 0;
	color: #111111;
	font-size: 1.25rem;
	font-weight: 800;
	line-height: 1.18;
	letter-spacing: -0.02em;
}

.services-page-card__cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: auto;
	padding-top: 22px;
	color: #111111;
	font-size: 0.9rem;
	font-weight: 800;
}

.services-page-card__cta strong {
	color: #f29a18;
	font-size: 1.1rem;
	transition: transform 0.2s ease;
}

.services-page-card:hover .services-page-card__cta strong,
.services-page-card:focus-visible .services-page-card__cta strong {
	transform: translateX(4px);
}
/* =========================================================
   SERVICES PAGE - MATCH HOMEPAGE CARD LAYOUT
   ========================================================= */

@media (max-width: 640px) {

	.services-grid-section {
		padding:
			55px
			16px
			65px;
	}

	.services-grid-section .container {
		width: 100%;
		max-width: none;
		padding: 0;
	}

	.services-grid-section__intro {
		margin-bottom: 30px;
	}

	.services-grid-section__intro h2 {
		font-size: clamp(2rem, 9vw, 2.8rem);
		line-height: 1.02;
	}

	.services-page-grid {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 16px;
		width: 100%;
	}

	.services-page-card {
		display: flex;
		flex-direction: column;
		width: 100%;
		min-width: 0;
		height: 100%;
	}

	.services-page-card__media {
		width: 100%;
		aspect-ratio: 4 / 3;
	}

	.services-page-card__image {
		display: block;
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	.services-page-card__content {
		display: flex;
		flex-direction: column;
		flex: 1;
		min-height: 150px;
		padding: 16px 14px;
	}

	.services-page-card__content h3 {
		margin: 0;
		font-size: 1rem;
		line-height: 1.12;
		letter-spacing: -0.02em;
	}

	.services-page-card__cta {
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: 100%;
		margin-top: auto;
		padding-top: 18px;
		font-size: 0.78rem;
		line-height: 1.2;
	}

	.services-page-card__cta strong {
		flex-shrink: 0;
		margin-left: 8px;
	}
}
@media (max-width: 640px) {

	.services-intro {
		padding-bottom: 25px;
	}

	.services-grid-section {
		padding-top: 25px;
	}

}
/* =========================================================
   INDIVIDUAL ROOFING SERVICE PAGES
   ========================================================= */

.site-main--service {
	background: #fff;
}


/* Hero
   ========================================================= */

.service-hero {
	position: relative;
	display: flex;
	align-items: center;
	height: 390px;
	min-height: 390px;
	background-color: #0b0b0b;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	overflow: hidden;
}

.service-hero__overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(
			90deg,
			rgba(0, 0, 0, 0.88) 0%,
			rgba(0, 0, 0, 0.72) 45%,
			rgba(0, 0, 0, 0.42) 100%
		);
	z-index: 1;
}

.service-hero__inner {
	position: relative;
	z-index: 2;
	width: 100%;
}

.service-hero__content {
	max-width: 760px;
	padding: 80px 0;
}

.service-hero__eyebrow {
	margin: 0 0 16px;
	color: #f5a623;
	font-size: 14px;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.service-hero__title {
	max-width: 760px;
	margin: 0;
	color: #fff;
	font-size: clamp(42px, 5vw, 70px);
	font-weight: 800;
	line-height: 0.98;
	letter-spacing: -0.035em;
}

.service-hero__text {
	max-width: 680px;
	margin: 26px 0 0;
	color: rgba(255, 255, 255, 0.9);
	font-size: 18px;
	line-height: 1.65;
}

.service-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 30px;
}


/* Existing content during migration
   ========================================================= */

.service-content {
	padding: 70px 0;
	background: #fff;
}

.service-content__inner {
	max-width: 1180px;
	margin: 0 auto;
}


/* Mobile
   ========================================================= */

@media (max-width: 767px) {

	.service-hero {
		min-height: 520px;
		background-position: center;
	}

	.service-hero__overlay {
		background: rgba(0, 0, 0, 0.68);
	}

	.service-hero__content {
		padding: 60px 0;
	}

	.service-hero__title {
		font-size: clamp(38px, 11vw, 52px);
		line-height: 1;
	}

	.service-hero__text {
		margin-top: 20px;
		font-size: 16px;
		line-height: 1.6;
	}

	.service-hero__actions {
		flex-direction: column;
		align-items: stretch;
	}

	.service-hero__actions .button {
		width: 100%;
		text-align: center;
	}

	.service-content {
		padding: 45px 0;
	}

}
/* =========================================================
   REMOVE LEGACY SPACING ON SERVICE TEMPLATE
   ========================================================= */

body.page-template-page-service,
body.page-template-page-service .site,
body.page-template-page-service .site-main,
body.page-template-page-service .site-main--service {
	margin: 0 !important;
	padding: 0 !important;
}

body.page-template-page-service .site-header {
	margin-bottom: 0 !important;
}

body.page-template-page-service .site-header__nav {
	margin-bottom: 0 !important;
}

body.page-template-page-service .service-hero {
	margin-top: 0 !important;
}

body.page-template-page-service .entry-content,
body.page-template-page-service .page-content,
body.page-template-page-service .wpb-content-wrapper,
body.page-template-page-service .vc_row {
	margin-top: 0 !important;
	padding-top: 0 !important;
}
/* =========================================================
   INDIVIDUAL SERVICE PAGE - CONTENT DESIGN
   ========================================================= */


/* Shared section eyebrow */

.service-section-eyebrow {
	margin: 0 0 14px;
	color: #f29a18;
	font-size: 0.82rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}


/* Intro section */

.service-intro {
	padding-block: clamp(70px, 7vw, 100px);
	background: #ffffff;
	color: #111111;
}

.service-intro__inner {
	max-width: 1180px;
	margin-inline: auto;
}

.service-intro__content {
	max-width: 820px;
}

.service-intro__content h2 {
	margin: 0;
	max-width: 780px;
	font-size: clamp(2.4rem, 4vw, 4rem);
	font-weight: 800;
	line-height: 1;
	letter-spacing: -0.04em;
}

.service-intro__lead {
	margin-top: 24px;
	color: #333333;
	font-size: 1.15rem;
	font-weight: 600;
	line-height: 1.7;
}

.service-intro__content p:not(.service-section-eyebrow):not(.service-intro__lead) {
	max-width: 780px;
	margin: 18px 0 0;
	color: #666666;
	font-size: 1rem;
	line-height: 1.75;
}


/* Main service detail */

.service-detail {
	padding-block: clamp(75px, 8vw, 115px);
	background: #f5f5f5;
	color: #111111;
}

.service-detail__inner {
	display: grid;
	grid-template-columns:
		minmax(0, 0.9fr)
		minmax(0, 1.1fr);
	align-items: center;
	gap: clamp(55px, 7vw, 100px);
}

.service-detail__content {
	max-width: 620px;
}

.service-detail__content h2 {
	margin: 0;
	font-size: clamp(2.2rem, 3.8vw, 3.6rem);
	font-weight: 800;
	line-height: 1.02;
	letter-spacing: -0.04em;
}

.service-detail__content > p:not(.service-section-eyebrow) {
	margin: 20px 0 0;
	color: #666666;
	font-size: 1rem;
	line-height: 1.72;
}


/* Benefits */

.service-benefits {
	display: grid;
	gap: 12px;
	margin: 30px 0 0;
	padding: 0;
	list-style: none;
}

.service-benefits li {
	position: relative;
	padding: 14px 16px 14px 48px;
	background: #ffffff;
	border-left: 3px solid #f5b52e;
	color: #222222;
	font-size: 0.95rem;
	font-weight: 700;
	line-height: 1.45;
}

.service-benefits li::before {
	content: "✓";
	position: absolute;
	left: 18px;
	top: 50%;
	transform: translateY(-50%);
	color: #f29a18;
	font-size: 1rem;
	font-weight: 900;
}


/* Detail image */

.service-detail__media {
	min-width: 0;
}

.service-detail__image {
	display: block;
	width: 100%;
	height: 480px;
	object-fit: cover;
	object-position: center;
}


/* Local expertise section */

.service-local {
	padding-block: clamp(75px, 8vw, 110px);
	background: #111111;
	color: #ffffff;
}

.service-local__inner {
	display: grid;
	grid-template-columns:
		minmax(0, 1fr)
		minmax(300px, 0.6fr);
	align-items: center;
	gap: clamp(50px, 7vw, 100px);
}

.service-local__content {
	max-width: 700px;
}

.service-local__content h2 {
	margin: 0;
	color: #ffffff;
	font-size: clamp(2.3rem, 4vw, 3.8rem);
	font-weight: 800;
	line-height: 1;
	letter-spacing: -0.04em;
}

.service-local__content p:not(.service-section-eyebrow) {
	margin: 20px 0 0;
	color: rgba(255, 255, 255, 0.72);
	font-size: 1rem;
	line-height: 1.75;
}


/* Local CTA card */

.service-local__action {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 34px;
	background: #1b1b1b;
	border-top: 3px solid #f5b52e;
}

.service-local__action strong {
	color: #ffffff;
	font-size: 1.35rem;
	font-weight: 800;
	line-height: 1.2;
}

.service-local__action span {
	margin-top: 10px;
	color: rgba(255, 255, 255, 0.62);
	font-size: 0.95rem;
	line-height: 1.55;
}

.service-local__action .button {
	margin-top: 24px;
}


/* =========================================================
   SERVICE PAGE - TABLET
   ========================================================= */

@media (max-width: 900px) {

	.service-detail__inner,
	.service-local__inner {
		grid-template-columns: 1fr;
	}

	.service-detail__content,
	.service-local__content {
		max-width: 720px;
	}

	.service-detail__image {
		height: 400px;
	}

	.service-local__action {
		max-width: 520px;
	}
}


/* =========================================================
   SERVICE PAGE - MOBILE
   ========================================================= */

@media (max-width: 640px) {

	.service-intro,
	.service-detail,
	.service-local {
		padding-block: 60px;
	}

	.service-intro__content h2,
	.service-detail__content h2,
	.service-local__content h2 {
		font-size: clamp(2.2rem, 10vw, 3rem);
	}

	.service-intro__lead {
		font-size: 1.05rem;
	}

	.service-detail__inner,
	.service-local__inner {
		gap: 38px;
	}

	.service-benefits {
		gap: 10px;
		margin-top: 24px;
	}

	.service-benefits li {
		padding:
			13px
			14px
			13px
			44px;
		font-size: 0.9rem;
	}

	.service-benefits li::before {
		left: 16px;
	}

	.service-detail__image {
		height: 300px;
	}

	.service-local__action {
		padding: 26px 22px;
	}

	.service-local__action .button {
		width: 100%;
	}
}
/* =========================================================
   GLOBAL INNER-PAGE HERO HEIGHT
   About + Services + Individual Services
   ========================================================= */

.about-hero,
.services-hero,
.service-hero {
	height: 390px;
	min-height: 390px;
}


/* Individual service hero alignment */

.service-hero__inner {
	position: relative;
	z-index: 2;
	width: 100%;
	padding-inline: clamp(32px, 5vw, 80px);
	box-sizing: border-box;
}

.service-hero__content {
	max-width: 760px;
	padding-block: 0;
}


/* Mobile */

@media (max-width: 640px) {

	.about-hero,
	.services-hero,
	.service-hero {
		height: auto;
		min-height: 360px;
	}

	.service-hero__inner {
		padding-inline: 22px;
	}

	.service-hero__content {
		padding-block: 48px;
	}
}
/* =========================================================
   RECENT WORK / PORTFOLIO ARCHIVE
   ========================================================= */


/* Hero
   Uses the existing service hero system so Recent Work
   remains the same height as the other internal pages.
--------------------------------------------------------- */

.portfolio-hero {
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}


/* Projects section
--------------------------------------------------------- */

.portfolio-projects {
	padding: 80px 0 90px;
	background: #fff;
}

.portfolio-projects__heading {
	max-width: 760px;
	margin-bottom: 42px;
}

.portfolio-projects__heading h2 {
	margin: 8px 0 16px;
}

.portfolio-projects__heading p:last-child {
	margin-bottom: 0;
	max-width: 700px;
}


/* Project grid
--------------------------------------------------------- */

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


/* Project card
--------------------------------------------------------- */

.portfolio-card {
	display: flex;
	flex-direction: column;
	min-width: 0;
	margin: 0;
	background: #fff;
	border: 1px solid #e7e7e7;
	overflow: hidden;
	transition:
		transform 0.2s ease,
		box-shadow 0.2s ease;
}

.portfolio-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 35px rgba(0, 0, 0, 0.1);
}


/* Image
--------------------------------------------------------- */

.portfolio-card__image-link {
	display: block;
	overflow: hidden;
	text-decoration: none;
}

.portfolio-card__image {
	position: relative;
	width: 100%;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: #ededed;
}

.portfolio-card__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.35s ease;
}

.portfolio-card:hover .portfolio-card__image img {
	transform: scale(1.035);
}

.portfolio-card__placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	padding: 30px;
	background: #171717;
	color: #fff;
	text-align: center;
	font-weight: 700;
}


/* Card content
--------------------------------------------------------- */

.portfolio-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 24px;
}

.portfolio-card__title {
	margin: 0 0 14px;
	font-size: 24px;
	line-height: 1.15;
}

.portfolio-card__title a {
	color: #111;
	text-decoration: none;
}

.portfolio-card__title a:hover {
	color: #f5a800;
}

.portfolio-card__excerpt {
	margin-bottom: 24px;
	color: #555;
	font-size: 16px;
	line-height: 1.65;
}

.portfolio-card__footer {
	margin-top: auto;
	padding-top: 4px;
}

.portfolio-card__link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #111;
	font-weight: 700;
	text-decoration: none;
}

.portfolio-card__link span {
	transition: transform 0.2s ease;
}

.portfolio-card__link:hover {
	color: #f5a800;
}

.portfolio-card__link:hover span {
	transform: translateX(4px);
}


/* Pagination
--------------------------------------------------------- */

.portfolio-pagination {
	margin-top: 55px;
}

.portfolio-pagination .page-numbers {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.portfolio-pagination .page-numbers li {
	margin: 0;
}

.portfolio-pagination a,
.portfolio-pagination span {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	height: 44px;
	padding: 0 14px;
	border: 1px solid #ddd;
	color: #111;
	font-weight: 700;
	text-decoration: none;
}

.portfolio-pagination .current,
.portfolio-pagination a:hover {
	border-color: #f5a800;
	background: #f5a800;
	color: #111;
}


/* Empty state
--------------------------------------------------------- */

.portfolio-projects__empty {
	max-width: 700px;
	padding: 40px;
	background: #f5f5f5;
}


/* Bottom CTA
--------------------------------------------------------- */

.portfolio-cta {
	padding: 38px 0;
	background: #f5ad19;
	color: #111;
}

.portfolio-cta__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
}

.portfolio-cta__eyebrow {
	margin: 0 0 5px;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 1.4px;
	text-transform: uppercase;
}

.portfolio-cta__content h2 {
	margin: 0;
	color: #111;
	font-size: 32px;
	line-height: 1.15;
}

.portfolio-cta__actions {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-shrink: 0;
}

.portfolio-cta__primary,
.portfolio-cta__phone {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 22px;
	font-weight: 700;
	text-decoration: none;
}

.portfolio-cta__primary {
	border: 2px solid #111;
	background: #111;
	color: #fff;
}

.portfolio-cta__primary:hover {
	background: #292929;
	color: #fff;
}

.portfolio-cta__phone {
	border: 2px solid #111;
	background: transparent;
	color: #111;
}

.portfolio-cta__phone:hover {
	background: #111;
	color: #fff;
}


/* Tablet
--------------------------------------------------------- */

@media (max-width: 900px) {

	.portfolio-projects {
		padding: 65px 0 75px;
	}

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

	.portfolio-cta__inner {
		align-items: flex-start;
		flex-direction: column;
		gap: 24px;
	}
}


/* Mobile
--------------------------------------------------------- */

@media (max-width: 640px) {

	.portfolio-projects {
		padding: 50px 0 60px;
	}

	.portfolio-projects__heading {
		margin-bottom: 30px;
	}

	.portfolio-grid {
		grid-template-columns: 1fr;
		gap: 22px;
	}

	.portfolio-card__body {
		padding: 20px;
	}

	.portfolio-card__title {
		font-size: 21px;
	}

	.portfolio-cta {
		padding: 32px 0;
	}

	.portfolio-cta__content h2 {
		font-size: 27px;
	}

	.portfolio-cta__actions {
		width: 100%;
		align-items: stretch;
		flex-direction: column;
	}

	.portfolio-cta__primary,
	.portfolio-cta__phone {
		width: 100%;
	}

}
/* =========================================================
   RECENT WORK PAGE
   ========================================================= */

.site-main--recent-work {
	background: #ffffff;
}


/* Hero */

.recent-work-hero {
	background-color: #111111;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}


/* Projects */

.recent-work-projects {
	padding-block: clamp(70px, 8vw, 110px);
	background: #ffffff;
	color: #111111;
}

.recent-work-projects__intro {
	max-width: 760px;
	margin-bottom: 42px;
}

.recent-work-projects__intro .service-section-eyebrow {
	margin-bottom: 14px;
}

.recent-work-projects__intro h2 {
	margin: 0;
	font-size: clamp(2.4rem, 4vw, 3.8rem);
	font-weight: 800;
	line-height: 1.03;
	letter-spacing: -0.04em;
}

.recent-work-projects__intro > p:last-child {
	max-width: 700px;
	margin: 20px 0 0;
	color: #666666;
	font-size: 1rem;
	line-height: 1.7;
}


/* Grid */

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


/* Card */

.recent-work-card {
	display: flex;
	flex-direction: column;
	min-width: 0;
	margin: 0;
	background: #ffffff;
	border: 1px solid #e7e7e7;
	overflow: hidden;
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease,
		border-color 0.25s ease;
}

.recent-work-card:hover {
	transform: translateY(-5px);
	border-color: #dddddd;
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.recent-work-card__media {
	display: block;
	color: inherit;
	text-decoration: none;
}

.recent-work-card__image {
	position: relative;
	width: 100%;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: #111111;
}

.recent-work-card__img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.recent-work-card:hover .recent-work-card__img {
	transform: scale(1.04);
}

.recent-work-card__placeholder {
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
	padding: 24px;
	box-sizing: border-box;
	background:
		linear-gradient(
			135deg,
			#111111,
			#2a2a2a
		);
	color: #f5b52e;
	font-weight: 800;
}


/* Card content */

.recent-work-card__content {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 24px;
}

.recent-work-card__title {
	margin: 0;
	font-size: 1.35rem;
	font-weight: 800;
	line-height: 1.18;
	letter-spacing: -0.025em;
}

.recent-work-card__title a {
	color: #111111;
	text-decoration: none;
}

.recent-work-card__title a:hover,
.recent-work-card__title a:focus-visible {
	color: #f29a18;
}

.recent-work-card__excerpt {
	margin: 14px 0 0;
	color: #666666;
	font-size: 0.94rem;
	line-height: 1.65;
}

.recent-work-card__cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: auto;
	padding-top: 24px;
	color: #111111;
	font-size: 0.9rem;
	font-weight: 800;
	text-decoration: none;
}

.recent-work-card__cta span {
	color: #f29a18;
	transition: transform 0.2s ease;
}

.recent-work-card__cta:hover span,
.recent-work-card__cta:focus-visible span {
	transform: translateX(4px);
}


/* Pagination */

.recent-work-pagination {
	margin-top: 50px;
}

.recent-work-pagination .page-numbers {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.recent-work-pagination .page-numbers a,
.recent-work-pagination .page-numbers span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	min-height: 44px;
	padding-inline: 14px;
	border: 1px solid #dddddd;
	background: #ffffff;
	color: #111111;
	font-weight: 800;
	text-decoration: none;
}

.recent-work-pagination .page-numbers .current,
.recent-work-pagination .page-numbers a:hover,
.recent-work-pagination .page-numbers a:focus-visible {
	border-color: #f5b52e;
	background: #f5b52e;
	color: #111111;
}


/* Empty state */

.recent-work-projects__empty {
	max-width: 700px;
	padding: 34px;
	background: #f6f6f6;
}


/* Tablet */

@media (max-width: 900px) {

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

}


/* Mobile */

@media (max-width: 640px) {

	.recent-work-projects {
		padding-block: 60px;
	}

	.recent-work-projects__intro {
		margin-bottom: 30px;
	}

	.recent-work-grid {
		grid-template-columns: 1fr;
		gap: 22px;
	}

	.recent-work-card__content {
		padding: 22px;
	}

}
/* =========================================================
   RECENT WORK - REMOVE LEGACY PAGE / WPBAKERY SPACING
   ========================================================= */

body.page-template-page-recent-works .site-main,
body.page-template-page-recent-works .site-main--recent-work {
	margin: 0 !important;
	padding: 0 !important;
}

body.page-template-page-recent-works .recent-work-hero {
	margin-top: 0 !important;
}

body.page-template-page-recent-works .entry-content,
body.page-template-page-recent-works .page-content,
body.page-template-page-recent-works .wpb-content-wrapper:empty,
body.page-template-page-recent-works .vc_row:empty {
	display: none !important;
	margin: 0 !important;
	padding: 0 !important;
}

/* Remove any inherited spacing directly after the header */
body.page-template-page-recent-works .site-header + .site-main {
	margin-top: 0 !important;
	padding-top: 0 !important;
}
/* =========================================================
   SINGLE PORTFOLIO PROJECT
   ========================================================= */

.site-main--portfolio-project {
	margin: 0;
	padding: 0;
	background: #ffffff;
}


/* Hero */

.portfolio-project-hero {
	background-color: #111111;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}


/* Main project area */

.portfolio-project {
	padding-block: clamp(70px, 8vw, 110px);
	background: #ffffff;
	color: #111111;
}

.portfolio-project__inner {
	display: grid;
	grid-template-columns:
		minmax(0, 1fr)
		minmax(280px, 0.34fr);
	gap: clamp(50px, 7vw, 100px);
	align-items: start;
}


/* Main content */

.portfolio-project__content {
	min-width: 0;
	max-width: 850px;
}

.portfolio-project__content > h2 {
	margin: 0 0 30px;
	font-size: clamp(2.3rem, 4vw, 3.8rem);
	font-weight: 800;
	line-height: 1.02;
	letter-spacing: -0.04em;
}


/* Existing portfolio content cleanup */

.portfolio-project__body {
	color: #555555;
	font-size: 1rem;
	line-height: 1.75;
}

.portfolio-project__body > *:first-child {
	margin-top: 0;
}

.portfolio-project__body > *:last-child {
	margin-bottom: 0;
}

.portfolio-project__body h2,
.portfolio-project__body h3,
.portfolio-project__body h4 {
	color: #111111;
	font-weight: 800;
	line-height: 1.15;
}

.portfolio-project__body h2 {
	margin: 40px 0 18px;
	font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.portfolio-project__body h3 {
	margin: 32px 0 14px;
	font-size: 1.5rem;
}

.portfolio-project__body p {
	margin: 0 0 20px;
}

.portfolio-project__body ul,
.portfolio-project__body ol {
	margin: 22px 0;
	padding-left: 24px;
}

.portfolio-project__body li {
	margin-bottom: 8px;
}

.portfolio-project__body img {
	display: block;
	width: 100%;
	height: auto;
	margin: 30px 0;
}


/* Strip old WPBakery coloured styling where possible */

.portfolio-project__body .vc_row,
.portfolio-project__body .wpb_wrapper,
.portfolio-project__body .wpb_content_element {
	margin-top: 0;
	margin-bottom: 0;
}

.portfolio-project__body .vc_column-inner {
	padding-top: 0 !important;
}


/* =========================================================
   SINGLE PORTFOLIO - PROJECT DETAILS PANEL
   ========================================================= */

.portfolio-project__sidebar {
	min-width: 0;
}

.portfolio-project__details {
	position: sticky;
	top: 30px;
	padding: 30px;
	background: #f6f6f6;
	border-top: 3px solid #f5b52e;
}

.portfolio-project__details .service-section-eyebrow {
	margin-bottom: 12px;
}

.portfolio-project__details h2 {
	margin: 0;
	color: #111111;
	font-size: 1.7rem;
	font-weight: 800;
	line-height: 1.15;
	letter-spacing: -0.03em;
}

.portfolio-project__details-list {
	margin: 26px 0 0;
}

.portfolio-project__detail {
	padding: 16px 0;
	border-top: 1px solid #dddddd;
}

.portfolio-project__detail:first-child {
	border-top: 0;
	padding-top: 0;
}

.portfolio-project__detail dt {
	margin: 0 0 5px;
	color: #777777;
	font-size: 0.75rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.portfolio-project__detail dd {
	margin: 0;
	color: #111111;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.45;
}

@media (max-width: 900px) {

	.portfolio-project__details {
		position: static;
		max-width: 600px;
	}

}


/* Tablet */

@media (max-width: 900px) {

	.portfolio-project__inner {
		grid-template-columns: 1fr;
	}

	.portfolio-project__content {
		max-width: none;
	}

	.portfolio-project__panel {
		position: static;
		max-width: 600px;
	}

}


/* Mobile */

@media (max-width: 640px) {

	.portfolio-project {
		padding-block: 60px;
	}

	.portfolio-project__inner {
		gap: 40px;
	}

	.portfolio-project__panel {
		padding: 26px 22px;
	}

}
/* Individual project hero title
   Keep the hero dimensions identical to the rest of the site,
   but accommodate longer project names. */

.portfolio-project-hero .service-hero__title {
	max-width: 900px;
	font-size: clamp(2.7rem, 4.4vw, 4.6rem);
	line-height: 1.02;
	letter-spacing: -0.04em;
}

.portfolio-project-hero .service-hero__text {
	max-width: 760px;
}

@media (max-width: 640px) {

	.portfolio-project-hero .service-hero__title {
		font-size: clamp(2.35rem, 10vw, 3.25rem);
	}

}
/* =========================================================
   PORTFOLIO PROJECT GALLERY
   ========================================================= */

.portfolio-gallery {
	padding-block: clamp(70px, 8vw, 100px);
	background: #f6f6f6;
}

.portfolio-gallery__intro {
	max-width: 700px;
	margin-bottom: 34px;
}

.portfolio-gallery__intro h2 {
	margin: 0;
	font-size: clamp(2.2rem, 4vw, 3.4rem);
	font-weight: 800;
	line-height: 1.05;
	letter-spacing: -0.04em;
}

.portfolio-gallery__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
}

/*
 * All project photographs use the same dimensions.
 * This keeps galleries consistent regardless of the
 * original image dimensions.
 */
.portfolio-gallery__item {
	min-width: 0;
	overflow: hidden;
	background: #e9e9e9;
	aspect-ratio: 4 / 3;
}

/*
 * Override the old featured-image gallery behaviour.
 */
.portfolio-gallery__item--featured {
	grid-column: auto;
}

.portfolio-gallery__image,
.portfolio-gallery__item--featured .portfolio-gallery__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}


/* Mobile */

@media (max-width: 640px) {

	.portfolio-gallery {
		padding-block: 60px;
	}

	.portfolio-gallery__grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.portfolio-gallery__item {
		aspect-ratio: 4 / 3;
	}

}
/* =========================================================
   Recent Work - Project Card Meta
   ========================================================= */

.recent-work-card__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin-bottom: 8px;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #f5a623;
}

.recent-work-card__location,
.recent-work-card__service {
	display: inline-flex;
	align-items: center;
}

.recent-work-card__location:not(:last-child)::after {
	content: "•";
	margin-left: 8px;
	color: #b5b5b5;
}

@media (max-width: 640px) {

	.recent-work-card__meta {
		font-size: 11px;
	}

}
/* =========================================================
   HELPFUL GUIDES
   ========================================================= */

.site-main--helpful-guides {
	margin: 0;
	padding: 0;
	background: #ffffff;
}

.helpful-guides-hero {
	background-color: #111111;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.helpful-guides {
	padding-block: clamp(70px, 8vw, 110px);
	background: #ffffff;
}

.helpful-guides__intro {
	max-width: 760px;
	margin-bottom: 42px;
}

.helpful-guides__intro h2 {
	margin: 0;
	font-size: clamp(2.4rem, 4vw, 3.8rem);
	font-weight: 800;
	line-height: 1.03;
	letter-spacing: -0.04em;
}

.helpful-guides__intro > p:last-child {
	max-width: 700px;
	margin: 20px 0 0;
	color: #666666;
	font-size: 1rem;
	line-height: 1.7;
}


/* Grid */

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


/* Cards */

.helpful-guide-card {
	display: flex;
	flex-direction: column;
	min-width: 0;
	margin: 0;
	background: #ffffff;
	border: 1px solid #e7e7e7;
	overflow: hidden;
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease,
		border-color 0.25s ease;
}

.helpful-guide-card:hover {
	transform: translateY(-5px);
	border-color: #dddddd;
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.helpful-guide-card__media {
	display: block;
	text-decoration: none;
}

.helpful-guide-card__image {
	width: 100%;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: #111111;
}

.helpful-guide-card__img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.helpful-guide-card:hover .helpful-guide-card__img {
	transform: scale(1.04);
}

.helpful-guide-card__placeholder {
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
	padding: 24px;
	box-sizing: border-box;
	background:
		linear-gradient(
			135deg,
			#111111,
			#2a2a2a
		);
	color: #f5b52e;
	font-weight: 800;
}


/* Content */

.helpful-guide-card__content {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 24px;
}

.helpful-guide-card__meta {
	margin: 0 0 9px;
	color: #f29a18;
	font-size: 0.75rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.helpful-guide-card__title {
	margin: 0;
	font-size: 1.35rem;
	font-weight: 800;
	line-height: 1.18;
	letter-spacing: -0.025em;
}

.helpful-guide-card__title a {
	color: #111111;
	text-decoration: none;
}

.helpful-guide-card__title a:hover,
.helpful-guide-card__title a:focus-visible {
	color: #f29a18;
}

.helpful-guide-card__excerpt {
	margin: 14px 0 0;
	color: #666666;
	font-size: 0.94rem;
	line-height: 1.65;
}

.helpful-guide-card__cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: auto;
	padding-top: 24px;
	color: #111111;
	font-size: 0.9rem;
	font-weight: 800;
	text-decoration: none;
}

.helpful-guide-card__cta span {
	color: #f29a18;
	transition: transform 0.2s ease;
}

.helpful-guide-card__cta:hover span,
.helpful-guide-card__cta:focus-visible span {
	transform: translateX(4px);
}


/* Pagination */

.helpful-guides-pagination {
	margin-top: 50px;
}

.helpful-guides-pagination .page-numbers {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.helpful-guides-pagination .page-numbers a,
.helpful-guides-pagination .page-numbers span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	min-height: 44px;
	padding-inline: 14px;
	border: 1px solid #dddddd;
	background: #ffffff;
	color: #111111;
	font-weight: 800;
	text-decoration: none;
}

.helpful-guides-pagination .page-numbers .current,
.helpful-guides-pagination .page-numbers a:hover,
.helpful-guides-pagination .page-numbers a:focus-visible {
	border-color: #f5b52e;
	background: #f5b52e;
	color: #111111;
}


/* Empty state */

.helpful-guides__empty {
	max-width: 700px;
	padding: 34px;
	background: #f6f6f6;
}


/* Tablet */

@media (max-width: 900px) {

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

}


/* Mobile */

@media (max-width: 640px) {

	.helpful-guides {
		padding-block: 60px;
	}

	.helpful-guides__intro {
		margin-bottom: 30px;
	}

	.helpful-guides-grid {
		grid-template-columns: 1fr;
		gap: 22px;
	}

	.helpful-guide-card__content {
		padding: 22px;
	}

}
/* Helpful Guides - remove legacy page spacing */

body.page-template-page-helpful-guides .site-main,
body.page-template-page-helpful-guides .site-main--helpful-guides,
body.page-template-page-helpful-guides #primary {
	margin: 0 !important;
	padding: 0 !important;
}

body.page-template-page-helpful-guides .site-header + .site-main {
	margin-top: 0 !important;
	padding-top: 0 !important;
}

body.page-template-page-helpful-guides .helpful-guides-hero {
	margin-top: 0 !important;
}
/* =========================================================
   SINGLE HELPFUL GUIDE
   ========================================================= */

.site-main--guide {
	margin: 0;
	padding: 0;
	background: #ffffff;
}

.guide-hero {
	background-color: #111111;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}


/* =========================================================
   GUIDE ARTICLE
   ========================================================= */

.guide-article {
	padding-block: clamp(70px, 8vw, 105px);
	background: #ffffff;
}
.guide-article__heading {
	margin: 0 0 32px;
	color: #111111;
	font-size: clamp(2rem, 4vw, 3.2rem);
	font-weight: 800;
	line-height: 1.08;
	letter-spacing: -0.04em;
}

.guide-article__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 330px;
	gap: clamp(50px, 7vw, 90px);
	align-items: start;
}

.guide-article__content {
	min-width: 0;
	max-width: 800px;
}


/* =========================================================
   GUIDE CONTENT TYPOGRAPHY
   ========================================================= */

.guide-article__body {
	color: #555555;
	font-size: 1rem;
	line-height: 1.8;
}

.guide-article__body > *:first-child {
	margin-top: 0;
}

.guide-article__body > *:last-child {
	margin-bottom: 0;
}

.guide-article__body p {
	margin: 0 0 22px;
}

.guide-article__body h2 {
	margin: 48px 0 18px;
	color: #111111;
	font-size: clamp(1.8rem, 3vw, 2.5rem);
	font-weight: 800;
	line-height: 1.12;
	letter-spacing: -0.035em;
}

.guide-article__body h3 {
	margin: 36px 0 14px;
	color: #111111;
	font-size: 1.4rem;
	font-weight: 800;
	line-height: 1.25;
}

.guide-article__body h4 {
	margin: 30px 0 12px;
	color: #111111;
	font-size: 1.1rem;
	font-weight: 800;
}

.guide-article__body ul,
.guide-article__body ol {
	margin: 0 0 26px;
	padding-left: 24px;
}

.guide-article__body li {
	margin-bottom: 9px;
}

.guide-article__body a {
	color: #d98000;
	font-weight: 700;
}

.guide-article__body strong {
	color: #222222;
}

.guide-article__body img {
	max-width: 100%;
	height: auto;
}

.guide-article__body figure {
	max-width: 100%;
	margin: 34px 0;
}

.guide-article__body figcaption {
	margin-top: 8px;
	color: #777777;
	font-size: 0.82rem;
	line-height: 1.5;
}


/* =========================================================
   GUIDE SIDEBAR
   ========================================================= */

.guide-article__sidebar {
	min-width: 0;
}

.guide-info {
	position: sticky;
	top: 30px;
	padding: 30px;
	background: #f6f6f6;
	border-top: 3px solid #f5b52e;
}

.guide-info .service-section-eyebrow {
	margin-bottom: 12px;
}

.guide-info h2 {
	margin: 0 0 18px;
	color: #111111;
	font-size: 1.7rem;
	font-weight: 800;
	line-height: 1.15;
	letter-spacing: -0.03em;
}

.guide-info p {
	margin: 0 0 16px;
	color: #666666;
	font-size: 0.94rem;
	line-height: 1.65;
}

.guide-info .button {
	width: 100%;
	margin-top: 8px;
	text-align: center;
	justify-content: center;
}

.guide-info__phone {
	display: block;
	margin-top: 17px;
	color: #111111;
	font-size: 0.9rem;
	font-weight: 800;
	text-align: center;
	text-decoration: none;
}

.guide-info__phone:hover,
.guide-info__phone:focus-visible {
	color: #d98000;
}


/* Back to Helpful Guides */

.guide-back-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 24px;
	color: #111111;
	font-size: 0.9rem;
	font-weight: 800;
	text-decoration: none;
}

.guide-back-link span {
	color: #f29a18;
	transition: transform 0.2s ease;
}

.guide-back-link:hover span,
.guide-back-link:focus-visible span {
	transform: translateX(-4px);
}


/* =========================================================
   REMOVE LEGACY SINGLE POST SPACING
   ========================================================= */

body.single-post .site-main,
body.single-post .site-main--guide,
body.single-post #primary {
	margin: 0 !important;
	padding: 0 !important;
}

body.single-post .site-header + .site-main {
	margin-top: 0 !important;
	padding-top: 0 !important;
}

body.single-post .guide-hero {
	margin-top: 0 !important;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

	.guide-article__inner {
		grid-template-columns: 1fr;
		gap: 50px;
	}

	.guide-article__content {
		max-width: none;
	}

	.guide-info {
		position: static;
		max-width: 600px;
	}

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 640px) {

	.guide-article {
		padding-block: 60px;
	}

	.guide-article__inner {
		gap: 40px;
	}

	.guide-info {
		padding: 24px;
	}

	.guide-article__body h2 {
		margin-top: 38px;
	}

}
/* =========================================================
   SINGLE GUIDE HERO - FIT LONG TITLES WITHOUT CHANGING HEIGHT
   ========================================================= */

.guide-hero .service-hero__content {
	max-width: 820px;
}

.guide-hero .service-hero__title {
	max-width: 820px;
	font-size: clamp(2.7rem, 4.2vw, 4.4rem);
	line-height: 0.98;
	letter-spacing: -0.045em;
	margin-bottom: 18px;
}

.guide-hero .service-hero__text {
	max-width: 720px;
	margin-bottom: 20px;
	font-size: 1rem;
	line-height: 1.55;
}

.guide-hero .service-hero__actions {
	margin-top: 0;
	gap: 12px;
}


/* Tablet */

@media (max-width: 900px) {

	.guide-hero .service-hero__title {
		font-size: clamp(2.5rem, 6vw, 3.8rem);
	}

}


/* Mobile */

@media (max-width: 640px) {

	.guide-hero .service-hero__title {
		font-size: clamp(2.2rem, 9vw, 3rem);
		line-height: 1;
	}

	.guide-hero .service-hero__text {
		font-size: 0.95rem;
		line-height: 1.5;
	}

	.guide-hero .service-hero__actions {
		gap: 10px;
	}

}
/* =========================================================
   CONTACT PAGE
   ========================================================= */

.site-main--contact {
	margin: 0;
	padding: 0;
	background: #ffffff;
}

.contact-hero {
	background-color: #111111;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}


/* =========================================================
   CONTACT METHOD CARDS - BRANDED
   ========================================================= */

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

.contact-method-card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 300px;
	padding: 34px;
	box-sizing: border-box;
	text-decoration: none;
	overflow: hidden;
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease;
}

.contact-method-card:hover,
.contact-method-card:focus-visible {
	transform: translateY(-6px);
	box-shadow: 0 22px 48px rgba(0, 0, 0, 0.18);
}


/* Standard dark contact cards */

.contact-method-card--dark {
	background: #111111;
	border-top: 4px solid #f5b52e;
	color: #ffffff;
}


/* WhatsApp card */

.contact-method-card--whatsapp {
	background: #161616;
	border-top: 4px solid #25d366;
	color: #ffffff;
}

.contact-method-card::after {
	content: "";
	position: absolute;
	right: -50px;
	bottom: -80px;
	width: 180px;
	height: 180px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 50%;
}

.contact-method-card::before {
	content: "";
	position: absolute;
	right: -5px;
	bottom: -35px;
	width: 100px;
	height: 100px;
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 50%;
}

.contact-method-card__eyebrow {
	position: relative;
	z-index: 1;
	margin-bottom: 26px;
	color: #f5b52e;
	font-size: 0.75rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.12em;
}

.contact-method-card--whatsapp .contact-method-card__eyebrow {
	color: #25d366;
}

.contact-method-card__title {
	position: relative;
	z-index: 1;
	max-width: 300px;
	color: #ffffff;
	font-size: clamp(1.6rem, 2.3vw, 2rem);
	font-weight: 800;
	line-height: 1.12;
	letter-spacing: -0.03em;
}

.contact-method-card__text {
	position: relative;
	z-index: 1;
	max-width: 320px;
	margin-top: 18px;
	color: rgba(255, 255, 255, 0.68);
	font-size: 0.94rem;
	line-height: 1.65;
}

.contact-method-card__action {
	position: relative;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-top: auto;
	padding-top: 32px;
	color: #ffffff;
	font-size: 0.9rem;
	font-weight: 800;
}

.contact-method-card__action strong {
	color: #f5b52e;
	font-size: 1.2rem;
	transition: transform 0.2s ease;
}

.contact-method-card--whatsapp .contact-method-card__action strong {
	color: #25d366;
}

.contact-method-card:hover .contact-method-card__action strong,
.contact-method-card:focus-visible .contact-method-card__action strong {
	transform: translateX(5px);
}

@media (max-width: 900px) {

	.contact-methods__grid {
		grid-template-columns: 1fr;
	}

	.contact-method-card {
		min-height: 240px;
	}

}

@media (max-width: 640px) {

	.contact-method-card {
		min-height: 220px;
		padding: 28px 24px;
	}

}


/* =========================================================
   CONTACT ENQUIRY
   ========================================================= */

.contact-enquiry {
	padding-block: clamp(75px, 8vw, 110px);
	background: #f3f3f3;
}

.contact-enquiry__inner {
	display: grid;
	grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
	gap: clamp(50px, 7vw, 90px);
	align-items: start;
}

.contact-enquiry__info h2 {
	max-width: 520px;
	margin: 0;
	color: #111111;
	font-size: clamp(2.5rem, 4.5vw, 4rem);
	font-weight: 800;
	line-height: 1.02;
	letter-spacing: -0.045em;
}

.contact-enquiry__lead {
	max-width: 550px;
	margin: 22px 0 0;
	color: #666666;
	font-size: 1rem;
	line-height: 1.75;
}

.contact-enquiry__details {
	margin-top: 42px;
	border-top: 1px solid #dddddd;
}

.contact-enquiry__detail {
	display: grid;
	grid-template-columns: 130px 1fr;
	gap: 20px;
	padding-block: 18px;
	border-bottom: 1px solid #dddddd;
}

.contact-enquiry__detail span {
	color: #777777;
	font-size: 0.78rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.07em;
}

.contact-enquiry__detail strong {
	color: #111111;
	font-size: 0.94rem;
	line-height: 1.5;
}


/* =========================================================
   CONTACT FORM
   ========================================================= */

.contact-form-panel {
	padding: clamp(28px, 4vw, 46px);
	background: #ffffff;
	box-shadow: 0 18px 55px rgba(0, 0, 0, 0.07);
}

.contact-form-panel__heading {
	margin-bottom: 32px;
}

.contact-form-panel__heading h2 {
	margin: 0;
	color: #111111;
	font-size: clamp(2rem, 3vw, 2.8rem);
	font-weight: 800;
	line-height: 1.08;
	letter-spacing: -0.035em;
}

.contact-form-panel__heading > p:last-child {
	margin: 14px 0 0;
	color: #666666;
	line-height: 1.65;
}

.shr-contact-form {
	display: grid;
	gap: 20px;
}

.shr-contact-form__row {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.shr-contact-form__field {
	display: grid;
	gap: 8px;
}

.shr-contact-form__field label {
	color: #222222;
	font-size: 0.82rem;
	font-weight: 800;
}

.shr-contact-form__field label span {
	color: #d98000;
}

.shr-contact-form__field input,
.shr-contact-form__field select,
.shr-contact-form__field textarea {
	width: 100%;
	margin: 0;
	padding: 14px 15px;
	box-sizing: border-box;
	border: 1px solid #d9d9d9;
	border-radius: 0;
	background: #ffffff;
	color: #111111;
	font: inherit;
	line-height: 1.4;
	outline: none;
	transition:
		border-color 0.2s ease,
		box-shadow 0.2s ease;
}

.shr-contact-form__field input,
.shr-contact-form__field select {
	min-height: 50px;
}

.shr-contact-form__field textarea {
	min-height: 150px;
	resize: vertical;
}

.shr-contact-form__field input:focus,
.shr-contact-form__field select:focus,
.shr-contact-form__field textarea:focus {
	border-color: #f5b52e;
	box-shadow: 0 0 0 3px rgba(245, 181, 46, 0.15);
}

.shr-contact-form__consent {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 11px;
	align-items: start;
}

.shr-contact-form__consent input {
	width: 18px;
	height: 18px;
	margin: 2px 0 0;
}

.shr-contact-form__consent label {
	color: #666666;
	font-size: 0.82rem;
	line-height: 1.55;
}

.shr-contact-form__submit {
	width: 100%;
	min-height: 54px;
	border: 0;
	cursor: pointer;
	font: inherit;
	font-weight: 800;
}

.shr-contact-form__privacy {
	margin: -4px 0 0;
	color: #888888;
	font-size: 0.75rem;
	line-height: 1.5;
	text-align: center;
}


/* =========================================================
   REMOVE LEGACY CONTACT PAGE SPACING
   ========================================================= */

body.page-template-page-contact .site-main,
body.page-template-page-contact .site-main--contact,
body.page-template-page-contact #primary {
	margin: 0 !important;
	padding: 0 !important;
}

body.page-template-page-contact .site-header + .site-main {
	margin-top: 0 !important;
	padding-top: 0 !important;
}

body.page-template-page-contact .contact-hero {
	margin-top: 0 !important;
}


/* =========================================================
   CONTACT TABLET
   ========================================================= */

@media (max-width: 900px) {

	.contact-methods__grid {
		grid-template-columns: 1fr;
	}

	.contact-method-card {
		min-height: 220px;
	}

	.contact-enquiry__inner {
		grid-template-columns: 1fr;
		gap: 50px;
	}

}


/* =========================================================
   CONTACT MOBILE
   ========================================================= */

@media (max-width: 640px) {

	.contact-methods,
	.contact-enquiry {
		padding-block: 60px;
	}

	.contact-methods__intro {
		margin-bottom: 30px;
	}

	.contact-method-card {
		min-height: 200px;
		padding: 25px;
	}

	.contact-form-panel {
		padding: 25px 20px;
	}

	.shr-contact-form__row {
		grid-template-columns: 1fr;
	}

	.contact-enquiry__detail {
		grid-template-columns: 1fr;
		gap: 5px;
	}

}
/*
 * Contact form honeypot.
 *
 * Intentionally hidden from real visitors.
 */
.shr-contact-form__website {
	position: absolute !important;
	left: -9999px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
}
/* =========================================================
   CONTACT FORM FEEDBACK
   ========================================================= */

.shr-contact-notice {
	margin: 0 0 28px;
	padding: 18px 20px;
	border-left: 4px solid;
}

.shr-contact-notice strong {
	display: block;
	margin-bottom: 5px;
	color: #111111;
	font-size: 0.95rem;
	font-weight: 800;
}

.shr-contact-notice p {
	margin: 0;
	color: #555555;
	font-size: 0.86rem;
	line-height: 1.55;
}

.shr-contact-notice--success {
	border-color: #2d8a4e;
	background: #eef8f1;
}

.shr-contact-notice--error {
	border-color: #b93838;
	background: #fff1f1;
}

/*
 * Leave room above the form when arriving via #contact-form.
 */
#contact-form {
	scroll-margin-top: 30px;
}
/* =========================================================
   LOCATION PAGES
   ========================================================= */

.site-main--location {
	margin: 0;
	padding: 0;
	background: #ffffff;
}

.location-hero {
	background-color: #111111;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}


/* Intro */

.location-intro {
	padding-block: clamp(75px, 8vw, 110px);
	background: #ffffff;
}

.location-intro__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
	gap: clamp(50px, 7vw, 90px);
	align-items: center;
}

.location-intro__content h2,
.location-detail__content h2,
.location-services__intro h2,
.location-nearby__intro h2 {
	margin: 0;
	color: #111111;
	font-size: clamp(2.4rem, 4vw, 3.8rem);
	font-weight: 800;
	line-height: 1.03;
	letter-spacing: -0.04em;
}

.location-copy {
	margin-top: 22px;
}

.location-copy p {
	margin: 0 0 18px;
	color: #666666;
	font-size: 1rem;
	line-height: 1.75;
}

.location-copy p:last-child {
	margin-bottom: 0;
}

.location-intro__media {
	min-width: 0;
}

.location-intro__image {
	display: block;
	width: 100%;
	height: 430px;
	object-fit: cover;
}


/* Services */

.location-services {
	padding-block: clamp(75px, 8vw, 110px);
	background: #f6f6f6;
}

.location-services__intro {
	max-width: 760px;
	margin-bottom: 40px;
}

.location-services__intro > p:last-child {
	max-width: 700px;
	margin: 18px 0 0;
	color: #666666;
	line-height: 1.7;
}

.location-services__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.location-service-card {
	display: flex;
	flex-direction: column;
	min-height: 250px;
	padding: 26px;
	background: #ffffff;
	border-top: 3px solid transparent;
	color: #111111;
	text-decoration: none;
	transition:
		transform 0.22s ease,
		border-color 0.22s ease,
		box-shadow 0.22s ease;
}

.location-service-card:hover,
.location-service-card:focus-visible {
	transform: translateY(-4px);
	border-top-color: #f5b52e;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.07);
}

.location-service-card__eyebrow {
	color: #f29a18;
	font-size: 0.72rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.09em;
}

.location-service-card h3 {
	margin: 18px 0 0;
	color: #111111;
	font-size: 1.25rem;
	font-weight: 800;
	line-height: 1.18;
}

.location-service-card p {
	margin: 13px 0 0;
	color: #666666;
	font-size: 0.9rem;
	line-height: 1.6;
}

.location-service-card__cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: auto;
	padding-top: 24px;
	font-size: 0.86rem;
	font-weight: 800;
}

.location-service-card__cta strong {
	color: #f29a18;
	transition: transform 0.2s ease;
}

.location-service-card:hover .location-service-card__cta strong {
	transform: translateX(4px);
}


/* Detail */

.location-detail {
	padding-block: clamp(75px, 8vw, 110px);
	background: #111111;
	color: #ffffff;
}

.location-detail__inner {
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
	gap: clamp(55px, 8vw, 100px);
	align-items: start;
}

.location-detail__content h2 {
	color: #ffffff;
}

.location-detail__content .location-copy p {
	color: rgba(255, 255, 255, 0.7);
}

.location-detail__points {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 2px;
	background: rgba(255, 255, 255, 0.12);
}

.location-detail__point {
	min-height: 210px;
	padding: 28px;
	background: #181818;
}

.location-detail__point > span {
	display: block;
	margin-bottom: 28px;
	color: #f5b52e;
	font-size: 0.78rem;
	font-weight: 900;
	letter-spacing: 0.1em;
}

.location-detail__point h3 {
	margin: 0;
	color: #ffffff;
	font-size: 1.2rem;
	font-weight: 800;
	line-height: 1.2;
}

.location-detail__point p {
	margin: 12px 0 0;
	color: rgba(255, 255, 255, 0.62);
	font-size: 0.9rem;
	line-height: 1.6;
}


/* Nearby */

.location-nearby {
	padding-block: clamp(70px, 7vw, 95px);
	background: #ffffff;
}

.location-nearby__inner {
	display: grid;
	grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
	gap: clamp(45px, 7vw, 90px);
	align-items: center;
}

.location-nearby__intro > p:last-child {
	margin: 18px 0 0;
	color: #666666;
	line-height: 1.7;
}

.location-nearby__list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	border-top: 1px solid #e4e4e4;
}

.location-nearby__item {
	display: flex;
	align-items: center;
	min-height: 68px;
	padding: 14px 18px;
	border-bottom: 1px solid #e4e4e4;
	color: #111111;
	font-weight: 700;
}

.location-nearby__item:nth-child(odd) {
	border-right: 1px solid #e4e4e4;
}


/* Remove legacy page spacing */

body.page-template-page-location .site-main,
body.page-template-page-location .site-main--location,
body.page-template-page-location #primary {
	margin: 0 !important;
	padding: 0 !important;
}

body.page-template-page-location .site-header + .site-main {
	margin-top: 0 !important;
	padding-top: 0 !important;
}


/* Tablet */

@media (max-width: 1000px) {

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

}

@media (max-width: 900px) {

	.location-intro__inner,
	.location-detail__inner,
	.location-nearby__inner {
		grid-template-columns: 1fr;
	}

	.location-intro__content,
	.location-detail__content,
	.location-nearby__intro {
		max-width: 700px;
	}

}


/* Mobile */

@media (max-width: 640px) {

	.location-intro,
	.location-services,
	.location-detail,
	.location-nearby {
		padding-block: 60px;
	}

	.location-intro__image {
		height: 300px;
	}

	.location-services__grid,
	.location-detail__points,
	.location-nearby__list {
		grid-template-columns: 1fr;
	}

	.location-service-card {
		min-height: 220px;
	}

	.location-detail__point {
		min-height: auto;
	}

	.location-nearby__item:nth-child(odd) {
		border-right: 0;
	}

}
/* =========================================================
   LOCATION PAGE POLISH
   ========================================================= */

/* Slightly tighter intro image */
.location-intro__image {
	height: 390px;
}


/* Tighten services section after the card grid */
.location-services {
	padding-bottom: clamp(65px, 6vw, 85px);
}


/* Give dark-section text a little more room */
.location-detail__inner {
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
	gap: clamp(45px, 6vw, 80px);
}


/* Prevent long local headings becoming too aggressive */
.location-detail__content h2 {
	font-size: clamp(2.2rem, 3.5vw, 3.35rem);
	line-height: 1.04;
}


/* Slightly improve card balance */
.location-service-card {
	min-height: 235px;
}


/* Tablet */
@media (max-width: 900px) {

	.location-intro__image {
		height: 360px;
	}

	.location-detail__content h2 {
		font-size: clamp(2.2rem, 5vw, 3rem);
	}

}


/* Mobile */
@media (max-width: 640px) {

	.location-intro__image {
		height: 290px;
	}

	.location-service-card {
		min-height: 210px;
	}

	.location-detail__content h2 {
		font-size: clamp(2rem, 8vw, 2.6rem);
	}

}
/* =========================================================
   AREAS WE COVER
   ========================================================= */

.site-main--areas {
	margin: 0;
	padding: 0;
	background: #ffffff;
}

.areas-hero {
	background-color: #111111;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}


/* Locations */

.areas-locations {
	padding-block: clamp(75px, 8vw, 110px);
	background: #ffffff;
}

.areas-locations__intro {
	max-width: 760px;
	margin-bottom: 42px;
}

.areas-locations__intro h2,
.areas-local__content h2,
.areas-check h2 {
	margin: 0;
	color: #111111;
	font-size: clamp(2.4rem, 4vw, 3.8rem);
	font-weight: 800;
	line-height: 1.03;
	letter-spacing: -0.04em;
}

.areas-locations__intro > p:last-child,
.areas-check p {
	margin: 18px 0 0;
	color: #666666;
	line-height: 1.7;
}

.areas-location-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.areas-location-card {
	display: flex;
	flex-direction: column;
	min-height: 220px;
	padding: 26px;
	background: #f6f6f6;
	border-top: 3px solid transparent;
	color: #111111;
	text-decoration: none;
	transition:
		transform 0.22s ease,
		border-color 0.22s ease,
		box-shadow 0.22s ease;
}

.areas-location-card:hover,
.areas-location-card:focus-visible {
	transform: translateY(-4px);
	border-top-color: #f5b52e;
	background: #ffffff;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.areas-location-card__eyebrow {
	color: #f29a18;
	font-size: 0.72rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.09em;
}

.areas-location-card h3 {
	margin: 18px 0 0;
	font-size: 1.4rem;
	font-weight: 800;
	line-height: 1.15;
}

.areas-location-card p {
	margin: 12px 0 0;
	color: #666666;
	font-size: 0.9rem;
	line-height: 1.6;
}

.areas-location-card__cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: auto;
	padding-top: 24px;
	font-size: 0.86rem;
	font-weight: 800;
}

.areas-location-card__cta strong {
	color: #f29a18;
}


/* Local authority section */

.areas-local {
	padding-block: clamp(75px, 8vw, 110px);
	background: #111111;
	color: #ffffff;
}

.areas-local__inner {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	gap: clamp(50px, 7vw, 90px);
	align-items: start;
}

.areas-local__content h2 {
	color: #ffffff;
}

.areas-local__content p {
	margin: 20px 0 0;
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.75;
}

.areas-local__points {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 2px;
	background: rgba(255, 255, 255, 0.12);
}

.areas-local__point {
	min-height: 190px;
	padding: 28px;
	background: #181818;
}

.areas-local__point span {
	color: #f5b52e;
	font-size: 0.78rem;
	font-weight: 900;
	letter-spacing: 0.1em;
}

.areas-local__point h3 {
	margin: 26px 0 0;
	color: #ffffff;
	font-size: 1.15rem;
	font-weight: 800;
}

.areas-local__point p {
	margin: 10px 0 0;
	color: rgba(255, 255, 255, 0.62);
	font-size: 0.9rem;
	line-height: 1.55;
}


/* Not listed CTA */

.areas-check {
	padding-block: clamp(65px, 7vw, 90px);
	background: #f6f6f6;
}

.areas-check__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 40px;
	align-items: center;
}

.areas-check__inner > div {
	max-width: 720px;
}


/* Remove old page spacing */

body.page-template-page-areas-we-cover .site-main,
body.page-template-page-areas-we-cover #primary {
	margin: 0 !important;
	padding: 0 !important;
}

body.page-template-page-areas-we-cover .site-header + .site-main {
	margin-top: 0 !important;
	padding-top: 0 !important;
}


/* Responsive */

@media (max-width: 1000px) {

	.areas-location-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

}

@media (max-width: 900px) {

	.areas-local__inner {
		grid-template-columns: 1fr;
	}

	.areas-check__inner {
		grid-template-columns: 1fr;
	}

}

@media (max-width: 760px) {

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

}

@media (max-width: 640px) {

	.areas-locations,
	.areas-local,
	.areas-check {
		padding-block: 60px;
	}

	.areas-location-grid,
	.areas-local__points {
		grid-template-columns: 1fr;
	}

	.areas-location-card {
		min-height: 190px;
	}

	.areas-local__point {
		min-height: auto;
	}

}
/* =========================================================
   404 PAGE
   ========================================================= */

.site-main--404 {
	margin: 0;
	padding: 0;
	background: #111111;
}

.error-404 {
	padding-block: clamp(80px, 10vw, 140px);
	background:
		linear-gradient(
			135deg,
			#111111 0%,
			#181818 55%,
			#101010 100%
		);
	color: #ffffff;
}

.error-404__inner {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	gap: clamp(55px, 8vw, 110px);
	align-items: start;
}

.error-404__content {
	max-width: 620px;
}

.error-404__code {
	margin: 0 0 8px;
	color: #f5b52e;
	font-size: clamp(4.5rem, 10vw, 8rem);
	font-weight: 900;
	line-height: 0.9;
	letter-spacing: -0.07em;
}

.error-404__content h1,
.error-404__links h2 {
	margin: 0;
	color: #ffffff;
	font-size: clamp(2.4rem, 4vw, 3.8rem);
	font-weight: 800;
	line-height: 1.03;
	letter-spacing: -0.04em;
}

.error-404__text {
	max-width: 560px;
	margin: 22px 0 0;
	color: rgba(255, 255, 255, 0.7);
	font-size: 1rem;
	line-height: 1.75;
}

.error-404__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 30px;
}

.error-404__links {
	min-width: 0;
}

.error-404__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 2px;
	margin-top: 28px;
	background: rgba(255, 255, 255, 0.12);
}

.error-404__card {
	display: flex;
	flex-direction: column;
	min-height: 190px;
	padding: 26px;
	background: #181818;
	color: #ffffff;
	text-decoration: none;
	transition:
		transform 0.2s ease,
		background 0.2s ease;
}

.error-404__card:hover,
.error-404__card:focus-visible {
	transform: translateY(-3px);
	background: #202020;
}

.error-404__card span {
	color: #f5b52e;
	font-size: 0.76rem;
	font-weight: 900;
	letter-spacing: 0.1em;
}

.error-404__card strong {
	margin-top: 22px;
	font-size: 1.15rem;
	font-weight: 800;
}

.error-404__card p {
	margin: 10px 0 0;
	color: rgba(255, 255, 255, 0.62);
	font-size: 0.9rem;
	line-height: 1.55;
}

.error-404__phone {
	margin: 24px 0 0;
	color: rgba(255, 255, 255, 0.68);
}

.error-404__phone a {
	color: #f5b52e;
	font-weight: 800;
	text-decoration: none;
}

@media (max-width: 900px) {

	.error-404__inner {
		grid-template-columns: 1fr;
	}

}

@media (max-width: 640px) {

	.error-404 {
		padding-block: 70px;
	}

	.error-404__grid {
		grid-template-columns: 1fr;
	}

	.error-404__actions {
		flex-direction: column;
	}

	.error-404__actions .button {
		width: 100%;
		text-align: center;
	}

}
.column-shr_seo_audit {
	width: 190px;
}

.shr-audit-problems {
	margin-top: 4px;
}

.shr-audit-problems span {
	display: block;
	font-size: 11px;
	line-height: 1.35;
	color: #646970;
}