:root {
	--color-bg: #ffffff;
	--color-bg-alt: #f5f2ee;
	--color-dark: #14181f;
	--color-dark-2: #1d232c;
	--color-accent: #e2701f;
	--color-accent-dark: #c65c13;
	--color-text: #1c222b;
	--color-text-light: #5b6472;
	--color-white: #ffffff;
	--font-heading: "Hammersmith One", "Segoe UI", sans-serif;
	--font-body: "Open Sans", "Segoe UI", sans-serif;
	--radius: 10px;
	--container: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
	margin: 0;
	font-family: var(--font-body);
	color: var(--color-text);
	background: var(--color-bg);
	line-height: 1.6;
	font-size: 16px;
}

img { max-width: 100%; display: block; height: auto; }

h1, h2, h3, h4 {
	font-family: var(--font-heading);
	line-height: 1.2;
	margin: 0 0 0.5em;
	color: var(--color-dark);
}

h1 { font-size: clamp(2.1rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1em; }

a { color: var(--color-accent); text-decoration: none; }
a:hover { color: var(--color-accent-dark); }

:focus-visible { outline: 3px solid var(--color-accent); outline-offset: 2px; }

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	white-space: nowrap;
}

.wrap {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 24px;
}

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

/* Buttons */
.btn {
	display: inline-block;
	padding: 0.75em 1.6em;
	border-radius: 999px;
	font-weight: 600;
	font-family: var(--font-body);
	border: 2px solid transparent;
	transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--lg { padding: 0.9em 2em; font-size: 1.05rem; }
.btn--accent { background: var(--color-accent); color: var(--color-white); }
.btn--accent:hover { background: var(--color-accent-dark); color: var(--color-white); }
.btn--ghost { background: transparent; border-color: rgba(255,255,255,0.6); color: var(--color-white); }
.btn--ghost:hover { background: rgba(255,255,255,0.12); color: var(--color-white); }
.btn--outline { background: transparent; border-color: var(--color-accent); color: var(--color-accent); }
.btn--outline:hover { background: var(--color-accent); color: var(--color-white); }

/* Header */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: var(--color-dark);
	border-bottom: 1px solid rgba(255,255,255,0.08);
}
.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 14px 24px;
}
.site-logo { display: flex; align-items: center; color: var(--color-white); font-family: var(--font-heading); font-size: 1.2rem; }
.site-logo img,
.footer-brand .custom-logo { max-height: 48px; width: auto; filter: brightness(0) invert(1); }
.site-nav { flex: 1; display: flex; justify-content: center; }
.nav-menu { list-style: none; display: flex; gap: 32px; margin: 0; padding: 0; }
.nav-menu a { color: var(--color-white); font-weight: 600; }
.nav-menu a:hover { color: var(--color-accent); }
.site-header__actions { display: flex; align-items: center; gap: 18px; }
.header-phone { color: var(--color-white); font-weight: 700; white-space: nowrap; }
.header-phone:hover { color: var(--color-accent); }

.nav-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--color-white); display: block; }

/* Hero */
.hero, .cta-banner {
	position: relative;
	background-size: cover;
	background-position: center;
	color: var(--color-white);
}
.hero__overlay, .cta-banner__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(18,22,28,0.75), rgba(18,22,28,0.88));
}
.hero__inner, .cta-banner__inner {
	position: relative;
	z-index: 1;
	padding: 120px 24px;
	text-align: center;
	max-width: 820px;
	margin: 0 auto;
}
.hero h1, .cta-banner h2 { color: var(--color-white); }
.hero__lede { font-size: 1.15rem; color: rgba(255,255,255,0.88); max-width: 640px; margin: 0 auto 1.75em; }

/* Hero entrance + animated brand reveal */
.hero__inner > * { opacity: 0; animation: heroReveal 0.7s ease-out forwards; }
.hero__inner > .eyebrow { animation-delay: 0.05s; }
.hero__inner > h1 { animation-delay: 0.2s; }
.hero__inner > .hero-brand { animation-delay: 0.5s; }
.hero__inner > .hero__actions { animation-delay: 0.95s; }

