/**
 * Mechanic / Auto Service demo — industrial garage theme
 *
 * Charcoal, steel & safety orange. Service menu + work-order booking split.
 * Inline review strip + shop-sign footer (no testimonial cards / no 3-col footer).
 */

:root {
	--demo-font-body: "Roboto", system-ui, sans-serif;
	--demo-font-display: "Oswald", system-ui, sans-serif;

	--demo-primary: #1c1c1c;
	--demo-primary-soft: #2d2d2d;
	--demo-accent: #ea580c;
	--demo-accent-dark: #c2410c;
	--demo-steel: #52525b;
	--demo-heading: #18181b;
	--demo-text: #3f3f46;
	--demo-muted: #71717a;
	--demo-bg: #f4f4f5;
	--demo-bg-dark: #1c1c1c;
	--demo-surface: #ffffff;
	--demo-border: #d4d4d8;
	--demo-radius-lg: 4px;
	--demo-shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.08);
	--demo-shadow-md: 0 12px 32px rgba(0, 0, 0, 0.15);
}

[data-reveal] {
	opacity: 0;
	transform: translateY(16px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].is-visible {
	opacity: 1;
	transform: none;
}

.demo-mechanic .demo-btn-primary {
	background: var(--demo-accent);
	color: #fff;
	border-radius: var(--demo-radius-lg);
	font-family: var(--demo-font-display);
	font-size: 14px;
	font-weight: 600;
	padding: 14px 28px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	box-shadow: none;
}

.demo-mechanic .demo-btn-primary:hover {
	background: var(--demo-accent-dark);
	transform: translateY(-1px);
	box-shadow: var(--demo-shadow-md);
}

.demo-mechanic .demo-btn-outline {
	border: 2px solid var(--demo-accent);
	color: var(--demo-accent);
	border-radius: var(--demo-radius-lg);
	font-family: var(--demo-font-display);
	font-weight: 600;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	background: transparent;
}

.demo-mechanic .demo-card {
	border-radius: var(--demo-radius-lg);
	border: 1px solid var(--demo-border);
	box-shadow: var(--demo-shadow-sm);
	background: var(--demo-surface);
}

/* Hours bar */
.mech-hours-bar {
	background: var(--demo-primary);
	color: rgba(255, 255, 255, 0.9);
	font-size: 13px;
	padding: 10px 0;
}

.mech-hours-inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.mech-hours-inner strong {
	color: var(--demo-accent);
	font-weight: 700;
}

/* Nav */
.mech-nav {
	background: var(--demo-surface);
	border-bottom: 3px solid var(--demo-accent);
	position: sticky;
	top: 0;
	z-index: 100;
}

.mech-nav.is-scrolled {
	box-shadow: var(--demo-shadow-sm);
}

.mech-nav-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 14px 0;
}

.mech-brand {
	display: flex;
	align-items: center;
	gap: 12px;
}

.mech-brand-icon {
	width: 48px;
	height: 48px;
	background: var(--demo-primary);
	color: var(--demo-accent);
	border-radius: var(--demo-radius-lg);
	display: grid;
	place-items: center;
	font-size: 24px;
}

