/*
Theme Name: Polaris Drafting
Theme URI: https://polarisdrafting.com/
Author: Polaris Drafting
Description: A fast, accessible one-page WordPress theme for Polaris Drafting's HVAC shop drawing and BIM coordination services.
Version: 1.0.6
Requires at least: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: polaris-drafting
*/

:root {
	--polaris-black: #020407;
	--polaris-black-soft: #05090f;
	--polaris-navy: #06172b;
	--polaris-navy-light: #0b2542;
	--polaris-blue: #0878e8;
	--polaris-blue-bright: #2aa6ff;
	--polaris-white: #f7f9fc;
	--polaris-gray: #b5c0ce;
	--polaris-gray-dark: #77869a;
	--polaris-line: rgba(143, 175, 211, 0.2);
	--polaris-card: rgba(9, 22, 38, 0.78);
	--polaris-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
	--polaris-font: Inter, Aptos, "Segoe UI", Helvetica, Arial, sans-serif;
	--polaris-display: "Arial Narrow", "Bahnschrift Condensed", "Aptos Display", "Segoe UI", sans-serif;
	--polaris-shell: min(1240px, calc(100vw - 48px));
	--polaris-header-height: 96px;
}

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

html {
	background: var(--polaris-black);
	scroll-padding-top: calc(var(--polaris-header-height) + 20px);
}

@media (prefers-reduced-motion: no-preference) {
	html {
		scroll-behavior: smooth;
	}
}

body {
	margin: 0;
	background: var(--polaris-black);
	color: var(--polaris-white);
	font-family: var(--polaris-font);
	font-size: 16px;
	line-height: 1.65;
	overflow-x: hidden;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
}

body.menu-open,
body.preview-open {
	overflow: hidden;
}

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

img {
	height: auto;
}

a {
	color: inherit;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.2em;
}

a:hover {
	color: var(--polaris-blue-bright);
}

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

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

:focus-visible {
	outline: 3px solid var(--polaris-blue-bright);
	outline-offset: 4px;
}

::selection {
	background: var(--polaris-blue);
	color: #fff;
}

.site-shell {
	width: var(--polaris-shell);
	margin-inline: auto;
}

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

.screen-reader-text:focus,
.skip-link:focus {
	top: 14px;
	left: 14px;
	z-index: 10000;
	width: auto;
	height: auto;
	padding: 12px 18px;
	margin: 0;
	clip: auto;
	background: #fff;
	color: #000;
	font-weight: 700;
	white-space: normal;
}

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

h1,
h2,
h3 {
	font-family: var(--polaris-display);
	font-stretch: condensed;
	line-height: 1.05;
}

h2 {
	margin-bottom: 22px;
	font-size: clamp(2.45rem, 4.6vw, 4.8rem);
	font-weight: 800;
	letter-spacing: -0.035em;
	text-transform: uppercase;
}

h3 {
	font-size: 1.55rem;
	font-weight: 750;
	letter-spacing: -0.015em;
}

.eyebrow {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 20px;
	color: var(--polaris-blue-bright);
	font-size: 0.77rem;
	font-weight: 750;
	letter-spacing: 0.15em;
	line-height: 1.4;
	text-transform: uppercase;
}

.eyebrow::before {
	width: 34px;
	height: 1px;
	background: currentColor;
	content: "";
}

.text-blue {
	color: var(--polaris-blue);
}

