/* ==========================================================================
   Action Car Rental — Main Stylesheet
   Design language: "Highway Livery" — Texas interstate signage, asphalt,
   and the South Texas sun, translated into a premium, conversion-focused
   car rental brand. Grounded in the subject: this is a road-trip business,
   not a generic SaaS gradient page.

   Token system
   ------------
   Color:
     --c-asphalt      #1B1F23  (near-black charcoal — pavement, dark sections)
     --c-asphalt-2    #262B31  (raised panels on dark sections)
     --c-amber        #F2A900  (highway caution-sign amber — primary accent)
     --c-amber-dark   #C98600  (amber hover/active state)
     --c-brick        #C1272D  (taillight red — urgent CTA / secondary accent)
     --c-sand         #EDE6D6  (warm sand — alternate section background)
     --c-palm         #3F5C46  (muted RGV palm green — quiet trust accent)
     --c-ink          #1B1F23  (body text on light backgrounds)
     --c-paper        #FFFFFF  (cards, primary background)

   Type:
     Display: "Archivo Expanded" — a bold, blocky grotesk with the
       proportions of interstate highway signage. Used with restraint
       (headlines + eyebrows only).
     Body/UI: "Inter" — a neutral, highly legible workhorse for paragraphs,
       specs, forms, and navigation.

   Signature element:
     A dashed "lane line" rule (an amber dashed divider) marks key
     transitions — hero into content, section into section — evoking the
     center line of a highway. Used sparingly, never as wallpaper.
   ========================================================================== */

:root {
	--c-asphalt: #1b1f23;
	--c-asphalt-2: #262b31;
	--c-amber: #f2a900;
	--c-amber-dark: #c98600;
	--c-brick: #c1272d;
	--c-sand: #ede6d6;
	--c-palm: #3f5c46;
	--c-ink: #1b1f23;
	--c-paper: #ffffff;
	--c-line: rgba(27, 31, 35, 0.1);
	--c-line-dark: rgba(255, 255, 255, 0.14);

	--font-display: "Archivo", "Arial Narrow", sans-serif;
	--font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

	--container: 1200px;
	--radius: 14px;
	--radius-sm: 8px;
	--shadow-sm: 0 2px 10px rgba(27, 31, 35, 0.08);
	--shadow-md: 0 12px 30px rgba(27, 31, 35, 0.14);
	--ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* Archivo Expanded via Google Fonts (loaded in enqueue.php); fall back
   gracefully if the request is blocked by an ad blocker or offline. */
@font-face {
	font-family: "Archivo";
	font-display: swap;
	src: local("Archivo");
}

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

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

@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: 17px;
	line-height: 1.6;
	color: var(--c-ink);
	background: var(--c-paper);
	-webkit-font-smoothing: antialiased;
}

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

a {
	color: inherit;
	text-decoration: none;
}

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

h1,
h2,
h3,
h4 {
	font-family: var(--font-display);
	font-weight: 700;
	letter-spacing: -0.01em;
	line-height: 1.12;
	margin: 0 0 0.5em;
	text-transform: none;
}

h1 {
	font-size: clamp(2.4rem, 5vw, 3.6rem);
}

h2 {
	font-size: clamp(1.9rem, 3.4vw, 2.6rem);
}

h3 {
	font-size: 1.2rem;
}

p {
	margin: 0 0 1em;
}

button {
	font-family: inherit;
}

/* Visible keyboard focus everywhere — non-negotiable for a lead-gen site. */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
	outline: 3px solid var(--c-amber);
	outline-offset: 2px;
}

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

.acr-skip-link {
	position: absolute;
	top: -100px;
	left: 1rem;
	background: var(--c-amber);
	color: var(--c-asphalt);
	padding: 0.75rem 1.25rem;
	border-radius: var(--radius-sm);
	z-index: 999;
	font-weight: 600;
	transition: top 0.2s var(--ease);
}
.acr-skip-link:focus {
	top: 1rem;
}

.acr-container {
	max-width: var(--container);
	margin-inline: auto;
	padding-inline: 1.5rem;
}

.acr-eyebrow {
	font-family: var(--font-display);
	text-transform: uppercase;
	letter-spacing: 0.14em;
	font-size: 0.78rem;
	font-weight: 700;
	color: var(--c-amber-dark);
	margin: 0 0 0.9rem;
	display: inline-flex;
	align-items: center;
	gap: 0.5em;
}

