/* ==========================================================================
   My Rent A Car — Foundation Stylesheet (Phase 1)
   --------------------------------------------------------------------------
   Loaded via wp_enqueue_style() in inc/enqueue.php. This file covers
   the design tokens, reset, and structural/base component styles
   needed for header, footer, page/post/404 templates. Homepage-
   specific styling is intentionally NOT included yet (see Phase 1
   scope) and will land in its own layer (e.g. home.css) later so this
   foundation file doesn't grow unbounded.

   Design system, chosen for an automotive-rental brief:
   - System font stack only (no external font requests — performance
     and "no third-party libraries without strong reason").
   - A precise, dashboard-like structure: hairline borders, sharp
     4px corners (not the generic rounded-card default), a single
     confident accent colour used sparingly on calls to action.
   - Mobile-first: base rules target small screens, min-width media
     queries layer on progressively larger layouts.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design tokens
   -------------------------------------------------------------------------- */
:root {
	/* Colour */
	--color-white: #ffffff;
	--color-ink: #14181f;          /* primary text, near-black with a cool cast */
	--color-steel: #4a5568;        /* secondary text */
	--color-steel-light: #7b8494;  /* tertiary / muted text */
	--color-border: #e2e5ea;       /* hairline borders/dividers */
	--color-surface: #f6f7f9;      /* section backgrounds, alternating to white */
	--color-accent: #c81e2c;       /* automotive red — CTAs and active states only */
	--color-accent-dark: #a0161f;  /* hover/active state of the accent */
	--color-focus: #1d6fd6;        /* keyboard focus ring — distinct from the accent */

	/* Type */
	--font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	--font-display: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

	/* Spacing scale (base 8px) */
	--space-1: 0.5rem;
	--space-2: 0.75rem;
	--space-3: 1rem;
	--space-4: 1.5rem;
	--space-5: 2rem;
	--space-6: 3rem;
	--space-7: 4rem;
	--space-8: 6rem;

	/* Layout */
	--container-width: 1200px;
	--container-padding: var(--space-3);
	--radius: 4px;
	--border-width: 1px;

	/* Motion */
	--transition-fast: 150ms ease;
}

/* --------------------------------------------------------------------------
   2. Reset & base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}

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

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

body {
	margin: 0;
	font-family: var(--font-body);
	font-size: 1rem;
	line-height: 1.6;
	color: var(--color-ink);
	background-color: var(--color-white);
	-webkit-font-smoothing: antialiased;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-display);
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: -0.01em;
	margin: 0 0 var(--space-3);
	color: var(--color-ink);
}

h1 {
	font-size: clamp(1.9rem, 1.6rem + 1.4vw, 2.75rem);
}

h2 {
	font-size: clamp(1.5rem, 1.3rem + 0.9vw, 2rem);
}

h3 {
	font-size: 1.25rem;
}

p {
	margin: 0 0 var(--space-3);
	max-width: 70ch;
}

a {
	color: var(--color-accent);
	text-decoration-thickness: 1px;
	text-underline-offset: 0.15em;
}

a:hover {
	color: var(--color-accent-dark);
}

ul,
ol {
	margin: 0 0 var(--space-3);
	padding-left: 1.25em;
}

/* Visible, high-contrast keyboard focus everywhere — never removed,
   only restyled, so keyboard navigation stays usable throughout. */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
	outline: 2px solid var(--color-focus);
	outline-offset: 2px;
}

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

.skip-link {
	position: fixed;
	top: -100px;
	left: var(--space-2);
	z-index: 10000;
	background: var(--color-ink);
	color: var(--color-white);
	padding: var(--space-2) var(--space-3);
	border-radius: var(--radius);
	transition: top var(--transition-fast);
}

.skip-link:focus {
	top: var(--space-2);
	color: var(--color-white);
}

/* --------------------------------------------------------------------------
   4. Layout
   -------------------------------------------------------------------------- */
.container {
	width: 100%;
	max-width: var(--container-width);
	margin-inline: auto;
	padding-inline: var(--container-padding);
}