.button {
	display: inline-flex;
	min-height: 54px;
	align-items: center;
	justify-content: center;
	padding: 14px 27px;
	border: 1px solid var(--polaris-blue);
	border-radius: 5px;
	background: linear-gradient(135deg, #0982f5 0%, #0758ad 100%);
	box-shadow: 0 10px 32px rgba(8, 120, 232, 0.24);
	color: #fff;
	font-size: 0.84rem;
	font-weight: 750;
	letter-spacing: 0.08em;
	line-height: 1;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.button:hover {
	border-color: var(--polaris-blue-bright);
	background: linear-gradient(135deg, #1692ff 0%, #0870d9 100%);
	box-shadow: 0 13px 38px rgba(8, 120, 232, 0.35);
	color: #fff;
	transform: translateY(-2px);
}

.button--outline {
	border-color: rgba(247, 249, 252, 0.52);
	background: rgba(2, 4, 7, 0.28);
	box-shadow: none;
}

.button--outline:hover {
	border-color: #fff;
	background: rgba(255, 255, 255, 0.08);
	box-shadow: none;
}

.button--compact {
	min-height: 48px;
	padding: 12px 22px;
}

.text-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--polaris-blue-bright);
	font-size: 0.83rem;
	font-weight: 750;
	letter-spacing: 0.08em;
	text-decoration: none;
	text-transform: uppercase;
}

.text-link span {
	font-size: 1.3em;
	transition: transform 160ms ease;
}

.text-link:hover span {
	transform: translateX(5px);
}

/* Header */
.site-header {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	z-index: 1000;
	border-bottom: 1px solid transparent;
	background: linear-gradient(180deg, rgba(2, 4, 7, 0.96), rgba(2, 4, 7, 0.72));
	transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
	border-bottom-color: rgba(126, 159, 195, 0.16);
	background: rgba(2, 4, 7, 0.94);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
	backdrop-filter: blur(16px);
}

body.admin-bar .site-header {
	top: 32px;
}

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

.site-branding {
	width: 276px;
	margin-right: auto;
}

.site-logo-link,
.custom-logo-link {
	display: block;
	line-height: 0;
}

.site-logo,
.custom-logo {
	width: 276px;
	height: auto;
	max-height: 78px;
	object-fit: contain;
	object-position: left center;
}

.site-nav__list {
	display: flex;
	align-items: center;
	gap: clamp(20px, 2.1vw, 36px);
	padding: 0;
	margin: 0;
	list-style: none;
}

.site-nav a {
	position: relative;
	display: block;
	padding: 12px 0;
	color: #e8edf4;
	font-size: 0.78rem;
	font-weight: 650;
	letter-spacing: 0.08em;
	text-decoration: none;
	text-transform: uppercase;
}

.site-nav a::after {
	position: absolute;
	right: 0;
	bottom: 5px;
	left: 0;
	height: 2px;
	background: var(--polaris-blue-bright);
	content: "";
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 160ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="location"] {
	color: var(--polaris-blue-bright);
}

.site-nav a:hover::after,
.site-nav a[aria-current="location"]::after {
	transform: scaleX(1);
	transform-origin: left;
}

.nav-toggle {
	display: none;
	width: 48px;
	height: 48px;
	place-items: center;
	padding: 11px;
	border: 1px solid var(--polaris-line);
	border-radius: 4px;
	background: rgba(255, 255, 255, 0.04);
	color: #fff;
	cursor: pointer;
}

.nav-toggle__line {
	width: 24px;
	height: 2px;
	background: currentColor;
	transition: transform 160ms ease, opacity 160ms ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-of-type(2) {
	transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-of-type(3) {
	opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-of-type(4) {
	transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.hero {
	position: relative;
	display: flex;
	min-height: 760px;
	min-height: min(900px, 100svh);
	flex-direction: column;
	justify-content: flex-end;
	overflow: hidden;
	border-bottom: 1px solid rgba(116, 151, 192, 0.18);
	background:
		radial-gradient(circle at 77% 36%, rgba(8, 120, 232, 0.17), transparent 30rem),
		linear-gradient(112deg, #020407 0%, #030810 56%, #07182b 100%);
	isolation: isolate;
}

.hero::before {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(2, 4, 7, 0.72) 0%, rgba(2, 4, 7, 0.25) 52%, transparent 76%),
		linear-gradient(116deg, transparent 58%, rgba(42, 166, 255, 0.055) 58.2%, transparent 58.7%);
	content: "";
	pointer-events: none;
	z-index: 0;
	}

.hero__visual {
	position: absolute;
	top: 49%;
	right: clamp(24px, 6vw, 112px);
	display: grid;
	width: clamp(360px, 37vw, 560px);
	aspect-ratio: 1;
	place-items: center;
	border-radius: 50%;
	opacity: 0.78;
	pointer-events: none;
	transform: translateY(-52%);
	z-index: 0;
	}

.hero__visual::before,
.hero__visual::after {
	position: absolute;
	border-radius: 50%;
	content: "";
	}

.hero__visual::before {
	inset: 0;
	border: 1px solid rgba(42, 166, 255, 0.19);
	box-shadow:
		0 0 0 72px rgba(42, 166, 255, 0.025),
		0 0 0 144px rgba(42, 166, 255, 0.012),
		0 0 100px rgba(8, 120, 232, 0.17);
	}

.hero__visual::after {
	inset: 13%;
	border: 1px solid rgba(145, 203, 246, 0.12);
	border-left-color: rgba(42, 166, 255, 0.45);
	transform: rotate(-22deg);
	}

.hero__mark {
	width: 58%;
	opacity: 0.48;
	filter: drop-shadow(0 0 34px rgba(8, 120, 232, 0.28));
}

.hero__inner {
	position: relative;
	display: flex;
	min-height: 620px;
	align-items: center;
	padding-top: calc(var(--polaris-header-height) + 38px);
	padding-bottom: 48px;
	z-index: 1;
}

.hero__copy {
	width: min(760px, 62vw);
}

.hero h1 {
	display: grid;
	gap: 4px;
	margin-bottom: 26px;
	font-size: clamp(3.4rem, 4.85vw, 5.4rem);
	font-weight: 900;
	letter-spacing: -0.045em;
	line-height: 0.91;
	text-transform: uppercase;
	text-wrap: balance;
}

.hero h1 span {
	display: block;
}

.hero__lede {
	max-width: 600px;
	margin-bottom: 35px;
	color: #c2cad5;
	font-size: clamp(1.05rem, 1.45vw, 1.28rem);
	line-height: 1.55;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

.hero-benefits {
	position: relative;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1px;
	padding: 1px;
	margin-top: 0;
	margin-bottom: 30px;
	overflow: hidden;
	border: 1px solid rgba(101, 162, 221, 0.22);
	border-radius: 14px;
	background: linear-gradient(105deg, rgba(42, 166, 255, 0.48), rgba(126, 159, 195, 0.16) 30%, rgba(126, 159, 195, 0.09));
	box-shadow: 0 20px 55px rgba(0, 0, 0, 0.3), inset 0 1px rgba(255, 255, 255, 0.035);
	list-style: none;
	z-index: 1;
}

.hero-benefit {
	display: grid;
	min-height: 116px;
	grid-template-columns: 64px minmax(0, 1fr);
	align-items: center;
	gap: 12px;
	padding: 22px 20px;
	background: linear-gradient(145deg, rgba(10, 24, 41, 0.98), rgba(4, 10, 17, 0.97));
}

.hero-benefit strong,
.hero-benefit div > span {
	display: block;
}

.hero-benefit strong {
	margin-bottom: 3px;
	font-family: var(--polaris-display);
	font-size: 0.95rem;
	letter-spacing: 0.035em;
	text-transform: uppercase;
}

.hero-benefit div > span {
	color: #aeb8c6;
	font-size: 0.78rem;
	line-height: 1.4;
	}

.hero-benefit__marker {
	display: grid;
	align-content: center;
	align-self: stretch;
	color: var(--polaris-blue-bright);
	font-family: var(--polaris-display);
	font-size: 2rem;
	font-weight: 900;
	letter-spacing: -0.025em;
	line-height: 1;
	}

.hero-benefit__marker::after {
	width: 28px;
	height: 2px;
	margin-top: 10px;
	background: linear-gradient(90deg, var(--polaris-blue-bright), transparent);
	content: "";
	}

.hero-benefit__marker--word {
	font-size: 1.08rem;
	letter-spacing: 0.06em;
}

.icon-box {
	display: inline-grid;
	width: 46px;
	height: 46px;
	place-items: center;
	color: var(--polaris-blue-bright);
}

.icon-box svg {
	width: 100%;
	height: 100%;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.icon-box--large {
	width: 58px;
	height: 58px;
}

/* Shared sections */
.section {
	position: relative;
	padding: clamp(96px, 10vw, 150px) 0;
	scroll-margin-top: calc(var(--polaris-header-height) - 1px);
}

.section-heading {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
	align-items: end;
	gap: 70px;
	margin-bottom: 58px;
}

.section-heading > div {
	max-width: 800px;
}

.section-heading > p {
	margin-bottom: 12px;
	color: var(--polaris-gray);
	font-size: 1.02rem;
}

.section-heading--compact {
	grid-template-columns: minmax(0, 850px);
}

.section-heading--samples {
	display: block;
	margin-bottom: 42px;
}

.section-heading--samples .eyebrow {
	margin-bottom: 0;
}

/* Services */
.services {
	background:
		radial-gradient(circle at 85% 18%, rgba(8, 120, 232, 0.12), transparent 34%),
		var(--polaris-black-soft);
}

.service-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
}

.service-card {
	position: relative;
	min-height: 390px;
	padding: 34px 28px 30px;
	overflow: hidden;
	border: 1px solid rgba(127, 164, 203, 0.17);
	border-radius: 7px;
	background: linear-gradient(160deg, rgba(12, 30, 50, 0.9), rgba(4, 10, 18, 0.9));
	box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
	transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.service-card::before {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--polaris-blue), transparent);
	content: "";
	opacity: 0;
	transition: opacity 180ms ease;
}

.service-card:hover {
	border-color: rgba(42, 166, 255, 0.42);
	background: linear-gradient(160deg, rgba(12, 40, 70, 0.96), rgba(4, 10, 18, 0.94));
	transform: translateY(-5px);
}

.service-card:hover::before {
	opacity: 1;
}

.service-card__number {
	position: absolute;
	top: 22px;
	right: 24px;
	margin: 0;
	color: rgba(181, 192, 206, 0.34);
	font-family: var(--polaris-display);
	font-size: 1.1rem;
	font-weight: 700;
	letter-spacing: 0.08em;
}

.service-card h3 {
	margin: 64px 0 17px;
	font-size: 1.55rem;
	text-transform: uppercase;
}

.service-card > p:last-child {
	margin-bottom: 0;
	color: var(--polaris-gray);
	font-size: 0.94rem;
	line-height: 1.65;
}

.software-strip {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	padding: 24px 28px;
	margin-top: 24px;
	border: 1px solid rgba(127, 164, 203, 0.16);
	border-radius: 6px;
	background: rgba(8, 120, 232, 0.055);
}

.software-strip > span {
	color: var(--polaris-gray);
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.software-strip ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 10px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.software-strip li {
	padding: 8px 13px;
	border: 1px solid rgba(42, 166, 255, 0.25);
	border-radius: 999px;
	color: #dbe7f3;
	font-size: 0.78rem;
}

/* About */
.about {
	overflow: hidden;
	border-block: 1px solid rgba(127, 164, 203, 0.15);
	background:
		linear-gradient(rgba(6, 23, 43, 0.95), rgba(4, 15, 28, 0.96)),
		repeating-linear-gradient(0deg, transparent 0 47px, rgba(42, 166, 255, 0.06) 47px 48px),
		repeating-linear-gradient(90deg, transparent 0 47px, rgba(42, 166, 255, 0.06) 47px 48px);
}

.about::after {
	position: absolute;
	top: -240px;
	right: -180px;
	width: 600px;
	height: 600px;
	border: 1px solid rgba(42, 166, 255, 0.1);
	border-radius: 50%;
	box-shadow: 0 0 100px rgba(8, 120, 232, 0.09);
	content: "";
}

.about__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	align-items: start;
	gap: clamp(60px, 8vw, 120px);
}

.about__intro > p:not(.eyebrow) {
	color: #bcc7d3;
	font-size: 1rem;
}

.about__intro .text-link {
	margin-top: 16px;
}

.about__proof {
	display: grid;
	gap: 18px;
}

.experience-card {
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: center;
	gap: 28px;
	padding: 30px 34px;
	border: 1px solid rgba(42, 166, 255, 0.28);
	border-radius: 7px;
	background: linear-gradient(135deg, rgba(8, 120, 232, 0.18), rgba(3, 12, 22, 0.56));
}

.experience-card strong {
	color: #fff;
	font-family: var(--polaris-display);
	font-size: clamp(4.4rem, 7vw, 6.6rem);
	font-weight: 900;
	letter-spacing: -0.06em;
	line-height: 0.78;
}

.experience-card strong span {
	color: var(--polaris-blue-bright);
	font-size: 0.55em;
	vertical-align: top;
}

.experience-card p {
	max-width: 250px;
	margin: 0;
	color: #d0d9e3;
	font-size: 0.91rem;
	font-weight: 650;
	line-height: 1.5;
}

.reason-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
}

.reason-grid article {
	padding: 25px 20px;
	border: 1px solid rgba(127, 164, 203, 0.15);
	border-radius: 6px;
	background: rgba(2, 8, 15, 0.48);
}

.reason-grid .icon-box {
	width: 38px;
	height: 38px;
	margin-bottom: 19px;
}

.reason-grid h3 {
	margin-bottom: 10px;
	font-size: 1rem;
	letter-spacing: 0.025em;
	text-transform: uppercase;
}

.reason-grid p {
	margin: 0;
	color: #aebbc9;
	font-size: 0.8rem;
	line-height: 1.55;
}

/* Process */
.process {
	background: #04080d;
}

.process-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0;
	padding: 0;
	margin: 0;
	border: 1px solid rgba(127, 164, 203, 0.17);
	border-radius: 7px;
	list-style: none;
}

.process-grid li {
	position: relative;
	min-height: 380px;
	padding: 40px 36px;
	border-right: 1px solid rgba(127, 164, 203, 0.17);
	background: linear-gradient(150deg, rgba(11, 28, 48, 0.68), rgba(3, 8, 14, 0.3));
}

.process-grid li:last-child {
	border-right: 0;
}

.process-grid__number {
	position: absolute;
	top: 28px;
	right: 30px;
	color: rgba(42, 166, 255, 0.32);
	font-family: var(--polaris-display);
	font-size: 2.8rem;
	font-weight: 800;
	line-height: 1;
}

.process-grid .icon-box {
	margin: 35px 0 42px;
}

.process-grid h3 {
	margin-bottom: 16px;
	font-size: 1.35rem;
	text-transform: uppercase;
}

.process-grid p {
	margin-bottom: 0;
	color: var(--polaris-gray);
	font-size: 0.91rem;
}

/* Projects */
.projects {
	background: var(--polaris-black);
}

.projects-editor-content {
	color: var(--polaris-gray);
}

.projects-editor-content > * + * {
	margin-top: 24px;
}

.projects-editor-content img {
	border: 1px solid rgba(127, 164, 203, 0.2);
	border-radius: 7px;
	box-shadow: var(--polaris-shadow);
}

.projects-editor-content figcaption {
	color: var(--polaris-gray);
	font-size: 0.85rem;
}

.project-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.project-card {
	display: flex;
	overflow: hidden;
	border: 1px solid rgba(127, 164, 203, 0.18);
	border-radius: 7px;
	background: #07111d;
	box-shadow: var(--polaris-shadow);
	flex-direction: column;
}

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

.project-card__link:focus-visible {
	border-radius: 6px;
	outline: 3px solid var(--polaris-blue-bright);
	outline-offset: -3px;
}

.project-card__visual {
	position: relative;
	min-height: 280px;
	overflow: hidden;
	background-color: #06182d;
	background-image:
		linear-gradient(rgba(42, 166, 255, 0.065) 1px, transparent 1px),
		linear-gradient(90deg, rgba(42, 166, 255, 0.065) 1px, transparent 1px);
	background-size: 28px 28px;
	isolation: isolate;
}

.project-card__visual::before,
.project-card__visual::after {
	position: absolute;
	border: 1px solid rgba(183, 207, 232, 0.55);
	content: "";
	filter: drop-shadow(0 0 9px rgba(8, 120, 232, 0.32));
}

.project-card__visual--thumbnail {
	min-height: 0;
	aspect-ratio: 16 / 10;
	background: #e8edf3;
}

.project-card__visual--thumbnail::before,
.project-card__visual--thumbnail::after {
	display: none;
}

.projects-editor-content .project-card__visual--thumbnail img {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
	border-radius: 0;
	object-fit: cover;
	box-shadow: none;
}

.project-card__visual--plan::before {
	inset: 52px 40px 48px;
	background:
		linear-gradient(90deg, transparent 47%, rgba(183, 207, 232, 0.45) 48% 49%, transparent 50%),
		linear-gradient(0deg, transparent 59%, rgba(183, 207, 232, 0.45) 60% 61%, transparent 62%);
}

.project-card__visual--plan::after {
	top: 92px;
	right: 72px;
	width: 155px;
	height: 52px;
	border-radius: 3px 30px 30px 3px;
	transform: rotate(-8deg);
}

.project-card__visual--model::before {
	top: 70px;
	left: 55px;
	width: 225px;
	height: 90px;
	border-radius: 4px 42px 4px 4px;
	transform: skewY(-13deg);
}

.project-card__visual--model::after {
	right: 42px;
	bottom: 50px;
	width: 180px;
	height: 58px;
	border-radius: 30px 3px 3px 30px;
	transform: skewY(11deg);
}

.project-card__visual--detail::before {
	top: 45px;
	left: 50%;
	width: 145px;
	height: 190px;
	transform: translateX(-50%);
}

.project-card__visual--detail::after {
	top: 78px;
	left: 50%;
	width: 225px;
	height: 96px;
	border-radius: 48px;
	transform: translateX(-50%);
}

.project-card__visual span {
	position: absolute;
	right: 20px;
	bottom: 12px;
	color: rgba(42, 166, 255, 0.36);
	font-family: var(--polaris-display);
	font-size: 4.6rem;
	font-weight: 900;
	line-height: 1;
}

.project-card__body {
	display: flex;
	min-height: 185px;
	padding: 24px 26px 27px;
	flex: 1;
	flex-direction: column;
}

.project-card__body h3 {
	margin: 0 0 24px;
	font-size: 1.25rem;
	text-transform: uppercase;
}

.project-card__body .project-card__meta {
	margin: auto 0 18px;
	color: var(--polaris-gray-dark);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.project-card__actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
}

.project-card__preview {
	display: none;
	align-items: center;
	min-height: 44px;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--polaris-white);
	font-size: 0.81rem;
	font-weight: 750;
	letter-spacing: 0.08em;
	text-align: left;
	text-transform: uppercase;
	cursor: pointer;
	gap: 8px;
}

.has-preview-js .project-card__preview {
	display: inline-flex;
}

.project-card__preview:hover,
.project-card__preview:focus-visible,
.project-card__fallback:hover,
.project-card__fallback:focus-visible {
	color: var(--polaris-blue-bright);
}

.project-card__fallback {
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	color: var(--polaris-gray-dark);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-decoration: underline;
	text-transform: uppercase;
}

.project-card__action {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--polaris-white);
	font-size: 0.81rem;
	font-weight: 750;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

@media (hover: hover) and (prefers-reduced-motion: no-preference) {
	.project-card,
	.project-card__visual--thumbnail img {
		transition: transform 180ms ease, border-color 180ms ease;
	}

	.project-card:hover {
		border-color: rgba(42, 166, 255, 0.48);
		transform: translateY(-4px);
	}

	.project-card:hover .project-card__visual--thumbnail img {
		transform: scale(1.025);
	}
}

/* Drawing page preview */
.drawing-preview[hidden] {
	display: none;
}

.drawing-preview {
	position: fixed;
	inset: 0;
	z-index: 10000;
	display: grid;
	place-items: center;
	padding: 24px;
}

.drawing-preview__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 4, 10, 0.88);
	backdrop-filter: blur(7px);
}

