:root {
	--color-ink: #101113;
	--color-charcoal: #24272b;
	--color-muted: #62666d;
	--color-paper: #f8f7f4;
	--color-panel: #ffffff;
	--color-line: #ded9cf;
	--color-bronze: #d88b2a;
	--color-bronze-dark: #a96517;
	--color-green: #234136;
	--color-green-soft: #e5eee9;
	--shadow-soft: 0 18px 45px rgba(16, 17, 19, 0.11);
	--shadow-dark: 0 16px 44px rgba(0, 0, 0, 0.28);
	--container: 1180px;
	--header-height: 96px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--color-paper);
	color: var(--color-ink);
	font-family: Inter, Arial, sans-serif;
	font-size: 16px;
	line-height: 1.55;
	letter-spacing: 0;
}

img,
svg {
	display: block;
	max-width: 100%;
}

img {
	height: auto;
}

a {
	color: inherit;
	text-decoration: none;
}

button,
input,
select,
textarea {
	font: inherit;
}

button {
	cursor: pointer;
}

.screen-reader-text,
.skip-link {
	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:focus {
	z-index: 10000;
	top: 12px;
	left: 12px;
	width: auto;
	height: auto;
	padding: 10px 14px;
	clip: auto;
	background: var(--color-ink);
	color: #ffffff;
	border-radius: 4px;
}

.container {
	width: min(calc(100% - 40px), var(--container));
	margin: 0 auto;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 12px),
		linear-gradient(90deg, rgba(216, 139, 42, 0.18), transparent 24%, transparent 76%, rgba(216, 139, 42, 0.12)),
		linear-gradient(180deg, rgba(21, 23, 25, 0.98), rgba(7, 8, 10, 0.98));
	border-bottom: 1px solid rgba(216, 139, 42, 0.42);
	box-shadow: 0 14px 38px rgba(0, 0, 0, 0.22);
	backdrop-filter: blur(16px);
}

.site-header::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(216, 139, 42, 0.9), transparent);
	pointer-events: none;
}

.header-inner {
	min-height: var(--header-height);
	display: grid;
	grid-template-columns: minmax(230px, 0.86fr) auto minmax(112px, 0.32fr);
	align-items: center;
	gap: 24px;
	width: min(calc(100% - 40px), 1320px);
	margin: 0 auto;
}

.brand {
	display: inline-flex;
	align-items: center;
	min-width: 0;
	gap: 12px;
}

.brand img {
	width: 142px;
	height: 70px;
	object-fit: contain;
	background: linear-gradient(180deg, #060708, #111214);
	border: 1px solid rgba(216, 139, 42, 0.34);
	border-radius: 6px;
	padding: 5px 9px;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04), 0 12px 24px rgba(0, 0, 0, 0.26);
}

.brand-copy {
	display: grid;
	min-width: 0;
	gap: 2px;
}

.brand-copy strong {
	font-family: Georgia, "Times New Roman", serif;
	font-size: 0.98rem;
	line-height: 1.1;
	color: #ffffff;
}

.brand-copy span {
	color: rgba(255, 255, 255, 0.62);
	font-size: 0.72rem;
	white-space: nowrap;
}

.primary-nav {
	justify-self: center;
}

.primary-nav ul {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.primary-nav li {
	position: relative;
}

.primary-nav a {
	display: inline-flex;
	align-items: center;
	min-height: 42px;
	padding: 0 12px;
	color: rgba(255, 255, 255, 0.86);
	border: 1px solid transparent;
	border-radius: 4px;
	font-size: 0.9rem;
	font-weight: 700;
	white-space: nowrap;
	transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
	color: #ffffff;
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(216, 139, 42, 0.26);
}

.primary-nav .menu-item-has-children > a::after {
	content: "";
	width: 7px;
	height: 7px;
	margin-left: 6px;
	border-right: 1.8px solid currentColor;
	border-bottom: 1.8px solid currentColor;
	transform: rotate(45deg) translateY(-2px);
}

.primary-nav .sub-menu {
	position: absolute;
	top: calc(100% + 6px);
	left: 50%;
	transform: translateX(-50%) translateY(8px);
	display: grid;
	gap: 4px;
	min-width: 198px;
	padding: 12px;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 10px),
		linear-gradient(180deg, rgba(24, 25, 27, 0.98), rgba(9, 10, 12, 0.98));
	border: 1px solid rgba(216, 139, 42, 0.32);
	border-radius: 8px;
	box-shadow: var(--shadow-dark);
	opacity: 0;
	pointer-events: none;
	transition: opacity 220ms ease, transform 220ms ease;
}

