:root {
	--bg: #0f1419;
	--bg-alt: #151d25;
	--panel: #1e2832;
	--panel-soft: #273441;
	--line: #3a4959;
	--ink: #eef3f7;
	--ink-soft: #9cb0c3;
	--accent: #f7931a;
	--accent-deep: #cd6c00;
	--ring: rgba(247, 147, 26, 0.35);
}

* {
	box-sizing: border-box;
}

html,
body {
	margin: 0;
	padding: 0;
}

body {
	font-family: "Manrope", "Segoe UI", sans-serif;
	color: var(--ink);
	background:
		linear-gradient(120deg, rgba(247, 147, 26, 0.08), transparent 35%),
		linear-gradient(320deg, rgba(247, 147, 26, 0.06), transparent 30%),
		var(--bg);
	line-height: 1.6;
}

h1,
h2,
h3 {
	font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
	margin: 0;
	letter-spacing: 0.02em;
}

a {
	color: inherit;
}

.site-shell,
.content-shell {
	width: min(1120px, 92vw);
	margin: 0 auto;
	padding: 2rem 0 4.5rem;
}

.template-homepage .site-shell {
	padding-top: 1rem;
	padding-bottom: 2.4rem;
}

.topline {
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: var(--ink-soft);
	border-bottom: 1px solid var(--line);
	padding-bottom: 0.8rem;
}

.topline p {
	margin: 0;
}

.topline a {
	text-decoration: none;
	color: var(--accent);
	font-weight: 700;
}

.hero {
	margin-top: 1.4rem;
	background: linear-gradient(145deg, #1f2a35, #182029);
	border: 1px solid var(--line);
	border-radius: 1rem;
	padding: clamp(1.2rem, 3vw, 2.6rem);
	display: grid;
	grid-template-columns: 1.45fr 1fr;
	gap: 1.2rem;
	box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3);
}

.eyebrow {
	color: var(--accent);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-weight: 700;
	margin-bottom: 0.7rem;
	font-size: 0.8rem;
}

.hero h1 {
	font-size: clamp(2.1rem, 6vw, 4.3rem);
	line-height: 0.94;
	max-width: none;
	text-wrap: pretty;
}

.hero-copy {
	margin-top: 0.8rem;
	max-width: 60ch;
	color: var(--ink-soft);
}

