/* Roadside Tech: automotive black & gold theme */

*,
*::before,
*::after {
	box-sizing: border-box;
}

:root {
	--void: #050505;
	--void-2: #0c0c0c;
	--void-3: #141414;
	--ink: #f2f0eb;
	--ink-muted: rgba(242, 240, 235, 0.72);
	--ink-soft: rgba(242, 240, 235, 0.55);
	--gold-400: #f0c56a;
	--gold-500: #e8b059;
	--gold-600: #d4a03a;
	--amber: #ff9f1c;
	--font-display: "Segoe UI", Arial, system-ui, sans-serif;
	--font-sans: "Segoe UI", Arial, system-ui, sans-serif;
	--wrap: 75rem;
	--radius-sm: 0.5rem;
	--radius-md: 0.75rem;
	--radius-lg: 1rem;
	--radius-xl: 1.35rem;
	--shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.4);
	--shadow-md: 0 18px 50px rgba(0, 0, 0, 0.5);
	--ease-out: cubic-bezier(0.22, 1, 0.36, 1);
	color-scheme: dark;
}

html {
	scroll-behavior: smooth;
}

::selection {
	background: rgba(232, 176, 89, 0.35);
	color: #fff;
}

body {
	margin: 0;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	font-family: var(--font-sans);
	font-size: 1rem;
	line-height: 1.65;
	color: var(--ink);
	-webkit-font-smoothing: antialiased;
	background-color: var(--void);
	background-image:
		radial-gradient(ellipse 100% 60% at 50% -10%, rgba(232, 176, 89, 0.08), transparent 55%),
		linear-gradient(180deg, #030303 0%, #080808 50%, #050505 100%);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
	outline: 2px solid var(--gold-500);
	outline-offset: 3px;
}

.skip-link {
	position: absolute;
	left: 1rem;
	top: 1rem;
	z-index: 10001;
	padding: 0.5rem 1rem;
	background: #fff;
	color: var(--void);
	border-radius: 0.375rem;
	transform: translateY(-200%);
	transition: transform 0.15s;
}

.skip-link:focus {
	transform: translateY(0);
}

.wrap {
	max-width: var(--wrap);
	margin-left: auto;
	margin-right: auto;
	padding-left: max(1rem, env(safe-area-inset-left));
	padding-right: max(1rem, env(safe-area-inset-right));
}

@media (min-width: 640px) {
	.wrap {
		padding-left: max(1.5rem, env(safe-area-inset-left));
		padding-right: max(1.5rem, env(safe-area-inset-right));
	}
}

.narrow-wrap {
	max-width: 48rem;
}

.main {
	flex: 1;
	padding-bottom: 5.5rem;
}

.main--inner {
	background: radial-gradient(ellipse 100% 40% at 50% 0%, rgba(232, 176, 89, 0.05), transparent 55%);
}

@media (min-width: 768px) {
	.main {
		padding-bottom: 0;
	}
}

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

.label-gold {
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--gold-400);
}

.section {
	padding-top: 3.5rem;
	padding-bottom: 3.5rem;
}

