html {
	scroll-behavior: smooth;
}

body {
	overflow-x: hidden;
	background: #f6f2ef;
	color: #1f2937;
}

.hero-bg {
	min-height: calc(100vh - 72px);
	background:
		radial-gradient(circle at top right, rgba(177, 0, 24, 0.08), transparent 36%),
		radial-gradient(circle at bottom left, rgba(17, 17, 17, 0.04), transparent 28%);
}

.hero-grid {
	background-image:
		linear-gradient(rgba(177, 0, 24, 0.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(17, 17, 17, 0.04) 1px, transparent 1px);
	background-size: 48px 48px;
}

.site-logo {
	width: 3.25rem;
	height: 3.25rem;
	border-radius: 1rem;
	object-fit: cover;
	box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
	background: #fff;
	flex: 0 0 auto;
}

.hero-logo {
	width: min(100%, 18rem);
	height: auto;
	object-fit: contain;
	display: block;
}

.brand-panel {
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.hero-collage {
	backdrop-filter: blur(14px);
}

.hero-photo,
.gallery-item {
	position: relative;
	overflow: hidden;
	border-radius: 1.5rem;
	border: 1px solid rgba(226, 232, 240, 0.95);
	background: #f8fafc;
	box-shadow: 0 18px 35px rgba(15, 23, 42, 0.08);
}

.hero-photo {
	min-height: 16rem;
}

.hero-photo--main {
	min-height: 100%;
}

.hero-photo--stacked {
	min-height: calc(50% - 0.375rem);
}

.hero-photo img,
.gallery-item img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 260ms ease;
}

.hero-photo:hover img,
.gallery-item:hover img {
	transform: scale(1.04);
}

.hero-photo__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(17, 24, 39, 0.04) 0%, rgba(17, 24, 39, 0.58) 100%);
}

.hero-photo__caption {
	position: absolute;
	left: 1rem;
	right: 1rem;
	bottom: 1rem;
	z-index: 1;
	color: #ffffff;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.28);
}

.hero-photo__eyebrow {
	display: inline-flex;
	align-items: center;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.18);
	padding: 0.35rem 0.75rem;
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.22em;
	text-transform: uppercase;
}

.hero-photo__caption strong {
	display: block;
	margin-top: 0.6rem;
	font-size: 1rem;
	line-height: 1.4;
	font-weight: 800;
}

.gallery-grid {
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	grid-auto-rows: 12rem;
}

.gallery-item--wide {
	grid-column: span 2;
	grid-auto-rows: 14rem;
}

.gallery-item--tall {
	grid-row: span 2;
}

.gallery-item img {
	width: 100%;
	height: 100%;
}

.gallery-item::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(17, 24, 39, 0) 30%, rgba(17, 24, 39, 0.08) 100%);
	pointer-events: none;
}

@media (min-width: 768px) {
	.gallery-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		grid-auto-rows: 13rem;
	}

	.gallery-item--wide {
		grid-column: span 2;
	}

	.gallery-item--tall {
		grid-row: span 2;
	}
}

@media (max-width: 767px) {
	.hero-photo--main,
	.hero-photo--stacked {
		min-height: 14rem;
	}

	.gallery-grid {
		grid-template-columns: 1fr;
		grid-auto-rows: 15rem;
	}

	.gallery-item--wide,
	.gallery-item--tall {
		grid-column: auto;
		grid-row: auto;
	}
}

.stat-chip,
.process-card {
	border-radius: 1.25rem;
	border: 1px solid #e5e7eb;
	background: #ffffff;
	box-shadow: 0 14px 30px rgba(15, 23, 42, 0.05);
}

.stat-chip {
	padding: 1rem 1.1rem;
}

.stat-label {
	display: block;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: #6b7280;
}

.stat-value {
	display: block;
	margin-top: 0.45rem;
	font-size: 1.15rem;
	font-weight: 900;
	color: #111827;
}

.process-card {
	padding: 1.5rem;
	transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.process-card:hover {
	transform: translateY(-4px);
	border-color: rgba(177, 0, 24, 0.2);
	box-shadow: 0 22px 40px rgba(15, 23, 42, 0.08);
}

.process-index {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.75rem;
	height: 2.75rem;
	border-radius: 999px;
	background: linear-gradient(135deg, #b10018, #8e0f14);
	color: #ffffff;
	font-size: 1rem;
	font-weight: 900;
	box-shadow: 0 10px 20px rgba(177, 0, 24, 0.18);
}

.section-kicker {
	font-size: 0.85rem;
	font-weight: 800;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: #b10018;
}

.section-title {
	margin-top: 0.75rem;
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 900;
	line-height: 1.08;
	color: #111827;
}

.section-lead {
	margin-top: 1rem;
	font-size: 1.05rem;
	line-height: 1.8;
	color: #475569;
}

.service-card,
.advantage-card,
.faq-item {
	border-radius: 1.5rem;
	border: 1px solid #e5e7eb;
	background: #ffffff;
	box-shadow: 0 18px 35px rgba(15, 23, 42, 0.05);
}

.service-card {
	padding: 1.5rem;
	transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover,
.advantage-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 24px 44px rgba(15, 23, 42, 0.08);
	border-color: rgba(177, 0, 24, 0.2);
}

.advantage-card {
	padding: 1.5rem;
	transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.icon-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3.25rem;
	height: 3.25rem;
	border-radius: 1rem;
	background: linear-gradient(135deg, #f9e8ea, #ffffff);
	color: #b10018;
	font-size: 1.4rem;
	border: 1px solid rgba(177, 0, 24, 0.12);
}

.faq-item {
	overflow: hidden;
}

.faq-trigger {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.25rem 1.5rem;
	font-size: 1rem;
	font-weight: 800;
	color: #111827;
	transition: background-color 180ms ease, color 180ms ease;
}

.faq-trigger:hover {
	background: #fbf6f4;
}

.faq-panel {
	padding: 0 1.5rem 1.5rem;
	color: #475569;
	line-height: 1.8;
}

.faq-icon {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2rem;
	height: 2rem;
	border-radius: 999px;
	background: #f8fafc;
	font-size: 1.2rem;
	font-weight: 700;
	color: #111827;
	transition: transform 180ms ease, background-color 180ms ease;
}

.faq-item.is-open .faq-icon {
	transform: rotate(45deg);
	background: #f7d6da;
}

.map-placeholder {
	background:
		radial-gradient(circle at top left, rgba(177, 0, 24, 0.1), transparent 34%),
		linear-gradient(180deg, #f8fafc 0%, #eef2f7 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;
	}
}
