/*
Theme Name: HVACB
Theme URI: https://hvacb.com
Author: HVACB.com
Author URI: https://hvacb.com
Description: HVACB.com design system - mobile-first child of Twenty Twenty-Five. Design tokens (colour, type, spacing, buttons) live in theme.json. This file holds component behaviour only and reads tokens via CSS custom properties.
Template: twentytwentyfive
Version: 3.0.0
Requires at least: 6.7
Tested up to: 7.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: hvacb
Tags: block-theme, business, mobile-first
*/

/* ==========================================================================
   Tokens come from theme.json. Do not hard-code hex values here.
     --wp--preset--color--accent-1   #4B3B8F  deep purple
     --wp--preset--color--accent-5   #5A5670  muted text
     --wp--preset--color--accent-7   #F7F4FC  soft surface
     --wp--preset--color--signal     #D96A2B  fills, borders, large text only
     --wp--preset--color--signal-ink #B4541F  small text on white
     --wp--preset--color--signal-soft #EDB088 small text on purple
   ========================================================================== */

/* ========== BASE ========== */

img,
.wp-block-image img {
	max-width: 100%;
	height: auto;
}

/* ========== BUTTONS ========== */
/* Fill, radius and type come from theme.json elements.button. */

.wp-block-button__link,
.wp-element-button {
	min-height: 48px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.wp-block-button.is-style-outline .wp-block-button__link {
	background-color: transparent;
	color: var(--wp--preset--color--accent-1);
	border: 2px solid var(--wp--preset--color--accent-4);
	padding: 11px 24px;
}

.wp-block-button.is-style-outline .wp-block-button__link:hover {
	background-color: #FFFFFF;
	border-color: var(--wp--preset--color--accent-1);
	color: var(--wp--preset--color--accent-2);
}

/* ========== HEADER ========== */

.hvacb-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255, 255, 255, 0.94);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border-bottom: 1px solid var(--wp--preset--color--accent-6);
}

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

.hvacb-lockup a {
	text-decoration: none;
}

.hvacb-lockup .custom-logo,
.hvacb-lockup .wp-block-site-logo img {
	height: 36px;
	width: auto;
	max-width: 148px;
}

.hvacb-navbar__actions {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	gap: 1.5rem;
	margin-left: auto;
}

.hvacb-header .wp-block-navigation-item a {
	font-weight: 600;
	text-decoration: none;
}

.hvacb-header-cta .wp-block-button__link {
	min-height: 44px;
	padding: 10px 20px;
	font-size: 14px;
	white-space: nowrap;
}

