/*
Theme Name: Axiom Signature
Author: Kenyon Sommers
Description: A premium graphite-and-gold business-card theme for Axiom Web Designs.
Version: 1.0.0
Requires at least: 6.0
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: axiom-signature
*/

:root {
	--axiom-black: #07090a;
	--axiom-graphite: #101316;
	--axiom-panel: #171b1e;
	--axiom-panel-raised: #1e2326;
	--axiom-silver: #d2d4d3;
	--axiom-copy: #b5b8b7;
	--axiom-muted: #73797a;
	--axiom-gold: #c69339;
	--axiom-gold-light: #e3ba68;
	--axiom-line: rgba(214, 219, 218, 0.14);
	--axiom-width: 1480px;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--axiom-black);
	color: var(--axiom-silver);
	font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	-webkit-font-smoothing: antialiased;
}

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

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

.axiom-signature-site {
	position: relative;
	min-height: 100svh;
	overflow: hidden;
	background:
		radial-gradient(circle at 77% 31%, rgba(197, 146, 56, 0.12), transparent 27%),
		radial-gradient(circle at 18% 14%, rgba(255, 255, 255, 0.055), transparent 28%),
		repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.014) 0, rgba(255, 255, 255, 0.014) 1px, rgba(0, 0, 0, 0.03) 1px, rgba(0, 0, 0, 0.03) 3px),
		linear-gradient(112deg, #090b0d 0%, #131719 48%, #080a0b 100%);
}

.axiom-signature-site::before {
	content: "";
	position: fixed;
	inset: 0;
	z-index: 20;
	pointer-events: none;
	opacity: 0.22;
	background: repeating-linear-gradient(
		92deg,
		transparent 0,
		transparent 5px,
		rgba(255, 255, 255, 0.015) 5px,
		rgba(255, 255, 255, 0.015) 6px
	);
	mix-blend-mode: soft-light;
}

.axiom-backplate {
	position: absolute;
	z-index: 0;
	pointer-events: none;
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.055), transparent 30%),
		linear-gradient(160deg, #171b1e, #0b0e10);
	border: 1px solid rgba(255, 255, 255, 0.075);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.055),
		inset 0 -1px 0 rgba(0, 0, 0, 0.8),
		0 28px 70px rgba(0, 0, 0, 0.42);
}

.axiom-backplate-one {
	width: 46vw;
	height: 190px;
	right: -3vw;
	top: -76px;
	clip-path: polygon(0 0, 100% 0, 100% 100%, 16% 100%);
}

.axiom-backplate-two {
	width: 34vw;
	height: 160px;
	left: -8vw;
	top: 245px;
	clip-path: polygon(0 0, 88% 0, 100% 50%, 83% 100%, 0 100%);
}

.axiom-light-bloom {
	position: absolute;
	z-index: 0;
	width: 38rem;
	height: 38rem;
	right: -12rem;
	top: 16rem;
	border-radius: 50%;
	background: rgba(199, 147, 57, 0.075);
	filter: blur(120px);
	pointer-events: none;
}

.axiom-masthead,
.axiom-hero,
.axiom-services,
.axiom-principle,
.axiom-footer {
	position: relative;
	z-index: 2;
	width: min(calc(100% - 56px), var(--axiom-width));
	margin-inline: auto;
}

.axiom-masthead {
	min-height: 146px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	border-bottom: 1px solid var(--axiom-line);
}

.axiom-masthead::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -2px;
	width: 160px;
	height: 3px;
	background: linear-gradient(90deg, var(--axiom-gold-light), transparent);
	box-shadow: 0 0 24px rgba(207, 158, 68, 0.26);
}

.axiom-header-logo {
	display: block;
	width: clamp(300px, 32vw, 510px);
}

.axiom-header-logo img {
	display: block;
	width: 100%;
}