.drawing-preview__dialog {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-rows: auto minmax(0, 1fr) auto;
	width: min(1120px, calc(100vw - 48px));
	max-height: calc(100vh - 48px);
	max-height: calc(100dvh - 48px);
	overflow: hidden;
	border: 1px solid rgba(42, 166, 255, 0.42);
	border-radius: 8px;
	background: #06111e;
	box-shadow: 0 30px 100px rgba(0, 0, 0, 0.72), 0 0 55px rgba(8, 120, 232, 0.12);
}

.drawing-preview__header,
.drawing-preview__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 18px 22px;
	background: #071522;
}

.drawing-preview__header {
	border-bottom: 1px solid rgba(127, 164, 203, 0.18);
}

.drawing-preview__header .eyebrow {
	margin-bottom: 4px;
	font-size: 0.65rem;
}

.drawing-preview__header h2 {
	margin: 0;
	font-size: clamp(1.35rem, 2.7vw, 2.15rem);
	line-height: 1.05;
	text-transform: uppercase;
}

.drawing-preview__close,
.drawing-preview__pager button {
	display: inline-grid;
	place-items: center;
	min-width: 44px;
	min-height: 44px;
	border: 1px solid rgba(127, 164, 203, 0.32);
	border-radius: 4px;
	background: rgba(255, 255, 255, 0.025);
	color: var(--polaris-white);
	font-weight: 750;
	cursor: pointer;
}

