@font-face {
	font-family: "Sora";
	src: url("../fonts/sora.woff2") format("woff2");
	font-style: normal;
	font-weight: 100 700;
	font-display: swap;
}

:root {
	--sy1-blue: #086df2;
	--sy1-blue-dark: #0759c7;
	--sy1-blue-light: #eaf3ff;
	--sy1-ink: #0b0d10;
	--sy1-charcoal: #171a1f;
	--sy1-surface: #ffffff;
	--sy1-muted: #f3f5f7;
	--sy1-border: #d9dee5;
	--sy1-text: #15181d;
	--sy1-text-muted: #58616d;
	--sy1-success: #126a3a;
	--sy1-error: #a72222;
	--sy1-radius: 10px;
	--sy1-radius-small: 7px;
	--sy1-shadow: 0 2px 8px rgba(9, 15, 24, 0.1);
	--sy1-container: 1280px;
	--sy1-header-height: 74px;
}

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

html {
	scroll-behavior: smooth;
	scroll-padding-top: 108px;
}

body {
	margin: 0;
	background: var(--sy1-surface);
	color: var(--sy1-text);
	font-family: "Sora", sans-serif;
	font-size: 16px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}

body.nav-open {
	overflow: hidden;
}

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

a {
	color: inherit;
	text-underline-offset: 3px;
}

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

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

button,
a {
	touch-action: manipulation;
}

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

h1,
h2,
h3 {
	color: var(--sy1-ink);
	font-weight: 700;
	letter-spacing: -0.025em;
	line-height: 1.12;
}

h1 {
	font-size: clamp(2.35rem, 8vw, 5rem);
}

h2 {
	font-size: clamp(1.85rem, 5vw, 3.15rem);
}

h3 {
	font-size: 1.28rem;
}

address {
	font-style: normal;
}

.site-container {
	width: min(calc(100% - 32px), var(--sy1-container));
	margin-inline: auto;
}

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

.skip-link {
	position: fixed;
	top: 8px;
	left: 8px;
	z-index: 2000;
	padding: 10px 14px;
	background: var(--sy1-surface);
	color: var(--sy1-ink);
	border: 2px solid var(--sy1-blue);
	border-radius: var(--sy1-radius-small);
	transform: translateY(-140%);
}

.skip-link:focus {
	transform: translateY(0);
}

:focus-visible {
	outline: 3px solid #67a6ff;
	outline-offset: 3px;
}

.icon {
	width: 1.25em;
	height: 1.25em;
	flex: 0 0 auto;
}

.utility-bar {
	display: none;
	background: var(--sy1-blue);
	color: #fff;
	font-size: 0.78rem;
}

.utility-bar__inner,
.utility-bar__contacts,
.utility-bar a {
	display: flex;
	align-items: center;
}

.utility-bar__inner {
	min-height: 34px;
	justify-content: space-between;
	gap: 24px;
}

.utility-bar__contacts {
	gap: 20px;
}

.utility-bar a {
	min-height: 34px;
	gap: 6px;
	font-weight: 600;
	text-decoration: none;
}

.utility-bar a:hover {
	color: #fff;
	text-decoration: underline;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	min-height: var(--sy1-header-height);
	background: rgba(11, 13, 16, 0.98);
	color: #fff;
	border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.site-header.is-stuck {
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: var(--sy1-header-height);
	gap: 16px;
}

.brand {
	display: block;
	width: 188px;
	flex: 0 0 auto;
}

.brand-mark {
	display: block;
	width: 100%;
	height: auto;
}

.brand-mark__car {
	fill: #f8fafc;
}

.brand-mark__detail {
	fill: none;
	stroke: var(--sy1-blue);
	stroke-width: 2;
	stroke-linecap: round;
}

.brand-mark__sy,
.brand-mark__one,
.brand-mark__cars {
	font-family: "Sora", sans-serif;
	font-weight: 700;
}

.brand-mark__sy {
	fill: #fff;
	font-size: 43px;
	font-style: italic;
	letter-spacing: -4px;
}

.brand-mark__one {
	fill: var(--sy1-blue);
	font-size: 49px;
	font-style: italic;
}

.brand-mark__cars {
	fill: #fff;
	font-size: 15px;
	letter-spacing: 1px;
}

.nav-toggle {
	display: grid;
	place-items: center;
	width: 48px;
	height: 48px;
	min-width: 48px;
	flex: 0 0 48px;
	margin-left: auto;
	padding: 0;
	background: transparent;
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.35);
	border-radius: var(--sy1-radius-small);
	cursor: pointer;
}

.nav-toggle .icon {
	width: 26px;
	height: 26px;
}

