/* ==========================================================================
   V4 experience layer
   Richer colour, depth, responsive interaction and motion. This stylesheet
   loads after the structural styles so the theme remains easy to maintain.
   ========================================================================== */

/* ------------------------------------------------------------- foundations */

body {
	background:
		radial-gradient(circle at 8% 8%, var(--wt-blue-100), transparent 28rem),
		linear-gradient(180deg, var(--wt-white), var(--wt-off-white));
}

::selection {
	background: var(--wt-orange);
	color: var(--wt-navy-charcoal);
}

.wt-section {
	position: relative;
	overflow: clip;
}

.wt-section-heading__title {
	letter-spacing: -0.025em;
}

.wt-section-heading__title::after {
	content: "";
	display: block;
	width: 4.25rem;
	height: 0.32rem;
	margin-top: var(--wt-space-4);
	border-radius: var(--wt-radius-pill);
	background: linear-gradient(90deg, var(--wt-orange), var(--wt-orange-gold));
	box-shadow: var(--wt-shadow-orange);
}

.wt-section-heading--center .wt-section-heading__title::after {
	margin-inline: auto;
}

.wt-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: var(--wt-space-2);
	padding: 0.38rem 0.72rem;
	border: 1px solid var(--wt-fill-orange);
	border-radius: var(--wt-radius-pill);
	background: var(--wt-orange-100);
}

.wt-section--dark .wt-eyebrow,
.wt-section--navy .wt-eyebrow {
	border-color: var(--wt-line-light-soft);
	background: var(--wt-fill-light);
}

/* ------------------------------------------------------- global navigation */

.wt-contact-strip {
	position: relative;
	background: linear-gradient(90deg, var(--wt-navy-charcoal), var(--wt-navy), var(--wt-navy-charcoal));
	overflow: hidden;
}

.wt-contact-strip::after {
	content: "";
	position: absolute;
	inset-block: 0;
	inset-inline-start: -25%;
	width: 18%;
	background: linear-gradient(90deg, transparent, var(--wt-fill-blue), transparent);
	transform: skewX(-24deg);
	animation: wt-strip-sheen 8s ease-in-out infinite;
	pointer-events: none;
}

@keyframes wt-strip-sheen {
	0%, 62% { transform: translateX(0) skewX(-24deg); opacity: 0; }
	70% { opacity: 1; }
	100% { transform: translateX(760%) skewX(-24deg); opacity: 0; }
}

.wt-header {
	background: color-mix(in srgb, var(--wt-white) 92%, transparent);
	backdrop-filter: blur(16px) saturate(1.15);
	-webkit-backdrop-filter: blur(16px) saturate(1.15);
}

.wt-header.is-stuck {
	border-bottom-color: var(--wt-blue-100);
	box-shadow: var(--wt-shadow-float);
}

.wt-header__logo--bundled img {
	transition: transform var(--wt-duration-slow) var(--wt-ease),
	            filter var(--wt-duration-slow) var(--wt-ease);
}

.wt-header__logo--bundled:hover img {
	transform: rotate(-4deg) scale(1.06);
	filter: drop-shadow(0 0.45rem 0.6rem var(--wt-fill-navy));
}

.wt-nav__link {
	position: relative;
	border: 0;
}

.wt-nav__link::after {
	content: "";
	position: absolute;
	inset-inline: var(--wt-space-3);
	inset-block-end: 0.35rem;
	height: 0.2rem;
	border-radius: var(--wt-radius-pill);
	background: linear-gradient(90deg, var(--wt-orange), var(--wt-orange-gold));
	transform: scaleX(0);
	transform-origin: center;
	transition: transform var(--wt-duration) var(--wt-ease);
}

.wt-nav__link:hover,
.wt-nav__item.is-current > .wt-nav__link {
	border: 0;
}

.wt-nav__link:hover::after,
.wt-nav__item.is-current > .wt-nav__link::after {
	transform: scaleX(1);
}

.wt-menu-toggle {
	border-radius: var(--wt-radius-pill);
	background: linear-gradient(135deg, var(--wt-navy), var(--wt-blue-bright));
	box-shadow: var(--wt-glow-blue);
}

.wt-drawer__panel {
	background:
		radial-gradient(circle at 100% 0%, var(--wt-blue-100), transparent 16rem),
		var(--wt-white);
}

/* --------------------------------------------------------- richer buttons */

.wt-btn {
	position: relative;
	overflow: hidden;
	border-radius: var(--wt-radius-pill);
	isolation: isolate;
}

.wt-btn::after {
	content: "";
	position: absolute;
	inset-block: -80%;
	inset-inline-start: -35%;
	width: 26%;
	background: linear-gradient(90deg, transparent, var(--wt-line-light-70), transparent);
	transform: rotate(18deg) translateX(-250%);
	transition: transform 620ms var(--wt-ease);
	z-index: -1;
}

.wt-btn:hover {
	transform: translateY(-3px);
}

.wt-btn:hover::after {
	transform: rotate(18deg) translateX(620%);
}

.wt-btn--primary {
	background: linear-gradient(135deg, var(--wt-orange), var(--wt-orange-bright));
	border-color: var(--wt-orange-bright);
	box-shadow: var(--wt-shadow-orange);
}

.wt-btn--primary:hover {
	background: linear-gradient(135deg, var(--wt-orange-hover), var(--wt-orange-gold));
	border-color: var(--wt-orange-gold);
	box-shadow: 0 18px 34px var(--wt-glow-orange);
}

.wt-btn--secondary {
	background: linear-gradient(135deg, var(--wt-navy), var(--wt-blue-bright));
	border-color: var(--wt-blue-bright);
	box-shadow: var(--wt-glow-blue);
}

/* ------------------------------------------------------------------- hero */

.wt-hero {
	min-height: clamp(35rem, 78vh, 48rem);
	background: var(--wt-navy-charcoal);
}