.section--border {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.section--surface {
	background: rgba(255, 255, 255, 0.02);
}

.section-head {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 2rem;
}

.section-head--center {
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.section-title {
	margin: 0.35rem 0 0;
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 800;
	letter-spacing: -0.03em;
	color: #fff;
}

.section-title--lg {
	font-size: clamp(1.75rem, 4vw, 2.35rem);
}

.section-head__lead {
	margin: 0.75rem 0 0;
	max-width: 38rem;
}

.link-cta {
	font-weight: 700;
	color: var(--gold-400);
	text-decoration: none;
	white-space: nowrap;
}

.link-cta:hover {
	color: #fff;
}

/* Header */
.site-header {
	position: sticky;
	top: 0;
	z-index: 40;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(5, 5, 5, 0.94);
	backdrop-filter: blur(12px);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
}

.site-header__inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding-top: 0.75rem;
	padding-bottom: 0.75rem;
}

.site-header__brand {
	display: flex;
	align-items: center;
	flex-shrink: 0;
	max-width: min(100%, 12.5rem);
	text-decoration: none;
	color: inherit;
}

.site-header__logo {
	display: block;
	height: 2.85rem;
	width: auto;
	max-width: 100%;
	object-fit: contain;
	object-position: left center;
}

@media (min-width: 768px) {
	.site-header__inner {
		padding-top: 1rem;
		padding-bottom: 1rem;
	}

	.site-header__brand {
		max-width: min(100%, 20rem);
	}

	.site-header__logo {
		height: 4.25rem;
	}
}

.site-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 0.15rem;
	padding: 0.3rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-link {
	padding: 0.45rem 0.85rem;
	font-size: 0.8125rem;
	font-weight: 600;
	text-decoration: none;
	color: var(--ink-muted);
	border-radius: 999px;
	transition: background 0.2s, color 0.2s;
}

.nav-link:hover {
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
}

.nav-link--active {
	background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
	color: var(--void);
}

@media (max-width: 639px) {
	.site-nav {
		width: 100%;
		justify-content: center;
	}
}

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.85rem 1.5rem;
	font-size: 0.9375rem;
	font-weight: 700;
	text-decoration: none;
	border: none;
	border-radius: 999px;
	cursor: pointer;
	transition: transform 0.2s var(--ease-out), box-shadow 0.2s, background 0.2s;
}

.btn--block {
	width: 100%;
}

.btn--primary,
.btn--hero-primary {
	background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
	color: var(--void);
	box-shadow: 0 0 32px rgba(232, 176, 89, 0.3);
}

.btn--primary:hover,
.btn--hero-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 0 40px rgba(232, 176, 89, 0.45);
}

.btn--outline,
.btn--hero-outline {
	background: transparent;
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn--outline:hover,
.btn--hero-outline:hover {
	border-color: var(--gold-500);
	color: var(--gold-400);
}

.btn--gold {
	background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
	color: var(--void);
}

.btn--hero-primary {
	font-size: 1.125rem;
	padding: 1rem 1.75rem;
}

/* Hero */
.hero {
	position: relative;
	overflow: hidden;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	min-height: min(80vh, 50rem);
	display: flex;
	align-items: center;
}

.hero__media {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(105deg, rgba(5, 5, 5, 0.95) 0%, rgba(5, 5, 5, 0.75) 42%, rgba(5, 5, 5, 0.35) 100%),
		linear-gradient(to top, rgba(5, 5, 5, 0.9) 0%, transparent 50%),
		url("../images/hero.jpg") center / cover no-repeat;
}

.hero__fx {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: radial-gradient(ellipse 50% 40% at 20% 50%, rgba(255, 159, 28, 0.12), transparent 60%);
}

.hero__inner {
	position: relative;
	z-index: 2;
	width: 100%;
	padding: 3rem 0 4rem;
}

.hero__content {
	max-width: 42rem;
}

.hero__wordmark {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 0.2em 0.45em;
	margin: 0 0 1rem;
	font-size: clamp(2.75rem, 7vw, 4.75rem);
	font-weight: 900;
	line-height: 0.92;
	letter-spacing: -0.045em;
	text-transform: uppercase;
}

.hero__wordmark-line {
	display: block;
	color: #fff;
	text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
}

.hero__wordmark-line--gold {
	background: linear-gradient(120deg, #fff4d6 0%, var(--gold-400) 35%, var(--gold-600) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	filter: drop-shadow(0 2px 12px rgba(232, 176, 89, 0.35));
}

.hero__wordmark::after {
	content: "";
	display: block;
	width: 4.5rem;
	height: 3px;
	margin-top: 1rem;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--gold-500), transparent);
}

.hero__eyebrow {
	margin: 0 0 0.75rem;
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--gold-400);
}

.hero h1 {
	margin: 0;
	font-size: clamp(2rem, 5vw, 3.25rem);
	font-weight: 900;
	line-height: 1.08;
	letter-spacing: -0.03em;
	color: #fff;
}