.mech-brand-text strong {
	display: block;
	font-family: var(--demo-font-display);
	font-size: 1.25rem;
	color: var(--demo-heading);
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.mech-brand-text span {
	font-size: 11px;
	color: var(--demo-muted);
	font-weight: 600;
}

.mech-nav-links {
	display: flex;
	gap: 28px;
}

.mech-nav-links a {
	font-family: var(--demo-font-display);
	font-size: 14px;
	font-weight: 500;
	color: var(--demo-text);
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.mech-nav-links a:hover {
	color: var(--demo-accent);
}

/* Hero */
.mech-hero {
	background: var(--demo-primary-soft);
	color: #fff;
	overflow: hidden;
}

.mech-hero-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: 520px;
}

.mech-hero-copy {
	padding: clamp(48px, 6vw, 72px) clamp(24px, 4vw, 0);
	padding-left: max(24px, calc((100vw - 1140px) / 2 + 20px));
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.mech-hero-tag {
	display: inline-block;
	padding: 6px 12px;
	background: var(--demo-accent);
	color: #fff;
	font-family: var(--demo-font-display);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin-bottom: 20px;
	width: fit-content;
}

.mech-hero-title {
	font-family: var(--demo-font-display);
	font-size: clamp(2.5rem, 5vw, 3.75rem);
	line-height: 1.05;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	margin-bottom: 18px;
	font-weight: 700;
}

.mech-hero-title span {
	color: var(--demo-accent);
}

.mech-hero-lead {
	font-size: 1rem;
	line-height: 1.7;
	opacity: 0.85;
	margin-bottom: 28px;
	max-width: 440px;
}

.mech-hero-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-bottom: 28px;
}

.mech-hero-badge {
	padding: 8px 14px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: var(--demo-radius-lg);
	font-size: 12px;
	font-weight: 600;
}

.mech-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.mech-hero-actions .demo-btn-outline {
	border-color: rgba(255, 255, 255, 0.4);
	color: #fff;
}

.mech-hero-actions .demo-btn-outline:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: #fff;
}

.mech-hero-img {
	position: relative;
	min-height: 320px;
}

.mech-hero-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.mech-hero-img::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, var(--demo-primary-soft) 0%, transparent 30%);
	z-index: 1;
}

/* Service menu board */
.mech-menu {
	background: var(--demo-bg);
	padding: clamp(48px, 6vw, 72px) 0;
}

.mech-menu-board {
	background: var(--demo-primary);
	color: #fff;
	border-radius: var(--demo-radius-lg);
	padding: clamp(32px, 4vw, 48px);
	border-left: 6px solid var(--demo-accent);
}

.mech-menu-board-header {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 32px;
	padding-bottom: 20px;
	border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
}

.mech-menu-board-header h2 {
	font-family: var(--demo-font-display);
	font-size: clamp(1.5rem, 3vw, 2rem);
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.mech-menu-board-header p {
	font-size: 13px;
	opacity: 0.7;
}

.mech-menu-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0;
}

.mech-menu-item {
	display: grid;
	grid-template-columns: 1fr auto auto;
	gap: 16px;
	align-items: baseline;
	padding: 16px 0;
	border-bottom: 1px dotted rgba(255, 255, 255, 0.15);
}

.mech-menu-item:last-child,
.mech-menu-item:nth-last-child(2):nth-child(odd) {
	border-bottom: none;
}

.mech-menu-item h3 {
	font-family: var(--demo-font-display);
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

.mech-menu-item .desc {
	grid-column: 1;
	font-size: 12px;
	opacity: 0.6;
	margin-top: 2px;
}

.mech-menu-item .time {
	font-size: 11px;
	font-weight: 600;
	color: var(--demo-accent);
	white-space: nowrap;
}

.mech-menu-item .price {
	font-family: var(--demo-font-display);
	font-size: 1.125rem;
	color: var(--demo-accent);
	white-space: nowrap;
}

/* ===== WORK ORDER BOOKING (unique) ===== */
.mech-booking-section {
	background: var(--demo-surface);
	padding: clamp(56px, 8vw, 88px) 0;
	border-top: 1px solid var(--demo-border);
	border-bottom: 1px solid var(--demo-border);
}

.mech-booking-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: start;
}

.mech-work-order {
	background: #fffef5;
	border: 2px solid var(--demo-border);
	border-radius: var(--demo-radius-lg);
	padding: 28px;
	font-family: "Courier New", Courier, monospace;
	box-shadow: var(--demo-shadow-sm);
	position: sticky;
	top: 88px;
}

.mech-work-order-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 20px;
	padding-bottom: 16px;
	border-bottom: 2px solid var(--demo-heading);
}

.mech-work-order-header h3 {
	font-family: var(--demo-font-display);
	font-size: 1.125rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--demo-heading);
}

.mech-work-order-no {
	font-size: 11px;
	color: var(--demo-muted);
}

.mech-work-order-fields {
	display: grid;
	gap: 12px;
	margin-bottom: 20px;
	font-size: 13px;
	color: var(--demo-text);
}