.wt-hero__media {
	inset: -1.5%;
	transform: translate3d(
		var(--wt-hero-pan-x, 0),
		calc(var(--wt-hero-pan-y, 0px) + var(--wt-hero-scroll-y, 0px)),
		0
	);
	transition: transform 520ms var(--wt-ease);
	will-change: transform;
}

.wt-hero--motion-ready .wt-hero__media {
	transition-duration: 360ms;
}

.wt-hero::before,
.wt-hero::after {
	content: "";
	position: absolute;
	pointer-events: none;
	z-index: -1;
}

.wt-hero::before {
	width: clamp(18rem, 38vw, 36rem);
	aspect-ratio: 1;
	inset-inline-end: -8%;
	inset-block-end: -34%;
	border-radius: 50%;
	background: radial-gradient(circle, var(--wt-glow-orange), transparent 66%);
	filter: blur(8px);
	animation: wt-hero-glow 7s ease-in-out infinite alternate;
}

.wt-hero::after {
	inset: 0;
	background-image:
		linear-gradient(var(--wt-grid-line) 1px, transparent 1px),
		linear-gradient(90deg, var(--wt-grid-line) 1px, transparent 1px);
	background-size: 4rem 4rem;
	mask-image: linear-gradient(90deg, var(--wt-graphite), transparent 72%);
	opacity: 0.7;
}

@keyframes wt-hero-glow {
	from { transform: translate3d(-3%, 0, 0) scale(0.92); opacity: 0.72; }
	to { transform: translate3d(4%, -5%, 0) scale(1.08); opacity: 1; }
}

.wt-hero__media img[width][height] {
	height: 100%;
	animation: wt-v5-hero-drift 13s ease-in-out infinite alternate;
}

@keyframes wt-v5-hero-drift {
	from { transform: scale(1.03) translate3d(0, 0, 0); }
	to { transform: scale(1.13) translate3d(-2.4%, -1.2%, 0); }
}

.wt-hero__overlay {
	background:
		linear-gradient(90deg, var(--wt-scrim-hero-strong) 0%, var(--wt-scrim-hero-medium) 46%, var(--wt-scrim-hero-soft) 100%),
		linear-gradient(0deg, var(--wt-scrim-hero-medium), transparent 45%);
}

.wt-hero__inner {
	z-index: 2;
	padding-block: clamp(6.5rem, 11vw, 9.5rem);
	max-width: var(--wt-container);
}

.wt-hero__inner > * {
	max-width: 46rem;
}

.wt-hero__motion-cards {
	position: absolute;
	z-index: 1;
	inset-block-start: 18%;
	inset-inline-end: clamp(1rem, 5vw, 6rem);
	width: clamp(17rem, 25vw, 23rem);
	height: clamp(19rem, 31vw, 27rem);
	pointer-events: none;
}

.wt-hero__motion-card {
	position: absolute;
	margin: 0;
	overflow: hidden;
	border: 1px solid var(--wt-line-light-strong);
	border-radius: 1.15rem;
	background: var(--wt-navy-900);
	box-shadow: 0 1.4rem 3.2rem var(--wt-scrim-hero-medium), var(--wt-glow-orange);
	backdrop-filter: blur(10px);
}