.hero__lead {
	margin: 1.25rem 0 0;
	font-size: 1.125rem;
	color: var(--ink-muted);
	max-width: 36rem;
}

.hero__sub {
	margin: 0.75rem 0 0;
	font-size: 0.9375rem;
	color: var(--ink-soft);
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 1.75rem;
}

.hero__proof {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(9rem, 1fr));
	gap: 1rem;
	margin-top: 2rem;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero__proof div span {
	display: block;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--gold-400);
	margin-bottom: 0.25rem;
}

.hero__proof div strong {
	font-size: 0.9375rem;
	color: #fff;
}

/* Trust strip */
.trust-strip {
	padding: 1.25rem 0;
	background: linear-gradient(90deg, rgba(232, 176, 89, 0.08), rgba(255, 159, 28, 0.04), rgba(232, 176, 89, 0.08));
	border-bottom: 1px solid rgba(232, 176, 89, 0.15);
}

.trust-strip__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
	gap: 1rem;
	text-align: center;
}

.trust-strip__item strong {
	display: block;
	font-size: 0.875rem;
	color: #fff;
	margin-bottom: 0.15rem;
}

.trust-strip__item span {
	font-size: 0.75rem;
	color: var(--ink-muted);
}

/* Cards */
.card {
	padding: 1.75rem;
	border-radius: var(--radius-lg);
	background: linear-gradient(155deg, rgba(20, 20, 20, 0.95), rgba(10, 10, 10, 0.9));
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: var(--shadow-sm);
}

.card--philosophy {
	border-color: rgba(232, 176, 89, 0.25);
	background: linear-gradient(155deg, rgba(232, 176, 89, 0.08), rgba(10, 10, 10, 0.95));
}

.card--philosophy blockquote {
	margin: 0;
	font-size: 1.125rem;
	font-style: italic;
	color: #fff;
}

/* Service grid */
.service-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
	gap: 1.25rem;
}

.service-card {
	display: flex;
	flex-direction: column;
	padding: 1.5rem;
	border-radius: var(--radius-lg);
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.1);
	text-decoration: none;
	color: inherit;
	transition: border-color 0.2s, transform 0.2s var(--ease-out);
}

.service-card:hover {
	border-color: rgba(232, 176, 89, 0.45);
	transform: translateY(-4px);
}

.service-card__icon {
	width: 2.5rem;
	height: 2.5rem;
	margin-bottom: 1rem;
	color: var(--gold-400);
}

.service-card h3 {
	margin: 0 0 0.5rem;
	font-size: 1.125rem;
	color: #fff;
}

.service-card p {
	margin: 0;
	flex: 1;
	font-size: 0.875rem;
	color: var(--ink-muted);
}

.service-card__link {
	margin-top: 1rem;
	font-size: 0.8125rem;
	font-weight: 700;
	color: var(--gold-400);
}

/* Why grid */
.why-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
	gap: 1.25rem;
}

.why-card h3 {
	margin: 0 0 0.5rem;
	font-size: 1.0625rem;
	color: #fff;
}

.why-card p {
	margin: 0;
	font-size: 0.9375rem;
	color: var(--ink-muted);
}

/* Two col */
.two-col {
	display: grid;
	gap: 2rem;
}

@media (min-width: 768px) {
	.two-col {
		grid-template-columns: 1fr 1fr;
		align-items: start;
	}
}

/* Testimonials */
.testimonial-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr));
	gap: 1.25rem;
}

.testimonial-card {
	position: relative;
	padding: 1.5rem;
	border-radius: var(--radius-lg);
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.testimonial-card__mark {
	font-size: 2.5rem;
	line-height: 1;
	color: var(--gold-500);
	opacity: 0.5;
}

.testimonial-card blockquote {
	margin: 0;
}

.testimonial-card blockquote p {
	margin: 0;
	font-size: 0.9375rem;
}

.review-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.5rem 0.75rem;
	margin-top: 1rem;
}

.review-byline {
	margin: 0.35rem 0 0;
	font-size: 0.75rem;
	color: var(--ink-soft);
}