.axiom-masthead-contact {
	display: inline-flex;
	align-items: center;
	gap: 0.8rem;
	padding: 0.8rem 0;
	color: #d5d7d6;
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.17em;
	text-transform: uppercase;
	border-bottom: 1px solid rgba(227, 186, 104, 0.5);
	transition: color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.axiom-masthead-contact b {
	color: var(--axiom-gold-light);
	font-size: 1rem;
}

.axiom-masthead-contact:hover,
.axiom-masthead-contact:focus-visible {
	color: var(--axiom-gold-light);
	border-color: var(--axiom-gold-light);
	transform: translateY(-2px);
}

.axiom-hero {
	min-height: calc(100svh - 146px);
	display: grid;
	grid-template-columns: minmax(0, 1.14fr) minmax(390px, 0.72fr);
	align-items: center;
	gap: clamp(4rem, 8vw, 9rem);
	padding: clamp(5rem, 10vh, 8.5rem) 0;
}

.axiom-hero-copy {
	max-width: 830px;
}

.axiom-status {
	width: fit-content;
	display: inline-flex;
	align-items: center;
	gap: 0.7rem;
	margin-bottom: 2.7rem;
	padding: 0.68rem 0.9rem;
	color: #d8bd85;
	font-size: 0.66rem;
	font-weight: 800;
	letter-spacing: 0.13em;
	text-transform: uppercase;
	border: 1px solid rgba(218, 174, 86, 0.24);
	background:
		linear-gradient(135deg, rgba(226, 183, 99, 0.08), rgba(255, 255, 255, 0.015)),
		#111416;
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.055),
		0 14px 35px rgba(0, 0, 0, 0.25);
}

.axiom-status-light {
	width: 7px;
	height: 7px;
	flex: 0 0 7px;
	border-radius: 50%;
	background: var(--axiom-gold-light);
	box-shadow: 0 0 0 5px rgba(226, 183, 99, 0.08), 0 0 18px rgba(226, 183, 99, 0.5);
}

.axiom-eyebrow,
.axiom-section-heading > p,
.axiom-principle > div > p {
	margin: 0 0 1.25rem;
	color: #8b9090;
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.2em;
	text-transform: uppercase;
}

.axiom-hero h1 {
	margin: 0;
	color: #f1f1ee;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(4.4rem, 7.8vw, 9.1rem);
	font-weight: 400;
	letter-spacing: -0.067em;
	line-height: 0.83;
	text-shadow: 0 16px 46px rgba(0, 0, 0, 0.45);
}

.axiom-hero h1 em {
	color: var(--axiom-gold-light);
	font-weight: 400;
	text-shadow: 0 8px 34px rgba(207, 158, 68, 0.2);
}

.axiom-intro {
	max-width: 620px;
	margin: 2.5rem 0 0;
	color: var(--axiom-copy);
	font-size: clamp(1.02rem, 1.25vw, 1.22rem);
	line-height: 1.8;
}

.axiom-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	margin-top: 2.8rem;
}

.axiom-button {
	min-height: 56px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.8rem;
	padding: 0 1.55rem;
	border: 1px solid transparent;
	font-size: 0.72rem;
	font-weight: 850;
	letter-spacing: 0.13em;
	text-transform: uppercase;
	transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.axiom-button:hover,
.axiom-button:focus-visible {
	transform: translateY(-3px);
}

.axiom-button-gold {
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.22), transparent 45%),
		linear-gradient(135deg, #d8aa53, #a97424);
	color: #151108;
	border-color: #d9aa51;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.42), 0 18px 42px rgba(151, 101, 24, 0.2);
}

.axiom-button-gold:hover,
.axiom-button-gold:focus-visible {
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45), 0 22px 48px rgba(151, 101, 24, 0.3);
}

.axiom-button-ghost {
	color: #d5d7d6;
	border-color: rgba(255, 255, 255, 0.16);
	background: rgba(255, 255, 255, 0.026);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.axiom-button-ghost:hover,
.axiom-button-ghost:focus-visible {
	border-color: rgba(255, 255, 255, 0.32);
	background: rgba(255, 255, 255, 0.055);
}

.axiom-capabilities {
	display: flex;
	flex-wrap: wrap;
	margin-top: 2.8rem;
	color: #6f7475;
	font-size: 0.66rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.axiom-capabilities span {
	display: inline-flex;
	align-items: center;
}

.axiom-capabilities span:not(:last-child)::after {
	content: "";
	width: 4px;
	height: 4px;
	margin: 0 0.9rem;
	border-radius: 50%;
	background: var(--axiom-gold);
	box-shadow: 0 0 9px rgba(198, 147, 57, 0.4);
}

.axiom-identity-panel {
	position: relative;
	max-width: 520px;
	min-height: 660px;
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	padding: clamp(3rem, 5vw, 5rem) clamp(2rem, 4vw, 4.5rem);
	text-align: center;
	background:
		linear-gradient(155deg, rgba(255, 255, 255, 0.08), transparent 24%),
		repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.014) 0, rgba(255, 255, 255, 0.014) 1px, rgba(0, 0, 0, 0.022) 1px, rgba(0, 0, 0, 0.022) 3px),
		linear-gradient(145deg, #1a1e21, #0e1113 72%);
	border: 1px solid rgba(255, 255, 255, 0.13);
	clip-path: polygon(8% 0, 92% 0, 100% 7%, 100% 93%, 92% 100%, 8% 100%, 0 93%, 0 7%);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.09),
		inset 0 0 70px rgba(255, 255, 255, 0.018),
		0 50px 100px rgba(0, 0, 0, 0.5);
}