.hero-brand { position: relative; display: inline-flex; flex-direction: column; align-items: center; margin: 0.1em auto 1.9em; }
.hero-brand__text {
	display: inline-block;
	font-family: var(--font-heading);
	font-size: 1.3rem;
	letter-spacing: 0.04em;
	color: rgba(255,255,255,0.92);
	background: linear-gradient(110deg, rgba(255,255,255,0.85) 30%, var(--color-accent) 50%, rgba(255,255,255,0.85) 70%);
	background-size: 300% 100%;
	background-position: 200% 0;
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	animation: heroBrandSheen 1.6s ease-in-out 0.9s forwards;
}
@supports not ((-webkit-background-clip: text) or (background-clip: text)) {
	.hero-brand__text { -webkit-text-fill-color: rgba(255,255,255,0.92); animation: none; }
}
.hero-brand__stroke { width: 200px; max-width: 70%; height: 12px; margin-top: 4px; opacity: 0; animation: heroStrokeIn 0.4s ease-out 1.15s forwards; }
.hero-brand__stroke path { fill: none; stroke: var(--color-accent); stroke-width: 3; stroke-linecap: round; stroke-dasharray: 400; stroke-dashoffset: 400; animation: heroStrokeDraw 0.9s ease-out 1.2s forwards; }

@keyframes heroReveal { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
@keyframes heroBrandSheen { to { background-position: -100% 0; } }
@keyframes heroStrokeIn { to { opacity: 1; } }
@keyframes heroStrokeDraw { to { stroke-dashoffset: 0; } }
.hero__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.page-hero { background-size: cover; background-position: center; color: var(--color-white); position: relative; }
.page-hero .hero__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(18,22,28,0.8), rgba(18,22,28,0.9)); }
.page-hero__inner { position: relative; z-index: 1; padding: 90px 24px; text-align: center; max-width: 760px; margin: 0 auto; }
.page-hero__inner h1 { color: var(--color-white); }
.page-hero--plain { background: var(--color-dark); }
.page-hero--plain .hero__lede { color: rgba(255,255,255,0.85); }

/* Sections */
.section { padding: 80px 0; }
.section h2 { text-align: center; margin-bottom: 0.6em; }
.section--values h2 { margin-bottom: 1.5em; }
.section--services { background: var(--color-bg-alt); text-align: center; }
.section--services h2 { max-width: 640px; margin-left: auto; margin-right: auto; }
.section--services .eyebrow { text-align: center; }

.about-split__content h2, .reviews-split__content h2, .contact-split__map h2 { text-align: left; margin-left: 0; margin-right: 0; }

.values-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
	margin-top: 40px;
}
.values-grid--four { grid-template-columns: repeat(4, 1fr); }
.value-card {
	background: var(--color-white);
	border: 1px solid #eee2d8;
	border-radius: var(--radius);
	padding: 28px;
	box-shadow: 0 8px 24px rgba(20,24,31,0.05);
}
.value-card h3 { color: var(--color-accent-dark); }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; text-align: left; }
.service-card {
	background: var(--color-white);
	border-radius: var(--radius);
	padding: 32px;
	box-shadow: 0 8px 24px rgba(20,24,31,0.06);
}
.link-arrow { font-weight: 700; color: var(--color-accent); }

.services-grid--photo { text-align: left; }
.service-photo-card {
	display: block;
	background: var(--color-white);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: 0 8px 24px rgba(20,24,31,0.08);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service-photo-card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(20,24,31,0.14); }
.service-photo-card__media { aspect-ratio: 4 / 3; overflow: hidden; }
.service-photo-card__media img { width: 100%; height: 100%; object-fit: cover; }
.service-photo-card__body { padding: 24px; }
.service-photo-card__body h3 { margin-bottom: 0.4em; }
.service-photo-card__body p { color: var(--color-text-light); margin-bottom: 1em; }

