/* =========================================================
   MILELE MOTORS — Cinematic / GSAP edition
   Dark, editorial, motion-first design system
   ========================================================= */

:root {
  --bg:        #060912;   /* deep navy-black */
  --bg-2:      #0A0F1E;
  --surface:   #0F1530;
  --surface-2: #161F3D;
  --line:      rgba(147,166,245,.12);
  --line-2:    rgba(147,166,245,.22);
  --text:      #EEF1FA;   /* cool off-white */
  --muted:     #9AA0AB;
  --faint:     #6B7280;
  --blue:      #4F69E8;   /* brand royal blue (pops on dark) */
  --blue-soft: #93A6F5;   /* light periwinkle for accents */
  --blue-deep: #2A3578;   /* deep navy from the logo */

  --maxw: 1320px;
  --ease: cubic-bezier(.16,.84,.44,1);
  --ff-display: "Sora", system-ui, sans-serif;
  --ff-body: "Inter", system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

body {
  margin: 0;
  font-family: var(--ff-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1,h2,h3,h4 {
  font-family: var(--ff-display);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -.03em;
  margin: 0 0 .4em;
}
p { margin: 0 0 1em; }

::selection { background: var(--blue); color: #000; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 32px; }

/* Hide default cursor only when custom cursor active (desktop) */
body.has-cursor, body.has-cursor a, body.has-cursor button { cursor: none; }

/* =========================================================
   PRELOADER
   ========================================================= */
.preloader {
  position: fixed; inset: 0; z-index: 9999; background: var(--bg);
  display: grid; place-items: center; overflow: hidden;
}
.preloader__inner { text-align: center; width: min(80vw, 600px); }
.preloader__word {
  font-family: var(--ff-display); font-weight: 800; letter-spacing: -.04em;
  font-size: clamp(2.4rem, 9vw, 6rem); line-height: 1; color: var(--text);
  display: flex; justify-content: center; overflow: hidden;
}
.preloader__word span { display: inline-block; transform: translateY(110%); }
.preloader__bar { height: 2px; width: 100%; background: var(--line); margin-top: 26px; overflow: hidden; }
.preloader__bar i { display: block; height: 100%; width: 0%; background: var(--blue); }
.preloader__pct {
  font-family: var(--ff-display); font-size: .8rem; letter-spacing: .3em; color: var(--muted);
  margin-top: 14px; text-transform: uppercase;
}
.preloader__curtain { position: fixed; inset: 0; z-index: 9998; background: var(--bg-2); transform: translateY(100%); }

/* =========================================================
   CUSTOM CURSOR
   ========================================================= */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0; z-index: 9000; pointer-events: none;
  border-radius: 50%; mix-blend-mode: difference; will-change: transform;
}
.cursor-dot { width: 7px; height: 7px; background: #fff; margin: -3.5px 0 0 -3.5px; }
.cursor-ring {
  width: 42px; height: 42px; margin: -21px 0 0 -21px; border: 1px solid rgba(255,255,255,.6);
  transition: width .3s var(--ease), height .3s var(--ease), margin .3s var(--ease), background .3s, border-color .3s;
  display: grid; place-items: center;
}
.cursor-ring.is-hover { width: 76px; height: 76px; margin: -38px 0 0 -38px; background: rgba(255,255,255,.0); border-color: rgba(255,255,255,.9); }
.cursor-ring.is-view { width: 96px; height: 96px; margin: -48px 0 0 -48px; background: var(--blue); border-color: var(--blue); mix-blend-mode: normal; }
.cursor-ring__label { font-family: var(--ff-display); font-size: .62rem; letter-spacing: .15em; color: #fff; opacity: 0; text-transform: uppercase; }
.cursor-ring.is-view .cursor-ring__label { opacity: 1; }
@media (hover: none) { .cursor-dot, .cursor-ring { display: none; } }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  --bg-btn: var(--blue); --fg: #fff;
  position: relative; display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--ff-display); font-weight: 600; font-size: .9rem;
  padding: 1rem 1.7rem; border-radius: 100px; border: 1px solid transparent;
  background: var(--bg-btn); color: var(--fg); cursor: pointer; overflow: hidden;
  letter-spacing: -.01em; transition: color .4s var(--ease); will-change: transform;
}
.btn span { position: relative; z-index: 2; display: inline-flex; align-items: center; gap: .6rem; }
.btn svg { width: 17px; height: 17px; }
.btn::after { content: ""; position: absolute; inset: 0; z-index: 1; background: var(--text); transform: translateY(101%); transition: transform .45s var(--ease); border-radius: 100px; }
.btn:hover::after { transform: translateY(0); }
.btn:not(.btn--outline):hover { color: var(--blue); }
.btn--outline { --bg-btn: transparent; --fg: var(--text); border-color: var(--line-2); }
.btn--outline::after { background: var(--blue); }
.btn--outline:hover { color: #fff; }
.btn--lg { padding: 1.15rem 2.1rem; font-size: 1rem; }
.btn--block { width: 100%; justify-content: center; }

.link-arrow { display: inline-flex; align-items: center; gap: .55rem; font-family: var(--ff-display); font-weight: 600; color: var(--text); }
.link-arrow svg { width: 16px; height: 16px; transition: transform .35s var(--ease); }
.link-arrow:hover svg { transform: translateX(6px); }
.link-arrow:hover { color: var(--blue-soft); }

/* =========================================================
   SHARED TYPOGRAPHY HELPERS
   ========================================================= */
.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--ff-display); font-size: .72rem; font-weight: 600;
  letter-spacing: .28em; text-transform: uppercase; color: var(--blue-soft);
}
.eyebrow::before { content: ""; width: 30px; height: 1px; background: var(--blue); }

.section { padding: clamp(80px, 1vw, 170px) 0; position: relative; }
.section-head { max-width: 760px; margin-bottom: 70px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(2.2rem, 5.5vw, 4.2rem); margin-top: .35em; font-weight: 800; }
.section-head p { color: var(--muted); font-size: 1.1rem; margin: 0; max-width: 56ch; }
.section-head.center p { margin-inline: auto; }

/* The "mask line" reveal target — visible by default (JS hides then animates) */
.lines, .words, .chars { will-change: transform; }
.line-mask { overflow: hidden; }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 200;
	padding: 0;
	background: transparent;
	transition: background .4s var(--ease), border-color .4s;
	border-bottom: 1px solid transparent;
}

/* Top contact bar */
.top-contact-bar {
	width: 100%;
	height: 58px;
	background: #060912;
	color: #ffffff;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.top-contact-inner {
	width: 100%;
	max-width: 100%;
	padding-inline: clamp(24px, 4vw, 60px);
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 28px;
	white-space: nowrap;
}

.top-contact-inner a {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	color: #ffffff;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	line-height: 1;
	transition: color .25s ease;
}

.top-contact-inner a:hover {
	color: var(--blue-soft);
}

.top-contact-inner svg {
	width: 19px;
	height: 19px;
	flex-shrink: 0;
}

/* Sticky header background */
.site-header.is-stuck {
	background: rgba(10, 11, 13, .72);
	backdrop-filter: saturate(150%) blur(16px);
	border-bottom-color: var(--line);
}

/* Keep top bar same when sticky */
.site-header.is-stuck .top-contact-bar {
	background: #060912;
}

/* Navbar container */
.site-header .container {
	max-width: 100%;
	padding-inline: clamp(24px, 4vw, 60px);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	background: transparent;
}

/* Brand */
.brand {
	display: flex;
	align-items: center;
	gap: .7rem;
	font-family: var(--ff-display);
	font-weight: 700;
}

.brand-mark {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	flex-shrink: 0;
	display: block;
	overflow: hidden;
	box-shadow: 0 0 0 1px var(--line-2);
	transition: transform .5s var(--ease);
}

.brand-mark img,
.brand-mark svg {
	width: 100%;
	height: 100%;
	display: block;
}

.brand:hover .brand-mark {
	transform: rotate(180deg);
}

.brand-wordmark {
	height: 150px;
	width: auto;
	display: block;
	transition: height .4s var(--ease);
}

.site-header.is-stuck .brand-wordmark {
	height: 100px;
}

.brand-name {
	font-size: 1.15rem;
	color: var(--text);
	line-height: 1;
	letter-spacing: -.02em;
}

.brand-name small {
	display: block;
	font-size: .58rem;
	letter-spacing: .26em;
	font-weight: 600;
	color: var(--blue-soft);
	text-transform: uppercase;
	margin-top: 4px;
}

/* Desktop nav */
.nav {
	display: flex;
	align-items: center;
	gap: 4px;
}

.nav a {
	font-family: var(--ff-display);
	font-weight: 500;
	font-size: .92rem;
	color: var(--muted);
	padding: .5rem .9rem;
	border-radius: 100px;
	position: relative;
	transition: color .25s;
	text-decoration: none;
}

.nav a:hover,
.nav a.active {
	color: var(--text);
}

.nav a.active::after {
	content: "";
	position: absolute;
	left: .9rem;
	bottom: .2rem;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--blue);
}

