@charset "utf-8";

:root {
	/* New colors */
	--color-white: #FFFFFF;
	--color-black: #000000;
	--color-red: #de182f;
	--color-gray: #eeeeee;

	/* Template colors */
	--color-cream: #FFFBF5;
	--color-ivory: #F7F3ED;
	--color-warm-white: #FEFCF9;
	--color-gold: #B8860B;
	--color-gold-light: #D4A853;
	--color-gold-dark: #8B6914;
	--color-charcoal: #1C1C1C;
	--color-charcoal-soft: #3A3A3A;
	--color-taupe: #A69080;
	--color-taupe-light: #C4B5A5;

	--font-display: 'Poppins', sans-serif;
	--font-body: 'Poppins', sans-serif;

	--space-xs: 0.5rem;
	--space-sm: 1rem;
	--space-md: 2rem;
	--space-lg: 3rem;
	--space-xl: 4.5rem;
	--space-2xl: 7rem;
}

*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-body);
	font-size: 18px;
	line-height: 1.6;
	color: var(--color-charcoal);
	background-color: var(--color-white);
	-webkit-font-smoothing: antialiased;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

.highlight {
	color: var(--color-red);
}

a {
	color: inherit;
	text-decoration: none;
}

/* Typography */
.heading-display {
	font-family: var(--font-display);
	font-weight: 300;
	line-height: 1.1;
	letter-spacing: -0.02em;
	color: var(--color-black);
}

.heading-editorial {
	font-family: var(--font-display);
	font-weight: 400;
	font-style: italic;
	line-height: 1.2;
}

.text-label {
	font-family: var(--font-body);
	font-size: 1rem;
	font-weight: 500;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--color-black);
	margin-bottom: var(--space-lg);
}

.text-body {
	font-family: var(--font-body);
	font-size: 1.1rem;
	line-height: 1.7;
	color: var(--color-black);
}

/* Layout Utilities */
.container {
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 var(--space-md);
}

.container--narrow {
	max-width: 900px;
}

.container--wide {
	max-width: 1600px;
}

/* ========================================
           HEADER / NAVIGATION
        ======================================== */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	padding: var(--space-md) 0;
	transition: background 0.4s ease, padding 0.4s ease;
}

.site-header::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: var(--color-white);
	z-index: -1;
}

.site-header.scrolled {
	background: var(--color-white);
	backdrop-filter: blur(10px);
	padding: var(--space-sm) 0;
	box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
}

.site-header.scrolled::before {
	display: none;
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.logo {
	width: 250px;
}

.nav-main {
	display: flex;
	align-items: center;
	gap: var(--space-lg);
}

.nav-dropdown {
	position: relative;
	display: inline-flex;
	align-items: center;
}

.nav-dropdown-toggle {
	font-family: var(--font-body);
	font-size: 1.05rem;
	font-weight: 500;
	letter-spacing: 0.02em;
	line-height: 1;
	padding: var(--space-xs) 0;
	border: 0;
	background: transparent;
	color: inherit;
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	cursor: pointer;
	transition: color 0.3s ease;
}

.nav-dropdown-toggle:hover,
.nav-dropdown.open .nav-dropdown-toggle {
	color: var(--color-red);
}

.nav-dropdown-caret {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	align-self: center;
	width: 0.86rem;
	height: 0.86rem;
	flex: 0 0 0.86rem;
}

.nav-dropdown-caret::before {
	content: '';
	display: block;
	width: 0.72rem;
	height: 0.72rem;
	background-color: currentColor;
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpolyline points='4 7 10 13 16 7' fill='none' stroke='%23000' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpolyline points='4 7 10 13 16 7' fill='none' stroke='%23000' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
	transform: rotate(0deg);
	transition: transform 0.22s ease;
}

.nav-dropdown.open .nav-dropdown-caret::before {
	transform: rotate(180deg);
}

.nav-dropdown-menu {
	position: fixed;
	top: var(--header-height, 96px);
	left: 0;
	width: 100vw;
	height: calc(100dvh - var(--header-height, 96px));
	max-height: calc(100dvh - var(--header-height, 96px));
	padding: 1.25rem;
	border-top: 1px solid rgba(0, 0, 0, 0.08);
	background-color: rgba(245, 245, 245, 0.97);
	backdrop-filter: blur(6px);
	box-shadow: 0 24px 45px rgba(0, 0, 0, 0.18);
	opacity: 0;
	pointer-events: none;
	visibility: hidden;
	overflow-y: auto;
	transform: translateY(12px);
	transition: opacity 0.25s ease, transform 0.25s ease;
	z-index: 1200;
}

.nav-dropdown.open .nav-dropdown-menu {
	opacity: 1;
	pointer-events: auto;
	visibility: visible;
	transform: translateY(0);
}

.vehicle-dropdown-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	grid-auto-rows: minmax(180px, 1fr);
	height: 100%;
	align-content: stretch;
	gap: 0.8rem;
}

.vehicle-dropdown-card {
	display: grid;
	grid-template-rows: auto auto;
	gap: 0.45rem;
	padding: 0.45rem;
	background-color: var(--color-white);
	border: 1px solid rgba(0, 0, 0, 0.08);
	transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
	will-change: transform;
	overflow: hidden;
}

.vehicle-dropdown-image-wrap {
	position: relative;
	aspect-ratio: 16 / 9;
	width: 92%;
	margin: 0 auto;
	overflow: hidden;
	background-color: #ffffff;
	border: 0;
	outline: 0;
}

.vehicle-dropdown-image-wrap img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 0.15rem;
	transition: transform 0.35s ease;
}

.vehicle-dropdown-name {
	font-family: var(--font-body);
	font-size: 1rem;
	font-weight: 600;
	letter-spacing: 0.01em;
	line-height: 1.2;
	color: #1a1a1a;
	transition: color 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	min-height: 1.6rem;
	padding: 0.05rem 0;
}

.vehicle-dropdown-card:hover,
.vehicle-dropdown-card:focus-visible {
	transform: scale(1.03);
	border-color: rgba(222, 24, 47, 0.7);
	box-shadow: 0 16px 28px rgba(0, 0, 0, 0.16);
	outline: none;
}

.vehicle-dropdown-card:hover .vehicle-dropdown-image-wrap img,
.vehicle-dropdown-card:focus-visible .vehicle-dropdown-image-wrap img {
	transform: scale(1.06);
}

.vehicle-dropdown-card:hover .vehicle-dropdown-name,
.vehicle-dropdown-card:focus-visible .vehicle-dropdown-name {
	color: var(--color-red);
}

.nav-main a:not(.nav-cta) {
	font-family: var(--font-body);
	font-size: 1.05rem;
	font-weight: 500;
	letter-spacing: 0.02em;
	position: relative;
	padding: var(--space-xs) 0;
	transition: color 0.3s ease;
}

.nav-main a:not(.nav-cta):hover {
	color: var(--color-red);
}

.nav-main a:not(.nav-cta).active {
	color: var(--color-red);
}

.nav-cta {
	font-family: var(--font-body);
	font-size: 0.9rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 0.875rem 1.5rem;
	border: 1px solid var(--color-black);
	transition: all 0.3s ease;
}

.nav-cta:hover {
	background-color: var(--color-black);
	color: var(--color-white);
}

/* Mobile Menu Toggle */
.menu-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 10px;
}

.menu-toggle span {
	display: block;
	width: 24px;
	height: 1.5px;
	background-color: var(--color-black);
	transition: all 0.3s ease;
}

/* ========================================
           HERO SECTION
        ======================================== */
.hero {
	min-height: 0;
	max-height: none;
	height: calc(100vh - var(--header-height, 96px));
	height: calc(100dvh - var(--header-height, 96px));
	margin-top: var(--header-height, 96px);
	background-color: var(--color-cream);
	overflow: hidden;
	position: relative;
}