.wt-hero__motion-card img[width][height] {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.wt-hero__motion-card figcaption {
	position: absolute;
	inset-inline: 0.55rem;
	inset-block-end: 0.55rem;
	padding: 0.4rem 0.58rem;
	border: 1px solid var(--wt-line-light-soft);
	border-radius: var(--wt-radius-pill);
	background: var(--wt-scrim-hero-strong);
	color: var(--wt-white);
	font-size: 0.7rem;
	font-weight: var(--wt-weight-bold);
	letter-spacing: 0.06em;
	text-align: center;
	text-transform: uppercase;
}

.wt-hero__motion-card--tire {
	inset-block-start: 0;
	inset-inline-end: 0;
	width: 68%;
	aspect-ratio: 4 / 3;
	animation: wt-v5-float-one 5.8s ease-in-out infinite alternate;
}

.wt-hero__motion-card--shop {
	inset-inline-start: 0;
	inset-block-end: 0;
	width: 58%;
	aspect-ratio: 1;
	transform: rotate(-4deg);
	animation: wt-v5-float-two 7.2s ease-in-out infinite alternate;
}

.wt-hero__motion-card--shop img {
	object-position: 72% center;
}

.wt-hero__motion-orbit {
	position: absolute;
	inset-inline-end: 4%;
	inset-block-end: 11%;
	width: 4.8rem;
	aspect-ratio: 1;
	padding: 0.55rem;
	border: 2px solid var(--wt-orange-bright);
	border-radius: 50%;
	background: var(--wt-white);
	box-shadow: var(--wt-glow-orange);
	animation: wt-v5-orbit 9s linear infinite;
}

.wt-hero__motion-orbit img[width][height] {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

@keyframes wt-v5-float-one {
	from { transform: translate3d(0, -0.4rem, 0) rotate(2deg); }
	to { transform: translate3d(-0.8rem, 0.9rem, 0) rotate(-1deg); }
}

@keyframes wt-v5-float-two {
	from { transform: translate3d(-0.25rem, 0.6rem, 0) rotate(-4deg); }
	to { transform: translate3d(0.7rem, -0.8rem, 0) rotate(1deg); }
}

@keyframes wt-v5-orbit {
	to { transform: rotate(360deg); }
}

.wt-hero__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: var(--wt-space-2);
	width: fit-content;
	padding: 0.52rem 0.9rem;
	margin-bottom: var(--wt-space-4);
	border: 1px solid var(--wt-line-light-strong);
	border-radius: var(--wt-radius-pill);
	background: var(--wt-fill-light);
	color: var(--wt-white);
	font-size: var(--wt-text-xs);
	font-weight: var(--wt-weight-bold);
	letter-spacing: var(--wt-tracking-wider);
	text-transform: uppercase;
	backdrop-filter: blur(10px);
}

.wt-hero__eyebrow span {
	width: 0.62rem;
	aspect-ratio: 1;
	border-radius: 50%;
	background: var(--wt-orange-bright);
	box-shadow: 0 0 0 0 var(--wt-glow-orange);
	animation: wt-live-dot 2.2s ease-out infinite;
}

@keyframes wt-live-dot {
	0% { box-shadow: 0 0 0 0 var(--wt-glow-orange); }
	70% { box-shadow: 0 0 0 0.55rem transparent; }
	100% { box-shadow: 0 0 0 0 transparent; }
}

.wt-hero__title {
	font-size: clamp(3.15rem, 6.2vw, 6rem);
	text-shadow: 0 0.15rem 1.4rem var(--wt-scrim-hero-medium);
}

.wt-hero__text {
	max-width: 40rem;
	font-size: clamp(1.08rem, 1.55vw, 1.38rem);
}

.wt-hero__assurances {
	display: flex;
	flex-wrap: wrap;
	gap: var(--wt-space-3);
	margin: var(--wt-space-5) 0 0;
	padding: 0;
	list-style: none;
}

.wt-hero__assurances li {
	display: inline-flex;
	align-items: center;
	gap: var(--wt-space-2);
	padding: 0.5rem 0.78rem;
	border: 1px solid var(--wt-line-light-soft);
	border-radius: var(--wt-radius-pill);
	background: var(--wt-fill-light);
	color: var(--wt-text-on-dark);
	font-size: var(--wt-text-sm);
	font-weight: var(--wt-weight-medium);
	backdrop-filter: blur(12px);
}

.wt-hero__assurances .wt-icon {
	color: var(--wt-orange-bright);
}

/* ------------------------------------------------------------ tire finder */

.wt-finder {
	margin-top: calc(var(--wt-space-10) * -1);
}

.wt-finder > .wt-container {
	max-width: 70rem;
}

.wt-finder__panel {
	position: relative;
	width: 100%;
	max-width: 68rem;
	margin-inline: auto;
	border: 1px solid var(--wt-line-light-strong);
	border-radius: var(--wt-radius-xl);
	box-shadow: var(--wt-shadow-float), var(--wt-glow-blue);
}

.wt-finder__panel::before {
	padding: 1rem var(--wt-space-6);
	background: linear-gradient(100deg, var(--wt-navy-900), var(--wt-navy), var(--wt-blue-bright));
}

.wt-finder__tablist {
	background: linear-gradient(180deg, var(--wt-navy-50), var(--wt-white));
}

.wt-finder__tab {
	position: relative;
	padding-block: 1.15rem;
	transition: color var(--wt-duration) var(--wt-ease),
	            background-color var(--wt-duration) var(--wt-ease);
}

.wt-finder__tab::before {
	content: "";
	position: absolute;
	inset-inline: 22%;
	inset-block-end: -1px;
	height: 0.24rem;
	border-radius: var(--wt-radius-pill);
	background: linear-gradient(90deg, var(--wt-orange), var(--wt-orange-gold));
	transform: scaleX(0);
	transition: transform var(--wt-duration-slow) var(--wt-ease);
}

.wt-finder__tab[aria-selected="true"] {
	border-bottom-color: transparent;
	background: var(--wt-white);
}

.wt-finder__tab[aria-selected="true"]::before {
	transform: scaleX(1);
}

.wt-finder__panel-body {
	position: relative;
	padding: clamp(1rem, 2vw, 1.5rem);
	background:
		radial-gradient(circle at 100% 0%, var(--wt-blue-100), transparent 23rem),
		radial-gradient(circle at 0% 100%, var(--wt-orange-100), transparent 18rem),
		var(--wt-white);
}

.wt-finder__form {
	display: grid;
	gap: 0.85rem;
}

.wt-finder__group {
	min-width: 0;
	margin: 0;
	padding: 0.85rem;
	border: 1px solid var(--wt-border);
	border-radius: var(--wt-radius-lg);
	background: color-mix(in srgb, var(--wt-white) 92%, var(--wt-blue-100));
}

.wt-finder__group legend {
	padding-inline: 0.4rem;
	color: var(--wt-navy);
	font-family: var(--wt-font-display);
	font-size: 0.82rem;
	font-weight: var(--wt-weight-bold);
	letter-spacing: var(--wt-tracking-wide);
	text-transform: uppercase;
}

.wt-finder__group legend span {
	margin-inline-start: 0.35rem;
	color: var(--wt-text-muted);
	font-family: var(--wt-font-body);
	font-size: 0.72rem;
	font-weight: var(--wt-weight-medium);
	letter-spacing: 0;
	text-transform: none;
}

.wt-finder__group--size {
	border-color: color-mix(in srgb, var(--wt-orange) 32%, var(--wt-border));
	background: color-mix(in srgb, var(--wt-orange-100) 48%, var(--wt-white));
}

.wt-finder__vehicle-grid,
.wt-finder__size-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0.75rem;
	align-items: end;
}

.wt-finder__size-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(8.5rem, auto);
}

.wt-finder .wt-field {
	margin-bottom: 0;
}

.wt-finder .wt-input,
.wt-finder .wt-select {
	min-height: 3rem;
	padding-block: 0.55rem;
	border-width: 2px;
	background: color-mix(in srgb, var(--wt-white) 94%, transparent);
	box-shadow: inset 0 1px 0 var(--wt-white);
}

.wt-finder .wt-input:hover,
.wt-finder .wt-select:hover {
	border-color: var(--wt-blue-bright);
}

.wt-finder .wt-btn {
	min-height: 3rem;
}

.wt-finder__continue {
	align-self: end;
	white-space: nowrap;
}

