@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600;700&display=swap');

.a1-pages-shell {
	--brand-0: #fff5f5;
	--brand-100: #ffd6d6;
	--brand-200: #e62020;
	--brand-300: #cc1111;
	--brand-400: #b20f0f;
	--brand-500: #7f0b0b;
	--black: #0d0d0d;
	--black-soft: #141414;
	--black-card: #1a1a1a;
	--black-mid: #222222;
	--black-light: #2e2e2e;
	--red: var(--brand-300);
	--red-bright: var(--brand-200);
	--red-deep: var(--brand-400);
	--red-glow: rgba(204, 17, 17, 0.25);
	--red-soft-bg: rgba(204, 17, 17, 0.12);
	--red-soft-border: rgba(204, 17, 17, 0.3);
	--red-soft-border-strong: rgba(204, 17, 17, 0.42);
	--red-wash: rgba(204, 17, 17, 0.07);
	--red-ghost: rgba(204, 17, 17, 0.18);
	--red-focus: rgba(204, 17, 17, 0.15);
	--white: #ffffff;
	--off-white: #f5f5f5;
	--gray-light: #e8e8e8;
	--gray: #9a9a9a;
	--gray-dark: #555555;
	--shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.35);
	--shadow-md: 0 8px 32px rgba(0, 0, 0, 0.45);
	--shadow-red: 0 12px 40px rgba(204, 17, 17, 0.3);
	--panel-border: rgba(255, 255, 255, 0.08);
	--panel-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
	--radius: 14px;
	--radius-sm: 8px;
	--transition: 0.32s cubic-bezier(0.23, 1, 0.32, 1);
	background: var(--black);
	color: var(--white);
	display: block;
	font-family: 'Inter', Arial, sans-serif;
	line-height: 1.6;
	min-height: 60vh;
	width: 100%;
}

.a1-pages-shell *,
.a1-pages-shell *::before,
.a1-pages-shell *::after {
	box-sizing: border-box;
}

.a1-pages-shell :where(h1, h2, h3, h4, p, ol, li) {
	margin: 0;
}

.a1-pages-shell :where(a) {
	color: inherit;
	text-decoration: none;
}

.a1-pages-shell :where(button) {
	border: 0;
	cursor: pointer;
	font-family: inherit;
	outline: none;
}

.a1-pages-shell .accent-mist {
	--red: #d81b1b;
	--red-bright: #f03a3a;
	--red-deep: #ae0e0e;
	--red-soft-bg: rgba(216, 27, 27, 0.12);
	--red-soft-border: rgba(216, 27, 27, 0.3);
	--red-soft-border-strong: rgba(216, 27, 27, 0.42);
	--shadow-red: 0 12px 40px rgba(216, 27, 27, 0.26);
}

.a1-pages-shell .accent-deep {
	--red: var(--brand-400);
	--red-bright: var(--brand-300);
	--red-deep: var(--brand-500);
	--red-soft-bg: rgba(178, 15, 15, 0.13);
	--red-soft-border: rgba(178, 15, 15, 0.32);
	--red-soft-border-strong: rgba(178, 15, 15, 0.44);
	--shadow-red: 0 12px 40px rgba(127, 11, 11, 0.32);
}

.a1-pages-shell .reveal {
	opacity: 1;
	transform: none;
}

.a1-pages-shell .scroll-section {
	scroll-margin-top: 88px;
}

.a1-pages-shell .breadcrumb {
	align-items: center;
	background: var(--black-soft);
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	color: var(--gray);
	display: flex;
	font-size: 0.8rem;
	gap: 8px;
	padding: 14px 56px;
}

.a1-pages-shell .breadcrumb a {
	cursor: pointer;
	transition: color 0.2s;
}

.a1-pages-shell .breadcrumb a:hover,
.a1-pages-shell .breadcrumb a:focus {
	color: var(--red);
}

.a1-pages-shell .breadcrumb .bc-current {
	color: var(--red);
}

.a1-pages-shell .breadcrumb .bc-sep {
	color: var(--black-light);
}

.a1-pages-shell .page-hero {
	background: linear-gradient(180deg, var(--black-soft) 0%, var(--black-mid) 100%);
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	overflow: hidden;
	padding: 72px 56px 64px;
	position: relative;
}