.primary-nav .menu-item-has-children::before {
	content: "";
	position: absolute;
	top: 100%;
	left: -18px;
	right: -18px;
	height: 18px;
}

.primary-nav li:hover > .sub-menu,
.primary-nav li:focus-within > .sub-menu {
	opacity: 1;
	pointer-events: auto;
	transform: translateX(-50%) translateY(0);
}

.primary-nav .sub-menu a {
	width: 100%;
	min-height: 38px;
	padding: 0 10px;
	border-radius: 4px;
}

.primary-nav .sub-menu a:hover {
	background: rgba(216, 139, 42, 0.16);
}

.header-actions {
	display: inline-flex;
	justify-self: end;
	align-items: center;
	gap: 8px;
}

.icon-button,
.nav-toggle {
	display: inline-grid;
	place-items: center;
	width: 42px;
	height: 42px;
	color: #ffffff;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(216, 139, 42, 0.2);
	border-radius: 4px;
}

.icon-button:hover,
.icon-button:focus-visible,
.nav-toggle:hover,
.nav-toggle:focus-visible {
	background: rgba(216, 139, 42, 0.18);
	border-color: rgba(216, 139, 42, 0.6);
}

.icon-button svg,
.nav-toggle svg,
.text-link svg {
	width: 21px;
	height: 21px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.nav-toggle {
	display: none;
}

.site-main {
	min-height: 60vh;
}

.home-hero {
	position: relative;
	min-height: min(760px, calc(100svh - var(--header-height)));
	max-height: 760px;
	overflow: hidden;
	background: #0d0d0d;
}

.home-hero img {
	width: 100%;
	height: 100%;
	min-height: min(760px, calc(100svh - var(--header-height)));
	object-fit: cover;
	object-position: center;
}

.home-hero__shade {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(6, 6, 7, 0.08), transparent 22%, transparent 76%, rgba(6, 6, 7, 0.12)),
		linear-gradient(180deg, rgba(6, 6, 7, 0.02), transparent 66%, rgba(6, 6, 7, 0.22));
	pointer-events: none;
}

.home-hero__content {
	position: absolute;
	left: max(24px, calc((100% - var(--container)) / 2));
	bottom: 42px;
	width: min(560px, calc(100% - 48px));
	color: #ffffff;
}

.home-hero__content--coming-soon {
	top: 50%;
	bottom: auto;
	max-width: 520px;
	transform: translateY(-40%);
}

.home-hero__content--coming-soon::before {
	content: "";
	display: block;
	width: 92px;
	height: 3px;
	margin-bottom: 18px;
	background: linear-gradient(90deg, var(--color-bronze), rgba(216, 139, 42, 0));
}

.home-hero__content--coming-soon h1 {
	font-size: 4.8rem;
	text-shadow: 0 12px 32px rgba(0, 0, 0, 0.48);
}

.home-hero__content--coming-soon .eyebrow {
	margin-bottom: 14px;
}

.eyebrow {
	margin: 0 0 12px;
	color: var(--color-bronze);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0;
	text-transform: uppercase;
}

h1,
h2,
h3,
p {
	overflow-wrap: break-word;
}

h1,
h2,
h3 {
	margin: 0;
	line-height: 1.08;
	letter-spacing: 0;
}

h1 {
	font-family: Georgia, "Times New Roman", serif;
	font-size: 4.2rem;
}

h2 {
	font-size: 2.45rem;
}

h3 {
	font-size: 1.35rem;
}

.home-hero__content p:not(.eyebrow),
.page-hero__content p:not(.eyebrow),
.feature-row__content p,
.copy-block p,
.service-panel p,
.division-card p,
.vehicle-card p,
.contact-aside p,
.footer-brand p,
.site-footer p {
	color: var(--color-muted);
}