.acr-eyebrow::before {
	content: "";
	width: 22px;
	height: 3px;
	background: var(--c-brick);
	border-radius: 2px;
}

.acr-section {
	padding: clamp(3.5rem, 7vw, 6.5rem) 0;
}

.acr-section-alt {
	background: var(--c-sand);
}

.acr-section-head {
	max-width: 640px;
	margin-bottom: 2.75rem;
}

.acr-section-cta {
	text-align: center;
	margin-top: 2.75rem;
}

/* Signature element: dashed "lane line" divider ------------------------- */
.acr-lane-divider,
.acr-hero::after {
	content: "";
	display: block;
	height: 0;
	border-top: 3px dashed var(--c-amber);
	opacity: 0.55;
}

/* --------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------- */
.acr-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.55em;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 0.95rem;
	letter-spacing: 0.02em;
	padding: 0.85em 1.5em;
	border-radius: var(--radius-sm);
	border: 2px solid transparent;
	transition: transform 0.18s var(--ease), background-color 0.18s var(--ease), border-color 0.18s var(--ease), box-shadow 0.18s var(--ease);
	white-space: nowrap;
}
.acr-btn .acr-icon {
	width: 1.1em;
	height: 1.1em;
	flex-shrink: 0;
}
.acr-btn:hover {
	transform: translateY(-2px);
}

.acr-btn-primary {
	background: var(--c-brick);
	color: #fff;
	box-shadow: var(--shadow-sm);
}
.acr-btn-primary:hover {
	background: #a41f24;
}

.acr-btn-dark {
	background: var(--c-asphalt);
	color: #fff;
}
.acr-btn-dark:hover {
	background: #000;
}

.acr-btn-light {
	background: var(--c-amber);
	color: var(--c-asphalt);
}
.acr-btn-light:hover {
	background: #fff;
}

.acr-btn-outline {
	border-color: currentColor;
	background: transparent;
}

.acr-btn-lg {
	padding: 1.05em 1.9em;
	font-size: 1.02rem;
}

.acr-btn-sm {
	padding: 0.55em 1em;
	font-size: 0.82rem;
}

/* --------------------------------------------------------------------
   Icons
   -------------------------------------------------------------------- */
.acr-icon {
	width: 1.25em;
	height: 1.25em;
	display: inline-block;
	vertical-align: middle;
	flex-shrink: 0;
}

/* --------------------------------------------------------------------
   Top utility bar
   -------------------------------------------------------------------- */
.acr-topbar {
	background: var(--c-asphalt);
	color: rgba(255, 255, 255, 0.86);
	font-size: 0.85rem;
}

.acr-topbar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding-block: 0.55rem;
}

.acr-topbar-item {
	display: inline-flex;
	align-items: center;
	gap: 0.5em;
}
.acr-topbar-item .acr-icon {
	width: 1em;
	height: 1em;
	color: var(--c-amber);
}

.acr-topbar-phone {
	font-weight: 700;
	color: #fff;
	transition: color 0.15s var(--ease);
}
.acr-topbar-phone:hover {
	color: var(--c-amber);
}

/* --------------------------------------------------------------------
   Header / primary nav
   -------------------------------------------------------------------- */
.acr-header {
	background: var(--c-paper);
	border-bottom: 1px solid var(--c-line);
	position: sticky;
	top: 0;
	z-index: 100;
}

.acr-header-inner {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	padding-block: 0.9rem;
}

.acr-branding {
	margin-right: auto;
}
.acr-branding img {
	max-height: 46px;
	width: auto;
}

.acr-site-title {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 1.25rem;
}

.acr-primary-nav {
	display: none;
}

.acr-menu {
	display: flex;
	align-items: center;
	gap: 2rem;
}

.acr-menu a {
	font-weight: 600;
	font-size: 0.95rem;
	position: relative;
	padding-block: 0.4rem;
}

.acr-menu a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 2px;
	background: var(--c-amber);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.2s var(--ease);
}

.acr-menu a:hover::after,
.acr-menu .current-menu-item a::after {
	transform: scaleX(1);
}

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

.acr-menu-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border: 1px solid var(--c-line);
	border-radius: var(--radius-sm);
	background: none;
	cursor: pointer;
}
.acr-menu-toggle .acr-icon-close {
	display: none;
}
.acr-menu-toggle[aria-expanded="true"] .acr-icon-open {
	display: none;
}
.acr-menu-toggle[aria-expanded="true"] .acr-icon-close {
	display: block;
}