.nav-toggle__close {
	display: none;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__open {
	display: none;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__close {
	display: inline-flex;
}

.site-nav {
	position: fixed;
	top: var(--sy1-header-height);
	right: 0;
	bottom: 0;
	left: 0;
	display: none;
	overflow-y: auto;
	background: var(--sy1-ink);
	padding: 20px 16px 120px;
}

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

.site-nav__list {
	width: min(100%, 480px);
	margin: 0 auto;
	padding: 0;
	list-style: none;
}

.site-nav__list a {
	display: flex;
	align-items: center;
	min-height: 52px;
	padding: 8px 4px;
	color: #fff;
	font-size: 1.05rem;
	font-weight: 600;
	text-decoration: none;
	border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.site-nav__list a:hover,
.site-nav__list a[aria-current="page"] {
	color: #6ba8ff;
}

.site-header .site-header__call {
	display: none;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 11px 18px;
	gap: 9px;
	border: 2px solid transparent;
	border-radius: var(--sy1-radius-small);
	font-size: 0.93rem;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, opacity 180ms ease;
}

.button:hover {
	text-decoration: none;
}

.button:disabled {
	cursor: wait;
	opacity: 0.58;
}

.button--primary {
	background: var(--sy1-blue);
	color: #fff;
	border-color: var(--sy1-blue);
}

.button--primary:hover {
	background: var(--sy1-blue-dark);
	color: #fff;
	border-color: var(--sy1-blue-dark);
}

.button--secondary {
	background: var(--sy1-ink);
	color: #fff;
	border-color: var(--sy1-ink);
}

.button--secondary:hover {
	background: #262b32;
	color: #fff;
}

.button--light {
	background: #fff;
	color: var(--sy1-ink);
	border-color: #fff;
}

.button--light:hover {
	background: var(--sy1-blue-light);
	color: var(--sy1-ink);
	border-color: var(--sy1-blue-light);
}

.button--outline-light {
	background: transparent;
	color: #fff;
	border-color: rgba(255, 255, 255, 0.72);
}

.button--outline-light:hover {
	background: #fff;
	color: var(--sy1-ink);
	border-color: #fff;
}

.button-row {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.text-link {
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	gap: 8px;
	color: var(--sy1-blue-dark);
	font-weight: 700;
	text-decoration: none;
}

.text-link:hover {
	text-decoration: underline;
}

.text-link .icon {
	width: 18px;
	height: 18px;
}

.text-link--light {
	color: #8cbcff;
}

.section {
	padding: 72px 0;
}

.section--muted {
	background: var(--sy1-muted);
}

.section--dark {
	background: var(--sy1-charcoal);
	color: #fff;
}

.section--dark h2 {
	color: #fff;
}

.section-kicker,
.location-line {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 14px;
	color: var(--sy1-blue-dark);
	font-size: 0.86rem;
	font-weight: 700;
}

.section-heading {
	display: grid;
	gap: 12px;
	margin-bottom: 32px;
}

.section-heading h2,
.section-heading p:last-child {
	margin-bottom: 0;
}

.section-heading > p {
	max-width: 48ch;
	color: var(--sy1-text-muted);
}

.prose {
	max-width: 74ch;
}

.prose p,
.prose li {
	color: #38414b;
}

.home-hero {
	min-height: min(720px, calc(100dvh - var(--sy1-header-height)));
	background: var(--sy1-ink);
	color: #fff;
}

.home-hero__layout {
	display: grid;
	align-items: center;
	gap: 44px;
	padding-top: 72px;
	padding-bottom: 48px;
}

.home-hero__copy {
	max-width: 720px;
}

.home-hero .location-line,
.service-hero .location-line,
.inventory-hero .location-line,
.about-hero .location-line,
.page-hero .location-line {
	color: #8cbcff;
}

.home-hero h1 {
	max-width: 18ch;
	margin-bottom: 22px;
	color: #fff;
}

.home-hero__copy > p:not(.location-line) {
	max-width: 61ch;
	margin-bottom: 30px;
	color: #f3f5f7;
	font-size: 1.08rem;
}

.home-hero__trust {
	display: grid;
	grid-template-columns: 1fr;
	gap: 10px;
	margin-top: 38px;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.35);
}

.home-hero__trust span {
	display: flex;
	align-items: center;
	gap: 9px;
	font-size: 0.88rem;
	font-weight: 600;
}

.home-hero__trust .icon {
	color: #6ba8ff;
}

.home-hero__vehicle {
	display: block;
	overflow: hidden;
	color: #fff;
	text-decoration: none;
	border: 1px solid rgba(255, 255, 255, 0.24);
	border-radius: var(--sy1-radius);
	background: #11161c;
}

.home-hero__vehicle > img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	object-position: center 62%;
}

.home-hero__vehicle-details {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 4px 18px;
	align-items: end;
	padding: 18px 20px 20px;
}

.home-hero__vehicle-details > span {
	grid-column: 1 / -1;
	color: #9fbfff;
	font-size: 0.78rem;
	font-weight: 600;
}

.home-hero__vehicle-details strong {
	overflow: hidden;
	font-size: 0.98rem;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.home-hero__vehicle-details b {
	font-size: 1.08rem;
}

.intro-grid {
	display: grid;
	gap: 24px;
}

.intro-grid h2 {
	max-width: 12ch;
	margin-bottom: 0;
}

.intro-grid .prose p:last-child {
	margin-bottom: 0;
}

.service-grid {
	display: grid;
	gap: 18px;
}

.service-card {
	display: flex;
	background: var(--sy1-surface);
	border: 1px solid var(--sy1-border);
	border-radius: var(--sy1-radius);
}

.service-card > div {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 28px 24px 26px;
}

.service-card__icon {
	display: grid;
	place-items: center;
	width: 52px;
	height: 52px;
	background: #e9f1ff;
	color: var(--sy1-blue-dark);
	border-radius: var(--sy1-radius-small);
}

.service-card__icon .icon {
	width: 26px;
	height: 26px;
}

.service-card h3 {
	margin: 22px 0 10px;
}

.service-card p {
	color: var(--sy1-text-muted);
}

.service-card ul {
	margin: 0 0 20px;
	padding-left: 20px;
	color: #333b45;
	font-size: 0.9rem;
}

.service-card .text-link {
	margin-top: auto;
}

.why-layout {
	display: grid;
	gap: 36px;
}

.why-layout__copy {
	max-width: 570px;
}

.why-layout__copy p:not(.section-kicker) {
	color: var(--sy1-text-muted);
}

.check-grid,
.check-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.check-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0;
	border-top: 1px solid var(--sy1-border);
}

.check-grid li {
	display: flex;
	align-items: center;
	min-height: 52px;
	gap: 10px;
	border-bottom: 1px solid var(--sy1-border);
	font-weight: 600;
}

.check-grid .icon,
.check-list .icon {
	color: var(--sy1-blue);
}

.section--vehicles {
	background: #fff;
}

.vehicle-grid {
	display: grid;
	gap: 18px;
}

.vehicle-card {
	overflow: hidden;
	background: #fff;
	border: 1px solid var(--sy1-border);
	border-radius: var(--sy1-radius);
	box-shadow: var(--sy1-shadow);
}

.vehicle-card__image {
	display: block;
	aspect-ratio: 3 / 2;
	overflow: hidden;
	background: #dfe4ea;
}

.vehicle-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.vehicle-card__placeholder {
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
	color: #7b8795;
}

.vehicle-card__placeholder .icon {
	width: 64px;
	height: 64px;
}

.vehicle-card__body {
	padding: 20px;
}

.vehicle-card__heading {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 18px;
}

.vehicle-card__heading h3 {
	margin-bottom: 0;
	font-size: 1.05rem;
}

.vehicle-card__heading h3 a {
	display: flex;
	align-items: center;
	min-height: 44px;
	text-decoration: none;
}

.vehicle-card__heading strong {
	color: var(--sy1-blue-dark);
	font-size: 1.05rem;
	white-space: nowrap;
}

.vehicle-card__specs {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 9px 12px;
	margin: 0 0 20px;
	padding: 14px 0;
	color: var(--sy1-text-muted);
	font-size: 0.8rem;
	list-style: none;
	border-top: 1px solid var(--sy1-border);
	border-bottom: 1px solid var(--sy1-border);
}

.vehicle-card__specs li {
	display: flex;
	align-items: center;
	gap: 6px;
}

.vehicle-card__specs .icon {
	width: 16px;
	height: 16px;
	color: var(--sy1-blue-dark);
}

.promise-section {
	padding: 70px 0;
	background: var(--sy1-ink);
	color: #fff;
}

.promise-section__grid {
	display: grid;
	gap: 24px;
}

.promise-section h2 {
	margin-bottom: 0;
	color: #fff;
}

.promise-section .section-kicker {
	color: #6ba8ff;
}

.promise-section__grid > p {
	max-width: 65ch;
	margin-bottom: 0;
	color: #dce3ec;
	font-size: 1.04rem;
}

.recovery-strip {
	padding: 34px 0;
	background: var(--sy1-blue);
	color: #fff;
}

.recovery-strip__inner {
	display: grid;
	gap: 18px;
	align-items: center;
}

.recovery-strip__mark {
	display: grid;
	place-items: center;
	width: 64px;
	height: 64px;
	border: 2px solid rgba(255, 255, 255, 0.7);
	border-radius: var(--sy1-radius);
}

.recovery-strip__mark .icon {
	width: 36px;
	height: 36px;
}

.recovery-strip h2,
.recovery-strip p {
	margin-bottom: 4px;
	color: #fff;
}

.recovery-strip__number {
	display: flex;
	align-items: center;
	min-height: 44px;
	color: #fff;
	font-size: clamp(1.6rem, 8vw, 2.4rem);
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
}

.review-grid {
	display: grid;
	gap: 14px;
}

.review-grid > a {
	display: flex;
	min-height: 130px;
	flex-direction: column;
	justify-content: center;
	padding: 22px;
	text-decoration: none;
	border: 1px solid var(--sy1-border);
	border-radius: var(--sy1-radius);
}

.review-grid > a:hover {
	border-color: var(--sy1-blue);
}

.review-grid strong {
	font-size: 1.15rem;
}

.review-grid span:last-child {
	color: var(--sy1-text-muted);
}

.review-grid__stars {
	display: flex;
	margin-bottom: 8px;
	color: #d69600;
}

.review-grid__stars .icon {
	width: 18px;
	height: 18px;
	fill: currentColor;
}

.find-us,
.contact-location {
	padding: 72px 0;
	background: var(--sy1-muted);
}

.find-us__grid,
.contact-location__grid {
	display: grid;
	gap: 28px;
}

.find-us address,
.contact-location address {
	margin-bottom: 22px;
	font-size: 1.1rem;
}

.contact-stack {
	display: grid;
	gap: 8px;
	margin-bottom: 24px;
}

.contact-stack a {
	display: flex;
	align-items: center;
	min-height: 44px;
	gap: 10px;
	font-weight: 600;
	text-decoration: none;
}

.map-frame {
	width: 100%;
	min-height: 360px;
	border: 0;
	border-radius: var(--sy1-radius);
	box-shadow: var(--sy1-shadow);
}

.service-hero,
.inventory-hero,
.about-hero,
.page-hero,
.vehicle-detail-hero {
	background: var(--sy1-ink);
	color: #fff;
}

.service-hero,
.inventory-hero,
.about-hero {
	padding: 56px 0;
}

.service-hero__grid,
.inventory-hero__grid,
.about-hero__grid {
	display: grid;
	align-items: center;
	gap: 40px;
}

.service-hero h1,
.inventory-hero h1,
.about-hero h1,
.page-hero h1,
.vehicle-detail-hero h1 {
	margin-bottom: 18px;
	color: #fff;
}

.service-hero h1,
.about-hero h1 {
	max-width: none;
	font-size: clamp(2.55rem, 4.5vw, 3.4rem);
}

.service-hero__copy > p:not(.location-line),
.inventory-hero__grid > div:first-child > p:not(.location-line),
.about-hero__grid > div > p:not(.location-line),
.page-hero > div > p:not(.location-line) {
	max-width: 62ch;
	color: #dfe5ec;
	font-size: 1.05rem;
}

.service-hero__copy > p:not(.location-line) {
	max-width: 56ch;
}

.service-hero__media,
.inventory-hero__brand {
	overflow: hidden;
	background: #050609;
	border: 1px solid #2b3139;
	border-radius: var(--sy1-radius);
}

.service-hero__media {
	position: relative;
	min-height: 0;
	margin: 0;
	aspect-ratio: 16 / 10;
}

.service-hero__media img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 0;
	object-fit: cover;
}

.service-hero__points {
	display: grid;
	gap: 10px;
	margin: 32px 0 0;
	padding: 24px 0 0;
	list-style: none;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.service-hero__points li {
	display: flex;
	align-items: center;
	gap: 9px;
	color: #e5eaf0;
	font-size: 0.88rem;
	font-weight: 600;
}

.service-hero__points .icon {
	width: 18px;
	height: 18px;
	color: #7aaeff;
}

.urgent-call {
	padding: 17px 0;
	background: var(--sy1-blue);
	color: #fff;
}

.urgent-call .site-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 8px 18px;
}

.urgent-call a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #fff;
	font-size: 1.4rem;
	font-weight: 700;
	text-decoration: none;
}