/* Header button */
.header-cta {
	display: flex;
	align-items: center;
	gap: 14px;
}

/* Hamburger */
.hamburger {
	display: none;
	flex-direction: column;
	gap: 5px;
	width: 46px;
	height: 46px;
	border: 1px solid var(--line-2);
	border-radius: 12px;
	background: transparent;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.hamburger span {
	width: 20px;
	height: 1.5px;
	background: var(--text);
	transition: .3s var(--ease);
}

.hamburger.open span:nth-child(1) {
	transform: translateY(6.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
	opacity: 0;
}

.hamburger.open span:nth-child(3) {
	transform: translateY(-6.5px) rotate(-45deg);
}

.quote-form-success {
	background: #0f9d58;
	color: #fff;
	padding: 12px 16px;
	border-radius: 8px;
	margin-bottom: 18px;
	font-weight: 600;
}

.quote-form-error {
	background: #d93025;
	color: #fff;
	padding: 12px 16px;
	border-radius: 8px;
	margin-bottom: 18px;
	font-weight: 600;
}

.quote-popup-overlay {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: 0.3s ease;
}

.quote-popup-overlay.open {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

body.quote-popup-open {
	overflow: hidden;
}

.quote-form-success {
	background: #0f9d58;
	color: #fff;
	padding: 12px 16px;
	border-radius: 8px;
	margin-bottom: 18px;
	font-weight: 600;
}

.quote-form-error {
	background: #d93025;
	color: #fff;
	padding: 12px 16px;
	border-radius: 8px;
	margin-bottom: 18px;
	font-weight: 600;
}

.quote-submit-btn:disabled {
	opacity: 0.7;
	cursor: not-allowed;
}

/* Mobile nav */
.mobile-nav {
	position: fixed;
	inset: 0 0 0 auto;
	width: min(88vw, 420px);
	background: var(--bg-2);
	z-index: 400;
	transform: translateX(110%);
	transition: transform .55s var(--ease);
	padding: 110px 40px 40px;
	display: flex;
	flex-direction: column;
	gap: 4px;
	border-left: 1px solid var(--line);
}

.mobile-nav.open {
	transform: translateX(0);
}

.mobile-nav a {
	font-family: var(--ff-display);
	font-size: clamp(1.1rem, 5vw, 2.2rem);
	font-weight: 500;
	padding: 14px 0;
	border-bottom: 1px solid var(--line);
	color: var(--text);
	text-decoration: none;
}

.mobile-nav a.active {
	color: var(--blue-soft);
}

.mobile-nav .btn {
	margin-top: 26px;
}

.mobile-close {
	position: absolute;
	top: 28px;
	right: 28px;
	background: none;
	border: none;
	color: var(--text);
	font-size: 2.2rem;
	line-height: 1;
	cursor: pointer;
}

/* Scrim */
.scrim {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, .6);
	backdrop-filter: blur(3px);
	opacity: 0;
	visibility: hidden;
	transition: .4s;
	z-index: 350;
}

.scrim.open {
	opacity: 1;
	visibility: visible;
}

/* ================================
   QUOTE POPUP DESIGN
================================ */

.quote-popup-btn {
	border: none;
	cursor: pointer;
}

/* Popup overlay */
.quote-popup-overlay {
	position: fixed;
	inset: 0;
	z-index: 999999;
	background: rgba(0, 0, 0, 0.72);
	backdrop-filter: blur(8px);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 42px;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Show popup */
.quote-popup-overlay.active {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

/* Popup box */
.quote-popup-box {
	width: min(100%, 1255px);
	background: #111732;
	border: 1px solid rgba(88, 113, 210, 0.35);
	border-radius: 22px;
	position: relative;
	box-shadow: 0 35px 90px rgba(0, 0, 0, 0.45);
	overflow: hidden;
	transform: translateY(24px) scale(0.98);
	transition: transform 0.3s ease;
}

.quote-popup-overlay.active .quote-popup-box {
	transform: translateY(0) scale(1);
}

.quote-popup-content {
	padding: 58px 48px 48px;
}

/* Small title */
.quote-popup-title {
	display: flex;
	align-items: center;
	gap: 10px;
	color: #9eb0ff;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	margin-bottom: 8px;
}

.quote-popup-title span {
	display: inline-block;
	width: 30px;
	height: 1px;
	background: #5b76ff;
}

/* Main heading */
.quote-popup-content h2 {
	color: #f4f6ff;
	font-family: var(--ff-display);
	font-size: clamp(2rem, 3vw, 2.6rem);
	line-height: 1;
	margin: 0 0 28px;
	letter-spacing: -0.04em;
}

/* Form */
.quote-popup-form {
	width: 100%;
}

.quote-form-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px 24px;
	align-items: start;
}

.quote-field {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.quote-field label {
	color: #eef2ff;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
}

.quote-field label em {
	color: #6f8cff;
	font-style: normal;
}

/* Inputs */
.quote-field input,
.quote-field select,
.quote-field textarea {
	width: 100%;
	height: 50px;
	border: none;
	outline: none;
	border-radius: 11px;
	background: #070b14;
	color: #ffffff;
	padding: 0 18px;
	font-size: 16px;
	font-family: inherit;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
	transition: box-shadow 0.25s ease, background 0.25s ease;
}

.quote-field input::placeholder,
.quote-field textarea::placeholder {
	color: rgba(185, 193, 215, 0.55);
}

.quote-field input:focus,
.quote-field select:focus,
.quote-field textarea:focus {
	background: #080d19;
	box-shadow: inset 0 0 0 1px #526df0;
}

/* Message field */
.quote-message-field {
	grid-row: span 2;
}

.quote-field textarea {
	height: 150px;
	resize: vertical;
	padding-top: 18px;
}

/* Submit button */
.quote-submit-wrap {
	display: flex;
	justify-content: flex-end;
	margin-top: 24px;
}

.quote-submit-btn {
	border: none;
	outline: none;
	background: #526df0;
	color: #ffffff;
	font-size: 17px;
	font-weight: 800;
	border-radius: 999px;
	min-width: 128px;
	height: 60px;
	padding: 0 34px;
	cursor: pointer;
	transition: transform 0.25s ease, background 0.25s ease;
}

.quote-submit-btn:hover {
	background: #6680ff;
	transform: translateY(-2px);
}

/* Close button */
.quote-popup-close {
	position: absolute;
	top: 52px;
	right: 60px;
	z-index: 5;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	border: 2px solid rgba(255, 255, 255, 0.38);
	background: transparent;
	color: #ffffff;
	font-size: 0;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.25s ease, transform 0.25s ease;
}

.quote-popup-close::before,
.quote-popup-close::after {
	content: "";
	position: absolute;
	width: 17px;
	height: 2px;
	background: #ffffff;
	border-radius: 2px;
}

.quote-popup-close::before {
	transform: rotate(45deg);
}

.quote-popup-close::after {
	transform: rotate(-45deg);
}

.quote-popup-close:hover {
	background: rgba(255, 255, 255, 0.12);
	transform: rotate(90deg);
}

/* Hide scroll when popup open */
body.quote-popup-open {
	overflow: hidden;
}

/* Hide custom cursor/dot inside popup */
body.quote-popup-open .cursor-dot,
body.quote-popup-open .cursor-ring,
body.quote-popup-open .cursor-outline,
body.quote-popup-open .custom-cursor,
body.quote-popup-open .mouse-cursor,
body.quote-popup-open #cursor,
body.quote-popup-open #cursor-dot,
body.quote-popup-open #cursor-outline {
	opacity: 0 !important;
	visibility: hidden !important;
	display: none !important;
}

/* Normal cursor inside popup */
.quote-popup-overlay,
.quote-popup-overlay *,
.quote-popup-box,
.quote-popup-box * {
	cursor: auto !important;
}

.quote-popup-btn,
.quote-popup-close,
.quote-submit-btn,
.quote-field select {
	cursor: pointer !important;
}

/* Responsive */
@media (max-width: 1024px) {
	.quote-popup-overlay {
		padding: 24px;
	}

	.quote-popup-content {
		padding: 46px 32px 36px;
	}

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

	.quote-message-field {
		grid-row: auto;
	}

	.quote-popup-close {
		top: 20px;
		right: 20px;
		left: auto;
	}
}

@media (max-width: 640px) {
	.quote-popup-overlay {
		padding: 14px;
		align-items: flex-end;
	}

	.quote-popup-box {
		max-height: 92vh;
		overflow-y: auto;
		border-radius: 20px;
	}

	.quote-popup-content {
		padding: 42px 20px 24px;
	}

	.quote-popup-title {
		font-size: 11px;
		letter-spacing: 0.2em;
	}

	.quote-popup-content h2 {
		font-size: 2rem;
	}

	.quote-form-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.quote-field input,
	.quote-field select,
	.quote-field textarea {
		height: 50px;
		font-size: 15px;
	}

	.quote-field textarea {
		height: 130px;
	}

	.quote-submit-wrap {
		justify-content: stretch;
	}

	.quote-submit-btn {
		width: 100%;
		height: 56px;
	}

	.quote-popup-close {
		top: 14px;
		right: 14px;
		left: auto;
		width: 36px;
		height: 36px;
	}
}

/* ================================
   RESPONSIVE
================================ */

@media (max-width: 1024px) {
	.top-contact-inner {
		justify-content: center;
		gap: 18px;
		overflow-x: auto;
		scrollbar-width: none;
	}

	.top-contact-inner::-webkit-scrollbar {
		display: none;
	}

	.top-contact-inner a {
		font-size: 13px;
	}

	.nav {
		display: none;
	}

	.header-cta .btn {
		display: none;
	}

	.hamburger {
		display: flex;
	}
}

@media (max-width: 640px) {
	.top-contact-bar {
		height: 46px;
	}

	.top-contact-inner {
		justify-content: flex-start;
		gap: 20px;
		padding-inline: 16px;
	}

	.top-contact-inner a {
		font-size: 12px;
	}

	.top-contact-inner svg {
		width: 16px;
		height: 16px;
	}

	.brand-wordmark {
		height: 96px;
	}

	.site-header.is-stuck .brand-wordmark {
		height: 72px;
	}

	.mobile-nav {
		padding-top: 100px;
	}
}

/* =========================================================
   HERO
   ========================================================= */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; isolation: isolate; padding-bottom: 7vh; }
.hero__media { position: absolute; inset: -10% 0 0 0; z-index: -2; overflow: hidden; }
.hero__media img { width: 100%; height: 120%; object-fit: cover; will-change: transform; }
.hero::after { content:""; position:absolute; inset:0; z-index:-1; background: linear-gradient(180deg, rgba(10,11,13,.55) 0%, rgba(10,11,13,.35) 45%, rgba(10,11,13,.96) 100%); }
.hero__inner { width: 100%; }
/* Full-screen background video hero */
.hero__video { position: absolute; inset: 0; z-index: -2; overflow: hidden; background: #000; pointer-events: none; }
.hero__video iframe { position: absolute; top: 50%; left: 50%; width: 100vw; height: 56.25vw; min-height: 100vh; min-width: 177.78vh; transform: translate(-50%, -50%); border: 0; }
.hero__video video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero--video .hero__inner { display: flex; justify-content: flex-end; }
.hero__actions--end { justify-content: flex-end; }
/* keep buttons readable over the bright/white video */
.hero--video .btn--outline { background: rgba(10,11,13,.42); backdrop-filter: blur(6px); border-color: rgba(255,255,255,.55); }
.hero--video .btn--outline:hover { background: var(--blue); }
.hero--video { align-items: flex-end; }
.hero__inner--center { display: flex; flex-direction: column; align-items: center; gap: 22px; text-align: center; }

/* Compact single-field finder (inside the inventory carousel intro) */
.finder--compact { max-width: 100%; flex-direction: column; align-items: stretch; gap: 12px; padding: 16px; border-radius: 20px; background: var(--surface); }
.finder--compact .finder__field { min-width: 0; }
.finder--compact .finder__btn { width: 100%; justify-content: center; }

/* Make / Model / Year finder */
.finder { display: flex; flex-wrap: wrap; gap: 14px; align-items: flex-end; justify-content: center; width: 100%; max-width: 1080px; background: rgba(10,11,13,.55); backdrop-filter: blur(12px); border: 1px solid var(--line-2); border-radius: 100px; padding: 20px 24px; }
.finder__field { display: flex; flex-direction: column; gap: 7px; text-align: left; flex: 1; min-width: 150px; }
.finder__field label { font-family: var(--ff-display); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); padding-left: 16px; }
.finder__field select { background: var(--bg); border: 1px solid var(--line); border-radius: 100px; padding: 1.05rem 1.3rem; color: var(--text); font-family: var(--ff-body); font-size: 1rem; outline: none; cursor: pointer; width: 100%; }
.finder__field select option { background: var(--surface); color: var(--text); }
.finder__field select:focus { border-color: var(--blue); }
.finder__btn { white-space: nowrap; align-self: flex-end; }
.finder__count { font-weight: 700; opacity: .9; }
@media (max-width: 720px) { .finder { border-radius: 22px; } .finder__field { min-width: 45%; } .finder__btn { width: 100%; margin-top: 4px; } }
.hero__eyebrow { margin-bottom: 28px; }
.hero h1 { font-size: clamp(3rem, 8.2vw, 7.2rem); font-weight: 800; letter-spacing: -.035em; line-height: .98; margin: 0; text-transform: uppercase; }
/* Stacked (column-wise) headline — one word per line, sized to fit 4 lines */
.hero h1.hero__stack { font-size: clamp(2.4rem, 6.4vw, 5rem); line-height: .92; }
.hero h1 .blue { color: var(--blue); }
.hero h1 .outline { -webkit-text-stroke: 1.5px var(--text); color: transparent; }
.hero__row { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; flex-wrap: wrap; margin-top: 40px; }
.hero__lead { max-width: 46ch; color: var(--muted); font-size: 1.18rem; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__scroll { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); font-family: var(--ff-display); font-size: .68rem; letter-spacing: .25em; text-transform: uppercase; color: var(--muted); display: flex; flex-direction: column; align-items: center; gap: 10px; }
.hero__scroll i { width: 1px; height: 46px; background: linear-gradient(var(--blue), transparent); display: block; }

/* =========================================================
   MARQUEE
   ========================================================= */
.marquee { border-block: 1px solid var(--line); padding: 26px 0; overflow: hidden; background: var(--bg-2); }
.marquee__track { display: flex; gap: 60px; width: max-content; will-change: transform; }
.marquee__track span { font-family: var(--ff-display); font-weight: 800; font-size: clamp(1.8rem, 5vw, 3.4rem); letter-spacing: -.03em; text-transform: uppercase; color: var(--text); display: inline-flex; align-items: center; gap: 60px; white-space: nowrap; }
.marquee__track span::after { content: "✱"; color: var(--blue); font-size: .7em; }
.marquee--muted .marquee__track span { color: transparent; -webkit-text-stroke: 1px var(--line-2); }

/* =========================================================
   PAGE HERO (interior)
   ========================================================= */
.page-hero { position: relative; padding: clamp(160px, 26vh, 300px) 0 clamp(60px,9vw,110px); overflow: hidden; isolation: isolate; }
.page-hero__media { position: absolute; inset: -15% 0 0 0; z-index: -2; }
.page-hero__media img { width: 100%; height: 130%; object-fit: cover; will-change: transform; }
.page-hero::after { content:""; position:absolute; inset:0; z-index:-1; background: linear-gradient(180deg, rgba(10,11,13,.6), rgba(10,11,13,.92)); }
.page-hero h1 { font-size: clamp(2.8rem, 9vw, 7rem); font-weight: 800; text-transform: uppercase; letter-spacing: -.04em; line-height: .95; }
.page-hero p { color: var(--muted); font-size: 1.15rem; max-width: 54ch; margin: 0; }
.breadcrumb { display: flex; margin-top: 40px; gap: .5rem; align-items: center; font-family: var(--ff-display); font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--faint); margin-bottom: 1.6rem; }
.breadcrumb a:hover { color: var(--blue-soft); }

/* =========================================================
   STATS
   ========================================================= */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
}