.wt-finder .wt-select {
	cursor: pointer;
}

.wt-finder .wt-select option,
.wt-finder .wt-select optgroup {
	color: var(--wt-text);
	background: var(--wt-white);
}

.wt-vehicle-other {
	grid-column: span 2;
	padding: var(--wt-space-3);
	border: 1px solid color-mix(in srgb, var(--wt-orange) 34%, var(--wt-border));
	border-radius: var(--wt-radius);
	background: color-mix(in srgb, var(--wt-orange-100) 68%, var(--wt-white));
	animation: wt-vehicle-field-in 260ms var(--wt-ease) both;
}

.wt-vehicle-other[hidden] {
	display: none;
}

@keyframes wt-vehicle-field-in {
	from {
		opacity: 0;
		transform: translateY(-0.4rem);
	}
	to {
		opacity: 1;
		transform: none;
	}
}

.wt-finder__noscript {
	margin-top: var(--wt-space-4);
	padding: var(--wt-space-4);
	border: 1px solid var(--wt-border-strong);
	border-radius: var(--wt-radius);
	background: var(--wt-off-white);
}

/* -------------------------------------------------------------- trust bar */

.wt-trust {
	position: relative;
	padding-block: clamp(2rem, 4vw, 3.5rem);
	background:
		linear-gradient(110deg, var(--wt-white), var(--wt-surface-blue) 52%, var(--wt-surface-warm));
}

.wt-trust::before {
	content: "";
	position: absolute;
	inset-inline: 0;
	inset-block-start: 0;
	height: 0.25rem;
	background: linear-gradient(90deg, var(--wt-orange), var(--wt-blue-electric), var(--wt-orange-gold));
}

.wt-trust__item {
	--wt-trust-accent: var(--wt-orange);
	position: relative;
	min-height: 8.6rem;
	padding: var(--wt-space-5);
	border: 1px solid color-mix(in srgb, var(--wt-trust-accent) 22%, var(--wt-border));
	border-radius: var(--wt-radius-lg);
	background: color-mix(in srgb, var(--wt-white) 88%, transparent);
	box-shadow: var(--wt-shadow-sm);
	overflow: hidden;
	transition: transform var(--wt-duration) var(--wt-ease),
	            box-shadow var(--wt-duration) var(--wt-ease);
}

.wt-trust__item:nth-child(2) { --wt-trust-accent: var(--wt-blue-bright); }
.wt-trust__item:nth-child(3) { --wt-trust-accent: var(--wt-orange-gold); }
.wt-trust__item:nth-child(4) { --wt-trust-accent: var(--wt-blue-electric); }

.wt-trust__item::after {
	content: "";
	position: absolute;
	inset-inline-end: -2rem;
	inset-block-end: -2.2rem;
	width: 5rem;
	aspect-ratio: 1;
	border-radius: 50%;
	background: color-mix(in srgb, var(--wt-trust-accent) 13%, transparent);
	transition: transform var(--wt-duration-slow) var(--wt-ease);
}

.wt-trust__item:hover {
	transform: translateY(-5px);
	box-shadow: var(--wt-shadow);
}

.wt-trust__item:hover::after {
	transform: scale(1.45);
}

.wt-trust__item > .wt-icon {
	width: 2.75rem;
	height: 2.75rem;
	padding: 0.65rem;
	border-radius: 50%;
	background: color-mix(in srgb, var(--wt-trust-accent) 14%, var(--wt-white));
	color: var(--wt-trust-accent);
	box-shadow: 0 0 0 0.35rem color-mix(in srgb, var(--wt-trust-accent) 7%, transparent);
}

/* ---------------------------------------------------------- choice panels */

section[aria-labelledby="wt-paths-title"] {
	background:
		radial-gradient(circle at 12% 8%, var(--wt-orange-100), transparent 22rem),
		radial-gradient(circle at 88% 80%, var(--wt-blue-100), transparent 24rem),
		var(--wt-white);
}

.wt-path {
	min-height: 27rem;
	padding: clamp(1.5rem, 4vw, 2.6rem);
	border: 1px solid var(--wt-line-light-soft);
	border-radius: var(--wt-radius-xl);
	box-shadow: var(--wt-shadow-float);
	transition: transform var(--wt-duration-slow) var(--wt-ease),
	            box-shadow var(--wt-duration-slow) var(--wt-ease);
}

.wt-path::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(0deg, var(--wt-scrim-hero-strong), var(--wt-scrim-card-top) 70%);
}

.wt-path::after {
	content: "";
	position: absolute;
	inset-inline-end: 1.4rem;
	inset-block-start: 1.4rem;
	width: 4.5rem;
	height: 0.42rem;
	border-radius: var(--wt-radius-pill);
	background: linear-gradient(90deg, var(--wt-orange), var(--wt-orange-gold));
	box-shadow: var(--wt-shadow-orange);
}

.wt-path:hover {
	transform: translateY(-8px);
	box-shadow: 0 26px 58px var(--wt-fill-navy);
}

.wt-path__media img {
	transition: transform 850ms var(--wt-ease),
	            filter 850ms var(--wt-ease);
}

.wt-path:hover .wt-path__media img {
	transform: scale(1.08);
	filter: saturate(1.15) contrast(1.04);
}

.wt-path__title {
	font-size: clamp(2.25rem, 4vw, 3.5rem);
}

.wt-path__text {
	max-width: 34rem;
}

/* ----------------------------------------------------------- service cards */

section[aria-labelledby="wt-services-title"] {
	background:
		linear-gradient(160deg, var(--wt-surface-blue), var(--wt-white) 48%, var(--wt-surface-warm));
}