.axiom-identity-panel::before {
	content: "";
	position: absolute;
	inset: 15px;
	z-index: -1;
	clip-path: inherit;
	border: 1px solid rgba(255, 255, 255, 0.055);
	box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.45);
}

.axiom-identity-panel::after {
	content: "";
	position: absolute;
	left: 12%;
	right: 12%;
	top: -7px;
	height: 7px;
	background: linear-gradient(90deg, transparent, rgba(219, 173, 83, 0.8), transparent);
	filter: blur(2px);
	opacity: 0.58;
}

.axiom-fastener {
	position: absolute;
	width: 11px;
	height: 11px;
	border-radius: 50%;
	background: radial-gradient(circle at 38% 32%, #626768 0 8%, #25292b 35%, #080a0b 72%);
	border: 1px solid #050607;
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.15), 0 2px 5px rgba(0, 0, 0, 0.75);
}

.axiom-fastener::after {
	content: "";
	position: absolute;
	left: 2px;
	right: 2px;
	top: 4px;
	height: 1px;
	background: #030405;
	transform: rotate(-18deg);
}

.axiom-fastener-one { left: 30px; top: 38px; }
.axiom-fastener-two { right: 30px; top: 38px; }
.axiom-fastener-three { left: 30px; bottom: 38px; }
.axiom-fastener-four { right: 30px; bottom: 38px; }

.axiom-icon-stage {
	position: relative;
	width: min(76%, 300px);
	aspect-ratio: 1;
	display: grid;
	place-items: center;
	margin-bottom: 2.4rem;
	border-radius: 50%;
	background:
		radial-gradient(circle, #171b1d 0 48%, #090b0c 49% 54%, #202528 55% 58%, #080a0b 59%);
	box-shadow:
		inset 0 2px 0 rgba(255, 255, 255, 0.09),
		inset 0 -12px 26px rgba(0, 0, 0, 0.7),
		0 28px 46px rgba(0, 0, 0, 0.45);
}

.axiom-icon-stage img {
	position: relative;
	z-index: 2;
	width: 76%;
	filter: drop-shadow(0 18px 14px rgba(0, 0, 0, 0.55));
}

.axiom-icon-halo {
	position: absolute;
	inset: 24%;
	border-radius: 50%;
	background: rgba(199, 147, 57, 0.17);
	filter: blur(32px);
}

.axiom-panel-rule {
	width: 100%;
	height: 1px;
	margin-bottom: 2rem;
	background: linear-gradient(90deg, transparent, rgba(218, 174, 86, 0.48), transparent);
}

.axiom-panel-label {
	margin: 0 0 0.7rem;
	color: #787d7e;
	font-size: 0.62rem;
	font-weight: 800;
	letter-spacing: 0.2em;
	text-transform: uppercase;
}

.axiom-identity-panel h2 {
	margin: 0 0 1.25rem;
	color: #ededeb;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(1.8rem, 3vw, 2.6rem);
	font-weight: 400;
	letter-spacing: -0.03em;
}

.axiom-identity-panel > a {
	margin: 0.2rem 0;
	color: #bfc1c0;
	font-size: 0.82rem;
	letter-spacing: 0.04em;
	transition: color 180ms ease;
}

.axiom-identity-panel > a:hover,
.axiom-identity-panel > a:focus-visible {
	color: var(--axiom-gold-light);
}

.axiom-location {
	margin: 1rem 0 0;
	color: #6e7374;
	font-size: 0.62rem;
	font-weight: 700;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.axiom-services {
	padding: clamp(6rem, 10vw, 10rem) 0;
	border-top: 1px solid var(--axiom-line);
}

.axiom-section-heading {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 3rem;
	margin-bottom: 3.5rem;
}

.axiom-section-heading > p {
	margin-bottom: 0.55rem;
}

.axiom-section-heading h2,
.axiom-principle h2 {
	margin: 0;
	color: #eeeDEA;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(2.3rem, 4vw, 4.4rem);
	font-weight: 400;
	letter-spacing: -0.045em;
	line-height: 1;
}

.axiom-service-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
}

.axiom-service-card {
	position: relative;
	min-height: 320px;
	padding: clamp(2rem, 3.5vw, 3.6rem);
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.055), transparent 28%),
		repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.01) 0 1px, transparent 1px 3px),
		#121619;
	border: 1px solid rgba(255, 255, 255, 0.09);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045), 0 24px 55px rgba(0, 0, 0, 0.26);
	transition: transform 240ms ease, border-color 240ms ease, background 240ms ease;
}