.urgent-call span {
	font-size: 0.9rem;
}

.service-index__layout {
	display: grid;
	gap: 36px;
}

.service-index__heading > p:last-child {
	max-width: 50ch;
	color: var(--sy1-text-muted);
}

.offering-grid {
	display: grid;
	gap: 0 24px;
	border-top: 1px solid var(--sy1-border);
}

.offering-item {
	display: flex;
	align-items: center;
	min-height: 66px;
	gap: 12px;
	padding: 14px 0;
	background: #fff;
	border-bottom: 1px solid var(--sy1-border);
}

.offering-item span {
	color: var(--sy1-blue);
}

.offering-item .icon {
	width: 20px;
	height: 20px;
}

.offering-item strong {
	font-size: 0.94rem;
}

.process-steps {
	display: grid;
	gap: 1px;
	margin: 0;
	padding: 0;
	background: #343b45;
	list-style: none;
	border: 1px solid #343b45;
	border-radius: var(--sy1-radius);
	overflow: hidden;
}

.process-steps li {
	display: flex;
	align-items: center;
	min-height: 100px;
	gap: 18px;
	padding: 22px;
	background: #20242a;
}

.process-steps li span {
	display: grid;
	place-items: center;
	width: 40px;
	height: 40px;
	color: #fff;
	background: var(--sy1-blue);
	border-radius: 50%;
	font-weight: 700;
}