.hero-container {
	position: relative;
	height: 100%;
	width: 100%;
	padding: 0;
	gap: 0;
}

.hero-image {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.hero-image::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to top,
		rgba(0, 0, 0, 0.78) 0%,
		rgba(0, 0, 0, 0.45) 35%,
		rgba(0, 0, 0, 0.15) 62%,
		transparent 100%);
	pointer-events: none;
	z-index: 2;
}

.hero-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity 0.2s ease-in-out;
}

.hero-slide.active {
	opacity: 1;
}

.hero-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-slide video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 1;
}

.vehicle-hero {
	height: calc(100dvh - var(--header-height, 96px) - 84px);
	min-height: 320px;
}

.vehicle-subnav {
	background: var(--color-black);	
	position: sticky;
	top: var(--header-height, 96px);
	z-index: 500;
}

.vehicle-subnav-inner {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	min-height: 84px;
	gap: var(--space-md);
	padding-top: 0;
	padding-bottom: 0;
}

.vehicle-subnav-brand img {
	max-height: clamp(36px, 4.2vw, 64px);
	width: auto;
	display: block;
}

.vehicle-subnav-links {
	display: flex;
	align-items: center;
	gap: clamp(1rem, 2.6vw, 2.5rem);
	flex-wrap: wrap;
	justify-content: center;
}

.vehicle-subnav-links a {
	font-family: var(--font-body);
	font-size: clamp(0.9rem, 1.4vw, 1rem);
	font-weight: 500;
	color: var(--color-white);
	padding: 0.35rem 0;
	transition: color 0.25s ease;
	white-space: nowrap;
}

.vehicle-subnav-links a:hover {
	color: var(--color-red);
}

.vehicle-subnav-links a.active {
	color: var(--color-red);
}

.vehicle-subnav-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0.5rem;
	transition: transform 0.3s ease;
	line-height: 0;
	font-size: 0;
	color: transparent;
	appearance: none;
	-webkit-appearance: none;
	opacity: 0.8;
	position: relative;
	width: 2rem;
	height: 2rem;
}

.vehicle-subnav-toggle::before {
	content: '';
	display: block;
	width: 0.72rem;
	height: 0.72rem;
	border-left: 2.2px solid var(--color-white);
	border-bottom: 2.2px solid var(--color-white);
	transform: rotate(-45deg);
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -0.46rem;
	margin-left: -0.46rem;
	transition: transform 0.3s ease;
}

.vehicle-subnav-toggle:hover {
	opacity: 1;
}

.vehicle-subnav-toggle.open::before {
	transform: rotate(135deg);
}

.vehicle-subnav-links.mobile-open {
	display: flex !important;
}

.hero-content-overlay {
	position: absolute;
	bottom: clamp(64px, 11vh, 92px);
	left: 50%;
	transform: translate(-50%, 20px);
	width: min(92vw, 680px);
	margin: 0 auto;
	text-align: center;
	z-index: 10;
	opacity: 0;
	animation: fadeUpCentered 0.8s ease forwards;
	animation-delay: 0.8s;
	color: var(--color-white);
}

.hero-model-title {
	font-family: var(--font-display);
	font-size: clamp(2.5rem, 6vw, 4.5rem);
	font-weight: bold;
	margin-bottom: var(--space-xs);
	letter-spacing: -0.02em;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
	transition: opacity 0.2s ease;
}

.hero-model-description {
	font-family: var(--font-body);
	font-size: clamp(1rem, 2vw, 1.5rem);
	font-weight: 400;
	margin-bottom: var(--space-xs);
	text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
	line-height: 1.6;
	transition: opacity 0.2s ease;
}

.hero-actions {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: var(--space-md);
	width: 100%;
	opacity: 0;
	/* animation: normal 0.5s ease forwards; */
	animation: fadeUp 0.8s ease forwards;
	animation-delay: 1s;
}

.hero-actions .btn-primary {
	width: 152px;
	min-height: 42px;
	justify-content: center;
	padding: 0.68rem 1rem;
	font-size: 0.8rem;
	letter-spacing: 0.06em;
}

.btn-primary {
	display: inline-flex;
	align-items: center;
	gap: var(--space-sm);
	font-family: var(--font-body);
	font-size: 0.9rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 0.6rem 1rem;
	background-color: var(--color-red);
	color: var(--color-white);
	border: 2px solid var(--color-red);
	cursor: pointer;
	transition: all 0.3s ease;
	border-radius: 4px;
}

.btn-primary:hover {
	background-color: var(--color-white);
	border-color: var(--color-red);
	color: var(--color-red);
}

.btn-secondary {
	display: inline-flex;
	align-items: center;
	gap: var(--space-sm);
	font-family: var(--font-body);
	font-size: 0.9rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 0.9rem 2rem;
	background-color: transparent;
	color: var(--color-white);
	border: 2px solid var(--color-white);
	cursor: pointer;
	transition: all 0.3s ease;
	border-radius: 4px;
}

.btn-secondary:hover {
	background-color: var(--color-white);
	color: var(--color-red);
	border-color: var(--color-white);
}

.carousel-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 25;
	background-color: rgba(24, 24, 24, 0.35);
	color: var(--color-white);
	border: none;
	width: 50px;
	height: 80px;
	cursor: pointer;
	transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
}

.carousel-arrow-icon {
	font-size: 5rem;
	line-height: 1;
	font-weight: 300;
	transform: translateY(-5px);
	pointer-events: none;
}

.carousel-arrow:hover {
	background-color: rgba(17, 17, 17, 0.65);
}

.carousel-prev {
	left: 0;
}

.carousel-next {
	right: 0;
}

/* Carousel Dots Navigation */
.carousel-dots {
	position: absolute;
	bottom: clamp(0.75rem, 3vh, 2rem);
	left: 50%;
	transform: translate(-50%, 20px);
	display: flex;
	gap: 0.75rem;
	z-index: 20;
	opacity: 0;
	animation: fadeUpCentered 0.8s ease forwards;
	animation-delay: 1.2s;
}

.dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	border: 2px solid var(--color-white);
	background-color: transparent;
	cursor: pointer;
	transition: all 0.3s ease;
	padding: 0;
}

.dot.active {
	background-color: var(--color-red);
	border-color: var(--color-red);
	width: 32px;
	border-radius: 6px;
}

.dot:hover {
	background-color: rgba(255, 255, 255, 0.6);
}

@keyframes fadeUp {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeUpCentered {
	to {
		opacity: 1;
		transform: translate(-50%, 0);
	}
}

/* ========================================
           NEWS AND UPDATES
        ======================================== */
.news-updates {
	padding: var(--space-xl) 0;
	/* background: linear-gradient(180deg, #f2f2f2 0%, #ffffff 100%); */
	background-color: var(--color-white);
}

.news-updates .container {
	max-width: 1200px;
	padding-left: clamp(1rem, 3vw, 2rem);
	padding-right: clamp(1rem, 3vw, 2rem);
}

.news-updates-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(260px, 1fr));
	gap: clamp(1rem, 2.2vw, 1.75rem);
}

.news-update-empty {
	grid-column: 1 / -1;
	margin: 0;
	padding: 1rem 1.2rem;
	background: #ffffff;
	border: 1px solid rgba(0, 0, 0, 0.08);
	color: var(--color-charcoal);
	font-weight: 500;
}

.news-update-empty {
	grid-column: 1 / -1;
	margin: 0;
	padding: 1rem 1.2rem;
	background: #ffffff;
	border: 1px solid rgba(0, 0, 0, 0.08);
	color: var(--color-charcoal);
	font-weight: 500;
}

.news-update-card {
	display: grid;
	grid-template-rows: auto 1fr;
	background-color: var(--color-white);
	border: 1px solid rgba(0, 0, 0, 0.08);
	overflow: hidden;
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
	height: 100%;
}

.news-update-media {
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background-color: #ebebeb;
}