.stat {
  background: var(--bg);
  padding: 44px 34px;
}

.stat strong {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 5vw, 4rem);
  display: block;
  line-height: 1;
  letter-spacing: -0.04em;
}

.dataC {
  font-size: 3rem !important;
}

/* First count number larger */
.bigCount {
  font-size: 3rem !important;
}

.stat strong .plus,
.stat strong .pct {
  color: var(--blue);
}

.stat span {
  color: var(--muted);
  font-size: 0.92rem;
  margin-top: 10px;
  display: block;
}

/* Keep + and % inline with number */
.stat strong span {
  display: inline-block;
}

@media (max-width: 992px) {
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .dataC {
    font-size: 3rem !important;
  }

  .bigCount {
    font-size: 3rem !important;
  }
}

@media (max-width: 576px) {
	.breadcrumb{
		margin-top: 60px;
	}
	
  .stats {
    grid-template-columns: 1fr;
  }

  .stat {
    padding: 34px 24px;
  }

  .dataC {
    font-size: 4rem !important;
  }

  .bigCount {
    font-size: 5rem !important;
  }
}

/* =========================================================
   BENEFIT / FEATURE CARDS
   ========================================================= */
.cards-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 15px; }
.bcard { background: var(--surface); border: 1px solid var(--line); border-radius: 22px; padding: 42px 36px; position: relative; overflow: hidden; transition: border-color .4s, transform .5s var(--ease); }
.bcard img{
    object-fit: cover;
	object-position: top;
    width: 100%;
    height: 420px;
    translate: none;
    rotate: none;
    scale: none;
    transform: translate(0px, 0px);
}
.bcard::before { content:""; position:absolute; inset:0; background: radial-gradient(120% 80% at 50% 0%, rgba(200,162,74,.12), transparent 60%); opacity: 0; transition: opacity .5s; }
.bcard:hover { border-color: var(--line-2); transform: translateY(-6px); }
.bcard:hover::before { opacity: 1; }
.bcard__num { font-family: var(--ff-display); font-size: .8rem; letter-spacing: .2em; color: var(--blue); margin-bottom: 30px; }
.bcard__icon { width: 60px; height: 60px; border-radius: 16px; display: grid; place-items: center; background: rgba(200,162,74,.1); color: var(--blue-soft); margin-bottom: 24px; }
.bcard__icon svg { width: 28px; height: 28px; }
.bcard h3 { font-size: 1.4rem; }
.bcard p { color: var(--muted); margin: 0; }