.wt-service-card {
	--wt-service-accent: var(--wt-orange);
	position: relative;
	min-height: 18rem;
	padding: var(--wt-space-6);
	border: 1px solid color-mix(in srgb, var(--wt-service-accent) 18%, var(--wt-border));
	border-radius: var(--wt-radius-xl);
	background:
		radial-gradient(circle at var(--wt-pointer-x, 85%) var(--wt-pointer-y, 10%), color-mix(in srgb, var(--wt-service-accent) 16%, transparent), transparent 11rem),
		var(--wt-white);
	box-shadow: var(--wt-shadow-sm);
	overflow: hidden;
	transition: transform var(--wt-duration-slow) var(--wt-ease),
	            box-shadow var(--wt-duration-slow) var(--wt-ease),
	            border-color var(--wt-duration-slow) var(--wt-ease);
}

.wt-service-card:nth-child(2),
.wt-service-card:nth-child(5) { --wt-service-accent: var(--wt-blue-bright); }

.wt-service-card:nth-child(3),
.wt-service-card:nth-child(6) { --wt-service-accent: var(--wt-orange-gold); }

.wt-service-card::before {
	content: "";
	position: absolute;
	inset-inline: 0;
	inset-block-start: 0;
	height: 0.35rem;
	background: linear-gradient(90deg, var(--wt-service-accent), color-mix(in srgb, var(--wt-service-accent) 45%, var(--wt-white)));
	transform-origin: left;
	transform: scaleX(0.26);
	transition: transform var(--wt-duration-slow) var(--wt-ease);
}

.wt-service-card:hover {
	transform: translateY(-8px);
	border-color: color-mix(in srgb, var(--wt-service-accent) 45%, var(--wt-border));
	box-shadow: var(--wt-shadow-float);
}

.wt-service-card:hover::before {
	transform: scaleX(1);
}

.wt-service-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3.5rem;
	height: 3.5rem;
	margin-bottom: var(--wt-space-5);
	border-radius: 1.1rem;
	background: color-mix(in srgb, var(--wt-service-accent) 14%, var(--wt-white));
	color: var(--wt-service-accent);
	box-shadow: 0 0 0 0.4rem color-mix(in srgb, var(--wt-service-accent) 7%, transparent);
	transition: transform var(--wt-duration-slow) var(--wt-ease);
}

.wt-service-card__icon .wt-icon {
	width: 1.75rem;
	height: 1.75rem;
}

.wt-service-card:hover .wt-service-card__icon {
	transform: rotate(-7deg) scale(1.08);
}

.wt-service-card__title {
	font-size: clamp(1.55rem, 2vw, 2rem);
}

.wt-service-card__link {
	margin-top: auto;
}

/* -------------------------------------------------------------- four steps */

section[aria-labelledby="wt-process-title"] {
	background:
		linear-gradient(135deg, var(--wt-navy-charcoal), var(--wt-navy-900) 48%, var(--wt-navy));
	color: var(--wt-text-on-dark);
}

section[aria-labelledby="wt-process-title"]::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(var(--wt-grid-line) 1px, transparent 1px),
		linear-gradient(90deg, var(--wt-grid-line) 1px, transparent 1px);
	background-size: 4rem 4rem;
	pointer-events: none;
}

section[aria-labelledby="wt-process-title"] h2,
section[aria-labelledby="wt-process-title"] h3 {
	color: var(--wt-white);
}

section[aria-labelledby="wt-process-title"] .wt-eyebrow {
	color: var(--wt-orange-gold);
}

.wt-steps {
	position: relative;
	gap: var(--wt-space-5);
}

.wt-steps::before {
	content: "";
	position: absolute;
	inset-inline: 4%;
	inset-block-start: 2.05rem;
	height: 2px;
	background: linear-gradient(90deg, var(--wt-orange), var(--wt-blue-electric), var(--wt-orange-gold));
	opacity: 0.75;
}

.wt-steps__item {
	position: relative;
	padding: var(--wt-space-6);
	border: 1px solid var(--wt-line-light-soft);
	border-radius: var(--wt-radius-lg);
	background: color-mix(in srgb, var(--wt-white) 7%, transparent);
	backdrop-filter: blur(8px);
}

.wt-steps__item::before {
	display: none;
}

.wt-steps__number {
	position: relative;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 4.1rem;
	height: 4.1rem;
	margin-bottom: var(--wt-space-5);
	border: 0.35rem solid var(--wt-navy-900);
	border-radius: 50%;
	background: linear-gradient(135deg, var(--wt-orange), var(--wt-orange-gold));
	color: var(--wt-navy-charcoal);
	font-family: var(--wt-font-display);
	font-size: var(--wt-text-lg);
	font-weight: var(--wt-weight-bold);
	box-shadow: var(--wt-shadow-orange);
}

.wt-steps__text {
	color: var(--wt-text-on-dark-muted);
}

/* ------------------------------------------------------------ why section */

section[aria-labelledby="wt-why-title"] {
	background:
		radial-gradient(circle at 8% 20%, var(--wt-fill-blue), transparent 24rem),
		radial-gradient(circle at 92% 80%, var(--wt-fill-orange), transparent 22rem),
		var(--wt-navy-charcoal);
}

.wt-why__item {
	padding: var(--wt-space-4);
	border: 1px solid transparent;
	border-radius: var(--wt-radius-lg);
	transition: background-color var(--wt-duration) var(--wt-ease),
	            border-color var(--wt-duration) var(--wt-ease),
	            transform var(--wt-duration) var(--wt-ease);
}

.wt-why__item:hover {
	transform: translateX(0.35rem);
	border-color: var(--wt-line-light-soft);
	background: var(--wt-fill-light);
}

.wt-why__item > .wt-icon {
	width: 2.3rem;
	height: 2.3rem;
	padding: 0.52rem;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--wt-orange), var(--wt-orange-gold));
	color: var(--wt-navy-charcoal);
}