.news-update-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.news-update-content {
	display: grid;
	gap: 0.8rem;
	padding: 1.1rem;
}

.news-update-title {
	font-family: var(--font-display);
	font-size: 1.35rem;
	font-weight: 700;
	line-height: 1.2;
	color: var(--color-black);
}

.news-update-text {
	font-size: 1rem;
	line-height: 1.65;
	color: var(--color-charcoal);
}

.news-update-learn-more {
	justify-self: start;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.65rem 1.1rem;
	background-color: var(--color-red);
	color: var(--color-white);
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	transform: scale(1);
	transition: transform 0.2s ease, background-color 0.2s ease;
}

.news-update-learn-more:hover {
	transform: scale(1.09);
	background-color: #b31224;
}

/* ========================================
           PROMO LEARN MORE PAGE
        ======================================== */
.promo-page {
	padding: calc(var(--header-height, 96px) + var(--space-lg)) 0 var(--space-xl);
	background-color: var(--color-gray);
}

.promo-page-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.9fr);
	gap: var(--space-md);
	align-items: start;
}

.promo-article {
	background-color: var(--color-white);
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
	padding: var(--space-lg);
	display: grid;
	gap: var(--space-md);
}

.promo-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	padding: 0.4rem 0.7rem;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	background-color: rgba(222, 24, 47, 0.14);
	color: var(--color-red);
}

.promo-title {
	font-family: var(--font-display);
	font-size: clamp(1.9rem, 3.8vw, 3rem);
	line-height: 1.1;
	color: var(--color-black);
}

.promo-meta {
	font-size: 0.95rem;
	color: var(--color-charcoal-soft);
}

.promo-media {
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background-color: #ececec;
}

.promo-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.promo-lead {
	font-size: 1.08rem;
	line-height: 1.75;
	color: var(--color-black);
}

.promo-bullets {
	padding-left: 1.1rem;
	display: grid;
	gap: 0.45rem;
}

.promo-bullets li {
	font-size: 1rem;
	line-height: 1.6;
	color: var(--color-black);
}

.promo-contact {
	position: sticky;
	top: calc(var(--header-height, 96px) + 1rem);
}

.promo-contact .contact-form-wrapper {
	max-width: none;
	margin: 0;
}


/* ========================================
           VEHICLES SECTION
        ======================================== */
.vehicles {
	padding: var(--space-xl) 0;
	background-color: var(--color-white);
}

.section-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: var(--space-lg);
}

.section-header-left {
	max-width: 500px;
}

.section-title {
	font-size: clamp(2.25rem, 2vw, 2.5rem);
	margin-bottom: var(--space-sm);
}

.section-subtitle {
	color: var(--color-taupe);
}

/* Vehicles grid: 2-3-2 layout on desktop */
.vehicles-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	grid-template-rows: repeat(3, auto);
	gap: var(--space-md);
}

.vehicle-item {
	position: relative;
	overflow: hidden;
	cursor: pointer;
}

.vehicle-item::after {
	content: '>';
	position: absolute;
	right: 0.85rem;
	bottom: 0.85rem;
	font-family: var(--font-body);
	font-size: 1.25rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	color: var(--color-white);
	border-radius: 999px;
	padding: 0.25rem 0.55rem;
	line-height: 1;
	z-index: 6;
	pointer-events: none;
	text-shadow: #3A3A3A 0 2px 4px;
	transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease, padding 0.25s ease;
}

.vehicle-item:hover::after {
	content: 'Explore >';
	padding: 0.28rem 0.7rem;
}

.vehicle-item:nth-child(1) {
	grid-column: 1 / 4;
	grid-row: 1 / 2;
}

.vehicle-item:nth-child(2) {
	grid-column: 4 / 7;
	grid-row: 1 / 2;
}

.vehicle-item:nth-child(3) {
	grid-column: 1 / 3;
	grid-row: 2 / 3;
}

.vehicle-item:nth-child(4) {
	grid-column: 3 / 5;
	grid-row: 2 / 3;
}

.vehicle-item:nth-child(5) {
	grid-column: 5 / 7;
	grid-row: 2 / 3;
}

.vehicle-item:nth-child(6) {
	grid-column: 1 / 4;
	grid-row: 3 / 4;
}

.vehicle-item:nth-child(7) {
	grid-column: 4 / 7;
	grid-row: 3 / 4;
}

.vehicle-image {
	width: 100%;
	height: 100%;
	min-height: 280px;
	overflow: hidden;
	position: relative;
}

.vehicle-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease, opacity 0.3s ease;
}

.vehicle-video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.vehicle-item:hover .vehicle-image img {
	transform: scale(1.05);
}

.vehicle-item.playing .vehicle-image img {
	opacity: 0;
}

.vehicle-item.playing .vehicle-video {
	opacity: 1;
}

.vehicle-overlay {
	position: absolute;
	inset: 0;
	background: none;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: flex-start;
	padding: var(--space-md);
	opacity: 1;
	transition: opacity 0.4s ease;
	pointer-events: none;
}

.vehicle-item:hover .vehicle-overlay {
	opacity: 0;
}

.vehicle-item.playing .vehicle-overlay {
	opacity: 0;
}

.vehicle-logo {
	width: min(58%, 120px);
	height: auto;
	object-fit: contain;
	filter: drop-shadow(0 1px 0 rgba(0, 0, 0, 0.95)) drop-shadow(0 10px 26px rgba(0, 0, 0, 0.75)) brightness(1.15) contrast(1.2);
}

.vehicle-count {
	font-size: 0.9rem;
	color: var(--color-taupe-light);
	letter-spacing: 0.05em;
}

/* ========================================
           WHY CHOOSE US SECTION
        ======================================== */
.why-choose-us {
	padding: var(--space-md) 0;
	background-color: var(--color-black);
	color: var(--color-white);
	overflow: hidden;
}

.why-choose-us-heading {
	font-family: var(--font-display);
	font-size: clamp(2.75rem, 4.5vw, 4.5rem);
	margin-bottom: var(--space-xl);
	color: var(--color-cream);
	text-align: center;
}

.why-choose-us-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: var(--space-xs);
}

.why-choose-us-column {
	display: flex;
	flex-direction: column;
	gap: var(--space-sm);
	padding: var(--space-sm);
}

.why-choose-us-column-image {
	width: 100%;
	aspect-ratio: 16 / 10;
	height: auto;
	margin-bottom: var(--space-md);
	overflow: hidden;
	border-radius: 8px;
}

.why-choose-us-column-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.why-choose-us-column-title {
	font-family: var(--font-body);
	font-size: 0.85rem;
	font-weight: 500;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--color-red);
	margin-bottom: var(--space-md);
}

.why-choose-us-column-text {
	color: var(--color-white);
	font-size: 1rem;
	line-height: 1.7;
	margin-bottom: 0;
}

.why-choose-us-read-more {
	margin-top: auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	padding: 0.6rem 1rem;
	border: 1px solid var(--color-red);
	color: var(--color-red);
	font-family: var(--font-body);
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	transition: background-color 0.3s ease, color 0.3s ease;
}

.why-choose-us-read-more:hover {
	background-color: var(--color-red);
	color: var(--color-white);
}

.why-choose-us-signature {
	margin-top: var(--space-lg);
}

.why-choose-us-images {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--space-md);
	position: relative;
}

.why-choose-us-image:first-child {
	margin-top: var(--space-xl);
}

.why-choose-us-image {
	aspect-ratio: 3/4;
	overflow: hidden;
}

.why-choose-us-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* ========================================
           CONTACT / VISIT SECTION
        ======================================== */
.contact {
	padding: var(--space-2xl) 0;
	background-color: var(--color-white);
}

.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--space-xl);
	align-items: start;
	/* border-bottom: 1px solid var(--color-charcoal); */
}

.contact-content {
	padding-right: var(--space-lg);
}