.home-hero__content p:not(.eyebrow) {
	max-width: 500px;
	margin: 16px 0 0;
	color: rgba(255, 255, 255, 0.9);
	font-size: 1.08rem;
}

.button-row {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 26px;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 0 20px;
	border: 1px solid transparent;
	border-radius: 4px;
	font-weight: 750;
	text-align: center;
	transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
	transform: translateY(-1px);
}

.button--primary {
	background: var(--color-bronze);
	color: #111111;
	border-color: var(--color-bronze);
}

.button--primary:hover,
.button--primary:focus-visible {
	background: #e7a04a;
}

.button--light {
	background: rgba(255, 255, 255, 0.12);
	color: #ffffff;
	border-color: rgba(255, 255, 255, 0.5);
}

.button--light:hover,
.button--light:focus-visible {
	background: #ffffff;
	color: var(--color-ink);
}

.button--ghost {
	background: transparent;
	color: var(--color-ink);
	border-color: #d7d0c5;
}

.button--ghost:hover,
.button--ghost:focus-visible {
	background: #f2eee7;
}

.section {
	padding: 86px 0;
}

.section--top {
	padding-top: 116px;
}

.section--intro {
	padding: 48px 0;
	background: #ffffff;
	border-bottom: 1px solid var(--color-line);
}

.section--paper {
	background: #ffffff;
}

.section--dark {
	background: var(--color-ink);
	color: #ffffff;
}

.section--dark .eyebrow,
.section--dark a {
	color: var(--color-bronze);
}

.section--dark p,
.section--dark .copy-block p {
	color: rgba(255, 255, 255, 0.74);
}

.intro-grid,
.split,
.feature-row,
.contact-layout,
.vehicle-single {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	gap: 56px;
	align-items: center;
}

.copy-block {
	display: grid;
	gap: 18px;
}

.copy-block p {
	margin: 0;
	font-size: 1.04rem;
}

.section-heading {
	max-width: 720px;
	margin: 0 0 34px;
}

.section-heading h2 {
	max-width: 720px;
}

.division-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.division-card,
.service-panel,
.vehicle-card,
.post-card,
.empty-stock,
.contact-panel,
.contact-aside {
	background: #ffffff;
	border: 1px solid var(--color-line);
	border-radius: 8px;
	box-shadow: 0 1px 0 rgba(16, 17, 19, 0.04);
}

.division-card {
	overflow: hidden;
	display: grid;
}

.division-card__image {
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: #111111;
}

.division-card__image img,
.feature-row__media img,
.page-hero__media img,
.vehicle-card__image img,
.single-media img,
.vehicle-single__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.division-card__body {
	display: grid;
	gap: 13px;
	padding: 22px;
}

.division-card h3 a:hover {
	color: var(--color-bronze-dark);
}

.division-card p {
	margin: 0;
}

.tag-list,
.check-list,
.footer-links {
	margin: 0;
	padding: 0;
	list-style: none;
}

.tag-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.tag-list li {
	padding: 6px 9px;
	background: var(--color-green-soft);
	color: var(--color-green);
	border-radius: 4px;
	font-size: 0.78rem;
	font-weight: 750;
}

.feature-row {
	align-items: stretch;
}

.feature-row__media,
.page-hero__media,
.vehicle-single__media,
.single-media {
	overflow: hidden;
	border-radius: 8px;
	background: #111111;
	box-shadow: var(--shadow-soft);
}

.feature-row__media {
	min-height: 440px;
}

.feature-row__content {
	align-self: center;
}

.feature-row__content p {
	margin: 18px 0 0;
	font-size: 1.04rem;
}

.check-list {
	display: grid;
	gap: 10px;
	margin-top: 24px;
}

.check-list li {
	position: relative;
	padding-left: 28px;
}

.check-list li::before {
	content: "";
	position: absolute;
	top: 0.68em;
	left: 0;
	width: 12px;
	height: 7px;
	border-left: 2px solid var(--color-bronze);
	border-bottom: 2px solid var(--color-bronze);
	transform: rotate(-45deg);
}

.text-link {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	margin-top: 28px;
	color: var(--color-bronze-dark);
	font-weight: 800;
}

.text-link svg {
	width: 19px;
	height: 19px;
}