.service-photo-card--custom { border: 2px dashed #e3d5c8; }
.service-photo-card--custom:hover { border-color: var(--color-accent); }
.service-photo-card__media { position: relative; }
.service-photo-card__badge {
	position: absolute;
	top: 12px;
	left: 12px;
	background: var(--color-accent);
	color: var(--color-white);
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	padding: 5px 12px;
	border-radius: 999px;
}

.breadcrumb-link { color: var(--color-accent); }
.breadcrumb-link:hover { color: var(--color-white); }
.page-hero--plain .breadcrumb-link:hover { color: var(--color-accent-dark); }

.check-list--single { grid-template-columns: 1fr; margin-bottom: 1.5em; }

.about-split, .reviews-split, .contact-split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-split > *, .reviews-split > *, .contact-split > * { min-width: 0; }
.about-split__media img { border-radius: var(--radius); box-shadow: 0 20px 40px rgba(20,24,31,0.15); }
.reviews-split__content { order: 0; }
.contact-split { grid-template-columns: minmax(340px, 7fr) minmax(220px, 3fr); align-items: start; gap: 40px; }
.contact-split__map h2 { margin-bottom: 1em; }

/* Google reviews widget (Trustindex shortcode) */
.reviews-split__media { width: 100%; max-width: 420px; margin: 0 auto; min-width: 0; }

/* Route (process) */
.route-head { max-width: 620px; margin: 0 auto 64px; text-align: center; }
.route-head .eyebrow { text-align: center; }
.route-head p:last-child { color: var(--color-text-light); font-size: 1.02rem; }

.route { position: relative; }
.route-path { position: absolute; top: 46px; left: 0; width: 100%; height: 40px; pointer-events: none; }
.route-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; position: relative; }

.stop {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	opacity: 0;
	transform: translateY(14px);
	animation: fp-rise 0.6s ease forwards;
}
.stop:nth-child(1) { animation-delay: 0.05s; }
.stop:nth-child(2) { animation-delay: 0.22s; }
.stop:nth-child(3) { animation-delay: 0.39s; }
@keyframes fp-rise { to { opacity: 1; transform: translateY(0); } }

.marker {
	position: relative;
	width: 96px;
	height: 96px;
	clip-path: path("M46 0C71.4 0 92 18.4 92 41.1V70.8C92 78.1 87.4 84.6 80.5 87.1L48.9 98.4C47.1 99 45.1 99 43.3 98.4L11.5 87.1C4.6 84.6 0 78.1 0 70.8V41.1C0 18.4 20.6 0 46 0Z");
	overflow: hidden;
	margin-bottom: 22px;
	box-shadow: 0 10px 22px rgba(20,24,31,0.22);
	border: 3px solid var(--color-white);
	outline: 1px solid #e8e0d3;
	transition: transform 0.25s ease;
}
.marker::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(155deg, rgba(20,24,31,0.1), rgba(20,24,31,0.6));
}
.marker img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.45s ease; }
.stop:hover .marker { transform: translateY(-4px); }
.stop:hover .marker img { transform: scale(1.09); }
.stop h3 { font-size: 1.2rem; margin-bottom: 0.55em; }
.stop p { color: var(--color-text-light); font-size: 0.94rem; line-height: 1.6; max-width: 26ch; margin: 0; }

@media (prefers-reduced-motion: reduce) {
	.stop { animation: none; opacity: 1; transform: none; }
	.marker, .marker img { transition: none; }
	.hero__inner > * { animation: none; opacity: 1; transform: none; }
	.hero-brand__text { animation: none; background-position: 0 0; }
	.hero-brand__stroke { animation: none; opacity: 1; }
	.hero-brand__stroke path { animation: none; stroke-dashoffset: 0; }
}