@media (min-width: 900px) {
	.acr-primary-nav {
		display: block;
	}
	.acr-header-cta {
		display: block;
	}
	.acr-menu-toggle {
		display: none;
	}
}

@media (max-width: 899.98px) {
	.acr-primary-nav {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: var(--c-paper);
		border-bottom: 1px solid var(--c-line);
		box-shadow: var(--shadow-md);
	}
	.acr-primary-nav[data-open="true"] {
		display: block;
	}
	.acr-menu {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding: 0.5rem 1.5rem 1.25rem;
	}
	.acr-menu a {
		display: block;
		padding: 0.75rem 0;
		border-bottom: 1px solid var(--c-line);
	}
}

/* --------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------- */
.acr-hero {
	position: relative;
	background: linear-gradient(160deg, var(--c-asphalt) 0%, #33393f 100%);
	background-size: cover;
	background-position: center;
	color: #fff;
	overflow: hidden;
}

.acr-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(160deg, rgba(27, 31, 35, 0.88) 0%, rgba(27, 31, 35, 0.62) 100%);
}

.acr-hero-inner {
	position: relative;
	padding-block: clamp(4.5rem, 10vw, 8rem) clamp(3.5rem, 8vw, 6rem);
	max-width: 760px;
}

.acr-hero .acr-eyebrow {
	color: var(--c-amber);
}
.acr-hero .acr-eyebrow::before {
	background: var(--c-amber);
}

.acr-hero h1 {
	color: #fff;
}

.acr-hero-sub {
	font-size: 1.15rem;
	color: rgba(255, 255, 255, 0.82);
	max-width: 56ch;
}

.acr-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-top: 2rem;
}

.acr-hero-actions .acr-btn-outline {
	border-color: rgba(255, 255, 255, 0.5);
	color: #fff;
}
.acr-hero-actions .acr-btn-outline:hover {
	border-color: #fff;
	background: rgba(255, 255, 255, 0.08);
}

.acr-hero::after {
	position: relative;
	max-width: var(--container);
	margin-inline: auto;
}

/* --------------------------------------------------------------------
   Page hero (non-homepage pages)
   -------------------------------------------------------------------- */
.acr-page-hero {
	background: var(--c-asphalt);
	color: #fff;
	padding-block: clamp(3.5rem, 7vw, 5rem);
}
.acr-page-hero .acr-eyebrow {
	color: var(--c-amber);
}
.acr-page-hero .acr-eyebrow::before {
	background: var(--c-amber);
}
.acr-page-hero h1 {
	color: #fff;
	margin-bottom: 0.4em;
}
.acr-page-hero .acr-hero-sub {
	color: rgba(255, 255, 255, 0.8);
	max-width: 64ch;
	font-size: 1.05rem;
}

.acr-page-hero-plain {
	padding-block: 2.75rem;
}
.acr-page-hero-plain h1 {
	margin: 0;
}

/* --------------------------------------------------------------------
   Homepage intro
   -------------------------------------------------------------------- */
.acr-intro-grid {
	display: grid;
	gap: 3rem;
	grid-template-columns: 1.3fr 1fr;
	align-items: center;
}

.acr-intro-badges {
	display: grid;
	gap: 1rem;
}

.acr-badge {
	display: flex;
	align-items: center;
	gap: 1rem;
	background: var(--c-sand);
	border-radius: var(--radius);
	padding: 1.1rem 1.3rem;
}
.acr-badge .acr-icon {
	width: 1.7rem;
	height: 1.7rem;
	color: var(--c-brick);
	flex-shrink: 0;
}
.acr-badge strong {
	display: block;
	font-family: var(--font-display);
	font-size: 0.98rem;
}
.acr-badge span {
	font-size: 0.86rem;
	color: rgba(27, 31, 35, 0.65);
}

@media (max-width: 899.98px) {
	.acr-intro-grid {
		grid-template-columns: 1fr;
	}
}

/* --------------------------------------------------------------------
   Fleet grid + vehicle cards
   -------------------------------------------------------------------- */
.acr-fleet-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	gap: 1.5rem;
}

.acr-vehicle-card {
	background: var(--c-paper);
	border: 1px solid var(--c-line);
	border-radius: var(--radius);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.acr-vehicle-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-md);
}

.acr-vehicle-media {
	position: relative;
	background: var(--c-sand);
	aspect-ratio: 4 / 3;
	display: flex;
	align-items: center;
	justify-content: center;
}
.acr-vehicle-media img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 1.25rem;
}