.quote-block__reply {
	margin: 1rem 0 0;
	padding: 1rem 1.25rem;
	border-left: 3px solid rgba(232, 176, 89, 0.45);
	background: rgba(255, 255, 255, 0.03);
	border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
	font-size: 0.875rem;
}

.quote-block__reply cite {
	display: block;
	margin-top: 0.5rem;
	font-style: normal;
	font-size: 0.75rem;
	color: var(--ink-soft);
}


.review-stars {
	font-size: 0.875rem;
	letter-spacing: 0.08em;
	color: var(--gold-400);
	line-height: 1;
}

.testimonial-card__by {
	margin: 0;
	font-size: 0.8125rem;
	font-weight: 600;
}

.testimonial-card__by a,
.quote-block__by a {
	color: var(--gold-400);
	text-decoration: none;
}

.testimonial-card__by a:hover,
.quote-block__by a:hover {
	color: #fff;
}

.quote-block {
	padding: 1.75rem 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.quote-block:last-of-type {
	border-bottom: none;
}

.quote-block__mark {
	font-size: 2.5rem;
	color: var(--gold-500);
	opacity: 0.45;
}

.quote-block__text {
	margin: 0;
	font-size: 1rem;
}

.quote-block__by {
	margin: 1rem 0 0;
	font-size: 0.875rem;
}

/* CTA band */
.cta-band {
	position: relative;
	padding: 3rem 0;
	background: linear-gradient(135deg, rgba(232, 176, 89, 0.12), rgba(5, 5, 5, 0.95));
	border-top: 1px solid rgba(232, 176, 89, 0.2);
	border-bottom: 1px solid rgba(232, 176, 89, 0.2);
}

.cta-band__inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
}

.cta-band h2 {
	margin: 0;
	font-size: clamp(1.5rem, 3vw, 2rem);
	color: #fff;
}

.cta-band__eyebrow {
	margin: 0 0 0.35rem;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--gold-400);
}

/* Area pills */
.area-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-top: 1rem;
}

.area-pill {
	padding: 0.4rem 0.85rem;
	font-size: 0.8125rem;
	font-weight: 600;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	color: var(--ink-muted);
}

/* Page hero (inner) */
.page-hero {
	padding: 3rem 0 2.5rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(232, 176, 89, 0.07), transparent 60%);
}

.page-hero h1 {
	margin: 0.5rem 0 0;
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: 900;
	color: #fff;
	letter-spacing: -0.03em;
}

.page-hero .lead {
	margin: 1rem 0 0;
	font-size: 1.0625rem;
	max-width: 40rem;
}

.breadcrumbs {
	margin: 0 0 0.5rem;
	font-size: 0.8125rem;
	color: var(--ink-soft);
}

.breadcrumbs a {
	color: var(--gold-400);
	text-decoration: none;
}

/* Service detail */
.service-detail {
	max-width: 44rem;
}

.service-detail h2 {
	margin: 2rem 0 0.75rem;
	font-size: 1.25rem;
	color: #fff;
}

.service-detail p,
.service-detail li {
	color: var(--ink-muted);
}

.service-detail ul {
	padding-left: 1.25rem;
}

.expect-list {
	list-style: none;
	padding: 0;
	margin: 1rem 0 0;
}

.expect-list li {
	position: relative;
	padding-left: 1.5rem;
	margin-bottom: 0.5rem;
}

.expect-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.55rem;
	width: 0.5rem;
	height: 0.5rem;
	border-radius: 50%;
	background: var(--gold-500);
}

/* FAQ */
.faq-list {
	margin-top: 2rem;
}

.faq-item {
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--radius-md);
	margin-bottom: 0.75rem;
	background: rgba(255, 255, 255, 0.02);
	overflow: hidden;
}

.faq-item summary {
	padding: 1rem 1.25rem;
	font-weight: 700;
	color: #fff;
	cursor: pointer;
	list-style: none;
}

.faq-item summary::-webkit-details-marker {
	display: none;
}

.faq-item summary::after {
	content: "+";
	float: right;
	color: var(--gold-400);
}

