/*
Theme Name: W.P. Plumbing
Theme URI: https://wpplumbingca.com
Author: MR ALEX Digital Marketing
Author URI: https://mralexdm.com
Description: Custom patriotic-industrial theme for W.P. Plumbing — 24/7 emergency plumber in Rancho Cucamonga, CA. Ships fully built: activating the theme creates every service page, city page, and core page automatically. No page builder, no required plugins.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: wp-plumbing
Tags: one-column, custom-logo, custom-menu, featured-images
*/

/* =========================================================
   1. Tokens & base
   ========================================================= */
@font-face {
	font-family: 'Oswald';
	src: url('assets/fonts/oswald-var.woff2') format('woff2');
	font-weight: 200 700;
	font-display: swap;
}
@font-face {
	font-family: 'Inter';
	src: url('assets/fonts/inter-var.woff2') format('woff2');
	font-weight: 100 900;
	font-display: swap;
}

:root {
	--ink: #0c1118;
	--ink-2: #121926;
	--navy: #182b4d;
	--navy-2: #1f3763;
	--red: #c8102e;
	--red-dark: #a00d25;
	--gold: #f4b942;
	--steel: #97a2b4;
	--line: #e3e7ee;
	--off: #f4f6f9;
	--white: #ffffff;
	--text: #333d4f;
	--text-soft: #5b6579;
	--heading: #101828;
	--display: 'Oswald', 'Arial Narrow', sans-serif;
	--body: 'Inter', -apple-system, 'Segoe UI', sans-serif;
	--shadow-sm: 0 1px 2px rgba(16, 24, 40, .06), 0 1px 3px rgba(16, 24, 40, .1);
	--shadow-md: 0 6px 16px -4px rgba(16, 24, 40, .12), 0 2px 6px -2px rgba(16, 24, 40, .08);
	--shadow-lg: 0 18px 40px -12px rgba(16, 24, 40, .22);
	--radius: 10px;
	--radius-lg: 16px;
	--container: 1200px;
	--header-h: 84px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--header-h) + 16px);
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	font-family: var(--body);
	font-size: 17px;
	line-height: 1.65;
	color: var(--text);
	background: var(--white);
}

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

h1, h2, h3, h4 {
	font-family: var(--display);
	font-weight: 600;
	line-height: 1.15;
	color: var(--heading);
	text-transform: uppercase;
	letter-spacing: .015em;
	margin: 0 0 .5em;
}

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--navy-2); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--red); }

ul, ol { margin: 0 0 1.2em; padding-left: 1.3em; }

::selection { background: var(--red); color: #fff; }

:focus-visible {
	outline: 3px solid var(--gold);
	outline-offset: 2px;
	border-radius: 2px;
}

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}

.skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 999;
	background: var(--navy);
	color: #fff;
	padding: 10px 18px;
	border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; color: #fff; }

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

/* Icons */
.icon {
	width: 1.25em;
	height: 1.25em;
	flex: none;
	vertical-align: -0.28em;
}
.icon--star { color: var(--gold); width: 1.1em; height: 1.1em; }
.icon--flip { transform: scaleX(-1); }

.stars { display: inline-flex; gap: 2px; }

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-family: var(--display);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .06em;
	font-size: 15px;
	line-height: 1;
	padding: 14px 24px;
	border-radius: var(--radius);
	border: 2px solid transparent;
	text-decoration: none;
	cursor: pointer;
	transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
	white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }

.btn--red { background: var(--red); color: #fff; box-shadow: 0 4px 14px -4px rgba(200, 16, 46, .55); }
.btn--red:hover { background: var(--red-dark); color: #fff; }

.btn--navy { background: var(--navy); color: #fff; }
.btn--navy:hover { background: var(--navy-2); color: #fff; }

.btn--ghost { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .55); }
.btn--ghost:hover { background: rgba(255, 255, 255, .12); color: #fff; border-color: #fff; }
.section--off .btn--ghost, .section:not(.section--dark):not(.section--navy) .btn--ghost { color: var(--navy); border-color: var(--navy); }

.btn--lg { padding: 16px 30px; font-size: 16px; }
.btn--xl { padding: 19px 34px; font-size: 18px; }
.btn--block { width: 100%; }

/* Flag stripe divider */
.flag-stripe { display: flex; height: 6px; }
.flag-stripe span { flex: 1; }
.flag-stripe span:nth-child(1) { background: var(--red); }
.flag-stripe span:nth-child(2) { background: #fff; }
.flag-stripe span:nth-child(3) { background: var(--navy-2); }

/* =========================================================
   2. Top bar
   ========================================================= */
.topbar {
	background: var(--ink);
	color: #cdd5e1;
	font-size: 13.5px;
	border-bottom: 1px solid rgba(255, 255, 255, .07);
}
.topbar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	min-height: 40px;
	flex-wrap: wrap;
	padding-top: 4px;
	padding-bottom: 4px;
}
.topbar__item { display: inline-flex; align-items: center; gap: 8px; margin: 0; }
.topbar__item .icon { color: var(--gold); }
.topbar__emergency strong { color: #fff; }
.topbar__social { gap: 8px; }
.topbar__social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	color: #cdd5e1;
	background: rgba(255, 255, 255, .07);
	text-decoration: none;
}
.topbar__social .icon { width: 14px; height: 14px; }
.topbar__social a:hover { color: #fff; background: var(--red); }

/* =========================================================
   3. Header & nav
   ========================================================= */
.site-header {
	position: sticky;
	top: 0;
	z-index: 90;
	background: var(--ink-2);
	border-bottom: 1px solid rgba(255, 255, 255, .08);
	transition: box-shadow .2s ease;
}
.site-header.is-stuck { box-shadow: 0 10px 30px rgba(0, 0, 0, .45); }

.site-header__inner {
	display: flex;
	align-items: center;
	gap: 28px;
	min-height: var(--header-h);
}

.site-header__brand { display: inline-flex; align-items: center; flex: none; }
.site-header__logo {
	width: auto;
	height: 62px;
	max-width: 180px;
	display: block;
	object-fit: contain;
}

.site-nav { margin-left: auto; }
.site-nav__list {
	display: flex;
	align-items: center;
	gap: 4px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.site-nav__list > li { position: relative; }
.site-nav__list > li > a {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-family: var(--display);
	font-size: 15px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: .05em;
	color: #fff;
	text-decoration: none;
	padding: 10px 12px;
	border-radius: 8px;
}
.site-nav__list > li > a:hover { color: var(--gold); background: rgba(255, 255, 255, .06); }
.site-nav__list .icon--chevron { width: 1em; height: 1em; opacity: .55; }

.site-nav__subtoggle { display: none; }

/* Dropdowns (desktop) */
.dropdown {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 240px;
	background: #fff;
	border: 1px solid var(--line);
	border-top: 3px solid var(--red);
	border-radius: 0 0 var(--radius) var(--radius);
	box-shadow: var(--shadow-lg);
	padding: 14px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity .16s ease, transform .16s ease, visibility .16s;
	z-index: 95;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.dropdown ul { list-style: none; margin: 0; padding: 0; }
.dropdown a {
	display: block;
	padding: 8px 10px;
	font-size: 15px;
	color: var(--text);
	text-decoration: none;
	border-radius: 6px;
	line-height: 1.35;
}
.dropdown a:hover { background: var(--off); color: var(--red); }

.dropdown--wide { width: 620px; left: 50%; transform: translate(-50%, 8px); }
.has-dropdown:hover .dropdown--wide,
.has-dropdown:focus-within .dropdown--wide { transform: translate(-50%, 0); }
.dropdown__cols { columns: 2; column-gap: 8px; }
.dropdown__cols li { break-inside: avoid; }
.dropdown__all {
	display: flex !important;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: 10px;
	padding: 10px !important;
	background: var(--navy);
	color: #fff !important;
	font-family: var(--display);
	text-transform: uppercase;
	letter-spacing: .05em;
	border-radius: 8px !important;
}
.dropdown__all:hover { background: var(--red) !important; }

/* Header CTA cluster */
.site-header__cta { display: flex; align-items: center; gap: 18px; flex: none; }
.site-header__phone {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	color: #fff;
}
.site-header__phone:hover { color: #fff; }
.site-header__phone .icon {
	width: 40px;
	height: 40px;
	padding: 9px;
	background: rgba(255, 255, 255, .09);
	border-radius: 50%;
	color: var(--gold);
}
.site-header__phone-text { display: flex; flex-direction: column; line-height: 1.15; }
.site-header__phone-text small {
	font-size: 11.5px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .09em;
	color: var(--gold);
}
.site-header__phone-text strong { font-family: var(--display); font-size: 21px; letter-spacing: .02em; white-space: nowrap; }
.site-header__phone:hover .icon { background: var(--red); color: #fff; }

.site-header__toggle {
	display: none;
	background: rgba(255, 255, 255, .1);
	color: #fff;
	border: 0;
	border-radius: 8px;
	width: 46px;
	height: 46px;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}
.site-header__toggle .icon { width: 24px; height: 24px; }
.site-header__toggle .icon--close { display: none; }
body.nav-open .site-header__toggle .icon--open { display: none; }
body.nav-open .site-header__toggle .icon--close { display: block; }

/* =========================================================
   4. Hero (front page)
   ========================================================= */
.hero {
	position: relative;
	background: var(--ink) url('assets/img/hero-bg.jpg') center / cover no-repeat;
	color: #e8edf5;
	overflow: hidden;
}
.hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(900px 420px at 18% 10%, rgba(31, 55, 99, .55), transparent 60%),
		linear-gradient(180deg, rgba(12, 17, 24, .25), rgba(12, 17, 24, .78));
}
.hero__inner {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 440px;
	gap: 64px;
	align-items: center;
	padding-top: 76px;
	padding-bottom: 88px;
}
.hero__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 13.5px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .12em;
	color: var(--gold);
	background: rgba(244, 185, 66, .08);
	border: 1px solid rgba(244, 185, 66, .35);
	padding: 8px 14px;
	border-radius: 999px;
	margin-bottom: 22px;
}
.hero__title {
	color: #fff;
	font-size: clamp(40px, 5.2vw, 64px);
	font-weight: 700;
	margin-bottom: 18px;
}
.hero__title-accent {
	display: block;
	color: transparent;
	background: linear-gradient(100deg, #ff5f76 0%, var(--red) 45%, #ff8598 100%);
	-webkit-background-clip: text;
	background-clip: text;
}
.hero__sub { font-size: 19px; max-width: 54ch; color: #c3cddc; margin-bottom: 30px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 26px; }
.hero__proof {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14.5px;
	color: #aeb9ca;
}
.hero__ticks {
	list-style: none;
	margin: 26px 0 0;
	padding: 22px 0 0;
	border-top: 1px solid rgba(255, 255, 255, .12);
	display: grid;
	gap: 10px;
}
.hero__ticks li { display: flex; align-items: center; gap: 10px; font-size: 15.5px; font-weight: 500; color: #d5dde9; }
.hero__ticks .icon { color: var(--gold); width: 19px; height: 19px; }

.hero__form {
	background: #fff;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255, 255, 255, .08);
	overflow: hidden;
}
.hero__form-head {
	background: linear-gradient(120deg, var(--red-dark), var(--red));
	color: #fff;
	padding: 20px 26px 18px;
}
.hero__form-head h2 { color: #fff; font-size: 22px; margin: 0 0 2px; }
.hero__form-head p { color: rgba(255, 255, 255, .85); font-size: 14px; margin: 0; }
.hero__form .lead-form { background: transparent; border-top: 0; box-shadow: none; border-radius: 0; padding: 22px 26px 24px; }
.hero__form .lead-form__field { margin-bottom: 12px; }
.hero__form .lead-form__field textarea { min-height: 60px; }
.hero__form .lead-form__note { margin-top: 10px; font-size: 13px; }

.flag-stripe--hero { position: relative; }

/* =========================================================
   5. Trust bar
   ========================================================= */
.trustbar { background: var(--navy); color: #fff; }
.trustbar__inner {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
	padding-top: 22px;
	padding-bottom: 22px;
}
.trustbar__item { display: flex; align-items: center; gap: 14px; }
.trustbar__item > .icon { width: 40px; height: 40px; color: var(--gold); }
.trustbar__item strong { display: block; font-family: var(--display); font-size: 16.5px; text-transform: uppercase; letter-spacing: .03em; }
.trustbar__item span { font-size: 13.5px; color: #b9c4d6; }

.trustbar__inner--flat { padding: 0; }
.section--off .trustbar__item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; }
.section--off .trustbar__item strong { color: var(--heading); }
.section--off .trustbar__item span { color: var(--text-soft); }
.section--off .trustbar__item > .icon { color: var(--red); }

/* =========================================================
   6. Sections
   ========================================================= */
.section { padding: 84px 0; }
.section--off { background: var(--off); }
.section--dark {
	background: var(--ink) ;
	background-image: repeating-linear-gradient(-45deg, rgba(255, 255, 255, .015) 0 2px, transparent 2px 14px);
	color: #c3cddc;
}
.section--navy {
	background: var(--navy);
	background-image: radial-gradient(700px 300px at 85% 0%, rgba(255, 255, 255, .06), transparent 60%);
	color: #c9d3e4;
}
.section--dark h2, .section--dark h3, .section--navy h2, .section--navy h3 { color: #fff; }

.section__head { max-width: 780px; margin: 0 auto 46px; text-align: center; }
.section__eyebrow {
	display: inline-block;
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .16em;
	color: var(--red);
	margin-bottom: 10px;
}
.section__eyebrow::before, .section__eyebrow::after {
	content: '';
	display: inline-block;
	width: 26px;
	height: 2px;
	background: currentColor;
	vertical-align: middle;
	margin: 0 10px;
	opacity: .5;
}
.section__eyebrow--light { color: var(--gold); }
.section__title { font-size: clamp(28px, 3.4vw, 42px); font-weight: 700; }
.section__sub { color: var(--text-soft); font-size: 17.5px; }
.section--dark .section__sub, .section--navy .section__sub { color: #a9b6c9; }
.section__footer-link { text-align: center; margin-top: 40px; }

/* =========================================================
   7. Cards & grids
   ========================================================= */
.cards { display: grid; gap: 24px; }
.cards--2 { grid-template-columns: repeat(2, 1fr); }
.cards--3 { grid-template-columns: repeat(3, 1fr); }
.cards--5 { grid-template-columns: repeat(5, 1fr); }

.service-card {
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: 28px;
	text-decoration: none;
	color: var(--text);
	transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; color: var(--text); }
.service-card__icon {
	display: inline-flex;
	width: 58px;
	height: 58px;
	align-items: center;
	justify-content: center;
	background: linear-gradient(145deg, var(--navy), var(--navy-2));
	color: #fff;
	border-radius: 14px;
	margin-bottom: 18px;
	box-shadow: inset 0 -3px 0 rgba(0, 0, 0, .25);
}
.service-card__icon .icon { width: 30px; height: 30px; }
.service-card:hover .service-card__icon { background: linear-gradient(145deg, var(--red), var(--red-dark)); }
.service-card__title { font-size: 19.5px; margin-bottom: 8px; }
.service-card__text { font-size: 15px; color: var(--text-soft); flex: 1; }
.service-card__more {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 16px;
	font-family: var(--display);
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .08em;
	color: var(--red);
}
.service-card__more .icon { transition: transform .18s ease; }
.service-card:hover .service-card__more .icon { transform: translateX(4px); }

/* Service index (compact pills) */
.service-index {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
}
.service-index a {
	display: flex;
	align-items: center;
	gap: 12px;
	background: var(--off);
	border: 1px solid var(--line);
	border-left: 4px solid var(--navy);
	border-radius: var(--radius);
	padding: 15px 18px;
	font-weight: 600;
	font-size: 15.5px;
	color: var(--heading);
	text-decoration: none;
	transition: background .15s ease, border-color .15s ease, transform .15s ease;
}
.service-index a .icon:first-child { color: var(--red); width: 22px; height: 22px; }
.service-index a span { flex: 1; }
.service-index__arrow { opacity: 0; transition: opacity .15s ease, transform .15s ease; color: var(--red); }
.service-index a:hover { background: #fff; border-left-color: var(--red); transform: translateX(3px); }
.service-index a:hover .service-index__arrow { opacity: 1; }

/* Area cards */
.area-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: 26px 16px;
	text-align: center;
	text-decoration: none;
	color: var(--heading);
	transition: transform .18s ease, box-shadow .18s ease;
}
.area-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); color: var(--heading); }
.area-card > .icon { width: 30px; height: 30px; color: var(--red); }
.area-card h3 { font-size: 18px; margin: 4px 0 0; }
.area-card span { font-size: 13px; color: var(--text-soft); letter-spacing: .12em; }
.area-card--big { align-items: flex-start; text-align: left; padding: 28px; }
.area-card--big p { font-size: 14.5px; color: var(--text-soft); }
.areas__note { text-align: center; color: var(--text-soft); margin-top: 30px; font-size: 15.5px; }

/* Offer cards */
.offer-card {
	background: #fff;
	border: 2px dashed var(--red);
	border-radius: var(--radius-lg);
	padding: 30px 26px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	position: relative;
	overflow: hidden;
}
.offer-card::after {
	content: 'COUPON';
	position: absolute;
	top: 14px;
	right: -34px;
	transform: rotate(38deg);
	background: var(--navy);
	color: #fff;
	font-size: 10.5px;
	font-weight: 800;
	letter-spacing: .18em;
	padding: 4px 38px;
}
.offer-card__amount {
	font-family: var(--display);
	font-size: 46px;
	font-weight: 700;
	color: var(--red);
	line-height: 1;
	margin: 0;
}
.offer-card__title { font-size: 19px; margin: 0; }
.offer-card__fine { font-size: 13.5px; color: var(--text-soft); flex: 1; }

/* Benefit / value cards */
.benefit-card {
	background: var(--off);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 22px 24px;
}
.benefit-card h3 { font-size: 17.5px; margin-bottom: 6px; }
.benefit-card p { font-size: 15px; color: var(--text-soft); }

.value-card {
	background: rgba(255, 255, 255, .05);
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: var(--radius-lg);
	padding: 30px 26px;
	text-align: center;
}
.value-card > .icon { width: 42px; height: 42px; color: var(--gold); margin-bottom: 12px; }
.value-card h3 { font-size: 19px; }
.value-card p { font-size: 15px; color: #b7c2d4; }

/* =========================================================
   8. About strip
   ========================================================= */
.about-strip__inner {
	display: grid;
	grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
	gap: 56px;
	align-items: center;
}
.about-strip__media { position: relative; }
.about-strip__media img {
	width: 100%;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg);
	object-fit: cover;
	aspect-ratio: 3 / 4;
}
.about-strip__badge {
	position: absolute;
	left: -14px;
	bottom: 26px;
	display: flex;
	align-items: center;
	gap: 10px;
	background: var(--navy);
	color: #fff;
	font-family: var(--display);
	font-size: 15px;
	letter-spacing: .05em;
	padding: 14px 20px;
	border-radius: var(--radius);
	box-shadow: var(--shadow-lg);
	border-left: 4px solid var(--red);
}
.about-strip__badge .icon { color: var(--gold); width: 22px; height: 22px; }
.about-strip__content .section__eyebrow::before { display: none; }
.about-strip__content .section__eyebrow { margin-left: 0; }
.about-strip__content .section__title { font-size: clamp(26px, 3vw, 36px); }
.about-strip__actions { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; margin-top: 26px; }

.link-phone {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: var(--display);
	font-size: 21px;
	font-weight: 600;
	letter-spacing: .02em;
	color: var(--heading);
	text-decoration: none;
}
.link-phone .icon { color: var(--red); }
.link-phone:hover { color: var(--red); }
.link-phone--big { font-size: 30px; color: #fff; margin: 8px 0 18px; }
.link-phone--big:hover { color: var(--gold); }

.checklist { list-style: none; margin: 20px 0 0; padding: 0; display: grid; gap: 10px; }
.checklist li { display: flex; align-items: flex-start; gap: 10px; font-size: 15.5px; font-weight: 500; }
.checklist .icon { color: var(--red); margin-top: 3px; width: 19px; height: 19px; }
.checklist--light li { color: #c9d3e4; }
.checklist--light .icon { color: var(--gold); }
.checklist--grid { grid-template-columns: repeat(2, 1fr); gap: 12px 24px; }

/* =========================================================
   9. Request form
   ========================================================= */
.request__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
	gap: 56px;
	align-items: start;
}
.request__intro .section__eyebrow { margin-left: 0; }
.request__intro .section__eyebrow::before { display: none; }
.request__intro .section__title { color: #fff; }

.lead-form {
	background: #fff;
	border-radius: var(--radius-lg);
	padding: 34px;
	box-shadow: var(--shadow-lg);
	border-top: 5px solid var(--red);
}
.lead-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.lead-form__field { margin: 0 0 16px; }
.lead-form__field label {
	display: block;
	font-size: 13.5px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .06em;
	color: var(--heading);
	margin-bottom: 6px;
}
.lead-form__field .req { color: var(--red); }
.lead-form__field input,
.lead-form__field select,
.lead-form__field textarea {
	width: 100%;
	font: inherit;
	font-size: 16px;
	color: var(--heading);
	background: var(--off);
	border: 1.5px solid var(--line);
	border-radius: 8px;
	padding: 12px 14px;
	transition: border-color .15s ease, background .15s ease;
}
.lead-form__field textarea { resize: vertical; min-height: 110px; }
.lead-form__field input:focus,
.lead-form__field select:focus,
.lead-form__field textarea:focus {
	outline: none;
	border-color: var(--navy-2);
	background: #fff;
	box-shadow: 0 0 0 3px rgba(31, 55, 99, .15);
}
.lead-form__submit { margin: 6px 0 0; }
.lead-form__note { font-size: 14px; color: var(--text-soft); text-align: center; margin-top: 14px; }
.lead-form__hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.lead-form__notice { border-radius: 8px; padding: 13px 16px; font-size: 15px; font-weight: 500; margin-bottom: 18px; }
.lead-form__notice--ok { background: #e8f6ec; color: #14532d; border: 1px solid #bbe3c8; }
.lead-form__notice--err { background: #fdebed; color: #7f1d1d; border: 1px solid #f5c2c9; }

/* =========================================================
   10. Why / big numbers
   ========================================================= */
.why__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why__item {
	text-align: center;
	background: rgba(255, 255, 255, .05);
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: var(--radius-lg);
	padding: 36px 26px;
}
.why__item h3 { color: #fff; font-size: 20px; }
.why__item p { color: #b7c2d4; font-size: 15px; }
.why__item .why__big {
	font-family: var(--display);
	font-size: 58px;
	font-weight: 700;
	line-height: 1.1;
	color: transparent;
	background: linear-gradient(180deg, #fff 30%, var(--gold));
	-webkit-background-clip: text;
	background-clip: text;
	margin: 0 0 8px;
}

/* =========================================================
   11. Reviews & slider
   ========================================================= */
.slider { position: relative; }
.slider__track {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: calc((100% - 48px) / 3);
	gap: 24px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	padding-bottom: 8px;
	scrollbar-width: none;
}
.slider__track::-webkit-scrollbar { display: none; }
.slider__track > * { scroll-snap-align: start; }
.slider__nav { display: flex; gap: 10px; justify-content: center; margin-top: 26px; }
.slider__btn {
	width: 46px;
	height: 46px;
	border-radius: 50%;
	border: 1.5px solid rgba(255, 255, 255, .35);
	background: transparent;
	color: #fff;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: background .15s ease, border-color .15s ease;
}
.slider__btn:hover { background: var(--red); border-color: var(--red); }

.review-card {
	margin: 0;
	background: rgba(255, 255, 255, .06);
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: var(--radius-lg);
	padding: 28px;
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.review-card__text { font-size: 15.5px; line-height: 1.7; color: #d5dde9; flex: 1; }
.review-card__meta { display: flex; flex-direction: column; }
.review-card__meta strong { font-family: var(--display); font-size: 16.5px; letter-spacing: .03em; color: #fff; text-transform: uppercase; }
.review-card__meta span { font-size: 13.5px; color: var(--steel); }

.review-card--light { background: #fff; border-color: var(--line); box-shadow: var(--shadow-sm); }
.review-card--light .review-card__text { color: var(--text); }
.review-card--light .review-card__meta strong { color: var(--heading); }
.review-card--spotlight { background: var(--off); border-color: var(--line); }
.review-card--spotlight .review-card__text { color: var(--text); font-size: 18px; }
.review-card--spotlight .review-card__meta strong { color: var(--heading); }

.reviews-actions { display: flex; gap: 14px; justify-content: center; margin-top: 40px; flex-wrap: wrap; }

/* =========================================================
   12. FAQ
   ========================================================= */
.faq-group-title { font-size: 22px; margin: 38px 0 16px; }
.faq-group-title:first-child { margin-top: 0; }
.faq-list { display: grid; gap: 12px; }
.faq-item {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
}
.section--off .faq-item { box-shadow: var(--shadow-sm); border: 0; }
.faq-item summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	list-style: none;
	cursor: pointer;
	font-weight: 600;
	font-size: 16.5px;
	color: var(--heading);
	padding: 18px 22px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .icon { color: var(--red); transition: transform .2s ease; }
.faq-item[open] summary .icon { transform: rotate(180deg); }
.faq-item[open] summary { border-bottom: 1px solid var(--line); }
.faq-item p { padding: 16px 22px 20px; margin: 0; color: var(--text-soft); font-size: 15.5px; }

/* =========================================================
   13. CTA banner
   ========================================================= */
.cta-banner {
	background: linear-gradient(120deg, var(--red-dark), var(--red) 55%, #e0294a);
	color: #fff;
	position: relative;
	overflow: hidden;
}
.cta-banner::before {
	content: '';
	position: absolute;
	inset: 0;
	background: repeating-linear-gradient(-45deg, rgba(255, 255, 255, .05) 0 2px, transparent 2px 16px);
}
.cta-banner__inner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	padding-top: 56px;
	padding-bottom: 56px;
	flex-wrap: wrap;
}
.cta-banner__heading { color: #fff; font-size: clamp(26px, 3vw, 36px); margin-bottom: 8px; }
.cta-banner__sub { color: rgba(255, 255, 255, .85); margin: 0; font-size: 17px; }
.cta-banner__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.cta-banner .btn--red { background: var(--ink); box-shadow: none; }
.cta-banner .btn--red:hover { background: #000; }

/* =========================================================
   14. Page hero (interior)
   ========================================================= */
.page-hero {
	background: var(--ink) url('assets/img/hero-bg.jpg') center / cover no-repeat;
	color: #c3cddc;
	position: relative;
}
.page-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(12, 17, 24, .4), rgba(12, 17, 24, .82));
}
.page-hero .container { position: relative; padding-top: 64px; padding-bottom: 64px; }
.page-hero__title { color: #fff; font-size: clamp(30px, 4vw, 48px); font-weight: 700; max-width: 22ch; }
.page-hero__sub { font-size: 18px; max-width: 62ch; color: #c3cddc; }
.page-hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }
.page-hero__code {
	font-family: var(--display);
	font-size: 96px;
	font-weight: 700;
	line-height: 1;
	margin: 0 0 6px;
	color: transparent;
	background: linear-gradient(180deg, #fff 20%, var(--red));
	-webkit-background-clip: text;
	background-clip: text;
}
.page-hero--404 .container { text-align: center; }
.page-hero--404 .page-hero__title, .page-hero--404 .page-hero__sub { margin-left: auto; margin-right: auto; }
.page-hero--404 .page-hero__actions { justify-content: center; }

.crumbs { font-size: 13.5px; margin-bottom: 18px; color: var(--steel); }
.crumbs a { color: var(--steel); text-decoration: none; }
.crumbs a:hover { color: #fff; }
.crumbs__sep { margin: 0 8px; opacity: .5; }
.crumbs [aria-current] { color: var(--gold); }

/* =========================================================
   15. Service detail layout
   ========================================================= */
.service-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 340px;
	gap: 56px;
	align-items: start;
}
.service-layout__main h2 { font-size: 26px; margin: 44px 0 18px; }
.service-layout__main h2:first-child { margin-top: 0; }
.lead-para { font-size: 17.5px; }
.lead-para:first-of-type { font-size: 19px; color: var(--heading); font-weight: 450; }

.signs-panel {
	background: var(--off);
	border: 1px solid var(--line);
	border-left: 5px solid var(--red);
	border-radius: var(--radius);
	padding: 26px 30px;
	margin: 36px 0;
}
.signs-panel h2 { font-size: 22px !important; margin: 0 0 14px !important; }
.signs-panel__cta { margin-top: 18px; font-weight: 600; color: var(--heading); }
.signs-panel__cta a { color: var(--red); font-family: var(--display); font-size: 19px; text-decoration: none; margin-left: 6px; }

.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 18px; counter-reset: step; }
.steps__item {
	display: flex;
	gap: 18px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 20px 22px;
	box-shadow: var(--shadow-sm);
}
.steps__num {
	flex: none;
	width: 44px;
	height: 44px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(145deg, var(--red), var(--red-dark));
	color: #fff;
	font-family: var(--display);
	font-size: 20px;
	font-weight: 700;
	border-radius: 50%;
}
.steps__item h3 { font-size: 17.5px; margin-bottom: 4px; }
.steps__item p { font-size: 15px; color: var(--text-soft); margin: 0; }

.service-layout__aside { position: sticky; top: calc(var(--header-h) + 24px); display: grid; gap: 24px; }
.aside-card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: 26px;
	box-shadow: var(--shadow-sm);
}
.aside-card h2 { font-size: 19px; margin-bottom: 14px; }
.aside-card--contact { background: var(--navy); border: 0; color: #c9d3e4; }
.aside-card--contact h2 { color: #fff; }
.aside-card__phone {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: var(--display);
	font-size: 26px;
	font-weight: 700;
	color: #fff;
	text-decoration: none;
	margin-bottom: 14px;
}
.aside-card__phone .icon { color: var(--gold); }
.aside-card__phone:hover { color: var(--gold); }
.aside-card__meta { list-style: none; margin: 0 0 18px; padding: 0; display: grid; gap: 10px; font-size: 14.5px; }
.aside-card__meta li { display: flex; align-items: flex-start; gap: 10px; }
.aside-card__meta .icon { color: var(--gold); margin-top: 2px; }
.aside-card__meta a { color: inherit; }
.aside-card__links { list-style: none; margin: 0; padding: 0; display: grid; gap: 4px; }
.aside-card__links a {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 9px 10px;
	border-radius: 8px;
	font-size: 15px;
	font-weight: 500;
	color: var(--text);
	text-decoration: none;
}
.aside-card__links a:hover { background: var(--off); color: var(--red); }
.aside-card__links .icon { color: var(--navy-2); width: 20px; height: 20px; }
.aside-card__all {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 12px;
	font-family: var(--display);
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .08em;
	color: var(--red);
	text-decoration: none;
}
.aside-card--map { padding: 0; overflow: hidden; background: var(--navy); min-height: 200px; }
.aside-card--map iframe { display: block; border: 0; width: 100%; }
.aside-card__social { display: flex; gap: 10px; margin: 0; }
.aside-card__social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .1);
	color: var(--gold);
}
.aside-card__social .icon { width: 18px; height: 18px; }
.aside-card__social a:hover { background: var(--gold); color: var(--navy); }

/* =========================================================
   16. Contact / city extras
   ========================================================= */
.contact-layout { display: grid; grid-template-columns: minmax(0, 1.15fr) 380px; gap: 56px; align-items: start; }
.contact-layout__form > h2 { font-size: 28px; }
.contact-layout .lead-form { border: 1px solid var(--line); border-top: 5px solid var(--red); box-shadow: var(--shadow-md); }
.contact-layout__info { display: grid; gap: 24px; position: sticky; top: calc(var(--header-h) + 24px); }

.other-areas { margin-top: 48px; }
.other-areas h2 { font-size: 24px; }
.other-areas__list { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 12px; }
.other-areas__list a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--off);
	border: 1px solid var(--line);
	border-radius: 999px;
	padding: 9px 18px;
	font-weight: 600;
	font-size: 14.5px;
	color: var(--heading);
	text-decoration: none;
}
.other-areas__list a:hover { border-color: var(--red); color: var(--red); }
.other-areas__list .icon { color: var(--red); width: 17px; height: 17px; }

/* =========================================================
   17. Blog
   ========================================================= */
.blog-card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: transform .18s ease, box-shadow .18s ease;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card__thumb img { display: block; width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.blog-card__body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.blog-card__date { font-size: 13px; text-transform: uppercase; letter-spacing: .1em; color: var(--text-soft); font-weight: 700; margin-bottom: 8px; }
.blog-card__title { font-size: 20px; }
.blog-card__title a { color: var(--heading); text-decoration: none; }
.blog-card__title a:hover { color: var(--red); }
.blog-card__excerpt { font-size: 15px; color: var(--text-soft); flex: 1; }

.pagination { margin-top: 44px; text-align: center; }
.pagination .nav-links { display: inline-flex; gap: 8px; }
.pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 42px;
	padding: 0 12px;
	border: 1px solid var(--line);
	border-radius: 8px;
	text-decoration: none;
	font-weight: 600;
	color: var(--heading);
}
.pagination .page-numbers.current { background: var(--navy); border-color: var(--navy); color: #fff; }
.pagination .page-numbers:hover { border-color: var(--red); color: var(--red); }

.entry-content h2 { font-size: 27px; margin-top: 40px; }
.entry-content h3 { font-size: 21px; margin-top: 30px; }
.entry-content img { border-radius: var(--radius); }
.entry-thumb { margin: 0 0 30px; }
.entry-thumb img { width: 100%; border-radius: var(--radius-lg); }
.entry-content a { color: var(--red); }
.entry-content blockquote {
	margin: 24px 0;
	padding: 18px 24px;
	background: var(--off);
	border-left: 4px solid var(--red);
	border-radius: 0 var(--radius) var(--radius) 0;
	font-style: italic;
}
.wp-block-image figcaption, .wp-caption-text { font-size: 13.5px; color: var(--text-soft); text-align: center; }
.alignwide, .alignfull { border-radius: var(--radius); }

/* =========================================================
   18. Footer
   ========================================================= */
.site-footer { background: var(--ink); color: #aab6c8; font-size: 15px; }
.site-footer__grid {
	display: grid;
	grid-template-columns: 1.2fr 1.4fr 1fr 1.1fr;
	gap: 48px;
	padding-top: 72px;
	padding-bottom: 56px;
}
.site-footer__brand img { width: 175px; height: auto; margin-bottom: 18px; }
.site-footer__brand p { font-size: 14.5px; line-height: 1.7; }
.site-footer__social { display: flex; gap: 10px; margin-top: 18px; }
.site-footer__social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .08);
	color: #fff;
}
.site-footer__social .icon { width: 18px; height: 18px; }
.site-footer__social a:hover { background: var(--red); color: #fff; }
.site-footer__heading {
	color: #fff;
	font-size: 15.5px;
	letter-spacing: .1em;
	margin-bottom: 18px;
	padding-bottom: 10px;
	position: relative;
}
.site-footer__heading::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 34px;
	height: 3px;
	background: var(--red);
}
.site-footer__col .site-footer__heading:nth-of-type(2) { margin-top: 28px; }
.site-footer__links { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.site-footer__links--two-col { grid-template-columns: 1fr 1fr; gap: 8px 18px; }
.site-footer__links a { color: #aab6c8; text-decoration: none; font-size: 14px; line-height: 1.45; }
.site-footer__links a:hover { color: var(--gold); }
.site-footer__phone a {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: var(--display);
	font-size: 25px;
	font-weight: 700;
	color: #fff;
	text-decoration: none;
}
.site-footer__phone .icon { color: var(--red); }
.site-footer__phone a:hover { color: var(--gold); }
.site-footer__meta { list-style: none; margin: 16px 0 22px; padding: 0; display: grid; gap: 11px; font-size: 14px; }
.site-footer__meta li { display: flex; align-items: flex-start; gap: 10px; }
.site-footer__meta .icon { color: var(--gold); margin-top: 2px; }
.site-footer__meta a { color: #aab6c8; }

.site-footer__legal { border-top: 1px solid rgba(255, 255, 255, .08); }
.site-footer__legal-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
	padding-top: 20px;
	padding-bottom: 20px;
	font-size: 13.5px;
}
.site-footer__legal p { margin: 0; }
.site-footer__legal a { color: #cdd5e1; }
.site-footer__credit a { color: var(--gold); text-decoration: none; }
.site-footer__credit a:hover { text-decoration: underline; }

/* =========================================================
   19. Mobile call bar
   ========================================================= */
.mobile-callbar {
	display: none;
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 96;
	box-shadow: 0 -6px 18px rgba(0, 0, 0, .18);
}
.mobile-callbar a {
	flex: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-family: var(--display);
	font-size: 15.5px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .05em;
	color: #fff;
	text-decoration: none;
	padding: 15px 8px calc(15px + env(safe-area-inset-bottom, 0px));
}
.mobile-callbar__call { background: var(--red); }
.mobile-callbar__request { background: var(--navy); }

/* =========================================================
   20. Responsive
   ========================================================= */
@media (max-width: 1150px) {
	.site-header__request { display: none; }
}

@media (max-width: 1020px) {
	:root { --header-h: 74px; }

	.site-header__toggle { display: inline-flex; }
	/* .site-nav goes position:fixed below, taking it out of flow — its
	   margin-left:auto (desktop) no longer pushes the CTA cluster right,
	   so restore that here directly on the CTA cluster itself. */
	.site-header__cta { margin-left: auto; }

	.site-nav {
		position: fixed;
		top: 0;
		right: 0;
		bottom: 0;
		width: min(420px, 88vw);
		background: var(--ink);
		padding: 90px 26px 120px;
		overflow-y: auto;
		transform: translateX(105%);
		transition: transform .25s ease;
		z-index: 89;
		margin-left: 0;
	}
	body.nav-open .site-nav { transform: translateX(0); box-shadow: -20px 0 60px rgba(0, 0, 0, .4); }

	.site-nav__list { flex-direction: column; align-items: stretch; gap: 2px; }
	.site-nav__list > li { border-bottom: 1px solid rgba(255, 255, 255, .07); }
	.site-nav__list > li > a { color: #fff; font-size: 18px; padding: 15px 6px; width: 100%; }
	.site-nav__list > li > a:hover { background: transparent; color: var(--gold); }
	.site-nav__list > li > a .icon--chevron { display: none; }

	.has-dropdown { position: relative; }
	.site-nav__subtoggle {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		position: absolute;
		top: 8px;
		right: 0;
		width: 42px;
		height: 42px;
		background: rgba(255, 255, 255, .07);
		border: 0;
		border-radius: 8px;
		color: #fff;
		cursor: pointer;
	}
	.site-nav__subtoggle .icon { transition: transform .2s ease; }
	.submenu-open .site-nav__subtoggle .icon { transform: rotate(180deg); }

	.dropdown {
		position: static;
		display: none;
		opacity: 1;
		visibility: visible;
		transform: none;
		background: transparent;
		border: 0;
		box-shadow: none;
		padding: 0 0 14px;
		width: auto;
		min-width: 0;
	}
	.submenu-open .dropdown { display: block; }
	.dropdown--wide { width: auto; left: auto; }
	.has-dropdown:hover .dropdown--wide, .has-dropdown:focus-within .dropdown--wide { transform: none; }
	.dropdown__cols { columns: 1; }
	.dropdown a { color: #b9c4d6; padding: 8px 6px; font-size: 15.5px; }
	.dropdown a:hover { background: transparent; color: var(--gold); }
	.dropdown__all { background: var(--red); }

	.hero__inner { grid-template-columns: 1fr; gap: 40px; padding-top: 56px; padding-bottom: 64px; }
	.hero__content { text-align: center; display: flex; flex-direction: column; align-items: center; }
	.hero__ticks { width: 100%; max-width: 460px; justify-items: start; text-align: left; }
	.hero__form { width: 100%; max-width: 520px; margin: 0 auto; }

	.trustbar__inner { grid-template-columns: repeat(2, 1fr); }

	.cards--3 { grid-template-columns: repeat(2, 1fr); }
	.cards--5 { grid-template-columns: repeat(3, 1fr); }
	.service-index { grid-template-columns: repeat(2, 1fr); }

	.about-strip__inner, .request__inner { grid-template-columns: 1fr; gap: 40px; }
	.about-strip__media { max-width: 480px; }

	.service-layout { grid-template-columns: 1fr; }
	.service-layout__aside { position: static; grid-template-columns: repeat(2, 1fr); }

	.contact-layout { grid-template-columns: 1fr; }
	.contact-layout__info { position: static; grid-template-columns: repeat(2, 1fr); }

	.slider__track { grid-auto-columns: calc((100% - 24px) / 2); }

	.site-footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 680px) {
	body { font-size: 16px; }
	.section { padding: 60px 0; }
	.container { padding: 0 18px; }

	.topbar__license, .topbar__social, .topbar__tagline { display: none; }
	.topbar__inner { justify-content: center; }

	/* Sticky mobile-callbar (below) already provides the call CTA at this width. */
	.site-header__phone { display: none; }
	.site-header__inner { gap: 14px; }
	:root { --header-h: 66px; }
	.site-header__logo { height: 48px; max-width: 156px; }
	.topbar__inner { min-height: 36px; padding-top: 2px; padding-bottom: 2px; }

	.hero__actions, .page-hero__actions { width: 100%; flex-direction: column; align-items: stretch; }
	.hero__sub { font-size: 17px; }

	.trustbar__inner { grid-template-columns: 1fr; gap: 14px; }

	.cards--2, .cards--3 { grid-template-columns: 1fr; }
	.cards--5 { grid-template-columns: repeat(2, 1fr); }
	.service-index { grid-template-columns: 1fr; }
	.checklist--grid { grid-template-columns: 1fr; }
	.why__grid { grid-template-columns: 1fr; }
	.lead-form { padding: 24px 20px; }
	.lead-form__row { grid-template-columns: 1fr; gap: 0; }

	.service-layout__aside, .contact-layout__info { grid-template-columns: 1fr; }

	.slider__track { grid-auto-columns: 100%; }

	.cta-banner__inner { flex-direction: column; text-align: center; }
	.cta-banner__actions { width: 100%; flex-direction: column; }

	.site-footer__grid { grid-template-columns: 1fr; gap: 36px; padding-top: 56px; }
	.site-footer__legal-inner { justify-content: center; text-align: center; }

	.mobile-callbar { display: flex; }
	body { padding-bottom: 56px; }
}


/* Mobile spacing and menu polish - Codex 2026-07-02 */
@media (max-width: 760px) {

	.trustbar__inner {
		padding-top: 30px;
		padding-bottom: 32px;
	}
	.hero__inner {
		padding-top: 24px !important;
		padding-bottom: 52px !important;
		gap: 34px;
	}

	.hero__eyebrow {
		margin-top: 0;
		margin-bottom: 24px;
	}

	.hero__ticks {
		margin-bottom: 30px;
	}

	.hero__form {
		margin-bottom: 10px;
	}

	.site-nav {
		width: min(310px, 78vw);
		padding: 82px 20px 96px;
		z-index: 98;
	}

	.site-header__toggle {
		position: relative;
		z-index: 101;
	}

	body.nav-open {
		overflow: hidden;
	}

	body.nav-open::before {
		content: '';
		position: fixed;
		inset: 0;
		z-index: 88;
		background: rgba(0, 0, 0, .5);
	}

	.cta-banner__inner {
		padding-top: 46px;
		padding-bottom: 52px;
		gap: 22px;
	}

	.site-footer__grid {
		padding-bottom: 42px;
	}

	.site-footer__col:last-child {
		padding-bottom: 24px;
	}

	.site-footer__col:last-child .btn {
		margin-top: 12px;
		margin-bottom: 28px;
	}

	.site-footer__legal {
		margin-top: 18px;
	}

	.site-footer__legal-inner {
		padding-top: 28px;
		padding-bottom: calc(88px + env(safe-area-inset-bottom, 0px));
		gap: 10px;
	}
}


/* Review invitation */
.review-invite {
	padding: 66px 0 70px;
	border-top: 5px solid var(--red);
	border-bottom: 1px solid #2d3138;
	background: #121418;
	color: var(--white);
}

.review-invite__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 38px;
	text-align: center;
}

.review-invite__head {
	max-width: 700px;
	margin: 0 auto;
}

.review-invite__eyebrow {
	margin: 0 0 14px;
	color: #8bb8ff;
	font-family: var(--font-display);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.review-invite__title {
	margin: 0 0 15px;
	color: var(--white);
	font-family: var(--font-display);
	font-size: clamp(38px, 4vw, 58px);
	font-weight: 650;
	letter-spacing: 0;
	line-height: .98;
	text-transform: uppercase;
}

.review-invite__copy {
	max-width: 680px;
	margin: 0 auto;
	color: #c5cad3;
	font-size: 17px;
	line-height: 1.65;
}

.review-invite__grid {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

.review-invite__card {
	min-height: 106px;
	display: grid;
	grid-template-columns: 48px minmax(0, 1fr);
	align-items: center;
	gap: 19px;
	padding: 22px 24px;
	border: 1px solid #d9dde3;
	border-left: 5px solid #7e8691;
	border-radius: 4px;
	background: var(--white);
	box-shadow: 0 8px 22px rgba(0, 0, 0, .18);
	color: #17191d;
	text-align: left;
	text-decoration: none;
	transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.review-invite__card--google { border-left-color: #4285f4; }
.review-invite__card--yelp { border-left-color: #d32323; }
.review-invite__card--facebook { border-left-color: #1877f2; }

.review-invite__card:hover,
.review-invite__card:focus-visible {
	transform: translateY(-3px);
	border-color: #aab1bb;
	background: #f7f8fa;
	box-shadow: 0 15px 30px rgba(0, 0, 0, .28);
	color: #17191d;
	outline: none;
}

.review-invite__icon {
	width: 42px;
	height: 42px;
	display: grid;
	place-items: center;
}

.review-invite__icon img {
	display: block;
	width: 42px;
	height: 42px;
	object-fit: contain;
}

.review-invite__text {
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.review-invite__text strong {
	font-family: var(--font-display);
	font-size: 20px;
	font-weight: 650;
	line-height: 1;
	text-transform: uppercase;
}

.review-invite__text small {
	color: #656c76;
	font-size: 13px;
	line-height: 1.35;
}

@media (max-width: 680px) {
	.review-invite {
		padding: 48px 0 52px;
	}

	.review-invite__inner {
		gap: 30px;
	}

	.review-invite__title {
		font-size: 42px;
	}

	.review-invite__copy {
		font-size: 16px;
	}

	.review-invite__grid {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.review-invite__card {
		min-height: 92px;
		grid-template-columns: 40px minmax(0, 1fr);
		gap: 14px;
		padding: 17px 16px;
	}

	.review-invite__icon,
	.review-invite__icon img {
		width: 36px;
		height: 36px;
	}
}