.axiom-service-card::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 2px;
	background: linear-gradient(90deg, transparent, rgba(213, 167, 77, 0.62), transparent);
	opacity: 0;
	transition: opacity 240ms ease;
}

.axiom-service-card:hover {
	transform: translateY(-6px);
	border-color: rgba(218, 174, 86, 0.24);
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.07), transparent 28%),
		repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.01) 0 1px, transparent 1px 3px),
		#15191c;
}

.axiom-service-card:hover::after {
	opacity: 1;
}

.axiom-service-card > span {
	display: block;
	margin-bottom: 4.5rem;
	color: var(--axiom-gold);
	font-size: 0.68rem;
	font-weight: 850;
	letter-spacing: 0.16em;
}

.axiom-service-card h3 {
	margin: 0 0 1.1rem;
	color: #e2e3e1;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(1.45rem, 2vw, 2rem);
	font-weight: 400;
}

.axiom-service-card p {
	margin: 0;
	color: #8c9191;
	font-size: 0.92rem;
	line-height: 1.75;
}

.axiom-principle {
	display: grid;
	grid-template-columns: 1fr minmax(280px, 0.7fr);
	align-items: center;
	gap: clamp(3rem, 8vw, 8rem);
	padding: clamp(5rem, 9vw, 8rem) clamp(2rem, 6vw, 7rem);
	background:
		linear-gradient(135deg, rgba(198, 147, 57, 0.07), transparent 35%),
		linear-gradient(145deg, #171b1e, #0d1012);
	border: 1px solid rgba(255, 255, 255, 0.09);
	clip-path: polygon(3% 0, 97% 0, 100% 14%, 100% 86%, 97% 100%, 3% 100%, 0 86%, 0 14%);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 35px 75px rgba(0, 0, 0, 0.28);
}

.axiom-principle h2 {
	color: var(--axiom-gold-light);
	font-style: italic;
}

.axiom-principle > p {
	margin: 0;
	color: #9da1a1;
	font-size: 1rem;
	line-height: 1.85;
}

.axiom-footer {
	min-height: 260px;
	display: grid;
	grid-template-columns: minmax(250px, 400px) 1fr auto;
	align-items: center;
	gap: 3rem;
	margin-top: clamp(5rem, 9vw, 9rem);
	border-top: 1px solid var(--axiom-line);
}

.axiom-footer > img {
	display: block;
	width: min(100%, 400px);
}

.axiom-footer-contact {
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
	color: #8d9292;
	font-size: 0.72rem;
	letter-spacing: 0.05em;
}

.axiom-footer-contact a {
	transition: color 180ms ease;
}

.axiom-footer-contact a:hover,
.axiom-footer-contact a:focus-visible {
	color: var(--axiom-gold-light);
}

.axiom-footer > p {
	margin: 0;
	color: #5c6162;
	font-size: 0.62rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.axiom-rise {
	opacity: 0;
	transform: translateY(18px);
	animation: axiom-rise 760ms cubic-bezier(0.2, 0.75, 0.2, 1) forwards;
}

.axiom-delay-one { animation-delay: 80ms; }
.axiom-delay-two { animation-delay: 160ms; }
.axiom-delay-three { animation-delay: 240ms; }
.axiom-delay-four { animation-delay: 330ms; }
.axiom-delay-five { animation-delay: 420ms; }

@keyframes axiom-rise {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

:focus-visible {
	outline: 2px solid var(--axiom-gold-light);
	outline-offset: 4px;
}

.axiom-standard-page {
	min-height: 100svh;
	display: grid;
	place-items: center;
	padding: 48px 24px;
	background:
		repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.014) 0 1px, transparent 1px 3px),
		radial-gradient(circle at 70% 20%, #24201a, #111416 38%, #080a0b 78%);
}

.axiom-standard-panel {
	width: min(100%, 880px);
	padding: clamp(30px, 7vw, 78px);
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), transparent 30%), #13171a;
	border: 1px solid var(--axiom-line);
	box-shadow: 0 35px 90px rgba(0, 0, 0, 0.4);
}