.acr-vehicle-media-placeholder {
	color: rgba(27, 31, 35, 0.25);
}
.acr-vehicle-media-placeholder .acr-icon {
	width: 3rem;
	height: 3rem;
}
.acr-vehicle-media-placeholder-lg .acr-icon {
	width: 5rem;
	height: 5rem;
}

/* Route-shield badge motif — echoes a highway sign, ties the fleet grid
   back to the "highway livery" concept without decorating for its own sake. */
.acr-vehicle-tag {
	position: absolute;
	top: 0.75rem;
	left: 0.75rem;
	background: var(--c-amber);
	color: var(--c-asphalt);
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 0.72rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	padding: 0.3em 0.65em;
	border-radius: 999px 999px 999px 4px;
}

.acr-vehicle-body {
	padding: 1.25rem;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	flex: 1;
}

.acr-vehicle-name {
	margin: 0;
	font-size: 1.05rem;
}

.acr-vehicle-specs {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem 0.75rem;
	font-size: 0.82rem;
	color: rgba(27, 31, 35, 0.65);
	flex: 1;
}

.acr-vehicle-specs-lg {
	font-size: 0.95rem;
	color: var(--c-ink);
	flex-direction: column;
	gap: 0.6rem;
}
.acr-vehicle-specs-lg li {
	display: flex;
	align-items: center;
	gap: 0.5em;
}
.acr-vehicle-specs-lg .acr-icon {
	width: 1.1em;
	height: 1.1em;
	color: var(--c-palm);
}

.acr-vehicle-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	padding-top: 0.5rem;
	border-top: 1px solid var(--c-line);
}

.acr-vehicle-price {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 0.88rem;
	color: var(--c-brick);
}
.acr-vehicle-price-lg {
	font-size: 1.15rem;
}

/* --------------------------------------------------------------------
   Features
   -------------------------------------------------------------------- */
.acr-features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 2rem;
}

.acr-feature .acr-icon {
	width: 2.1rem;
	height: 2.1rem;
	color: var(--c-brick);
	margin-bottom: 0.75rem;
}
.acr-feature h3 {
	margin-bottom: 0.4rem;
}
.acr-feature p {
	color: rgba(27, 31, 35, 0.68);
	font-size: 0.95rem;
	margin: 0;
}

/* --------------------------------------------------------------------
   Map section
   -------------------------------------------------------------------- */
.acr-map-grid {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 3rem;
	align-items: center;
}
.acr-map-embed {
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow-md);
	line-height: 0;
}

@media (max-width: 899.98px) {
	.acr-map-grid {
		grid-template-columns: 1fr;
	}
}

/* --------------------------------------------------------------------
   CTA band
   -------------------------------------------------------------------- */
.acr-cta-band {
	background: var(--c-amber);
	color: var(--c-asphalt);
}
.acr-cta-band-inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	padding-block: 2.5rem;
}
.acr-cta-band h2 {
	margin-bottom: 0.25rem;
	font-size: 1.7rem;
}
.acr-cta-band p {
	margin: 0;
	opacity: 0.85;
}
.acr-cta-band .acr-btn-light {
	background: var(--c-asphalt);
	color: #fff;
}
.acr-cta-band .acr-btn-light:hover {
	background: #000;
}

/* --------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------- */
.acr-footer {
	background: var(--c-asphalt);
	color: rgba(255, 255, 255, 0.78);
}

.acr-footer-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: 2.5rem;
	padding-block: 4rem 2.5rem;
}

.acr-footer-brand {
	font-family: var(--font-display);
	color: #fff;
	font-size: 1.2rem;
	font-weight: 700;
}

.acr-footer-logo img {
	max-height: 42px;
	width: auto;
	/* The client's logo artwork is dark-on-transparent; invert it to
	   white so it reads on the dark footer background. Remove this
	   filter if a light/white logo variant is uploaded instead. */
	filter: brightness(0) invert(1);
}

.acr-footer-col h3 {
	color: #fff;
	font-size: 0.95rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-bottom: 1.1rem;
}

.acr-footer-menu li,
.acr-footer-contact li {
	margin-bottom: 0.75rem;
	display: flex;
	align-items: flex-start;
	gap: 0.6rem;
}

.acr-footer-menu a:hover {
	color: var(--c-amber);
}

.acr-footer-contact .acr-icon {
	width: 1.1em;
	height: 1.1em;
	color: var(--c-amber);
	flex-shrink: 0;
	margin-top: 0.2em;
}

