/**
 * Laundry Service demo — fresh clean local-service theme
 *
 * Sky blue & crisp white. Pickup window schedule + service tier booking split.
 */

:root {
	--demo-font-body: "Manrope", system-ui, sans-serif;
	--demo-font-display: "Fraunces", Georgia, serif;

	--demo-primary: #0284c7;
	--demo-primary-soft: #e0f2fe;
	--demo-primary-dark: #0369a1;
	--demo-accent: #38bdf8;
	--demo-accent-soft: #f0f9ff;
	--demo-fresh: #10b981;
	--demo-heading: #0c4a6e;
	--demo-text: #334155;
	--demo-muted: #64748b;
	--demo-bg: #f8fcff;
	--demo-bg-alt: #f0f9ff;
	--demo-surface: #ffffff;
	--demo-border: #dbeafe;
	--demo-radius-lg: 20px;
	--demo-radius-md: 12px;
	--demo-shadow-sm: 0 4px 24px rgba(2, 132, 199, 0.08);
	--demo-shadow-md: 0 20px 50px rgba(2, 132, 199, 0.12);
}

[data-reveal] {
	opacity: 0;
	transform: translateY(16px);
	transition: opacity 0.65s ease, transform 0.65s ease;
}

[data-reveal].is-visible {
	opacity: 1;
	transform: none;
}

.demo-laundry .demo-btn-primary {
	background: linear-gradient(135deg, var(--demo-primary) 0%, var(--demo-primary-dark) 100%);
	color: #fff;
	border-radius: 999px;
	font-weight: 700;
	font-size: 14px;
	padding: 14px 28px;
	box-shadow: var(--demo-shadow-sm);
}

.demo-laundry .demo-btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: var(--demo-shadow-md);
}

.demo-laundry .demo-btn-outline {
	border: 2px solid var(--demo-primary);
	color: var(--demo-primary-dark);
	border-radius: 999px;
	font-weight: 700;
	font-size: 14px;
	background: transparent;
}

.demo-laundry .demo-btn-outline:hover {
	background: var(--demo-primary-soft);
}

.ld-promo-bar {
	background: linear-gradient(90deg, var(--demo-primary-dark), var(--demo-primary));
	color: #e0f2fe;
	padding: 10px 16px;
	font-size: 14px;
	text-align: center;
	font-weight: 600;
}

.ld-promo-bar em {
	font-style: normal;
	color: #fff;
}

.ld-promo-bar strong {
	color: #fef08a;
}

.ld-promo-bar a {
	color: #fff;
	font-weight: 800;
	margin-left: 6px;
	text-decoration: underline;
}

.ld-nav {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(248, 252, 255, 0.96);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--demo-border);
}

.ld-nav.is-scrolled {
	box-shadow: var(--demo-shadow-sm);
}

.ld-nav-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 16px 0;
}

.ld-brand {
	display: flex;
	align-items: center;
	gap: 10px;
}

.ld-brand-icon {
	font-size: 28px;
}

.ld-brand strong {
	display: block;
	font-family: var(--demo-font-display);
	font-size: 22px;
	font-weight: 600;
	color: var(--demo-heading);
	line-height: 1.1;
}

.ld-brand span {
	font-size: 11px;
	color: var(--demo-muted);
	font-weight: 600;
}

.ld-nav-links {
	display: flex;
	gap: 28px;
}

.ld-nav-links a {
	font-size: 14px;
	font-weight: 600;
	color: var(--demo-text);
}

.ld-nav-links a:hover {
	color: var(--demo-primary);
}

.ld-hero {
	padding: clamp(48px, 8vw, 88px) 0;
	background:
		radial-gradient(ellipse at 90% 10%, rgba(56, 189, 248, 0.15) 0%, transparent 50%),
		var(--demo-bg);
}

.ld-hero-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
}

.ld-hero-tag {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--demo-primary);
	margin-bottom: 16px;
}

.ld-hero-title {
	font-family: var(--demo-font-display);
	font-size: clamp(36px, 5vw, 52px);
	font-weight: 600;
	line-height: 1.12;
	color: var(--demo-heading);
	margin-bottom: 20px;
}