.site-content {
	display: block;
	padding-block: var(--space-6);
}

.content-area.has-sidebar {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--space-6);
}

@media (min-width: 782px) {
	.content-area.has-sidebar {
		grid-template-columns: minmax(0, 1fr) 300px;
		align-items: start;
	}
}

/* --------------------------------------------------------------------------
   5. Buttons & forms
   -------------------------------------------------------------------------- */
.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--space-1);
	padding: 0.75em 1.4em;
	font-family: var(--font-body);
	font-size: 0.95rem;
	font-weight: 700;
	line-height: 1.1;
	border-radius: var(--radius);
	border: var(--border-width) solid transparent;
	cursor: pointer;
	text-decoration: none;
	transition: background-color var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast);
}

.button--primary {
	background-color: var(--color-accent);
	color: var(--color-white);
}

.button--primary:hover {
	background-color: var(--color-accent-dark);
	color: var(--color-white);
}

.button--secondary {
	background-color: transparent;
	border-color: var(--color-ink);
	color: var(--color-ink);
}

.button--secondary:hover {
	background-color: var(--color-ink);
	color: var(--color-white);
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="search"],
input[type="url"],
textarea,
select {
	width: 100%;
	font-family: var(--font-body);
	font-size: 1rem;
	padding: 0.65em 0.85em;
	border: var(--border-width) solid var(--color-border);
	border-radius: var(--radius);
	background-color: var(--color-white);
	color: var(--color-ink);
}

label {
	display: block;
	font-weight: 700;
	margin-bottom: var(--space-1);
}

.search-form {
	display: flex;
	gap: var(--space-2);
	max-width: 32em;
}

.search-form__label {
	flex: 1;
	margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   6. Site header
   -------------------------------------------------------------------------- */
.site-header {
	border-bottom: var(--border-width) solid var(--color-border);
	background-color: var(--color-white);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-4);
	padding-block: var(--space-3);
	flex-wrap: wrap;
}

.site-branding {
	display: flex;
	flex-direction: column;
	gap: 0.1em;
}

.site-branding img {
	display: block;
}

.site-branding__name {
	margin: 0;
	font-size: 1.35rem;
	font-weight: 800;
	letter-spacing: -0.01em;
}

.site-branding__name a {
	color: var(--color-ink);
	text-decoration: none;
}

.site-branding__tagline {
	margin: 0;
	font-size: 0.85rem;
	color: var(--color-steel);
	max-width: none;
}

.site-header__contact {
	order: 3;
	width: 100%;
}

@media (min-width: 782px) {
	.site-header__contact {
		order: 0;
		width: auto;
	}
}

/* --------------------------------------------------------------------------
   7. Primary navigation
   -------------------------------------------------------------------------- */
.site-nav {
	order: 2;
	width: 100%;
}

@media (min-width: 782px) {
	.site-nav {
		order: 0;
		width: auto;
	}
}

.site-nav__toggle {
	display: flex;
	align-items: center;
	gap: var(--space-2);
	margin-left: auto;
	background: none;
	border: var(--border-width) solid var(--color-border);
	border-radius: var(--radius);
	padding: 0.5em 0.85em;
	font-family: var(--font-body);
	font-weight: 700;
	color: var(--color-ink);
	cursor: pointer;
}

.site-nav__toggle-icon {
	display: inline-flex;
	flex-direction: column;
	gap: 4px;
}

.site-nav__toggle-icon span {
	display: block;
	width: 18px;
	height: 2px;
	background-color: var(--color-ink);
}

.site-nav__menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: none;
	flex-direction: column;
	gap: var(--space-1);
	border-top: var(--border-width) solid var(--color-border);
	margin-top: var(--space-3);
	padding-top: var(--space-3);
}

.site-nav__menu.is-open {
	display: flex;
}

.site-nav__menu a {
	display: block;
	padding: var(--space-2) 0;
	color: var(--color-ink);
	text-decoration: none;
	font-weight: 600;
}

.site-nav__menu a:hover,
.site-nav__menu .current-menu-item > a {
	color: var(--color-accent);
}