.contact-title {
	font-size: clamp(2.25rem, 4vw, 3.5rem);
	margin-bottom: var(--space-md);
}

.contact-text {
	margin-bottom: var(--space-lg);
}

.contact-details {
	margin-bottom: var(--space-lg);
}

.contact-map {
	margin-bottom: var(--space-md);
	overflow: hidden;
	border-radius: 6px;
	box-shadow: 0 0 5px var(--color-charcoal);
    box-shadow: 0 0 5px var(--color-charcoal);
}

.contact-map iframe {
	display: block;
	width: 100%;
	height: 260px;
	border: 0;
}

.contact-item {
	margin-bottom: var(--space-md);
}

.contact-item-label {
	font-size: 0.85rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--color-red);
	margin-bottom: var(--space-xs);
	font-weight: bold;
}

.contact-item-value {
	font-family: var(--font-display);
	color: var(--color-black);
	font-size: 1.1rem;
}

.contact-item-value a {
	transition: color 0.3s ease;
}

.contact-item-value a:hover {
	color: var(--color-red);
}

.contact-form-wrapper {
	background-color: var(--color-white);
	box-shadow: 0 0 10px var(--color-charcoal);
    box-shadow: 0 0 10px var(--color-charcoal);
	padding: var(--space-lg);
}

.form-title {
	font-family: var(--font-display);
	font-size: 1.65rem;
	font-weight: 400;
	margin-bottom: var(--space-md);
}

.form-group {
	margin-bottom: var(--space-md);
}

.form-label {
	display: block;
	font-size: 0.9rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	margin-bottom: var(--space-xs);
}

.form-input,
.form-textarea {
	width: 100%;
	padding: 0.875rem 1rem;
	font-family: var(--font-body);
	font-size: 1rem;
	border: 1px solid var(--color-charcoal-soft);
	background-color: transparent;
	transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
	outline: none;
	border-color: var(--color-red);
}

.form-textarea {
	min-height: 120px;
	resize: vertical;
}

select.form-input {
	padding-right: 2.2rem;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23222222' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: calc(100% - 0.9rem) center;
	background-size: 14px;
}

.form-submit {
	width: 100%;
	padding: 1.1rem;
	font-family: var(--font-body);
	font-size: 0.9rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	background-color: var(--color-black);
	color: var(--color-cream);
	border: none;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.form-submit:hover {
	background-color: var(--color-red);
}

/* ========================================
           VEHICLE DESIGN GALLERY
        ======================================== */
.design {
	--gallery-edge-inset: 0px;
	min-height: calc(100dvh - var(--header-height, 96px));
	display: flex;
	align-items: stretch;
	padding: clamp(0.75rem, 2.2vh, 1.5rem) 0;
	background-color: var(--color-gray);
}

.design .container {
	max-width: 1220px;
	width: min(1220px, calc(100% - 2rem));
	min-height: calc(100dvh - var(--header-height, 96px) - clamp(1.5rem, 4.4vh, 3rem));
	display: grid;
	grid-template-rows: auto auto auto auto;
	align-content: start;
	gap: clamp(0.45rem, 1.2vh, 0.9rem);
}

.variants-section {
	padding: var(--space-md) 0 0;
	background-color: var(--color-gray);
}

.variants-section .container {
	max-width: 1220px;
}

.design-title {
	font-size: clamp(1.65rem, 2.8vw, 2.25rem);
	text-align: center;
	margin-top: var(--space-md);
}

.design-variants {
	margin: 0;
	padding: 0;
}

.design-variants-title {
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.3;
	color: var(--color-black);
	margin: 0 0 0.85rem;
	text-align: center;
}

.design-variants-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	row-gap: 0.45rem;
	width: fit-content;
	max-width: 100%;
	margin: 0 auto;
}

.design-variant-item {
	padding: 0;
	font-size: 1.2rem;
	line-height: 1.4;
	color: var(--color-black);
	text-align: center;
	white-space: nowrap;
}

.design-variant-item + .design-variant-item {
	border-left: 1px solid rgba(0, 0, 0, 0.3);
	margin-left: 0.85rem;
	padding-left: 0.85rem;
}

.design-main-frame {
	background: transparent;
	overflow: hidden;
	box-shadow: none;
	margin-bottom: 0;
	margin-left: auto;
	margin-right: auto;
	width: min(100%, 980px);
	min-height: 0;
	height: clamp(340px, 52dvh, 620px);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.design-main-image {
	width: 100%;
	height: 100%;
	max-height: none;
	object-fit: contain;
	object-position: center;
	display: block;
}

.design-main-caption {
	text-align: left;
	margin: 0 auto;
	width: min(100%, 980px);
	max-height: none;
	overflow-y: visible;
	padding-top: 0.45rem;
	padding-left: var(--gallery-edge-inset);
	padding-right: calc(var(--gallery-edge-inset) + 0.35rem);
}

.design-main-caption-title {
	font-size: 1.08rem;
	font-weight: 600;
	line-height: 1.35;
	color: var(--color-black);
	margin: 0 0 0.25rem;
}

.design-main-caption-text {
	font-size: 0.96rem;
	line-height: 1.6;
	color: var(--color-black);
	margin: 0;
}

.design-main-caption-extra {
	font-size: 0.85rem;
	font-style: italic;
	line-height: 1.5;
	color: var(--color-black);
	margin: 0.5rem 0 0;
}

.design-thumbs-wrap {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 0.8rem;
	min-height: 0;
}

.design-thumbs-wrap.is-hero-nav {
	display: none;
}

.gallery-overlay-arrow {
	z-index: 25;
}

.gallery-overlay-prev {
	left: 0;
}

.gallery-overlay-next {
	right: 0;
}

.design .gallery-overlay-prev {
	left: var(--gallery-edge-inset);
}

.design .gallery-overlay-next {
	right: var(--gallery-edge-inset);
}

.design-thumbs-arrow {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid rgba(0, 0, 0, 0.22);
	background: rgba(255, 255, 255, 0.85);
	color: var(--color-black);
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1.65rem;
	line-height: 1;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.design-thumbs-arrow:hover {
	background: var(--color-black);
	color: var(--color-white);
}

.design-thumbs-track {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	overflow-x: auto;
	scroll-behavior: smooth;
	padding: 0.2rem 0.1rem;
	scrollbar-width: thin;
}

.design-thumb {
	border: 2px solid transparent;
	background: none;
	padding: 0;
	cursor: pointer;
	flex: 0 0 clamp(160px, 20vw, 190px);
	overflow: hidden;
	transition: border-color 0.2s ease, transform 0.2s ease;
}

.design-thumb img {
	width: 100%;
	height: clamp(90px, 12vw, 112px);
	object-fit: cover;
	display: block;
}

.design-thumb.is-active {
	border-color: var(--color-red);
	transform: translateY(-2px);
}

@media (max-width: 768px) {
	.design {
		min-height: auto;
		display: block;
		padding: 1rem 0 1.25rem;
	}

	.design .container {
		width: auto;
		min-height: auto;
		display: block;
		padding-left: 1rem;
		padding-right: 1rem;
	}

	.design-title {
		margin-top: 0.9rem;
		margin-bottom: 0.4rem;
		font-size: clamp(1.35rem, 6.3vw, 1.7rem);
	}

	.design-main-frame {
		margin-bottom: 0.65rem;
		min-height: unset;
		height: clamp(240px, 55vw, 390px);
		display: flex;
	}

	.design-main-image {
		height: 100%;
		max-height: none;
	}

	.design-main-caption {
		max-height: none;
		overflow-y: visible;
		padding-left: var(--gallery-edge-inset);
		padding-right: var(--gallery-edge-inset);
		margin: 0;
		padding-top: 0.25rem;
	}

	.design-main-caption-title {
		font-size: 1rem;
		margin: 0 0 0.2rem;
	}

	.design-main-caption-text {
		font-size: 0.9rem;
		line-height: 1.45;
	}

	.design-main-caption-extra {
		font-size: 0.78rem;
		margin-top: 0.35rem;
	}

	.design-variants-list {
		width: 100%;
	}

	.design-variant-item {
		font-size: 0.92rem;
	}

	/* Keep variant separators visible on mobile. */
	.design-variant-item + .design-variant-item {
		border-left: 1px solid rgba(0, 0, 0, 0.3);
		margin-left: 0.55rem;
		padding-left: 0.55rem;
	}

	.design-thumbs-wrap {
		gap: 0.25rem;
	}

	.gallery-overlay-arrow {
		width: 42px;
		height: 56px;
	}

	.design-thumbs-arrow {
		width: 34px;
		height: 34px;
		font-size: 1.4rem;
	}
}

/* ========================================
           ABOUT SECTION
        ======================================== */
.about {
	padding: var(--space-2xl) 0;
	background-color: var(--color-gray);
	overflow: hidden;
}

.about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--space-xl);
	align-items: center;
}