/* =========================================================
   HORIZONTAL PINNED CATEGORIES
   ========================================================= */
.h-scroll { position: relative; }
.h-scroll__track { display: flex; gap: 28px; padding: 0 32px; will-change: transform; }
.h-pan { display: flex; align-items: center; min-height: 100svh; }
.vcard { position: relative; flex: 0 0 clamp(280px, 38vw, 460px); height: 500px; border-radius: 22px; overflow: hidden; background: var(--surface); }
.vcard img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.vcard::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(6,9,18,.35) 0%, rgba(6,9,18,.5) 45%, rgba(6,9,18,.9) 100%); }
.vcard__body { position: absolute; inset: auto 0 0 0; z-index: 2; padding: 34px; }
.vcard__index { position: absolute; top: 28px; left: 32px; z-index: 2; font-family: var(--ff-display); font-size: .8rem; letter-spacing: .15em; color: rgba(255,255,255,.7); }
.vcard__tag { font-family: var(--ff-display); font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: var(--blue-soft); }
.vcard h3 { font-size: clamp(1.5rem, 2.5vw, 2.1rem); margin: .35rem 0 .3rem; }
.vcard p { color: rgba(236,233,225,.78); font-size: .94rem; margin: 0 0 1rem; max-width: 36ch; }
.vcard:hover img { transform: scale(1.06); }
.h-scroll__progress { height: 2px; background: var(--line); margin: 40px 32px 0; border-radius: 2px; overflow: hidden; }
.h-scroll__progress i { display: block; height: 100%; width: 0; background: var(--blue); }

/* =========================================================
   INVENTORY GRID (inventory page)
   ========================================================= */
.searchbar { background: var(--surface); border: 1px solid var(--line); border-radius: 22px; padding: 20px; display: grid; grid-template-columns: 1.7fr 1fr 1fr auto; gap: 16px; align-items: end; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-family: var(--ff-display); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--faint); padding-left: .4rem; }
.field .control { display: flex; align-items: center; gap: .6rem; background: var(--bg); border: 1px solid var(--line); border-radius: 100px; padding: .8rem 1.1rem; transition: border-color .25s; }
.field .control:focus-within { border-color: var(--blue); }
.field .control svg { width: 18px; height: 18px; color: var(--muted); flex-shrink: 0; }
.field input, .field select { border: none; background: transparent; color: var(--text); font-family: var(--ff-body); font-size: .95rem; width: 100%; outline: none; }
.field select option { background: var(--surface); color: var(--text); }
.ml-search { display:flex; gap:10px; align-items:center; background:rgba(10,11,13,.55);
  border:1px solid var(--line-2); border-radius:100px; padding:8px 8px 8px 22px; min-width:min(440px,92vw); }
.ml-search input { flex:1; background:transparent; border:0; color:var(--text); font:1rem var(--ff-body); outline:none; }
.ml-search input::placeholder { color:var(--muted); }
@media (max-width:640px){ .ml-search{ width:100%; } }

.filter-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 38px; }
.pill { font-family: var(--ff-display); font-weight: 500; font-size: .85rem; padding: .6rem 1.2rem; border-radius: 100px; border: 1px solid var(--line-2); background: transparent; color: var(--muted); cursor: pointer; transition: .3s var(--ease); }
.pill:hover { color: var(--text); border-color: var(--text); }
.pill.active { background: var(--blue); color: #fff; border-color: var(--blue); }
.inv-count { color: var(--faint); font-family: var(--ff-display); font-size: .85rem; letter-spacing: .05em; margin-bottom: 22px; }

.inv-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.icard { background: var(--surface); border: 1px solid var(--line); border-radius: 20px; overflow: hidden; display: flex; flex-direction: column; transition: border-color .4s, transform .5s var(--ease); }
.icard:hover { border-color: var(--line-2); transform: translateY(-5px); }
.icard__media { position: relative; aspect-ratio: auto; height: 240px; overflow: hidden; }
.icard__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.icard:hover .icard__media img { transform: scale(1.07); }
.icard__badge { position: absolute; top: 14px; right: 14px; background: rgba(10,11,13,.7); backdrop-filter: blur(6px); border: 1px solid var(--line); color: var(--text); font-family: var(--ff-display); font-weight: 600; font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; padding: .42rem .8rem; border-radius: 100px; }
.icard__body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.icard__body h3 { font-size: 1.2rem; margin-bottom: .2rem; }
.icard__sub { color: var(--muted); font-size: .85rem; margin-bottom: 1rem; }
.icard__specs { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 0; padding-top: 1rem; border-top: 1px solid var(--line); }
.icard__specs span { display: flex; align-items: center; gap: .4rem; font-size: .8rem; color: var(--muted); }
.icard__specs svg { width: 15px; height: 15px; color: var(--blue-soft); }
.icard__foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.icard__price { font-family: var(--ff-display); font-weight: 700; }
.icard__price small { display: block; font-weight: 500; font-size: .66rem; color: var(--faint); letter-spacing: .08em; text-transform: uppercase; }
.inv-empty { display: none; text-align: center; padding: 70px 0; color: var(--muted); }
.pagination { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 56px; }
.page-link { font-family: var(--ff-display); font-weight: 600; font-size: .9rem; padding: .6rem 1rem; min-width: 46px; text-align: center; border: 1px solid var(--line-2); border-radius: 100px; color: var(--muted); transition: color .25s var(--ease), border-color .25s var(--ease), background .25s; }
.page-link:hover { color: var(--text); border-color: var(--text); }
.page-link.current { background: var(--blue); color: #fff; border-color: var(--blue); }
.inventory-searchbar,
#inv-form {
	grid-template-columns: 2fr 1fr 190px !important;
	align-items: end;
}

.inventory-search-btn,
#inv-form .inventory-search-btn {
	width: 190px !important;
	min-width: 190px;
	max-width: 190px;
	justify-content: center;
	padding: 1rem 1.2rem !important;
}