.acr-footer-legal {
	border-top: 1px solid var(--c-line-dark);
	padding-block: 1.5rem;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	font-size: 0.85rem;
}

.acr-footer-credit p {
	margin: 0;
}
.acr-footer-credit a {
	color: var(--c-amber);
	font-weight: 600;
}
.acr-footer-credit a:hover {
	text-decoration: underline;
}

.acr-footer-legal-links {
	display: flex;
	gap: 1.5rem;
}
.acr-footer-legal-links a:hover {
	color: #fff;
}

@media (max-width: 899.98px) {
	.acr-footer-grid {
		grid-template-columns: 1fr 1fr;
	}
}
@media (max-width: 599.98px) {
	.acr-footer-grid {
		grid-template-columns: 1fr;
	}
}

.acr-location-photo-wrap {
	margin: 1.25rem 0;
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	max-width: 360px;
}
.acr-location-photo-wrap img {
	width: 100%;
	height: auto;
}

/* --------------------------------------------------------------------
   FAQ accordion
   -------------------------------------------------------------------- */
.acr-faq-container {
	max-width: 820px;
}

.acr-accordion-item {
	border-bottom: 1px solid var(--c-line);
}

.acr-accordion-trigger {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.25rem 0;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 1.02rem;
	cursor: pointer;
	list-style: none;
}
.acr-accordion-trigger::-webkit-details-marker {
	display: none;
}

.acr-accordion-icon {
	width: 1.2em;
	height: 1.2em;
	flex-shrink: 0;
	color: var(--c-brick);
	transition: transform 0.2s var(--ease);
}
.acr-accordion-item[open] .acr-accordion-icon {
	transform: rotate(180deg);
}

.acr-accordion-panel {
	padding-bottom: 1.25rem;
	color: rgba(27, 31, 35, 0.72);
}
.acr-accordion-panel p {
	margin: 0;
}

.acr-faq-photo-wrap {
	margin-top: 3rem;
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
}
.acr-faq-photo-wrap img {
	width: 100%;
	height: auto;
	display: block;
}

/* --------------------------------------------------------------------
   Contact page
   -------------------------------------------------------------------- */
.acr-contact-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: 3rem;
}

.acr-contact-form h2,
.acr-contact-details h2 {
	font-size: 1.4rem;
}

.acr-contact-list li {
	margin-bottom: 1rem;
}

.acr-notice {
	background: #fff4e0;
	border: 1px solid var(--c-amber);
	border-radius: var(--radius-sm);
	padding: 1rem 1.25rem;
	margin-bottom: 1.5rem;
	font-size: 0.92rem;
}

/* Baseline styling for whatever form plugin (Contact Form 7, etc.)
   renders inside .acr-contact-form — scoped, non-!important overrides
   so the plugin's own markup still governs structure. */
.acr-contact-form form p {
	margin-bottom: 1.1rem;
}
.acr-contact-form label {
	display: block;
	font-weight: 600;
	margin-bottom: 0.4rem;
	font-size: 0.92rem;
}
.acr-contact-form input[type="text"],
.acr-contact-form input[type="email"],
.acr-contact-form input[type="tel"],
.acr-contact-form textarea {
	width: 100%;
	padding: 0.8em 1em;
	border: 1px solid var(--c-line);
	border-radius: var(--radius-sm);
	font-family: inherit;
	font-size: 1rem;
	background: var(--c-paper);
	transition: border-color 0.15s var(--ease);
}
.acr-contact-form input:focus,
.acr-contact-form textarea:focus {
	border-color: var(--c-brick);
	outline: none;
}
.acr-contact-form textarea {
	min-height: 140px;
	resize: vertical;
}
.acr-contact-form input[type="submit"] {
	font-family: var(--font-display);
	font-weight: 700;
	background: var(--c-brick);
	color: #fff;
	border: none;
	padding: 0.85em 1.75em;
	border-radius: var(--radius-sm);
	cursor: pointer;
	transition: background-color 0.15s var(--ease), transform 0.15s var(--ease);
}
.acr-contact-form input[type="submit"]:hover {
	background: #a41f24;
	transform: translateY(-2px);
}

/* Gravity Forms renders its own wrapper markup (.gform_wrapper, .gfield,
   etc.) around plain <input>/<textarea>/<select> elements, so the input
   styling above already applies. These rules only tidy up GF's own
   spacing/label/validation classes to match the rest of the page. */