.mech-work-order-field {
	display: grid;
	grid-template-columns: 100px 1fr;
	gap: 8px;
}

.mech-work-order-field label {
	font-weight: 700;
	color: var(--demo-muted);
	text-transform: uppercase;
	font-size: 10px;
	letter-spacing: 0.06em;
}

.mech-work-order-checklist {
	border-top: 1px dashed var(--demo-border);
	padding-top: 16px;
}

.mech-work-order-checklist p {
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--demo-muted);
	margin-bottom: 10px;
}

.mech-work-order-checklist ul {
	display: grid;
	gap: 6px;
	font-size: 12px;
	color: var(--demo-text);
}

.mech-work-order-checklist li {
	display: flex;
	align-items: center;
	gap: 8px;
}

.mech-work-order-checklist li::before {
	content: "☐";
	color: var(--demo-accent);
}

.mech-booking-panel {
	background: var(--demo-primary-soft);
	border-radius: var(--demo-radius-lg);
	padding: clamp(28px, 4vw, 36px);
	border-top: 4px solid var(--demo-accent);
}

.mech-booking-panel-header {
	margin-bottom: 24px;
}

.mech-booking-panel-header h2 {
	font-family: var(--demo-font-display);
	font-size: clamp(1.5rem, 3vw, 2rem);
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	margin-bottom: 8px;
}

.mech-booking-panel-header p {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.55;
}

.mech-booking-types {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 24px;
}

.mech-booking-type {
	padding: 8px 14px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: var(--demo-radius-lg);
	font-size: 11px;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.9);
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.demo-mechanic .mech-booking-panel .bookora-wizard {
	max-width: none;
	margin: 0;
	box-shadow: none;
	border: none;
	background: var(--demo-surface);
	padding: 20px;
	border-radius: var(--demo-radius-lg);
	--bookora-primary: #ea580c;
	--bookora-primary-dark: #c2410c;
	--bookora-accent: #1c1c1c;
	--bookora-radius: 4px;
}

.demo-mechanic .mech-booking-panel .demo-shortcode-placeholder {
	border: 2px dashed var(--demo-border);
	border-radius: var(--demo-radius-lg);
	padding: 36px 24px;
	text-align: center;
	background: var(--demo-surface);
}

/* Shop flow */
.mech-flow {
	background: var(--demo-bg);
}

.mech-flow-row {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	position: relative;
}

.mech-flow-row::before {
	content: "";
	position: absolute;
	top: 36px;
	left: 12%;
	right: 12%;
	height: 3px;
	background: var(--demo-border);
	z-index: 0;
}

.mech-flow-step {
	text-align: center;
	padding: 0 16px;
	position: relative;
	z-index: 1;
}

.mech-flow-icon {
	width: 72px;
	height: 72px;
	margin: 0 auto 16px;
	background: var(--demo-surface);
	border: 3px solid var(--demo-accent);
	border-radius: var(--demo-radius-lg);
	display: grid;
	place-items: center;
	font-size: 28px;
}

.mech-flow-step h3 {
	font-family: var(--demo-font-display);
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--demo-heading);
	margin-bottom: 6px;
}

.mech-flow-step p {
	font-size: 13px;
	color: var(--demo-muted);
	line-height: 1.45;
}

/* Trust bar */
.mech-trust-bar {
	background: var(--demo-accent);
	color: #fff;
	padding: 24px 0;
}

.mech-trust-items {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 32px 48px;
	font-family: var(--demo-font-display);
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	font-weight: 600;
}

/* Shop photo */
.mech-shop-photo {
	position: relative;
	aspect-ratio: 21 / 8;
/*	max-height: 360px;*/
	overflow: hidden;
}

.mech-shop-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.mech-shop-caption {
	position: absolute;
	bottom: 24px;
	left: max(24px, calc((100vw - 1140px) / 2 + 20px));
	background: var(--demo-primary);
	color: #fff;
	padding: 12px 20px;
	font-family: var(--demo-font-display);
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

/* Makes */
.mech-makes {
	background: var(--demo-surface);
	padding: 40px 0;
	text-align: center;
}

.mech-makes p {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--demo-muted);
	margin-bottom: 16px;
}