.inventory-search-btn span,
#inv-form .inventory-search-btn span {
	justify-content: center;
}

.inventory-empty-state {
	display: block !important;
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: 22px;
	padding: clamp(34px, 5vw, 70px) 24px !important;
	text-align: center;
	min-height: 260px;
}

.inventory-empty-state h3 {
	font-size: clamp(1.5rem, 3vw, 2.2rem);
	margin-bottom: 12px;
	color: var(--text);
}

.inventory-empty-state p {
	color: var(--muted);
	margin-inline: auto;
	max-width: 680px;
}

.inventory-empty-filters {
	color: var(--blue-soft) !important;
}

.inventory-empty-filters strong {
	color: var(--text);
	font-weight: 700;
}

@media (max-width: 1024px) {
	.inventory-searchbar,
	#inv-form {
		grid-template-columns: 1fr 1fr !important;
	}

	.inventory-search-btn,
	#inv-form .inventory-search-btn {
		width: 100% !important;
		min-width: 0;
		max-width: 100%;
		grid-column: 1 / -1;
	}
}

@media (max-width: 640px) {
	.inventory-searchbar,
	#inv-form {
		grid-template-columns: 1fr !important;
	}

	.inventory-search-btn,
	#inv-form .inventory-search-btn {
		width: 100% !important;
		min-width: 0;
		max-width: 100%;
	}

	.inventory-empty-state .hero__actions {
		flex-direction: column;
		align-items: stretch;
	}

	.inventory-empty-state .btn {
		width: 100%;
		justify-content: center;
	}
}

/* =========================================================
   SPLIT (about / image+text)
   ========================================================= */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.split--wide { grid-template-columns: 1.1fr .9fr; }
.split__media { position: relative; border-radius: 22px; overflow: hidden; }
.split__media img { width: 100%; height: 100%; object-fit: cover; will-change: transform; }
.split__media .float-card { position: absolute; bottom: 24px; left: 24px; background: rgba(10,11,13,.7); backdrop-filter: blur(10px); border: 1px solid var(--line); padding: 22px 26px; border-radius: 16px; max-width: 230px; }
.split__media .float-card strong { font-family: var(--ff-display); font-size: 2rem; color: var(--blue-soft); display: block; line-height: 1; }
.split__media .float-card span { font-size: .85rem; color: var(--muted); }
.split h2 { font-size: clamp(2rem, 4.4vw, 3.2rem); font-weight: 800; }
.split p { color: var(--muted); font-size: 1.06rem; }
.tick-list { list-style: none; padding: 0; margin: 0 0 34px; display: grid; gap: 16px; }
.tick-list li { display: flex; gap: 14px; align-items: flex-start; }
.tick-list svg { width: 22px; height: 22px; color: var(--blue); flex-shrink: 0; margin-top: 3px; }
.tick-list span { color: var(--muted); }
.tick-list strong { color: var(--text); }

/* =========================================================
   SERVICES
   ========================================================= */
.svc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.svc { display: flex; gap: 18px; padding: 30px; border: 1px solid var(--line); border-radius: 20px; background: var(--surface); transition: border-color .4s, transform .5s var(--ease); }
.svc:hover { border-color: var(--line-2); transform: translateY(-5px); }
.svc__icon { width: 50px; height: 50px; border-radius: 13px; background: rgba(200,162,74,.1); display: grid; place-items: center; color: var(--blue-soft); flex-shrink: 0; }
.svc__icon svg { width: 24px; height: 24px; }
.svc h3 { font-size: 1.12rem; margin-bottom: .3rem; }
.svc p { color: var(--muted); font-size: .92rem; margin: 0; }

/* =========================================================
   PROCESS STEPS
   ========================================================= */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 26px; }
.step { padding-top: 28px; border-top: 1px solid var(--line-2); }
.step b { font-family: var(--ff-display); font-weight: 800; font-size: 1rem; color: var(--blue); }
.step h3 { font-size: 1.18rem; margin: .6rem 0 .3rem; }
.step p { color: var(--muted); font-size: .92rem; margin: 0; }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.tcard { background: var(--surface); border: 1px solid var(--line); border-radius: 20px; padding: 38px 34px; display: flex; flex-direction: column; gap: 20px; height: 100%; }
.tcard .stars { color: var(--blue); letter-spacing: 3px; }
.tcard blockquote { margin: 0; font-size: 1.12rem; line-height: 1.55; color: var(--text); }
.tcard__person { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.tcard__person img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.tcard__person strong { display: block; font-family: var(--ff-display); font-size: .96rem; }
.tcard__person span { font-size: .83rem; color: var(--muted); }

/* =========================================================
   CTA BAND
   ========================================================= */
.cta { position: relative; overflow: hidden; border-radius: 28px; border: 1px solid var(--line); padding: clamp(56px,8vw,110px); text-align: center; isolation: isolate; }
.cta__media { position: absolute; inset: 0; z-index: -2; }
.cta__media img { width: 100%; height: 100%; object-fit: cover; will-change: transform; }
.cta::after { content:""; position:absolute; inset:0; z-index:-1; background: linear-gradient(180deg, rgba(10,11,13,.78), rgba(10,11,13,.88)); }
.cta h2 { font-size: clamp(2.2rem, 6vw, 5rem); font-weight: 800; text-transform: uppercase; letter-spacing: -.04em; }
.cta p { color: var(--muted); max-width: 52ch; margin: 0 auto 2rem; font-size: 1.12rem; }
.cta .hero__actions { justify-content: center; }

/* =========================================================
   CONTACT
   ========================================================= */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: start; }