.faq-item[open] summary::after {
	content: "−";
}

.faq-item__body {
	padding: 0 1.25rem 1rem;
	font-size: 0.9375rem;
	color: var(--ink-muted);
}

/* Contact */
.form-panel {
	padding: 1.75rem;
	border-radius: var(--radius-lg);
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-intro {
	margin: 0 0 1rem;
	font-size: 0.875rem;
}

.form-group {
	margin-bottom: 1rem;
}

.form-group label {
	display: block;
	margin-bottom: 0.35rem;
	font-size: 0.875rem;
	font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
	width: 100%;
	padding: 0.75rem 1rem;
	font: inherit;
	color: var(--ink);
	background: rgba(0, 0, 0, 0.4);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: var(--radius-sm);
}

.form-group textarea {
	min-height: 8rem;
	resize: vertical;
}

.required {
	color: var(--gold-400);
}

.hp {
	position: absolute;
	left: -9999px;
	opacity: 0;
	pointer-events: none;
}

.alert {
	padding: 0.85rem 1rem;
	border-radius: var(--radius-sm);
	font-size: 0.875rem;
}

.alert--ok {
	background: rgba(232, 176, 89, 0.15);
	border: 1px solid rgba(232, 176, 89, 0.35);
	color: #fff;
}

.contact-stack {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.contact-dl dt {
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--gold-400);
	margin-top: 0.75rem;
}

.contact-dl dt:first-child {
	margin-top: 0;
}

.contact-dl dd {
	margin: 0.25rem 0 0;
}

.contact-dl a {
	color: #fff;
}

/* Footer */
.site-footer {
	margin-top: auto;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(0, 0, 0, 0.5);
}

.site-footer__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
	gap: 2rem;
	padding: 2.5rem 0;
}

.site-footer__name {
	margin: 0;
	font-size: 1.0625rem;
	font-weight: 800;
	color: var(--gold-400);
}

.site-footer__muted {
	margin: 0.5rem 0 0;
	font-size: 0.875rem;
	color: var(--ink-muted);
}

.site-footer__label {
	margin: 0;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--gold-400);
}

.site-footer__list {
	margin: 0.5rem 0 0;
	padding: 0;
	list-style: none;
	font-size: 0.875rem;
	color: var(--ink-muted);
}

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

.site-footer a:hover {
	color: var(--gold-400);
}

.site-footer__bottom {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 0.75rem;
	padding: 1.25rem 0 1.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	font-size: 0.8125rem;
	color: var(--ink-soft);
}

@media (max-width: 767px) {
	.site-footer__bottom {
		padding-bottom: 5.5rem;
	}
}

/* Mobile CTA */
.mobile-cta {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 50;
	display: flex;
	gap: 0.5rem;
	padding: 0.65rem max(0.75rem, env(safe-area-inset-left)) max(0.65rem, env(safe-area-inset-bottom)) max(0.75rem, env(safe-area-inset-right));
	background: rgba(5, 5, 5, 0.96);
	border-top: 1px solid rgba(232, 176, 89, 0.25);
	backdrop-filter: blur(10px);
}

@media (min-width: 768px) {
	.mobile-cta {
		display: none;
	}
}

.mobile-cta a {
	flex: 1;
	padding: 0.75rem 0.5rem;
	font-size: 0.875rem;
}

/* Prose / privacy */
.prose h2 {
	margin: 2rem 0 0.75rem;
	font-size: 1.125rem;
	color: #fff;
}

.prose p {
	color: var(--ink-muted);
}

.page-title-h1 {
	margin: 0;
	font-size: clamp(1.75rem, 4vw, 2.25rem);
	color: #fff;
}

.privacy-updated {
	margin: 0.5rem 0 1.5rem;
	font-size: 0.875rem;
}

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

/* Video embeds */
.video-panel {
	margin-top: 2rem;
}

.section > .video-panel {
	max-width: 40rem;
	margin-top: 2.5rem;
	margin-left: auto;
	margin-right: auto;
	padding-left: max(1rem, env(safe-area-inset-left));
	padding-right: max(1rem, env(safe-area-inset-right));
	text-align: center;
}