/* Guarantee band */
.guarantee { background: var(--color-dark); color: var(--color-white); padding: 88px 0; }
.guarantee-top { display: grid; grid-template-columns: 1.05fr 1.4fr; gap: 56px; align-items: center; margin-bottom: 64px; }
.guarantee-top .eyebrow { color: #d9c9a8; }
.guarantee-top h2 { color: var(--color-white); margin-bottom: 0.5em; }
.guarantee-top p { color: rgba(255,255,255,0.78); line-height: 1.65; margin: 0; }

.seal {
	justify-self: start;
	display: flex;
	align-items: center;
	gap: 20px;
	background: rgba(255,255,255,0.06);
	border: 1px solid rgba(255,255,255,0.16);
	border-radius: var(--radius);
	padding: 22px 26px;
}
.seal-figure {
	flex: 0 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 84px; height: 84px;
	border-radius: 50%;
	border: 2px dashed rgba(226,112,31,0.65);
}
.seal-figure .num { font-family: var(--font-heading); font-size: 1.9rem; color: var(--color-accent); line-height: 1; }
.seal-figure .unit { font-size: 0.62rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.65); margin-top: 2px; }
.seal-copy p { margin: 0; font-size: 0.92rem; color: rgba(255,255,255,0.7); line-height: 1.5; }
.seal-copy strong { display: block; font-family: var(--font-heading); font-weight: 400; font-size: 1.02rem; color: var(--color-white); margin-bottom: 4px; }

.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; border-top: 1px solid rgba(255,255,255,0.14); padding-top: 48px; }
.pillar { display: flex; flex-direction: column; gap: 14px; }
.pillar svg { width: 26px; height: 26px; stroke: var(--color-accent); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.pillar h3 { font-size: 1.02rem; color: var(--color-white); font-weight: 700; font-family: var(--font-body); }
.pillar p { margin: 0; font-size: 0.9rem; line-height: 1.6; color: rgba(255,255,255,0.7); }

.cert-row {
	margin-top: 40px;
	padding-top: 32px;
	border-top: 1px solid rgba(255,255,255,0.14);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 18px 24px;
}
.cert-row__label {
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.55);
}
.cert-row__badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.cert-badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: var(--color-white);
	color: var(--color-dark);
	font-weight: 700;
	font-size: 0.9rem;
	padding: 10px 20px;
	border-radius: 999px;
}
.cert-badge__icon { display: flex; color: var(--color-accent); }
.cert-badge__icon svg { width: 20px; height: 20px; }

/* Before/after comparison sliders */
.ba-slider__frame {
	position: relative;
	aspect-ratio: 4 / 3;
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: 0 12px 30px rgba(20,24,31,0.12);
	--pos: 50%;
}
.ba-slider__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	pointer-events: none;
	user-select: none;
}
.ba-slider__img--before { clip-path: inset(0 calc(100% - var(--pos)) 0 0); }
.ba-slider__tag {
	position: absolute;
	top: 16px;
	z-index: 2;
	background: rgba(20,24,31,0.72);
	color: var(--color-white);
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	padding: 6px 14px;
	border-radius: 999px;
	pointer-events: none;
}
.ba-slider__tag--before { left: 16px; }
.ba-slider__tag--after { right: 16px; }
.ba-slider__handle {
	position: absolute;
	top: 50%;
	left: var(--pos);
	transform: translate(-50%, -50%);
	z-index: 2;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--color-white);
	color: var(--color-dark);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 14px rgba(20,24,31,0.3);
	pointer-events: none;
}
.ba-slider__handle svg { width: 20px; height: 20px; }
.ba-slider__range {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	opacity: 0;
	cursor: ew-resize;
	-webkit-appearance: none;
	appearance: none;
	z-index: 3;
}
.ba-slider__range::-webkit-slider-thumb { -webkit-appearance: none; width: 40px; height: 100%; }
.ba-slider__range::-moz-range-thumb { width: 40px; height: 100%; border: none; }
.ba-slider__range:focus-visible + .ba-slider__handle { outline: 3px solid var(--color-accent); outline-offset: 2px; }
.ba-slider__body { padding: 18px 4px 0; }
.ba-slider__body h3 { margin-bottom: 0.35em; }
.ba-slider__body p { color: var(--color-text-light); margin: 0; }

.section--services-detail .service-detail {
	display: grid;
	grid-template-columns: minmax(0, 65fr) minmax(0, 35fr);
	gap: 48px;
	align-items: center;
	padding: 48px 0;
	border-bottom: 1px solid #eee;
}
.section--services-detail .service-detail:last-child { border-bottom: none; }
.service-detail__content h2 { text-align: left; margin-left: 0; margin-right: 0; }
.service-detail__media { min-width: 0; }
.section--services-detail h2 a { color: var(--color-dark); }
.section--services-detail h2 a:hover { color: var(--color-accent); }
.link-arrow--right { display: block; text-align: right; margin-top: 12px; }
.check-list a { color: var(--color-text); font-weight: 600; }
.check-list a:hover { color: var(--color-accent); }
.check-list { list-style: none; padding: 0; margin: 1em 0 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px 24px; }
.check-list li { padding-left: 1.5em; position: relative; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--color-accent); font-weight: 700; }