.about-content {
	order: 2;
	position: relative;
}

.about-image-wrapper {
	order: 1;
}

.about-image {
	aspect-ratio: 4/3;
	overflow: hidden;
}

.about-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.about-title {
	font-size: clamp(2.25rem, 3.5vw, 3rem);
	margin-bottom: var(--space-md);
}

.about-text {
	margin-bottom: var(--space-md);
}

.about-list {
	list-style: none;
	margin-bottom: var(--space-lg);
}

.about-list li {
	position: relative;
	padding-left: var(--space-md);
	margin-bottom: var(--space-sm);
	font-size: 1.05rem;
}

.about-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.6em;
	width: 6px;
	height: 1px;
	background-color: var(--color-gold);
}

/* ========================================
           FOOTER - 4 Column Layout
        ======================================== */
.site-footer {
	background-color: var(--color-black);
	color: var(--color-white);
	padding: var(--space-xl) 0 var(--space-md);
	position: relative;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1.5fr 1fr;
	gap: var(--space-lg);
	margin-bottom: var(--space-lg);
	padding-bottom: var(--space-lg);
	border-bottom: 1px solid var(--color-charcoal);
}

/* Logo */
.footer-brand {
	padding-right: var(--space-md);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.footer-logo {
	width: 250px;
	margin: var(--space-sm) auto;
}

.footer-tagline {
	font-size: 1rem;
	color: var(--color-white);
	line-height: 1.7;
	margin-bottom: var(--space-sm);
}

.footer-contact-info a:hover {
	color: var(--color-red);
}

.footer-contact-info span	 {
	color: var(--color-red);
}

/* Column Headers */
.footer-column-title {
	font-family: var(--font-body);
	font-size: 0.85rem;
	font-weight: 500;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	white-space: pre-wrap;
	margin-bottom: var(--space-md);
	color: var(--color-red);
}

/* Column Links */
.footer-links {
	list-style: none;
}

.footer-links li {
	margin-bottom: 0.75rem;
}

.footer-links a {
	font-size: 1rem;
	color: var(--color-white);
	transition: color 0.3s ease;
}

.footer-links a:hover {
	color: var(--color-red);
}

/* Quick links */
.footer-about p {
	font-size: 1rem;
	color: var(--color-white);
	line-height: 1.7;
	margin-bottom: var(--space-sm);
}

.footer-about a {
	color: var(--color-red);
	transition: color 0.3s ease;
}

.footer-contact-info p {
font-size: 0.95rem;
	color: var(--color-white);
	margin-bottom: var(--space-xs);
}

.footer-contact-info a {
	color: var(--color-white);
	transition: color 0.3s ease;
}

.footer-about a:hover {
	color: var(--color-red);
}

/* Footer Bottom */
.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.footer-copyright {
	font-size: 0.85rem;
	color: var(--color-white);
}

.footer-copyright span {
	color: var(--color-red);
}

.footer-copyright a {
	color: var(--color-white);
	transition: color 0.3s ease;
}

.footer-copyright a:hover {
	color: var(--color-red);
}

.footer-social {
	display: flex;
	gap: var(--space-md);
}

.footer-social a {
	font-size: 0.9rem;
	color: var(--color-white);
	transition: color 0.3s ease;
}

.footer-social a:hover {
	color: var(--color-red);
}

/* SERVICES PAGE */
.services {
	padding: calc(var(--header-height, 96px) + var(--space-lg)) 0 var(--space-2xl);
	background-color: var(--color-gray);
	overflow: hidden;
}

.services-grid {
	display: block;
}

.services-top-nav {
	margin-bottom: var(--space-md);
}

.services-back-link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-family: var(--font-body);
	font-size: 1.05rem;
	font-weight: 500;
	letter-spacing: 0.02em;
	padding: var(--space-xs) 0;
	transition: color 0.3s ease;
}

.services-back-link::before {
	content: '';
	display: inline-block;
	width: 0.5rem;
	height: 0.5rem;
	border-left: 1.8px solid currentColor;
	border-bottom: 1.8px solid currentColor;
	transform: rotate(45deg);
	margin-right: 0.15rem;
	transition: transform 0.3s ease;
}

.services-back-link:hover {
	color: var(--color-red);
}

.services-back-link:hover::before {
	transform: translateX(-2px) rotate(45deg);
}

.services-content {
	position: relative;
}

.services-copy {
	display: grid;
	grid-template-columns: auto 1px 1fr;
	gap: clamp(1.25rem, 3vw, 2.5rem);
	align-items: start;
}

.services-divider {
	background-color: var(--color-red);
	height: 100%;
	min-height: 140px;
	opacity: 0.9;
}

.services-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.services-title {
	font-size: clamp(2.25rem, 3.5vw, 3rem);
	margin: 0;
	white-space: nowrap;
	line-height: 1;
}

.services-text {
	margin: 0;
}

.services-gallery {
	margin-top: var(--space-lg);
}

.services-gallery-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: var(--space-xs);
}

.services-gallery-item {
	margin: 0;
	background-color: var(--color-white);
	overflow: hidden;
	border: 1px solid rgba(0, 0, 0, 0.08);
}

.services-gallery-item img {
	width: 100%;
	height: 240px;
	object-fit: cover;
	display: block;
}

.services-gallery-item figcaption {
	padding: 0.75rem 0.9rem;
	font-size: 0.95rem;
	font-weight: 500;
	color: var(--color-charcoal);
	text-align: center;
}

/* TECHNOLOGY PAGE */
.technology {
	padding: calc(var(--header-height, 96px) + var(--space-lg)) 0 var(--space-2xl);
	background-color: var(--color-gray);
	overflow: hidden;
}

.technology-grid {
	display: block;
}

.technology-top-nav {
	margin-bottom: var(--space-md);
}

.technology-back-link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-family: var(--font-body);
	font-size: 1.05rem;
	font-weight: 500;
	letter-spacing: 0.02em;
	padding: var(--space-xs) 0;
	transition: color 0.3s ease;
}

.technology-back-link::before {
	content: '';
	display: inline-block;
	width: 0.5rem;
	height: 0.5rem;
	border-left: 1.8px solid currentColor;
	border-bottom: 1.8px solid currentColor;
	transform: rotate(45deg);
	margin-right: 0.15rem;
	transition: transform 0.3s ease;
}

.technology-back-link:hover {
	color: var(--color-red);
}

.technology-back-link:hover::before {
	transform: translateX(-2px) rotate(45deg);
}

.technology-content {
	position: relative;
}

.technology-copy {
	display: grid;
	grid-template-columns: auto 1px 1fr;
	gap: clamp(1.25rem, 3vw, 2.5rem);
	align-items: start;
}

.technology-divider {
	background-color: var(--color-red);
	height: 100%;
	min-height: 140px;
	opacity: 0.9;
}

.technology-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.technology-title {
	font-size: clamp(2.25rem, 3.5vw, 3rem);
	margin: 0;
	white-space: nowrap;
	line-height: 1;
}