.acr-contact-form .gform_wrapper {
	font-family: inherit;
}
.acr-contact-form .gform_fields {
	display: grid;
	gap: 1.1rem;
	list-style: none;
	margin: 0;
	padding: 0;
}
.acr-contact-form .gfield {
	list-style: none;
}
.acr-contact-form .gfield_label,
.acr-contact-form .gform_wrapper label {
	display: block;
	font-weight: 600;
	margin-bottom: 0.4rem;
	font-size: 0.92rem;
	color: var(--c-ink);
}
.acr-contact-form .gfield_required {
	color: var(--c-brick);
}
.acr-contact-form select {
	width: 100%;
	padding: 0.8em 1em;
	border: 1px solid var(--c-line);
	border-radius: var(--radius-sm);
	font-family: inherit;
	font-size: 1rem;
	background: var(--c-paper);
}
.acr-contact-form .gform_footer {
	margin-top: 0.5rem;
}
.acr-contact-form .gform_footer input[type="submit"] {
	width: auto;
}
.acr-contact-form .validation_error {
	color: var(--c-brick);
	font-weight: 600;
	margin-bottom: 1rem;
	padding: 0.85em 1.1em;
	background: #fff0f0;
	border: 1px solid var(--c-brick);
	border-radius: var(--radius-sm);
}
.acr-contact-form .gfield_description.validation_message {
	color: var(--c-brick);
	font-size: 0.85rem;
	margin-top: 0.3rem;
}
.acr-contact-form .gform_confirmation_message {
	color: var(--c-palm);
	font-weight: 600;
	padding: 1em 1.25em;
	background: #f2f7f3;
	border: 1px solid var(--c-palm);
	border-radius: var(--radius-sm);
}

/* --------------------------------------------------------------------
   Rates page notes
   -------------------------------------------------------------------- */
.acr-rates-notes-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 2rem;
}

/* --------------------------------------------------------------------
   Single vehicle
   -------------------------------------------------------------------- */
.acr-vehicle-single-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: start;
}
.acr-vehicle-single-media {
	background: var(--c-sand);
	border-radius: var(--radius);
	padding: 2rem;
}
.acr-vehicle-single-cta {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	margin-top: 1.5rem;
	flex-wrap: wrap;
}

@media (max-width: 899.98px) {
	.acr-vehicle-single-grid {
		grid-template-columns: 1fr;
	}
}

/* --------------------------------------------------------------------
   404
   -------------------------------------------------------------------- */
.acr-404-inner {
	text-align: center;
	max-width: 600px;
	margin-inline: auto;
	padding-block: 3rem;
}
.acr-404 .acr-hero-actions {
	justify-content: center;
}

/* --------------------------------------------------------------------
   Prose (generic pages, privacy policy, terms)
   -------------------------------------------------------------------- */
.acr-prose {
	max-width: 780px;
}
.acr-prose h2 {
	margin-top: 1.75em;
}
.acr-prose ul,
.acr-prose ol {
	padding-left: 1.4rem;
	margin-bottom: 1em;
}
.acr-prose li {
	list-style: revert;
	margin-bottom: 0.4em;
}
.acr-prose a {
	color: var(--c-brick);
	text-decoration: underline;
}

/* --------------------------------------------------------------------
   Search form (used only if search is enabled)
   -------------------------------------------------------------------- */
.acr-search-form {
	display: flex;
	gap: 0.5rem;
}
.acr-search-field {
	flex: 1;
	padding: 0.7em 1em;
	border: 1px solid var(--c-line);
	border-radius: var(--radius-sm);
}
.acr-search-submit {
	background: var(--c-asphalt);
	color: #fff;
	border: none;
	border-radius: var(--radius-sm);
	padding: 0.7em 1.2em;
	cursor: pointer;
}

/* --------------------------------------------------------------------
   Comments (blog fallback)
   -------------------------------------------------------------------- */
.acr-comments {
	margin-top: 3rem;
	border-top: 1px solid var(--c-line);
	padding-top: 2rem;
}

/* --------------------------------------------------------------------
   Scroll-reveal utility (progressive enhancement, JS adds .is-visible)
   -------------------------------------------------------------------- */
.acr-reveal {
	opacity: 0;
	transform: translateY(16px);
	transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.acr-reveal.is-visible {
	opacity: 1;
	transform: none;
}
@media (prefers-reduced-motion: reduce) {
	.acr-reveal {
		opacity: 1;
		transform: none;
	}
}