.ld-hero-title em {
	font-style: italic;
	color: var(--demo-primary);
}

.ld-hero-lead {
	font-size: 17px;
	line-height: 1.7;
	color: var(--demo-text);
	margin-bottom: 24px;
	max-width: 480px;
}

.ld-hero-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 28px;
}

.ld-hero-pills span {
	font-size: 12px;
	font-weight: 700;
	padding: 6px 14px;
	border-radius: 999px;
	background: var(--demo-primary-soft);
	color: var(--demo-primary-dark);
}

.ld-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.ld-hero-visual {
	position: relative;
}

.ld-hero-visual img {
	border-radius: var(--demo-radius-lg);
	box-shadow: var(--demo-shadow-md);
	aspect-ratio: 4 / 5;
	object-fit: cover;
	width: 100%;
}

.ld-hero-badge {
	position: absolute;
	bottom: 20px;
	right: -12px;
	background: var(--demo-surface);
	border: 1px solid var(--demo-border);
	border-radius: var(--demo-radius-md);
	padding: 14px 18px;
	box-shadow: var(--demo-shadow-sm);
	text-align: center;
}

.ld-hero-badge strong {
	display: block;
	font-family: var(--demo-font-display);
	font-size: 24px;
	color: var(--demo-primary);
}

.ld-hero-badge span {
	font-size: 11px;
	font-weight: 600;
	color: var(--demo-muted);
}

.ld-section-head {
	text-align: center;
	max-width: 600px;
	margin: 0 auto 48px;
}

.ld-section-head h2 {
	font-family: var(--demo-font-display);
	font-size: clamp(28px, 4vw, 38px);
	color: var(--demo-heading);
	margin-bottom: 12px;
}

.ld-section-head p {
	color: var(--demo-muted);
	font-size: 16px;
	line-height: 1.65;
}

.ld-services {
	padding: clamp(56px, 8vw, 96px) 0;
	background: var(--demo-surface);
}

.ld-service-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.ld-service-card {
	padding: 28px 22px;
	background: var(--demo-bg);
	border: 1px solid var(--demo-border);
	border-radius: var(--demo-radius-lg);
	transition: transform 0.25s, box-shadow 0.25s;
}

.ld-service-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--demo-shadow-sm);
}

.ld-service-card.featured {
	background: linear-gradient(145deg, var(--demo-primary-soft), var(--demo-surface));
	border-color: var(--demo-primary);
}

.ld-service-icon {
	font-size: 28px;
	margin-bottom: 12px;
}

.ld-service-card h3 {
	font-family: var(--demo-font-display);
	font-size: 20px;
	color: var(--demo-heading);
	margin-bottom: 10px;
}

.ld-service-card p {
	font-size: 14px;
	color: var(--demo-muted);
	line-height: 1.6;
	margin-bottom: 14px;
}

.ld-service-price {
	font-size: 13px;
	font-weight: 800;
	color: var(--demo-primary);
}

.ld-booking-section {
	padding: clamp(56px, 8vw, 96px) 0;
	background: var(--demo-bg-alt);
}

.ld-booking-grid {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: 28px;
	align-items: start;
}

.ld-schedule-panel {
	background: var(--demo-surface);
	border: 1px solid var(--demo-border);
	border-radius: var(--demo-radius-lg);
	padding: 28px;
	box-shadow: var(--demo-shadow-sm);
}

.ld-schedule-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 24px;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--demo-border);
}

.ld-schedule-header h3 {
	font-family: var(--demo-font-display);
	font-size: 20px;
	color: var(--demo-heading);
}