.technology-text {
	margin: 0;
}

.technology-gallery {
	margin-top: var(--space-lg);
}

.technology-gallery-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: var(--space-sm);
}

.technology-gallery-item {
	margin: 0;
	background-color: var(--color-white);
	overflow: hidden;
	border: 1px solid rgba(0, 0, 0, 0.08);
}

.technology-gallery-item img {
	width: 100%;
	height: 260px;
	object-fit: cover;
	display: block;
}

.technology-gallery-item figcaption {
	padding: 1rem;
	color: var(--color-charcoal);
	text-align: left;
}

.technology-card-title {
	font-size: 1.05rem;
	font-weight: 600;
	line-height: 1.3;
	margin-bottom: 0.35rem;
}

.technology-card-text {
	font-size: 0.95rem;
	line-height: 1.6;
	margin: 0;
}

/* FACILITIES PAGE */
.facilities {
	padding: calc(var(--header-height, 96px) + var(--space-lg)) 0 var(--space-2xl);
	background-color: var(--color-gray);
	overflow: hidden;
}

.facilities-grid {
	display: block;
}

.facilities-top-nav {
	margin-bottom: var(--space-md);
}

.facilities-back-link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-family: var(--font-body);
	font-size: 1.05rem;
	font-weight: 500;
	letter-spacing: 0.02em;
	padding: var(--space-xs) 0;
	transition: color 0.3s ease;
}

.facilities-back-link::before {
	content: '';
	display: inline-block;
	width: 0.5rem;
	height: 0.5rem;
	border-left: 1.8px solid currentColor;
	border-bottom: 1.8px solid currentColor;
	transform: rotate(45deg);
	margin-right: 0.15rem;
	transition: transform 0.3s ease;
}

.facilities-back-link:hover {
	color: var(--color-red);
}

.facilities-back-link:hover::before {
	transform: translateX(-2px) rotate(45deg);
}

.facilities-content {
	position: relative;
}

.facilities-copy {
	display: grid;
	grid-template-columns: auto 1px 1fr;
	gap: clamp(1.25rem, 3vw, 2.5rem);
	align-items: start;
}

.facilities-divider {
	background-color: var(--color-red);
	height: 100%;
	min-height: 140px;
	opacity: 0.9;
}

.facilities-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.facilities-title {
	font-size: clamp(2.25rem, 3.5vw, 3rem);
	margin: 0;
	white-space: nowrap;
	line-height: 1;
}

.facilities-text {
	margin: 0;
}

.facilities-gallery {
	margin-top: var(--space-lg);
}

.facilities-gallery-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: var(--space-xs);
}

.facilities-gallery-item {
	margin: 0;
	background-color: var(--color-white);
	overflow: hidden;
	border: 1px solid rgba(0, 0, 0, 0.08);
}

.facilities-gallery-item img {
	width: 100%;
	height: 240px;
	object-fit: cover;
	display: block;
}

.facilities-gallery-item figcaption {
	padding: 0.75rem 0.9rem;
	font-size: 0.95rem;
	font-weight: 500;
	color: var(--color-charcoal);
	text-align: center;
}

/* CAREERS PAGE */
.careers {
	padding: calc(var(--header-height, 96px) + var(--space-lg)) 0 var(--space-2xl);
	background-color: var(--color-gray);
	overflow: hidden;
}

.careers-grid {
	display: block;
}

.careers-top-nav {
	margin-bottom: var(--space-md);
}

.careers-back-link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-family: var(--font-body);
	font-size: 1.05rem;
	font-weight: 500;
	letter-spacing: 0.02em;
	padding: var(--space-xs) 0;
	transition: color 0.3s ease;
}

.careers-back-link::before {
	content: '';
	display: inline-block;
	width: 0.5rem;
	height: 0.5rem;
	border-left: 1.8px solid currentColor;
	border-bottom: 1.8px solid currentColor;
	transform: rotate(45deg);
	margin-right: 0.15rem;
	transition: transform 0.3s ease;
}

.careers-back-link:hover {
	color: var(--color-red);
}

.careers-back-link:hover::before {
	transform: translateX(-2px) rotate(45deg);
}

.careers-content {
	position: relative;
}

.careers-copy {
	display: grid;
	grid-template-columns: auto 1px 1fr;
	gap: clamp(1.25rem, 3vw, 2.5rem);
	align-items: start;
}

.careers-divider {
	background-color: var(--color-red);
	height: 100%;
	min-height: 140px;
	opacity: 0.9;
}

.careers-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.careers-title {
	font-size: clamp(2.25rem, 3.5vw, 3rem);
	margin: 0;
	white-space: nowrap;
	line-height: 1;
}

.careers-text {
	margin: 0;
}

.careers-listings {
	margin-top: var(--space-lg);
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--space-sm);
}

.careers-listings-title {
	font-size: 1.35rem;
	font-weight: 600;
	line-height: 1.3;
	margin: 0;
}

.careers-empty-state {
	margin: 0;
	padding: 1rem 1.1rem;
	background-color: var(--color-white);
	border-left: 3px solid var(--color-red);
	font-size: 1rem;
	line-height: 1.7;
}

.job-card {
	background-color: var(--color-white);
	padding: 1.2rem;
	border: 1px solid rgba(0, 0, 0, 0.08);
	display: grid;
	gap: 0.7rem;
}

.job-line {
	font-size: 1rem;
	line-height: 1.6;
	font-weight: 600;
	margin: 0;
}

.job-label {
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.01em;
	color: var(--color-black);
	margin-right: 0.35rem;
}

.job-section-label {
	display: block;
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.01em;
	color: var(--color-black);
	margin-bottom: 0.35rem;
	margin: 0;
}

.job-description,
.job-apply {
	font-size: 1rem;
	line-height: 1.65;
	margin: 0;
}

.job-details {
	margin: -0.1rem 0 0;
	padding-left: 1.1rem;
	display: grid;
	gap: 0.35rem;
}

.job-details li {
	font-size: 1rem;
	line-height: 1.55;
}

.job-apply a {
	color: var(--color-red);
	text-decoration: underline;
}

@media (max-width: 900px) {
	.services {
		padding: calc(var(--header-height, 96px) + var(--space-md)) 0 var(--space-xl);
	}

	.services-top-nav {
		margin-bottom: var(--space-sm);
	}

	.services-back-link {
		font-size: 0.95rem;
	}

	.services-copy {
		grid-template-columns: 1fr;
		gap: var(--space-sm);
	}

	.services-divider {
		height: 1px;
		min-height: 1px;
		width: 100%;
	}

	.services-title {
		white-space: normal;
	}

	.services-gallery-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		
	}

	.technology {
		padding: calc(var(--header-height, 96px) + var(--space-md)) 0 var(--space-xl);
	}

	.technology-top-nav {
		margin-bottom: var(--space-sm);
	}

	.technology-back-link {
		font-size: 0.95rem;
	}

	.technology-copy {
		grid-template-columns: 1fr;
		gap: var(--space-sm);
	}

	.technology-divider {
		height: 1px;
		min-height: 1px;
		width: 100%;
	}

	.technology-title {
		white-space: normal;
	}

	.technology-gallery-grid {
		grid-template-columns: 1fr;
	}

	.technology-gallery-item img {
		height: auto;
		max-height: none;
		object-fit: contain;
	}

	.facilities {
		padding: calc(var(--header-height, 96px) + var(--space-md)) 0 var(--space-xl);
	}

	.facilities-top-nav {
		margin-bottom: var(--space-sm);
	}

	.facilities-back-link {
		font-size: 0.95rem;
	}

	.facilities-copy {
		grid-template-columns: 1fr;
		gap: var(--space-sm);
	}

	.facilities-divider {
		height: 1px;
		min-height: 1px;
		width: 100%;
	}

	.facilities-title {
		white-space: normal;
	}

	.facilities-gallery-grid {
		grid-template-columns: 1fr;
	}

	.careers {
		padding: calc(var(--header-height, 96px) + var(--space-md)) 0 var(--space-xl);
	}

	.careers-top-nav {
		margin-bottom: var(--space-sm);
	}

	.careers-back-link {
		font-size: 0.95rem;
	}

	.careers-copy {
		grid-template-columns: 1fr;
		gap: var(--space-sm);
	}

	.careers-divider {
		height: 1px;
		min-height: 1px;
		width: 100%;
	}

	.careers-title {
		white-space: normal;
	}

	.careers-listings-title {
		font-size: 1.2rem;
	}

	.job-card {
		padding: 1rem;
		gap: 0.6rem;
	}

	.job-line,
	.job-label,
	.job-section-label,
	.job-description,
	.job-apply,
	.job-details li {
		font-size: 0.95rem;
	}
}