.wt-why__media {
	position: relative;
	overflow: hidden;
	border: 1px solid var(--wt-line-light-strong);
	border-radius: var(--wt-radius-xl);
	box-shadow: var(--wt-shadow-float);
	transform: rotate(1.2deg);
}

.wt-why__media::after {
	content: "";
	position: absolute;
	inset: 0.8rem;
	border: 1px solid var(--wt-line-light-soft);
	border-radius: calc(var(--wt-radius-xl) - 0.4rem);
	pointer-events: none;
}

.wt-why__media img {
	transition: transform 900ms var(--wt-ease);
}

.wt-why__media:hover img {
	transform: scale(1.05);
}

/* --------------------------------------------------------------------- FAQ */

section[aria-labelledby="wt-faq-title"] {
	background:
		radial-gradient(circle at 8% 92%, var(--wt-orange-100), transparent 20rem),
		radial-gradient(circle at 95% 12%, var(--wt-blue-100), transparent 22rem),
		var(--wt-white);
}

.wt-accordion {
	display: grid;
	gap: var(--wt-space-3);
	border: 0;
}

.wt-accordion__item {
	border: 1px solid var(--wt-border);
	border-radius: var(--wt-radius-lg);
	background: color-mix(in srgb, var(--wt-white) 92%, transparent);
	box-shadow: var(--wt-shadow-sm);
	overflow: hidden;
	transition: border-color var(--wt-duration) var(--wt-ease),
	            box-shadow var(--wt-duration) var(--wt-ease),
	            transform var(--wt-duration) var(--wt-ease);
}

.wt-accordion__item:has(.wt-accordion__trigger[aria-expanded="true"]) {
	transform: translateY(-2px);
	border-color: var(--wt-blue-bright);
	box-shadow: var(--wt-glow-blue);
}

.wt-accordion__trigger {
	padding: 1.25rem var(--wt-space-5);
}

.wt-accordion__trigger .wt-icon {
	width: 2rem;
	height: 2rem;
	padding: 0.38rem;
	border-radius: 50%;
	background: var(--wt-navy-100);
}

.wt-accordion__trigger[aria-expanded="true"] .wt-icon {
	background: var(--wt-orange);
	color: var(--wt-navy-charcoal);
}

.wt-accordion__panel {
	padding: 0 var(--wt-space-5) var(--wt-space-5);
	color: var(--wt-text-muted);
}

/* --------------------------------------------------------------- location */

section[aria-labelledby="wt-location-title"] {
	background:
		radial-gradient(circle at 12% 5%, var(--wt-fill-blue), transparent 22rem),
		linear-gradient(145deg, var(--wt-navy-900), var(--wt-navy));
	color: var(--wt-text-on-dark);
}

section[aria-labelledby="wt-location-title"] h2 {
	color: var(--wt-white);
}

section[aria-labelledby="wt-location-title"] .wt-section-heading__intro {
	color: var(--wt-text-on-dark-muted);
}

.wt-location {
	align-items: stretch;
}

.wt-location > div:last-child {
	padding: clamp(1.25rem, 3vw, 2.5rem);
	border: 1px solid var(--wt-line-light-soft);
	border-radius: var(--wt-radius-xl);
	background: var(--wt-fill-light);
	backdrop-filter: blur(12px);
}

.wt-map-card {
	position: relative;
	min-height: 100%;
	border: 1px solid var(--wt-line-light-strong);
	border-radius: var(--wt-radius-xl);
	background:
		linear-gradient(135deg, var(--wt-blue-bright), var(--wt-navy) 48%, var(--wt-orange-700));
	box-shadow: var(--wt-shadow-float);
	overflow: hidden;
	color: var(--wt-white);
}

.wt-map-card::before,
.wt-map-card::after {
	content: "";
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
}

.wt-map-card::before {
	width: 18rem;
	aspect-ratio: 1;
	inset-inline-start: -7rem;
	inset-block-start: -8rem;
	background: var(--wt-glow-electric);
}

.wt-map-card::after {
	width: 13rem;
	aspect-ratio: 1;
	inset-inline-end: -5rem;
	inset-block-end: -6rem;
	background: var(--wt-glow-orange);
}

.wt-map-card > * {
	position: relative;
	z-index: 1;
}

.wt-map-card strong,
.wt-map-card span,
.wt-map-card small {
	color: var(--wt-white);
}

.wt-map-card__pin {
	background: linear-gradient(135deg, var(--wt-orange), var(--wt-orange-gold));
	box-shadow: var(--wt-shadow-orange);
	animation: wt-pin-float 3s ease-in-out infinite;
}

@keyframes wt-pin-float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-0.45rem); }
}

.wt-location__row {
	padding: var(--wt-space-3);
	border-radius: var(--wt-radius);
	transition: background-color var(--wt-duration) var(--wt-ease),
	            transform var(--wt-duration) var(--wt-ease);
}

.wt-location__row:hover {
	transform: translateX(0.3rem);
	background: var(--wt-fill-light);
}

.wt-location__row > .wt-icon {
	color: var(--wt-orange-gold);
}

.wt-location__label {
	color: var(--wt-text-on-dark-muted);
}

.wt-location address,
.wt-location__row a,
.wt-location__row span:not(.wt-location__label) {
	color: var(--wt-white);
}

section[aria-labelledby="wt-location-title"] .wt-btn--ghost {
	border-color: var(--wt-line-light-70);
	color: var(--wt-white);
}

section[aria-labelledby="wt-location-title"] .wt-btn--ghost:hover {
	border-color: var(--wt-white);
	background: var(--wt-fill-light);
	color: var(--wt-white);
}

/* ------------------------------------------------------------------ footer */

.wt-footer {
	position: relative;
	background:
		radial-gradient(circle at 14% 10%, var(--wt-fill-blue), transparent 22rem),
		radial-gradient(circle at 88% 90%, var(--wt-fill-orange), transparent 20rem),
		var(--wt-navy-charcoal);
}