@media (min-width: 640px) {
	.section > .video-panel {
		padding-left: max(1.5rem, env(safe-area-inset-left));
		padding-right: max(1.5rem, env(safe-area-inset-right));
	}
}

.video-panel h2 {
	margin: 0 0 0.75rem;
	font-size: 1.125rem;
	color: #fff;
}

.video-panel p {
	margin: 0 0 1rem;
	font-size: 0.9375rem;
	color: var(--ink-muted);
}

.video-grid {
	display: grid;
	gap: 1.5rem;
}

@media (min-width: 768px) {
	.video-grid--two {
		grid-template-columns: 1fr 1fr;
	}
}

.video-embed {
	position: relative;
	width: 100%;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	border-radius: var(--radius-lg);
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: #000;
}

.video-embed iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.quote-block__text--truncated::after,
.testimonial-card__excerpt--truncated::after {
	content: none;
}
.js .reveal-on-scroll {
	opacity: 0;
	transform: translateY(1.35rem);
	transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
	transition-delay: var(--reveal-delay, 0ms);
}

.js .reveal-on-scroll.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.js .reveal-on-scroll[data-reveal="scale"] {
	transform: translateY(1rem) scale(0.985);
}

.js .reveal-on-scroll[data-reveal="scale"].is-visible {
	transform: translateY(0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
	.js .reveal-on-scroll {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

/* Mobile: stranded motorists on the road */
@media (max-width: 767px) {
	.hero {
		min-height: auto;
	}

	.hero__inner {
		padding: 1.75rem 0 2.5rem;
	}

	.hero h1 {
		font-size: clamp(1.65rem, 7.5vw, 2.35rem);
	}

	.hero__lead {
		font-size: 1rem;
	}

	.hero__actions {
		flex-direction: column;
	}

	.hero__actions .btn {
		width: 100%;
		min-height: 3.125rem;
		font-size: 1.0625rem;
	}

	.hero__proof {
		grid-template-columns: 1fr;
		gap: 0.75rem;
	}

	.trust-strip__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 0.65rem;
	}

	.trust-strip__item strong {
		font-size: 0.8125rem;
	}

	.testimonial-grid {
		grid-template-columns: 1fr;
	}

	.testimonial-card {
		padding: 1.25rem;
	}

	.testimonial-card blockquote p,
	.quote-block__text {
		font-size: 1rem;
		line-height: 1.65;
	}

	.cta-band__inner {
		flex-direction: column;
		text-align: center;
	}

	.cta-band__action {
		width: 100%;
	}

	.cta-band__action .btn {
		width: 100%;
		min-height: 3.125rem;
	}

	.mobile-cta__call {
		flex: 1.5;
		font-size: 1rem;
		font-weight: 800;
		min-height: 3.125rem;
	}

	.mobile-cta__email {
		min-height: 3.125rem;
	}

	.site-header__inner {
		gap: 0.65rem;
	}

	.site-header__brand {
		justify-content: center;
		max-width: none;
	}

	.site-header__logo {
		height: 2.5rem;
	}

	.hero__wordmark {
		font-size: clamp(2.25rem, 11vw, 3.25rem);
	}

	.hero__wordmark::after {
		width: 3.5rem;
		margin-top: 0.85rem;
	}

	.site-nav {
		justify-content: flex-start;
		overflow-x: auto;
		flex-wrap: nowrap;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
	}

	.site-nav::-webkit-scrollbar {
		display: none;
	}

	.nav-link {
		white-space: nowrap;
		flex-shrink: 0;
		padding: 0.5rem 0.9rem;
	}

	.section {
		padding-top: 2.5rem;
		padding-bottom: 2.5rem;
	}

	.form-group input,
	.form-group textarea,
	.form-group select {
		font-size: 16px;
		min-height: 3rem;
	}

	.service-grid {
		grid-template-columns: 1fr;
	}

	.page-hero {
		padding: 2rem 0 1.75rem;
	}
}