.form-card { background: var(--surface); border: 1px solid var(--line); border-radius: 24px; padding: clamp(30px,4vw,48px); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
/* Vehicle inquiry 3-column grid (message spans the last column, 2 rows) */
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px 22px; }
.quote-grid .form-group { margin-bottom: 0; }
.quote-msg { grid-column: 3; grid-row: 3 / span 2; }
.quote-msg textarea { height: 100%; min-height: 150px; }
@media (max-width: 820px) { .quote-grid { grid-template-columns: 1fr 1fr; } .quote-msg { grid-column: auto; grid-row: auto; } }
@media (max-width: 560px) { .quote-grid { grid-template-columns: 1fr; } }
.form-group { margin-bottom: 20px; display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-family: var(--ff-display); font-weight: 600; font-size: .82rem; }
.form-group label .req { color: var(--blue); }
.form-group input, .form-group textarea, .form-group select { font-family: var(--ff-body); font-size: .98rem; padding: .9rem 1.1rem; border: 1px solid var(--line); border-radius: 13px; background: var(--bg); color: var(--text); width: 100%; resize: vertical; transition: border-color .25s, box-shadow .25s; }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--faint); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(200,162,74,.12); }
.form-group select option { background: var(--surface); }
.form-note { font-size: .8rem; color: var(--faint); }
.form-success { display: none; background: rgba(36,120,80,.18); border: 1px solid rgba(80,200,140,.35); color: #b9efce; border-radius: 13px; padding: 16px 18px; margin-bottom: 20px; font-size: .92rem; }
.form-success.show { display: block; }

.contact-info { display: grid; gap: 16px; }
.info-item { display: flex; gap: 16px; padding: 24px; border: 1px solid var(--line); border-radius: 18px; background: var(--surface); transition: border-color .35s; }
.info-item:hover { border-color: var(--line-2); }
.info-item__icon { width: 46px; height: 46px; border-radius: 12px; background: rgba(200,162,74,.1); display: grid; place-items: center; color: var(--blue-soft); flex-shrink: 0; }
.info-item__icon svg { width: 22px; height: 22px; }
.info-item strong { font-family: var(--ff-display); font-size: .95rem; display: block; margin-bottom: 3px; }
.info-item span, .info-item a { color: var(--muted); font-size: .94rem; }
.info-item a:hover { color: var(--blue-soft); }
.map-wrap { margin-top: 56px; border-radius: 22px; overflow: hidden; border: 1px solid var(--line); }
.map-wrap iframe { width: 100%; height: 440px; border: 0; display: block; filter: grayscale(1) invert(.9) contrast(.85); }

/* =========================================================
   BLOG
   ========================================================= */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.post { background: var(--surface); border: 1px solid var(--line); border-radius: 20px; overflow: hidden; display: flex; flex-direction: column; transition: border-color .4s, transform .5s var(--ease); }
.post:hover { border-color: var(--line-2); transform: translateY(-5px); }
.post__media { aspect-ratio: 16/10; overflow: hidden; }
.post__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.post:hover .post__media img { transform: scale(1.06); }
.post__body { padding: 28px; display: flex; flex-direction: column; flex: 1; }
.post__meta { display: flex; gap: 14px; font-family: var(--ff-display); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--faint); margin-bottom: .8rem; }
.post__meta .cat { color: var(--blue-soft); }
.post__body h3 { font-size: 1.3rem; margin-bottom: .5rem; }
.post__body p { color: var(--muted); font-size: .94rem; }
.post__body .link-arrow { margin-top: auto; }
.post--feature { grid-column: span 2; flex-direction: row; }
.post--feature .post__media { flex: 1.1; aspect-ratio: auto; }
.post--feature .post__body { flex: 1; justify-content: center; }
.post--feature .post__body h3 { font-size: 1.9rem; }

/* =========================================================
   ROLES (careers)
   ========================================================= */
.role { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 18px; padding: 28px 32px; border: 1px solid var(--line); border-radius: 18px; background: var(--surface); transition: border-color .35s, transform .5s var(--ease); }
.role:hover { border-color: var(--line-2); transform: translateY(-3px); }
.role__l { display: flex; gap: 18px; align-items: center; }
.role__icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(200,162,74,.1); display: grid; place-items: center; color: var(--blue-soft); flex-shrink: 0; }
.role__icon svg { width: 22px; height: 22px; }
.role strong { font-family: var(--ff-display); font-size: 1.15rem; display: block; }
.role span { color: var(--muted); font-size: .88rem; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { border-top: 1px solid var(--line); padding: 90px 0 36px; background: var(--bg-2); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 48px; }
.site-footer p { color: var(--muted); font-size: .95rem; max-width: 34ch; }
.foot-col h4 { font-family: var(--ff-display); font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; color: var(--faint); margin-bottom: 1.3rem; }
.foot-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.foot-col a { color: var(--muted); }
.foot-col a:hover { color: var(--blue-soft); }
.foot-contact li { display: flex; gap: 11px; margin-bottom: 12px; font-size: .94rem; color: var(--muted); }
.foot-contact svg { width: 18px; height: 18px; color: var(--blue-soft); flex-shrink: 0; margin-top: 3px; }
.socials { display: flex; gap: 12px; margin-top: 22px; }
.socials a { width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--line-2); display: grid; place-items: center; color: var(--text); transition: .35s var(--ease); }
.socials a:hover { background: var(--blue); color: #0b0b0b; border-color: var(--blue); transform: translateY(-3px); }
.socials svg { width: 18px; height: 18px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; margin-top: 64px; padding-top: 28px; border-top: 1px solid var(--line); font-size: .85rem; color: var(--faint); }
.footer-bottom a:hover { color: var(--text); }
.news-form { display: flex; gap: 8px; margin-top: 16px; }
.news-form input { flex: 1; background: var(--bg); border: 1px solid var(--line-2); border-radius: 100px; padding: .8rem 1.1rem; color: var(--text); font-family: var(--ff-body); }
.news-form input::placeholder { color: var(--faint); }
.news-form input:focus { outline: none; border-color: var(--blue); }
.news-form .btn { padding: .8rem 1.1rem; }
.company{margin-top: 30px;}

/* Footer huge wordmark */
.footer-word { font-family: var(--ff-display); font-weight: 800; font-size: clamp(4rem, 20vw, 17rem); letter-spacing: -.05em; line-height: .8; text-align: center; color: transparent; -webkit-text-stroke: 1px rgba(255, 255, 255, .30) !important; margin-top: 70px; user-select: none; overflow: hidden; }

/* Floating WhatsApp and Telegram Icons */
.floating-contact-icons {
	position: fixed;
	right: 22px;
	bottom: 28px;
	z-index: 999999 !important;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

/* Floating Contact Icons */
.floating-contact-icons {
	position: fixed;
	right: 40px;
	bottom: 60px;
	display: flex;
	flex-direction: column;
	gap: 18px;
	z-index: 2 !important;
	pointer-events: auto;
}

/* Icon buttons */
.floating-contact-icons a {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	cursor: pointer;
	transition: transform 0.25s ease;
	position: relative;
	z-index: 2147483647 !important;
	background: transparent;
	box-shadow: none;
	border: none;
}

/* Hover effect */
.floating-contact-icons a:hover {
	transform: translateY(-4px);
}

/* Icon images */
.floating-contact-icons img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
	pointer-events: none;
}

/* Keep icons above preloader / loader */
.preloader,
#preloader,
.loader,
.page-loader,
.elementor-loader,
.elementor-preloader {
	z-index: 999999 !important;
}

/* Tablet responsive */
@media (max-width: 1024px) {
	.floating-contact-icons {
		right: 20px;
		bottom: 80px;
		gap: 16px;
	}

	.floating-contact-icons a {
		width: 76px;
		height: 76px;
	}
}

/* Mobile responsive */
@media (max-width: 768px) {
	.floating-contact-icons {
		right: 16px;
		bottom: 70px;
		gap: 14px;
	}

	.floating-contact-icons a {
		width: 64px;
		height: 64px;
	}
}

/* Small mobile responsive */
@media (max-width: 480px) {
	.floating-contact-icons {
		right: 14px;
		bottom: 60px;
		gap: 12px;
	}

	.floating-contact-icons a {
		width: 58px;
		height: 58px;
	}
}

/* Keep custom cursor/dot behind floating icons */
.cursor,
.cursor-dot,
.cursor-outline,
.custom-cursor,
.mouse-cursor,
.dot-cursor,
#cursor,
#cursor-dot,
#cursor-outline {
	z-index: 9999 !important;
	pointer-events: none !important;
}

/* Make sure floating icons stay clickable */
.floating-contact-icons,
.floating-contact-icons * {
	pointer-events: auto;
}

/* Mobile responsive */
@media (max-width: 576px) {
	.floating-contact-icons {
		right: 16px;
		bottom: 18px;
		gap: 10px;
	}

	.floating-contact-icons a {
		width: 48px;
		height: 48px;
	}

	.floating-contact-icons svg {
		width: 25px;
		height: 25px;
	}
}
/* =========================================================
   FOOTER BIG MILELE WORD - LIGHT ONLY, NO LINES
   ========================================================= */