.wt-footer::before {
	content: "";
	position: absolute;
	inset-inline: 0;
	inset-block-start: 0;
	height: 0.3rem;
	background: linear-gradient(90deg, var(--wt-orange), var(--wt-blue-electric), var(--wt-orange-gold));
}

.wt-footer__bundled-logo {
	transition: transform var(--wt-duration-slow) var(--wt-ease);
}

.wt-footer__bundled-logo:hover {
	transform: scale(1.035) rotate(-1deg);
}

/* ------------------------------------------------------ reveal and pointer */

.wt-scroll-progress {
	position: fixed;
	inset-inline: 0;
	inset-block-start: var(--wt-adminbar-h);
	z-index: calc(var(--wt-z-header) + 1);
	height: 0.22rem;
	background: linear-gradient(90deg, var(--wt-orange), var(--wt-orange-gold), var(--wt-blue-electric));
	box-shadow: var(--wt-shadow-orange);
	transform: scaleX(0);
	transform-origin: left;
	pointer-events: none;
}

.wt-hero__inner--animate > * {
	opacity: 0;
	transform: translateY(1.15rem);
	transition: opacity 720ms var(--wt-ease),
	            transform 720ms var(--wt-ease);
}

.wt-hero__inner--animate.is-ready > * {
	opacity: 1;
	transform: none;
}

.wt-hero__inner--animate > :nth-child(2) { transition-delay: 90ms; }
.wt-hero__inner--animate > :nth-child(3) { transition-delay: 180ms; }
.wt-hero__inner--animate > :nth-child(4) { transition-delay: 270ms; }
.wt-hero__inner--animate > :nth-child(5) { transition-delay: 360ms; }

.wt-reveal-v3 {
	opacity: 0;
	transform: translate3d(0, 1.7rem, 0) scale(0.985);
	filter: blur(5px);
	transition:
		opacity var(--wt-duration-reveal) var(--wt-ease) var(--wt-reveal-delay, 0ms),
		transform var(--wt-duration-reveal) var(--wt-ease) var(--wt-reveal-delay, 0ms),
		filter var(--wt-duration-reveal) var(--wt-ease) var(--wt-reveal-delay, 0ms);
}

.wt-reveal-v3.is-visible-v3 {
	opacity: 1;
	transform: translate3d(0, 0, 0) scale(1);
	filter: none;
}

/* ---------------------------------------------------------- mobile polish */