.site-nav__menu ul {
	list-style: none;
	margin: 0;
	padding-left: var(--space-3);
}

@media (min-width: 782px) {
	.site-nav__toggle {
		display: none;
	}

	.site-nav__menu {
		display: flex;
		flex-direction: row;
		gap: var(--space-4);
		border-top: 0;
		margin-top: 0;
		padding-top: 0;
	}

	.site-nav__menu a {
		padding: var(--space-1) 0;
	}

	.site-nav__menu ul {
		position: absolute;
		background: var(--color-white);
		border: var(--border-width) solid var(--color-border);
		border-radius: var(--radius);
		padding: var(--space-1);
		min-width: 200px;
		display: none;
	}

	.site-nav__menu li {
		position: relative;
	}

	.site-nav__menu li:hover > ul,
	.site-nav__menu li:focus-within > ul {
		display: block;
	}
}

.site-nav__placeholder {
	font-size: 0.9rem;
	color: var(--color-steel);
}

/* --------------------------------------------------------------------------
   8. Breadcrumbs
   -------------------------------------------------------------------------- */
.breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4em;
	font-size: 0.85rem;
	color: var(--color-steel);
	margin-bottom: var(--space-4);
}

.breadcrumbs a {
	color: var(--color-steel);
}

.breadcrumbs__current {
	color: var(--color-ink);
}

/* --------------------------------------------------------------------------
   9. Post/page content
   -------------------------------------------------------------------------- */
.page-content__header,
.single-post__header {
	margin-bottom: var(--space-4);
}

.single-post__meta {
	color: var(--color-steel);
	font-size: 0.9rem;
	display: flex;
	gap: var(--space-2);
	flex-wrap: wrap;
}

.page-content__thumbnail,
.single-post__thumbnail {
	margin-bottom: var(--space-5);
	border-radius: var(--radius);
	overflow: hidden;
	border: var(--border-width) solid var(--color-border);
}

.page-content__body,
.single-post__body {
	max-width: 72ch;
}

.post-summary {
	padding-bottom: var(--space-5);
	margin-bottom: var(--space-5);
	border-bottom: var(--border-width) solid var(--color-border);
}

.post-summary:last-child {
	border-bottom: 0;
}

.post-summary__thumbnail {
	border-radius: var(--radius);
	overflow: hidden;
	border: var(--border-width) solid var(--color-border);
	margin-bottom: var(--space-3);
}

.post-summary__title a {
	color: var(--color-ink);
	text-decoration: none;
}

.post-summary__title a:hover {
	color: var(--color-accent);
}

.post-nav__label {
	display: block;
	font-size: 0.8rem;
	color: var(--color-steel-light);
}

.post-nav__title {
	font-weight: 700;
}

/* --------------------------------------------------------------------------
   10. 404
   -------------------------------------------------------------------------- */
.error-404 {
	text-align: left;
	max-width: 60ch;
}

.error-404__description {
	color: var(--color-steel);
}

.error-404__home-link {
	margin-top: var(--space-4);
}

/* --------------------------------------------------------------------------
   11. Widgets & footer
   -------------------------------------------------------------------------- */
.widget {
	margin-bottom: var(--space-5);
}

.widget-title {
	font-size: 1.05rem;
	margin-bottom: var(--space-2);
}

.site-footer {
	background-color: var(--color-surface);
	border-top: var(--border-width) solid var(--color-border);
	padding-block: var(--space-6);
	margin-top: var(--space-7);
}

.footer-widgets {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--space-5);
	margin-bottom: var(--space-5);
}

@media (min-width: 600px) {
	.footer-widgets {
		grid-template-columns: repeat(3, 1fr);
	}
}

.site-footer__row {
	display: flex;
	flex-direction: column;
	gap: var(--space-4);
	padding-block: var(--space-4);
	border-top: var(--border-width) solid var(--color-border);
}

@media (min-width: 782px) {
	.site-footer__row {
		flex-direction: row;
		justify-content: space-between;
		align-items: flex-start;
	}
}