.a1-pages-shell .page-hero::before {
	background: linear-gradient(to left, rgba(204, 17, 17, 0.06), transparent);
	bottom: 0;
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	width: 40%;
}

.a1-pages-shell .page-hero::after {
	background: linear-gradient(to right, var(--red), transparent);
	bottom: 0;
	content: "";
	height: 1px;
	left: 56px;
	position: absolute;
	right: 56px;
}

.a1-pages-shell .page-hero-inner {
	margin: 0 auto;
	max-width: 1200px;
	position: relative;
	z-index: 1;
}

.a1-pages-shell .page-hero h1 {
	color: var(--white);
	font-family: 'Bebas Neue', Arial, sans-serif;
	font-size: clamp(2.8rem, 5vw, 4rem);
	letter-spacing: 1.5px;
	line-height: 1;
	margin-bottom: 12px;
}

.a1-pages-shell .page-hero h1 span {
	color: var(--red);
}

.a1-pages-shell .page-hero p {
	color: var(--gray);
	font-size: 1.05rem;
	max-width: 540px;
}

.a1-pages-shell .section {
	padding: 96px 56px;
}

.a1-pages-shell .section-alt {
	background: var(--black-soft);
}

.a1-pages-shell .section-inner {
	margin: 0 auto;
	max-width: 1200px;
}

.a1-pages-shell .section-eyebrow {
	align-items: center;
	color: var(--red);
	display: flex;
	font-size: 0.7rem;
	font-weight: 700;
	gap: 8px;
	letter-spacing: 3px;
	margin-bottom: 10px;
	text-transform: uppercase;
}

.a1-pages-shell .section-eyebrow::before {
	background: var(--red);
	content: "";
	display: block;
	height: 2px;
	width: 28px;
}

.a1-pages-shell .section-title {
	color: var(--white);
	font-family: 'Bebas Neue', Arial, sans-serif;
	font-size: clamp(2.2rem, 4vw, 3.2rem);
	letter-spacing: 1px;
	line-height: 1.05;
	margin-bottom: 14px;
}

.a1-pages-shell .section-sub {
	color: var(--gray);
	font-size: 1rem;
	line-height: 1.75;
	margin-bottom: 52px;
	max-width: 560px;
}