.footer-word {
  position: relative;
  z-index: 1;
  margin-top: 76px;
  font-family: var(--ff-display);
  font-size: clamp(5rem, 17vw, 15rem);
  font-weight: 900;
  line-height: .78;
  text-align: center;
  letter-spacing: .02em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, .10);
  text-stroke: 1px rgba(255, 255, 255, .10);
  opacity: 1;
  overflow: hidden;
  user-select: none;
  pointer-events: none;
}

/* Soft moving light only */
.footer-word::before {
  content: "MILELE";
  position: absolute;
  inset: 0;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, .18);
  text-stroke: 1px rgba(255, 255, 255, .18);
  background:
    linear-gradient(
      105deg,
      transparent 0%,
      transparent 36%,
      rgba(255, 255, 255, .06) 43%,
      rgba(255, 255, 255, .48) 50%,
      rgba(255, 255, 255, .08) 57%,
      transparent 66%,
      transparent 100%
    );
  background-size: 230% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: footerWordShine 4.8s ease-in-out infinite;
}

/* Remove all extra line effects */
.footer-word::after {
  display: none !important;
  content: none !important;
}

.site-footer::after {
  display: none !important;
  content: none !important;
}

@keyframes footerWordShine {
  0% {
    background-position: 170% 0;
    opacity: .35;
  }

  45% {
    background-position: -80% 0;
    opacity: 1;
  }

  100% {
    background-position: -80% 0;
    opacity: .35;
  }
}

@media (max-width: 768px) {
  .footer-word {
    margin-top: 48px;
    font-size: clamp(4rem, 23vw, 8rem);
  }
}

@media (max-width: 480px) {
  .footer-word {
    font-size: clamp(3.6rem, 24vw, 6.5rem);
  }
}


/* =========================================================
   SCRUB-TEXT STATEMENT
   ========================================================= */
.statement { padding: clamp(90px, 1vw, 200px) 0; }
.statement p {
  font-family: var(--ff-display); font-weight: 700; letter-spacing: -.02em;
  font-size: clamp(1.8rem, 4.6vw, 3.6rem); line-height: 1.18; margin: 0; max-width: 20ch;
}
.statement p .blue { color: var(--blue); }
.statement .eyebrow { margin-bottom: 36px; }

/* =========================================================
   PINNED CAR SHOWCASE
   ========================================================= */
.showcase { position: relative; min-height: 100svh; overflow: hidden; display: flex; align-items: flex-end; isolation: isolate; }
.showcase__img { position: absolute; inset: 0; z-index: -2; }
.showcase__img img { width: 100%; height: 100%; object-fit: cover; will-change: transform, filter; }
.showcase::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(6,9,18,.5) 0%, rgba(6,9,18,.2) 40%, rgba(6,9,18,.92) 100%); }
.showcase__inner { width: 100%; padding-bottom: 9vh; display: grid; grid-template-columns: 1.2fr .8fr; gap: 40px; align-items: end; }
.showcase__tag { font-family: var(--ff-display); font-size: .72rem; letter-spacing: .26em; text-transform: uppercase; color: var(--blue-soft); }
.showcase__title { font-family: var(--ff-display); font-weight: 800; text-transform: uppercase; letter-spacing: -.04em; line-height: .92; font-size: clamp(2.6rem, 7vw, 6rem); margin: .2em 0 0; }
.showcase__specs { display: flex; flex-direction: column; gap: 14px; }
.spec-chip { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 18px 24px; border: 1px solid var(--line-2); border-radius: 16px; background: rgba(15,21,48,.55); backdrop-filter: blur(10px); }
.spec-chip span { color: var(--muted); font-size: .82rem; letter-spacing: .04em; }
.spec-chip strong { font-family: var(--ff-display); font-size: 1.15rem; }
.showcase__scroll { position: absolute; top: 50%; right: 32px; transform: rotate(90deg); transform-origin: right; font-family: var(--ff-display); font-size: .66rem; letter-spacing: .28em; text-transform: uppercase; color: var(--faint); }

/* thin draw-in divider line */
.divider { height: 1px; background: var(--line-2); transform: scaleX(0); margin: 0; }

@media (max-width: 760px){
  .showcase { align-items: center; min-height: 86svh; }
  .showcase__inner { grid-template-columns: 1fr; gap: 28px; padding-bottom: 6vh; margin-left:10px; margin-right:10px; }
  .showcase__scroll { display: none; }
}

/* =========================================================
   LISTING / JOB DETAIL PAGES (WordPress)
   ========================================================= */
.spec-table { display: grid; border: 1px solid var(--line); border-radius: 16px; overflow: hidden; margin: 18px 0 26px; }
.spec-row { display: flex; justify-content: space-between; gap: 16px; padding: 15px 20px; border-bottom: 1px solid var(--line); }
.spec-row:last-child { border-bottom: 0; }
.spec-row span { color: var(--muted); font-size: .9rem; }
.spec-row strong { font-family: var(--ff-display); }
.price-block { margin: 4px 0 6px; }
.post-body h3 { font-size: 1.25rem; margin: 1.4em 0 .5em; }
.post-body ul { margin: 0 0 1.2em; padding-left: 1.2em; }
.post-body li { margin-bottom: .45em; color: var(--muted); }
.post-body a { color: var(--blue-soft); }
.icard__media { display: block; }
.gallery-thumbs { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 12px; }
.gthumb { width: 88px; height: 62px; border-radius: 10px; overflow: hidden; border: 1px solid var(--line); background: var(--surface); cursor: pointer; padding: 0; }
.gthumb img { width: 100%; height: 100%; object-fit: cover; }
.gthumb:hover { border-color: var(--blue); }
.feature-list { list-style: none; padding: 0; margin: 14px 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.feature-list li { display: flex; gap: 10px; align-items: flex-start; color: var(--muted); }
.feature-list svg { width: 20px; height: 20px; color: var(--blue); flex-shrink: 0; margin-top: 2px; }
@media (max-width: 640px) { .feature-list { grid-template-columns: 1fr; } }

/* ---- Single listing: main image + horizontal thumbnail carousel + spec grid ---- */
.lc-top { padding-top: clamp(110px, 14vh, 200px); padding-bottom: 0; }
.lc-stage { position: relative; border-radius: 18px; overflow: hidden; aspect-ratio: 16/9; background: var(--surface); }
.lc-stage img { width: 100%; height: 100%; object-fit: cover; transition: opacity .35s var(--ease); }
.lc-strip { display: flex; gap: 12px; overflow-x: auto; padding: 14px 2px 6px; scroll-snap-type: x proximity; scrollbar-width: thin; scrollbar-color: var(--line-2) transparent; }
.lc-strip::-webkit-scrollbar { height: 6px; }
.lc-strip::-webkit-scrollbar-thumb { background: var(--line-2); border-radius: 3px; }
.lc-thumb { flex: 0 0 clamp(120px, 15vw, 188px); height: clamp(80px, 10vw, 120px); border-radius: 12px; overflow: hidden; border: 2px solid transparent; background: var(--surface); cursor: pointer; padding: 0; scroll-snap-align: center; opacity: .55; transition: opacity .3s var(--ease), border-color .3s var(--ease); }
.lc-thumb img { width: 100%; height: 100%; object-fit: cover; }
.lc-thumb:hover { opacity: 1; }
.lc-thumb.active { opacity: 1; border-color: var(--blue); }

.lc-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; flex-wrap: wrap; }
.lc-buy { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }

.lc-specs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px 56px; margin: 6px 0 28px; }
.lc-spec { display: flex; align-items: center; gap: 12px; }
.lc-spec svg { width: 22px; height: 22px; color: var(--blue); flex-shrink: 0; }
.lc-spec .lab { color: var(--muted); font-size: .95rem; flex: 1; }
.lc-spec .val { font-family: var(--ff-display); font-weight: 700; text-align: right; }
.lc-rule { height: 2px; background: var(--line-2); border-radius: 2px; margin: 6px 0; }
.lc-h { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 800; text-transform: uppercase; letter-spacing: -.02em; margin: 34px 0 22px; }
.lc-features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px 28px; margin: 0 0 30px; }
.lc-feat { display: flex; gap: 10px; align-items: flex-start; color: var(--text); }
.lc-feat svg { width: 20px; height: 20px; color: var(--blue); flex-shrink: 0; margin-top: 2px; }
@media (max-width: 900px) { .lc-specs { grid-template-columns: 1fr 1fr; gap: 16px 30px; } .lc-features { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .lc-specs, .lc-features { grid-template-columns: 1fr; } .lc-head { align-items: flex-start; } }

/* ---- Office locations grid ---- */
.loc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.loc-card { border: 1px solid var(--line-2); border-radius: 14px; padding: 26px 22px; text-align: center; background: linear-gradient(180deg, var(--surface), var(--bg-2)); transition: border-color .35s, transform .5s var(--ease); }
.loc-card:hover { border-color: var(--blue); transform: translateY(-4px); }
.loc-card h3 { display: flex; align-items: center; gap: 12px; justify-content: center; font-size: 1rem; letter-spacing: .02em; margin: 0 0 16px; color: var(--text); }
.loc-card h3::before, .loc-card h3::after { content: ""; height: 1px; flex: 1; background: var(--line-2); }
.loc-card p { color: var(--muted); font-size: .9rem; line-height: 1.7; margin: 0; }
.loc-card a { color: var(--blue-soft); }
.loc-card a:hover { color: var(--text); }
@media (max-width: 1000px) { .loc-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .loc-grid { grid-template-columns: 1fr; } }

/* Single listing clickable title path */
.single-listing-breadcrumb {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px;
	max-width: 100%;
	line-height: 1.5;
}

.single-listing-title-path {
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px;
	max-width: 100%;
}

.single-listing-title-path a {
	color: var(--blue-soft);
	text-decoration: none;
	transition: color .25s ease;
}

.single-listing-title-path a:hover {
	color: var(--text);
}

.single-title-sep {
	color: var(--faint);
}

@media (max-width: 640px) {
	.single-listing-breadcrumb {
		font-size: 10px;
		letter-spacing: .12em;
		gap: 5px;
	}

	.single-listing-title-path {
		gap: 5px;
	}

	.single-listing-title-path a {
		overflow-wrap: anywhere;
	}
}

#lcMain {
		opacity: 1;
		transition: opacity 420ms ease-in-out;
		will-change: opacity;
	}

	#lcMain.lc-changing {
		opacity: 0;
	}

	.lc-strip {
		scroll-behavior: smooth;
	}

	.lc-thumb {
		transition:
			opacity 420ms ease,
			transform 420ms ease,
			border-color 420ms ease;
	}

/* =========================================================
   FALLBACK reveal (only if GSAP fails to load)
   ========================================================= */
.no-gsap [data-reveal], .no-gsap .lines, .no-gsap .words { opacity: 1 !important; transform: none !important; }

@media (prefers-reduced-motion: reduce) {
  .hero__media img, .page-hero__media img, .cta__media img, .split__media img { transform: none !important; }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1080px){
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 980px){
  .nav, .header-cta .btn { display: none; }
  .hamburger { display: flex; }
  .cards-3, .inv-grid, .blog-grid, .svc-grid, .steps { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; gap: 44px; }
  .split__media { order: -1; min-height: 360px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .post--feature { grid-column: span 2; flex-direction: column; }
  .searchbar { grid-template-columns: 1fr 1fr; }
  body.has-cursor, body.has-cursor a, body.has-cursor button { cursor: auto; }
  .cursor-dot, .cursor-ring { display: none; }
}
@media (max-width: 640px){
  .container { padding-inline: 20px; }
  .cards-3, .inv-grid, .blog-grid, .svc-grid, .steps, .stats, .form-row, .searchbar { grid-template-columns: 1fr; }
  .post--feature { grid-column: span 1; }
  .hero { padding-bottom: 12vh; }
  .h-scroll__track { padding: 0 20px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
/* ===== Milele — mobile responsive + no horizontal overflow ===== */

/* Kill the side gutter / horizontal scroll on phones */
html, body { overflow-x: hidden !important; max-width: 100%; }
img, video, iframe { max-width: 100%; }

/* Tablet */
@media (max-width: 1024px) {
  .stats, .inv-grid, .cards-3, .svc-grid, .steps, .blog-grid, .searchbar, .loc-grid { grid-template-columns: 1fr 1fr; }
  .split, .split--wide, .contact-grid { grid-template-columns: 1fr; gap: 34px; }
  .split__media { min-height: 300px; order: -1; }
}

/* Search bars stack */
@media (max-width: 820px) {
  .finder { flex-direction: column; align-items: stretch; border-radius: 20px; padding: 16px; }
  .finder__field { min-width: 0; width: 100%; }
  .finder__btn { width: 100%; justify-content: center; }
  .quote-grid { grid-template-columns: 1fr 1fr; }
  .quote-msg { grid-column: auto; grid-row: auto; }
}

/* Category carousel → swipeable strip on mobile */
@media (max-width: 760px) {
  .h-scroll { min-height: auto; }
  .h-pan { min-height: auto; display: block; padding: 8px 0; }
  .h-scroll__track { flex-wrap: nowrap; overflow-x: auto; transform: none !important;
    padding: 16px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
  .h-scroll__track > * { scroll-snap-align: center; }
  .vcard { flex: 0 0 82%; height: 340px; }
  .h-scroll__progress { display: none; }
}

/* Phones */
@media (max-width: 640px) {
  .container { padding-inline: 16px; }
  .stats, .inv-grid, .cards-3, .svc-grid, .steps, .blog-grid,
  .quote-grid, .footer-grid, .searchbar, .loc-grid { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; align-items: stretch; width: 100%; gap: 12px; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .brand-wordmark { height: 56px; }
  .site-header.is-stuck .brand-wordmark { width: 160px }
  .section { padding: 56px 0; }
  .vcard { flex: 0 0 88%; height: 320px; }
  .page-hero h1, .hero h1 { font-size: clamp(2.2rem, 11vw, 3.2rem); }
  .map-wrap iframe { height: 300px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 10px; }
}

@media (max-width: 760px) {

  /* ===== Featured vehicle: show image + title + specs together ===== */
  .showcase { min-height: auto !important; display: block !important; }
  .showcase::after { display: none !important; }                 /* drop the pinned overlay */
  .showcase__img { position: relative !important; inset: auto !important; height: 46vh; }
  .showcase__img, .showcase__img img { transform: none !important; filter: none !important; }
  .showcase__inner { position: static !important; grid-template-columns: 1fr !important; gap: 16px; padding: 22px 0 34px; }
  /* force the animated bits visible (GSAP was keeping them hidden on mobile) */
  .showcase [data-showcase-title], .showcase__title,
  .showcase__tag, .showcase [data-showcase-spec], .spec-chip {
    opacity: 1 !important; transform: none !important;
  }
  .showcase__scroll { display: none !important; }

  /* ===== Inventory carousel: horizontal swipe on mobile ===== */
  .h-scroll { min-height: auto; }
  .h-pan { min-height: auto; display: block; padding: 6px 0; }
  .h-scroll__track { flex-wrap: nowrap; overflow-x: auto; transform: none !important;
    padding: 14px 16px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
  .h-scroll__track > * { scroll-snap-align: center; }
  .vcard { flex: 0 0 82%; height: 360px; }
  .h-scroll__progress { display: none; }
}


/* Keep the New-arrivals search in ONE row on mobile */
@media (max-width: 700px) {
	.btn span {
		font-size: 14px;
	}
  div:has(> .ml-search) {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 18px !important;
  }
  .ml-search {
    width: 100% !important;
    min-width: 0 !important;
    flex-wrap: nowrap !important;          /* stay in a row */
    padding: 6px 6px 6px 16px;
    gap: 8px;
  }
  .ml-search input {
    flex: 1 1 auto;
    min-width: 0;                          /* lets the input shrink so the button fits */
    width: auto;
    font-size: .95rem;
  }
  .ml-search .btn {
    flex: 0 0 auto;
    width: auto !important;                /* not full width */
    padding: .8rem 1.1rem;                 /* smaller button */
    font-size: .82rem;                     /* smaller button text */
    white-space: nowrap;
  }
  .ml-search .btn svg { width: 15px; height: 15px; }
}