.site-footer__name {
	font-weight: 800;
	margin-bottom: var(--space-1);
}

.site-footer__address {
	font-style: normal;
	color: var(--color-steel);
}

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

.site-footer__menu-list a {
	color: var(--color-steel);
	text-decoration: none;
}

.site-footer__menu-list a:hover {
	color: var(--color-accent);
}

.site-footer__row--legal {
	font-size: 0.85rem;
	color: var(--color-steel-light);
}

.site-footer__copyright {
	margin: 0;
	max-width: none;
}

/* ========================================================================
   PHASE 2 — Premium Header & Footer
   ======================================================================== */
:root {
	--color-accent: #f2b705;
	--color-accent-dark: #c98f00;
	--color-ink: #111111;
	--color-steel: #59616d;
	--color-surface: #f5f5f3;
	--color-border: #e5e5e2;
	--color-dark: #101010;
	--color-dark-soft: #1a1a1a;
	--container-width: 1240px;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: rgba(255, 255, 255, 0.98);
	border-bottom: 1px solid var(--color-border);
	box-shadow: 0 3px 18px rgba(0, 0, 0, 0.06);
}

.site-header__inner {
	min-height: 82px;
	padding-block: 12px;
	gap: 24px;
	flex-wrap: nowrap;
}

.site-branding {
	flex: 0 0 auto;
	min-width: 150px;
}

.site-branding .custom-logo-link {
	display: inline-flex;
	align-items: center;
	max-width: 205px;
}

.site-branding .custom-logo {
	display: block;
	width: auto;
	max-width: 205px;
	max-height: 58px;
	height: auto;
}

.site-branding__text {
	color: var(--color-ink);
	text-decoration: none;
}

.site-branding__name {
	font-size: 1.25rem;
	font-weight: 850;
	letter-spacing: -0.03em;
}

.site-nav {
	order: 0;
	flex: 1 1 auto;
	width: auto;
	min-width: 0;
}

.site-nav__menu {
	align-items: center;
	justify-content: center;
	gap: clamp(14px, 1.8vw, 27px);
	border: 0;
	margin: 0;
	padding: 0;
}

.site-nav__menu a {
	position: relative;
	padding: 8px 0;
	font-size: 0.94rem;
	font-weight: 700;
	color: #252525;
	white-space: nowrap;
}

.site-nav__menu a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 2px;
	width: 100%;
	height: 2px;
	background: var(--color-accent);
	transform: scaleX(0);
	transform-origin: right;
	transition: transform var(--transition-fast);
}

.site-nav__menu a:hover::after,
.site-nav__menu .current-menu-item > a::after,
.site-nav__menu .current_page_item > a::after,
.site-nav__menu a:focus-visible::after {
	transform: scaleX(1);
	transform-origin: left;
}

.site-nav__menu a:hover,
.site-nav__menu .current-menu-item > a,
.site-nav__menu .current_page_item > a {
	color: var(--color-ink);
}

.site-nav__menu ul {
	left: -14px;
	top: 100%;
	padding: 8px;
	background: #fff;
	border: 1px solid var(--color-border);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
	border-radius: 6px;
}

.site-nav__menu li:hover > ul,
.site-nav__menu li:focus-within > ul {
	display: block;
}

.site-header__actions {
	display: flex;
	align-items: center;
	gap: 8px;
	flex: 0 0 auto;
}

.header-action {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	min-height: 46px;
	padding: 7px 12px;
	border: 1px solid var(--color-border);
	border-radius: 6px;
	text-decoration: none;
	transition: transform var(--transition-fast), background-color var(--transition-fast), border-color var(--transition-fast);
}

.header-action:hover {
	transform: translateY(-1px);
}

.header-action__icon {
	display: inline-flex;
	width: 21px;
	height: 21px;
	flex: 0 0 21px;
}

.header-action__icon svg {
	width: 100%;
	height: 100%;
	fill: currentColor;
}

.header-action__copy {
	display: flex;
	flex-direction: column;
	line-height: 1.15;
}

.header-action__label {
	font-size: 0.7rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.07em;
}