.metrics-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1px;
	background: rgba(255, 255, 255, 0.16);
	border: 1px solid rgba(255, 255, 255, 0.16);
}

.metrics-grid div {
	display: grid;
	gap: 12px;
	min-height: 180px;
	padding: 28px;
	background: var(--color-ink);
}

.metrics-grid span {
	color: var(--color-bronze);
	font-weight: 850;
}

.metrics-grid strong {
	font-size: 1.25rem;
}

.metrics-grid p {
	margin: 0;
	color: rgba(255, 255, 255, 0.74);
}

.action-band {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
}

.action-band h2 {
	max-width: 780px;
}

.action-band--light {
	padding: 36px;
	background: #ffffff;
	border: 1px solid var(--color-line);
	border-radius: 8px;
	box-shadow: var(--shadow-soft);
}

.page-hero {
	position: relative;
	display: grid;
	min-height: 520px;
	background: var(--color-ink);
	color: #ffffff;
	overflow: hidden;
}

.page-hero__media {
	position: absolute;
	inset: 0;
	border-radius: 0;
	box-shadow: none;
	opacity: 0.68;
}

.page-hero__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(16, 17, 19, 0.82), rgba(16, 17, 19, 0.3) 62%, rgba(16, 17, 19, 0.58));
}

.page-hero__content {
	position: relative;
	z-index: 1;
	width: min(calc(100% - 40px), var(--container));
	margin: 0 auto;
	align-self: end;
	padding: 170px 0 70px;
}

.page-hero__content h1 {
	max-width: 820px;
}

.page-hero__content p:not(.eyebrow) {
	max-width: 650px;
	margin: 18px 0 0;
	color: rgba(255, 255, 255, 0.84);
	font-size: 1.08rem;
}

.service-grid,
.shop-grid,
.vehicle-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.service-panel {
	display: grid;
	align-content: start;
	gap: 16px;
	min-height: 260px;
	padding: 28px;
}

.service-panel span {
	color: var(--color-bronze-dark);
	font-weight: 850;
}

.service-panel p {
	margin: 0;
}

.brand-panel {
	display: grid;
	grid-template-columns: 280px minmax(0, 1fr);
	gap: 46px;
	align-items: center;
}

.brand-panel img {
	width: 100%;
	border-radius: 8px;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.brand-panel p:not(.eyebrow) {
	max-width: 760px;
	margin: 18px 0 0;
}

.vehicle-card {
	overflow: hidden;
	display: grid;
}

.vehicle-card__image {
	aspect-ratio: 16 / 10;
	background: #111111;
}

.vehicle-card > div {
	display: grid;
	gap: 10px;
	padding: 22px;
}

.vehicle-card h2,
.vehicle-card h3 {
	font-size: 1.25rem;
}

.vehicle-card p {
	margin: 0;
}

.empty-stock {
	display: grid;
	justify-items: start;
	gap: 14px;
	padding: 28px;
}

.empty-stock p {
	margin: 0;
	color: var(--color-muted);
}

.contact-layout {
	align-items: start;
	grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
}

.contact-panel {
	padding: 34px;
}

.contact-form {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
	margin-top: 26px;
}

.contact-form label {
	display: grid;
	gap: 7px;
	color: var(--color-charcoal);
	font-weight: 750;
}

.contact-form input,
.contact-form select,
.contact-form textarea,
.auth-form input,
#tgl-login-form input[type="text"],
#tgl-login-form input[type="password"] {
	width: 100%;
	border: 1px solid #d7d0c5;
	border-radius: 4px;
	background: #ffffff;
	color: var(--color-ink);
	padding: 12px 13px;
}

.contact-form textarea {
	resize: vertical;
	min-height: 150px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.auth-form input:focus,
#tgl-login-form input[type="text"]:focus,
#tgl-login-form input[type="password"]:focus {
	outline: 2px solid rgba(216, 139, 42, 0.35);
	border-color: var(--color-bronze);
}

.contact-form__full,
.contact-form button {
	grid-column: 1 / -1;
}

.contact-form button {
	justify-self: start;
}

.form-status {
	padding: 12px 14px;
	border-radius: 4px;
	font-weight: 750;
}

.form-status--success {
	background: var(--color-green-soft);
	color: var(--color-green);
}