.hero-actions {
	margin-top: 1.3rem;
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

@media (min-width: 961px) {
	.hero-copy-wrap {
		display: flex;
		flex-direction: column;
		justify-content: center;
	}
}

.btn-primary,
.btn-ghost {
	text-decoration: none;
	border-radius: 0.5rem;
	padding: 0.68rem 1.05rem;
	font-weight: 800;
	letter-spacing: 0.01em;
	transition: transform 0.2s ease, background-color 0.2s ease;
}

.btn-primary {
	color: #101419;
	background: var(--accent);
}

.btn-primary:hover {
	transform: translateY(-2px);
	background: #ffac44;
}

.btn-ghost {
	border: 1px solid var(--line);
	color: var(--ink);
	background: rgba(255, 255, 255, 0.03);
}

.btn-ghost:hover {
	transform: translateY(-2px);
	background: rgba(255, 255, 255, 0.08);
}

.hero-panel {
	background: linear-gradient(165deg, #24313d, #202a34);
	border: 1px solid var(--line);
	border-radius: 0.8rem;
	padding: 0;
	overflow: hidden;
	min-height: 320px;
}

.panel-label {
	margin: 0;
	text-transform: uppercase;
	color: var(--ink-soft);
	font-size: 0.75rem;
	letter-spacing: 0.06em;
}

.panel-main {
	margin: 0.35rem 0;
	color: var(--accent);
	font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
	font-size: 2.2rem;
	font-weight: 700;
}

.panel-sub {
	margin: 0;
	color: var(--ink-soft);
}

.hero-panel ul {
	margin: 0.8rem 0 0;
	padding-left: 1.1rem;
}

.hero-panel li {
	margin-top: 0.35rem;
}

.hero-panel-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.metrics {
	margin-top: 1.2rem;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.9rem;
}

.metrics article {
	background: var(--panel);
	border: 1px solid var(--line);
	border-radius: 0.8rem;
	padding: 0.9rem 1rem;
}

.metric-value {
	margin: 0;
	color: var(--accent);
	font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
	font-size: 2rem;
	font-weight: 700;
	line-height: 0.95;
}

.metric-label {
	margin: 0.45rem 0 0;
	color: var(--ink-soft);
}

.about,
.services-list-section,
.reviews-section,
.stories,
.contact-banner {
	margin-top: 1.2rem;
	background: var(--panel);
	border: 1px solid var(--line);
	border-radius: 0.8rem;
	padding: 1.1rem;
}

.about h2,
.services-list-section h2,
.reviews-section h2,
.stories h2,
.contact-banner h2 {
	font-size: clamp(1.5rem, 3vw, 2rem);
	margin-bottom: 0.5rem;
}

.about p,
.stories p,
.contact-banner p {
	color: var(--ink-soft);
}

.about a {
	color: #ffc36d;
}

.services-accordion {
	margin-top: 0.5rem;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 0.65rem;
}

.service-item {
	border: 1px solid var(--line);
	border-radius: 0.7rem;
	overflow: hidden;
	background: #18212a;
}

.service-toggle {
	width: 100%;
	background: transparent;
	border: 0;
	color: var(--ink);
	padding: 0.85rem 0.95rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	font: inherit;
	font-weight: 700;
	cursor: pointer;
	text-align: left;
}

.service-toggle:hover {
	background: rgba(255, 255, 255, 0.03);
}

.service-toggle-icon {
	color: var(--accent);
	font-size: 1.3rem;
	line-height: 1;
	font-weight: 700;
}

.service-toggle[aria-expanded="true"] .service-toggle-icon {
	transform: rotate(45deg);
}

.service-toggle[aria-expanded="true"] {
	background: rgba(247, 147, 26, 0.1);
}

.services-panels {
	margin-top: 0.85rem;
}

.service-detail {
	border: 1px solid var(--line);
	border-radius: 0.75rem;
	background: #141c25;
	padding: 0.85rem 0.95rem 1rem;
}

.service-detail-body {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 1rem;
	align-items: start;
}

.service-detail-copy,
.service-detail-copy p {
	color: var(--ink-soft);
}

.service-detail-copy p:first-child {
	margin-top: 0;
}

.service-detail-image-wrap {
	border: 1px solid var(--line);
	border-radius: 0.6rem;
	overflow: hidden;
	min-height: 180px;
	background: #121923;
}

.service-detail-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.services-empty {
	margin: 0;
	color: var(--ink-soft);
}

.reviews-head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 0.8rem;
	flex-wrap: wrap;
}

.reviews-grid {
	margin-top: 0.8rem;
	display: flex;
	overflow-x: auto;
	overflow-y: hidden;
	padding-bottom: 0.25rem;
	scroll-snap-type: x proximity;
	-webkit-overflow-scrolling: touch;
	gap: 0.8rem;
	scrollbar-width: thin;
	scrollbar-color: var(--accent) #101821;
}

.reviews-grid::-webkit-scrollbar {
	height: 10px;
}

.reviews-grid::-webkit-scrollbar-track {
	background: #101821;
	border-radius: 999px;
}

.reviews-grid::-webkit-scrollbar-thumb {
	background: linear-gradient(90deg, var(--accent), #ffb35b);
	border-radius: 999px;
	border: 2px solid #101821;
}

.reviews-grid::-webkit-scrollbar-thumb:hover {
	background: linear-gradient(90deg, #ffac44, #ffd09a);
}

.reviews-summary {
	margin-top: 0.5rem;
	display: flex;
	gap: 0.8rem;
	flex-wrap: wrap;
	align-items: baseline;
}

.reviews-place {
	margin: 0;
	font-weight: 700;
	color: var(--ink);
}

.reviews-score {
	margin: 0;
	color: var(--ink-soft);
}

.review-card {
	flex: 0 0 min(320px, 82vw);
	scroll-snap-align: start;
	background: #18212a;
	border: 1px solid var(--line);
	border-radius: 0.7rem;
	padding: 0.9rem 1rem;
}

.reviewer-name {
	margin: 0;
	font-weight: 700;
	color: var(--ink);
}

.review-rating {
	margin: 0.2rem 0 0;
	font-weight: 700;
	color: var(--accent);
}

.review-text {
	margin-top: 0.55rem;
	color: var(--ink-soft);
}

.reviews-empty {
	margin: 0;
	color: var(--ink-soft);
}

.contact-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
	gap: 1rem;
	align-items: start;
}

.garage-contact-panel {
	margin-top: 0;
	padding-top: 0.35rem;
}

.garage-name {
	margin: 0 0 0.85rem;
	padding-bottom: 0.75rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
	font-size: clamp(1.55rem, 3vw, 2.1rem);
	line-height: 1;
	color: var(--ink);
}

.garage-contact-grid {
	display: grid;
	grid-template-columns: minmax(220px, 1.2fr) repeat(2, minmax(160px, 0.9fr));
	gap: 0.8rem 0.9rem;
	align-items: start;
}

.garage-detail-block {
	min-width: 0;
}

.garage-detail-address {
	grid-column: 1;
}

.garage-detail-phone {
	grid-column: 3;
}

.garage-detail-hours {
	grid-column: 2;
}

.garage-detail-label {
	margin: 0 0 0.3rem;
	color: var(--accent);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 0.75rem;
	font-weight: 800;
}

.garage-detail-value {
	margin: 0;
	color: var(--ink-soft);
	line-height: 1.7;
}

.contact-actions {
	margin-top: 0.9rem;
	display: flex;
	gap: 0.7rem;
	flex-wrap: wrap;
}

.map-embed-wrap {
	position: relative;
	margin-top: 0;
	width: 100%;
	border: 1px solid var(--line);
	border-radius: 0.8rem;
	overflow: hidden;
	background: #121923;
	min-height: 320px;
}

.map-embed-frame {
	width: 100%;
	height: 320px;
	border: 0;
	display: block;
}

.map-embed-link {
	position: absolute;
	inset: 0;
	z-index: 2;
}

@media (max-width: 760px) {
	.service-detail-body {
		grid-template-columns: 1fr;
	}

	.garage-contact-grid {
		grid-template-columns: 1fr;
	}

	.garage-detail-address,
	.garage-detail-phone,
	.garage-detail-hours {
		grid-column: auto;
	}

	.map-embed-wrap,
	.map-embed-frame {
		min-height: 300px;
		height: 300px;
	}
}

@media (max-width: 1100px) {
	.contact-layout {
		grid-template-columns: 1fr;
	}

	.map-embed-wrap {
		margin-top: 1rem;
		min-height: 300px;
	}

	.map-embed-frame {
		height: 300px;
	}
}

.service-grid {
	margin-top: 1.2rem;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.9rem;
}

.service-card {
	background: linear-gradient(160deg, var(--panel), var(--panel-soft));
	border: 1px solid var(--line);
	border-radius: 0.8rem;
	padding: 1rem;
}

.service-card h3 {
	font-size: 1.45rem;
	color: #ffe2bd;
}

.service-card p {
	color: var(--ink-soft);
	margin-top: 0.45rem;
}

.stories-head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	flex-wrap: wrap;
}

.stories-head input {
	min-width: min(340px, 100%);
	background: #111922;
	color: var(--ink);
	border: 1px solid var(--line);
	border-radius: 0.45rem;
	padding: 0.62rem 0.75rem;
}

.stories-head input:focus {
	outline: 2px solid transparent;
	box-shadow: 0 0 0 4px var(--ring);
}

.story-grid {
	margin-top: 1rem;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
	gap: 0.9rem;
}

.story-card {
	background: #141c25;
	border: 1px solid var(--line);
	border-radius: 0.75rem;
	padding: 0.95rem;
}

.story-card h3 {
	margin-top: 0.2rem;
	font-size: 1.45rem;
}

.story-card p {
	margin-top: 0.45rem;
}

.meta {
	margin: 0;
	color: var(--ink-soft);
	font-size: 0.82rem;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.read-more,
.back-link {
	color: var(--accent);
	text-decoration: none;
	font-weight: 800;
}

.contact-banner {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 1rem;
}

.content-shell {
	background: var(--panel);
	border: 1px solid var(--line);
	border-radius: 0.8rem;
	padding: clamp(1.1rem, 3vw, 2.2rem);
}

.content-shell h1 {
	margin-top: 0.35rem;
	font-size: clamp(2rem, 4vw, 3.2rem);
}

.lead {
	color: var(--ink-soft);
	font-size: 1.1rem;
}

.prose {
	margin-top: 1rem;
}

.prose a {
	color: #ffc36d;
}

.reveal {
	opacity: 0;
	transform: translateY(18px);
}

.reveal.is-visible {
	opacity: 1;
	transform: none;
	transition: opacity 0.55s ease, transform 0.55s ease;
}

@media (max-width: 960px) {
	.hero {
		grid-template-columns: 1fr;
	}

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

	.contact-banner {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 700px) {
	.site-shell,
	.content-shell {
		width: 94vw;
	}

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

	.stories-head input {
		min-width: 100%;
	}
}