.header-action__number {
	font-size: 0.76rem;
	font-weight: 700;
}

.header-action--call {
	color: #111;
	background: #fff;
}

.header-action--call:hover {
	border-color: #cfcfc9;
	background: #fafafa;
}

.header-action--whatsapp {
	color: #111;
	background: var(--color-accent);
	border-color: var(--color-accent);
}

.header-action--whatsapp:hover {
	background: #ffd34a;
	border-color: #ffd34a;
}

.site-nav__toggle {
	align-items: center;
	justify-content: center;
	gap: 9px;
	margin-left: auto;
	padding: 10px 12px;
	border: 1px solid #d7d7d2;
	border-radius: 6px;
	background: #fff;
	color: #111;
}

.site-nav__toggle-label {
	font-size: 0.85rem;
	font-weight: 800;
}

.site-nav__toggle-icon {
	gap: 4px;
}

.site-nav__toggle-icon span {
	width: 19px;
	height: 2px;
	background: currentColor;
}

.site-footer {
	margin-top: 0;
	padding: 68px 0 0;
	background: var(--color-dark);
	border-top: 0;
	color: #d9d9d4;
}

.site-footer__grid {
	display: grid;
	grid-template-columns: 1.45fr 1fr 1.15fr 1fr;
	gap: 48px;
	padding-bottom: 54px;
}

.site-footer__logo {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
}

.site-footer__logo .custom-logo-link {
	display: inline-flex;
}

.site-footer__logo .custom-logo {
	width: auto;
	max-width: 205px;
	max-height: 58px;
	filter: none;
}

.site-footer__name {
	font-size: 1.35rem;
	font-weight: 850;
	color: #fff;
}

.site-footer__description {
	max-width: 340px;
	margin: 20px 0 22px;
	font-size: 0.93rem;
	line-height: 1.7;
	color: #aaa9a3;
}

.site-footer__heading {
	margin: 0 0 18px;
	font-size: 0.82rem;
	font-weight: 850;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #fff;
}

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

.site-footer__list li + li {
	margin-top: 9px;
}

.site-footer__list a,
.site-footer__contact a,
.site-footer__contact span {
	font-size: 0.92rem;
	line-height: 1.55;
	color: #aaa9a3;
	text-decoration: none;
}

.site-footer__list a:hover,
.site-footer__contact a:hover {
	color: var(--color-accent);
}

.site-footer__contact {
	display: flex;
	flex-direction: column;
	gap: 11px;
	margin: 0;
	font-style: normal;
}

.site-footer__social {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 0.85rem;
	font-weight: 750;
	color: #fff;
	text-decoration: none;
}

.site-footer__social svg {
	width: 21px;
	height: 21px;
	fill: currentColor;
}

.site-footer__social:hover {
	color: var(--color-accent);
}

.site-footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 21px 0;
	border-top: 1px solid #2d2d2b;
}

.site-footer__bottom p {
	margin: 0;
	font-size: 0.8rem;
	color: #85847f;
}

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

.site-footer__legal a {
	font-size: 0.8rem;
	color: #85847f;
	text-decoration: none;
}

.site-footer__legal a:hover {
	color: var(--color-accent);
}

@media (max-width: 1120px) {
	.site-header__inner {
		gap: 16px;
	}

	.site-branding .custom-logo {
		max-width: 175px;
	}

	.site-nav__menu {
		gap: 15px;
	}

	.site-nav__menu a {
		font-size: 0.88rem;
	}

	.header-action__number {
		display: none;
	}

	.header-action {
		padding-inline: 10px;
	}
}