.form-status--error {
	background: #fff0e2;
	color: #8a4306;
}

.contact-aside {
	display: grid;
	gap: 22px;
	padding: 20px;
}

.contact-aside img {
	width: 100%;
	border-radius: 6px;
}

.auth-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.65fr);
	gap: 28px;
	align-items: start;
}

.auth-card,
.auth-side,
.commerce-panel {
	background: #ffffff;
	border: 1px solid var(--color-line);
	border-radius: 8px;
	box-shadow: var(--shadow-soft);
}

.auth-card {
	padding: 34px;
}

.auth-card h2 {
	margin-bottom: 18px;
}

.auth-form,
#tgl-login-form {
	display: grid;
	gap: 16px;
	margin-top: 24px;
}

.auth-form label,
#tgl-login-form p {
	display: grid;
	gap: 7px;
	margin: 0;
	color: var(--color-charcoal);
	font-weight: 750;
}

#tgl-login-form .login-remember {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 650;
}

#tgl-login-form .login-remember label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

#tgl-login-form input[type="checkbox"] {
	width: 18px;
	height: 18px;
	accent-color: var(--color-bronze);
}

#tgl-login-form .button,
#tgl-login-form input[type="submit"] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	width: auto;
	padding: 0 20px;
	background: var(--color-bronze);
	color: #111111;
	border: 1px solid var(--color-bronze);
	border-radius: 4px;
	font-weight: 750;
}

.auth-form button {
	justify-self: start;
}

.auth-links {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 20px;
}

.auth-links a {
	color: var(--color-bronze-dark);
	font-weight: 800;
}

.auth-side {
	display: grid;
	gap: 18px;
	padding: 22px;
	background:
		linear-gradient(135deg, rgba(216, 139, 42, 0.1), transparent 34%),
		#101113;
	color: #ffffff;
}

.auth-side img {
	width: 100%;
	border-radius: 6px;
	border: 1px solid rgba(216, 139, 42, 0.28);
}

.auth-side p {
	margin: 0;
	color: rgba(255, 255, 255, 0.74);
}

.account-summary {
	display: grid;
	gap: 12px;
}

.cart-layout {
	max-width: 1040px;
}

.commerce-panel {
	padding: 24px;
}

.cart-empty {
	max-width: 760px;
}

.content-layout {
	display: grid;
	grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.1fr);
	gap: 52px;
	align-items: start;
}

.entry-content {
	max-width: 780px;
}