/* ========================================
           RESPONSIVE STYLES
        ======================================== */
@media (max-width: 1200px) {
	.hero {
		grid-template-columns: 1fr 1fr;
	}

	.hero-content {
		padding: var(--space-md) var(--space-md);
		padding-left: var(--space-lg);
	}

	.vehicles-grid {
		grid-template-columns: repeat(6, 1fr);
	}

	.vehicle-item:nth-child(1) {
		grid-column: 1 / 4;
		grid-row: 1 / 2;
	}

	.vehicle-item:nth-child(2) {
		grid-column: 4 / 7;
		grid-row: 1 / 2;
	}

	.vehicle-item:nth-child(3) {
		grid-column: 1 / 3;
		grid-row: 2 / 3;
	}

	.vehicle-item:nth-child(4) {
		grid-column: 3 / 5;
		grid-row: 2 / 3;
	}

	.vehicle-item:nth-child(5) {
		grid-column: 5 / 7;
		grid-row: 2 / 3;
	}

	.vehicle-item:nth-child(6) {
		grid-column: 1 / 4;
		grid-row: 3 / 4;
	}

	.vehicle-item:nth-child(7) {
		grid-column: 4 / 7;
		grid-row: 3 / 4;
	}
}

@media (max-width: 1100px) {
	.logo {
		font-size: 1.5rem;
	}

	.nav-main {
		gap: var(--space-md);
	}

	.nav-dropdown-toggle {
		font-size: 0.85rem;
	}

	.nav-main a:not(.nav-cta) {
		font-size: 0.85rem;
	}

	.nav-dropdown-menu {
		padding: 1rem;
	}

	.vehicle-dropdown-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.nav-cta {
		font-size: 0.75rem;
		padding: 0.7rem 1rem;
	}

	.why-choose-us-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: var(--space-sm);
	}

	.why-choose-us-column {
		padding: var(--space-md);
	}

	.craft-stats {
		gap: var(--space-md);
		padding: var(--space-sm) var(--space-md);
		left: var(--space-md);
		right: var(--space-md);
	}
}

@media (max-width: 860px) {
	.promo-page-grid {
		grid-template-columns: 1fr;
	}

	.promo-contact {
		position: static;
	}

	.news-updates-grid {
		grid-template-columns: 1fr;
		max-width: 720px;
		margin: 0 auto;
	}

	.promo-article {
		padding: var(--space-md);
	}

	.nav-main {
		display: none;
	}

	.menu-toggle {
		display: flex;
	}

	.hero {
		grid-template-columns: 1fr;
		height: clamp(420px, 72svh, 560px);
		min-height: 0;
		max-height: none;
	}

	.hero-content {
		padding: calc(var(--space-lg) + 60px) var(--space-md) var(--space-lg);
		order: 2;
	}

	.hero-image {
		order: 1;
		height: 100%;
		clip-path: none;
	}

	.hero-image-overlay {
		display: none;
	}

	.featured-grid,
	.story-grid,
	.about-grid,
	.craft-grid,
	.contact-grid {
		grid-template-columns: 1fr;
	}

	.about-image-wrapper {
		order: 1;
	}

	.about-content {
		order: 2;
	}

	.featured-content {
		padding-right: 0;
		order: 2;
	}

	.featured-image-wrapper {
		order: 1;
	}

	.story-content {
		padding-right: 0;
	}

	.craft-content {
		order: 2;
	}

	.craft-image-wrapper {
		order: 1;
	}

	.craft-stats {
		position: static;
		margin-top: var(--space-md);
		justify-content: center;
	}

	.testimonials-grid {
		grid-template-columns: 1fr;
		gap: var(--space-md);
	}

	.contact-content {
		padding-right: 0;
	}

	.contact-map iframe {
		height: 240px;
	}

	.footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: var(--space-lg);
	}

	.footer-brand {
		grid-column: 1 / -1;
		padding-right: 0;
	}

	.footer-bottom {
		flex-direction: column;
		gap: var(--space-md);
		text-align: center;
	}
}

@media (max-width: 768px) {
	.hero:not(.vehicle-hero) {
		height: calc(100vh - var(--header-height, 96px));
		height: calc(100dvh - var(--header-height, 96px));
		min-height: 0;
	}

	.why-choose-us-grid {
		grid-template-columns: 1fr;
	}

	.why-choose-us-column-image {
		aspect-ratio: 16 / 9;
	}

	.why-choose-us-heading {
		font-size: clamp(2rem, 4vw, 3.5rem);
	}

	.vehicles-grid {
		grid-template-columns: 1fr 1fr;
	}

	.vehicle-item:nth-child(1) {
		grid-column: 1 / -1;
		grid-row: auto;
	}

	.vehicle-item:nth-child(2),
	.vehicle-item:nth-child(3),
	.vehicle-item:nth-child(4),
	.vehicle-item:nth-child(5),
	.vehicle-item:nth-child(6),
	.vehicle-item:nth-child(7) {
		grid-column: auto;
		grid-row: auto;
	}

	.vehicle-item:nth-child(1) .vehicle-image {
		min-height: 300px;
	}

	.vehicle-overlay {
		opacity: 1;
	}

	.story-images {
		grid-template-columns: 1fr;
		gap: var(--space-sm);
	}

	.story-image:first-child {
		margin-top: 0;
	}

	.section-header {
		flex-direction: column;
		align-items: flex-start;
		gap: var(--space-md);
	}

	.testimonials-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.testimonial-card:nth-child(3) {
		grid-column: 1 / -1;
	}

	/* Hero Carousel - Tablet */
	.carousel-arrow {
		width: 40px;
		height: 40px;
	}

	.carousel-arrow-icon {
		font-size: 1.55rem;
	}

	.carousel-prev {
		left: 0;
	}

	.carousel-next {
		right: 0;
	}

	.hero-content-overlay {
		bottom: clamp(60px, 10vh, 84px);
		width: min(94vw, 620px);
	}

	.hero-model-title {
		font-size: clamp(2rem, 5vw, 3.5rem);
	}

	.hero-model-description {
		font-size: clamp(0.9rem, 1.5vw, 1.2rem);
	}

	.hero-actions {
		flex-direction: column;
		gap: var(--space-sm);
		width: 100%;
	}

	.btn-primary, .btn-secondary {
		width: 100%;
		justify-content: center;
		padding: 0.8rem 1.5rem;
		font-size: 0.85rem;
	}
}