@media (max-width: 900px) {
	.site-header__actions {
		gap: 6px;
	}

	.header-action__copy {
		display: none;
	}

	.header-action {
		width: 42px;
		padding: 9px;
		justify-content: center;
	}

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

@media (max-width: 781px) {
	.site-header__inner {
		min-height: 70px;
		flex-wrap: wrap;
	}

	.site-branding {
		min-width: 0;
		flex: 1 1 auto;
	}

	.site-branding .custom-logo {
		max-width: 155px;
		max-height: 50px;
	}

	.site-nav {
		order: 3;
		flex: 1 0 100%;
		width: 100%;
	}

	.site-nav__toggle {
		display: inline-flex;
	}

	.site-nav__menu {
		width: 100%;
		display: none;
		align-items: stretch;
		gap: 0;
		margin-top: 8px;
		padding: 8px 0 4px;
		border-top: 1px solid var(--color-border);
	}

	.site-nav__menu.is-open {
		display: flex;
	}

	.site-nav__menu li {
		width: 100%;
	}

	.site-nav__menu a {
		padding: 11px 4px;
		font-size: 0.96rem;
	}

	.site-nav__menu a::after {
		display: none;
	}

	.site-nav__menu ul {
		position: static;
		display: block;
		padding-left: 14px;
		border: 0;
		box-shadow: none;
	}

	.site-header__actions {
		margin-left: auto;
	}

	.header-action--call {
		display: none;
	}

	.site-footer {
		padding-top: 50px;
	}

	.site-footer__grid {
		grid-template-columns: 1fr;
		gap: 38px;
		padding-bottom: 40px;
	}

	.site-footer__bottom {
		align-items: flex-start;
		flex-direction: column;
	}
}

/* ========================================================================
   PHASE 3 — Premium Homepage
   ======================================================================== */
.home-page{padding:0;overflow:hidden}.home-main{margin:0}.home-hero{position:relative;background:#0c0c0c;color:#fff;min-height:650px;display:flex;align-items:center}.home-hero:after{content:"";position:absolute;inset:auto 0 0;height:1px;background:rgba(242,183,5,.35)}.home-hero__grid{display:grid;grid-template-columns:1fr;gap:32px;align-items:center;position:relative;z-index:1;padding-block:72px}.eyebrow{margin:0 0 12px;font-size:.75rem;line-height:1.2;font-weight:800;letter-spacing:.16em;text-transform:uppercase;color:#f2b705;max-width:none}.eyebrow--dark{color:#a87900}.home-hero h1{color:#fff;font-size:clamp(2.65rem,6vw,5.7rem);max-width:760px;line-height:.98;letter-spacing:-.055em;margin-bottom:24px}.home-hero h1 span{color:#f2b705}.home-hero__lead{color:#c8c8c8;font-size:1.08rem;max-width:620px;line-height:1.7}.home-hero__actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:30px}.button--accent{background:#f2b705;color:#111;border-color:#f2b705}.button--accent:hover{background:#ffd13d;border-color:#ffd13d;color:#111}.button--ghost-light{border-color:rgba(255,255,255,.35);color:#fff;background:transparent}.button--ghost-light:hover{border-color:#fff;background:#fff;color:#111}.button--dark{background:#111;color:#fff;border-color:#111}.button--dark:hover{background:#333;color:#fff}.button--light{background:#fff;color:#111;border-color:#fff}.button--light:hover{background:#eee;color:#111}.button--outline{background:transparent;color:#111;border-color:#111}.button--outline:hover{background:#111;color:#fff}.home-hero__trust{display:flex;gap:22px;flex-wrap:wrap;margin-top:36px;padding-top:20px;border-top:1px solid rgba(255,255,255,.12);color:#aaa;font-size:.82rem}.home-hero__trust strong{color:#fff}.home-hero__visual{position:relative;min-height:360px;display:flex;align-items:center;justify-content:center}.hero-visual__glow{position:absolute;width:360px;height:360px;border-radius:50%;background:rgba(242,183,5,.12);filter:blur(35px)}.hero-visual__label{position:absolute;top:10px;right:5%;font-size:.68rem;letter-spacing:.2em;color:#777}.hero-car{position:relative;width:100%;max-width:620px;filter:drop-shadow(0 22px 25px rgba(0,0,0,.5));z-index:1}.hero-visual__specs{position:absolute;bottom:0;left:0;right:0;display:flex;justify-content:center;gap:8px;flex-wrap:wrap}.hero-visual__specs span{border:1px solid rgba(255,255,255,.15);background:rgba(255,255,255,.04);padding:8px 12px;font-size:.72rem;color:#cfcfcf}.booking-section{position:relative;z-index:3;margin-top:-58px;padding-bottom:20px}.booking-card{background:#fff;border:1px solid #e5e5e2;box-shadow:0 18px 55px rgba(0,0,0,.12);padding:28px;display:grid;grid-template-columns:1fr;gap:26px}.booking-card__intro h2{font-size:2rem;margin-bottom:8px}.booking-card__intro p:last-child{color:#66707b;margin-bottom:0}.booking-form{display:grid;grid-template-columns:1fr;gap:14px;align-items:end}.form-field label{font-size:.78rem;margin-bottom:7px;color:#30343a}.form-field input,.form-field select{height:48px;border-color:#d8dbe0;border-radius:3px}.booking-form__submit{width:100%;height:48px}.section{padding-block:88px}.section--dark{background:#101010;color:#fff}.section--soft{background:#f5f5f3}.section-heading{display:flex;justify-content:space-between;gap:24px;align-items:end;margin-bottom:34px}.section-heading h2{font-size:clamp(2rem,3.5vw,3rem);max-width:720px}.section-heading--light h2{color:#fff}.text-link{font-weight:800;text-decoration:none;color:#111;white-space:nowrap}.text-link:hover{color:#b78400}.text-link--light{color:#fff}.fleet-grid{display:grid;grid-template-columns:1fr;gap:18px}.fleet-card{background:#fff;border:1px solid #e4e5e7;transition:transform .18s ease,box-shadow .18s ease;border-radius:4px;overflow:hidden}.fleet-card:hover{transform:translateY(-4px);box-shadow:0 14px 35px rgba(0,0,0,.09)}.fleet-card__art{min-height:205px;background:linear-gradient(135deg,#f8f8f7,#e9e9e7);display:flex;align-items:center;justify-content:center;overflow:hidden}.fleet-card__art--luxury-suv,.fleet-card__art--sedan-luxury{background:linear-gradient(135deg,#202020,#3b3b3b)}.fleet-card__art--luxury-suv .vehicle-art,.fleet-card__art--sedan-luxury .vehicle-art{filter:drop-shadow(0 12px 15px rgba(0,0,0,.4))}.fleet-card__art--luxury-suv .vehicle-art path,.fleet-card__art--sedan-luxury .vehicle-art path{stroke:#f2b705}.vehicle-art{width:94%;height:auto}.fleet-card__body{padding:20px}.fleet-card__tag{font-size:.67rem;font-weight:800;letter-spacing:.1em;text-transform:uppercase;color:#9a7000}.fleet-card h3{font-size:1.28rem;margin:6px 0 4px}.fleet-card__body p{color:#707783;font-size:.88rem;margin:0 0 15px}.fleet-card__body p span{color:#f2b705}.fleet-card__link{font-size:.82rem;font-weight:800;text-decoration:none;color:#111}.fleet-card__link:hover{color:#ad7c00}.services-section{padding-bottom:96px}.services-grid{display:grid;grid-template-columns:1fr;gap:1px;background:#333;border:1px solid #333}.service-card{background:#151515;padding:28px;min-height:245px}.service-card__icon{width:42px;height:42px;display:grid;place-items:center;border:1px solid rgba(242,183,5,.35);color:#f2b705;margin-bottom:24px}.service-card__icon svg,.locations-card svg{width:22px;height:22px;fill:none;stroke:currentColor;stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round}.service-card h3{color:#fff;margin-bottom:9px}.service-card p{color:#a8a8a8;font-size:.9rem}.service-card a{font-size:.8rem;font-weight:800;color:#f2b705;text-decoration:none}.why-grid{display:grid;grid-template-columns:1fr;gap:50px}.why-copy h2{font-size:clamp(2rem,4vw,3.4rem);max-width:600px}.why-copy>p:not(.eyebrow){color:#68717b;max-width:560px}.why-points{display:grid;grid-template-columns:1fr;gap:0;border-top:1px solid #ddd}.why-points>div{padding:22px 0;border-bottom:1px solid #ddd}.why-points strong{display:block;font-size:.72rem;letter-spacing:.12em;color:#a87900;margin-bottom:8px}.why-points h3{margin-bottom:5px}.why-points p{margin:0;color:#707783;font-size:.9rem}.center-heading{text-align:center;margin-bottom:42px}.center-heading h2{font-size:clamp(2rem,4vw,3rem)}.center-heading .eyebrow{margin-bottom:10px}.process-grid{display:grid;grid-template-columns:1fr;gap:16px}.process-step{background:#fff;border:1px solid #e1e2e3;padding:30px}.process-step>span{display:inline-grid;place-items:center;width:42px;height:42px;background:#111;color:#f2b705;font-weight:800;margin-bottom:22px}.process-step h3{margin-bottom:8px}.process-step p{color:#6d747e;margin:0;font-size:.92rem}.locations-card{display:grid;grid-template-columns:1fr;gap:30px;border:1px solid #dedfdf;padding:34px;background:#fff}.locations-card h2{font-size:clamp(2rem,4vw,3.2rem);max-width:700px}.locations-card>div:first-child p:last-child{color:#68717b}.locations-card__address{border-left:3px solid #f2b705;padding:10px 0 10px 22px}.locations-card__address span{display:block;font-weight:800;margin-bottom:9px}.locations-card__address address{font-style:normal;color:#69727c;font-size:.9rem;margin-bottom:12px}.locations-card__address a{font-weight:800;color:#111;text-decoration:none}.faq-preview__grid{display:grid;grid-template-columns:1fr;gap:24px;align-items:center;padding-block:76px}.faq-preview__grid h2{font-size:clamp(2rem,4vw,3rem)}.faq-preview__grid>div:first-child p:last-child{color:#6d747e}.faq-preview__cta{display:flex;gap:10px;flex-wrap:wrap}.final-cta{background:#111;color:#fff;padding-block:62px}.final-cta__inner{display:flex;justify-content:space-between;align-items:center;gap:25px}.final-cta h2{color:#fff;font-size:clamp(2rem,4vw,3.2rem);margin:0}.final-cta__actions{display:flex;gap:10px;flex-wrap:wrap;justify-content:flex-end}.site-footer{margin-top:0}
@media (min-width:600px){.fleet-grid{grid-template-columns:repeat(2,1fr)}.services-grid{grid-template-columns:repeat(2,1fr)}.process-grid{grid-template-columns:repeat(3,1fr)}.why-points{grid-template-columns:repeat(2,1fr);gap:0 28px}.booking-form{grid-template-columns:repeat(2,1fr)}}
@media (min-width:782px){.home-hero__grid{grid-template-columns:minmax(0,1fr) minmax(420px,.9fr);min-height:650px;padding-block:70px}.booking-card{grid-template-columns:310px minmax(0,1fr);align-items:center;padding:30px 34px}.booking-form{grid-template-columns:repeat(4,minmax(0,1fr))}.booking-form__submit{grid-column:span 4}.fleet-grid{grid-template-columns:repeat(3,1fr)}.services-grid{grid-template-columns:repeat(3,1fr)}.why-grid{grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr);align-items:start}.locations-card{grid-template-columns:1.5fr .8fr;align-items:center;padding:45px}.faq-preview__grid{grid-template-columns:1.3fr .7fr}.faq-preview__cta{justify-content:flex-end}}
@media (min-width:1050px){.fleet-grid{grid-template-columns:repeat(4,1fr)}.fleet-card__art{min-height:185px}.booking-form{grid-template-columns:repeat(4,1fr)}.booking-form__submit{grid-column:auto}.home-hero__visual{min-height:470px}}
@media (max-width:781px){.section-heading{align-items:flex-start;flex-direction:column}.home-hero__visual{min-height:300px}.hero-visual__specs{position:relative;margin-top:-12px}.final-cta__inner{flex-direction:column;align-items:flex-start}.final-cta__actions{justify-content:flex-start}}