.enquiry-panel {
	display: grid;
	gap: 32px;
	padding: 24px;
	background: #fff;
	border: 1px solid var(--sy1-border);
	border-radius: var(--sy1-radius);
	box-shadow: var(--sy1-shadow);
}

.enquiry-panel > div > p:not(.enquiry-panel__direct) {
	color: var(--sy1-text-muted);
}

.enquiry-panel__direct a {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	color: var(--sy1-blue-dark);
	font-size: 1.35rem;
	font-weight: 700;
	text-decoration: none;
}

.enquiry-form,
.form-field {
	display: grid;
	gap: 8px;
}

.enquiry-form {
	gap: 17px;
}

.form-grid {
	display: grid;
	gap: 17px;
}

.form-field label {
	font-size: 0.88rem;
	font-weight: 700;
}

.form-field input,
.form-field textarea,
.vehicle-filter select {
	width: 100%;
	min-height: 48px;
	padding: 11px 12px;
	background: #fff;
	color: var(--sy1-text);
	border: 1px solid #aeb7c2;
	border-radius: var(--sy1-radius-small);
}

.form-field textarea {
	min-height: 130px;
	resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus,
.vehicle-filter select:focus {
	border-color: var(--sy1-blue);
	box-shadow: 0 0 0 3px rgba(8, 109, 242, 0.15);
	outline: 0;
}

.form-field--honeypot {
	position: absolute;
	left: -9999px;
}

.form-consent {
	display: grid;
	grid-template-columns: 22px 1fr;
	align-items: start;
	gap: 9px;
	font-size: 0.82rem;
	color: var(--sy1-text-muted);
}

.form-consent input {
	width: 20px;
	height: 20px;
	margin: 2px 0 0;
	accent-color: var(--sy1-blue);
}

.form-notice {
	margin-bottom: 20px;
	padding: 14px 16px;
	border-radius: var(--sy1-radius-small);
	font-weight: 600;
}

.form-notice--success {
	background: #e7f6ed;
	color: var(--sy1-success);
	border: 1px solid #9ed4b5;
}

.form-notice--error {
	background: #fdecec;
	color: var(--sy1-error);
	border: 1px solid #e5abab;
}

.faq-layout {
	display: grid;
	gap: 28px;
}

.faq-list {
	border-top: 1px solid var(--sy1-border);
}

.faq-list details {
	border-bottom: 1px solid var(--sy1-border);
}

.faq-list summary {
	position: relative;
	padding: 20px 34px 20px 0;
	font-weight: 700;
	cursor: pointer;
}

.faq-list summary::marker {
	color: var(--sy1-blue);
}

.faq-list details p {
	margin: 0;
	padding: 0 0 22px;
	color: var(--sy1-text-muted);
}

.inventory-hero__brand {
	padding: 16px 0;
}

.inventory-hero__brand img {
	width: 100%;
}

.vehicle-filter {
	display: grid;
	gap: 14px;
	margin-bottom: 38px;
	padding: 20px;
	background: var(--sy1-muted);
	border: 1px solid var(--sy1-border);
	border-radius: var(--sy1-radius);
}

.vehicle-filter > div {
	display: grid;
	gap: 6px;
}

.vehicle-filter label {
	font-size: 0.82rem;
	font-weight: 700;
}

.vehicle-filter__clear {
	align-self: center;
	justify-self: center;
	font-size: 0.86rem;
	font-weight: 600;
}

.inventory-results__heading {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 24px;
}

.inventory-results__heading h2,
.inventory-results__heading p {
	margin-bottom: 0;
}

.inventory-results__heading p {
	color: var(--sy1-text-muted);
	font-size: 0.88rem;
}

.pagination {
	margin-top: 34px;
}

.pagination .page-numbers {
	display: flex;
	justify-content: center;
	gap: 7px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.pagination a,
.pagination span {
	display: grid;
	place-items: center;
	min-width: 44px;
	min-height: 44px;
	padding: 8px;
	border: 1px solid var(--sy1-border);
	border-radius: var(--sy1-radius-small);
	font-weight: 700;
	text-decoration: none;
}

.pagination .current {
	background: var(--sy1-blue);
	color: #fff;
	border-color: var(--sy1-blue);
}

.empty-state {
	grid-column: 1 / -1;
	padding: 42px 24px;
	text-align: center;
	background: var(--sy1-muted);
	border: 1px solid var(--sy1-border);
	border-radius: var(--sy1-radius);
}

.empty-state > span .icon,
.not-found > div > span .icon {
	width: 64px;
	height: 64px;
	color: var(--sy1-blue);
}

.split-promo,
.story-grid {
	display: grid;
	gap: 28px;
}

.check-list {
	display: grid;
	gap: 14px;
}

.check-list span {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 600;
}

.about-hero__copy > p:not(.location-line) {
	max-width: 54ch;
}

.about-hero__media {
	margin: 0;
	overflow: hidden;
	background: #151a21;
	border: 1px solid #303740;
	border-radius: var(--sy1-radius);
}

.about-hero__media img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	object-position: center;
}

.about-hero__media figcaption {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 16px 18px;
	color: #dfe5ec;
	font-size: 0.84rem;
}

.about-hero__media figcaption .icon {
	width: 22px;
	height: 22px;
	color: #77aaff;
}

.about-hero__media figcaption span {
	display: grid;
}

.about-hero__media figcaption strong {
	color: #fff;
}

.mission-section {
	padding: 70px 0;
	background: var(--sy1-blue);
	color: #fff;
}

.mission-section .section-kicker {
	color: #fff;
}

.mission-section blockquote {
	max-width: 25ch;
	margin: 0;
	font-size: clamp(1.8rem, 5vw, 3.2rem);
	font-weight: 700;
	letter-spacing: -0.03em;
	line-height: 1.2;
}

.values-grid {
	display: grid;
	gap: 14px;
}

.values-grid article {
	padding: 24px;
	background: #fff;
	border: 1px solid var(--sy1-border);
	border-radius: var(--sy1-radius);
}

.values-grid article > .icon {
	width: 34px;
	height: 34px;
	margin-bottom: 20px;
	color: var(--sy1-blue);
}

.values-grid article p {
	margin-bottom: 0;
	color: var(--sy1-text-muted);
}

.about-departments {
	display: grid;
	margin-top: 34px;
	border-top: 1px solid var(--sy1-border);
}

.about-departments a {
	display: grid;
	grid-template-columns: 28px minmax(0, 1fr) 20px;
	align-items: center;
	gap: 14px;
	min-height: 94px;
	padding: 18px 0;
	color: var(--sy1-text);
	text-decoration: none;
	border-bottom: 1px solid var(--sy1-border);
}

.about-departments a > .icon:first-child {
	width: 26px;
	height: 26px;
	color: var(--sy1-blue);
}

.about-departments a > .icon:last-child {
	width: 18px;
	height: 18px;
	color: var(--sy1-blue-dark);
}

.about-departments span {
	display: grid;
	gap: 3px;
	color: var(--sy1-text-muted);
	font-size: 0.9rem;
}

.about-departments strong {
	color: var(--sy1-text);
	font-size: 1rem;
}

.page-hero {
	padding: 70px 0;
}

.page-hero--simple h1 {
	margin-bottom: 0;
}

.contact-page__grid {
	display: grid;
	gap: 28px;
}

.contact-cards {
	display: grid;
	align-content: start;
	gap: 1px;
	overflow: hidden;
	background: var(--sy1-border);
	border: 1px solid var(--sy1-border);
	border-radius: var(--sy1-radius);
}

.contact-cards > a {
	display: grid;
	grid-template-columns: 42px 1fr 24px;
	align-items: center;
	min-height: 88px;
	gap: 12px;
	padding: 15px 18px;
	background: #fff;
	text-decoration: none;
}

.contact-cards > a > .icon:first-child {
	width: 28px;
	height: 28px;
	color: var(--sy1-blue);
}

.contact-cards span {
	display: grid;
}

.contact-cards small {
	color: var(--sy1-text-muted);
	font-size: 0.82rem;
}

.contact-page .enquiry-panel {
	display: block;
}

.contact-page .enquiry-panel > div {
	margin-bottom: 24px;
}

.opening-hours {
	display: grid;
	gap: 8px;
	margin: 0 0 20px;
}

.opening-hours > div {
	display: flex;
	justify-content: space-between;
	gap: 12px;
}

.opening-hours dd {
	margin: 0;
	font-weight: 600;
}

.vehicle-detail-hero {
	padding: 44px 0;
}

.vehicle-detail-hero__top {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 20px;
}

.vehicle-detail-hero h1 {
	font-size: clamp(2rem, 6vw, 3.7rem);
}

.vehicle-detail-hero p {
	margin-bottom: 0;
	color: #cbd3dc;
}

.back-link {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	margin-bottom: 16px;
	color: #8cbcff;
	font-weight: 600;
}

.back-link .icon--back {
	transform: rotate(180deg);
}

.vehicle-detail-hero__price {
	color: #8cbcff;
	font-size: clamp(1.7rem, 5vw, 2.6rem);
}

.vehicle-detail__grid {
	display: grid;
	gap: 28px;
}

.vehicle-gallery__primary,
.vehicle-gallery__thumbs img {
	overflow: hidden;
	border-radius: var(--sy1-radius);
}

.vehicle-gallery__primary img {
	width: 100%;
	max-height: 680px;
	object-fit: cover;
	border-radius: var(--sy1-radius);
}

.vehicle-gallery__thumbs {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px;
	margin-top: 8px;
}

.vehicle-gallery__thumbs img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.vehicle-description {
	margin-top: 40px;
}

.vehicle-sidebar {
	display: grid;
	align-content: start;
	gap: 16px;
}

.vehicle-sidebar__panel {
	padding: 22px;
	background: var(--sy1-muted);
	border: 1px solid var(--sy1-border);
	border-radius: var(--sy1-radius);
}

.vehicle-sidebar__panel h2 {
	font-size: 1.3rem;
}

.vehicle-sidebar__panel dl {
	margin: 0;
}

.vehicle-sidebar__panel dl > div {
	display: flex;
	justify-content: space-between;
	gap: 14px;
	padding: 10px 0;
	border-bottom: 1px solid var(--sy1-border);
}

.vehicle-sidebar__panel dt {
	color: var(--sy1-text-muted);
}

.vehicle-sidebar__panel dd {
	margin: 0;
	font-weight: 600;
	text-align: right;
}

.vehicle-sidebar__panel--contact {
	display: grid;
	gap: 12px;
	background: #fff;
}

.vehicle-sidebar__panel--contact h2,
.vehicle-sidebar__panel--contact p {
	margin-bottom: 0;
}

.not-found {
	min-height: 58vh;
	text-align: center;
}

.not-found .button-row {
	justify-content: center;
}

.page-shell {
	min-height: 50vh;
}

.closing-cta {
	padding: 48px 0;
	background: var(--sy1-blue);
	color: #fff;
}

.closing-cta__inner {
	display: grid;
	gap: 24px;
	align-items: center;
}

.closing-cta h2,
.closing-cta p {
	color: #fff;
}

.closing-cta h2 {
	margin-bottom: 8px;
	font-size: clamp(1.7rem, 5vw, 2.55rem);
}

.closing-cta p {
	max-width: 64ch;
	margin-bottom: 0;
}

.site-footer {
	padding: 58px 0 100px;
	background: var(--sy1-ink);
	color: #c8d0da;
}

.site-footer__grid {
	display: grid;
	gap: 36px;
}

.site-footer h2 {
	margin-bottom: 18px;
	color: #fff;
	font-size: 1rem;
	letter-spacing: 0;
}

.site-footer ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-footer li + li {
	margin-top: 2px;
}

.site-footer li a {
	display: flex;
	align-items: center;
	min-height: 44px;
}

.site-footer a {
	color: #dce3ec;
	text-decoration: none;
}

.site-footer a:hover {
	color: #8cbcff;
	text-decoration: underline;
}

.site-footer__brand > a {
	display: flex;
	align-items: center;
	min-height: 44px;
	gap: 8px;
}

.site-footer__brand p {
	max-width: 45ch;
}

.brand--footer {
	margin-bottom: 18px;
}

.site-footer .opening-hours > div {
	border-bottom: 1px solid #303740;
}

.site-footer__note {
	font-size: 0.77rem;
	color: #8c98a6;
}

.site-footer__bottom {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 40px;
	padding-top: 22px;
	font-size: 0.77rem;
	border-top: 1px solid #303740;
}

.site-footer__bottom p {
	margin-bottom: 0;
}

.site-footer__bottom div {
	display: flex;
	gap: 18px;
}

.site-footer__bottom a {
	display: flex;
	align-items: center;
	min-height: 44px;
	padding-inline: 3px;
}

.mobile-actions {
	position: fixed;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1100;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	background: var(--sy1-ink);
	color: #fff;
	border-top: 1px solid #343b45;
	padding-bottom: env(safe-area-inset-bottom);
}

.mobile-actions a {
	display: flex;
	min-height: 64px;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 3px;
	color: #fff;
	font-size: 0.68rem;
	font-weight: 600;
	text-decoration: none;
	border-right: 1px solid #343b45;
}

.mobile-actions a:hover {
	color: #8cbcff;
}

.mobile-actions .icon {
	width: 21px;
	height: 21px;
}

@media (min-width: 600px) {
	.site-container {
		width: min(calc(100% - 48px), var(--sy1-container));
	}

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

	.service-hero__points {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 14px;
	}

	.service-grid,
	.vehicle-grid,
	.values-grid,
	.review-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

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

	.check-grid li:nth-child(odd) {
		padding-right: 18px;
	}

	.check-grid li:nth-child(even) {
		padding-left: 18px;
		border-left: 1px solid var(--sy1-border);
	}

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

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

	.about-departments {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0 28px;
	}

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

	.vehicle-filter .button {
		align-self: end;
	}

	.vehicle-gallery__thumbs {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

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

@media (min-width: 768px) {
	.utility-bar {
		display: block;
	}

	.home-hero {
		min-height: min(740px, calc(100dvh - 108px));
	}

	.home-hero__copy > p:not(.location-line) {
		font-size: 1.18rem;
	}

	.home-hero__copy {
		max-width: 900px;
	}

	.section {
		padding: 92px 0;
	}

	.section-heading {
		grid-template-columns: minmax(0, 1fr) minmax(260px, 0.48fr);
		align-items: end;
	}

	.intro-grid,
	.promise-section__grid,
	.story-grid {
		grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1fr);
	}

	.service-index__layout {
		grid-template-columns: minmax(240px, 0.5fr) minmax(0, 1fr);
		gap: clamp(44px, 7vw, 96px);
		align-items: start;
	}

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

	.recovery-strip__inner {
		grid-template-columns: auto minmax(220px, 1fr) auto auto;
	}

	.enquiry-panel {
		grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1fr);
		padding: 36px;
	}

	.faq-layout {
		grid-template-columns: minmax(220px, 0.55fr) minmax(0, 1fr);
	}

	.vehicle-filter {
		grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
		align-items: end;
	}

	.vehicle-filter__clear {
		grid-column: 1 / -1;
	}

	.split-promo {
		grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
	}

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

	.contact-page__grid {
		grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1fr);
	}

	.closing-cta__inner {
		grid-template-columns: minmax(0, 1fr) auto;
	}

	.site-footer {
		padding-bottom: 58px;
	}

	.site-footer__grid {
		grid-template-columns: 1.4fr repeat(3, 1fr);
	}

	.mobile-actions {
		display: none;
	}
}