@media (max-width: 767px) {
	:root {
		--wt-gutter: 1rem;
		--wt-section-y: 3.5rem;
	}

	body {
		padding-bottom: 5.5rem;
	}

	.wt-header__inner {
		min-height: 4.6rem;
	}

	.wt-header__wordmark small {
		color: var(--wt-orange-700);
	}

	.wt-hero {
		min-height: min(46rem, calc(100svh - 1rem));
		align-items: flex-end;
	}

	.wt-hero__media img {
		object-position: 66% center;
	}

	.wt-hero__motion-cards {
		inset-block-start: 5.2rem;
		inset-inline-end: 0.8rem;
		width: 9.3rem;
		height: 11.5rem;
		opacity: 0.94;
	}

	.wt-hero__motion-card {
		border-radius: 0.75rem;
		box-shadow: 0 0.8rem 1.8rem var(--wt-scrim-hero-medium), var(--wt-glow-orange);
	}

	.wt-hero__motion-card figcaption {
		inset-inline: 0.3rem;
		inset-block-end: 0.3rem;
		padding: 0.25rem 0.35rem;
		font-size: 0.54rem;
	}

	.wt-hero__motion-orbit {
		width: 2.75rem;
		padding: 0.3rem;
	}

	.wt-hero__overlay {
		background:
			linear-gradient(0deg, var(--wt-scrim-hero-strong) 0%, var(--wt-scrim-hero-medium) 58%, var(--wt-scrim-hero-soft) 100%),
			radial-gradient(circle at 84% 12%, var(--wt-glow-orange), transparent 18rem);
	}

	.wt-hero::after {
		background-size: 2.8rem 2.8rem;
		mask-image: linear-gradient(0deg, var(--wt-graphite), transparent 72%);
	}

	.wt-hero__inner {
		padding-block: 7rem 7.2rem;
	}

	.wt-hero__title {
		font-size: clamp(3rem, 15vw, 4.5rem);
	}

	.wt-hero__text {
		font-size: 1.04rem;
	}

	.wt-hero .wt-actions {
		display: grid;
		grid-template-columns: 1fr 1fr;
		width: 100%;
	}

	.wt-hero .wt-btn {
		padding-inline: 0.85rem;
		font-size: var(--wt-text-sm);
	}

	.wt-hero__assurances {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: var(--wt-space-2);
	}

	.wt-hero__assurances li {
		padding-inline: 0.65rem;
		font-size: var(--wt-text-xs);
	}

	.wt-finder {
		margin-top: -4.7rem;
	}

	.wt-finder__panel {
		border-radius: var(--wt-radius-xl);
	}

	.wt-finder__panel::before {
		padding: 0.8rem var(--wt-space-4);
		font-size: 0.75rem;
	}

	.wt-finder__tablist {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		overflow: visible;
	}

	.wt-finder__tab {
		min-width: 0;
		padding: 0.85rem 0.35rem;
		font-size: 0.78rem;
		line-height: 1.15;
	}

	.wt-finder__panel-body {
		padding: 0.8rem;
	}

	.wt-finder__row,
	.wt-finder__vehicle-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0.65rem;
	}

	.wt-finder__row .wt-field:nth-last-child(-n + 2) {
		grid-column: 1 / -1;
	}

	.wt-finder__row .wt-vehicle-other,
	.wt-finder__vehicle-grid .wt-vehicle-other {
		grid-column: 1 / -1;
	}

	.wt-finder__group {
		padding: 0.65rem;
		border-radius: 0.85rem;
	}

	.wt-finder__group legend {
		font-size: 0.72rem;
	}

	.wt-finder__group legend span {
		display: none;
	}

	.wt-finder__size-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 0.5rem;
	}

	.wt-finder__size-grid .wt-field__label {
		font-size: 0.7rem;
	}

	.wt-finder__continue {
		grid-column: 1 / -1;
	}

	.wt-finder .wt-input,
	.wt-finder .wt-select {
		min-height: 2.8rem;
		padding: 0.48rem 1.9rem 0.48rem 0.55rem;
		font-size: 0.86rem;
	}

	.wt-finder .wt-field__hint {
		display: none;
	}

	.wt-finder__note {
		font-size: 0.74rem;
		line-height: 1.4;
	}

	.wt-trust__grid,
	section[aria-labelledby="wt-services-title"] .wt-grid {
		display: grid;
		grid-auto-flow: column;
		grid-auto-columns: min(84vw, 22rem);
		grid-template-columns: none;
		gap: var(--wt-space-4);
		overflow-x: auto;
		padding-block: var(--wt-space-2) var(--wt-space-5);
		padding-inline: var(--wt-gutter);
		margin-inline: calc(var(--wt-gutter) * -1);
		scroll-snap-type: x mandatory;
		scroll-padding-inline: var(--wt-gutter);
		overscroll-behavior-inline: contain;
		-webkit-overflow-scrolling: touch;
	}

	.wt-trust__item,
	.wt-service-card {
		scroll-snap-align: start;
	}

	/* V6 scroll affordance. A rail that can still scroll fades its trailing
	   edge, so it is obvious there is more to the right. Without this the
	   mobile carousels look like they simply end. */
	.wt-trust__grid,
	section[aria-labelledby="wt-services-title"] .wt-grid {
		position: relative;
	}

	.wt-trust__grid.has-more,
	section[aria-labelledby="wt-services-title"] .wt-grid.has-more {
		mask-image: linear-gradient(90deg, var(--wt-graphite) 82%, transparent 100%);
	}

	.wt-trust__grid.has-more.has-previous,
	section[aria-labelledby="wt-services-title"] .wt-grid.has-more.has-previous {
		mask-image: linear-gradient(90deg, transparent 0%, var(--wt-graphite) 6% 82%, transparent 100%);
	}

	.wt-trust__item {
		min-height: 8rem;
	}

	.wt-paths {
		gap: var(--wt-space-4);
	}

	.wt-path {
		min-height: 25rem;
	}

	.wt-service-card {
		min-height: 17rem;
	}

	.wt-steps {
		display: grid;
		gap: var(--wt-space-4);
	}

	.wt-steps::before {
		inset-inline-start: 2rem;
		inset-block: 1rem;
		width: 2px;
		height: auto;
		background: linear-gradient(180deg, var(--wt-orange), var(--wt-blue-electric), var(--wt-orange-gold));
	}

	.wt-steps__item {
		padding: var(--wt-space-5);
		padding-inline-start: 5.25rem;
		min-height: 9.5rem;
	}

	.wt-steps__number {
		position: absolute;
		inset-inline-start: 0.65rem;
		inset-block-start: 1.25rem;
		width: 3.15rem;
		height: 3.15rem;
		border-width: 0.28rem;
		font-size: var(--wt-text-base);
	}

	.wt-why__media {
		transform: none;
	}

	.wt-location > div:last-child {
		padding: var(--wt-space-5);
	}

	.wt-map-card {
		min-height: 21rem;
	}

	.wt-mobile-bar {
		inset-inline: 0.7rem;
		inset-block-end: 0.65rem;
		width: auto;
		height: 4.25rem;
		border: 1px solid var(--wt-line-light-strong);
		border-radius: var(--wt-radius-xl);
		background: color-mix(in srgb, var(--wt-navy-charcoal) 92%, transparent);
		box-shadow: var(--wt-shadow-float);
		backdrop-filter: blur(16px);
		overflow: visible;
	}

	.wt-mobile-bar__item {
		color: var(--wt-white);
	}

	.wt-mobile-bar__item--accent {
		position: relative;
		inset-block-start: -0.65rem;
		min-height: 4.75rem;
		margin-inline: 0.2rem;
		border-radius: 1.35rem;
		background: linear-gradient(135deg, var(--wt-orange), var(--wt-orange-bright));
		color: var(--wt-navy-charcoal);
		box-shadow: var(--wt-shadow-orange);
	}

	.wt-mobile-bar__item--accent .wt-icon {
		width: 1.45rem;
		height: 1.45rem;
	}
}

@media (min-width: 768px) and (max-width: 1179px) {
	.wt-hero__motion-cards {
		inset-inline-end: 1.5rem;
		width: 14rem;
		height: 17rem;
	}

	.wt-hero__inner > * {
		max-width: calc(100% - 16rem);
	}

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

@media (min-width: 1024px) {
	.wt-finder__row--3 {
		grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
	}
}

@media (prefers-reduced-motion: reduce) {
	.wt-contact-strip::after,
	.wt-hero::before,
	.wt-hero__eyebrow span,
	.wt-hero__media img,
	.wt-hero__motion-card,
	.wt-hero__motion-orbit,
	.wt-vehicle-other,
	.wt-map-card__pin {
		animation: none !important;
	}

	.wt-hero__media {
		transform: none !important;
		transition: none !important;
	}

	.wt-reveal-v3 {
		opacity: 1;
		transform: none;
		filter: none;
	}
}

@media (prefers-contrast: more) {
	.wt-header {
		background: var(--wt-white);
		backdrop-filter: none;
	}

	.wt-service-card,
	.wt-trust__item,
	.wt-accordion__item {
		border-color: var(--wt-graphite);
	}
}