.mech-makes-list {
	font-family: var(--demo-font-display);
	font-size: 1.125rem;
	color: var(--demo-steel);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	line-height: 1.8;
}

/* Reviews — inline strip, NOT cards */
.mech-reviews-strip {
	background: var(--demo-primary);
	color: #fff;
	padding: 40px 0;
	overflow-x: auto;
}

.mech-reviews-inner {
	display: flex;
	gap: 48px;
	min-width: min-content;
	padding: 0 24px;
	justify-content: center;
	flex-wrap: wrap;
}

.mech-review-item {
	flex: 0 0 auto;
	max-width: 320px;
	padding: 0 24px;
	border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.mech-review-item:last-child {
	border-right: none;
}

.mech-review-stars {
	color: var(--demo-accent);
	font-size: 14px;
	margin-bottom: 8px;
	letter-spacing: 2px;
}

.mech-review-item q {
	display: block;
	font-size: 14px;
	line-height: 1.55;
	opacity: 0.9;
	font-style: normal;
	margin-bottom: 8px;
}

.mech-review-item cite {
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	opacity: 0.6;
	font-style: normal;
}

/* Know before */
.mech-know-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
	padding: clamp(40px, 5vw, 56px) 0;
}

.mech-know-item h3 {
	font-family: var(--demo-font-display);
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--demo-heading);
	margin-bottom: 8px;
}

.mech-know-item p {
	font-size: 14px;
	color: var(--demo-muted);
	line-height: 1.6;
}

/* Shop-sign footer */
.mech-footer {
	background: var(--demo-primary);
	color: rgba(255, 255, 255, 0.8);
}

.mech-footer-hours {
	background: var(--demo-primary-soft);
	border-top: 4px solid var(--demo-accent);
	padding: 28px 0;
	text-align: center;
}

.mech-footer-hours h3 {
	font-family: var(--demo-font-display);
	font-size: 1.25rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--demo-accent);
	margin-bottom: 12px;
}

.mech-footer-hours-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px 32px;
	font-size: 14px;
}

.mech-footer-bottom {
	padding: 32px 0;
	text-align: center;
}

.mech-footer-brand {
	font-family: var(--demo-font-display);
	font-size: 1.5rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: #fff;
	margin-bottom: 12px;
}

.mech-footer-contact {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px 24px;
	margin-bottom: 16px;
	font-size: 14px;
}

.mech-footer-contact a {
	color: rgba(255, 255, 255, 0.85);
	font-weight: 600;
}

.mech-footer-contact a:hover {
	color: var(--demo-accent);
}

.mech-footer-meta {
	font-size: 11px;
	opacity: 0.45;
	line-height: 1.6;
}

/* Mobile CTA */
.mech-mobile-cta {
	position: fixed;
	left: 16px;
	right: 16px;
	bottom: 16px;
	z-index: 90;
	display: none;
}

.mech-mobile-cta .demo-btn {
	width: 100%;
	box-shadow: var(--demo-shadow-md);
}

@media (max-width: 1024px) {
	.mech-hero-grid {
		grid-template-columns: 1fr;
	}

	.mech-hero-copy {
		padding: 48px 24px;
	}

	.mech-hero-img {
		min-height: 280px;
	}

	.mech-booking-grid {
		grid-template-columns: 1fr;
	}

	.mech-work-order {
		position: static;
	}

	.mech-menu-grid {
		grid-template-columns: 1fr;
	}

	.mech-flow-row {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.mech-flow-row::before {
		display: none;
	}

	.mech-know-row {
		grid-template-columns: 1fr;
	}

	.mech-review-item {
		border-right: none;
		border-bottom: 1px solid rgba(255, 255, 255, 0.15);
		padding-bottom: 24px;
		max-width: 100%;
	}
}

@media (max-width: 640px) {
	.mech-nav-links {
		display: none;
	}

	.mech-trust-items {
		flex-direction: column;
		align-items: center;
		gap: 16px;
	}

	.mech-mobile-cta {
		display: block;
	}

	body.demo-mechanic {
		padding-bottom: 80px;
	}
}