.axiom-standard-home {
	display: inline-block;
	margin-bottom: 50px;
	color: var(--axiom-gold-light);
	font-size: 0.72rem;
	font-weight: 850;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.axiom-entry + .axiom-entry {
	margin-top: 56px;
	padding-top: 56px;
	border-top: 1px solid var(--axiom-line);
}

.axiom-entry h1,
.axiom-standard-panel > h1 {
	color: #eeefed;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(2.2rem, 5vw, 4.2rem);
	font-weight: 400;
}

.axiom-entry-content,
.axiom-standard-panel > p {
	color: #adb1b0;
	font-size: 1.02rem;
	line-height: 1.8;
}

.axiom-entry-content a {
	color: var(--axiom-gold-light);
	text-decoration: underline;
}

@media (max-width: 1050px) {
	.axiom-hero {
		grid-template-columns: 1fr;
		gap: 5.5rem;
	}

	.axiom-hero-copy {
		max-width: 880px;
	}

	.axiom-identity-panel {
		width: min(100%, 620px);
		min-height: 620px;
	}

	.axiom-service-grid {
		grid-template-columns: 1fr;
	}

	.axiom-service-card {
		min-height: 0;
	}

	.axiom-service-card > span {
		margin-bottom: 3rem;
	}

	.axiom-principle {
		grid-template-columns: 1fr;
	}

	.axiom-footer {
		grid-template-columns: 1fr 1fr;
	}

	.axiom-footer > p {
		grid-column: 1 / -1;
	}
}

@media (max-width: 700px) {
	.axiom-masthead,
	.axiom-hero,
	.axiom-services,
	.axiom-principle,
	.axiom-footer {
		width: min(calc(100% - 32px), var(--axiom-width));
	}

	.axiom-masthead {
		min-height: 112px;
	}

	.axiom-header-logo {
		width: min(72vw, 310px);
	}

	.axiom-masthead-contact span {
		display: none;
	}

	.axiom-masthead-contact {
		padding-inline: 0.5rem;
	}

	.axiom-hero {
		min-height: auto;
		padding: 4.5rem 0 5.5rem;
		gap: 4.5rem;
	}

	.axiom-status {
		max-width: 100%;
		font-size: 0.58rem;
		letter-spacing: 0.09em;
	}

	.axiom-hero h1 {
		font-size: clamp(3.7rem, 17.5vw, 5.7rem);
		line-height: 0.86;
	}

	.axiom-intro {
		font-size: 1rem;
		line-height: 1.7;
	}

	.axiom-actions {
		display: grid;
	}

	.axiom-button {
		width: 100%;
	}

	.axiom-capabilities {
		display: grid;
		gap: 0.7rem;
	}

	.axiom-capabilities span:not(:last-child)::after {
		display: none;
	}

	.axiom-identity-panel {
		min-height: 550px;
		padding: 3.5rem 2rem;
		clip-path: polygon(6% 0, 94% 0, 100% 5%, 100% 95%, 94% 100%, 6% 100%, 0 95%, 0 5%);
	}

	.axiom-icon-stage {
		width: min(72%, 250px);
	}

	.axiom-section-heading {
		align-items: flex-start;
		flex-direction: column;
		gap: 0.4rem;
	}

	.axiom-service-card {
		padding: 2.4rem 2rem;
	}

	.axiom-principle {
		padding: 4.5rem 2rem;
		clip-path: polygon(5% 0, 95% 0, 100% 7%, 100% 93%, 95% 100%, 5% 100%, 0 93%, 0 7%);
	}

	.axiom-footer {
		min-height: 330px;
		grid-template-columns: 1fr;
		align-content: center;
		gap: 2rem;
	}

	.axiom-footer > img {
		width: min(100%, 330px);
	}

	.axiom-footer > p {
		grid-column: auto;
	}

	.axiom-backplate-one {
		width: 80vw;
	}

	.axiom-backplate-two {
		display: none;
	}
}

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

	.axiom-rise {
		opacity: 1;
		transform: none;
		animation: none;
	}

	.axiom-button,
	.axiom-service-card,
	.axiom-masthead-contact {
		transition: none;
	}
}