.entry-content a {
	color: var(--color-bronze-dark);
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

.entry-content img {
	border-radius: 8px;
}

.post-list {
	display: grid;
	gap: 16px;
}

.post-card {
	padding: 24px;
}

.post-card h2 {
	font-size: 1.35rem;
}

.post-card p {
	color: var(--color-muted);
}

.single-layout {
	max-width: 860px;
}

.single-layout h1 {
	margin-bottom: 28px;
}

.single-media {
	aspect-ratio: 16 / 9;
	margin-bottom: 34px;
}

.vehicle-single {
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
	align-items: start;
}

.vehicle-single__media {
	aspect-ratio: 4 / 3;
}

.vehicle-single__content {
	display: grid;
	justify-items: start;
	gap: 22px;
}

.not-found {
	display: grid;
	justify-items: start;
	gap: 18px;
}

.site-footer {
	background: #0c0d0f;
	color: #ffffff;
	padding-top: 68px;
}

.footer-grid {
	display: grid;
	grid-template-columns: minmax(240px, 1.3fr) repeat(3, minmax(160px, 0.7fr));
	gap: 36px;
}

.footer-brand img {
	width: 190px;
	border-radius: 6px;
	margin-bottom: 18px;
}

.site-footer h2 {
	margin-bottom: 16px;
	font-size: 1rem;
}

.footer-links {
	display: grid;
	gap: 9px;
}

.footer-links a,
.footer-cta {
	color: rgba(255, 255, 255, 0.76);
}

.footer-links a:hover,
.footer-cta:hover {
	color: var(--color-bronze);
}

.footer-bottom {
	margin-top: 48px;
	padding: 18px 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	text-align: center;
}

.footer-bottom p {
	margin: 0;
	font-size: 0.88rem;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
	background: #ffffff;
	border: 1px solid var(--color-line);
	border-radius: 8px;
	padding: 14px;
}

@media (max-width: 1120px) {
	.header-inner {
		grid-template-columns: 1fr auto auto;
	}

	.brand-copy {
		display: none;
	}

	.primary-nav ul {
		gap: 18px;
	}

	.division-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.metrics-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.footer-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 860px) {
	:root {
		--header-height: 78px;
	}

	.container,
	.header-inner,
	.page-hero__content {
		width: min(calc(100% - 28px), var(--container));
	}

	.header-inner {
		grid-template-columns: 1fr auto auto;
		gap: 10px;
	}

	.brand img {
		width: 112px;
		height: 54px;
	}

	.nav-toggle {
		display: inline-grid;
	}

	.primary-nav {
		position: fixed;
		top: var(--header-height);
		left: 0;
		right: 0;
		display: none;
		max-height: calc(100svh - var(--header-height));
		overflow: auto;
		background:
			linear-gradient(135deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 12px),
			linear-gradient(180deg, rgba(16, 17, 19, 0.99), rgba(7, 8, 10, 0.99));
		border-bottom: 1px solid rgba(216, 139, 42, 0.38);
		box-shadow: var(--shadow-dark);
	}

	.primary-nav.is-open {
		display: block;
	}

	.primary-nav ul {
		display: grid;
		gap: 0;
		width: min(calc(100% - 28px), var(--container));
		margin: 0 auto;
		padding: 12px 0 18px;
	}

	.primary-nav a {
		width: 100%;
		min-height: 48px;
		border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	}

	.primary-nav .sub-menu {
		position: static;
		transform: none;
		opacity: 1;
		pointer-events: auto;
		box-shadow: none;
		border: 0;
		border-radius: 0;
		padding: 0 0 0 14px;
		background: transparent;
		min-width: 0;
	}

	.primary-nav li:hover > .sub-menu,
	.primary-nav li:focus-within > .sub-menu {
		transform: none;
	}

	.header-actions {
		gap: 2px;
	}

	h1 {
		font-size: 2.95rem;
	}

	h2 {
		font-size: 2rem;
	}

	.home-hero {
		min-height: 520px;
	}

	.home-hero img {
		min-height: 520px;
		object-position: 60% center;
	}

	.home-hero__content {
		left: 14px;
		bottom: 28px;
		width: calc(100% - 28px);
	}

	.home-hero__content--coming-soon {
		top: auto;
		bottom: 42px;
		max-width: 360px;
		transform: none;
	}

	.home-hero__content--coming-soon h1 {
		font-size: 3rem;
	}

	.section {
		padding: 64px 0;
	}

	.section--top {
		padding-top: 86px;
	}

	.intro-grid,
	.split,
	.feature-row,
	.contact-layout,
	.auth-layout,
	.content-layout,
	.vehicle-single,
	.brand-panel {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.feature-row__media {
		min-height: 320px;
	}

	.page-hero {
		min-height: 460px;
	}

	.page-hero__content {
		padding: 140px 0 52px;
	}

	.service-grid,
	.shop-grid,
	.vehicle-grid {
		grid-template-columns: 1fr;
	}

	.contact-form {
		grid-template-columns: 1fr;
	}

	.action-band {
		align-items: flex-start;
		flex-direction: column;
	}
}

@media (max-width: 560px) {
	body {
		font-size: 15px;
	}

	.icon-button,
	.nav-toggle {
		width: 38px;
		height: 38px;
	}

	.header-actions .icon-button:first-child {
		display: inline-grid;
	}

	h1 {
		font-size: 2.35rem;
	}

	h2 {
		font-size: 1.65rem;
	}

	h3 {
		font-size: 1.18rem;
	}

	.home-hero,
	.home-hero img {
		min-height: 430px;
	}

	.home-hero__content--coming-soon h1 {
		font-size: 2.45rem;
	}

	.button-row,
	.button {
		width: 100%;
	}

	.division-grid,
	.metrics-grid,
	.footer-grid {
		grid-template-columns: 1fr;
	}

	.action-band--light,
	.contact-panel,
	.service-panel,
	.empty-stock {
		padding: 22px;
	}

	.page-hero {
		min-height: 420px;
	}
}