.drawing-preview__close {
	font-size: 1.8rem;
	line-height: 1;
}

.drawing-preview__close:hover,
.drawing-preview__pager button:hover:not(:disabled) {
	border-color: var(--polaris-blue-bright);
	color: var(--polaris-blue-bright);
}

.drawing-preview__stage {
	display: grid;
	place-items: center;
	min-height: min(58vh, 620px);
	overflow: auto;
	padding: 18px;
	background:
		linear-gradient(rgba(42, 166, 255, 0.035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(42, 166, 255, 0.035) 1px, transparent 1px),
		#01050a;
	background-size: 30px 30px;
}

.drawing-preview__stage > * {
	grid-area: 1 / 1;
}

.drawing-preview__image {
	width: auto;
	max-width: 100%;
	max-height: calc(100vh - 245px);
	max-height: calc(100dvh - 245px);
	border: 1px solid rgba(183, 207, 232, 0.24);
	border-radius: 3px;
	background: #fff;
	box-shadow: 0 18px 55px rgba(0, 0, 0, 0.55);
	object-fit: contain;
}

.drawing-preview__loading,
.drawing-preview__error {
	max-width: 520px;
	margin: 0;
	color: var(--polaris-gray);
	text-align: center;
}

.drawing-preview__error {
	color: #f4c8c8;
}

.drawing-preview__footer {
	border-top: 1px solid rgba(127, 164, 203, 0.18);
}

.drawing-preview__pager {
	display: flex;
	align-items: center;
	gap: 14px;
}

.drawing-preview__pager button {
	padding: 8px 16px;
	font-size: 0.75rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.drawing-preview__pager button:disabled {
	opacity: 0.38;
	cursor: not-allowed;
}

.drawing-preview__pager p {
	min-width: 90px;
	margin: 0;
	color: var(--polaris-gray);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-align: center;
	text-transform: uppercase;
}

.drawing-preview__download {
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	color: var(--polaris-blue-bright);
	font-size: 0.78rem;
	font-weight: 750;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

/* Quote and form */
.quote {
	overflow: hidden;
	border-top: 1px solid rgba(42, 166, 255, 0.18);
	background:
		radial-gradient(circle at 9% 92%, rgba(8, 120, 232, 0.28), transparent 28%),
		radial-gradient(circle at 92% 10%, rgba(8, 120, 232, 0.18), transparent 31%),
		linear-gradient(135deg, #041120 0%, #061a30 46%, #02070d 100%);
}

.quote::before {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(42, 166, 255, 0.035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(42, 166, 255, 0.035) 1px, transparent 1px);
	background-size: 50px 50px;
	content: "";
	mask-image: linear-gradient(90deg, #000, transparent 70%);
	pointer-events: none;
}

.quote__grid {
	position: relative;
	display: grid;
	grid-template-columns: minmax(300px, 0.68fr) minmax(540px, 1.32fr);
	align-items: start;
	gap: clamp(55px, 7vw, 100px);
}

.quote__intro {
	position: sticky;
	top: calc(var(--polaris-header-height) + 45px);
}

.quote__intro > p:not(.eyebrow) {
	color: #bac6d3;
	font-size: 1.02rem;
}

.quote-contact {
	display: grid;
	gap: 0;
	margin-top: 42px;
	border-top: 1px solid rgba(127, 164, 203, 0.2);
}

.quote-contact p {
	display: grid;
	grid-template-columns: 105px 1fr;
	gap: 16px;
	padding: 17px 0;
	margin: 0;
	border-bottom: 1px solid rgba(127, 164, 203, 0.15);
}

.quote-contact span {
	color: var(--polaris-gray-dark);
	font-size: 0.7rem;
	font-weight: 750;
	letter-spacing: 0.11em;
	text-transform: uppercase;
}

.quote-contact a,
.quote-contact strong {
	color: #fff;
	font-size: 0.9rem;
	font-style: normal;
	font-weight: 620;
	text-decoration: none;
}

.quote-note {
	display: grid;
	grid-template-columns: 40px 1fr;
	align-items: center;
	gap: 14px;
	padding: 17px;
	margin-top: 24px;
	border: 1px solid rgba(42, 166, 255, 0.2);
	border-radius: 6px;
	background: rgba(8, 120, 232, 0.08);
}

.quote-note .icon-box {
	width: 34px;
	height: 34px;
}

.quote-note p {
	margin: 0;
	color: #b9c6d4;
	font-size: 0.78rem;
	line-height: 1.5;
}

.quote__form,
.form-fallback {
	padding: clamp(28px, 4vw, 48px);
	border: 1px solid rgba(138, 178, 219, 0.24);
	border-radius: 8px;
	background: rgba(3, 11, 20, 0.84);
	box-shadow: 0 28px 90px rgba(0, 0, 0, 0.38);
	backdrop-filter: blur(12px);
}

.form-fallback h3 {
	font-size: 2rem;
	text-transform: uppercase;
}

.form-fallback p {
	color: var(--polaris-gray);
}

.polaris-quote-form {
	color: #f2f6fa;
}

.polaris-form-result {
	padding: 17px 19px;
	margin-bottom: 25px;
	border: 1px solid rgba(42, 166, 255, 0.42);
	border-left: 4px solid var(--polaris-blue-bright);
	border-radius: 5px;
	background: rgba(8, 120, 232, 0.12);
}

.polaris-form-result--error {
	border-color: rgba(255, 121, 121, 0.55);
	border-left-color: #ff7979;
	background: rgba(142, 32, 32, 0.17);
}

.polaris-form-result p,
.polaris-form-result ul {
	margin-bottom: 0;
}

.polaris-form-result ul {
	padding-left: 20px;
	margin-top: 9px;
}

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

.polaris-field {
	display: grid;
	align-content: start;
	gap: 8px;
	margin: 0;
}

.polaris-field--full {
	grid-column: 1 / -1;
}

.polaris-field label,
.polaris-field legend {
	padding: 0;
	color: #e7edf5;
	font-size: 0.76rem;
	font-weight: 720;
	letter-spacing: 0.065em;
	line-height: 1.4;
	text-transform: uppercase;
}

.polaris-field .required {
	color: var(--polaris-blue-bright);
}

.polaris-field input[type="text"],
.polaris-field input[type="email"],
.polaris-field input[type="tel"],
.polaris-field input[type="url"],
.polaris-field input[type="date"],
.polaris-field select,
.polaris-field textarea {
	width: 100%;
	min-height: 52px;
	padding: 13px 14px;
	border: 1px solid rgba(147, 176, 208, 0.28);
	border-radius: 4px;
	background: rgba(1, 5, 10, 0.72);
	color: #fff;
	font-size: 0.91rem;
	transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.polaris-field textarea {
	min-height: 145px;
	resize: vertical;
}

.polaris-field input::placeholder,
.polaris-field textarea::placeholder {
	color: #718093;
}

.polaris-field input:focus,
.polaris-field select:focus,
.polaris-field textarea:focus {
	border-color: var(--polaris-blue-bright);
	background: #030b14;
	box-shadow: 0 0 0 3px rgba(42, 166, 255, 0.13);
	outline: 3px solid var(--polaris-blue-bright);
	outline-offset: 2px;
}

.polaris-field input[aria-invalid="true"],
.polaris-field textarea[aria-invalid="true"] {
	border-color: #ff7979;
}

.polaris-services {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
	padding: 0;
	margin: 0;
	border: 0;
}

.polaris-services legend {
	margin-bottom: 9px;
}

.polaris-services:focus-visible {
	border-radius: 4px;
	outline: 3px solid var(--polaris-blue-bright);
	outline-offset: 5px;
}

.polaris-services[aria-invalid="true"] .polaris-checkbox {
	border-color: #ff7979;
}

.polaris-checkbox {
	display: flex;
	min-height: 48px;
	align-items: center;
	gap: 10px;
	padding: 11px 12px;
	border: 1px solid rgba(147, 176, 208, 0.2);
	border-radius: 4px;
	background: rgba(255, 255, 255, 0.025);
	color: #d7e0e9;
	font-size: 0.83rem;
	cursor: pointer;
}

.polaris-checkbox:hover {
	border-color: rgba(42, 166, 255, 0.4);
}

.polaris-checkbox input {
	width: 18px;
	height: 18px;
	margin: 0;
	accent-color: var(--polaris-blue);
}

.polaris-file-control {
	position: relative;
	display: grid;
	place-items: center;
	min-height: 118px;
	padding: 20px;
	border: 1px dashed rgba(42, 166, 255, 0.48);
	border-radius: 5px;
	background: rgba(8, 120, 232, 0.055);
	text-align: center;
}

.polaris-file-control input[type="file"] {
	width: 100%;
	max-width: 430px;
	color: #aebbc9;
	font-size: 0.82rem;
}

.polaris-file-control input[type="file"]::file-selector-button {
	padding: 9px 12px;
	margin-right: 12px;
	border: 1px solid var(--polaris-blue);
	border-radius: 4px;
	background: rgba(8, 120, 232, 0.2);
	color: #fff;
	font-weight: 700;
	cursor: pointer;
}

.polaris-field-help,
.polaris-file-summary,
.polaris-form-note {
	margin: 0;
	color: #8795a6;
	font-size: 0.75rem;
	line-height: 1.5;
}

.polaris-file-summary {
	color: var(--polaris-blue-bright);
}

.polaris-consent {
	display: grid;
	grid-template-columns: 20px 1fr;
	align-items: start;
	gap: 11px;
	color: #aebbc9;
	font-size: 0.79rem;
	line-height: 1.55;
}

.polaris-consent input {
	width: 18px;
	height: 18px;
	margin-top: 2px;
	accent-color: var(--polaris-blue);
}

.polaris-consent-privacy {
	margin: 0 0 0 31px;
	font-size: 0.79rem;
}

.polaris-consent-privacy a {
	color: var(--polaris-blue-bright);
}

.polaris-form-actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-top: 25px;
}

.polaris-form-actions .button {
	border: 1px solid var(--polaris-blue);
	cursor: pointer;
}

.polaris-honeypot {
	position: absolute !important;
	left: -10000px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
}

/* Footer and generic pages */
.site-footer {
	padding: 68px 0 24px;
	border-top: 1px solid rgba(127, 164, 203, 0.16);
	background: #010306;
}

.site-footer__grid {
	display: grid;
	grid-template-columns: minmax(250px, 1fr) auto auto;
	align-items: start;
	gap: clamp(45px, 7vw, 95px);
}

.site-footer__brand img {
	width: 230px;
	height: auto;
	margin-bottom: 18px;
}

.site-footer__brand p {
	max-width: 480px;
	margin: 0;
	color: #8694a5;
	font-size: 0.84rem;
}

.site-footer__nav,
.site-footer__contact {
	display: grid;
	gap: 11px;
}

.site-footer__nav a,
.site-footer__contact a,
.site-footer__contact span {
	color: #aeb9c7;
	font-size: 0.8rem;
	font-style: normal;
	text-decoration: none;
}

.site-footer__nav a:hover,
.site-footer__contact a:hover {
	color: var(--polaris-blue-bright);
}

.site-footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	padding-top: 24px;
	margin-top: 50px;
	border-top: 1px solid rgba(127, 164, 203, 0.12);
}

.site-footer__bottom p,
.site-footer__bottom a {
	margin: 0;
	color: #697789;
	font-size: 0.72rem;
}

.content-page {
	min-height: 70vh;
	padding-top: calc(var(--polaris-header-height) + 100px);
	padding-bottom: 100px;
}

.content-entry {
	max-width: 780px;
}

.content-entry h1,
.content-page > h1 {
	font-size: clamp(3rem, 6vw, 5rem);
	text-transform: uppercase;
}

.content-entry p,
.content-page > p {
	color: var(--polaris-gray);
}

.content-page--centered {
	display: grid;
	place-content: center;
	justify-items: start;
}

/* WordPress editor content safeguards */
.alignwide {
	width: min(100%, 1240px);
	max-width: 1240px;
}

.alignfull {
	width: 100%;
	max-width: none;
}

/* Responsive */
@media (max-width: 1120px) {
	:root {
		--polaris-shell: min(100% - 38px, 1060px);
	}

	.site-header__inner {
		gap: 20px;
	}

	.site-branding,
	.site-logo,
	.custom-logo {
		width: 230px;
	}

	.site-nav__list {
		gap: 19px;
	}

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

	.service-card {
		min-height: 340px;
	}

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

	.quote__grid {
		grid-template-columns: minmax(280px, 0.7fr) minmax(480px, 1.3fr);
		gap: 42px;
	}
}

@media (max-width: 960px) {
	:root {
		--polaris-header-height: 84px;
	}

	body.admin-bar .site-header {
		top: 32px;
	}

	.site-header__inner {
		min-height: var(--polaris-header-height);
		flex-wrap: wrap;
	}

	.site-branding {
		width: 210px;
	}

	.site-logo,
	.custom-logo {
		width: 210px;
	}

	.nav-toggle {
		order: 2;
	}

	.has-nav-js .nav-toggle {
		display: grid;
	}

	.header-quote {
		order: 3;
	}

	.site-nav {
		order: 4;
		width: 100%;
	}

	.site-nav__list {
		justify-content: center;
		padding-bottom: 17px;
	}

	.has-nav-js .site-nav {
		display: none;
	}

	.has-nav-js .site-nav.is-open {
		display: block;
	}

	.has-nav-js .site-nav.is-open::before {
		position: fixed;
		top: var(--polaris-header-height);
		right: 0;
		bottom: 0;
		left: 0;
		z-index: -1;
		background: rgba(0, 0, 0, 0.44);
		content: "";
	}

	.hero {
		min-height: 0;
	}

	.hero__copy {
		width: min(720px, 76vw);
	}

	.hero__visual {
		right: -80px;
		opacity: 0.52;
	}

	.section-heading,
	.about__grid,
	.quote__grid {
		grid-template-columns: 1fr;
	}

	.section-heading {
		align-items: start;
		gap: 16px;
	}

	.section-heading > p {
		max-width: 700px;
	}

	.about__grid,
	.quote__grid {
		gap: 55px;
	}

	.quote__intro {
		position: static;
	}

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

	.process-grid li {
		min-height: auto;
		border-right: 0;
		border-bottom: 1px solid rgba(127, 164, 203, 0.17);
	}

	.process-grid li:last-child {
		border-bottom: 0;
	}

	.process-grid .icon-box {
		margin: 18px 0 30px;
	}

	.project-card__visual {
		min-height: 220px;
	}
}

@media (min-width: 761px) and (max-width: 960px) {
	.project-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 782px) {
	body.admin-bar .site-header {
		top: 46px;
	}
}

@media (max-width: 760px) {
	:root {
		--polaris-shell: calc(100% - 30px);
		--polaris-header-height: 76px;
	}

	.site-header__inner {
		gap: 12px;
	}

	.site-branding,
	.site-logo,
	.custom-logo {
		width: 174px;
	}

	.header-quote {
		display: none;
	}

	.nav-toggle {
		margin-left: auto;
	}

	.site-nav__list {
		display: grid;
		gap: 0;
		padding: 14px 0 20px;
		text-align: center;
	}

	.site-nav a {
		min-height: 48px;
		padding: 15px 10px;
		border-top: 1px solid rgba(127, 164, 203, 0.12);
	}

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

	.hero {
		min-height: auto;
		padding-top: var(--polaris-header-height);
	}

	.hero__visual {
		top: 300px;
		right: -210px;
		width: 420px;
		opacity: 0.3;
	}

	.hero__inner {
		min-height: 610px;
		padding-top: 74px;
		padding-bottom: 56px;
	}

	.hero__copy {
		width: 100%;
	}

	.hero h1 {
		font-size: clamp(2.4rem, 7.8vw, 4.6rem);
		line-height: 0.94;
	}

	.hero h1 span {
		min-width: 0;
		max-width: 100%;
		white-space: nowrap;
	}

	.hero__lede {
		max-width: 530px;
		font-size: 1rem;
	}

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

	.hero-benefits {
		grid-template-columns: 1fr;
	}

	.hero-benefit,
	.hero-benefit:nth-child(2) {
		min-height: 96px;
		padding-block: 18px;
	}

	.section {
		padding: 84px 0;
	}

	.section-heading {
		margin-bottom: 40px;
	}

	.service-grid,
	.project-grid,
	.reason-grid {
		grid-template-columns: 1fr;
	}

	.service-card {
		min-height: 310px;
	}

	.software-strip {
		align-items: flex-start;
		flex-direction: column;
	}

	.software-strip ul {
		justify-content: flex-start;
	}

	.experience-card {
		grid-template-columns: 1fr;
	}

	.experience-card p {
		max-width: none;
	}

	.reason-grid article {
		display: grid;
		grid-template-columns: 46px 1fr;
		column-gap: 15px;
	}

	.reason-grid .icon-box {
		grid-row: 1 / 3;
		margin: 0;
	}

	.process-grid li {
		padding: 34px 27px;
	}

	.project-card__visual {
		min-height: 260px;
	}

	.project-card__actions {
		align-items: flex-start;
		flex-direction: column;
		gap: 0;
	}

	.drawing-preview {
		padding: 0;
	}

	.drawing-preview__dialog {
		width: 100%;
		height: 100vh;
		height: 100dvh;
		max-height: none;
		border-width: 0;
		border-radius: 0;
	}

	.drawing-preview__header,
	.drawing-preview__footer {
		padding: 14px 16px;
	}

	.drawing-preview__stage {
		min-height: 0;
		padding: 10px;
	}

	.drawing-preview__image {
		max-height: calc(100vh - 250px);
		max-height: calc(100dvh - 250px);
	}

	.drawing-preview__footer {
		align-items: stretch;
		flex-direction: column;
		gap: 10px;
	}

	.drawing-preview__pager {
		display: grid;
		grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
	}

	.drawing-preview__pager button {
		width: 100%;
	}

	.drawing-preview__download {
		justify-content: center;
	}

	.quote__form,
	.form-fallback {
		padding: 25px 19px;
	}

	.polaris-form-grid,
	.polaris-services {
		grid-template-columns: 1fr;
	}

	.polaris-form-actions {
		align-items: stretch;
		flex-direction: column;
	}

	.polaris-form-actions .button {
		width: 100%;
	}

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

	.site-footer__brand {
		grid-column: 1 / -1;
	}
}

@media (max-width: 480px) {
	.quote-contact p {
		grid-template-columns: 1fr;
		gap: 3px;
	}

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

	.hero h1 {
		font-size: clamp(1.55rem, 7.8vw, 3rem);
	}

	.hero-benefit {
		padding-inline: 16px;
		grid-template-columns: 56px minmax(0, 1fr);
	}

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

	.site-footer__brand {
		grid-column: auto;
	}

	.site-footer__bottom {
		align-items: flex-start;
		flex-direction: column;
		gap: 8px;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}
}