@media (min-width: 960px) {
	.home-hero__layout {
		grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
		gap: clamp(44px, 5vw, 82px);
		padding-top: 68px;
		padding-bottom: 68px;
	}

	.home-hero__copy {
		max-width: 650px;
	}

	.home-hero h1 {
		font-size: 3.5rem;
	}

	.service-grid,
	.vehicle-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.why-layout {
		grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1fr);
		align-items: center;
	}

	.find-us__grid,
	.contact-location__grid {
		grid-template-columns: minmax(300px, 0.65fr) minmax(0, 1fr);
		align-items: stretch;
	}

	.service-hero,
	.inventory-hero,
	.about-hero {
		padding: 78px 0;
	}

	.service-hero__grid,
	.inventory-hero__grid,
	.about-hero__grid {
		grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
	}

	.service-hero__media,
	.service-hero__media img {
		min-height: 400px;
	}

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

	.process-steps {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.vehicle-filter {
		padding: 24px;
	}

	.vehicle-detail__grid {
		grid-template-columns: minmax(0, 1fr) 350px;
		align-items: start;
	}

	.vehicle-sidebar {
		position: sticky;
		top: 96px;
	}
}

@media (min-width: 1180px) {
	:root {
		--sy1-header-height: 82px;
	}

	.nav-toggle {
		display: none;
	}

	.site-nav {
		position: static;
		display: block;
		min-width: 0;
		margin-left: auto;
		padding: 0;
		overflow: visible;
		background: transparent;
	}

	.site-nav__list {
		display: flex;
		align-items: stretch;
		justify-content: flex-end;
		width: auto;
		max-width: none;
	}

	.site-nav__list a {
		position: relative;
		min-height: 82px;
		padding: 8px 7px;
		font-size: 0.69rem;
		white-space: nowrap;
		border: 0;
	}

	.site-nav__list a[aria-current="page"]::after {
		position: absolute;
		right: 7px;
		bottom: 0;
		left: 7px;
		height: 3px;
		background: var(--sy1-blue);
		content: "";
	}

	.site-header .site-header__call {
		display: inline-flex;
		min-height: 46px;
		padding-inline: 14px;
		font-size: 0.8rem;
	}

	.brand {
		width: 190px;
	}

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

}

@media (min-width: 1380px) {
	.home-hero h1 {
		font-size: 3.75rem;
	}

	.site-nav__list a {
		padding-inline: 10px;
		font-size: 0.72rem;
	}

	.site-header__call {
		padding-inline: 18px;
	}
}

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

	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}