.hvacb-header .wp-block-navigation__responsive-container-open,
.hvacb-header .wp-block-navigation__responsive-container-close {
	min-width: 48px;
	min-height: 48px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

@media (max-width: 781px) {
	.hvacb-header {
		position: static;
		background: #FFFFFF;
	}
	.admin-bar .hvacb-header {
		top: 0;
	}
	.hvacb-navbar__actions {
		gap: 0.5rem;
	}
	.hvacb-header .wp-block-navigation__responsive-container-open {
		order: 2;
	}
	.hvacb-header-cta {
		order: 1;
	}
	.hvacb-header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item__content {
		font-size: 1.25rem;
		font-weight: 600;
		padding-block: 0.55rem;
	}
}

@media (max-width: 379px) {
	.hvacb-header-cta {
		display: none;
	}
}

/* ========== HERO ========== */

.hvacb-hero {
	position: relative;
	background:
		radial-gradient(ellipse 65% 50% at 88% 12%, rgba(165, 145, 225, 0.34) 0%, transparent 48%),
		radial-gradient(ellipse 50% 45% at 8% 38%, rgba(200, 180, 250, 0.30) 0%, transparent 42%),
		linear-gradient(180deg, #F6F2FF 0%, #EFEAFB 42%, #FAF8FF 100%);
	overflow: hidden;
}

.hvacb-hero__inner {
	text-align: center;
	margin-inline: auto;
	width: 100%;
	max-width: 820px;
}

.hvacb-hero__inner > * {
	margin-inline: auto;
}

.hvacb-hero-kicker {
	display: inline-block;
	width: auto;
	margin: 0 auto;
	padding: 8px 18px;
	border-radius: 999px;
	font-size: clamp(11px, 1.05vw, 12.5px);
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	line-height: 1.3;
	color: #FFFFFF;
	background: linear-gradient(105deg, var(--wp--preset--color--accent-1) 0%, #5B6BC8 42%, var(--wp--preset--color--signal) 100%);
}

.hvacb-hero-title {
	max-width: 16ch;
	margin-inline: auto;
}

.hvacb-hero-title br {
	display: none;
}

@media (min-width: 720px) {
	.hvacb-hero-title {
		max-width: none;
	}
	.hvacb-hero-title br {
		display: inline;
	}
}

.hvacb-hero-sub {
	font-size: var(--wp--preset--font-size--lead);
	line-height: 1.55;
	color: var(--wp--preset--color--accent-5);
	max-width: 44ch;
	margin-inline: auto;
}

.hvacb-hero .wp-block-buttons {
	justify-content: center;
	gap: 10px;
}

/* ========== JOURNEY STRIP ========== */

.hvacb-journey {
	position: relative;
	text-align: center;
	padding: clamp(1.35rem, 3vw, 2rem) clamp(0.85rem, 2vw, 1.5rem);
	background: rgba(255, 255, 255, 0.82);
	border: 1px solid var(--wp--preset--color--accent-6);
	border-radius: 24px;
}

.hvacb-journey__glow {
	display: none;
}

.hvacb-journey__track {
	position: relative;
	z-index: 1;
	text-align: left;
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: center;
	gap: 8px 6px;
}

.hvacb-stage {
	flex: 1 1 140px;
	max-width: 168px;
	min-width: 128px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.hvacb-stage-connector {
	display: none;
}

@media (min-width: 1100px) {
	.hvacb-journey__track {
		flex-wrap: nowrap;
		gap: 0;
	}
	.hvacb-stage {
		flex: 1 1 0;
		max-width: none;
		min-width: 0;
	}
	.hvacb-stage-connector {
		display: block;
		flex: 0 0 18px;
		align-self: center;
		height: 2px;
		background: var(--wp--preset--color--signal);
		border-radius: 2px;
		margin-bottom: 42px;
		position: relative;
	}
	.hvacb-stage-connector::after {
		content: "";
		position: absolute;
		right: -3px;
		top: 50%;
		transform: translateY(-50%);
		width: 0;
		height: 0;
		border-left: 5px solid var(--wp--preset--color--signal);
		border-top: 4px solid transparent;
		border-bottom: 4px solid transparent;
	}
}

.hvacb-stage__ui {
	background: #FFFFFF;
	border: 1px solid var(--wp--preset--color--accent-6);
	border-radius: 14px;
	padding: 12px 10px;
	min-height: 88px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.hvacb-stage:hover .hvacb-stage__ui {
	transform: translateY(-2px);
	box-shadow: 0 8px 22px rgba(75, 59, 143, 0.1);
}

.hvacb-stage--focus .hvacb-stage__ui {
	background: var(--wp--preset--color--accent-1);
	border-color: transparent;
}

.hvacb-stage__meta {
	display: flex;
	flex-direction: column;
	gap: 2px;
	padding: 0 2px;
}

.hvacb-stage__num {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	color: var(--wp--preset--color--signal-ink);
	line-height: 1;
}

.hvacb-stage__meta strong {
	font-size: 14px;
	font-weight: 700;
	color: var(--wp--preset--color--contrast);
	letter-spacing: -0.01em;
	line-height: 1.25;
}

/* Solid purple. Gradient text measured 3.47:1 at the orange end. */
.hvacb-stage__meta span:last-child {
	font-size: 12px;
	font-weight: 500;
	line-height: 1.35;
	color: var(--wp--preset--color--accent-1);
}

.hvacb-journey__caption {
	position: relative;
	z-index: 1;
	display: inline-block;
	margin: 36px auto 0;
	padding: 8px 18px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	line-height: 1.3;
	color: #FFFFFF;
	background: var(--wp--preset--color--accent-1);
	border-radius: 999px;
}

/* --- Mini UI --- */

.hvacb-ui-search {
	display: flex;
	align-items: center;
	gap: 8px;
	width: 100%;
	background: var(--wp--preset--color--accent-7);
	border: 1px solid var(--wp--preset--color--accent-6);
	border-radius: 999px;
	padding: 8px 12px;
}

.hvacb-ui-search__icon {
	font-size: 13px;
	color: var(--wp--preset--color--signal-ink);
	line-height: 1;
}

.hvacb-ui-search__text {
	font-size: 11.5px;
	font-weight: 600;
	color: var(--wp--preset--color--accent-5);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.hvacb-ui-site {
	width: 100%;
}

.hvacb-ui-site__bar {
	display: flex;
	gap: 4px;
	margin-bottom: 8px;
}

.hvacb-ui-site__bar span {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--wp--preset--color--accent-6);
}

.hvacb-ui-site__bar span:first-child {
	background: var(--wp--preset--color--signal);
}

.hvacb-ui-site__body {
	background: var(--wp--preset--color--accent-7);
	border-radius: 8px;
	padding: 8px;
}

.hvacb-ui-site__hero {
	height: 22px;
	background: var(--wp--preset--color--accent-6);
	border-radius: 4px;
	margin-bottom: 6px;
}

.hvacb-ui-site__line {
	height: 4px;
	background: var(--wp--preset--color--accent-6);
	border-radius: 2px;
	margin-bottom: 4px;
	width: 90%;
}

.hvacb-ui-site__line--short {
	width: 55%;
}

.hvacb-ui-site__cta {
	height: 10px;
	width: 40%;
	background: var(--wp--preset--color--signal);
	border-radius: 999px;
	margin-top: 6px;
}

.hvacb-ui-lead {
	width: 100%;
	text-align: left;
}

.hvacb-ui-lead__badge {
	display: inline-block;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #FFFFFF;
	background: var(--wp--preset--color--signal-ink);
	padding: 3px 8px;
	border-radius: 999px;
	margin-bottom: 6px;
}

.hvacb-ui-lead__name {
	font-size: 12.5px;
	font-weight: 700;
	color: var(--wp--preset--color--contrast);
	line-height: 1.2;
}

.hvacb-ui-lead__detail {
	font-size: 11.5px;
	font-weight: 500;
	color: var(--wp--preset--color--accent-5);
	margin-top: 2px;
}

.hvacb-ui-crm {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 7px;
}

.hvacb-ui-crm__row {
	display: flex;
	align-items: center;
	gap: 8px;
}

.hvacb-ui-crm__dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--wp--preset--color--accent-6);
	flex-shrink: 0;
}

.hvacb-ui-crm__dot--active {
	background: var(--wp--preset--color--signal);
	box-shadow: 0 0 0 3px rgba(217, 106, 43, 0.22);
}

.hvacb-ui-crm__bar {
	flex: 1;
	height: 6px;
	background: var(--wp--preset--color--accent-6);
	border-radius: 3px;
}

.hvacb-ui-crm__bar--active {
	background: var(--wp--preset--color--signal);
	width: 75%;
}

.hvacb-ui-msg {
	width: 100%;
}

.hvacb-ui-msg__bubble {
	background: var(--wp--preset--color--accent-7);
	border: 1px solid var(--wp--preset--color--accent-6);
	border-radius: 10px 10px 10px 3px;
	padding: 8px 10px;
	font-size: 11.5px;
	font-weight: 600;
	color: var(--wp--preset--color--contrast);
	line-height: 1.35;
}

.hvacb-ui-msg__time {
	font-size: 11px;
	font-weight: 600;
	color: var(--wp--preset--color--signal-ink);
	margin-top: 5px;
	text-align: right;
}

.hvacb-ui-cal {
	text-align: center;
	color: #FFFFFF;
}

.hvacb-ui-cal__day {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.hvacb-ui-cal__date {
	font-size: 26px;
	font-weight: 800;
	line-height: 1.05;
	letter-spacing: -0.03em;
}

.hvacb-ui-cal__slot {
	font-size: 11.5px;
	font-weight: 600;
	margin-top: 2px;
}

/* ========== SECTIONS ========== */

.hvacb-section--soft {
	background: var(--wp--preset--color--accent-7);
}

.hvacb-label {
	font-size: var(--wp--preset--font-size--x-small);
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--wp--preset--color--accent-1);
	margin: 0;
	line-height: 1.3;
}

.hvacb-label--on-dark {
	color: var(--wp--preset--color--signal-soft);
}

.hvacb-section-title {
	max-width: 18ch;
}

.hvacb-section-title--on-dark {
	color: #FFFFFF;
}

.hvacb-section-lead {
	font-size: var(--wp--preset--font-size--lead);
	line-height: 1.55;
	color: var(--wp--preset--color--accent-5);
	max-width: 44ch;
}

/* ========== CAPABILITIES ========== */

.hvacb-caps {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.hvacb-cap {
	background: #FFFFFF;
	border: 1px solid var(--wp--preset--color--accent-6);
	border-radius: 18px;
	padding: 22px 20px;
	height: 100%;
	transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.hvacb-cap:not(.hvacb-cap--feature):hover {
	border-color: var(--wp--preset--color--accent-3);
	box-shadow: 0 10px 28px rgba(75, 59, 143, 0.07);
}

.hvacb-cap--feature {
	background: var(--wp--preset--color--accent-1);
	border: none;
	border-radius: 20px;
	padding: clamp(1.5rem, 3vw, 2rem) clamp(1.35rem, 2.5vw, 1.85rem);
	color: #FFFFFF;
}

.hvacb-cap--feature .hvacb-cap__num {
	color: var(--wp--preset--color--signal-soft);
}

.hvacb-cap--feature .hvacb-cap__title {
	color: #FFFFFF;
}

.hvacb-cap--feature .hvacb-cap__body {
	color: var(--wp--preset--color--accent-8);
	max-width: 48ch;
}

.hvacb-caps__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 14px;
}

.hvacb-cap__num {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;
	color: var(--wp--preset--color--signal-ink);
	margin: 0 0 10px;
}

.hvacb-cap__title {
	margin: 0 0 8px;
}

.hvacb-cap__body {
	font-size: var(--wp--preset--font-size--small);
	line-height: 1.55;
	color: var(--wp--preset--color--accent-5);
	margin: 0;
}

/* ========== PROCESS ========== */

.hvacb-process {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
	gap: 14px;
}

.hvacb-process__step {
	background: #FFFFFF;
	border: 1px solid var(--wp--preset--color--accent-6);
	border-radius: 16px;
	padding: 22px 18px;
	height: 100%;
}

.hvacb-process__step--final {
	background: var(--wp--preset--color--accent-1);
	border-color: transparent;
}

.hvacb-process__step--final .hvacb-process__title {
	color: #FFFFFF;
}

.hvacb-process__step--final .hvacb-process__body {
	color: var(--wp--preset--color--accent-8);
}

.hvacb-process__num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 999px;
	border: 2px solid var(--wp--preset--color--signal);
	font-size: 12.5px;
	font-weight: 700;
	color: var(--wp--preset--color--signal-ink);
	margin: 0 0 12px;
	line-height: 1;
}

.hvacb-process__step--final .hvacb-process__num {
	border-color: var(--wp--preset--color--signal-soft);
	color: var(--wp--preset--color--signal-soft);
}

.hvacb-process__title {
	margin: 0 0 6px;
}

.hvacb-process__body {
	font-size: var(--wp--preset--font-size--small);
	line-height: 1.55;
	color: var(--wp--preset--color--accent-5);
	margin: 0;
}

/* ========== AUDIENCE ========== */

.hvacb-audience {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 14px;
}

.hvacb-audience__item {
	background: var(--wp--preset--color--accent-7);
	border-radius: 16px;
	padding: 22px 18px;
	height: 100%;
}

.hvacb-audience__title {
	margin: 0 0 6px;
}

.hvacb-audience__body {
	font-size: var(--wp--preset--font-size--small);
	line-height: 1.55;
	color: var(--wp--preset--color--accent-5);
	margin: 0;
}

/* ========== OWNERSHIP ========== */

.hvacb-ownership__list {
	display: flex;
	flex-direction: column;
}

.hvacb-ownership__item {
	padding: 18px 0;
	border-top: 1px solid var(--wp--preset--color--accent-6);
}

.hvacb-ownership__item:first-child {
	border-top: none;
	padding-top: 0;
}

.hvacb-ownership__item-title {
	margin: 0 0 5px;
}

.hvacb-ownership__item-body {
	font-size: var(--wp--preset--font-size--small);
	line-height: 1.55;
	color: var(--wp--preset--color--accent-5);
	margin: 0;
}

/* ========== INSIGHTS ========== */

.hvacb-link-all {
	font-size: var(--wp--preset--font-size--small);
	font-weight: 700;
	margin: 0;
}

.hvacb-link-all a {
	text-decoration: none;
}

.hvacb-link-all a:hover {
	text-decoration: underline;
}

.hvacb-insights-empty {
	background: #FFFFFF;
	border: 2px dashed var(--wp--preset--color--accent-3);
	border-radius: 18px;
	padding: clamp(2.25rem, 4.5vw, 3.5rem) 1.75rem;
	text-align: center;
}

.hvacb-insights-empty p {
	margin: 0 auto;
	font-size: var(--wp--preset--font-size--small);
	line-height: 1.6;
	color: var(--wp--preset--color--accent-5);
	max-width: 46ch;
}

.hvacb-insights-empty strong {
	display: block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--wp--preset--color--signal-ink);
	margin-bottom: 8px;
}

/* ========== CTA BAND ========== */

.hvacb-section--cta {
	background: var(--wp--preset--color--accent-2);
}

.hvacb-cta-lead {
	font-size: var(--wp--preset--font-size--lead);
	line-height: 1.6;
	color: var(--wp--preset--color--accent-8);
	max-width: 40ch;
}

.hvacb-cta-meta {
	font-size: var(--wp--preset--font-size--small);
	color: var(--wp--preset--color--accent-8);
	margin: 0;
}

.hvacb-form-card {
	background: #FFFFFF;
	border-radius: 18px;
	padding: clamp(1.35rem, 2.75vw, 1.85rem);
}

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

.hvacb-form-card .ff-el-group {
	margin-bottom: 18px;
}

.hvacb-form-card input[type=text],
.hvacb-form-card input[type=email],
.hvacb-form-card input[type=url],
.hvacb-form-card textarea {
	width: 100%;
	min-height: 48px;
	padding: 12px 14px;
	border: 2px solid var(--wp--preset--color--accent-3);
	border-radius: 10px;
	font-family: inherit;
	font-size: 16px;
	background: #FFFFFF;
	color: var(--wp--preset--color--contrast);
}

.hvacb-form-card input:hover,
.hvacb-form-card textarea:hover {
	border-color: var(--wp--preset--color--accent-4);
}

.hvacb-form-card label {
	display: block;
	font-size: var(--wp--preset--font-size--small);
	font-weight: 700;
	margin-bottom: 6px;
	color: var(--wp--preset--color--contrast);
}

.hvacb-form-card .ff-el-help-message {
	font-size: var(--wp--preset--font-size--small);
	color: var(--wp--preset--color--accent-5);
	margin-top: 6px;
}

.hvacb-form-card .ff-btn-submit {
	min-height: 48px;
	background: var(--wp--preset--color--accent-1);
	color: #FFFFFF;
	border: 0;
	border-radius: 999px;
	padding: 13px 26px;
	font-family: inherit;
	font-weight: 700;
	font-size: 16px;
	width: 100%;
	cursor: pointer;
}

.hvacb-form-card .ff-btn-submit:hover {
	background: var(--wp--preset--color--accent-2);
}

.hvacb-form-card .text-danger,
.hvacb-form-card .ff-el-is-error .text-danger {
	color: var(--wp--preset--color--accent-9);
	font-size: var(--wp--preset--font-size--small);
}

.hvacb-form-card .ff-el-is-error input,
.hvacb-form-card .ff-el-is-error textarea {
	border-color: var(--wp--preset--color--accent-9);
}

.hvacb-form-card .ff-message-success {
	border: 1px solid var(--wp--preset--color--accent-3);
	background: var(--wp--preset--color--accent-7);
	border-radius: 12px;
	padding: 18px 20px;
	color: var(--wp--preset--color--contrast);
}

/* ========== FOOTER ========== */

.hvacb-footer a {
	text-decoration: none;
	color: var(--wp--preset--color--accent-8);
}

.hvacb-footer a:hover {
	text-decoration: underline;
	color: #FFFFFF;
}

.hvacb-footer-heading {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--wp--preset--color--accent-8);
	margin: 0 0 12px;
}

.hvacb-footer-links p {
	margin: 0;
	padding: 5px 0;
	font-size: var(--wp--preset--font-size--small);
	line-height: 1.4;
}

/* ========== CARDS (shared, used by page + single templates) ========== */

.hvacb-card {
	background: #FFFFFF;
	border: 1px solid var(--wp--preset--color--accent-6);
	border-radius: 14px;
	height: 100%;
}

.hvacb-card--soft {
	background: var(--wp--preset--color--accent-7);
	border-color: transparent;
}

.hvacb-rule {
	border: 0;
	border-top: 1px solid var(--wp--preset--color--accent-6);
	margin: 0;
}

/* ========== MOBILE CALL BAR ========== */

.hvacb-callbar {
	display: none;
}

@media (max-width: 781px) {
	.hvacb-callbar {
		display: block;
		position: fixed;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 200;
		background: #FFFFFF;
		border-top: 1px solid var(--wp--preset--color--accent-6);
		padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
	}
	.hvacb-callbar a {
		display: flex;
		align-items: center;
		justify-content: center;
		min-height: 48px;
		background: var(--wp--preset--color--accent-1);
		color: #FFFFFF;
		border-radius: 999px;
		font-weight: 700;
		font-size: 16px;
		letter-spacing: -0.01em;
		text-decoration: none;
	}
	body {
		padding-bottom: 76px;
	}
}

/* ========== MOTION ========== */

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}