.ld-schedule-legend {
	display: flex;
	gap: 16px;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.ld-schedule-legend .open::before,
.ld-schedule-legend .limited::before,
.ld-schedule-legend .full::before {
	content: "";
	display: inline-block;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	margin-right: 6px;
	vertical-align: middle;
}

.ld-schedule-legend .open::before { background: var(--demo-fresh); }
.ld-schedule-legend .limited::before { background: #f59e0b; }
.ld-schedule-legend .full::before { background: #cbd5e1; }

.ld-day-row {
	margin-bottom: 20px;
}

.ld-day-row h4 {
	font-size: 13px;
	font-weight: 800;
	color: var(--demo-primary-dark);
	margin-bottom: 10px;
}

.ld-slots {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.ld-slot {
	font-size: 12px;
	font-weight: 700;
	padding: 8px 14px;
	border-radius: 8px;
	border: 1px solid var(--demo-border);
	background: var(--demo-bg);
	color: var(--demo-muted);
}

.ld-slot.open {
	border-color: #86efac;
	background: #f0fdf4;
	color: #166534;
}

.ld-slot.limited {
	border-color: #fcd34d;
	background: #fffbeb;
	color: #b45309;
}

.ld-slot.full {
	opacity: 0.55;
	text-decoration: line-through;
}

.ld-service-tiers {
	margin-top: 28px;
	padding-top: 24px;
	border-top: 1px solid var(--demo-border);
}

.ld-service-tiers h4 {
	font-size: 13px;
	font-weight: 800;
	color: var(--demo-heading);
	margin-bottom: 14px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.ld-tier-cards {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
}

.ld-tier-card {
	padding: 14px 16px;
	border-radius: var(--demo-radius-md);
	border: 2px solid var(--demo-border);
	background: var(--demo-bg);
	cursor: default;
	transition: border-color 0.2s;
}

.ld-tier-card.is-selected {
	border-color: var(--demo-primary);
	background: var(--demo-primary-soft);
}

.ld-tier-card strong {
	display: block;
	font-size: 14px;
	font-weight: 800;
	color: var(--demo-heading);
	margin-bottom: 2px;
}

.ld-tier-card span {
	font-size: 12px;
	color: var(--demo-muted);
	font-weight: 600;
}

.ld-schedule-note {
	margin-top: 20px;
	font-size: 13px;
	color: var(--demo-muted);
	font-style: italic;
	text-align: center;
}

.ld-book-panel {
	background: var(--demo-surface);
	border: 2px solid var(--demo-primary);
	border-radius: var(--demo-radius-lg);
	overflow: hidden;
	box-shadow: var(--demo-shadow-md);
	position: sticky;
	top: 88px;
}

.ld-book-header {
	background: linear-gradient(135deg, var(--demo-primary), var(--demo-primary-dark));
	color: #e0f2fe;
	padding: 28px 28px 20px;
}

.ld-book-header h2 {
	font-family: var(--demo-font-display);
	font-size: 26px;
	margin-bottom: 8px;
}

.ld-book-header p {
	font-size: 14px;
	opacity: 0.92;
	line-height: 1.55;
}

.ld-book-includes {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	padding: 16px 28px;
	border-bottom: 1px solid var(--demo-border);
}

.ld-book-includes span {
	font-size: 11px;
	font-weight: 700;
	padding: 5px 12px;
	border-radius: 999px;
	background: var(--demo-primary-soft);
	color: var(--demo-primary-dark);
}

.ld-book-body {
	padding: 24px 28px 28px;
}

.ld-how {
	padding: clamp(56px, 8vw, 96px) 0;
	background: var(--demo-surface);
}

.ld-how-steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}

.ld-how-num {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--demo-primary);
	color: #fff;
	font-family: var(--demo-font-display);
	font-size: 20px;
	font-weight: 600;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
}

.ld-how-step h3 {
	font-family: var(--demo-font-display);
	font-size: 20px;
	color: var(--demo-heading);
	margin-bottom: 8px;
}

.ld-how-step p {
	font-size: 14px;
	color: var(--demo-muted);
	line-height: 1.6;
}

.ld-pricing {
	padding: clamp(56px, 8vw, 96px) 0;
	background: var(--demo-bg);
}

.ld-pricing-table {
	max-width: 720px;
	margin: 0 auto;
	background: var(--demo-surface);
	border: 1px solid var(--demo-border);
	border-radius: var(--demo-radius-lg);
	overflow: hidden;
}

.ld-pricing-row {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 16px;
	padding: 16px 24px;
	border-bottom: 1px solid var(--demo-border);
	font-size: 14px;
}

.ld-pricing-row:last-child {
	border-bottom: none;
}

.ld-pricing-row.head {
	background: var(--demo-primary-soft);
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--demo-primary-dark);
}

.ld-pricing-row span:nth-child(2),
.ld-pricing-row span:nth-child(3) {
	font-weight: 700;
	color: var(--demo-heading);
}

.ld-pricing-note {
	text-align: center;
	margin-top: 20px;
	font-size: 14px;
	color: var(--demo-muted);
	font-weight: 600;
}

.ld-coverage {
	padding: clamp(56px, 8vw, 96px) 0;
	background: var(--demo-surface);
}

.ld-coverage-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
}

.ld-coverage-copy h2 {
	font-family: var(--demo-font-display);
	font-size: clamp(26px, 3.5vw, 34px);
	color: var(--demo-heading);
	margin-bottom: 16px;
}

.ld-coverage-copy > p {
	color: var(--demo-text);
	line-height: 1.7;
	margin-bottom: 24px;
}

.ld-zip-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.ld-zip-pills span {
	font-size: 13px;
	font-weight: 700;
	padding: 6px 14px;
	border-radius: 999px;
	background: var(--demo-primary-soft);
	color: var(--demo-primary-dark);
	font-variant-numeric: tabular-nums;
}

.ld-coverage-photo img {
	border-radius: var(--demo-radius-lg);
	box-shadow: var(--demo-shadow-md);
	width: 100%;
	object-fit: cover;
}

.ld-quote {
	padding: clamp(48px, 7vw, 80px) 0;
	background: linear-gradient(135deg, var(--demo-primary-dark), var(--demo-primary));
	color: #e0f2fe;
	text-align: center;
}

.ld-quote blockquote {
	font-family: var(--demo-font-display);
	font-size: clamp(20px, 3vw, 26px);
	font-style: italic;
	line-height: 1.55;
	max-width: 720px;
	margin: 0 auto 20px;
}

.ld-quote cite {
	font-size: 14px;
	font-weight: 600;
	opacity: 0.85;
	font-style: normal;
}

.ld-footer {
	padding: 48px 0 32px;
	background: var(--demo-heading);
	color: rgba(224, 242, 254, 0.85);
	text-align: center;
}

.ld-footer-brand {
	font-family: var(--demo-font-display);
	font-size: 24px;
	color: #fff;
	margin-bottom: 6px;
}

.ld-footer-tagline {
	font-size: 14px;
	margin-bottom: 16px;
	opacity: 0.75;
}

.ld-footer-contact {
	font-size: 14px;
	line-height: 1.7;
	margin-bottom: 24px;
}

.ld-footer-contact a {
	color: var(--demo-accent);
	font-weight: 600;
}

.ld-footer-meta {
	font-size: 12px;
	opacity: 0.5;
}

.ld-mobile-cta {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 200;
	padding: 12px 16px;
	background: rgba(248, 252, 255, 0.96);
	border-top: 1px solid var(--demo-border);
}

.ld-mobile-cta .demo-btn {
	width: 100%;
	text-align: center;
}

.ld-mobile-cta[hidden] {
	display: none;
}

@media (max-width: 1024px) {
	.ld-service-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.ld-booking-grid,
	.ld-coverage-grid {
		grid-template-columns: 1fr;
	}

	.ld-book-panel {
		position: static;
	}
}

@media (max-width: 768px) {
	.ld-nav-links {
		display: none;
	}

	.ld-hero-grid {
		grid-template-columns: 1fr;
	}

	.ld-service-grid,
	.ld-how-steps {
		grid-template-columns: 1fr;
	}

	.ld-tier-cards {
		grid-template-columns: 1fr;
	}

	.ld-pricing-row {
		grid-template-columns: 1fr;
		gap: 4px;
	}

	.ld-pricing-row.head {
		display: none;
	}

	.ld-hero-badge {
		right: 16px;
		bottom: 16px;
	}
}