@media (max-width: 576px) {
	:root {
		--space-lg: 2rem;
		--space-xl: 3rem;
		--space-2xl: 5rem;
	}

	.news-updates {
		padding: var(--space-lg) 0;
	}

	.news-updates .container {
		padding-left: var(--space-sm);
		padding-right: var(--space-sm);
	}

	.news-update-content {
		padding: 0.95rem;
	}

	.news-update-title {
		font-size: 1.2rem;
	}

	.promo-title {
		font-size: 1.8rem;
	}

	.promo-meta {
		font-size: 0.9rem;
	}

	.services-gallery-grid {
		grid-template-columns: 1fr;
	}

	.why-choose-us-grid {
		grid-template-columns: 1fr;
		gap: var(--space-xs);
	}

	.why-choose-us-column {
		padding: var(--space-sm);
	}

	.why-choose-us-column-image {
		aspect-ratio: 3 / 2;
	}

	.why-choose-us-heading {
		font-size: clamp(1.75rem, 3vw, 2.75rem);
	}

	.hero:not(.vehicle-hero) {
		height: calc(100vh - var(--header-height, 96px));
		height: calc(100dvh - var(--header-height, 96px));
		min-height: 0;
	}

	.vehicles-grid {
		grid-template-columns: 1fr;
	}

	.vehicle-item:nth-child(n) {
		grid-column: 1;
		grid-row: auto;
	}

	.craft-stats {
		flex-direction: column;
		gap: var(--space-md);
	}

	.testimonials-grid {
		grid-template-columns: 1fr;
	}

	.testimonial-card:nth-child(3) {
		grid-column: auto;
	}

	.footer-grid {
		grid-template-columns: 1fr;
	}

	/* Hero Carousel - Mobile */
	.hero-container {
		padding: 0;
		gap: 0;
	}

	.carousel-arrow {
		width: 38px;
		height: 52px;
		display: flex;
		background-color: rgba(24, 24, 24, 0.42);
	}

	.carousel-arrow-icon {
		font-size: 2rem;
		transform: translateY(-2px);
	}

	.carousel-prev {
		left: 6px;
	}

	.carousel-next {
		right: 6px;
	}

	.carousel-dots {
		bottom: var(--space-sm);
		gap: 0.5rem;
	}

	.dot {
		width: 10px;
		height: 10px;
	}

	.dot.active {
		width: 28px;
	}

	.hero-content-overlay {
		bottom: 68px;
		padding: 0 var(--space-md);
		max-width: calc(100% - var(--space-md) * 2);
	}

	.hero-model-title {
		font-size: clamp(1.35rem, 6.4vw, 2.1rem);
		margin-bottom: var(--space-xs);
	}

	.hero-model-description {
		font-size: clamp(0.82rem, 3.2vw, 1rem);
		margin-bottom: var(--space-sm);
	}

	.hero-actions {
		flex-direction: row;
		gap: var(--space-sm);
		flex-wrap: wrap;
		justify-content: center;
	}

	.btn-primary, .btn-secondary {
		width: auto;
		min-width: 140px;
		padding: 0.68rem 1.1rem;
		font-size: 0.75rem;
		letter-spacing: 0.06em;
	}
}

/* Mobile Navigation */
.mobile-nav {
	position: fixed;
	top: 0;
	right: -100%;
	width: 100%;
	max-width: 400px;
	height: 100vh;
	height: 100dvh;
	background-color: var(--color-white);
	z-index: 2000;
	padding: var(--space-xl) var(--space-md);
	transition: right 0.4s ease;
	display: flex;
	flex-direction: column;
	overflow-y: auto;
	overscroll-behavior: contain;
}

.mobile-nav.active {
	right: 0;
}

.mobile-nav-close {
	position: absolute;
	top: var(--space-md);
	right: var(--space-md);
	background: none;
	border: none;
	font-size: 1.5rem;
	cursor: pointer;
	color: var(--color-black);
}

.mobile-nav-links {
	list-style: none;
	margin-top: var(--space-xl);
}

.mobile-nav-links li {
	margin-bottom: var(--space-md);
}

.mobile-nav-links a {
	font-family: var(--font-display);
	font-size: 2rem;
	font-weight: 400;
	color: var(--color-black);
	transition: color 0.3s ease;
}

.mobile-nav-links a:hover {
	color: var(--color-red);
}

.mobile-nav-links a.active {
	color: var(--color-red);
}

.mobile-nav-cta {
	margin-top: var(--space-xl);
	padding-bottom: var(--space-md);
}

.mobile-overlay {
	position: fixed;
	inset: 0;
	background-color: rgba(0, 0, 0, 0.4);
	z-index: 1999;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-overlay.active {
	opacity: 1;
	visibility: visible;
}

@media (max-width: 900px) {
	.vehicle-hero {
		height: calc(100dvh - var(--header-height, 96px) - 72px);
		min-height: 300px;
	}

	.vehicle-subnav-inner {
		min-height: 72px;
		gap: var(--space-sm);
	}

	.vehicle-subnav-brand img {
		max-height: 30px;
	}

	.vehicle-subnav-links {
		gap: 1rem;
	}

	.vehicle-subnav-links a {
		font-size: 0.88rem;
	}

	.vehicle-hero .carousel-arrow {
		width: 40px;
		height: 52px;
	}

	.vehicle-hero .carousel-arrow-icon {
		font-size: 2.1rem;
		transform: translateY(-2px);
	}
}

@media (max-width: 640px) {
	.vehicle-hero {
		height: calc(100dvh - var(--header-height, 96px) - 64px);
		min-height: 280px;
	}

	.vehicle-subnav {
		position: sticky;
		top: var(--header-height, 96px);
		z-index: 500;
		padding-right: 3rem;
	}

	.vehicle-subnav-inner {
		position: relative;
		flex-direction: column;
		align-items: center;
		justify-content: flex-start;
		padding-top: 0.65rem;
		padding-bottom: 0;
		min-height: auto;
		gap: 0;
	}

	.vehicle-subnav-brand {
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: center;
		min-height: 64px;
		padding: 0.35rem 0;
	}

	.vehicle-subnav-brand img {
		max-height: 48px;
	}

	.vehicle-subnav-toggle {
		display: block;
		position: absolute;
		right: 1rem;
		top: calc(0.35rem + 32px);
		transform: translateY(-50%);
		z-index: 501;
	}

	.vehicle-subnav-links {
		width: 100%;
		max-height: 0;
		overflow: hidden;
		flex-direction: column;
		gap: 0;
		justify-content: flex-start;
		padding: 0;
		transition: max-height 0.3s ease;
	}

	.vehicle-subnav-links.mobile-open {
		max-height: 500px;
		padding: var(--space-sm) 0;
		gap: 0;
	}

	.vehicle-subnav-links a {
		width: 100%;
		padding: 0.75rem var(--space-md);
		text-align: center;
		font-size: 0.9rem;
	}

	.vehicle-hero .carousel-arrow {
		width: 36px;
		height: 46px;
	}

	.vehicle-hero .carousel-arrow-icon {
		font-size: 1.8rem;
	}
}

@media (max-width: 420px) {
	.hero:not(.vehicle-hero) {
		height: calc(100vh - var(--header-height, 96px));
		height: calc(100dvh - var(--header-height, 96px));
		min-height: 0;
	}

	.hero-content-overlay {
		bottom: 62px;
		width: min(94vw, 420px);
	}

	.hero:not(.vehicle-hero) .carousel-arrow {
		width: 34px;
		height: 46px;
	}

	.hero:not(.vehicle-hero) .carousel-arrow-icon {
		font-size: 1.7rem;
	}

	.hero:not(.vehicle-hero) .carousel-dots {
		gap: 0.4rem;
	}

	.hero:not(.vehicle-hero) .dot {
		width: 8px;
		height: 8px;
	}

	.hero:not(.vehicle-hero) .dot.active {
		width: 22px;
	}

	.design {
		padding: 0.75rem 0 1rem;
	}

	.design-title {
		margin-top: 0.7rem;
		margin-bottom: 0.32rem;
	}

	.design-main-frame {
		margin-bottom: 0.5rem;
	}

	.design-main-caption-text {
		font-size: 0.86rem;
		line-height: 1.4;
	}

	.vehicle-subnav-brand img {
		max-height: 40px;
	}

	.vehicle-subnav-links a {
		font-size: 0.82rem;
	}

	.vehicle-subnav-links {
		gap: 0.7rem;
	}
}