.a1-pages-shell .a1-inline-link {
	color: var(--red-bright);
	font-weight: 700;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

.a1-pages-shell .a1-inline-link:hover,
.a1-pages-shell .a1-inline-link:focus {
	color: var(--white);
}

.a1-pages-shell .btn {
	align-items: center;
	border: 2px solid transparent;
	border-radius: var(--radius-sm);
	cursor: pointer;
	display: inline-flex;
	font-size: 0.9rem;
	font-weight: 600;
	gap: 8px;
	letter-spacing: 0.3px;
	padding: 13px 30px;
	transition: var(--transition);
}

.a1-pages-shell .btn-white {
	background: var(--white);
	border-color: var(--white);
	color: var(--black);
}

.a1-pages-shell .btn-white:hover,
.a1-pages-shell .btn-white:focus {
	background: var(--off-white);
	box-shadow: 0 8px 24px rgba(255, 255, 255, 0.15);
	transform: translateY(-2px);
}

.a1-pages-shell .btn-outline {
	background: transparent;
	border-color: rgba(255, 255, 255, 0.3);
	color: var(--white);
}

.a1-pages-shell .btn-outline:hover,
.a1-pages-shell .btn-outline:focus {
	background: rgba(255, 255, 255, 0.07);
	border-color: var(--white);
}

.a1-pages-shell .service-areas-grid {
	align-items: stretch;
	display: grid;
	gap: 44px;
	grid-template-columns: 0.9fr 1.1fr;
}

.a1-pages-shell .service-areas-copy {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.a1-pages-shell .service-area-summary {
	background: var(--red-soft-bg);
	border: 1px solid var(--red-soft-border);
	border-radius: var(--radius-sm);
	display: grid;
	gap: 8px;
	padding: 20px;
}

.a1-pages-shell .service-area-summary strong {
	color: var(--white);
	font-size: 0.88rem;
	letter-spacing: 0.8px;
	text-transform: uppercase;
}

.a1-pages-shell .service-area-summary span {
	color: var(--gray);
	font-size: 0.92rem;
	line-height: 1.7;
}

.a1-pages-shell .service-map-panel {
	background: var(--black-card);
	border: 1px solid var(--panel-border);
	border-radius: var(--radius-sm);
	box-shadow: var(--panel-shadow);
	min-height: 520px;
	overflow: hidden;
	position: relative;
}

.a1-pages-shell .service-map-panel iframe {
	border: 0;
	height: 100%;
	inset: 0;
	pointer-events: none;
	position: absolute;
	width: 100%;
}

.a1-pages-shell .service-map-highlight {
	background: radial-gradient(circle at 50% 48%, rgba(204, 17, 17, 0.24) 0 22%, rgba(204, 17, 17, 0.13) 23% 36%, rgba(204, 17, 17, 0) 37% 100%);
	inset: 0;
	pointer-events: none;
	position: absolute;
}

.a1-pages-shell .service-map-highlight span {
	aspect-ratio: 1;
	border: 3px solid rgba(204, 17, 17, 0.72);
	border-radius: 50%;
	box-shadow: 0 0 0 10px rgba(204, 17, 17, 0.12), 0 0 42px rgba(204, 17, 17, 0.28);
	left: 50%;
	position: absolute;
	top: 48%;
	transform: translate(-50%, -50%);
	width: min(54%, 360px);
}

.a1-pages-shell .service-map-label {
	background: rgba(13, 13, 13, 0.86);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: var(--radius-sm);
	bottom: 18px;
	box-shadow: 0 14px 34px rgba(0, 0, 0, 0.3);
	color: #ffffff;
	display: grid;
	gap: 2px;
	left: 18px;
	padding: 12px 14px;
	position: absolute;
	z-index: 2;
}

.a1-pages-shell .service-map-label strong {
	font-size: 0.84rem;
}

.a1-pages-shell .service-map-label span {
	color: rgba(255, 255, 255, 0.76);
	font-size: 0.78rem;
}

.a1-pages-shell .service-area-card-grid {
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.a1-pages-shell .service-area-card {
	background: var(--black-card);
	border: 1px solid rgba(255, 255, 255, 0.07);
	border-radius: var(--radius-sm);
	box-shadow: var(--shadow-sm);
	overflow: hidden;
	transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.a1-pages-shell .service-area-card:hover {
	border-color: var(--red-soft-border);
	box-shadow: var(--shadow-md);
	transform: translateY(-5px);
}

.a1-pages-shell .service-area-card-map {
	background: linear-gradient(135deg, rgba(204, 17, 17, 0.12), rgba(255, 255, 255, 0.02)), var(--black-mid);
	height: 150px;
	overflow: hidden;
	position: relative;
}

.a1-pages-shell .service-area-card-map::after {
	background: radial-gradient(circle at 50% 52%, rgba(204, 17, 17, 0.2) 0 18%, rgba(204, 17, 17, 0.08) 19% 34%, transparent 35% 100%), linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.18) 100%);
	content: "";
	inset: 0;
	pointer-events: none;
	position: absolute;
}

.a1-pages-shell .service-area-card-map iframe {
	border: 0;
	display: block;
	height: 100%;
	pointer-events: none;
	width: 100%;
}

.a1-pages-shell .service-area-card-body {
	padding: 18px;
}

.a1-pages-shell .service-area-card-body h3 {
	color: var(--white);
	font-size: 1rem;
	margin-bottom: 8px;
}

.a1-pages-shell .service-area-card-body h3 a {
	color: inherit;
	text-decoration: none;
}

.a1-pages-shell .service-area-card-body h3 a:hover,
.a1-pages-shell .service-area-card-body h3 a:focus {
	color: var(--red);
	text-decoration: underline;
	text-underline-offset: 4px;
}

.a1-pages-shell .service-area-card-body p {
	color: var(--gray);
	font-size: 0.86rem;
	line-height: 1.6;
}

.a1-pages-shell .service-location-grid {
	align-items: stretch;
	display: grid;
	gap: 44px;
	grid-template-columns: 1fr 1fr;
}

.a1-pages-shell .service-location-panel {
	background: var(--black-card);
	border: 1px solid var(--panel-border);
	border-radius: var(--radius-sm);
	box-shadow: var(--panel-shadow);
	padding: clamp(26px, 4vw, 42px);
}

.a1-pages-shell .service-location-link-grid {
	display: grid;
	gap: 12px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin-top: 28px;
}

.a1-pages-shell .service-location-link-grid a,
.a1-pages-shell .service-location-related-card {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid var(--panel-border);
	border-radius: var(--radius-sm);
	color: var(--white);
	display: block;
	font-weight: 800;
	padding: 14px 16px;
	text-decoration: none;
	transition: border-color var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.a1-pages-shell .service-location-link-grid a:hover,
.a1-pages-shell .service-location-link-grid a:focus,
.a1-pages-shell .service-location-related-card:hover,
.a1-pages-shell .service-location-related-card:focus {
	border-color: var(--red-soft-border-strong);
	box-shadow: var(--shadow-sm);
	color: var(--red);
	transform: translateY(-2px);
}

.a1-pages-shell .service-location-map {
	min-height: 440px;
}

.a1-pages-shell .service-location-related-grid {
	display: grid;
	gap: 16px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.a1-pages-shell .service-location-related-card span {
	color: var(--red);
	display: block;
	font-size: 0.72rem;
	letter-spacing: 2px;
	margin-bottom: 8px;
	text-transform: uppercase;
}

.a1-pages-shell .service-location-related-card strong {
	color: inherit;
	display: block;
	font-size: 1.02rem;
	margin-bottom: 8px;
}

.a1-pages-shell .service-location-related-card small {
	color: var(--gray);
	display: block;
	font-size: 0.84rem;
	font-weight: 500;
	line-height: 1.55;
}

.a1-pages-shell .service-location-resource-panel {
	align-items: center;
	background: rgba(255, 255, 255, 0.035);
	border: 1px solid var(--panel-border);
	border-radius: var(--radius-sm);
	display: grid;
	gap: clamp(28px, 4vw, 52px);
	grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
	margin-top: clamp(32px, 5vw, 56px);
	padding: clamp(26px, 4vw, 42px);
}

.a1-pages-shell .service-location-resource-copy h2 {
	color: var(--white);
	font-family: 'Bebas Neue', Arial, sans-serif;
	font-size: clamp(2rem, 3.6vw, 3rem);
	font-weight: 400;
	letter-spacing: 0;
	line-height: 1.05;
	margin: 0 0 14px;
}

.a1-pages-shell .service-location-resource-copy p {
	color: var(--gray);
	font-size: 0.92rem;
	line-height: 1.7;
	margin: 0;
}

.a1-pages-shell .service-location-resource-grid {
	display: grid;
	gap: 14px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.a1-pages-shell .service-location-resource-grid > a {
	background: var(--black-card);
	border: 1px solid var(--panel-border);
	border-radius: var(--radius-sm);
	color: var(--white);
	display: flex;
	flex-direction: column;
	min-height: 190px;
	padding: 22px;
	position: relative;
	text-decoration: none;
	transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.a1-pages-shell .service-location-resource-grid > a:hover,
.a1-pages-shell .service-location-resource-grid > a:focus {
	border-color: var(--red-soft-border-strong);
	box-shadow: var(--panel-shadow);
	outline: none;
	transform: translateY(-3px);
}

.a1-pages-shell .service-location-resource-grid > a > span:first-child {
	color: var(--red);
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	margin-bottom: 12px;
	text-transform: uppercase;
}

.a1-pages-shell .service-location-resource-grid strong {
	font-size: 1rem;
	line-height: 1.4;
	padding-right: 28px;
}

.a1-pages-shell .service-location-resource-grid small {
	color: var(--gray);
	font-size: 0.8rem;
	line-height: 1.55;
	margin-top: auto;
	padding-top: 16px;
}

.a1-pages-shell .service-location-resource-icon {
	color: var(--red) !important;
	font-size: 1.15rem !important;
	font-weight: 800;
	letter-spacing: 0 !important;
	margin: 0 !important;
	position: absolute;
	right: 18px;
	top: 18px;
	transition: transform var(--transition);
}

.a1-pages-shell .service-location-resource-grid > a:hover .service-location-resource-icon,
.a1-pages-shell .service-location-resource-grid > a:focus .service-location-resource-icon {
	transform: translate(2px, -2px);
}

@media (max-width: 1024px) {
	.a1-pages-shell .service-location-resource-panel {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 640px) {
	.a1-pages-shell .service-location-resource-grid {
		grid-template-columns: 1fr;
	}
}

.a1-pages-shell .cta-band {
	background: var(--red);
	overflow: hidden;
	padding: 72px 56px;
	position: relative;
	text-align: center;
}

.a1-pages-shell .cta-band::before {
	background: radial-gradient(ellipse at 20% 50%, rgba(255, 255, 255, 0.08), transparent 60%), radial-gradient(ellipse at 80% 50%, rgba(0, 0, 0, 0.15), transparent 60%);
	content: "";
	inset: 0;
	position: absolute;
}

.a1-pages-shell .cta-band-inner {
	align-items: center;
	display: flex;
	flex-direction: column;
	position: relative;
	z-index: 1;
}

.a1-pages-shell .cta-band h2 {
	color: var(--white);
	font-family: 'Bebas Neue', Arial, sans-serif;
	font-size: clamp(2.4rem, 5vw, 3.8rem);
	letter-spacing: 1px;
	margin-bottom: 12px;
}

.a1-pages-shell .cta-band p {
	color: rgba(255, 255, 255, 0.82);
	font-size: 1.05rem;
	margin-bottom: 32px;
}

.a1-pages-shell .cta-band .a1-inline-link {
	color: #ffffff;
	text-decoration-color: rgba(255, 255, 255, 0.68);
}

.a1-pages-shell .cta-band .a1-inline-link:hover,
.a1-pages-shell .cta-band .a1-inline-link:focus {
	color: #ffffff;
	text-decoration-color: #ffffff;
}

.a1-pages-shell .cta-band-inner .btn + .btn {
	margin-top: 12px;
}

.a1-pages-shell .faq-split-shell {
	max-width: 1180px;
}

.a1-pages-shell .faq-split-header .section-sub {
	margin-bottom: 0;
}

.a1-pages-shell .faq-split-layout {
	align-items: stretch;
	display: grid;
	gap: clamp(28px, 4vw, 52px);
	grid-template-columns: minmax(360px, 0.95fr) minmax(0, 1.05fr);
	margin-top: clamp(34px, 4vw, 48px);
}

.a1-pages-shell .faq-question-side,
.a1-pages-shell .faq-answer-side {
	align-self: start;
	background: var(--black-card);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 8px;
	display: flex;
	flex-direction: column;
	height: clamp(420px, 54vh, 520px);
	min-width: 0;
	padding: 28px clamp(22px, 2.4vw, 30px) clamp(22px, 2.4vw, 30px);
}

.a1-pages-shell .faq-question-side {
	overflow: hidden;
}

.a1-pages-shell .faq-answer-side {
	gap: 18px;
	justify-items: stretch;
}

.a1-pages-shell .faq-side-label {
	align-items: center;
	color: var(--red);
	display: flex;
	flex: 0 0 18px;
	font-size: 0.72rem;
	font-weight: 900;
	gap: 10px;
	letter-spacing: 0.22em;
	line-height: 1;
	margin: 0;
	text-transform: uppercase;
}

.a1-pages-shell .faq-side-label::before {
	background: var(--red);
	content: "";
	display: block;
	height: 2px;
	width: 28px;
}

.a1-pages-shell .faq-question-list {
	display: grid;
	gap: 12px;
	list-style: none;
	margin: 10px 0 0;
	min-height: 0;
	overflow-y: auto;
	padding: 0 8px 0 0;
	scrollbar-color: var(--red) rgba(255, 255, 255, 0.06);
	scrollbar-width: thin;
}

.a1-pages-shell .faq-question-list::-webkit-scrollbar {
	width: 6px;
}

.a1-pages-shell .faq-question-list::-webkit-scrollbar-track {
	background: rgba(255, 255, 255, 0.06);
	border-radius: 999px;
}

.a1-pages-shell .faq-question-list::-webkit-scrollbar-thumb {
	background: var(--red);
	border-radius: 999px;
}

.a1-pages-shell .faq-question-list li {
	min-width: 0;
}

.a1-pages-shell .faq-question-button {
	align-items: center;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.075);
	border-radius: 8px;
	color: var(--white);
	cursor: pointer;
	display: grid;
	font-family: inherit;
	gap: 12px;
	grid-template-columns: 34px minmax(0, 1fr);
	max-width: 100%;
	min-width: 0;
	padding: 16px;
	text-align: left;
	text-decoration: none;
	transition: background var(--transition), border-color var(--transition), transform var(--transition);
	width: 100%;
}

.a1-pages-shell .faq-question-button:hover,
.a1-pages-shell .faq-question-button:focus,
.a1-pages-shell .faq-question-button.is-active {
	background: rgba(216, 27, 27, 0.08);
	border-color: var(--red-soft-border);
	outline: none;
}

.a1-pages-shell .faq-question-list span {
	color: var(--red);
	font-size: 0.78rem;
	font-weight: 900;
	letter-spacing: 0.14em;
}

.a1-pages-shell .faq-question-list strong {
	display: block;
	font-size: 0.96rem;
	line-height: 1.35;
	min-width: 0;
	overflow-wrap: anywhere;
	white-space: normal;
	word-break: normal;
}

.a1-pages-shell .faq-answer-card {
	background: rgba(255, 255, 255, 0.025);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 8px;
	display: flex;
	flex: 1;
	flex-direction: column;
	justify-content: center;
	overflow: hidden;
	padding: clamp(24px, 3vw, 34px);
	position: relative;
	width: 100%;
}

.a1-pages-shell .faq-answer-card[hidden] {
	display: none;
}

.a1-pages-shell .faq-answer-card::before {
	background: var(--red);
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 3px;
}

.a1-pages-shell .faq-answer-number {
	color: var(--red);
	display: block;
	font-size: 0.72rem;
	font-weight: 900;
	letter-spacing: 0.22em;
	margin-bottom: 12px;
}

.a1-pages-shell .faq-answer-card h3 {
	color: var(--white);
	font-size: clamp(1.18rem, 2vw, 1.55rem);
	line-height: 1.2;
	margin: 0 0 12px;
}

.a1-pages-shell .faq-answer-card p {
	color: #e2e2e2;
	font-size: 0.96rem;
	line-height: 1.78;
	margin: 0;
}

.a1-pages-shell .faq-answer-card .a1-inline-link {
	color: var(--red-bright);
}

.a1-pages-shell .faq-answer-card a[href^="tel:"] {
	color: var(--red-bright);
	font-weight: 700;
}

[data-theme="light"] .a1-pages-shell {
	--black: #ededed;
	--black-soft: #f7f7f7;
	--black-card: #ffffff;
	--black-mid: #e1e1e1;
	--black-light: #c9c9c9;
	--white: #141414;
	--off-white: #0d0d0d;
	--gray-light: #333333;
	--gray: #555555;
	--gray-dark: #777777;
	--shadow-sm: 0 4px 16px rgba(17, 24, 39, 0.08);
	--shadow-md: 0 12px 30px rgba(17, 24, 39, 0.12);
	--panel-border: rgba(20, 20, 20, 0.1);
	--panel-shadow: 0 18px 42px rgba(17, 24, 39, 0.09);
}

[data-theme="light"] .a1-pages-shell .breadcrumb,
[data-theme="light"] .a1-pages-shell .page-hero {
	border-color: rgba(20, 20, 20, 0.08);
}

[data-theme="light"] .a1-pages-shell .service-area-card,
[data-theme="light"] .a1-pages-shell .faq-question-side,
[data-theme="light"] .a1-pages-shell .faq-answer-side {
	border-color: var(--panel-border);
}

[data-theme="light"] .a1-pages-shell .service-location-link-grid a,
[data-theme="light"] .a1-pages-shell .service-location-related-card,
[data-theme="light"] .a1-pages-shell .service-location-resource-panel {
	background: rgba(20, 20, 20, 0.025);
}

[data-theme="light"] .a1-pages-shell .faq-question-list {
	scrollbar-color: var(--red) rgba(20, 20, 20, 0.08);
}

[data-theme="light"] .a1-pages-shell .faq-question-list::-webkit-scrollbar-track {
	background: rgba(20, 20, 20, 0.08);
}

[data-theme="light"] .a1-pages-shell .faq-question-button {
	background: rgba(20, 20, 20, 0.025);
	border-color: rgba(20, 20, 20, 0.09);
}

[data-theme="light"] .a1-pages-shell .faq-answer-card {
	background: #f7f7f7;
	border-color: rgba(20, 20, 20, 0.09);
}

[data-theme="light"] .a1-pages-shell .faq-answer-card p {
	color: var(--gray);
}

[data-theme="light"] .a1-pages-shell .cta-band h2,
[data-theme="light"] .a1-pages-shell .cta-band .btn-outline {
	color: #ffffff;
}

[data-theme="light"] .a1-pages-shell .cta-band .btn-white {
	background: #ffffff;
	border-color: #ffffff;
	color: #111111;
}

[data-theme="light"] .a1-pages-shell .cta-band .btn-white:hover,
[data-theme="light"] .a1-pages-shell .cta-band .btn-white:focus {
	background: #f5f5f5;
}

[data-theme="light"] .a1-pages-shell .cta-band .btn-outline {
	border-color: rgba(255, 255, 255, 0.48);
}

[data-theme="light"] .a1-pages-shell .cta-band .btn-outline:hover,
[data-theme="light"] .a1-pages-shell .cta-band .btn-outline:focus {
	background: rgba(255, 255, 255, 0.1);
	border-color: #ffffff;
}

@media (max-width: 1024px) {
	.a1-pages-shell .section {
		padding: 72px 28px;
	}

	.a1-pages-shell .breadcrumb {
		padding: 14px 28px;
	}

	.a1-pages-shell .page-hero {
		padding: 56px 28px;
	}

	.a1-pages-shell .cta-band {
		padding: 56px 28px;
	}

	.a1-pages-shell .service-areas-grid {
		grid-template-columns: 1fr;
	}

	.a1-pages-shell .service-map-panel {
		min-height: 460px;
	}

	.a1-pages-shell .service-area-card-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.a1-pages-shell .service-location-grid {
		grid-template-columns: 1fr;
	}

	.a1-pages-shell .service-location-related-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 980px) {
	.a1-pages-shell .faq-split-layout {
		grid-template-columns: 1fr;
	}

	.a1-pages-shell .faq-question-side,
	.a1-pages-shell .faq-answer-side {
		height: auto;
	}

	.a1-pages-shell .faq-question-list {
		max-height: 420px;
	}

	.a1-pages-shell .faq-answer-card {
		max-width: none;
	}
}

@media (max-width: 768px) {
	.a1-pages-shell .section {
		padding: 56px 20px;
	}

	.a1-pages-shell .breadcrumb {
		padding: 12px 20px;
	}

	.a1-pages-shell .page-hero {
		padding: 44px 20px;
	}

	.a1-pages-shell .cta-band {
		padding: 48px 20px;
	}

	.a1-pages-shell .service-map-panel {
		min-height: 380px;
	}

	.a1-pages-shell .service-map-highlight span {
		width: min(68%, 280px);
	}

	.a1-pages-shell .service-area-card-grid {
		grid-template-columns: 1fr;
	}

	.a1-pages-shell .service-area-card-map {
		height: 180px;
	}

	.a1-pages-shell .service-location-link-grid,
	.a1-pages-shell .service-location-related-grid {
		grid-template-columns: 1fr;
	}

	.a1-pages-shell .cta-band-inner .btn {
		justify-content: center;
		width: min(100%, 320px);
	}
}

@media (max-width: 480px) {
	.a1-pages-shell .service-map-label {
		bottom: 12px;
		left: 12px;
		right: 12px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.a1-pages-shell .service-area-card,
	.a1-pages-shell .faq-question-button,
	.a1-pages-shell .btn {
		transition: none;
	}
}
