/* ==========================================================================
   Apex Contractor
   Every value reads a Customizer variable printed by inc/dynamic-css.php.
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
	margin: 0;
	background: var(--ax-bg);
	color: var(--ax-text);
	font-family: var(--ax-font-body);
	font-size: var(--ax-fs-base);
	font-weight: var(--ax-weight-body);
	line-height: var(--ax-lh-body);
	-webkit-font-smoothing: antialiased;
}

img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--ax-accent); text-underline-offset: 2px; }

h1, h2, h3, h4 {
	font-family: var(--ax-font-heading);
	font-weight: var(--ax-weight-heading);
	color: var(--ax-heading);
	line-height: var(--ax-lh-heading);
	letter-spacing: var(--ax-heading-spacing);
	margin: 0 0 .5em;
	text-wrap: balance;
}
p { margin: 0 0 1.1em; }

.ax-i { width: 1.15em; height: 1.15em; flex: none; }

/* ------------------------------------------------------------- Shell */

.ax-site { overflow-x: hidden; }
.ax-container { width: 100%; max-width: var(--ax-container); margin-inline: auto; padding-inline: 24px; }
.ax-container--narrow { max-width: 820px; }

.ax-section { padding-block: var(--ax-section-pad); }
.ax-section--alt { background: var(--ax-alt-bg); }
.ax-section--dark { background: var(--ax-dark); }
.ax-section--dark .ax-section-title,
.ax-section--dark h2, .ax-section--dark h3 { color: #fff; }
.ax-section--dark p { color: #a3a3a3; }

.ax-head { max-width: 760px; margin: 0 auto calc(var(--ax-gap) * 1.9); text-align: center; }
.ax-eyebrow {
	margin: 0 0 .85em;
	font-family: var(--ax-font-heading);
	font-size: var(--ax-fs-eyebrow);
	font-weight: 700;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--ax-accent);
}
.ax-eyebrow--muted { color: #9a9a9a; }
.ax-section-title { font-size: var(--ax-fs-section); margin-bottom: .4em; }
.ax-section-sub { font-size: var(--ax-fs-section-sub); color: var(--ax-text); margin: 0; }

.ax-empty { padding: 26px; border: 1px dashed var(--ax-border); border-radius: var(--ax-card-radius); text-align: center; }

/* ----------------------------------------------------------- Buttons */

.ax-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: .6em;
	padding: .95em 1.7em;
	font-family: var(--ax-font-heading);
	font-size: var(--ax-fs-button);
	font-weight: 700;
	line-height: 1.1;
	border: 2px solid transparent;
	border-radius: var(--ax-btn-radius);
	text-decoration: none;
	cursor: pointer;
	transition: background-color .16s ease, color .16s ease, border-color .16s ease;
}
.ax-btn--lg { padding: 1.1em 2em; font-size: calc(var(--ax-fs-button) * 1.08); }
.ax-btn--block { width: 100%; }
.ax-btn--accent { background: var(--ax-accent); color: var(--ax-accent-text); }
.ax-btn--accent:hover { background: var(--ax-accent-dark); color: var(--ax-accent-text); }
.ax-btn--outline { background: transparent; color: var(--ax-heading); border-color: var(--ax-border); }
.ax-btn--outline:hover { border-color: var(--ax-accent); color: var(--ax-accent); }
.ax-btn:focus-visible { outline: 3px solid var(--ax-accent); outline-offset: 3px; }
.ax-btn strong { font-weight: 700; }

/* ------------------------------------------------------------ Header */

.ax-topbar { background: #111; color: #b9b9b9; font-size: var(--ax-fs-small); }
.ax-topbar p { margin: 0; padding-block: 11px; text-align: center; }
.ax-topbar a { color: var(--ax-accent); font-weight: 700; text-decoration: none; }

.ax-header { background: var(--ax-header-bg); position: relative; z-index: 60; }
.has-sticky-header .ax-header { position: sticky; top: 0; }
.ax-nav-open .ax-header { z-index: 95; }
.ax-nav-open { overflow: hidden; }
.ax-header__inner { display: flex; align-items: center; gap: 28px; padding-block: 14px; }

.ax-brand { margin-right: auto; }
.ax-brand img, .custom-logo { width: var(--ax-logo-w); height: auto; }
.ax-brand__text { text-decoration: none; display: block; }
.ax-brand__name { display: block; font-family: var(--ax-font-heading); font-weight: 800; font-size: calc(var(--ax-fs-h3) * .9); color: #fff; line-height: 1.1; }
.ax-brand__tag { display: block; font-size: calc(var(--ax-fs-small) * .8); letter-spacing: .1em; text-transform: uppercase; color: #8d8d8d; margin-top: 3px; }

.ax-menu { display: flex; align-items: center; gap: 2px; list-style: none; margin: 0; padding: 0; }
.ax-menu li { position: relative; }
.ax-menu a {
	display: block; padding: 10px 14px; text-decoration: none;
	font-family: var(--ax-font-heading); font-size: var(--ax-fs-menu); font-weight: 600;
	color: #f2f2f2; border-radius: 6px;
}
.ax-menu a:hover, .ax-menu .current-menu-item > a, .ax-menu .current_page_item > a { color: var(--ax-accent); }
.ax-menu .menu-item-has-children > a::after {
	content: ""; display: inline-block; width: 6px; height: 6px; margin-left: 7px;
	border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
	transform: translateY(-2px) rotate(45deg);
}

.ax-menu .sub-menu {
	position: absolute; top: 100%; left: 0; min-width: 260px;
	background: #fff; list-style: none; margin: 0; padding: 8px;
	border-radius: var(--ax-card-radius);
	box-shadow: 0 20px 44px rgba(0,0,0,.22);
	opacity: 0; visibility: hidden; transform: translateY(8px);
	transition: opacity .18s ease, transform .18s ease, visibility .18s;
	z-index: 70;
}
.ax-menu li:hover > .sub-menu, .ax-menu li:focus-within > .sub-menu, .ax-menu li.is-open > .sub-menu { opacity: 1; visibility: visible; transform: none; }
.ax-menu .sub-menu a { color: var(--ax-heading); font-weight: 500; }
.ax-menu .sub-menu a:hover { background: var(--ax-alt-bg); color: var(--ax-accent); }
.ax-menu .sub-menu .menu-item-has-children > a::after { display: none; }

.ax-submenu-toggle { display: none; background: none; border: 0; padding: 8px; cursor: pointer; color: inherit; }
.ax-caret { display: inline-block; width: 9px; height: 9px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg); }

.ax-nav__cta { display: none; }
.ax-nav-toggle { display: none; background: none; border: 1px solid #333; border-radius: 8px; padding: 10px 12px; cursor: pointer; }
.ax-nav-toggle__bars span { display: block; width: 22px; height: 2px; background: #fff; margin: 4px 0; transition: transform .2s ease, opacity .2s ease; }
.ax-nav-toggle[aria-expanded="true"] .ax-nav-toggle__bars span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.ax-nav-toggle[aria-expanded="true"] .ax-nav-toggle__bars span:nth-child(2) { opacity: 0; }
.ax-nav-toggle[aria-expanded="true"] .ax-nav-toggle__bars span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* -------------------------------------------------------------- Hero */

.ax-hero {
	position: relative;
	background: #1a1a1a center / cover no-repeat;
	padding-block: calc(var(--ax-section-pad) * .95);
	min-height: var(--ax-hero-h);
	display: flex; align-items: center;
}
.ax-hero::before {
	content: ""; position: absolute; inset: 0;
	background: linear-gradient(90deg, rgba(var(--ax-overlay), calc(var(--ax-overlay-a) + .16)) 0%, rgba(var(--ax-overlay), var(--ax-overlay-a)) 100%);
}
.ax-hero__inner { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: calc(var(--ax-gap) * 2.4); align-items: center; width: 100%; }

.ax-hero__eyebrow {
	margin: 0 0 1em; font-family: var(--ax-font-heading);
	font-size: var(--ax-fs-eyebrow); font-weight: 700;
	letter-spacing: .2em; text-transform: uppercase; color: #cfcfcf;
}
.ax-hero__title { font-size: var(--ax-fs-hero); color: #fff; margin-bottom: .35em; }
.ax-hero__company {
	margin: 0 0 1em; font-family: var(--ax-font-heading);
	font-size: calc(var(--ax-fs-small) * .95); font-weight: 600;
	letter-spacing: .12em; text-transform: uppercase; color: #9d9d9d;
}
.ax-hero__sub { font-size: var(--ax-fs-hero-sub); color: #dcdcdc; max-width: 46ch; }
.ax-hero__cta { margin: 30px 0 0; }

.ax-hero__badges { list-style: none; margin: 26px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.ax-hero__badges li {
	display: inline-flex; align-items: center; gap: 8px;
	padding: 9px 16px; border-radius: 999px;
	background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16);
	color: #ececec; font-size: var(--ax-fs-small);
}
.ax-hero__badges span { color: var(--ax-accent); }

/* ------------------------------------------------------ Quote card */

.ax-form-wrap.is-card {
	background: #fff; border-radius: 14px; padding: 34px 32px;
	box-shadow: 0 30px 70px rgba(0,0,0,.3);
}
.ax-form-title {
	text-align: center; font-size: calc(var(--ax-fs-h3) * 1.12);
	margin: 0 0 22px; padding-bottom: 22px; border-bottom: 1px solid var(--ax-border);
}
.ax-form-title em { font-style: normal; color: var(--ax-accent); }

.ax-field { margin: 0 0 16px; }
.ax-field label { display: block; font-family: var(--ax-font-heading); font-size: var(--ax-fs-small); font-weight: 700; color: var(--ax-heading); margin-bottom: 7px; }
.ax-req { color: var(--ax-accent); }
.ax-field input[type="text"], .ax-field input[type="email"], .ax-field input[type="tel"],
.ax-field select, .ax-field textarea, .ax-search__field {
	width: 100%; padding: 13px 15px;
	font-family: inherit; font-size: var(--ax-fs-small); color: var(--ax-heading);
	background: #fff; border: 1px solid #dcdcdc; border-radius: 8px;
	transition: border-color .15s ease, box-shadow .15s ease;
}
.ax-field textarea { resize: vertical; min-height: 96px; }
.ax-field input:focus, .ax-field select:focus, .ax-field textarea:focus {
	outline: none; border-color: var(--ax-accent);
	box-shadow: 0 0 0 3px rgba(var(--ax-accent-rgb), .16);
}
.ax-field--check label { display: flex; gap: 10px; align-items: flex-start; font-weight: 400; line-height: 1.5; }
.ax-field--check input { margin-top: 3px; flex: none; }
.ax-field--submit { margin: 22px 0 10px; }
.ax-form__note { margin: 0; text-align: center; font-size: calc(var(--ax-fs-small) * .92); color: #9a9a9a; }
.ax-hp { position: absolute !important; left: -9999px; }

.ax-notice { padding: 13px 16px; border-radius: 8px; margin-bottom: 16px; font-size: var(--ax-fs-small); }
.ax-notice--success { background: #e7f6ec; color: #14663a; border: 1px solid #b6e2c6; }
.ax-notice--error { background: #fdecec; color: #8f2226; border: 1px solid #f3c2c4; }

/* ------------------------------------------------- Dark strips */

.ax-strip { background: #1a1a1a; }
.ax-strip .ax-container { padding-inline: 0; }
.ax-strip__grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); }
.ax-strip__grid > li { padding: 30px 26px; border-left: 1px solid rgba(255,255,255,.09); }
.ax-strip__grid > li:first-child { border-left: 0; }

.ax-trust__item { display: flex; align-items: flex-start; gap: 14px; }
.ax-trust__icon { color: var(--ax-accent); }
.ax-trust__icon .ax-i { width: 26px; height: 26px; }
.ax-trust__body { display: flex; flex-direction: column; gap: 3px; }
.ax-trust__body strong { font-family: var(--ax-font-heading); font-weight: 700; color: #fff; font-size: var(--ax-fs-small); }
.ax-trust__body span { color: #9a9a9a; font-size: calc(var(--ax-fs-small) * .95); }

.ax-stats { background: var(--ax-dark); }
.ax-stats__item { text-align: center; }
.ax-stats__num { display: block; font-family: var(--ax-font-heading); font-weight: 800; font-size: calc(var(--ax-fs-section) * .95); color: var(--ax-accent); line-height: 1.1; }
.ax-stats__label { display: block; margin-top: 8px; color: #9a9a9a; font-size: var(--ax-fs-small); font-weight: 600; }

/* --------------------------------------------------------- Call band */

.ax-callband { background: #141416; }
.ax-callband__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 22px; padding-block: 34px; }
.ax-callband__text h2 { color: #fff; font-size: var(--ax-fs-h3); margin: 0 0 .35em; }
.ax-callband__text p { margin: 0; color: #9c9c9c; font-size: var(--ax-fs-small); }

/* ------------------------------------------------------------- Cards */

.ax-grid { display: grid; gap: var(--ax-gap); }
.ax-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.ax-card {
	background: #fff; border: 1px solid var(--ax-border);
	border-radius: var(--ax-card-radius); overflow: hidden;
	display: flex; flex-direction: column;
	transition: box-shadow .2s ease, transform .2s ease;
}
.ax-card:hover { box-shadow: 0 14px 34px rgba(0,0,0,.08); }
.ax-card__title { font-size: var(--ax-fs-card); margin: 0 0 .55em; }
.ax-card__title a { color: inherit; text-decoration: none; }
.ax-card__title a:hover { color: var(--ax-accent); }
.ax-card__text { margin: 0; }

.ax-service__media { display: block; aspect-ratio: 16 / 10; overflow: hidden; }
.ax-service__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.ax-service:hover .ax-service__media img { transform: scale(1.05); }
.ax-service__body { padding: 26px 26px 28px; display: flex; flex-direction: column; gap: 0; flex: 1; }
.ax-more {
	margin-top: auto; padding-top: 18px;
	font-family: var(--ax-font-heading); font-weight: 700; font-size: var(--ax-fs-small);
	color: var(--ax-accent); text-decoration: none;
}
.ax-more:hover span { margin-left: 4px; }
.ax-services__more { margin: calc(var(--ax-gap) * 1.6) 0 0; text-align: center; }
.ax-service__icon {
	display: grid; place-items: center; width: 56px; height: 56px; margin: 26px 26px -6px;
	border-radius: 10px; background: rgba(var(--ax-accent-rgb), .1); color: var(--ax-accent);
}
.ax-service__icon svg { width: 28px; height: 28px; fill: currentColor; }

.ax-icon-tile {
	display: grid; place-items: center; width: 48px; height: 48px;
	border-radius: 10px; background: rgba(var(--ax-accent-rgb), .1);
	color: var(--ax-accent); margin-bottom: 22px;
}
.ax-icon-tile .ax-i { width: 22px; height: 22px; }
.ax-icon-tile--solid { background: var(--ax-accent); color: var(--ax-accent-text); }

.ax-why__card { padding: 30px 28px 32px; }

.ax-promise__card {
	background: var(--ax-alt-bg);
	border-top: 3px solid var(--ax-accent);
	border-radius: 4px 4px var(--ax-card-radius) var(--ax-card-radius);
	padding: 30px 28px 32px;
}

/* ----------------------------------------------------------- Process */

.ax-steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: calc(var(--ax-gap) * 1.6); }
.ax-step { position: relative; text-align: center; }
.ax-step__num { display: block; font-family: var(--ax-font-heading); font-weight: 700; font-size: var(--ax-fs-eyebrow); letter-spacing: .2em; color: var(--ax-accent); margin-bottom: 14px; }
.ax-step__badge {
	display: grid; place-items: center; width: 62px; height: 62px; margin: 0 auto 20px;
	border-radius: 50%; background: #222; color: var(--ax-accent);
}
.ax-step__badge .ax-i { width: 26px; height: 26px; }
.ax-step__title { color: #fff; font-size: var(--ax-fs-card); margin-bottom: .5em; }
.ax-step__text { margin: 0; color: #a3a3a3; }
.ax-step__arrow { position: absolute; top: 52px; right: calc(-1 * var(--ax-gap) * .8); color: #4a4a4a; font-size: 22px; }
.ax-steps > .ax-step:nth-child(3n) .ax-step__arrow { display: none; }

/* -------------------------------------------------- About / longform */

.ax-about__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: calc(var(--ax-gap) * 2.2); align-items: center; }
.ax-about__grid.is-single { grid-template-columns: 1fr; max-width: 820px; }
.ax-about__img { width: 100%; border-radius: var(--ax-img-radius); }
.ax-about__cta { margin: 26px 0 0; }

.ax-longform__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: calc(var(--ax-gap) * 2.4); align-items: start; }
.ax-longform__aside { position: sticky; top: 110px; }
.ax-longform__cta { margin-top: 26px; }
.ax-longform__body p:last-child { margin-bottom: 0; }

.ax-feature__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: calc(var(--ax-gap) * 2.2); align-items: start; }
.ax-feature__grid.is-reversed { grid-template-columns: 1.15fr .85fr; }
.ax-feature__grid.is-reversed .ax-feature__media { order: 2; }
.ax-feature__grid.is-single { grid-template-columns: 1fr; max-width: 820px; margin-inline: auto; }
.ax-feature__img { width: 100%; border-radius: var(--ax-img-radius); }
.ax-feature__body p:last-child { margin-bottom: 0; }

/* --------------------------------------------------------------- FAQ */

.ax-faq .ax-container { max-width: 900px; }
.ax-accordion { display: grid; gap: 12px; }
.ax-acc { background: #fff; border: 1px solid var(--ax-border); border-radius: 10px; }
.ax-acc__head { margin: 0; font-size: inherit; }
.ax-acc__btn {
	width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
	padding: 22px 24px; background: none; border: 0; cursor: pointer; text-align: left;
	font-family: var(--ax-font-heading); font-size: var(--ax-fs-card); font-weight: 700; color: var(--ax-heading);
}
.ax-acc__sign {
	position: relative; flex: none; width: 30px; height: 30px; border-radius: 50%;
	border: 1px solid var(--ax-border);
}
.ax-acc__sign::before, .ax-acc__sign::after {
	content: ""; position: absolute; inset: 0; margin: auto; background: var(--ax-heading);
	transition: transform .2s ease, opacity .2s ease;
}
.ax-acc__sign::before { width: 12px; height: 2px; }
.ax-acc__sign::after { width: 2px; height: 12px; }
.ax-acc__btn[aria-expanded="true"] .ax-acc__sign { background: var(--ax-accent); border-color: var(--ax-accent); }
.ax-acc__btn[aria-expanded="true"] .ax-acc__sign::before,
.ax-acc__btn[aria-expanded="true"] .ax-acc__sign::after { background: #fff; }
.ax-acc__btn[aria-expanded="true"] .ax-acc__sign::after { transform: rotate(90deg); opacity: 0; }
.ax-acc__panel { padding: 0 24px 24px; }
.ax-acc__panel > :last-child { margin-bottom: 0; }

/* ---------------------------------------------------------- Mosaic */

.ax-mosaic { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.ax-mosaic__item { margin: 0; position: relative; border-radius: var(--ax-img-radius); overflow: hidden; }
.ax-mosaic__item a { display: block; height: 100%; }
.ax-mosaic__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.ax-mosaic__item:hover img { transform: scale(1.04); }
.ax-mosaic__item--1 { grid-column: span 2; grid-row: span 2; }
.ax-mosaic__item figcaption {
	position: absolute; left: 0; right: 0; bottom: 0; padding: 26px 20px 16px;
	background: linear-gradient(transparent, rgba(0,0,0,.72));
	color: #fff; font-size: var(--ax-fs-small); font-weight: 600;
}

/* ------------------------------------------------------- Final CTA */

.ax-finalcta__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: calc(var(--ax-gap) * 2.4); align-items: center; }
.ax-finalcta__text .ax-section-title { color: #fff; }
.ax-finalcta__text p { color: #a3a3a3; max-width: 48ch; }
.ax-finalcta__cta { margin: 30px 0 14px; }
.ax-finalcta__note { font-size: var(--ax-fs-small); }

/* ------------------------------------------------------------- Map */

.ax-map-section { background: var(--ax-alt-bg); }
.ax-map { position: relative; height: var(--ax-map-h); border-radius: var(--ax-img-radius); overflow: hidden; background: #e8e8e8; }
.ax-map iframe { display: block; width: 100%; height: 100%; border: 0; }
.ax-map--grayscale iframe { filter: grayscale(1); }
.ax-map--muted iframe { filter: grayscale(.55) contrast(.94) saturate(.75); }
.ax-map__load {
	display: flex; flex-direction: column; align-items: center; justify-content: center;
	gap: 10px; width: 100%; height: 100%; padding: 26px; cursor: pointer; text-align: center;
	background:
		repeating-linear-gradient(52deg, transparent 0 40px, rgba(0,0,0,.05) 40px 42px),
		repeating-linear-gradient(-34deg, transparent 0 56px, rgba(0,0,0,.05) 56px 58px),
		#eee;
	border: 0; font-family: inherit; color: var(--ax-heading);
}
.ax-map__pin { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%; background: var(--ax-accent); }
.ax-map__pin svg { width: 24px; height: 24px; fill: #fff; }
.ax-map__load-text { font-family: var(--ax-font-heading); font-weight: 700; font-size: var(--ax-fs-card); }
.ax-map__addr { font-size: var(--ax-fs-small); }
.ax-map__note { font-size: calc(var(--ax-fs-small) * .9); opacity: .65; }
.ax-map-section__foot { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; margin-top: 22px; }
.ax-map-section__addr { margin: 0; font-weight: 700; color: var(--ax-heading); }
.ax-map-section__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.ax-map-section__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: calc(var(--ax-gap) * 1.8); align-items: center; }

/* ------------------------------------------------------------ Footer */

.ax-footer { background: var(--ax-footer-bg); color: var(--ax-footer-text); font-size: var(--ax-fs-footer); }
.ax-footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: calc(var(--ax-gap) * 1.6); padding-block: calc(var(--ax-section-pad) * .8); }
.ax-footer a { color: var(--ax-footer-text); text-decoration: none; }
.ax-footer a:hover { color: #fff; }
.ax-footer__brand { font-family: var(--ax-font-heading); font-weight: 800; font-size: var(--ax-fs-h4); color: #fff; margin: 0 0 10px; }
.ax-footer__tagline { font-family: var(--ax-font-heading); font-weight: 700; color: #fff; margin: 0 0 12px; }
.ax-footer__about { margin: 0 0 16px; }
.ax-footer__phone { margin: 0 0 4px; }
.ax-footer__phone a { color: var(--ax-accent); font-family: var(--ax-font-heading); font-weight: 800; font-size: var(--ax-fs-h4); }
.ax-footer__note { margin: 0; font-size: calc(var(--ax-fs-small) * .92); opacity: .75; }
.ax-footer__title {
	color: #fff; font-size: calc(var(--ax-fs-small) * .92); font-weight: 700;
	letter-spacing: .14em; text-transform: uppercase; margin: 0 0 18px;
}
.ax-footer__menu, .ax-footer__contact { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.ax-footer__contact li { display: flex; gap: 10px; align-items: flex-start; }
.ax-footer__contact .ax-i { margin-top: .2em; color: var(--ax-accent); }
.ax-footer__all { color: #fff !important; font-weight: 600; }
.ax-footer__bar { border-top: 1px solid rgba(255,255,255,.1); }
.ax-footer__bar-inner { display: flex; flex-wrap: wrap; gap: 10px 22px; justify-content: center; align-items: center; padding-block: 20px; }
.ax-copy { margin: 0; font-size: calc(var(--ax-fs-small) * .95); }
.ax-legal-menu { list-style: none; margin: 0; padding: 0; display: flex; gap: 18px; font-size: calc(var(--ax-fs-small) * .95); }

.ax-social { list-style: none; margin: 18px 0 0; padding: 0; display: flex; gap: 10px; }
.ax-social__link { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.1); color: #fff; }
.ax-social__icon { width: 16px; height: 16px; fill: currentColor; }
.ax-social__link:hover { background: var(--ax-accent); }

/* ------------------------------------------------------- Entry / blog */

.ax-entry h2 { margin-top: 1.6em; }
.ax-entry ul, .ax-entry ol { padding-left: 1.3em; }
.ax-entry img { border-radius: var(--ax-img-radius); }
/* ------------------------------------------------ Inner page banner */

.ax-banner {
	position: relative; background: var(--ax-dark) center / cover no-repeat; color: #fff;
	min-height: var(--ax-inner-hero-h); display: flex; align-items: center;
	padding-block: 60px;
}
.ax-banner::before { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,var(--ax-banner-a, .72)); }
.ax-banner:not(.has-image)::before { background: rgba(0,0,0,.25); }
.ax-banner .ax-container { position: relative; }
.ax-banner__eyebrow {
	margin: 0 0 .7em; font-family: var(--ax-font-heading);
	font-size: var(--ax-fs-eyebrow); font-weight: 700;
	letter-spacing: .16em; text-transform: uppercase; color: var(--ax-accent);
}
.ax-banner__title { color: #fff; font-size: var(--ax-fs-h1); margin-bottom: .3em; }
.ax-banner__sub { color: rgba(255,255,255,.85); margin: 0; max-width: 62ch; font-size: var(--ax-fs-hero-sub); }
.ax-banner__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.ax-crumbs { margin: 0 0 18px; font-size: var(--ax-fs-small); color: rgba(255,255,255,.72); display: flex; gap: 8px; flex-wrap: wrap; }
.ax-crumbs a { color: rgba(255,255,255,.9); text-decoration: none; }
.ax-crumbs a:hover { color: var(--ax-accent); }

.ax-btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.45); }
.ax-btn--ghost-light:hover { background: #fff; color: var(--ax-heading); border-color: #fff; }

/* -------------------------------------------- Inner page: two columns */

.ax-inner__grid {
	display: grid; grid-template-columns: minmax(0, 1fr) 340px;
	gap: calc(var(--ax-gap) * 1.9); align-items: start;
}
.ax-inner__grid.is-full { grid-template-columns: minmax(0, 1fr); max-width: 860px; }
.ax-inner__main > .ax-entry > :first-child { margin-top: 0; }
.ax-inner__h2 { font-size: var(--ax-fs-h3); margin: 0 0 22px; }

.ax-price-note {
	display: inline-block; margin: 26px 0 0; padding: 12px 20px;
	background: rgba(var(--ax-accent-rgb), .1); color: var(--ax-heading);
	border-left: 3px solid var(--ax-accent); border-radius: 0 8px 8px 0;
	font-family: var(--ax-font-heading); font-weight: 700;
}

.ax-related {
	margin: 30px 0 0; padding-top: 22px; border-top: 1px solid var(--ax-border);
	font-size: var(--ax-fs-small); display: flex; flex-wrap: wrap; gap: 8px; align-items: baseline;
}
.ax-related__label { font-family: var(--ax-font-heading); font-weight: 700; color: var(--ax-heading); }
.ax-related a { text-decoration: none; }
.ax-related a:hover { text-decoration: underline; }
.ax-related__sep { opacity: .4; }

.ax-inner__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.ax-inner__faq { margin-top: calc(var(--ax-gap) * 2); }

/* --------------------------------------------- Inner page: sidebar */

.ax-sticky { position: sticky; top: 24px; display: grid; gap: 20px; }
.has-sticky-header .ax-sticky { top: 104px; }

.ax-sidecard {
	background: #fff; border: 1px solid var(--ax-border);
	border-radius: var(--ax-card-radius); padding: 28px 26px;
}
.ax-sidecard__title { font-size: var(--ax-fs-card); margin: 0 0 18px; }
.ax-sidecard__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.ax-sidecard__list li { display: flex; gap: 12px; align-items: flex-start; font-size: var(--ax-fs-small); }
.ax-sidecard__list .ax-i { flex: none; width: 20px; height: 20px; margin-top: .1em; color: var(--ax-accent); }

.ax-sidecard--phone { background: var(--ax-dark); border-color: var(--ax-dark); text-align: center; }
.ax-sidecard--phone .ax-sidecard__title { color: #fff; margin-bottom: 6px; }
.ax-sidecard__icon {
	display: grid; place-items: center; width: 52px; height: 52px; margin: 0 auto 16px;
	border-radius: 50%; background: var(--ax-accent); color: var(--ax-accent-text);
}
.ax-sidecard__icon .ax-i { width: 24px; height: 24px; }
.ax-sidecard__sub { margin: 0 0 14px; color: #9a9a9a; font-size: calc(var(--ax-fs-small) * .95); }
.ax-sidecard__number {
	display: block; font-family: var(--ax-font-heading); font-weight: 800;
	font-size: var(--ax-fs-h4); color: #fff; text-decoration: none; margin-bottom: 12px;
}
.ax-sidecard__number:hover { color: var(--ax-accent); }
.ax-sidecard__hours {
	display: flex; gap: 8px; align-items: center; justify-content: center;
	margin: 0 0 20px; color: #9a9a9a; font-size: calc(var(--ax-fs-small) * .92);
}
.ax-sidecard__hours .ax-i { width: 16px; height: 16px; flex: none; }
.ax-sidecard--phone .ax-btn { width: 100%; }

/* In the sidebar the form sits on white, so it takes a border rather than the
   heavy lift-off shadow it uses over a dark hero. */
.ax-inner__aside .ax-form-wrap.is-card {
	border: 1px solid var(--ax-border); box-shadow: none;
	border-radius: var(--ax-card-radius); padding: 28px 26px;
}
.ax-inner__aside .ax-form-title { font-size: var(--ax-fs-card); }

.ax-sidelist { list-style: none; margin: 0; padding: 0; display: grid; }
.ax-sidelist li + li { border-top: 1px solid var(--ax-border); }
.ax-sidelist a {
	display: flex; align-items: center; justify-content: space-between; gap: 14px;
	padding: 14px 0; text-decoration: none; color: var(--ax-heading);
	font-family: var(--ax-font-heading); font-weight: 600; font-size: var(--ax-fs-small);
}
.ax-sidelist a:hover { color: var(--ax-accent); }
.ax-sidelist__arrow { color: var(--ax-accent); transition: transform .2s ease; }
.ax-sidelist a:hover .ax-sidelist__arrow { transform: translateX(4px); }

/* ----------------------------------- Inner page: closing estimate band */

.ax-innerquote { background: var(--ax-dark); }
.ax-innerquote__grid { display: grid; grid-template-columns: 1fr 1fr; gap: calc(var(--ax-gap) * 2); align-items: center; }
.ax-innerquote__title { color: #fff; font-size: var(--ax-fs-section); margin-bottom: .4em; }
.ax-innerquote__sub { color: #9c9c9c; margin: 0 0 24px; }
.ax-innerquote__list { list-style: none; margin: 0 0 28px; padding: 0; display: grid; gap: 13px; }
.ax-innerquote__list li { display: flex; gap: 12px; align-items: flex-start; color: #dcdcdc; font-size: var(--ax-fs-small); }
.ax-innerquote__list .ax-i { flex: none; width: 20px; height: 20px; margin-top: .1em; color: var(--ax-accent); }
.ax-innerquote__phone {
	display: inline-flex; gap: 12px; align-items: center; text-decoration: none;
	font-family: var(--ax-font-heading); font-weight: 800; font-size: var(--ax-fs-h4); color: #fff;
}
.ax-innerquote__phone .ax-i { color: var(--ax-accent); }
.ax-innerquote__phone:hover { color: var(--ax-accent); }
.ax-innerquote .ax-form-wrap { background: #fff; border-radius: var(--ax-card-radius); padding: 34px 32px; }

.ax-comments-wrap { padding-block: var(--ax-section-pad); }

.ax-mobile-bar { display: none; }

/* --------------------------------------------------------- Responsive */

@media (max-width: 1080px) {
	.ax-header__phone { display: none; }
	.ax-strip__grid { grid-template-columns: repeat(2, 1fr); }
	.ax-strip__grid > li:nth-child(odd) { border-left: 0; }
	.ax-strip__grid > li { border-top: 1px solid rgba(255,255,255,.09); }
	.ax-strip__grid > li:nth-child(-n+2) { border-top: 0; }
}

@media (max-width: 980px) {
	.ax-grid--3, .ax-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.ax-steps > .ax-step:nth-child(2n) .ax-step__arrow { display: none; }
	.ax-step__arrow { display: none; }
	.ax-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1080px) {
	.ax-inner__grid { grid-template-columns: minmax(0, 1fr) 300px; gap: calc(var(--ax-gap) * 1.3); }
}

@media (max-width: 900px) {
	.ax-inner__grid,
	.ax-innerquote__grid { grid-template-columns: 1fr; }
	.ax-sticky { position: static; }
	.ax-inner__aside { max-width: 520px; }
	.ax-hero__inner,
	.ax-finalcta__grid,
	.ax-about__grid,
	.ax-longform__grid,
	.ax-feature__grid,
	.ax-feature__grid.is-reversed,
	.ax-map-section__grid { grid-template-columns: 1fr; }
	.ax-feature__grid.is-reversed .ax-feature__media { order: 0; }
	.ax-longform__aside { position: static; }
	.ax-mosaic { grid-template-columns: repeat(2, 1fr); }
	.ax-mosaic__item--1 { grid-column: span 2; grid-row: span 1; }
}

@media (max-width: 782px) {
	.ax-nav-toggle { display: block; position: relative; z-index: 96; }
	.ax-nav__cta { display: flex; padding: 18px 20px 4px; }
	.ax-nav__cta .ax-btn { width: 100%; }
	.ax-nav {
		position: fixed; inset: 0 0 0 auto; width: min(360px, 88vw);
		background: #111; box-shadow: -12px 0 40px rgba(0,0,0,.4);
		transform: translateX(100%); transition: transform .28s ease;
		overflow-y: auto; padding: 84px 0 40px; z-index: 90;
	}
	.ax-nav.is-open { transform: none; }
	.ax-menu { flex-direction: column; align-items: stretch; gap: 0; padding: 0 12px; }
	.ax-menu li { border-bottom: 1px solid rgba(255,255,255,.08); }
	.ax-menu a { padding: 14px 10px; }
	.ax-menu .menu-item-has-children > a::after { display: none; }
	.ax-menu .sub-menu {
		position: static; opacity: 1; visibility: visible; transform: none;
		box-shadow: none; border-radius: 0; padding: 0 0 8px 14px; display: none; background: none;
	}
	.ax-menu li.is-open > .sub-menu { display: block; }
	.ax-menu .sub-menu a { color: #cfcfcf; }
	.ax-submenu-toggle { display: inline-block; float: right; color: #fff; }
	.ax-nav-backdrop { position: fixed; inset: 0; background: rgba(0,0,0,.6); z-index: 85; }

	.ax-grid--3, .ax-steps, .ax-strip__grid, .ax-footer__grid { grid-template-columns: 1fr; }
	.ax-strip__grid > li { border-left: 0; }
	.ax-callband__inner { flex-direction: column; align-items: flex-start; }
	.ax-form-wrap.is-card { padding: 26px 22px; }

	.has-mobile-bar { padding-bottom: 64px; }
	.ax-mobile-bar { display: grid; grid-template-columns: 1fr 1fr; position: fixed; bottom: 0; left: 0; right: 0; z-index: 80; }
	.ax-mobile-bar a { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 16px 8px; text-decoration: none; font-family: var(--ax-font-heading); font-weight: 700; font-size: var(--ax-fs-button); }
	.ax-mobile-bar__call { background: #111; color: #fff; }
	.ax-mobile-bar__quote { background: var(--ax-accent); color: var(--ax-accent-text); }
}

@media (max-width: 560px) {
	.ax-mosaic { grid-template-columns: 1fr; }
	.ax-mosaic__item--1 { grid-column: span 1; }
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	* { transition: none !important; }
}

/* ==========================================================================
   Page style: Spotlight
   A second complete layout for service and inner pages. Everything here is
   scoped to the style, so the Classic layout above is untouched.
   ========================================================================== */

.ax-banner--spotlight { min-height: calc(var(--ax-inner-hero-h) * 1.75); padding-block: 72px; }
.ax-banner--spotlight .ax-banner__title { font-size: var(--ax-fs-hero); max-width: 18ch; }
.ax-banner--spotlight .ax-banner__sub { max-width: 56ch; }
.ax-banner--spotlight .ax-banner__cta { margin-top: 38px; }
.ax-banner--spotlight .ax-crumbs { margin-bottom: 22px; }

/* The page photo leads the content instead of sitting behind the banner. */
.ax-inner__lead { margin: 0 0 34px; }
.ax-inner__lead-img { width: 100%; border-radius: var(--ax-img-radius); }
.ax-inner--spotlight .ax-inner__h2 { font-size: var(--ax-fs-h2); margin-bottom: 26px; }
.ax-inner--spotlight .ax-inner__lead + .ax-inner__h2 { margin-top: 0; }

/* Pale sidebar cards with the actions in them, rather than a dark phone card. */
.ax-inner--spotlight .ax-sidecard {
	background: var(--ax-alt-bg); border-color: transparent; padding: 30px 28px;
}
.ax-inner--spotlight .ax-sidecard--action { display: grid; gap: 14px; }
.ax-sidecard--action .ax-btn--accent { font-size: calc(var(--ax-fs-button) * 1.06); padding: 1.05em 1.4em; }
.ax-sidecard--action .ax-btn--outline { background: #fff; border-color: var(--ax-border); }
.ax-sidecard--action .ax-btn--outline:hover { border-color: var(--ax-accent); color: var(--ax-accent); }
.ax-sidecard__note {
	margin: 0; text-align: center; color: #8d8d8d;
	font-size: calc(var(--ax-fs-small) * .92);
}

/* The related line carries a "view all" tail. */
.ax-related__dash { opacity: .45; }
.ax-related__all { font-family: var(--ax-font-heading); font-weight: 700; white-space: nowrap; }

/* Questions run across the page instead of down the content column. */
.ax-innerfaq .ax-head { margin-bottom: calc(var(--ax-gap) * 2); }
.ax-innerfaq__list { max-width: 740px; margin-inline: auto; }
.ax-innerfaq .ax-acc__sign { border: 0; }
.ax-innerfaq .ax-acc__btn { padding: 20px 24px; }

/* Other services as a compact grid of links rather than photo cards. */
.ax-linkgrid { align-items: stretch; }
.ax-linkcard {
	display: flex; align-items: center; justify-content: space-between; gap: 18px;
	padding: 22px 26px; background: #fff; border: 1px solid var(--ax-border);
	border-radius: 10px; text-decoration: none;
	font-family: var(--ax-font-heading); font-weight: 700; color: var(--ax-heading);
	transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.ax-linkcard:hover { border-color: var(--ax-accent); box-shadow: 0 10px 26px rgba(0,0,0,.07); color: var(--ax-heading); }
.ax-linkcard__arrow { color: var(--ax-accent); flex: none; transition: transform .18s ease; }
.ax-linkcard:hover .ax-linkcard__arrow { transform: translateX(4px); }

@media (max-width: 900px) {
	.ax-banner--spotlight { min-height: 0; padding-block: 56px; }
	.ax-banner--spotlight .ax-banner__title { max-width: none; }
}