.cta-banner--compact { padding: 70px 0; }
.cta-banner--compact.cta-banner { background: var(--color-dark); }

.cta-strip { background: var(--color-dark); padding: 44px 0; }
.cta-strip__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.cta-strip__text { margin: 0; color: rgba(255,255,255,0.85); font-size: 1.05rem; max-width: 520px; }
.cta-strip__actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Contact */
.section--contact { background: var(--color-bg-alt); }
.footer-contact { list-style: none; padding: 0; margin: 1.5em 0 0; }
.footer-contact li { margin-bottom: 0.75em; }
.contact-icon {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--color-bg-alt);
	color: var(--color-accent);
}
.contact-icon svg { width: 18px; height: 18px; }

.page-hero--contact { padding-bottom: 56px; }
.page-hero__inner--tight { padding: 48px 24px; max-width: 680px; }

.contact-strip {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: var(--color-white);
	border-radius: var(--radius);
	box-shadow: 0 16px 34px rgba(0,0,0,0.28);
	padding: 12px 28px;
	max-width: 980px;
	margin: 0 auto;
}
.contact-strip__item {
	display: flex;
	align-items: center;
	gap: 12px;
	flex: 1 1 0;
	min-width: 0;
	padding: 12px 16px;
	color: var(--color-text);
	font-weight: 600;
	border-radius: 8px;
	transition: background 0.15s ease, color 0.15s ease;
}
.contact-strip__item:hover { background: var(--color-bg-alt); color: var(--color-accent); }
.contact-strip__item span:last-child { overflow-wrap: anywhere; line-height: 1.3; }
.contact-strip__divider { flex: 0 0 auto; width: 1px; height: 32px; background: #e6ddd0; }

.contact-form-card {
	position: relative;
	z-index: 2;
	background: var(--color-white);
	border-radius: var(--radius);
	padding: 44px;
	box-shadow: 0 12px 30px rgba(20,24,31,0.08);
	max-width: 820px;
	width: 100%;
}
.contact-split__map { position: relative; z-index: 1; }
.contact-form-card .quote-form { display: grid; grid-template-columns: 1fr 1fr; gap: 0 20px; }
.contact-form-card .quote-form .form-row--full,
.contact-form-card .quote-form button { grid-column: 1 / -1; }
.quote-form .form-row { margin-bottom: 18px; display: flex; flex-direction: column; gap: 6px; }
.quote-form label { font-weight: 600; font-size: 0.9rem; }
.quote-form input, .quote-form textarea {
	width: 100%;
	max-width: 100%;
	padding: 12px 14px;
	border: 1px solid #d9d9d9;
	border-radius: 6px;
	font-family: var(--font-body);
	font-size: 1rem;
}
.quote-form textarea { resize: both; min-height: 120px; min-width: 240px; max-width: 640px; }
.quote-form input:focus-visible, .quote-form textarea:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 1px; border-color: var(--color-accent); }
.quote-form input[aria-invalid="true"], .quote-form textarea[aria-invalid="true"] { border-color: #c0392b; }
.field-error { color: #a4302f; font-size: 0.85rem; font-weight: 600; }
.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.form-notice { padding: 14px 18px; border-radius: 8px; margin-bottom: 20px; font-weight: 600; }
.form-notice--success { background: #e5f6ea; color: #1e7a37; }
.form-notice--error { background: #fbe7e7; color: #a4302f; }

.content-narrow { max-width: 780px; margin: 0 auto; }
.content-narrow h2 { text-align: left; margin: 1.4em 0 0.5em; }
.content-narrow h2:first-child { margin-top: 0; }
.content-narrow ul { margin: 0 0 1.2em; padding-left: 1.3em; }
.content-narrow li { margin-bottom: 0.4em; }

/* FAQ accordion */
.faq-group { margin-bottom: 3em; }
.faq-group:last-child { margin-bottom: 0; }
.faq-group h2 { font-size: 1.4rem; margin-bottom: 0.4em; }
.faq-item { border-bottom: 1px solid #e5e0d8; padding: 1.1em 0; }
.faq-item:first-of-type { border-top: 1px solid #e5e0d8; }
.faq-item summary {
	cursor: pointer;
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	font-weight: 600;
	font-size: 1.05rem;
	color: var(--color-text);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
	content: "+";
	flex-shrink: 0;
	font-size: 1.4rem;
	font-weight: 400;
	line-height: 1;
	color: var(--color-accent);
	transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:focus-visible { outline: 3px solid var(--color-accent); outline-offset: 4px; }
.faq-item p { margin: 0.9em 0 0; color: var(--color-text-light); line-height: 1.7; }

/* Map */
.contact-map iframe {
	display: block;
	width: 100%;
	height: 380px;
	border: 0;
	border-radius: var(--radius);
	box-shadow: 0 12px 30px rgba(20,24,31,0.1);
}
@media (max-width: 780px) {
	.contact-map iframe { height: 280px; }
	.contact-strip { flex-direction: column; align-items: stretch; padding: 20px; }
	.contact-strip__divider { width: 100%; height: 1px; }
	.contact-strip__item { flex: none; }
	.contact-strip__item span:last-child { white-space: normal; }
	.contact-form-card .quote-form { grid-template-columns: 1fr; }
}

/* Footer */
.site-footer { background: var(--color-dark-2); color: rgba(255,255,255,0.75); }
.site-footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; padding: 64px 24px 40px; }
.footer-col h3 { color: var(--color-white); font-size: 1.05rem; }
.footer-brand p { max-width: 320px; }
.site-footer .nav-menu, .site-footer .footer-contact { flex-direction: column; gap: 10px; }
.site-footer .nav-menu a, .site-footer .footer-contact a { color: rgba(255,255,255,0.75); }
.site-footer .nav-menu a:hover, .site-footer .footer-contact a:hover { color: var(--color-accent); }
.site-footer .custom-logo { max-height: 140px; width: auto; }
.site-footer__bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 24px; font-size: 0.85rem; }
.site-footer__bottom-inner { display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap; text-align: center; }
.site-footer__bottom-inner p { margin: 0; }
.site-footer__bottom-inner a { color: rgba(255,255,255,0.75); }
.site-footer__bottom-inner a:hover { color: var(--color-accent); }

@media (max-width: 900px) {
	.values-grid, .services-grid { grid-template-columns: 1fr; }
	.values-grid--four { grid-template-columns: repeat(2, 1fr); }
	.about-split, .reviews-split, .contact-split { grid-template-columns: 1fr; }
	.reviews-split__media { order: -1; }
	.site-footer__inner { grid-template-columns: 1fr; }
	.check-list { grid-template-columns: 1fr; }
	.route-path { display: none; }
	.route-grid { grid-template-columns: 1fr; gap: 48px; }
	.guarantee-top { grid-template-columns: 1fr; gap: 32px; }
	.pillars { grid-template-columns: 1fr; gap: 32px; }
	.cert-row { flex-direction: column; }
	.contact-form-card { max-width: 100%; }
	.quote-form textarea { max-width: 100%; min-width: 0; }
	.section--services-detail .service-detail { grid-template-columns: 1fr; gap: 32px; }
	.service-detail__media { max-width: 460px; }
}

@media (max-width: 780px) {
	.site-nav {
		position: fixed;
		top: 76px;
		left: 0; right: 0;
		background: var(--color-dark);
		flex-direction: column;
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.25s ease;
	}
	.site-nav.is-open { max-height: 400px; }
	.nav-menu { flex-direction: column; gap: 0; padding: 8px 24px 20px; }
	.nav-menu li { border-top: 1px solid rgba(255,255,255,0.08); }
	.nav-menu a { display: block; padding: 14px 0; }
	.nav-toggle { display: flex; }
	.site-header__actions .header-phone { display: none; }
}
